var __create = Object.create; var __defProp = Object.defineProperty; var __getOwnPropDesc = Object.getOwnPropertyDescriptor; var __getOwnPropNames = Object.getOwnPropertyNames; var __getProtoOf = Object.getPrototypeOf; var __hasOwnProp = Object.prototype.hasOwnProperty; var __name = (target2, value) => __defProp(target2, "name", { value, configurable: true }); var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, { get: (a, b) => (typeof require !== "undefined" ? require : a)[b] }) : x)(function(x) { if (typeof require !== "undefined") return require.apply(this, arguments); throw Error('Dynamic require of "' + x + '" is not supported'); }); var __esm = (fn, res) => function __init() { return fn && (res = (0, fn[__getOwnPropNames(fn)[0]])(fn = 0)), res; }; var __commonJS = (cb, mod) => function __require2() { return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports; }; var __export = (target2, all3) => { for (var name in all3) __defProp(target2, name, { get: all3[name], enumerable: true }); }; var __copyProps = (to, from, except2, desc2) => { if (from && typeof from === "object" || typeof from === "function") { for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except2) __defProp(to, key, { get: () => from[key], enumerable: !(desc2 = __getOwnPropDesc(from, key)) || desc2.enumerable }); } return to; }; var __toESM = (mod, isNodeMode, target2) => (target2 = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps( // If the importer is in node compatibility mode or this is not an ESM // file that has been converted to a CommonJS file using a Babel- // compatible transform (i.e. "__esModule" has not been set), then set // "default" to the CommonJS "module.exports" for node compatibility. isNodeMode || !mod || !mod.__esModule ? __defProp(target2, "default", { value: mod, enumerable: true }) : target2, mod )); // ../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/unenv/dist/runtime/_internal/utils.mjs // @__NO_SIDE_EFFECTS__ function createNotImplementedError(name) { return new Error(`[unenv] ${name} is not implemented yet!`); } // @__NO_SIDE_EFFECTS__ function notImplemented(name) { const fn = /* @__PURE__ */ __name(() => { throw /* @__PURE__ */ createNotImplementedError(name); }, "fn"); return Object.assign(fn, { __unenv__: true }); } // @__NO_SIDE_EFFECTS__ function notImplementedAsync(name) { const fn = /* @__PURE__ */ notImplemented(name); fn.__promisify__ = () => /* @__PURE__ */ notImplemented(name + ".__promisify__"); fn.native = fn; return fn; } // @__NO_SIDE_EFFECTS__ function notImplementedClass(name) { return class { __unenv__ = true; constructor() { throw new Error(`[unenv] ${name} is not implemented yet!`); } }; } var init_utils = __esm({ "../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/unenv/dist/runtime/_internal/utils.mjs"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); __name(createNotImplementedError, "createNotImplementedError"); __name(notImplemented, "notImplemented"); __name(notImplementedAsync, "notImplementedAsync"); __name(notImplementedClass, "notImplementedClass"); } }); // ../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/unenv/dist/runtime/node/internal/perf_hooks/performance.mjs var _timeOrigin, _performanceNow, nodeTiming, PerformanceEntry, PerformanceMark, PerformanceMeasure, PerformanceResourceTiming, PerformanceObserverEntryList, Performance, PerformanceObserver, performance; var init_performance = __esm({ "../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/unenv/dist/runtime/node/internal/perf_hooks/performance.mjs"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_utils(); _timeOrigin = globalThis.performance?.timeOrigin ?? Date.now(); _performanceNow = globalThis.performance?.now ? globalThis.performance.now.bind(globalThis.performance) : () => Date.now() - _timeOrigin; nodeTiming = { name: "node", entryType: "node", startTime: 0, duration: 0, nodeStart: 0, v8Start: 0, bootstrapComplete: 0, environment: 0, loopStart: 0, loopExit: 0, idleTime: 0, uvMetricsInfo: { loopCount: 0, events: 0, eventsWaiting: 0 }, detail: void 0, toJSON() { return this; } }; PerformanceEntry = class { static { __name(this, "PerformanceEntry"); } __unenv__ = true; detail; entryType = "event"; name; startTime; constructor(name, options) { this.name = name; this.startTime = options?.startTime || _performanceNow(); this.detail = options?.detail; } get duration() { return _performanceNow() - this.startTime; } toJSON() { return { name: this.name, entryType: this.entryType, startTime: this.startTime, duration: this.duration, detail: this.detail }; } }; PerformanceMark = class PerformanceMark2 extends PerformanceEntry { static { __name(this, "PerformanceMark"); } entryType = "mark"; constructor() { super(...arguments); } get duration() { return 0; } }; PerformanceMeasure = class extends PerformanceEntry { static { __name(this, "PerformanceMeasure"); } entryType = "measure"; }; PerformanceResourceTiming = class extends PerformanceEntry { static { __name(this, "PerformanceResourceTiming"); } entryType = "resource"; serverTiming = []; connectEnd = 0; connectStart = 0; decodedBodySize = 0; domainLookupEnd = 0; domainLookupStart = 0; encodedBodySize = 0; fetchStart = 0; initiatorType = ""; name = ""; nextHopProtocol = ""; redirectEnd = 0; redirectStart = 0; requestStart = 0; responseEnd = 0; responseStart = 0; secureConnectionStart = 0; startTime = 0; transferSize = 0; workerStart = 0; responseStatus = 0; }; PerformanceObserverEntryList = class { static { __name(this, "PerformanceObserverEntryList"); } __unenv__ = true; getEntries() { return []; } getEntriesByName(_name, _type) { return []; } getEntriesByType(type) { return []; } }; Performance = class { static { __name(this, "Performance"); } __unenv__ = true; timeOrigin = _timeOrigin; eventCounts = /* @__PURE__ */ new Map(); _entries = []; _resourceTimingBufferSize = 0; navigation = void 0; timing = void 0; timerify(_fn, _options) { throw createNotImplementedError("Performance.timerify"); } get nodeTiming() { return nodeTiming; } eventLoopUtilization() { return {}; } markResourceTiming() { return new PerformanceResourceTiming(""); } onresourcetimingbufferfull = null; now() { if (this.timeOrigin === _timeOrigin) { return _performanceNow(); } return Date.now() - this.timeOrigin; } clearMarks(markName) { this._entries = markName ? this._entries.filter((e) => e.name !== markName) : this._entries.filter((e) => e.entryType !== "mark"); } clearMeasures(measureName) { this._entries = measureName ? this._entries.filter((e) => e.name !== measureName) : this._entries.filter((e) => e.entryType !== "measure"); } clearResourceTimings() { this._entries = this._entries.filter((e) => e.entryType !== "resource" || e.entryType !== "navigation"); } getEntries() { return this._entries; } getEntriesByName(name, type) { return this._entries.filter((e) => e.name === name && (!type || e.entryType === type)); } getEntriesByType(type) { return this._entries.filter((e) => e.entryType === type); } mark(name, options) { const entry = new PerformanceMark(name, options); this._entries.push(entry); return entry; } measure(measureName, startOrMeasureOptions, endMark) { let start; let end; if (typeof startOrMeasureOptions === "string") { start = this.getEntriesByName(startOrMeasureOptions, "mark")[0]?.startTime; end = this.getEntriesByName(endMark, "mark")[0]?.startTime; } else { start = Number.parseFloat(startOrMeasureOptions?.start) || this.now(); end = Number.parseFloat(startOrMeasureOptions?.end) || this.now(); } const entry = new PerformanceMeasure(measureName, { startTime: start, detail: { start, end } }); this._entries.push(entry); return entry; } setResourceTimingBufferSize(maxSize) { this._resourceTimingBufferSize = maxSize; } addEventListener(type, listener, options) { throw createNotImplementedError("Performance.addEventListener"); } removeEventListener(type, listener, options) { throw createNotImplementedError("Performance.removeEventListener"); } dispatchEvent(event) { throw createNotImplementedError("Performance.dispatchEvent"); } toJSON() { return this; } }; PerformanceObserver = class { static { __name(this, "PerformanceObserver"); } __unenv__ = true; static supportedEntryTypes = []; _callback = null; constructor(callback) { this._callback = callback; } takeRecords() { return []; } disconnect() { throw createNotImplementedError("PerformanceObserver.disconnect"); } observe(options) { throw createNotImplementedError("PerformanceObserver.observe"); } bind(fn) { return fn; } runInAsyncScope(fn, thisArg, ...args) { return fn.call(thisArg, ...args); } asyncId() { return 0; } triggerAsyncId() { return 0; } emitDestroy() { return this; } }; performance = globalThis.performance && "addEventListener" in globalThis.performance ? globalThis.performance : new Performance(); } }); // ../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/unenv/dist/runtime/node/perf_hooks.mjs var init_perf_hooks = __esm({ "../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/unenv/dist/runtime/node/perf_hooks.mjs"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_performance(); } }); // ../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/@cloudflare/unenv-preset/dist/runtime/polyfill/performance.mjs var init_performance2 = __esm({ "../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/@cloudflare/unenv-preset/dist/runtime/polyfill/performance.mjs"() { init_perf_hooks(); if (!("__unenv__" in performance)) { const proto = Performance.prototype; for (const key of Object.getOwnPropertyNames(proto)) { if (key !== "constructor" && !(key in performance)) { const desc2 = Object.getOwnPropertyDescriptor(proto, key); if (desc2) { Object.defineProperty(performance, key, desc2); } } } } globalThis.performance = performance; globalThis.Performance = Performance; globalThis.PerformanceEntry = PerformanceEntry; globalThis.PerformanceMark = PerformanceMark; globalThis.PerformanceMeasure = PerformanceMeasure; globalThis.PerformanceObserver = PerformanceObserver; globalThis.PerformanceObserverEntryList = PerformanceObserverEntryList; globalThis.PerformanceResourceTiming = PerformanceResourceTiming; } }); // ../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/unenv/dist/runtime/mock/noop.mjs var noop_default; var init_noop = __esm({ "../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/unenv/dist/runtime/mock/noop.mjs"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); noop_default = Object.assign(() => { }, { __unenv__: true }); } }); // ../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/unenv/dist/runtime/node/console.mjs import { Writable } from "node:stream"; var _console, _ignoreErrors, _stderr, _stdout, log, info, trace, debug, table, error, warn, createTask, clear, count, countReset, dir, dirxml, group, groupEnd, groupCollapsed, profile, profileEnd, time, timeEnd, timeLog, timeStamp, Console, _times, _stdoutErrorHandler, _stderrErrorHandler; var init_console = __esm({ "../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/unenv/dist/runtime/node/console.mjs"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_noop(); init_utils(); _console = globalThis.console; _ignoreErrors = true; _stderr = new Writable(); _stdout = new Writable(); log = _console?.log ?? noop_default; info = _console?.info ?? log; trace = _console?.trace ?? info; debug = _console?.debug ?? log; table = _console?.table ?? log; error = _console?.error ?? log; warn = _console?.warn ?? error; createTask = _console?.createTask ?? /* @__PURE__ */ notImplemented("console.createTask"); clear = _console?.clear ?? noop_default; count = _console?.count ?? noop_default; countReset = _console?.countReset ?? noop_default; dir = _console?.dir ?? noop_default; dirxml = _console?.dirxml ?? noop_default; group = _console?.group ?? noop_default; groupEnd = _console?.groupEnd ?? noop_default; groupCollapsed = _console?.groupCollapsed ?? noop_default; profile = _console?.profile ?? noop_default; profileEnd = _console?.profileEnd ?? noop_default; time = _console?.time ?? noop_default; timeEnd = _console?.timeEnd ?? noop_default; timeLog = _console?.timeLog ?? noop_default; timeStamp = _console?.timeStamp ?? noop_default; Console = _console?.Console ?? /* @__PURE__ */ notImplementedClass("console.Console"); _times = /* @__PURE__ */ new Map(); _stdoutErrorHandler = noop_default; _stderrErrorHandler = noop_default; } }); // ../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/@cloudflare/unenv-preset/dist/runtime/node/console.mjs var workerdConsole, assert, clear2, context, count2, countReset2, createTask2, debug2, dir2, dirxml2, error2, group2, groupCollapsed2, groupEnd2, info2, log2, profile2, profileEnd2, table2, time2, timeEnd2, timeLog2, timeStamp2, trace2, warn2, console_default; var init_console2 = __esm({ "../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/@cloudflare/unenv-preset/dist/runtime/node/console.mjs"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_console(); workerdConsole = globalThis["console"]; ({ assert, clear: clear2, context: ( // @ts-expect-error undocumented public API context ), count: count2, countReset: countReset2, createTask: ( // @ts-expect-error undocumented public API createTask2 ), debug: debug2, dir: dir2, dirxml: dirxml2, error: error2, group: group2, groupCollapsed: groupCollapsed2, groupEnd: groupEnd2, info: info2, log: log2, profile: profile2, profileEnd: profileEnd2, table: table2, time: time2, timeEnd: timeEnd2, timeLog: timeLog2, timeStamp: timeStamp2, trace: trace2, warn: warn2 } = workerdConsole); Object.assign(workerdConsole, { Console, _ignoreErrors, _stderr, _stderrErrorHandler, _stdout, _stdoutErrorHandler, _times }); console_default = workerdConsole; } }); // ../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/wrangler/_virtual_unenv_global_polyfill-@cloudflare-unenv-preset-node-console var init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console = __esm({ "../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/wrangler/_virtual_unenv_global_polyfill-@cloudflare-unenv-preset-node-console"() { init_console2(); globalThis.console = console_default; } }); // ../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/unenv/dist/runtime/node/internal/process/hrtime.mjs var hrtime; var init_hrtime = __esm({ "../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/unenv/dist/runtime/node/internal/process/hrtime.mjs"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); hrtime = /* @__PURE__ */ Object.assign(/* @__PURE__ */ __name(function hrtime2(startTime) { const now = Date.now(); const seconds = Math.trunc(now / 1e3); const nanos = now % 1e3 * 1e6; if (startTime) { let diffSeconds = seconds - startTime[0]; let diffNanos = nanos - startTime[0]; if (diffNanos < 0) { diffSeconds = diffSeconds - 1; diffNanos = 1e9 + diffNanos; } return [diffSeconds, diffNanos]; } return [seconds, nanos]; }, "hrtime"), { bigint: /* @__PURE__ */ __name(function bigint() { return BigInt(Date.now() * 1e6); }, "bigint") }); } }); // ../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/unenv/dist/runtime/node/internal/tty/read-stream.mjs var ReadStream; var init_read_stream = __esm({ "../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/unenv/dist/runtime/node/internal/tty/read-stream.mjs"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); ReadStream = class { static { __name(this, "ReadStream"); } fd; isRaw = false; isTTY = false; constructor(fd) { this.fd = fd; } setRawMode(mode) { this.isRaw = mode; return this; } }; } }); // ../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/unenv/dist/runtime/node/internal/tty/write-stream.mjs var WriteStream; var init_write_stream = __esm({ "../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/unenv/dist/runtime/node/internal/tty/write-stream.mjs"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); WriteStream = class { static { __name(this, "WriteStream"); } fd; columns = 80; rows = 24; isTTY = false; constructor(fd) { this.fd = fd; } clearLine(dir3, callback) { callback && callback(); return false; } clearScreenDown(callback) { callback && callback(); return false; } cursorTo(x, y, callback) { callback && typeof callback === "function" && callback(); return false; } moveCursor(dx, dy, callback) { callback && callback(); return false; } getColorDepth(env2) { return 1; } hasColors(count4, env2) { return false; } getWindowSize() { return [this.columns, this.rows]; } write(str, encoding, cb) { if (str instanceof Uint8Array) { str = new TextDecoder().decode(str); } try { console.log(str); } catch { } cb && typeof cb === "function" && cb(); return false; } }; } }); // ../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/unenv/dist/runtime/node/tty.mjs var init_tty = __esm({ "../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/unenv/dist/runtime/node/tty.mjs"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_read_stream(); init_write_stream(); } }); // ../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/unenv/dist/runtime/node/internal/process/node-version.mjs var NODE_VERSION; var init_node_version = __esm({ "../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/unenv/dist/runtime/node/internal/process/node-version.mjs"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); NODE_VERSION = "22.14.0"; } }); // ../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/unenv/dist/runtime/node/internal/process/process.mjs import { EventEmitter } from "node:events"; var Process; var init_process = __esm({ "../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/unenv/dist/runtime/node/internal/process/process.mjs"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_tty(); init_utils(); init_node_version(); Process = class _Process extends EventEmitter { static { __name(this, "Process"); } env; hrtime; nextTick; constructor(impl) { super(); this.env = impl.env; this.hrtime = impl.hrtime; this.nextTick = impl.nextTick; for (const prop of [...Object.getOwnPropertyNames(_Process.prototype), ...Object.getOwnPropertyNames(EventEmitter.prototype)]) { const value = this[prop]; if (typeof value === "function") { this[prop] = value.bind(this); } } } // --- event emitter --- emitWarning(warning, type, code) { console.warn(`${code ? `[${code}] ` : ""}${type ? `${type}: ` : ""}${warning}`); } emit(...args) { return super.emit(...args); } listeners(eventName) { return super.listeners(eventName); } // --- stdio (lazy initializers) --- #stdin; #stdout; #stderr; get stdin() { return this.#stdin ??= new ReadStream(0); } get stdout() { return this.#stdout ??= new WriteStream(1); } get stderr() { return this.#stderr ??= new WriteStream(2); } // --- cwd --- #cwd = "/"; chdir(cwd2) { this.#cwd = cwd2; } cwd() { return this.#cwd; } // --- dummy props and getters --- arch = ""; platform = ""; argv = []; argv0 = ""; execArgv = []; execPath = ""; title = ""; pid = 200; ppid = 100; get version() { return `v${NODE_VERSION}`; } get versions() { return { node: NODE_VERSION }; } get allowedNodeEnvironmentFlags() { return /* @__PURE__ */ new Set(); } get sourceMapsEnabled() { return false; } get debugPort() { return 0; } get throwDeprecation() { return false; } get traceDeprecation() { return false; } get features() { return {}; } get release() { return {}; } get connected() { return false; } get config() { return {}; } get moduleLoadList() { return []; } constrainedMemory() { return 0; } availableMemory() { return 0; } uptime() { return 0; } resourceUsage() { return {}; } // --- noop methods --- ref() { } unref() { } // --- unimplemented methods --- umask() { throw createNotImplementedError("process.umask"); } getBuiltinModule() { return void 0; } getActiveResourcesInfo() { throw createNotImplementedError("process.getActiveResourcesInfo"); } exit() { throw createNotImplementedError("process.exit"); } reallyExit() { throw createNotImplementedError("process.reallyExit"); } kill() { throw createNotImplementedError("process.kill"); } abort() { throw createNotImplementedError("process.abort"); } dlopen() { throw createNotImplementedError("process.dlopen"); } setSourceMapsEnabled() { throw createNotImplementedError("process.setSourceMapsEnabled"); } loadEnvFile() { throw createNotImplementedError("process.loadEnvFile"); } disconnect() { throw createNotImplementedError("process.disconnect"); } cpuUsage() { throw createNotImplementedError("process.cpuUsage"); } setUncaughtExceptionCaptureCallback() { throw createNotImplementedError("process.setUncaughtExceptionCaptureCallback"); } hasUncaughtExceptionCaptureCallback() { throw createNotImplementedError("process.hasUncaughtExceptionCaptureCallback"); } initgroups() { throw createNotImplementedError("process.initgroups"); } openStdin() { throw createNotImplementedError("process.openStdin"); } assert() { throw createNotImplementedError("process.assert"); } binding() { throw createNotImplementedError("process.binding"); } // --- attached interfaces --- permission = { has: /* @__PURE__ */ notImplemented("process.permission.has") }; report = { directory: "", filename: "", signal: "SIGUSR2", compact: false, reportOnFatalError: false, reportOnSignal: false, reportOnUncaughtException: false, getReport: /* @__PURE__ */ notImplemented("process.report.getReport"), writeReport: /* @__PURE__ */ notImplemented("process.report.writeReport") }; finalization = { register: /* @__PURE__ */ notImplemented("process.finalization.register"), unregister: /* @__PURE__ */ notImplemented("process.finalization.unregister"), registerBeforeExit: /* @__PURE__ */ notImplemented("process.finalization.registerBeforeExit") }; memoryUsage = Object.assign(() => ({ arrayBuffers: 0, rss: 0, external: 0, heapTotal: 0, heapUsed: 0 }), { rss: /* @__PURE__ */ __name(() => 0, "rss") }); // --- undefined props --- mainModule = void 0; domain = void 0; // optional send = void 0; exitCode = void 0; channel = void 0; getegid = void 0; geteuid = void 0; getgid = void 0; getgroups = void 0; getuid = void 0; setegid = void 0; seteuid = void 0; setgid = void 0; setgroups = void 0; setuid = void 0; // internals _events = void 0; _eventsCount = void 0; _exiting = void 0; _maxListeners = void 0; _debugEnd = void 0; _debugProcess = void 0; _fatalException = void 0; _getActiveHandles = void 0; _getActiveRequests = void 0; _kill = void 0; _preload_modules = void 0; _rawDebug = void 0; _startProfilerIdleNotifier = void 0; _stopProfilerIdleNotifier = void 0; _tickCallback = void 0; _disconnect = void 0; _handleQueue = void 0; _pendingMessage = void 0; _channel = void 0; _send = void 0; _linkedBinding = void 0; }; } }); // ../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/@cloudflare/unenv-preset/dist/runtime/node/process.mjs var globalProcess, getBuiltinModule, workerdProcess, unenvProcess, exit, features, platform, _channel, _debugEnd, _debugProcess, _disconnect, _events, _eventsCount, _exiting, _fatalException, _getActiveHandles, _getActiveRequests, _handleQueue, _kill, _linkedBinding, _maxListeners, _pendingMessage, _preload_modules, _rawDebug, _send, _startProfilerIdleNotifier, _stopProfilerIdleNotifier, _tickCallback, abort, addListener, allowedNodeEnvironmentFlags, arch, argv, argv0, assert2, availableMemory, binding, channel, chdir, config, connected, constrainedMemory, cpuUsage, cwd, debugPort, disconnect, dlopen, domain, emit, emitWarning, env, eventNames, execArgv, execPath, exitCode, finalization, getActiveResourcesInfo, getegid, geteuid, getgid, getgroups, getMaxListeners, getuid, hasUncaughtExceptionCaptureCallback, hrtime3, initgroups, kill, listenerCount, listeners, loadEnvFile, mainModule, memoryUsage, moduleLoadList, nextTick, off, on, once, openStdin, permission, pid, ppid, prependListener, prependOnceListener, rawListeners, reallyExit, ref, release, removeAllListeners, removeListener, report, resourceUsage, send, setegid, seteuid, setgid, setgroups, setMaxListeners, setSourceMapsEnabled, setuid, setUncaughtExceptionCaptureCallback, sourceMapsEnabled, stderr, stdin, stdout, throwDeprecation, title, traceDeprecation, umask, unref, uptime, version, versions, _process, process_default; var init_process2 = __esm({ "../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/@cloudflare/unenv-preset/dist/runtime/node/process.mjs"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_hrtime(); init_process(); globalProcess = globalThis["process"]; getBuiltinModule = globalProcess.getBuiltinModule; workerdProcess = getBuiltinModule("node:process"); unenvProcess = new Process({ env: globalProcess.env, hrtime, // `nextTick` is available from workerd process v1 nextTick: workerdProcess.nextTick }); ({ exit, features, platform } = workerdProcess); ({ _channel, _debugEnd, _debugProcess, _disconnect, _events, _eventsCount, _exiting, _fatalException, _getActiveHandles, _getActiveRequests, _handleQueue, _kill, _linkedBinding, _maxListeners, _pendingMessage, _preload_modules, _rawDebug, _send, _startProfilerIdleNotifier, _stopProfilerIdleNotifier, _tickCallback, abort, addListener, allowedNodeEnvironmentFlags, arch, argv, argv0, assert: assert2, availableMemory, binding, channel, chdir, config, connected, constrainedMemory, cpuUsage, cwd, debugPort, disconnect, dlopen, domain, emit, emitWarning, env, eventNames, execArgv, execPath, exitCode, finalization, getActiveResourcesInfo, getegid, geteuid, getgid, getgroups, getMaxListeners, getuid, hasUncaughtExceptionCaptureCallback, hrtime: hrtime3, initgroups, kill, listenerCount, listeners, loadEnvFile, mainModule, memoryUsage, moduleLoadList, nextTick, off, on, once, openStdin, permission, pid, ppid, prependListener, prependOnceListener, rawListeners, reallyExit, ref, release, removeAllListeners, removeListener, report, resourceUsage, send, setegid, seteuid, setgid, setgroups, setMaxListeners, setSourceMapsEnabled, setuid, setUncaughtExceptionCaptureCallback, sourceMapsEnabled, stderr, stdin, stdout, throwDeprecation, title, traceDeprecation, umask, unref, uptime, version, versions } = unenvProcess); _process = { abort, addListener, allowedNodeEnvironmentFlags, hasUncaughtExceptionCaptureCallback, setUncaughtExceptionCaptureCallback, loadEnvFile, sourceMapsEnabled, arch, argv, argv0, chdir, config, connected, constrainedMemory, availableMemory, cpuUsage, cwd, debugPort, dlopen, disconnect, emit, emitWarning, env, eventNames, execArgv, execPath, exit, finalization, features, getBuiltinModule, getActiveResourcesInfo, getMaxListeners, hrtime: hrtime3, kill, listeners, listenerCount, memoryUsage, nextTick, on, off, once, pid, platform, ppid, prependListener, prependOnceListener, rawListeners, release, removeAllListeners, removeListener, report, resourceUsage, setMaxListeners, setSourceMapsEnabled, stderr, stdin, stdout, title, throwDeprecation, traceDeprecation, umask, uptime, version, versions, // @ts-expect-error old API domain, initgroups, moduleLoadList, reallyExit, openStdin, assert: assert2, binding, send, exitCode, channel, getegid, geteuid, getgid, getgroups, getuid, setegid, seteuid, setgid, setgroups, setuid, permission, mainModule, _events, _eventsCount, _exiting, _maxListeners, _debugEnd, _debugProcess, _fatalException, _getActiveHandles, _getActiveRequests, _kill, _preload_modules, _rawDebug, _startProfilerIdleNotifier, _stopProfilerIdleNotifier, _tickCallback, _disconnect, _handleQueue, _pendingMessage, _channel, _send, _linkedBinding }; process_default = _process; } }); // ../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/wrangler/_virtual_unenv_global_polyfill-@cloudflare-unenv-preset-node-process var init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process = __esm({ "../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/wrangler/_virtual_unenv_global_polyfill-@cloudflare-unenv-preset-node-process"() { init_process2(); globalThis.process = process_default; } }); // wrangler-modules-watch:wrangler:modules-watch var init_wrangler_modules_watch = __esm({ "wrangler-modules-watch:wrangler:modules-watch"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); } }); // ../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/wrangler/templates/modules-watch-stub.js var init_modules_watch_stub = __esm({ "../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/wrangler/templates/modules-watch-stub.js"() { init_wrangler_modules_watch(); } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/entity.js function is(value, type) { if (!value || typeof value !== "object") { return false; } if (value instanceof type) { return true; } if (!Object.prototype.hasOwnProperty.call(type, entityKind)) { throw new Error( `Class "${type.name ?? ""}" doesn't look like a Drizzle entity. If this is incorrect and the class is provided by Drizzle, please report this as a bug.` ); } let cls = Object.getPrototypeOf(value).constructor; if (cls) { while (cls) { if (entityKind in cls && cls[entityKind] === type[entityKind]) { return true; } cls = Object.getPrototypeOf(cls); } } return false; } var entityKind; var init_entity = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/entity.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); entityKind = /* @__PURE__ */ Symbol.for("drizzle:entityKind"); __name(is, "is"); } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/logger.js var ConsoleLogWriter, DefaultLogger, NoopLogger; var init_logger = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/logger.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_entity(); ConsoleLogWriter = class { static { __name(this, "ConsoleLogWriter"); } static [entityKind] = "ConsoleLogWriter"; write(message2) { console.log(message2); } }; DefaultLogger = class { static { __name(this, "DefaultLogger"); } static [entityKind] = "DefaultLogger"; writer; constructor(config3) { this.writer = config3?.writer ?? new ConsoleLogWriter(); } logQuery(query, params) { const stringifiedParams = params.map((p) => { try { return JSON.stringify(p); } catch { return String(p); } }); const paramsStr = stringifiedParams.length ? ` -- params: [${stringifiedParams.join(", ")}]` : ""; this.writer.write(`Query: ${query}${paramsStr}`); } }; NoopLogger = class { static { __name(this, "NoopLogger"); } static [entityKind] = "NoopLogger"; logQuery() { } }; } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/table.utils.js var TableName; var init_table_utils = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/table.utils.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); TableName = /* @__PURE__ */ Symbol.for("drizzle:Name"); } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/table.js function getTableName(table3) { return table3[TableName]; } function getTableUniqueName(table3) { return `${table3[Schema] ?? "public"}.${table3[TableName]}`; } var Schema, Columns, ExtraConfigColumns, OriginalName, BaseName, IsAlias, ExtraConfigBuilder, IsDrizzleTable, Table; var init_table = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/table.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_entity(); init_table_utils(); Schema = /* @__PURE__ */ Symbol.for("drizzle:Schema"); Columns = /* @__PURE__ */ Symbol.for("drizzle:Columns"); ExtraConfigColumns = /* @__PURE__ */ Symbol.for("drizzle:ExtraConfigColumns"); OriginalName = /* @__PURE__ */ Symbol.for("drizzle:OriginalName"); BaseName = /* @__PURE__ */ Symbol.for("drizzle:BaseName"); IsAlias = /* @__PURE__ */ Symbol.for("drizzle:IsAlias"); ExtraConfigBuilder = /* @__PURE__ */ Symbol.for("drizzle:ExtraConfigBuilder"); IsDrizzleTable = /* @__PURE__ */ Symbol.for("drizzle:IsDrizzleTable"); Table = class { static { __name(this, "Table"); } static [entityKind] = "Table"; /** @internal */ static Symbol = { Name: TableName, Schema, OriginalName, Columns, ExtraConfigColumns, BaseName, IsAlias, ExtraConfigBuilder }; /** * @internal * Can be changed if the table is aliased. */ [TableName]; /** * @internal * Used to store the original name of the table, before any aliasing. */ [OriginalName]; /** @internal */ [Schema]; /** @internal */ [Columns]; /** @internal */ [ExtraConfigColumns]; /** * @internal * Used to store the table name before the transformation via the `tableCreator` functions. */ [BaseName]; /** @internal */ [IsAlias] = false; /** @internal */ [IsDrizzleTable] = true; /** @internal */ [ExtraConfigBuilder] = void 0; constructor(name, schema, baseName) { this[TableName] = this[OriginalName] = name; this[Schema] = schema; this[BaseName] = baseName; } }; __name(getTableName, "getTableName"); __name(getTableUniqueName, "getTableUniqueName"); } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/column.js var Column; var init_column = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/column.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_entity(); Column = class { static { __name(this, "Column"); } constructor(table3, config3) { this.table = table3; this.config = config3; this.name = config3.name; this.keyAsName = config3.keyAsName; this.notNull = config3.notNull; this.default = config3.default; this.defaultFn = config3.defaultFn; this.onUpdateFn = config3.onUpdateFn; this.hasDefault = config3.hasDefault; this.primary = config3.primaryKey; this.isUnique = config3.isUnique; this.uniqueName = config3.uniqueName; this.uniqueType = config3.uniqueType; this.dataType = config3.dataType; this.columnType = config3.columnType; this.generated = config3.generated; this.generatedIdentity = config3.generatedIdentity; } static [entityKind] = "Column"; name; keyAsName; primary; notNull; default; defaultFn; onUpdateFn; hasDefault; isUnique; uniqueName; uniqueType; dataType; columnType; enumValues = void 0; generated = void 0; generatedIdentity = void 0; config; mapFromDriverValue(value) { return value; } mapToDriverValue(value) { return value; } // ** @internal */ shouldDisableInsert() { return this.config.generated !== void 0 && this.config.generated.type !== "byDefault"; } }; } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/column-builder.js var ColumnBuilder; var init_column_builder = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/column-builder.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_entity(); ColumnBuilder = class { static { __name(this, "ColumnBuilder"); } static [entityKind] = "ColumnBuilder"; config; constructor(name, dataType, columnType) { this.config = { name, keyAsName: name === "", notNull: false, default: void 0, hasDefault: false, primaryKey: false, isUnique: false, uniqueName: void 0, uniqueType: void 0, dataType, columnType, generated: void 0 }; } /** * Changes the data type of the column. Commonly used with `json` columns. Also, useful for branded types. * * @example * ```ts * const users = pgTable('users', { * id: integer('id').$type().primaryKey(), * details: json('details').$type().notNull(), * }); * ``` */ $type() { return this; } /** * Adds a `not null` clause to the column definition. * * Affects the `select` model of the table - columns *without* `not null` will be nullable on select. */ notNull() { this.config.notNull = true; return this; } /** * Adds a `default ` clause to the column definition. * * Affects the `insert` model of the table - columns *with* `default` are optional on insert. * * If you need to set a dynamic default value, use {@link $defaultFn} instead. */ default(value) { this.config.default = value; this.config.hasDefault = true; return this; } /** * Adds a dynamic default value to the column. * The function will be called when the row is inserted, and the returned value will be used as the column value. * * **Note:** This value does not affect the `drizzle-kit` behavior, it is only used at runtime in `drizzle-orm`. */ $defaultFn(fn) { this.config.defaultFn = fn; this.config.hasDefault = true; return this; } /** * Alias for {@link $defaultFn}. */ $default = this.$defaultFn; /** * Adds a dynamic update value to the column. * The function will be called when the row is updated, and the returned value will be used as the column value if none is provided. * If no `default` (or `$defaultFn`) value is provided, the function will be called when the row is inserted as well, and the returned value will be used as the column value. * * **Note:** This value does not affect the `drizzle-kit` behavior, it is only used at runtime in `drizzle-orm`. */ $onUpdateFn(fn) { this.config.onUpdateFn = fn; this.config.hasDefault = true; return this; } /** * Alias for {@link $onUpdateFn}. */ $onUpdate = this.$onUpdateFn; /** * Adds a `primary key` clause to the column definition. This implicitly makes the column `not null`. * * In SQLite, `integer primary key` implicitly makes the column auto-incrementing. */ primaryKey() { this.config.primaryKey = true; this.config.notNull = true; return this; } /** @internal Sets the name of the column to the key within the table definition if a name was not given. */ setName(name) { if (this.config.name !== "") return; this.config.name = name; } }; } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/pg-core/foreign-keys.js var ForeignKeyBuilder, ForeignKey; var init_foreign_keys = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/pg-core/foreign-keys.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_entity(); init_table_utils(); ForeignKeyBuilder = class { static { __name(this, "ForeignKeyBuilder"); } static [entityKind] = "PgForeignKeyBuilder"; /** @internal */ reference; /** @internal */ _onUpdate = "no action"; /** @internal */ _onDelete = "no action"; constructor(config3, actions) { this.reference = () => { const { name, columns, foreignColumns } = config3(); return { name, columns, foreignTable: foreignColumns[0].table, foreignColumns }; }; if (actions) { this._onUpdate = actions.onUpdate; this._onDelete = actions.onDelete; } } onUpdate(action) { this._onUpdate = action === void 0 ? "no action" : action; return this; } onDelete(action) { this._onDelete = action === void 0 ? "no action" : action; return this; } /** @internal */ build(table3) { return new ForeignKey(table3, this); } }; ForeignKey = class { static { __name(this, "ForeignKey"); } constructor(table3, builder) { this.table = table3; this.reference = builder.reference; this.onUpdate = builder._onUpdate; this.onDelete = builder._onDelete; } static [entityKind] = "PgForeignKey"; reference; onUpdate; onDelete; getName() { const { name, columns, foreignColumns } = this.reference(); const columnNames = columns.map((column) => column.name); const foreignColumnNames = foreignColumns.map((column) => column.name); const chunks = [ this.table[TableName], ...columnNames, foreignColumns[0].table[TableName], ...foreignColumnNames ]; return name ?? `${chunks.join("_")}_fk`; } }; } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/tracing-utils.js function iife(fn, ...args) { return fn(...args); } var init_tracing_utils = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/tracing-utils.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); __name(iife, "iife"); } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/pg-core/unique-constraint.js function uniqueKeyName(table3, columns) { return `${table3[TableName]}_${columns.join("_")}_unique`; } var UniqueConstraintBuilder, UniqueOnConstraintBuilder, UniqueConstraint; var init_unique_constraint = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/pg-core/unique-constraint.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_entity(); init_table_utils(); __name(uniqueKeyName, "uniqueKeyName"); UniqueConstraintBuilder = class { static { __name(this, "UniqueConstraintBuilder"); } constructor(columns, name) { this.name = name; this.columns = columns; } static [entityKind] = "PgUniqueConstraintBuilder"; /** @internal */ columns; /** @internal */ nullsNotDistinctConfig = false; nullsNotDistinct() { this.nullsNotDistinctConfig = true; return this; } /** @internal */ build(table3) { return new UniqueConstraint(table3, this.columns, this.nullsNotDistinctConfig, this.name); } }; UniqueOnConstraintBuilder = class { static { __name(this, "UniqueOnConstraintBuilder"); } static [entityKind] = "PgUniqueOnConstraintBuilder"; /** @internal */ name; constructor(name) { this.name = name; } on(...columns) { return new UniqueConstraintBuilder(columns, this.name); } }; UniqueConstraint = class { static { __name(this, "UniqueConstraint"); } constructor(table3, columns, nullsNotDistinct, name) { this.table = table3; this.columns = columns; this.name = name ?? uniqueKeyName(this.table, this.columns.map((column) => column.name)); this.nullsNotDistinct = nullsNotDistinct; } static [entityKind] = "PgUniqueConstraint"; columns; name; nullsNotDistinct = false; getName() { return this.name; } }; } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/pg-core/utils/array.js function parsePgArrayValue(arrayString, startFrom, inQuotes) { for (let i = startFrom; i < arrayString.length; i++) { const char = arrayString[i]; if (char === "\\") { i++; continue; } if (char === '"') { return [arrayString.slice(startFrom, i).replace(/\\/g, ""), i + 1]; } if (inQuotes) { continue; } if (char === "," || char === "}") { return [arrayString.slice(startFrom, i).replace(/\\/g, ""), i]; } } return [arrayString.slice(startFrom).replace(/\\/g, ""), arrayString.length]; } function parsePgNestedArray(arrayString, startFrom = 0) { const result = []; let i = startFrom; let lastCharIsComma = false; while (i < arrayString.length) { const char = arrayString[i]; if (char === ",") { if (lastCharIsComma || i === startFrom) { result.push(""); } lastCharIsComma = true; i++; continue; } lastCharIsComma = false; if (char === "\\") { i += 2; continue; } if (char === '"') { const [value2, startFrom2] = parsePgArrayValue(arrayString, i + 1, true); result.push(value2); i = startFrom2; continue; } if (char === "}") { return [result, i + 1]; } if (char === "{") { const [value2, startFrom2] = parsePgNestedArray(arrayString, i + 1); result.push(value2); i = startFrom2; continue; } const [value, newStartFrom] = parsePgArrayValue(arrayString, i, false); result.push(value); i = newStartFrom; } return [result, i]; } function parsePgArray(arrayString) { const [result] = parsePgNestedArray(arrayString, 1); return result; } function makePgArray(array2) { return `{${array2.map((item) => { if (Array.isArray(item)) { return makePgArray(item); } if (typeof item === "string") { return `"${item.replace(/\\/g, "\\\\").replace(/"/g, '\\"')}"`; } return `${item}`; }).join(",")}}`; } var init_array = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/pg-core/utils/array.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); __name(parsePgArrayValue, "parsePgArrayValue"); __name(parsePgNestedArray, "parsePgNestedArray"); __name(parsePgArray, "parsePgArray"); __name(makePgArray, "makePgArray"); } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/pg-core/columns/common.js var PgColumnBuilder, PgColumn, ExtraConfigColumn, IndexedColumn, PgArrayBuilder, PgArray; var init_common = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/pg-core/columns/common.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_column_builder(); init_column(); init_entity(); init_foreign_keys(); init_tracing_utils(); init_unique_constraint(); init_array(); PgColumnBuilder = class extends ColumnBuilder { static { __name(this, "PgColumnBuilder"); } foreignKeyConfigs = []; static [entityKind] = "PgColumnBuilder"; array(size) { return new PgArrayBuilder(this.config.name, this, size); } references(ref2, actions = {}) { this.foreignKeyConfigs.push({ ref: ref2, actions }); return this; } unique(name, config3) { this.config.isUnique = true; this.config.uniqueName = name; this.config.uniqueType = config3?.nulls; return this; } generatedAlwaysAs(as) { this.config.generated = { as, type: "always", mode: "stored" }; return this; } /** @internal */ buildForeignKeys(column, table3) { return this.foreignKeyConfigs.map(({ ref: ref2, actions }) => { return iife( (ref22, actions2) => { const builder = new ForeignKeyBuilder(() => { const foreignColumn = ref22(); return { columns: [column], foreignColumns: [foreignColumn] }; }); if (actions2.onUpdate) { builder.onUpdate(actions2.onUpdate); } if (actions2.onDelete) { builder.onDelete(actions2.onDelete); } return builder.build(table3); }, ref2, actions ); }); } /** @internal */ buildExtraConfigColumn(table3) { return new ExtraConfigColumn(table3, this.config); } }; PgColumn = class extends Column { static { __name(this, "PgColumn"); } constructor(table3, config3) { if (!config3.uniqueName) { config3.uniqueName = uniqueKeyName(table3, [config3.name]); } super(table3, config3); this.table = table3; } static [entityKind] = "PgColumn"; }; ExtraConfigColumn = class extends PgColumn { static { __name(this, "ExtraConfigColumn"); } static [entityKind] = "ExtraConfigColumn"; getSQLType() { return this.getSQLType(); } indexConfig = { order: this.config.order ?? "asc", nulls: this.config.nulls ?? "last", opClass: this.config.opClass }; defaultConfig = { order: "asc", nulls: "last", opClass: void 0 }; asc() { this.indexConfig.order = "asc"; return this; } desc() { this.indexConfig.order = "desc"; return this; } nullsFirst() { this.indexConfig.nulls = "first"; return this; } nullsLast() { this.indexConfig.nulls = "last"; return this; } /** * ### PostgreSQL documentation quote * * > An operator class with optional parameters can be specified for each column of an index. * The operator class identifies the operators to be used by the index for that column. * For example, a B-tree index on four-byte integers would use the int4_ops class; * this operator class includes comparison functions for four-byte integers. * In practice the default operator class for the column's data type is usually sufficient. * The main point of having operator classes is that for some data types, there could be more than one meaningful ordering. * For example, we might want to sort a complex-number data type either by absolute value or by real part. * We could do this by defining two operator classes for the data type and then selecting the proper class when creating an index. * More information about operator classes check: * * ### Useful links * https://www.postgresql.org/docs/current/sql-createindex.html * * https://www.postgresql.org/docs/current/indexes-opclass.html * * https://www.postgresql.org/docs/current/xindex.html * * ### Additional types * If you have the `pg_vector` extension installed in your database, you can use the * `vector_l2_ops`, `vector_ip_ops`, `vector_cosine_ops`, `vector_l1_ops`, `bit_hamming_ops`, `bit_jaccard_ops`, `halfvec_l2_ops`, `sparsevec_l2_ops` options, which are predefined types. * * **You can always specify any string you want in the operator class, in case Drizzle doesn't have it natively in its types** * * @param opClass * @returns */ op(opClass) { this.indexConfig.opClass = opClass; return this; } }; IndexedColumn = class { static { __name(this, "IndexedColumn"); } static [entityKind] = "IndexedColumn"; constructor(name, keyAsName, type, indexConfig) { this.name = name; this.keyAsName = keyAsName; this.type = type; this.indexConfig = indexConfig; } name; keyAsName; type; indexConfig; }; PgArrayBuilder = class extends PgColumnBuilder { static { __name(this, "PgArrayBuilder"); } static [entityKind] = "PgArrayBuilder"; constructor(name, baseBuilder, size) { super(name, "array", "PgArray"); this.config.baseBuilder = baseBuilder; this.config.size = size; } /** @internal */ build(table3) { const baseColumn = this.config.baseBuilder.build(table3); return new PgArray( table3, this.config, baseColumn ); } }; PgArray = class _PgArray extends PgColumn { static { __name(this, "PgArray"); } constructor(table3, config3, baseColumn, range) { super(table3, config3); this.baseColumn = baseColumn; this.range = range; this.size = config3.size; } size; static [entityKind] = "PgArray"; getSQLType() { return `${this.baseColumn.getSQLType()}[${typeof this.size === "number" ? this.size : ""}]`; } mapFromDriverValue(value) { if (typeof value === "string") { value = parsePgArray(value); } return value.map((v2) => this.baseColumn.mapFromDriverValue(v2)); } mapToDriverValue(value, isNestedArray = false) { const a = value.map( (v2) => v2 === null ? null : is(this.baseColumn, _PgArray) ? this.baseColumn.mapToDriverValue(v2, true) : this.baseColumn.mapToDriverValue(v2) ); if (isNestedArray) return a; return makePgArray(a); } }; } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/pg-core/columns/enum.js function isPgEnum(obj) { return !!obj && typeof obj === "function" && isPgEnumSym in obj && obj[isPgEnumSym] === true; } var PgEnumObjectColumnBuilder, PgEnumObjectColumn, isPgEnumSym, PgEnumColumnBuilder, PgEnumColumn; var init_enum = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/pg-core/columns/enum.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_entity(); init_common(); PgEnumObjectColumnBuilder = class extends PgColumnBuilder { static { __name(this, "PgEnumObjectColumnBuilder"); } static [entityKind] = "PgEnumObjectColumnBuilder"; constructor(name, enumInstance) { super(name, "string", "PgEnumObjectColumn"); this.config.enum = enumInstance; } /** @internal */ build(table3) { return new PgEnumObjectColumn( table3, this.config ); } }; PgEnumObjectColumn = class extends PgColumn { static { __name(this, "PgEnumObjectColumn"); } static [entityKind] = "PgEnumObjectColumn"; enum; enumValues = this.config.enum.enumValues; constructor(table3, config3) { super(table3, config3); this.enum = config3.enum; } getSQLType() { return this.enum.enumName; } }; isPgEnumSym = /* @__PURE__ */ Symbol.for("drizzle:isPgEnum"); __name(isPgEnum, "isPgEnum"); PgEnumColumnBuilder = class extends PgColumnBuilder { static { __name(this, "PgEnumColumnBuilder"); } static [entityKind] = "PgEnumColumnBuilder"; constructor(name, enumInstance) { super(name, "string", "PgEnumColumn"); this.config.enum = enumInstance; } /** @internal */ build(table3) { return new PgEnumColumn( table3, this.config ); } }; PgEnumColumn = class extends PgColumn { static { __name(this, "PgEnumColumn"); } static [entityKind] = "PgEnumColumn"; enum = this.config.enum; enumValues = this.config.enum.enumValues; constructor(table3, config3) { super(table3, config3); this.enum = config3.enum; } getSQLType() { return this.enum.enumName; } }; } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/subquery.js var Subquery, WithSubquery; var init_subquery = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/subquery.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_entity(); Subquery = class { static { __name(this, "Subquery"); } static [entityKind] = "Subquery"; constructor(sql2, fields, alias, isWith = false, usedTables = []) { this._ = { brand: "Subquery", sql: sql2, selectedFields: fields, alias, isWith, usedTables }; } // getSQL(): SQL { // return new SQL([this]); // } }; WithSubquery = class extends Subquery { static { __name(this, "WithSubquery"); } static [entityKind] = "WithSubquery"; }; } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/version.js var version2; var init_version = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/version.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); version2 = "0.44.7"; } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/tracing.js var otel, rawTracer, tracer; var init_tracing = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/tracing.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_tracing_utils(); init_version(); tracer = { startActiveSpan(name, fn) { if (!otel) { return fn(); } if (!rawTracer) { rawTracer = otel.trace.getTracer("drizzle-orm", version2); } return iife( (otel2, rawTracer2) => rawTracer2.startActiveSpan( name, (span) => { try { return fn(span); } catch (e) { span.setStatus({ code: otel2.SpanStatusCode.ERROR, message: e instanceof Error ? e.message : "Unknown error" // eslint-disable-line no-instanceof/no-instanceof }); throw e; } finally { span.end(); } } ), otel, rawTracer ); } }; } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/view-common.js var ViewBaseConfig; var init_view_common = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/view-common.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); ViewBaseConfig = /* @__PURE__ */ Symbol.for("drizzle:ViewBaseConfig"); } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/sql/sql.js function isSQLWrapper(value) { return value !== null && value !== void 0 && typeof value.getSQL === "function"; } function mergeQueries(queries) { const result = { sql: "", params: [] }; for (const query of queries) { result.sql += query.sql; result.params.push(...query.params); if (query.typings?.length) { if (!result.typings) { result.typings = []; } result.typings.push(...query.typings); } } return result; } function isDriverValueEncoder(value) { return typeof value === "object" && value !== null && "mapToDriverValue" in value && typeof value.mapToDriverValue === "function"; } function sql(strings2, ...params) { const queryChunks = []; if (params.length > 0 || strings2.length > 0 && strings2[0] !== "") { queryChunks.push(new StringChunk(strings2[0])); } for (const [paramIndex, param2] of params.entries()) { queryChunks.push(param2, new StringChunk(strings2[paramIndex + 1])); } return new SQL(queryChunks); } function fillPlaceholders(params, values) { return params.map((p) => { if (is(p, Placeholder)) { if (!(p.name in values)) { throw new Error(`No value for placeholder "${p.name}" was provided`); } return values[p.name]; } if (is(p, Param) && is(p.value, Placeholder)) { if (!(p.value.name in values)) { throw new Error(`No value for placeholder "${p.value.name}" was provided`); } return p.encoder.mapToDriverValue(values[p.value.name]); } return p; }); } var FakePrimitiveParam, StringChunk, SQL, Name, noopDecoder, noopEncoder, noopMapper, Param, Placeholder, IsDrizzleView, View; var init_sql = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/sql/sql.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_entity(); init_enum(); init_subquery(); init_tracing(); init_view_common(); init_column(); init_table(); FakePrimitiveParam = class { static { __name(this, "FakePrimitiveParam"); } static [entityKind] = "FakePrimitiveParam"; }; __name(isSQLWrapper, "isSQLWrapper"); __name(mergeQueries, "mergeQueries"); StringChunk = class { static { __name(this, "StringChunk"); } static [entityKind] = "StringChunk"; value; constructor(value) { this.value = Array.isArray(value) ? value : [value]; } getSQL() { return new SQL([this]); } }; SQL = class _SQL { static { __name(this, "SQL"); } constructor(queryChunks) { this.queryChunks = queryChunks; for (const chunk of queryChunks) { if (is(chunk, Table)) { const schemaName = chunk[Table.Symbol.Schema]; this.usedTables.push( schemaName === void 0 ? chunk[Table.Symbol.Name] : schemaName + "." + chunk[Table.Symbol.Name] ); } } } static [entityKind] = "SQL"; /** @internal */ decoder = noopDecoder; shouldInlineParams = false; /** @internal */ usedTables = []; append(query) { this.queryChunks.push(...query.queryChunks); return this; } toQuery(config3) { return tracer.startActiveSpan("drizzle.buildSQL", (span) => { const query = this.buildQueryFromSourceParams(this.queryChunks, config3); span?.setAttributes({ "drizzle.query.text": query.sql, "drizzle.query.params": JSON.stringify(query.params) }); return query; }); } buildQueryFromSourceParams(chunks, _config) { const config3 = Object.assign({}, _config, { inlineParams: _config.inlineParams || this.shouldInlineParams, paramStartIndex: _config.paramStartIndex || { value: 0 } }); const { casing, escapeName, escapeParam, prepareTyping, inlineParams, paramStartIndex } = config3; return mergeQueries(chunks.map((chunk) => { if (is(chunk, StringChunk)) { return { sql: chunk.value.join(""), params: [] }; } if (is(chunk, Name)) { return { sql: escapeName(chunk.value), params: [] }; } if (chunk === void 0) { return { sql: "", params: [] }; } if (Array.isArray(chunk)) { const result = [new StringChunk("(")]; for (const [i, p] of chunk.entries()) { result.push(p); if (i < chunk.length - 1) { result.push(new StringChunk(", ")); } } result.push(new StringChunk(")")); return this.buildQueryFromSourceParams(result, config3); } if (is(chunk, _SQL)) { return this.buildQueryFromSourceParams(chunk.queryChunks, { ...config3, inlineParams: inlineParams || chunk.shouldInlineParams }); } if (is(chunk, Table)) { const schemaName = chunk[Table.Symbol.Schema]; const tableName = chunk[Table.Symbol.Name]; return { sql: schemaName === void 0 || chunk[IsAlias] ? escapeName(tableName) : escapeName(schemaName) + "." + escapeName(tableName), params: [] }; } if (is(chunk, Column)) { const columnName = casing.getColumnCasing(chunk); if (_config.invokeSource === "indexes") { return { sql: escapeName(columnName), params: [] }; } const schemaName = chunk.table[Table.Symbol.Schema]; return { sql: chunk.table[IsAlias] || schemaName === void 0 ? escapeName(chunk.table[Table.Symbol.Name]) + "." + escapeName(columnName) : escapeName(schemaName) + "." + escapeName(chunk.table[Table.Symbol.Name]) + "." + escapeName(columnName), params: [] }; } if (is(chunk, View)) { const schemaName = chunk[ViewBaseConfig].schema; const viewName = chunk[ViewBaseConfig].name; return { sql: schemaName === void 0 || chunk[ViewBaseConfig].isAlias ? escapeName(viewName) : escapeName(schemaName) + "." + escapeName(viewName), params: [] }; } if (is(chunk, Param)) { if (is(chunk.value, Placeholder)) { return { sql: escapeParam(paramStartIndex.value++, chunk), params: [chunk], typings: ["none"] }; } const mappedValue = chunk.value === null ? null : chunk.encoder.mapToDriverValue(chunk.value); if (is(mappedValue, _SQL)) { return this.buildQueryFromSourceParams([mappedValue], config3); } if (inlineParams) { return { sql: this.mapInlineParam(mappedValue, config3), params: [] }; } let typings = ["none"]; if (prepareTyping) { typings = [prepareTyping(chunk.encoder)]; } return { sql: escapeParam(paramStartIndex.value++, mappedValue), params: [mappedValue], typings }; } if (is(chunk, Placeholder)) { return { sql: escapeParam(paramStartIndex.value++, chunk), params: [chunk], typings: ["none"] }; } if (is(chunk, _SQL.Aliased) && chunk.fieldAlias !== void 0) { return { sql: escapeName(chunk.fieldAlias), params: [] }; } if (is(chunk, Subquery)) { if (chunk._.isWith) { return { sql: escapeName(chunk._.alias), params: [] }; } return this.buildQueryFromSourceParams([ new StringChunk("("), chunk._.sql, new StringChunk(") "), new Name(chunk._.alias) ], config3); } if (isPgEnum(chunk)) { if (chunk.schema) { return { sql: escapeName(chunk.schema) + "." + escapeName(chunk.enumName), params: [] }; } return { sql: escapeName(chunk.enumName), params: [] }; } if (isSQLWrapper(chunk)) { if (chunk.shouldOmitSQLParens?.()) { return this.buildQueryFromSourceParams([chunk.getSQL()], config3); } return this.buildQueryFromSourceParams([ new StringChunk("("), chunk.getSQL(), new StringChunk(")") ], config3); } if (inlineParams) { return { sql: this.mapInlineParam(chunk, config3), params: [] }; } return { sql: escapeParam(paramStartIndex.value++, chunk), params: [chunk], typings: ["none"] }; })); } mapInlineParam(chunk, { escapeString }) { if (chunk === null) { return "null"; } if (typeof chunk === "number" || typeof chunk === "boolean") { return chunk.toString(); } if (typeof chunk === "string") { return escapeString(chunk); } if (typeof chunk === "object") { const mappedValueAsString = chunk.toString(); if (mappedValueAsString === "[object Object]") { return escapeString(JSON.stringify(chunk)); } return escapeString(mappedValueAsString); } throw new Error("Unexpected param value: " + chunk); } getSQL() { return this; } as(alias) { if (alias === void 0) { return this; } return new _SQL.Aliased(this, alias); } mapWith(decoder3) { this.decoder = typeof decoder3 === "function" ? { mapFromDriverValue: decoder3 } : decoder3; return this; } inlineParams() { this.shouldInlineParams = true; return this; } /** * This method is used to conditionally include a part of the query. * * @param condition - Condition to check * @returns itself if the condition is `true`, otherwise `undefined` */ if(condition) { return condition ? this : void 0; } }; Name = class { static { __name(this, "Name"); } constructor(value) { this.value = value; } static [entityKind] = "Name"; brand; getSQL() { return new SQL([this]); } }; __name(isDriverValueEncoder, "isDriverValueEncoder"); noopDecoder = { mapFromDriverValue: /* @__PURE__ */ __name((value) => value, "mapFromDriverValue") }; noopEncoder = { mapToDriverValue: /* @__PURE__ */ __name((value) => value, "mapToDriverValue") }; noopMapper = { ...noopDecoder, ...noopEncoder }; Param = class { static { __name(this, "Param"); } /** * @param value - Parameter value * @param encoder - Encoder to convert the value to a driver parameter */ constructor(value, encoder2 = noopEncoder) { this.value = value; this.encoder = encoder2; } static [entityKind] = "Param"; brand; getSQL() { return new SQL([this]); } }; __name(sql, "sql"); ((sql2) => { function empty() { return new SQL([]); } __name(empty, "empty"); sql2.empty = empty; function fromList(list) { return new SQL(list); } __name(fromList, "fromList"); sql2.fromList = fromList; function raw2(str) { return new SQL([new StringChunk(str)]); } __name(raw2, "raw"); sql2.raw = raw2; function join3(chunks, separator) { const result = []; for (const [i, chunk] of chunks.entries()) { if (i > 0 && separator !== void 0) { result.push(separator); } result.push(chunk); } return new SQL(result); } __name(join3, "join"); sql2.join = join3; function identifier(value) { return new Name(value); } __name(identifier, "identifier"); sql2.identifier = identifier; function placeholder2(name2) { return new Placeholder(name2); } __name(placeholder2, "placeholder2"); sql2.placeholder = placeholder2; function param2(value, encoder2) { return new Param(value, encoder2); } __name(param2, "param2"); sql2.param = param2; })(sql || (sql = {})); ((SQL22) => { class Aliased { static { __name(this, "Aliased"); } constructor(sql2, fieldAlias) { this.sql = sql2; this.fieldAlias = fieldAlias; } static [entityKind] = "SQL.Aliased"; /** @internal */ isSelectionField = false; getSQL() { return this.sql; } /** @internal */ clone() { return new Aliased(this.sql, this.fieldAlias); } } SQL22.Aliased = Aliased; })(SQL || (SQL = {})); Placeholder = class { static { __name(this, "Placeholder"); } constructor(name2) { this.name = name2; } static [entityKind] = "Placeholder"; getSQL() { return new SQL([this]); } }; __name(fillPlaceholders, "fillPlaceholders"); IsDrizzleView = /* @__PURE__ */ Symbol.for("drizzle:IsDrizzleView"); View = class { static { __name(this, "View"); } static [entityKind] = "View"; /** @internal */ [ViewBaseConfig]; /** @internal */ [IsDrizzleView] = true; constructor({ name: name2, schema, selectedFields, query }) { this[ViewBaseConfig] = { name: name2, originalName: name2, schema, selectedFields, query, isExisting: !query, isAlias: false }; } getSQL() { return new SQL([this]); } }; Column.prototype.getSQL = function() { return new SQL([this]); }; Table.prototype.getSQL = function() { return new SQL([this]); }; Subquery.prototype.getSQL = function() { return new SQL([this]); }; } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/utils.js function mapResultRow(columns, row, joinsNotNullableMap) { const nullifyMap = {}; const result = columns.reduce( (result2, { path: path3, field }, columnIndex) => { let decoder3; if (is(field, Column)) { decoder3 = field; } else if (is(field, SQL)) { decoder3 = field.decoder; } else { decoder3 = field.sql.decoder; } let node = result2; for (const [pathChunkIndex, pathChunk] of path3.entries()) { if (pathChunkIndex < path3.length - 1) { if (!(pathChunk in node)) { node[pathChunk] = {}; } node = node[pathChunk]; } else { const rawValue = row[columnIndex]; const value = node[pathChunk] = rawValue === null ? null : decoder3.mapFromDriverValue(rawValue); if (joinsNotNullableMap && is(field, Column) && path3.length === 2) { const objectName = path3[0]; if (!(objectName in nullifyMap)) { nullifyMap[objectName] = value === null ? getTableName(field.table) : false; } else if (typeof nullifyMap[objectName] === "string" && nullifyMap[objectName] !== getTableName(field.table)) { nullifyMap[objectName] = false; } } } } return result2; }, {} ); if (joinsNotNullableMap && Object.keys(nullifyMap).length > 0) { for (const [objectName, tableName] of Object.entries(nullifyMap)) { if (typeof tableName === "string" && !joinsNotNullableMap[tableName]) { result[objectName] = null; } } } return result; } function orderSelectedFields(fields, pathPrefix) { return Object.entries(fields).reduce((result, [name, field]) => { if (typeof name !== "string") { return result; } const newPath = pathPrefix ? [...pathPrefix, name] : [name]; if (is(field, Column) || is(field, SQL) || is(field, SQL.Aliased)) { result.push({ path: newPath, field }); } else if (is(field, Table)) { result.push(...orderSelectedFields(field[Table.Symbol.Columns], newPath)); } else { result.push(...orderSelectedFields(field, newPath)); } return result; }, []); } function haveSameKeys(left, right) { const leftKeys = Object.keys(left); const rightKeys = Object.keys(right); if (leftKeys.length !== rightKeys.length) { return false; } for (const [index, key] of leftKeys.entries()) { if (key !== rightKeys[index]) { return false; } } return true; } function mapUpdateSet(table3, values) { const entries = Object.entries(values).filter(([, value]) => value !== void 0).map(([key, value]) => { if (is(value, SQL) || is(value, Column)) { return [key, value]; } else { return [key, new Param(value, table3[Table.Symbol.Columns][key])]; } }); if (entries.length === 0) { throw new Error("No values to set"); } return Object.fromEntries(entries); } function applyMixins(baseClass, extendedClasses) { for (const extendedClass of extendedClasses) { for (const name of Object.getOwnPropertyNames(extendedClass.prototype)) { if (name === "constructor") continue; Object.defineProperty( baseClass.prototype, name, Object.getOwnPropertyDescriptor(extendedClass.prototype, name) || /* @__PURE__ */ Object.create(null) ); } } } function getTableColumns(table3) { return table3[Table.Symbol.Columns]; } function getTableLikeName(table3) { return is(table3, Subquery) ? table3._.alias : is(table3, View) ? table3[ViewBaseConfig].name : is(table3, SQL) ? void 0 : table3[Table.Symbol.IsAlias] ? table3[Table.Symbol.Name] : table3[Table.Symbol.BaseName]; } function getColumnNameAndConfig(a, b) { return { name: typeof a === "string" && a.length > 0 ? a : "", config: typeof a === "object" ? a : b }; } var textDecoder; var init_utils2 = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/utils.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_column(); init_entity(); init_sql(); init_subquery(); init_table(); init_view_common(); __name(mapResultRow, "mapResultRow"); __name(orderSelectedFields, "orderSelectedFields"); __name(haveSameKeys, "haveSameKeys"); __name(mapUpdateSet, "mapUpdateSet"); __name(applyMixins, "applyMixins"); __name(getTableColumns, "getTableColumns"); __name(getTableLikeName, "getTableLikeName"); __name(getColumnNameAndConfig, "getColumnNameAndConfig"); textDecoder = typeof TextDecoder === "undefined" ? null : new TextDecoder(); } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/pg-core/table.js var InlineForeignKeys, EnableRLS, PgTable; var init_table2 = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/pg-core/table.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_entity(); init_table(); InlineForeignKeys = /* @__PURE__ */ Symbol.for("drizzle:PgInlineForeignKeys"); EnableRLS = /* @__PURE__ */ Symbol.for("drizzle:EnableRLS"); PgTable = class extends Table { static { __name(this, "PgTable"); } static [entityKind] = "PgTable"; /** @internal */ static Symbol = Object.assign({}, Table.Symbol, { InlineForeignKeys, EnableRLS }); /**@internal */ [InlineForeignKeys] = []; /** @internal */ [EnableRLS] = false; /** @internal */ [Table.Symbol.ExtraConfigBuilder] = void 0; /** @internal */ [Table.Symbol.ExtraConfigColumns] = {}; }; } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/pg-core/primary-keys.js var PrimaryKeyBuilder, PrimaryKey; var init_primary_keys = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/pg-core/primary-keys.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_entity(); init_table2(); PrimaryKeyBuilder = class { static { __name(this, "PrimaryKeyBuilder"); } static [entityKind] = "PgPrimaryKeyBuilder"; /** @internal */ columns; /** @internal */ name; constructor(columns, name) { this.columns = columns; this.name = name; } /** @internal */ build(table3) { return new PrimaryKey(table3, this.columns, this.name); } }; PrimaryKey = class { static { __name(this, "PrimaryKey"); } constructor(table3, columns, name) { this.table = table3; this.columns = columns; this.name = name; } static [entityKind] = "PgPrimaryKey"; columns; name; getName() { return this.name ?? `${this.table[PgTable.Symbol.Name]}_${this.columns.map((column) => column.name).join("_")}_pk`; } }; } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/sql/expressions/conditions.js function bindIfParam(value, column) { if (isDriverValueEncoder(column) && !isSQLWrapper(value) && !is(value, Param) && !is(value, Placeholder) && !is(value, Column) && !is(value, Table) && !is(value, View)) { return new Param(value, column); } return value; } function and(...unfilteredConditions) { const conditions = unfilteredConditions.filter( (c) => c !== void 0 ); if (conditions.length === 0) { return void 0; } if (conditions.length === 1) { return new SQL(conditions); } return new SQL([ new StringChunk("("), sql.join(conditions, new StringChunk(" and ")), new StringChunk(")") ]); } function or(...unfilteredConditions) { const conditions = unfilteredConditions.filter( (c) => c !== void 0 ); if (conditions.length === 0) { return void 0; } if (conditions.length === 1) { return new SQL(conditions); } return new SQL([ new StringChunk("("), sql.join(conditions, new StringChunk(" or ")), new StringChunk(")") ]); } function not(condition) { return sql`not ${condition}`; } function inArray(column, values) { if (Array.isArray(values)) { if (values.length === 0) { return sql`false`; } return sql`${column} in ${values.map((v2) => bindIfParam(v2, column))}`; } return sql`${column} in ${bindIfParam(values, column)}`; } function notInArray(column, values) { if (Array.isArray(values)) { if (values.length === 0) { return sql`true`; } return sql`${column} not in ${values.map((v2) => bindIfParam(v2, column))}`; } return sql`${column} not in ${bindIfParam(values, column)}`; } function isNull(value) { return sql`${value} is null`; } function isNotNull(value) { return sql`${value} is not null`; } function exists(subquery) { return sql`exists ${subquery}`; } function notExists(subquery) { return sql`not exists ${subquery}`; } function between(column, min, max2) { return sql`${column} between ${bindIfParam(min, column)} and ${bindIfParam( max2, column )}`; } function notBetween(column, min, max2) { return sql`${column} not between ${bindIfParam( min, column )} and ${bindIfParam(max2, column)}`; } function like(column, value) { return sql`${column} like ${value}`; } function notLike(column, value) { return sql`${column} not like ${value}`; } function ilike(column, value) { return sql`${column} ilike ${value}`; } function notIlike(column, value) { return sql`${column} not ilike ${value}`; } var eq, ne, gt, gte, lt, lte; var init_conditions = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/sql/expressions/conditions.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_column(); init_entity(); init_table(); init_sql(); __name(bindIfParam, "bindIfParam"); eq = /* @__PURE__ */ __name((left, right) => { return sql`${left} = ${bindIfParam(right, left)}`; }, "eq"); ne = /* @__PURE__ */ __name((left, right) => { return sql`${left} <> ${bindIfParam(right, left)}`; }, "ne"); __name(and, "and"); __name(or, "or"); __name(not, "not"); gt = /* @__PURE__ */ __name((left, right) => { return sql`${left} > ${bindIfParam(right, left)}`; }, "gt"); gte = /* @__PURE__ */ __name((left, right) => { return sql`${left} >= ${bindIfParam(right, left)}`; }, "gte"); lt = /* @__PURE__ */ __name((left, right) => { return sql`${left} < ${bindIfParam(right, left)}`; }, "lt"); lte = /* @__PURE__ */ __name((left, right) => { return sql`${left} <= ${bindIfParam(right, left)}`; }, "lte"); __name(inArray, "inArray"); __name(notInArray, "notInArray"); __name(isNull, "isNull"); __name(isNotNull, "isNotNull"); __name(exists, "exists"); __name(notExists, "notExists"); __name(between, "between"); __name(notBetween, "notBetween"); __name(like, "like"); __name(notLike, "notLike"); __name(ilike, "ilike"); __name(notIlike, "notIlike"); } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/sql/expressions/select.js function asc(column) { return sql`${column} asc`; } function desc(column) { return sql`${column} desc`; } var init_select = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/sql/expressions/select.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_sql(); __name(asc, "asc"); __name(desc, "desc"); } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/sql/expressions/index.js var init_expressions = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/sql/expressions/index.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_conditions(); init_select(); } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/relations.js function getOperators() { return { and, between, eq, exists, gt, gte, ilike, inArray, isNull, isNotNull, like, lt, lte, ne, not, notBetween, notExists, notLike, notIlike, notInArray, or, sql }; } function getOrderByOperators() { return { sql, asc, desc }; } function extractTablesRelationalConfig(schema, configHelpers) { if (Object.keys(schema).length === 1 && "default" in schema && !is(schema["default"], Table)) { schema = schema["default"]; } const tableNamesMap = {}; const relationsBuffer = {}; const tablesConfig = {}; for (const [key, value] of Object.entries(schema)) { if (is(value, Table)) { const dbName = getTableUniqueName(value); const bufferedRelations = relationsBuffer[dbName]; tableNamesMap[dbName] = key; tablesConfig[key] = { tsName: key, dbName: value[Table.Symbol.Name], schema: value[Table.Symbol.Schema], columns: value[Table.Symbol.Columns], relations: bufferedRelations?.relations ?? {}, primaryKey: bufferedRelations?.primaryKey ?? [] }; for (const column of Object.values( value[Table.Symbol.Columns] )) { if (column.primary) { tablesConfig[key].primaryKey.push(column); } } const extraConfig = value[Table.Symbol.ExtraConfigBuilder]?.(value[Table.Symbol.ExtraConfigColumns]); if (extraConfig) { for (const configEntry of Object.values(extraConfig)) { if (is(configEntry, PrimaryKeyBuilder)) { tablesConfig[key].primaryKey.push(...configEntry.columns); } } } } else if (is(value, Relations)) { const dbName = getTableUniqueName(value.table); const tableName = tableNamesMap[dbName]; const relations2 = value.config( configHelpers(value.table) ); let primaryKey2; for (const [relationName, relation] of Object.entries(relations2)) { if (tableName) { const tableConfig = tablesConfig[tableName]; tableConfig.relations[relationName] = relation; if (primaryKey2) { tableConfig.primaryKey.push(...primaryKey2); } } else { if (!(dbName in relationsBuffer)) { relationsBuffer[dbName] = { relations: {}, primaryKey: primaryKey2 }; } relationsBuffer[dbName].relations[relationName] = relation; } } } } return { tables: tablesConfig, tableNamesMap }; } function relations(table3, relations2) { return new Relations( table3, (helpers) => Object.fromEntries( Object.entries(relations2(helpers)).map(([key, value]) => [ key, value.withFieldName(key) ]) ) ); } function createOne(sourceTable) { return /* @__PURE__ */ __name(function one(table3, config3) { return new One( sourceTable, table3, config3, config3?.fields.reduce((res, f) => res && f.notNull, true) ?? false ); }, "one"); } function createMany(sourceTable) { return /* @__PURE__ */ __name(function many(referencedTable, config3) { return new Many(sourceTable, referencedTable, config3); }, "many"); } function normalizeRelation(schema, tableNamesMap, relation) { if (is(relation, One) && relation.config) { return { fields: relation.config.fields, references: relation.config.references }; } const referencedTableTsName = tableNamesMap[getTableUniqueName(relation.referencedTable)]; if (!referencedTableTsName) { throw new Error( `Table "${relation.referencedTable[Table.Symbol.Name]}" not found in schema` ); } const referencedTableConfig = schema[referencedTableTsName]; if (!referencedTableConfig) { throw new Error(`Table "${referencedTableTsName}" not found in schema`); } const sourceTable = relation.sourceTable; const sourceTableTsName = tableNamesMap[getTableUniqueName(sourceTable)]; if (!sourceTableTsName) { throw new Error( `Table "${sourceTable[Table.Symbol.Name]}" not found in schema` ); } const reverseRelations = []; for (const referencedTableRelation of Object.values( referencedTableConfig.relations )) { if (relation.relationName && relation !== referencedTableRelation && referencedTableRelation.relationName === relation.relationName || !relation.relationName && referencedTableRelation.referencedTable === relation.sourceTable) { reverseRelations.push(referencedTableRelation); } } if (reverseRelations.length > 1) { throw relation.relationName ? new Error( `There are multiple relations with name "${relation.relationName}" in table "${referencedTableTsName}"` ) : new Error( `There are multiple relations between "${referencedTableTsName}" and "${relation.sourceTable[Table.Symbol.Name]}". Please specify relation name` ); } if (reverseRelations[0] && is(reverseRelations[0], One) && reverseRelations[0].config) { return { fields: reverseRelations[0].config.references, references: reverseRelations[0].config.fields }; } throw new Error( `There is not enough information to infer relation "${sourceTableTsName}.${relation.fieldName}"` ); } function createTableRelationsHelpers(sourceTable) { return { one: createOne(sourceTable), many: createMany(sourceTable) }; } function mapRelationalRow(tablesConfig, tableConfig, row, buildQueryResultSelection, mapColumnValue = (value) => value) { const result = {}; for (const [ selectionItemIndex, selectionItem ] of buildQueryResultSelection.entries()) { if (selectionItem.isJson) { const relation = tableConfig.relations[selectionItem.tsKey]; const rawSubRows = row[selectionItemIndex]; const subRows = typeof rawSubRows === "string" ? JSON.parse(rawSubRows) : rawSubRows; result[selectionItem.tsKey] = is(relation, One) ? subRows && mapRelationalRow( tablesConfig, tablesConfig[selectionItem.relationTableTsKey], subRows, selectionItem.selection, mapColumnValue ) : subRows.map( (subRow) => mapRelationalRow( tablesConfig, tablesConfig[selectionItem.relationTableTsKey], subRow, selectionItem.selection, mapColumnValue ) ); } else { const value = mapColumnValue(row[selectionItemIndex]); const field = selectionItem.field; let decoder3; if (is(field, Column)) { decoder3 = field; } else if (is(field, SQL)) { decoder3 = field.decoder; } else { decoder3 = field.sql.decoder; } result[selectionItem.tsKey] = value === null ? null : decoder3.mapFromDriverValue(value); } } return result; } var Relation, Relations, One, Many; var init_relations = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/relations.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_table(); init_column(); init_entity(); init_primary_keys(); init_expressions(); init_sql(); Relation = class { static { __name(this, "Relation"); } constructor(sourceTable, referencedTable, relationName) { this.sourceTable = sourceTable; this.referencedTable = referencedTable; this.relationName = relationName; this.referencedTableName = referencedTable[Table.Symbol.Name]; } static [entityKind] = "Relation"; referencedTableName; fieldName; }; Relations = class { static { __name(this, "Relations"); } constructor(table3, config3) { this.table = table3; this.config = config3; } static [entityKind] = "Relations"; }; One = class _One extends Relation { static { __name(this, "One"); } constructor(sourceTable, referencedTable, config3, isNullable) { super(sourceTable, referencedTable, config3?.relationName); this.config = config3; this.isNullable = isNullable; } static [entityKind] = "One"; withFieldName(fieldName) { const relation = new _One( this.sourceTable, this.referencedTable, this.config, this.isNullable ); relation.fieldName = fieldName; return relation; } }; Many = class _Many extends Relation { static { __name(this, "Many"); } constructor(sourceTable, referencedTable, config3) { super(sourceTable, referencedTable, config3?.relationName); this.config = config3; } static [entityKind] = "Many"; withFieldName(fieldName) { const relation = new _Many( this.sourceTable, this.referencedTable, this.config ); relation.fieldName = fieldName; return relation; } }; __name(getOperators, "getOperators"); __name(getOrderByOperators, "getOrderByOperators"); __name(extractTablesRelationalConfig, "extractTablesRelationalConfig"); __name(relations, "relations"); __name(createOne, "createOne"); __name(createMany, "createMany"); __name(normalizeRelation, "normalizeRelation"); __name(createTableRelationsHelpers, "createTableRelationsHelpers"); __name(mapRelationalRow, "mapRelationalRow"); } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/alias.js function aliasedTable(table3, tableAlias) { return new Proxy(table3, new TableAliasProxyHandler(tableAlias, false)); } function aliasedTableColumn(column, tableAlias) { return new Proxy( column, new ColumnAliasProxyHandler(new Proxy(column.table, new TableAliasProxyHandler(tableAlias, false))) ); } function mapColumnsInAliasedSQLToAlias(query, alias) { return new SQL.Aliased(mapColumnsInSQLToAlias(query.sql, alias), query.fieldAlias); } function mapColumnsInSQLToAlias(query, alias) { return sql.join(query.queryChunks.map((c) => { if (is(c, Column)) { return aliasedTableColumn(c, alias); } if (is(c, SQL)) { return mapColumnsInSQLToAlias(c, alias); } if (is(c, SQL.Aliased)) { return mapColumnsInAliasedSQLToAlias(c, alias); } return c; })); } var ColumnAliasProxyHandler, TableAliasProxyHandler, RelationTableAliasProxyHandler; var init_alias = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/alias.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_column(); init_entity(); init_sql(); init_table(); init_view_common(); ColumnAliasProxyHandler = class { static { __name(this, "ColumnAliasProxyHandler"); } constructor(table3) { this.table = table3; } static [entityKind] = "ColumnAliasProxyHandler"; get(columnObj, prop) { if (prop === "table") { return this.table; } return columnObj[prop]; } }; TableAliasProxyHandler = class { static { __name(this, "TableAliasProxyHandler"); } constructor(alias, replaceOriginalName) { this.alias = alias; this.replaceOriginalName = replaceOriginalName; } static [entityKind] = "TableAliasProxyHandler"; get(target2, prop) { if (prop === Table.Symbol.IsAlias) { return true; } if (prop === Table.Symbol.Name) { return this.alias; } if (this.replaceOriginalName && prop === Table.Symbol.OriginalName) { return this.alias; } if (prop === ViewBaseConfig) { return { ...target2[ViewBaseConfig], name: this.alias, isAlias: true }; } if (prop === Table.Symbol.Columns) { const columns = target2[Table.Symbol.Columns]; if (!columns) { return columns; } const proxiedColumns = {}; Object.keys(columns).map((key) => { proxiedColumns[key] = new Proxy( columns[key], new ColumnAliasProxyHandler(new Proxy(target2, this)) ); }); return proxiedColumns; } const value = target2[prop]; if (is(value, Column)) { return new Proxy(value, new ColumnAliasProxyHandler(new Proxy(target2, this))); } return value; } }; RelationTableAliasProxyHandler = class { static { __name(this, "RelationTableAliasProxyHandler"); } constructor(alias) { this.alias = alias; } static [entityKind] = "RelationTableAliasProxyHandler"; get(target2, prop) { if (prop === "sourceTable") { return aliasedTable(target2.sourceTable, this.alias); } return target2[prop]; } }; __name(aliasedTable, "aliasedTable"); __name(aliasedTableColumn, "aliasedTableColumn"); __name(mapColumnsInAliasedSQLToAlias, "mapColumnsInAliasedSQLToAlias"); __name(mapColumnsInSQLToAlias, "mapColumnsInSQLToAlias"); } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/selection-proxy.js var SelectionProxyHandler; var init_selection_proxy = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/selection-proxy.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_alias(); init_column(); init_entity(); init_sql(); init_subquery(); init_view_common(); SelectionProxyHandler = class _SelectionProxyHandler { static { __name(this, "SelectionProxyHandler"); } static [entityKind] = "SelectionProxyHandler"; config; constructor(config3) { this.config = { ...config3 }; } get(subquery, prop) { if (prop === "_") { return { ...subquery["_"], selectedFields: new Proxy( subquery._.selectedFields, this ) }; } if (prop === ViewBaseConfig) { return { ...subquery[ViewBaseConfig], selectedFields: new Proxy( subquery[ViewBaseConfig].selectedFields, this ) }; } if (typeof prop === "symbol") { return subquery[prop]; } const columns = is(subquery, Subquery) ? subquery._.selectedFields : is(subquery, View) ? subquery[ViewBaseConfig].selectedFields : subquery; const value = columns[prop]; if (is(value, SQL.Aliased)) { if (this.config.sqlAliasedBehavior === "sql" && !value.isSelectionField) { return value.sql; } const newValue = value.clone(); newValue.isSelectionField = true; return newValue; } if (is(value, SQL)) { if (this.config.sqlBehavior === "sql") { return value; } throw new Error( `You tried to reference "${prop}" field from a subquery, which is a raw SQL field, but it doesn't have an alias declared. Please add an alias to the field using ".as('alias')" method.` ); } if (is(value, Column)) { if (this.config.alias) { return new Proxy( value, new ColumnAliasProxyHandler( new Proxy( value.table, new TableAliasProxyHandler(this.config.alias, this.config.replaceOriginalName ?? false) ) ) ); } return value; } if (typeof value !== "object" || value === null) { return value; } return new Proxy(value, new _SelectionProxyHandler(this.config)); } }; } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/query-promise.js var QueryPromise; var init_query_promise = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/query-promise.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_entity(); QueryPromise = class { static { __name(this, "QueryPromise"); } static [entityKind] = "QueryPromise"; [Symbol.toStringTag] = "QueryPromise"; catch(onRejected) { return this.then(void 0, onRejected); } finally(onFinally) { return this.then( (value) => { onFinally?.(); return value; }, (reason) => { onFinally?.(); throw reason; } ); } then(onFulfilled, onRejected) { return this.execute().then(onFulfilled, onRejected); } }; } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/foreign-keys.js var ForeignKeyBuilder2, ForeignKey2; var init_foreign_keys2 = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/foreign-keys.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_entity(); init_table_utils(); ForeignKeyBuilder2 = class { static { __name(this, "ForeignKeyBuilder"); } static [entityKind] = "SQLiteForeignKeyBuilder"; /** @internal */ reference; /** @internal */ _onUpdate; /** @internal */ _onDelete; constructor(config3, actions) { this.reference = () => { const { name, columns, foreignColumns } = config3(); return { name, columns, foreignTable: foreignColumns[0].table, foreignColumns }; }; if (actions) { this._onUpdate = actions.onUpdate; this._onDelete = actions.onDelete; } } onUpdate(action) { this._onUpdate = action; return this; } onDelete(action) { this._onDelete = action; return this; } /** @internal */ build(table3) { return new ForeignKey2(table3, this); } }; ForeignKey2 = class { static { __name(this, "ForeignKey"); } constructor(table3, builder) { this.table = table3; this.reference = builder.reference; this.onUpdate = builder._onUpdate; this.onDelete = builder._onDelete; } static [entityKind] = "SQLiteForeignKey"; reference; onUpdate; onDelete; getName() { const { name, columns, foreignColumns } = this.reference(); const columnNames = columns.map((column) => column.name); const foreignColumnNames = foreignColumns.map((column) => column.name); const chunks = [ this.table[TableName], ...columnNames, foreignColumns[0].table[TableName], ...foreignColumnNames ]; return name ?? `${chunks.join("_")}_fk`; } }; } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/unique-constraint.js function uniqueKeyName2(table3, columns) { return `${table3[TableName]}_${columns.join("_")}_unique`; } var UniqueConstraintBuilder2, UniqueOnConstraintBuilder2, UniqueConstraint2; var init_unique_constraint2 = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/unique-constraint.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_entity(); init_table_utils(); __name(uniqueKeyName2, "uniqueKeyName"); UniqueConstraintBuilder2 = class { static { __name(this, "UniqueConstraintBuilder"); } constructor(columns, name) { this.name = name; this.columns = columns; } static [entityKind] = "SQLiteUniqueConstraintBuilder"; /** @internal */ columns; /** @internal */ build(table3) { return new UniqueConstraint2(table3, this.columns, this.name); } }; UniqueOnConstraintBuilder2 = class { static { __name(this, "UniqueOnConstraintBuilder"); } static [entityKind] = "SQLiteUniqueOnConstraintBuilder"; /** @internal */ name; constructor(name) { this.name = name; } on(...columns) { return new UniqueConstraintBuilder2(columns, this.name); } }; UniqueConstraint2 = class { static { __name(this, "UniqueConstraint"); } constructor(table3, columns, name) { this.table = table3; this.columns = columns; this.name = name ?? uniqueKeyName2(this.table, this.columns.map((column) => column.name)); } static [entityKind] = "SQLiteUniqueConstraint"; columns; name; getName() { return this.name; } }; } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/columns/common.js var SQLiteColumnBuilder, SQLiteColumn; var init_common2 = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/columns/common.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_column_builder(); init_column(); init_entity(); init_foreign_keys2(); init_unique_constraint2(); SQLiteColumnBuilder = class extends ColumnBuilder { static { __name(this, "SQLiteColumnBuilder"); } static [entityKind] = "SQLiteColumnBuilder"; foreignKeyConfigs = []; references(ref2, actions = {}) { this.foreignKeyConfigs.push({ ref: ref2, actions }); return this; } unique(name) { this.config.isUnique = true; this.config.uniqueName = name; return this; } generatedAlwaysAs(as, config3) { this.config.generated = { as, type: "always", mode: config3?.mode ?? "virtual" }; return this; } /** @internal */ buildForeignKeys(column, table3) { return this.foreignKeyConfigs.map(({ ref: ref2, actions }) => { return ((ref22, actions2) => { const builder = new ForeignKeyBuilder2(() => { const foreignColumn = ref22(); return { columns: [column], foreignColumns: [foreignColumn] }; }); if (actions2.onUpdate) { builder.onUpdate(actions2.onUpdate); } if (actions2.onDelete) { builder.onDelete(actions2.onDelete); } return builder.build(table3); })(ref2, actions); }); } }; SQLiteColumn = class extends Column { static { __name(this, "SQLiteColumn"); } constructor(table3, config3) { if (!config3.uniqueName) { config3.uniqueName = uniqueKeyName2(table3, [config3.name]); } super(table3, config3); this.table = table3; } static [entityKind] = "SQLiteColumn"; }; } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/columns/blob.js function blob(a, b) { const { name, config: config3 } = getColumnNameAndConfig(a, b); if (config3?.mode === "json") { return new SQLiteBlobJsonBuilder(name); } if (config3?.mode === "bigint") { return new SQLiteBigIntBuilder(name); } return new SQLiteBlobBufferBuilder(name); } var SQLiteBigIntBuilder, SQLiteBigInt, SQLiteBlobJsonBuilder, SQLiteBlobJson, SQLiteBlobBufferBuilder, SQLiteBlobBuffer; var init_blob = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/columns/blob.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_entity(); init_utils2(); init_common2(); SQLiteBigIntBuilder = class extends SQLiteColumnBuilder { static { __name(this, "SQLiteBigIntBuilder"); } static [entityKind] = "SQLiteBigIntBuilder"; constructor(name) { super(name, "bigint", "SQLiteBigInt"); } /** @internal */ build(table3) { return new SQLiteBigInt(table3, this.config); } }; SQLiteBigInt = class extends SQLiteColumn { static { __name(this, "SQLiteBigInt"); } static [entityKind] = "SQLiteBigInt"; getSQLType() { return "blob"; } mapFromDriverValue(value) { if (typeof Buffer !== "undefined" && Buffer.from) { const buf = Buffer.isBuffer(value) ? value : value instanceof ArrayBuffer ? Buffer.from(value) : value.buffer ? Buffer.from(value.buffer, value.byteOffset, value.byteLength) : Buffer.from(value); return BigInt(buf.toString("utf8")); } return BigInt(textDecoder.decode(value)); } mapToDriverValue(value) { return Buffer.from(value.toString()); } }; SQLiteBlobJsonBuilder = class extends SQLiteColumnBuilder { static { __name(this, "SQLiteBlobJsonBuilder"); } static [entityKind] = "SQLiteBlobJsonBuilder"; constructor(name) { super(name, "json", "SQLiteBlobJson"); } /** @internal */ build(table3) { return new SQLiteBlobJson( table3, this.config ); } }; SQLiteBlobJson = class extends SQLiteColumn { static { __name(this, "SQLiteBlobJson"); } static [entityKind] = "SQLiteBlobJson"; getSQLType() { return "blob"; } mapFromDriverValue(value) { if (typeof Buffer !== "undefined" && Buffer.from) { const buf = Buffer.isBuffer(value) ? value : value instanceof ArrayBuffer ? Buffer.from(value) : value.buffer ? Buffer.from(value.buffer, value.byteOffset, value.byteLength) : Buffer.from(value); return JSON.parse(buf.toString("utf8")); } return JSON.parse(textDecoder.decode(value)); } mapToDriverValue(value) { return Buffer.from(JSON.stringify(value)); } }; SQLiteBlobBufferBuilder = class extends SQLiteColumnBuilder { static { __name(this, "SQLiteBlobBufferBuilder"); } static [entityKind] = "SQLiteBlobBufferBuilder"; constructor(name) { super(name, "buffer", "SQLiteBlobBuffer"); } /** @internal */ build(table3) { return new SQLiteBlobBuffer(table3, this.config); } }; SQLiteBlobBuffer = class extends SQLiteColumn { static { __name(this, "SQLiteBlobBuffer"); } static [entityKind] = "SQLiteBlobBuffer"; mapFromDriverValue(value) { if (Buffer.isBuffer(value)) { return value; } return Buffer.from(value); } getSQLType() { return "blob"; } }; __name(blob, "blob"); } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/columns/custom.js function customType(customTypeParams) { return (a, b) => { const { name, config: config3 } = getColumnNameAndConfig(a, b); return new SQLiteCustomColumnBuilder( name, config3, customTypeParams ); }; } var SQLiteCustomColumnBuilder, SQLiteCustomColumn; var init_custom = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/columns/custom.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_entity(); init_utils2(); init_common2(); SQLiteCustomColumnBuilder = class extends SQLiteColumnBuilder { static { __name(this, "SQLiteCustomColumnBuilder"); } static [entityKind] = "SQLiteCustomColumnBuilder"; constructor(name, fieldConfig, customTypeParams) { super(name, "custom", "SQLiteCustomColumn"); this.config.fieldConfig = fieldConfig; this.config.customTypeParams = customTypeParams; } /** @internal */ build(table3) { return new SQLiteCustomColumn( table3, this.config ); } }; SQLiteCustomColumn = class extends SQLiteColumn { static { __name(this, "SQLiteCustomColumn"); } static [entityKind] = "SQLiteCustomColumn"; sqlName; mapTo; mapFrom; constructor(table3, config3) { super(table3, config3); this.sqlName = config3.customTypeParams.dataType(config3.fieldConfig); this.mapTo = config3.customTypeParams.toDriver; this.mapFrom = config3.customTypeParams.fromDriver; } getSQLType() { return this.sqlName; } mapFromDriverValue(value) { return typeof this.mapFrom === "function" ? this.mapFrom(value) : value; } mapToDriverValue(value) { return typeof this.mapTo === "function" ? this.mapTo(value) : value; } }; __name(customType, "customType"); } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/columns/integer.js function integer(a, b) { const { name, config: config3 } = getColumnNameAndConfig(a, b); if (config3?.mode === "timestamp" || config3?.mode === "timestamp_ms") { return new SQLiteTimestampBuilder(name, config3.mode); } if (config3?.mode === "boolean") { return new SQLiteBooleanBuilder(name, config3.mode); } return new SQLiteIntegerBuilder(name); } var SQLiteBaseIntegerBuilder, SQLiteBaseInteger, SQLiteIntegerBuilder, SQLiteInteger, SQLiteTimestampBuilder, SQLiteTimestamp, SQLiteBooleanBuilder, SQLiteBoolean; var init_integer = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/columns/integer.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_entity(); init_sql(); init_utils2(); init_common2(); SQLiteBaseIntegerBuilder = class extends SQLiteColumnBuilder { static { __name(this, "SQLiteBaseIntegerBuilder"); } static [entityKind] = "SQLiteBaseIntegerBuilder"; constructor(name, dataType, columnType) { super(name, dataType, columnType); this.config.autoIncrement = false; } primaryKey(config3) { if (config3?.autoIncrement) { this.config.autoIncrement = true; } this.config.hasDefault = true; return super.primaryKey(); } }; SQLiteBaseInteger = class extends SQLiteColumn { static { __name(this, "SQLiteBaseInteger"); } static [entityKind] = "SQLiteBaseInteger"; autoIncrement = this.config.autoIncrement; getSQLType() { return "integer"; } }; SQLiteIntegerBuilder = class extends SQLiteBaseIntegerBuilder { static { __name(this, "SQLiteIntegerBuilder"); } static [entityKind] = "SQLiteIntegerBuilder"; constructor(name) { super(name, "number", "SQLiteInteger"); } build(table3) { return new SQLiteInteger( table3, this.config ); } }; SQLiteInteger = class extends SQLiteBaseInteger { static { __name(this, "SQLiteInteger"); } static [entityKind] = "SQLiteInteger"; }; SQLiteTimestampBuilder = class extends SQLiteBaseIntegerBuilder { static { __name(this, "SQLiteTimestampBuilder"); } static [entityKind] = "SQLiteTimestampBuilder"; constructor(name, mode) { super(name, "date", "SQLiteTimestamp"); this.config.mode = mode; } /** * @deprecated Use `default()` with your own expression instead. * * Adds `DEFAULT (cast((julianday('now') - 2440587.5)*86400000 as integer))` to the column, which is the current epoch timestamp in milliseconds. */ defaultNow() { return this.default(sql`(cast((julianday('now') - 2440587.5)*86400000 as integer))`); } build(table3) { return new SQLiteTimestamp( table3, this.config ); } }; SQLiteTimestamp = class extends SQLiteBaseInteger { static { __name(this, "SQLiteTimestamp"); } static [entityKind] = "SQLiteTimestamp"; mode = this.config.mode; mapFromDriverValue(value) { if (this.config.mode === "timestamp") { return new Date(value * 1e3); } return new Date(value); } mapToDriverValue(value) { const unix = value.getTime(); if (this.config.mode === "timestamp") { return Math.floor(unix / 1e3); } return unix; } }; SQLiteBooleanBuilder = class extends SQLiteBaseIntegerBuilder { static { __name(this, "SQLiteBooleanBuilder"); } static [entityKind] = "SQLiteBooleanBuilder"; constructor(name, mode) { super(name, "boolean", "SQLiteBoolean"); this.config.mode = mode; } build(table3) { return new SQLiteBoolean( table3, this.config ); } }; SQLiteBoolean = class extends SQLiteBaseInteger { static { __name(this, "SQLiteBoolean"); } static [entityKind] = "SQLiteBoolean"; mode = this.config.mode; mapFromDriverValue(value) { return Number(value) === 1; } mapToDriverValue(value) { return value ? 1 : 0; } }; __name(integer, "integer"); } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/columns/numeric.js function numeric(a, b) { const { name, config: config3 } = getColumnNameAndConfig(a, b); const mode = config3?.mode; return mode === "number" ? new SQLiteNumericNumberBuilder(name) : mode === "bigint" ? new SQLiteNumericBigIntBuilder(name) : new SQLiteNumericBuilder(name); } var SQLiteNumericBuilder, SQLiteNumeric, SQLiteNumericNumberBuilder, SQLiteNumericNumber, SQLiteNumericBigIntBuilder, SQLiteNumericBigInt; var init_numeric = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/columns/numeric.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_entity(); init_utils2(); init_common2(); SQLiteNumericBuilder = class extends SQLiteColumnBuilder { static { __name(this, "SQLiteNumericBuilder"); } static [entityKind] = "SQLiteNumericBuilder"; constructor(name) { super(name, "string", "SQLiteNumeric"); } /** @internal */ build(table3) { return new SQLiteNumeric( table3, this.config ); } }; SQLiteNumeric = class extends SQLiteColumn { static { __name(this, "SQLiteNumeric"); } static [entityKind] = "SQLiteNumeric"; mapFromDriverValue(value) { if (typeof value === "string") return value; return String(value); } getSQLType() { return "numeric"; } }; SQLiteNumericNumberBuilder = class extends SQLiteColumnBuilder { static { __name(this, "SQLiteNumericNumberBuilder"); } static [entityKind] = "SQLiteNumericNumberBuilder"; constructor(name) { super(name, "number", "SQLiteNumericNumber"); } /** @internal */ build(table3) { return new SQLiteNumericNumber( table3, this.config ); } }; SQLiteNumericNumber = class extends SQLiteColumn { static { __name(this, "SQLiteNumericNumber"); } static [entityKind] = "SQLiteNumericNumber"; mapFromDriverValue(value) { if (typeof value === "number") return value; return Number(value); } mapToDriverValue = String; getSQLType() { return "numeric"; } }; SQLiteNumericBigIntBuilder = class extends SQLiteColumnBuilder { static { __name(this, "SQLiteNumericBigIntBuilder"); } static [entityKind] = "SQLiteNumericBigIntBuilder"; constructor(name) { super(name, "bigint", "SQLiteNumericBigInt"); } /** @internal */ build(table3) { return new SQLiteNumericBigInt( table3, this.config ); } }; SQLiteNumericBigInt = class extends SQLiteColumn { static { __name(this, "SQLiteNumericBigInt"); } static [entityKind] = "SQLiteNumericBigInt"; mapFromDriverValue = BigInt; mapToDriverValue = String; getSQLType() { return "numeric"; } }; __name(numeric, "numeric"); } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/columns/real.js function real(name) { return new SQLiteRealBuilder(name ?? ""); } var SQLiteRealBuilder, SQLiteReal; var init_real = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/columns/real.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_entity(); init_common2(); SQLiteRealBuilder = class extends SQLiteColumnBuilder { static { __name(this, "SQLiteRealBuilder"); } static [entityKind] = "SQLiteRealBuilder"; constructor(name) { super(name, "number", "SQLiteReal"); } /** @internal */ build(table3) { return new SQLiteReal(table3, this.config); } }; SQLiteReal = class extends SQLiteColumn { static { __name(this, "SQLiteReal"); } static [entityKind] = "SQLiteReal"; getSQLType() { return "real"; } }; __name(real, "real"); } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/columns/text.js function text(a, b = {}) { const { name, config: config3 } = getColumnNameAndConfig(a, b); if (config3.mode === "json") { return new SQLiteTextJsonBuilder(name); } return new SQLiteTextBuilder(name, config3); } var SQLiteTextBuilder, SQLiteText, SQLiteTextJsonBuilder, SQLiteTextJson; var init_text = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/columns/text.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_entity(); init_utils2(); init_common2(); SQLiteTextBuilder = class extends SQLiteColumnBuilder { static { __name(this, "SQLiteTextBuilder"); } static [entityKind] = "SQLiteTextBuilder"; constructor(name, config3) { super(name, "string", "SQLiteText"); this.config.enumValues = config3.enum; this.config.length = config3.length; } /** @internal */ build(table3) { return new SQLiteText( table3, this.config ); } }; SQLiteText = class extends SQLiteColumn { static { __name(this, "SQLiteText"); } static [entityKind] = "SQLiteText"; enumValues = this.config.enumValues; length = this.config.length; constructor(table3, config3) { super(table3, config3); } getSQLType() { return `text${this.config.length ? `(${this.config.length})` : ""}`; } }; SQLiteTextJsonBuilder = class extends SQLiteColumnBuilder { static { __name(this, "SQLiteTextJsonBuilder"); } static [entityKind] = "SQLiteTextJsonBuilder"; constructor(name) { super(name, "json", "SQLiteTextJson"); } /** @internal */ build(table3) { return new SQLiteTextJson( table3, this.config ); } }; SQLiteTextJson = class extends SQLiteColumn { static { __name(this, "SQLiteTextJson"); } static [entityKind] = "SQLiteTextJson"; getSQLType() { return "text"; } mapFromDriverValue(value) { return JSON.parse(value); } mapToDriverValue(value) { return JSON.stringify(value); } }; __name(text, "text"); } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/columns/all.js function getSQLiteColumnBuilders() { return { blob, customType, integer, numeric, real, text }; } var init_all = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/columns/all.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_blob(); init_custom(); init_integer(); init_numeric(); init_real(); init_text(); __name(getSQLiteColumnBuilders, "getSQLiteColumnBuilders"); } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/table.js function sqliteTableBase(name, columns, extraConfig, schema, baseName = name) { const rawTable = new SQLiteTable(name, schema, baseName); const parsedColumns = typeof columns === "function" ? columns(getSQLiteColumnBuilders()) : columns; const builtColumns = Object.fromEntries( Object.entries(parsedColumns).map(([name2, colBuilderBase]) => { const colBuilder = colBuilderBase; colBuilder.setName(name2); const column = colBuilder.build(rawTable); rawTable[InlineForeignKeys2].push(...colBuilder.buildForeignKeys(column, rawTable)); return [name2, column]; }) ); const table3 = Object.assign(rawTable, builtColumns); table3[Table.Symbol.Columns] = builtColumns; table3[Table.Symbol.ExtraConfigColumns] = builtColumns; if (extraConfig) { table3[SQLiteTable.Symbol.ExtraConfigBuilder] = extraConfig; } return table3; } var InlineForeignKeys2, SQLiteTable, sqliteTable; var init_table3 = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/table.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_entity(); init_table(); init_all(); InlineForeignKeys2 = /* @__PURE__ */ Symbol.for("drizzle:SQLiteInlineForeignKeys"); SQLiteTable = class extends Table { static { __name(this, "SQLiteTable"); } static [entityKind] = "SQLiteTable"; /** @internal */ static Symbol = Object.assign({}, Table.Symbol, { InlineForeignKeys: InlineForeignKeys2 }); /** @internal */ [Table.Symbol.Columns]; /** @internal */ [InlineForeignKeys2] = []; /** @internal */ [Table.Symbol.ExtraConfigBuilder] = void 0; }; __name(sqliteTableBase, "sqliteTableBase"); sqliteTable = /* @__PURE__ */ __name((name, columns, extraConfig) => { return sqliteTableBase(name, columns, extraConfig); }, "sqliteTable"); } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/checks.js function check(name, value) { return new CheckBuilder(name, value); } var CheckBuilder, Check; var init_checks = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/checks.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_entity(); CheckBuilder = class { static { __name(this, "CheckBuilder"); } constructor(name, value) { this.name = name; this.value = value; } static [entityKind] = "SQLiteCheckBuilder"; brand; build(table3) { return new Check(table3, this); } }; Check = class { static { __name(this, "Check"); } constructor(table3, builder) { this.table = table3; this.name = builder.name; this.value = builder.value; } static [entityKind] = "SQLiteCheck"; name; value; }; __name(check, "check"); } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/indexes.js function uniqueIndex(name) { return new IndexBuilderOn(name, true); } var IndexBuilderOn, IndexBuilder, Index; var init_indexes = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/indexes.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_entity(); IndexBuilderOn = class { static { __name(this, "IndexBuilderOn"); } constructor(name, unique) { this.name = name; this.unique = unique; } static [entityKind] = "SQLiteIndexBuilderOn"; on(...columns) { return new IndexBuilder(this.name, columns, this.unique); } }; IndexBuilder = class { static { __name(this, "IndexBuilder"); } static [entityKind] = "SQLiteIndexBuilder"; /** @internal */ config; constructor(name, columns, unique) { this.config = { name, columns, unique, where: void 0 }; } /** * Condition for partial index. */ where(condition) { this.config.where = condition; return this; } /** @internal */ build(table3) { return new Index(this.config, table3); } }; Index = class { static { __name(this, "Index"); } static [entityKind] = "SQLiteIndex"; config; constructor(config3, table3) { this.config = { ...config3, table: table3 }; } }; __name(uniqueIndex, "uniqueIndex"); } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/primary-keys.js function primaryKey(...config3) { if (config3[0].columns) { return new PrimaryKeyBuilder2(config3[0].columns, config3[0].name); } return new PrimaryKeyBuilder2(config3); } var PrimaryKeyBuilder2, PrimaryKey2; var init_primary_keys2 = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/primary-keys.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_entity(); init_table3(); __name(primaryKey, "primaryKey"); PrimaryKeyBuilder2 = class { static { __name(this, "PrimaryKeyBuilder"); } static [entityKind] = "SQLitePrimaryKeyBuilder"; /** @internal */ columns; /** @internal */ name; constructor(columns, name) { this.columns = columns; this.name = name; } /** @internal */ build(table3) { return new PrimaryKey2(table3, this.columns, this.name); } }; PrimaryKey2 = class { static { __name(this, "PrimaryKey"); } constructor(table3, columns, name) { this.table = table3; this.columns = columns; this.name = name; } static [entityKind] = "SQLitePrimaryKey"; columns; name; getName() { return this.name ?? `${this.table[SQLiteTable.Symbol.Name]}_${this.columns.map((column) => column.name).join("_")}_pk`; } }; } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/utils.js function extractUsedTable(table3) { if (is(table3, SQLiteTable)) { return [`${table3[Table.Symbol.BaseName]}`]; } if (is(table3, Subquery)) { return table3._.usedTables ?? []; } if (is(table3, SQL)) { return table3.usedTables ?? []; } return []; } var init_utils3 = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/utils.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_entity(); init_sql(); init_subquery(); init_table(); init_table3(); __name(extractUsedTable, "extractUsedTable"); } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/query-builders/delete.js var SQLiteDeleteBase; var init_delete = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/query-builders/delete.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_entity(); init_query_promise(); init_selection_proxy(); init_table3(); init_table(); init_utils2(); init_utils3(); SQLiteDeleteBase = class extends QueryPromise { static { __name(this, "SQLiteDeleteBase"); } constructor(table3, session, dialect, withList) { super(); this.table = table3; this.session = session; this.dialect = dialect; this.config = { table: table3, withList }; } static [entityKind] = "SQLiteDelete"; /** @internal */ config; /** * Adds a `where` clause to the query. * * Calling this method will delete only those rows that fulfill a specified condition. * * See docs: {@link https://orm.drizzle.team/docs/delete} * * @param where the `where` clause. * * @example * You can use conditional operators and `sql function` to filter the rows to be deleted. * * ```ts * // Delete all cars with green color * db.delete(cars).where(eq(cars.color, 'green')); * // or * db.delete(cars).where(sql`${cars.color} = 'green'`) * ``` * * You can logically combine conditional operators with `and()` and `or()` operators: * * ```ts * // Delete all BMW cars with a green color * db.delete(cars).where(and(eq(cars.color, 'green'), eq(cars.brand, 'BMW'))); * * // Delete all cars with the green or blue color * db.delete(cars).where(or(eq(cars.color, 'green'), eq(cars.color, 'blue'))); * ``` */ where(where) { this.config.where = where; return this; } orderBy(...columns) { if (typeof columns[0] === "function") { const orderBy = columns[0]( new Proxy( this.config.table[Table.Symbol.Columns], new SelectionProxyHandler({ sqlAliasedBehavior: "alias", sqlBehavior: "sql" }) ) ); const orderByArray = Array.isArray(orderBy) ? orderBy : [orderBy]; this.config.orderBy = orderByArray; } else { const orderByArray = columns; this.config.orderBy = orderByArray; } return this; } limit(limit) { this.config.limit = limit; return this; } returning(fields = this.table[SQLiteTable.Symbol.Columns]) { this.config.returning = orderSelectedFields(fields); return this; } /** @internal */ getSQL() { return this.dialect.buildDeleteQuery(this.config); } toSQL() { const { typings: _typings, ...rest } = this.dialect.sqlToQuery(this.getSQL()); return rest; } /** @internal */ _prepare(isOneTimeQuery = true) { return this.session[isOneTimeQuery ? "prepareOneTimeQuery" : "prepareQuery"]( this.dialect.sqlToQuery(this.getSQL()), this.config.returning, this.config.returning ? "all" : "run", true, void 0, { type: "delete", tables: extractUsedTable(this.config.table) } ); } prepare() { return this._prepare(false); } run = /* @__PURE__ */ __name((placeholderValues) => { return this._prepare().run(placeholderValues); }, "run"); all = /* @__PURE__ */ __name((placeholderValues) => { return this._prepare().all(placeholderValues); }, "all"); get = /* @__PURE__ */ __name((placeholderValues) => { return this._prepare().get(placeholderValues); }, "get"); values = /* @__PURE__ */ __name((placeholderValues) => { return this._prepare().values(placeholderValues); }, "values"); async execute(placeholderValues) { return this._prepare().execute(placeholderValues); } $dynamic() { return this; } }; } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/casing.js function toSnakeCase(input) { const words = input.replace(/['\u2019]/g, "").match(/[\da-z]+|[A-Z]+(?![a-z])|[A-Z][\da-z]+/g) ?? []; return words.map((word) => word.toLowerCase()).join("_"); } function toCamelCase(input) { const words = input.replace(/['\u2019]/g, "").match(/[\da-z]+|[A-Z]+(?![a-z])|[A-Z][\da-z]+/g) ?? []; return words.reduce((acc, word, i) => { const formattedWord = i === 0 ? word.toLowerCase() : `${word[0].toUpperCase()}${word.slice(1)}`; return acc + formattedWord; }, ""); } function noopCase(input) { return input; } var CasingCache; var init_casing = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/casing.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_entity(); init_table(); __name(toSnakeCase, "toSnakeCase"); __name(toCamelCase, "toCamelCase"); __name(noopCase, "noopCase"); CasingCache = class { static { __name(this, "CasingCache"); } static [entityKind] = "CasingCache"; /** @internal */ cache = {}; cachedTables = {}; convert; constructor(casing) { this.convert = casing === "snake_case" ? toSnakeCase : casing === "camelCase" ? toCamelCase : noopCase; } getColumnCasing(column) { if (!column.keyAsName) return column.name; const schema = column.table[Table.Symbol.Schema] ?? "public"; const tableName = column.table[Table.Symbol.OriginalName]; const key = `${schema}.${tableName}.${column.name}`; if (!this.cache[key]) { this.cacheTable(column.table); } return this.cache[key]; } cacheTable(table3) { const schema = table3[Table.Symbol.Schema] ?? "public"; const tableName = table3[Table.Symbol.OriginalName]; const tableKey = `${schema}.${tableName}`; if (!this.cachedTables[tableKey]) { for (const column of Object.values(table3[Table.Symbol.Columns])) { const columnKey = `${tableKey}.${column.name}`; this.cache[columnKey] = this.convert(column.name); } this.cachedTables[tableKey] = true; } } clearCache() { this.cache = {}; this.cachedTables = {}; } }; } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/errors.js var DrizzleError, DrizzleQueryError, TransactionRollbackError; var init_errors = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/errors.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_entity(); DrizzleError = class extends Error { static { __name(this, "DrizzleError"); } static [entityKind] = "DrizzleError"; constructor({ message: message2, cause }) { super(message2); this.name = "DrizzleError"; this.cause = cause; } }; DrizzleQueryError = class _DrizzleQueryError extends Error { static { __name(this, "DrizzleQueryError"); } constructor(query, params, cause) { super(`Failed query: ${query} params: ${params}`); this.query = query; this.params = params; this.cause = cause; Error.captureStackTrace(this, _DrizzleQueryError); if (cause) this.cause = cause; } }; TransactionRollbackError = class extends DrizzleError { static { __name(this, "TransactionRollbackError"); } static [entityKind] = "TransactionRollbackError"; constructor() { super({ message: "Rollback" }); } }; } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/sql/functions/aggregate.js function count3(expression) { return sql`count(${expression || sql.raw("*")})`.mapWith(Number); } function max(expression) { return sql`max(${expression})`.mapWith(is(expression, Column) ? expression : String); } var init_aggregate = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/sql/functions/aggregate.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_column(); init_entity(); init_sql(); __name(count3, "count"); __name(max, "max"); } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/sql/functions/vector.js var init_vector = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/sql/functions/vector.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/sql/functions/index.js var init_functions = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/sql/functions/index.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_aggregate(); init_vector(); } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/sql/index.js var init_sql2 = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/sql/index.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_expressions(); init_functions(); init_sql(); } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/columns/index.js var init_columns = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/columns/index.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_blob(); init_common2(); init_custom(); init_integer(); init_numeric(); init_real(); init_text(); } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/view-base.js var SQLiteViewBase; var init_view_base = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/view-base.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_entity(); init_sql(); SQLiteViewBase = class extends View { static { __name(this, "SQLiteViewBase"); } static [entityKind] = "SQLiteViewBase"; }; } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/dialect.js var SQLiteDialect, SQLiteSyncDialect, SQLiteAsyncDialect; var init_dialect = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/dialect.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_alias(); init_casing(); init_column(); init_entity(); init_errors(); init_relations(); init_sql2(); init_sql(); init_columns(); init_table3(); init_subquery(); init_table(); init_utils2(); init_view_common(); init_view_base(); SQLiteDialect = class { static { __name(this, "SQLiteDialect"); } static [entityKind] = "SQLiteDialect"; /** @internal */ casing; constructor(config3) { this.casing = new CasingCache(config3?.casing); } escapeName(name) { return `"${name}"`; } escapeParam(_num) { return "?"; } escapeString(str) { return `'${str.replace(/'/g, "''")}'`; } buildWithCTE(queries) { if (!queries?.length) return void 0; const withSqlChunks = [sql`with `]; for (const [i, w] of queries.entries()) { withSqlChunks.push(sql`${sql.identifier(w._.alias)} as (${w._.sql})`); if (i < queries.length - 1) { withSqlChunks.push(sql`, `); } } withSqlChunks.push(sql` `); return sql.join(withSqlChunks); } buildDeleteQuery({ table: table3, where, returning, withList, limit, orderBy }) { const withSql = this.buildWithCTE(withList); const returningSql = returning ? sql` returning ${this.buildSelection(returning, { isSingleTable: true })}` : void 0; const whereSql = where ? sql` where ${where}` : void 0; const orderBySql = this.buildOrderBy(orderBy); const limitSql = this.buildLimit(limit); return sql`${withSql}delete from ${table3}${whereSql}${returningSql}${orderBySql}${limitSql}`; } buildUpdateSet(table3, set2) { const tableColumns = table3[Table.Symbol.Columns]; const columnNames = Object.keys(tableColumns).filter( (colName) => set2[colName] !== void 0 || tableColumns[colName]?.onUpdateFn !== void 0 ); const setSize = columnNames.length; return sql.join(columnNames.flatMap((colName, i) => { const col = tableColumns[colName]; const value = set2[colName] ?? sql.param(col.onUpdateFn(), col); const res = sql`${sql.identifier(this.casing.getColumnCasing(col))} = ${value}`; if (i < setSize - 1) { return [res, sql.raw(", ")]; } return [res]; })); } buildUpdateQuery({ table: table3, set: set2, where, returning, withList, joins, from, limit, orderBy }) { const withSql = this.buildWithCTE(withList); const setSql = this.buildUpdateSet(table3, set2); const fromSql = from && sql.join([sql.raw(" from "), this.buildFromTable(from)]); const joinsSql = this.buildJoins(joins); const returningSql = returning ? sql` returning ${this.buildSelection(returning, { isSingleTable: true })}` : void 0; const whereSql = where ? sql` where ${where}` : void 0; const orderBySql = this.buildOrderBy(orderBy); const limitSql = this.buildLimit(limit); return sql`${withSql}update ${table3} set ${setSql}${fromSql}${joinsSql}${whereSql}${returningSql}${orderBySql}${limitSql}`; } /** * Builds selection SQL with provided fields/expressions * * Examples: * * `select from` * * `insert ... returning ` * * If `isSingleTable` is true, then columns won't be prefixed with table name */ buildSelection(fields, { isSingleTable = false } = {}) { const columnsLen = fields.length; const chunks = fields.flatMap(({ field }, i) => { const chunk = []; if (is(field, SQL.Aliased) && field.isSelectionField) { chunk.push(sql.identifier(field.fieldAlias)); } else if (is(field, SQL.Aliased) || is(field, SQL)) { const query = is(field, SQL.Aliased) ? field.sql : field; if (isSingleTable) { chunk.push( new SQL( query.queryChunks.map((c) => { if (is(c, Column)) { return sql.identifier(this.casing.getColumnCasing(c)); } return c; }) ) ); } else { chunk.push(query); } if (is(field, SQL.Aliased)) { chunk.push(sql` as ${sql.identifier(field.fieldAlias)}`); } } else if (is(field, Column)) { const tableName = field.table[Table.Symbol.Name]; if (field.columnType === "SQLiteNumericBigInt") { if (isSingleTable) { chunk.push(sql`cast(${sql.identifier(this.casing.getColumnCasing(field))} as text)`); } else { chunk.push( sql`cast(${sql.identifier(tableName)}.${sql.identifier(this.casing.getColumnCasing(field))} as text)` ); } } else { if (isSingleTable) { chunk.push(sql.identifier(this.casing.getColumnCasing(field))); } else { chunk.push(sql`${sql.identifier(tableName)}.${sql.identifier(this.casing.getColumnCasing(field))}`); } } } if (i < columnsLen - 1) { chunk.push(sql`, `); } return chunk; }); return sql.join(chunks); } buildJoins(joins) { if (!joins || joins.length === 0) { return void 0; } const joinsArray = []; if (joins) { for (const [index, joinMeta] of joins.entries()) { if (index === 0) { joinsArray.push(sql` `); } const table3 = joinMeta.table; const onSql = joinMeta.on ? sql` on ${joinMeta.on}` : void 0; if (is(table3, SQLiteTable)) { const tableName = table3[SQLiteTable.Symbol.Name]; const tableSchema = table3[SQLiteTable.Symbol.Schema]; const origTableName = table3[SQLiteTable.Symbol.OriginalName]; const alias = tableName === origTableName ? void 0 : joinMeta.alias; joinsArray.push( sql`${sql.raw(joinMeta.joinType)} join ${tableSchema ? sql`${sql.identifier(tableSchema)}.` : void 0}${sql.identifier(origTableName)}${alias && sql` ${sql.identifier(alias)}`}${onSql}` ); } else { joinsArray.push( sql`${sql.raw(joinMeta.joinType)} join ${table3}${onSql}` ); } if (index < joins.length - 1) { joinsArray.push(sql` `); } } } return sql.join(joinsArray); } buildLimit(limit) { return typeof limit === "object" || typeof limit === "number" && limit >= 0 ? sql` limit ${limit}` : void 0; } buildOrderBy(orderBy) { const orderByList = []; if (orderBy) { for (const [index, orderByValue] of orderBy.entries()) { orderByList.push(orderByValue); if (index < orderBy.length - 1) { orderByList.push(sql`, `); } } } return orderByList.length > 0 ? sql` order by ${sql.join(orderByList)}` : void 0; } buildFromTable(table3) { if (is(table3, Table) && table3[Table.Symbol.IsAlias]) { return sql`${sql`${sql.identifier(table3[Table.Symbol.Schema] ?? "")}.`.if(table3[Table.Symbol.Schema])}${sql.identifier(table3[Table.Symbol.OriginalName])} ${sql.identifier(table3[Table.Symbol.Name])}`; } return table3; } buildSelectQuery({ withList, fields, fieldsFlat, where, having, table: table3, joins, orderBy, groupBy, limit, offset, distinct, setOperators }) { const fieldsList = fieldsFlat ?? orderSelectedFields(fields); for (const f of fieldsList) { if (is(f.field, Column) && getTableName(f.field.table) !== (is(table3, Subquery) ? table3._.alias : is(table3, SQLiteViewBase) ? table3[ViewBaseConfig].name : is(table3, SQL) ? void 0 : getTableName(table3)) && !((table22) => joins?.some( ({ alias }) => alias === (table22[Table.Symbol.IsAlias] ? getTableName(table22) : table22[Table.Symbol.BaseName]) ))(f.field.table)) { const tableName = getTableName(f.field.table); throw new Error( `Your "${f.path.join("->")}" field references a column "${tableName}"."${f.field.name}", but the table "${tableName}" is not part of the query! Did you forget to join it?` ); } } const isSingleTable = !joins || joins.length === 0; const withSql = this.buildWithCTE(withList); const distinctSql = distinct ? sql` distinct` : void 0; const selection = this.buildSelection(fieldsList, { isSingleTable }); const tableSql = this.buildFromTable(table3); const joinsSql = this.buildJoins(joins); const whereSql = where ? sql` where ${where}` : void 0; const havingSql = having ? sql` having ${having}` : void 0; const groupByList = []; if (groupBy) { for (const [index, groupByValue] of groupBy.entries()) { groupByList.push(groupByValue); if (index < groupBy.length - 1) { groupByList.push(sql`, `); } } } const groupBySql = groupByList.length > 0 ? sql` group by ${sql.join(groupByList)}` : void 0; const orderBySql = this.buildOrderBy(orderBy); const limitSql = this.buildLimit(limit); const offsetSql = offset ? sql` offset ${offset}` : void 0; const finalQuery = sql`${withSql}select${distinctSql} ${selection} from ${tableSql}${joinsSql}${whereSql}${groupBySql}${havingSql}${orderBySql}${limitSql}${offsetSql}`; if (setOperators.length > 0) { return this.buildSetOperations(finalQuery, setOperators); } return finalQuery; } buildSetOperations(leftSelect, setOperators) { const [setOperator, ...rest] = setOperators; if (!setOperator) { throw new Error("Cannot pass undefined values to any set operator"); } if (rest.length === 0) { return this.buildSetOperationQuery({ leftSelect, setOperator }); } return this.buildSetOperations( this.buildSetOperationQuery({ leftSelect, setOperator }), rest ); } buildSetOperationQuery({ leftSelect, setOperator: { type, isAll, rightSelect, limit, orderBy, offset } }) { const leftChunk = sql`${leftSelect.getSQL()} `; const rightChunk = sql`${rightSelect.getSQL()}`; let orderBySql; if (orderBy && orderBy.length > 0) { const orderByValues = []; for (const singleOrderBy of orderBy) { if (is(singleOrderBy, SQLiteColumn)) { orderByValues.push(sql.identifier(singleOrderBy.name)); } else if (is(singleOrderBy, SQL)) { for (let i = 0; i < singleOrderBy.queryChunks.length; i++) { const chunk = singleOrderBy.queryChunks[i]; if (is(chunk, SQLiteColumn)) { singleOrderBy.queryChunks[i] = sql.identifier(this.casing.getColumnCasing(chunk)); } } orderByValues.push(sql`${singleOrderBy}`); } else { orderByValues.push(sql`${singleOrderBy}`); } } orderBySql = sql` order by ${sql.join(orderByValues, sql`, `)}`; } const limitSql = typeof limit === "object" || typeof limit === "number" && limit >= 0 ? sql` limit ${limit}` : void 0; const operatorChunk = sql.raw(`${type} ${isAll ? "all " : ""}`); const offsetSql = offset ? sql` offset ${offset}` : void 0; return sql`${leftChunk}${operatorChunk}${rightChunk}${orderBySql}${limitSql}${offsetSql}`; } buildInsertQuery({ table: table3, values: valuesOrSelect, onConflict, returning, withList, select }) { const valuesSqlList = []; const columns = table3[Table.Symbol.Columns]; const colEntries = Object.entries(columns).filter( ([_, col]) => !col.shouldDisableInsert() ); const insertOrder = colEntries.map(([, column]) => sql.identifier(this.casing.getColumnCasing(column))); if (select) { const select2 = valuesOrSelect; if (is(select2, SQL)) { valuesSqlList.push(select2); } else { valuesSqlList.push(select2.getSQL()); } } else { const values = valuesOrSelect; valuesSqlList.push(sql.raw("values ")); for (const [valueIndex, value] of values.entries()) { const valueList = []; for (const [fieldName, col] of colEntries) { const colValue = value[fieldName]; if (colValue === void 0 || is(colValue, Param) && colValue.value === void 0) { let defaultValue; if (col.default !== null && col.default !== void 0) { defaultValue = is(col.default, SQL) ? col.default : sql.param(col.default, col); } else if (col.defaultFn !== void 0) { const defaultFnResult = col.defaultFn(); defaultValue = is(defaultFnResult, SQL) ? defaultFnResult : sql.param(defaultFnResult, col); } else if (!col.default && col.onUpdateFn !== void 0) { const onUpdateFnResult = col.onUpdateFn(); defaultValue = is(onUpdateFnResult, SQL) ? onUpdateFnResult : sql.param(onUpdateFnResult, col); } else { defaultValue = sql`null`; } valueList.push(defaultValue); } else { valueList.push(colValue); } } valuesSqlList.push(valueList); if (valueIndex < values.length - 1) { valuesSqlList.push(sql`, `); } } } const withSql = this.buildWithCTE(withList); const valuesSql = sql.join(valuesSqlList); const returningSql = returning ? sql` returning ${this.buildSelection(returning, { isSingleTable: true })}` : void 0; const onConflictSql = onConflict?.length ? sql.join(onConflict) : void 0; return sql`${withSql}insert into ${table3} ${insertOrder} ${valuesSql}${onConflictSql}${returningSql}`; } sqlToQuery(sql2, invokeSource) { return sql2.toQuery({ casing: this.casing, escapeName: this.escapeName, escapeParam: this.escapeParam, escapeString: this.escapeString, invokeSource }); } buildRelationalQuery({ fullSchema, schema, tableNamesMap, table: table3, tableConfig, queryConfig: config3, tableAlias, nestedQueryRelation, joinOn }) { let selection = []; let limit, offset, orderBy = [], where; const joins = []; if (config3 === true) { const selectionEntries = Object.entries(tableConfig.columns); selection = selectionEntries.map(([key, value]) => ({ dbKey: value.name, tsKey: key, field: aliasedTableColumn(value, tableAlias), relationTableTsKey: void 0, isJson: false, selection: [] })); } else { const aliasedColumns = Object.fromEntries( Object.entries(tableConfig.columns).map(([key, value]) => [key, aliasedTableColumn(value, tableAlias)]) ); if (config3.where) { const whereSql = typeof config3.where === "function" ? config3.where(aliasedColumns, getOperators()) : config3.where; where = whereSql && mapColumnsInSQLToAlias(whereSql, tableAlias); } const fieldsSelection = []; let selectedColumns = []; if (config3.columns) { let isIncludeMode = false; for (const [field, value] of Object.entries(config3.columns)) { if (value === void 0) { continue; } if (field in tableConfig.columns) { if (!isIncludeMode && value === true) { isIncludeMode = true; } selectedColumns.push(field); } } if (selectedColumns.length > 0) { selectedColumns = isIncludeMode ? selectedColumns.filter((c) => config3.columns?.[c] === true) : Object.keys(tableConfig.columns).filter((key) => !selectedColumns.includes(key)); } } else { selectedColumns = Object.keys(tableConfig.columns); } for (const field of selectedColumns) { const column = tableConfig.columns[field]; fieldsSelection.push({ tsKey: field, value: column }); } let selectedRelations = []; if (config3.with) { selectedRelations = Object.entries(config3.with).filter((entry) => !!entry[1]).map(([tsKey, queryConfig]) => ({ tsKey, queryConfig, relation: tableConfig.relations[tsKey] })); } let extras; if (config3.extras) { extras = typeof config3.extras === "function" ? config3.extras(aliasedColumns, { sql }) : config3.extras; for (const [tsKey, value] of Object.entries(extras)) { fieldsSelection.push({ tsKey, value: mapColumnsInAliasedSQLToAlias(value, tableAlias) }); } } for (const { tsKey, value } of fieldsSelection) { selection.push({ dbKey: is(value, SQL.Aliased) ? value.fieldAlias : tableConfig.columns[tsKey].name, tsKey, field: is(value, Column) ? aliasedTableColumn(value, tableAlias) : value, relationTableTsKey: void 0, isJson: false, selection: [] }); } let orderByOrig = typeof config3.orderBy === "function" ? config3.orderBy(aliasedColumns, getOrderByOperators()) : config3.orderBy ?? []; if (!Array.isArray(orderByOrig)) { orderByOrig = [orderByOrig]; } orderBy = orderByOrig.map((orderByValue) => { if (is(orderByValue, Column)) { return aliasedTableColumn(orderByValue, tableAlias); } return mapColumnsInSQLToAlias(orderByValue, tableAlias); }); limit = config3.limit; offset = config3.offset; for (const { tsKey: selectedRelationTsKey, queryConfig: selectedRelationConfigValue, relation } of selectedRelations) { const normalizedRelation = normalizeRelation(schema, tableNamesMap, relation); const relationTableName = getTableUniqueName(relation.referencedTable); const relationTableTsName = tableNamesMap[relationTableName]; const relationTableAlias = `${tableAlias}_${selectedRelationTsKey}`; const joinOn2 = and( ...normalizedRelation.fields.map( (field2, i) => eq( aliasedTableColumn(normalizedRelation.references[i], relationTableAlias), aliasedTableColumn(field2, tableAlias) ) ) ); const builtRelation = this.buildRelationalQuery({ fullSchema, schema, tableNamesMap, table: fullSchema[relationTableTsName], tableConfig: schema[relationTableTsName], queryConfig: is(relation, One) ? selectedRelationConfigValue === true ? { limit: 1 } : { ...selectedRelationConfigValue, limit: 1 } : selectedRelationConfigValue, tableAlias: relationTableAlias, joinOn: joinOn2, nestedQueryRelation: relation }); const field = sql`(${builtRelation.sql})`.as(selectedRelationTsKey); selection.push({ dbKey: selectedRelationTsKey, tsKey: selectedRelationTsKey, field, relationTableTsKey: relationTableTsName, isJson: true, selection: builtRelation.selection }); } } if (selection.length === 0) { throw new DrizzleError({ message: `No fields selected for table "${tableConfig.tsName}" ("${tableAlias}"). You need to have at least one item in "columns", "with" or "extras". If you need to select all columns, omit the "columns" key or set it to undefined.` }); } let result; where = and(joinOn, where); if (nestedQueryRelation) { let field = sql`json_array(${sql.join( selection.map( ({ field: field2 }) => is(field2, SQLiteColumn) ? sql.identifier(this.casing.getColumnCasing(field2)) : is(field2, SQL.Aliased) ? field2.sql : field2 ), sql`, ` )})`; if (is(nestedQueryRelation, Many)) { field = sql`coalesce(json_group_array(${field}), json_array())`; } const nestedSelection = [{ dbKey: "data", tsKey: "data", field: field.as("data"), isJson: true, relationTableTsKey: tableConfig.tsName, selection }]; const needsSubquery = limit !== void 0 || offset !== void 0 || orderBy.length > 0; if (needsSubquery) { result = this.buildSelectQuery({ table: aliasedTable(table3, tableAlias), fields: {}, fieldsFlat: [ { path: [], field: sql.raw("*") } ], where, limit, offset, orderBy, setOperators: [] }); where = void 0; limit = void 0; offset = void 0; orderBy = void 0; } else { result = aliasedTable(table3, tableAlias); } result = this.buildSelectQuery({ table: is(result, SQLiteTable) ? result : new Subquery(result, {}, tableAlias), fields: {}, fieldsFlat: nestedSelection.map(({ field: field2 }) => ({ path: [], field: is(field2, Column) ? aliasedTableColumn(field2, tableAlias) : field2 })), joins, where, limit, offset, orderBy, setOperators: [] }); } else { result = this.buildSelectQuery({ table: aliasedTable(table3, tableAlias), fields: {}, fieldsFlat: selection.map(({ field }) => ({ path: [], field: is(field, Column) ? aliasedTableColumn(field, tableAlias) : field })), joins, where, limit, offset, orderBy, setOperators: [] }); } return { tableTsKey: tableConfig.tsName, sql: result, selection }; } }; SQLiteSyncDialect = class extends SQLiteDialect { static { __name(this, "SQLiteSyncDialect"); } static [entityKind] = "SQLiteSyncDialect"; migrate(migrations, session, config3) { const migrationsTable = config3 === void 0 ? "__drizzle_migrations" : typeof config3 === "string" ? "__drizzle_migrations" : config3.migrationsTable ?? "__drizzle_migrations"; const migrationTableCreate = sql` CREATE TABLE IF NOT EXISTS ${sql.identifier(migrationsTable)} ( id SERIAL PRIMARY KEY, hash text NOT NULL, created_at numeric ) `; session.run(migrationTableCreate); const dbMigrations = session.values( sql`SELECT id, hash, created_at FROM ${sql.identifier(migrationsTable)} ORDER BY created_at DESC LIMIT 1` ); const lastDbMigration = dbMigrations[0] ?? void 0; session.run(sql`BEGIN`); try { for (const migration of migrations) { if (!lastDbMigration || Number(lastDbMigration[2]) < migration.folderMillis) { for (const stmt of migration.sql) { session.run(sql.raw(stmt)); } session.run( sql`INSERT INTO ${sql.identifier(migrationsTable)} ("hash", "created_at") VALUES(${migration.hash}, ${migration.folderMillis})` ); } } session.run(sql`COMMIT`); } catch (e) { session.run(sql`ROLLBACK`); throw e; } } }; SQLiteAsyncDialect = class extends SQLiteDialect { static { __name(this, "SQLiteAsyncDialect"); } static [entityKind] = "SQLiteAsyncDialect"; async migrate(migrations, session, config3) { const migrationsTable = config3 === void 0 ? "__drizzle_migrations" : typeof config3 === "string" ? "__drizzle_migrations" : config3.migrationsTable ?? "__drizzle_migrations"; const migrationTableCreate = sql` CREATE TABLE IF NOT EXISTS ${sql.identifier(migrationsTable)} ( id SERIAL PRIMARY KEY, hash text NOT NULL, created_at numeric ) `; await session.run(migrationTableCreate); const dbMigrations = await session.values( sql`SELECT id, hash, created_at FROM ${sql.identifier(migrationsTable)} ORDER BY created_at DESC LIMIT 1` ); const lastDbMigration = dbMigrations[0] ?? void 0; await session.transaction(async (tx) => { for (const migration of migrations) { if (!lastDbMigration || Number(lastDbMigration[2]) < migration.folderMillis) { for (const stmt of migration.sql) { await tx.run(sql.raw(stmt)); } await tx.run( sql`INSERT INTO ${sql.identifier(migrationsTable)} ("hash", "created_at") VALUES(${migration.hash}, ${migration.folderMillis})` ); } } }); } }; } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/query-builders/query-builder.js var TypedQueryBuilder; var init_query_builder = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/query-builders/query-builder.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_entity(); TypedQueryBuilder = class { static { __name(this, "TypedQueryBuilder"); } static [entityKind] = "TypedQueryBuilder"; /** @internal */ getSelectedFields() { return this._.selectedFields; } }; } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/query-builders/select.js function createSetOperator(type, isAll) { return (leftSelect, rightSelect, ...restSelects) => { const setOperators = [rightSelect, ...restSelects].map((select) => ({ type, isAll, rightSelect: select })); for (const setOperator of setOperators) { if (!haveSameKeys(leftSelect.getSelectedFields(), setOperator.rightSelect.getSelectedFields())) { throw new Error( "Set operator error (union / intersect / except): selected fields are not the same or are in a different order" ); } } return leftSelect.addSetOperators(setOperators); }; } var SQLiteSelectBuilder, SQLiteSelectQueryBuilderBase, SQLiteSelectBase, getSQLiteSetOperators, union, unionAll, intersect, except; var init_select2 = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/query-builders/select.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_entity(); init_query_builder(); init_query_promise(); init_selection_proxy(); init_sql(); init_subquery(); init_table(); init_utils2(); init_view_common(); init_utils3(); init_view_base(); SQLiteSelectBuilder = class { static { __name(this, "SQLiteSelectBuilder"); } static [entityKind] = "SQLiteSelectBuilder"; fields; session; dialect; withList; distinct; constructor(config3) { this.fields = config3.fields; this.session = config3.session; this.dialect = config3.dialect; this.withList = config3.withList; this.distinct = config3.distinct; } from(source) { const isPartialSelect = !!this.fields; let fields; if (this.fields) { fields = this.fields; } else if (is(source, Subquery)) { fields = Object.fromEntries( Object.keys(source._.selectedFields).map((key) => [key, source[key]]) ); } else if (is(source, SQLiteViewBase)) { fields = source[ViewBaseConfig].selectedFields; } else if (is(source, SQL)) { fields = {}; } else { fields = getTableColumns(source); } return new SQLiteSelectBase({ table: source, fields, isPartialSelect, session: this.session, dialect: this.dialect, withList: this.withList, distinct: this.distinct }); } }; SQLiteSelectQueryBuilderBase = class extends TypedQueryBuilder { static { __name(this, "SQLiteSelectQueryBuilderBase"); } static [entityKind] = "SQLiteSelectQueryBuilder"; _; /** @internal */ config; joinsNotNullableMap; tableName; isPartialSelect; session; dialect; cacheConfig = void 0; usedTables = /* @__PURE__ */ new Set(); constructor({ table: table3, fields, isPartialSelect, session, dialect, withList, distinct }) { super(); this.config = { withList, table: table3, fields: { ...fields }, distinct, setOperators: [] }; this.isPartialSelect = isPartialSelect; this.session = session; this.dialect = dialect; this._ = { selectedFields: fields, config: this.config }; this.tableName = getTableLikeName(table3); this.joinsNotNullableMap = typeof this.tableName === "string" ? { [this.tableName]: true } : {}; for (const item of extractUsedTable(table3)) this.usedTables.add(item); } /** @internal */ getUsedTables() { return [...this.usedTables]; } createJoin(joinType) { return (table3, on2) => { const baseTableName = this.tableName; const tableName = getTableLikeName(table3); for (const item of extractUsedTable(table3)) this.usedTables.add(item); if (typeof tableName === "string" && this.config.joins?.some((join3) => join3.alias === tableName)) { throw new Error(`Alias "${tableName}" is already used in this query`); } if (!this.isPartialSelect) { if (Object.keys(this.joinsNotNullableMap).length === 1 && typeof baseTableName === "string") { this.config.fields = { [baseTableName]: this.config.fields }; } if (typeof tableName === "string" && !is(table3, SQL)) { const selection = is(table3, Subquery) ? table3._.selectedFields : is(table3, View) ? table3[ViewBaseConfig].selectedFields : table3[Table.Symbol.Columns]; this.config.fields[tableName] = selection; } } if (typeof on2 === "function") { on2 = on2( new Proxy( this.config.fields, new SelectionProxyHandler({ sqlAliasedBehavior: "sql", sqlBehavior: "sql" }) ) ); } if (!this.config.joins) { this.config.joins = []; } this.config.joins.push({ on: on2, table: table3, joinType, alias: tableName }); if (typeof tableName === "string") { switch (joinType) { case "left": { this.joinsNotNullableMap[tableName] = false; break; } case "right": { this.joinsNotNullableMap = Object.fromEntries( Object.entries(this.joinsNotNullableMap).map(([key]) => [key, false]) ); this.joinsNotNullableMap[tableName] = true; break; } case "cross": case "inner": { this.joinsNotNullableMap[tableName] = true; break; } case "full": { this.joinsNotNullableMap = Object.fromEntries( Object.entries(this.joinsNotNullableMap).map(([key]) => [key, false]) ); this.joinsNotNullableMap[tableName] = false; break; } } } return this; }; } /** * Executes a `left join` operation by adding another table to the current query. * * Calling this method associates each row of the table with the corresponding row from the joined table, if a match is found. If no matching row exists, it sets all columns of the joined table to null. * * See docs: {@link https://orm.drizzle.team/docs/joins#left-join} * * @param table the table to join. * @param on the `on` clause. * * @example * * ```ts * // Select all users and their pets * const usersWithPets: { user: User; pets: Pet | null; }[] = await db.select() * .from(users) * .leftJoin(pets, eq(users.id, pets.ownerId)) * * // Select userId and petId * const usersIdsAndPetIds: { userId: number; petId: number | null; }[] = await db.select({ * userId: users.id, * petId: pets.id, * }) * .from(users) * .leftJoin(pets, eq(users.id, pets.ownerId)) * ``` */ leftJoin = this.createJoin("left"); /** * Executes a `right join` operation by adding another table to the current query. * * Calling this method associates each row of the joined table with the corresponding row from the main table, if a match is found. If no matching row exists, it sets all columns of the main table to null. * * See docs: {@link https://orm.drizzle.team/docs/joins#right-join} * * @param table the table to join. * @param on the `on` clause. * * @example * * ```ts * // Select all users and their pets * const usersWithPets: { user: User | null; pets: Pet; }[] = await db.select() * .from(users) * .rightJoin(pets, eq(users.id, pets.ownerId)) * * // Select userId and petId * const usersIdsAndPetIds: { userId: number | null; petId: number; }[] = await db.select({ * userId: users.id, * petId: pets.id, * }) * .from(users) * .rightJoin(pets, eq(users.id, pets.ownerId)) * ``` */ rightJoin = this.createJoin("right"); /** * Executes an `inner join` operation, creating a new table by combining rows from two tables that have matching values. * * Calling this method retrieves rows that have corresponding entries in both joined tables. Rows without matching entries in either table are excluded, resulting in a table that includes only matching pairs. * * See docs: {@link https://orm.drizzle.team/docs/joins#inner-join} * * @param table the table to join. * @param on the `on` clause. * * @example * * ```ts * // Select all users and their pets * const usersWithPets: { user: User; pets: Pet; }[] = await db.select() * .from(users) * .innerJoin(pets, eq(users.id, pets.ownerId)) * * // Select userId and petId * const usersIdsAndPetIds: { userId: number; petId: number; }[] = await db.select({ * userId: users.id, * petId: pets.id, * }) * .from(users) * .innerJoin(pets, eq(users.id, pets.ownerId)) * ``` */ innerJoin = this.createJoin("inner"); /** * Executes a `full join` operation by combining rows from two tables into a new table. * * Calling this method retrieves all rows from both main and joined tables, merging rows with matching values and filling in `null` for non-matching columns. * * See docs: {@link https://orm.drizzle.team/docs/joins#full-join} * * @param table the table to join. * @param on the `on` clause. * * @example * * ```ts * // Select all users and their pets * const usersWithPets: { user: User | null; pets: Pet | null; }[] = await db.select() * .from(users) * .fullJoin(pets, eq(users.id, pets.ownerId)) * * // Select userId and petId * const usersIdsAndPetIds: { userId: number | null; petId: number | null; }[] = await db.select({ * userId: users.id, * petId: pets.id, * }) * .from(users) * .fullJoin(pets, eq(users.id, pets.ownerId)) * ``` */ fullJoin = this.createJoin("full"); /** * Executes a `cross join` operation by combining rows from two tables into a new table. * * Calling this method retrieves all rows from both main and joined tables, merging all rows from each table. * * See docs: {@link https://orm.drizzle.team/docs/joins#cross-join} * * @param table the table to join. * * @example * * ```ts * // Select all users, each user with every pet * const usersWithPets: { user: User; pets: Pet; }[] = await db.select() * .from(users) * .crossJoin(pets) * * // Select userId and petId * const usersIdsAndPetIds: { userId: number; petId: number; }[] = await db.select({ * userId: users.id, * petId: pets.id, * }) * .from(users) * .crossJoin(pets) * ``` */ crossJoin = this.createJoin("cross"); createSetOperator(type, isAll) { return (rightSelection) => { const rightSelect = typeof rightSelection === "function" ? rightSelection(getSQLiteSetOperators()) : rightSelection; if (!haveSameKeys(this.getSelectedFields(), rightSelect.getSelectedFields())) { throw new Error( "Set operator error (union / intersect / except): selected fields are not the same or are in a different order" ); } this.config.setOperators.push({ type, isAll, rightSelect }); return this; }; } /** * Adds `union` set operator to the query. * * Calling this method will combine the result sets of the `select` statements and remove any duplicate rows that appear across them. * * See docs: {@link https://orm.drizzle.team/docs/set-operations#union} * * @example * * ```ts * // Select all unique names from customers and users tables * await db.select({ name: users.name }) * .from(users) * .union( * db.select({ name: customers.name }).from(customers) * ); * // or * import { union } from 'drizzle-orm/sqlite-core' * * await union( * db.select({ name: users.name }).from(users), * db.select({ name: customers.name }).from(customers) * ); * ``` */ union = this.createSetOperator("union", false); /** * Adds `union all` set operator to the query. * * Calling this method will combine the result-set of the `select` statements and keep all duplicate rows that appear across them. * * See docs: {@link https://orm.drizzle.team/docs/set-operations#union-all} * * @example * * ```ts * // Select all transaction ids from both online and in-store sales * await db.select({ transaction: onlineSales.transactionId }) * .from(onlineSales) * .unionAll( * db.select({ transaction: inStoreSales.transactionId }).from(inStoreSales) * ); * // or * import { unionAll } from 'drizzle-orm/sqlite-core' * * await unionAll( * db.select({ transaction: onlineSales.transactionId }).from(onlineSales), * db.select({ transaction: inStoreSales.transactionId }).from(inStoreSales) * ); * ``` */ unionAll = this.createSetOperator("union", true); /** * Adds `intersect` set operator to the query. * * Calling this method will retain only the rows that are present in both result sets and eliminate duplicates. * * See docs: {@link https://orm.drizzle.team/docs/set-operations#intersect} * * @example * * ```ts * // Select course names that are offered in both departments A and B * await db.select({ courseName: depA.courseName }) * .from(depA) * .intersect( * db.select({ courseName: depB.courseName }).from(depB) * ); * // or * import { intersect } from 'drizzle-orm/sqlite-core' * * await intersect( * db.select({ courseName: depA.courseName }).from(depA), * db.select({ courseName: depB.courseName }).from(depB) * ); * ``` */ intersect = this.createSetOperator("intersect", false); /** * Adds `except` set operator to the query. * * Calling this method will retrieve all unique rows from the left query, except for the rows that are present in the result set of the right query. * * See docs: {@link https://orm.drizzle.team/docs/set-operations#except} * * @example * * ```ts * // Select all courses offered in department A but not in department B * await db.select({ courseName: depA.courseName }) * .from(depA) * .except( * db.select({ courseName: depB.courseName }).from(depB) * ); * // or * import { except } from 'drizzle-orm/sqlite-core' * * await except( * db.select({ courseName: depA.courseName }).from(depA), * db.select({ courseName: depB.courseName }).from(depB) * ); * ``` */ except = this.createSetOperator("except", false); /** @internal */ addSetOperators(setOperators) { this.config.setOperators.push(...setOperators); return this; } /** * Adds a `where` clause to the query. * * Calling this method will select only those rows that fulfill a specified condition. * * See docs: {@link https://orm.drizzle.team/docs/select#filtering} * * @param where the `where` clause. * * @example * You can use conditional operators and `sql function` to filter the rows to be selected. * * ```ts * // Select all cars with green color * await db.select().from(cars).where(eq(cars.color, 'green')); * // or * await db.select().from(cars).where(sql`${cars.color} = 'green'`) * ``` * * You can logically combine conditional operators with `and()` and `or()` operators: * * ```ts * // Select all BMW cars with a green color * await db.select().from(cars).where(and(eq(cars.color, 'green'), eq(cars.brand, 'BMW'))); * * // Select all cars with the green or blue color * await db.select().from(cars).where(or(eq(cars.color, 'green'), eq(cars.color, 'blue'))); * ``` */ where(where) { if (typeof where === "function") { where = where( new Proxy( this.config.fields, new SelectionProxyHandler({ sqlAliasedBehavior: "sql", sqlBehavior: "sql" }) ) ); } this.config.where = where; return this; } /** * Adds a `having` clause to the query. * * Calling this method will select only those rows that fulfill a specified condition. It is typically used with aggregate functions to filter the aggregated data based on a specified condition. * * See docs: {@link https://orm.drizzle.team/docs/select#aggregations} * * @param having the `having` clause. * * @example * * ```ts * // Select all brands with more than one car * await db.select({ * brand: cars.brand, * count: sql`cast(count(${cars.id}) as int)`, * }) * .from(cars) * .groupBy(cars.brand) * .having(({ count }) => gt(count, 1)); * ``` */ having(having) { if (typeof having === "function") { having = having( new Proxy( this.config.fields, new SelectionProxyHandler({ sqlAliasedBehavior: "sql", sqlBehavior: "sql" }) ) ); } this.config.having = having; return this; } groupBy(...columns) { if (typeof columns[0] === "function") { const groupBy = columns[0]( new Proxy( this.config.fields, new SelectionProxyHandler({ sqlAliasedBehavior: "alias", sqlBehavior: "sql" }) ) ); this.config.groupBy = Array.isArray(groupBy) ? groupBy : [groupBy]; } else { this.config.groupBy = columns; } return this; } orderBy(...columns) { if (typeof columns[0] === "function") { const orderBy = columns[0]( new Proxy( this.config.fields, new SelectionProxyHandler({ sqlAliasedBehavior: "alias", sqlBehavior: "sql" }) ) ); const orderByArray = Array.isArray(orderBy) ? orderBy : [orderBy]; if (this.config.setOperators.length > 0) { this.config.setOperators.at(-1).orderBy = orderByArray; } else { this.config.orderBy = orderByArray; } } else { const orderByArray = columns; if (this.config.setOperators.length > 0) { this.config.setOperators.at(-1).orderBy = orderByArray; } else { this.config.orderBy = orderByArray; } } return this; } /** * Adds a `limit` clause to the query. * * Calling this method will set the maximum number of rows that will be returned by this query. * * See docs: {@link https://orm.drizzle.team/docs/select#limit--offset} * * @param limit the `limit` clause. * * @example * * ```ts * // Get the first 10 people from this query. * await db.select().from(people).limit(10); * ``` */ limit(limit) { if (this.config.setOperators.length > 0) { this.config.setOperators.at(-1).limit = limit; } else { this.config.limit = limit; } return this; } /** * Adds an `offset` clause to the query. * * Calling this method will skip a number of rows when returning results from this query. * * See docs: {@link https://orm.drizzle.team/docs/select#limit--offset} * * @param offset the `offset` clause. * * @example * * ```ts * // Get the 10th-20th people from this query. * await db.select().from(people).offset(10).limit(10); * ``` */ offset(offset) { if (this.config.setOperators.length > 0) { this.config.setOperators.at(-1).offset = offset; } else { this.config.offset = offset; } return this; } /** @internal */ getSQL() { return this.dialect.buildSelectQuery(this.config); } toSQL() { const { typings: _typings, ...rest } = this.dialect.sqlToQuery(this.getSQL()); return rest; } as(alias) { const usedTables = []; usedTables.push(...extractUsedTable(this.config.table)); if (this.config.joins) { for (const it of this.config.joins) usedTables.push(...extractUsedTable(it.table)); } return new Proxy( new Subquery(this.getSQL(), this.config.fields, alias, false, [...new Set(usedTables)]), new SelectionProxyHandler({ alias, sqlAliasedBehavior: "alias", sqlBehavior: "error" }) ); } /** @internal */ getSelectedFields() { return new Proxy( this.config.fields, new SelectionProxyHandler({ alias: this.tableName, sqlAliasedBehavior: "alias", sqlBehavior: "error" }) ); } $dynamic() { return this; } }; SQLiteSelectBase = class extends SQLiteSelectQueryBuilderBase { static { __name(this, "SQLiteSelectBase"); } static [entityKind] = "SQLiteSelect"; /** @internal */ _prepare(isOneTimeQuery = true) { if (!this.session) { throw new Error("Cannot execute a query on a query builder. Please use a database instance instead."); } const fieldsList = orderSelectedFields(this.config.fields); const query = this.session[isOneTimeQuery ? "prepareOneTimeQuery" : "prepareQuery"]( this.dialect.sqlToQuery(this.getSQL()), fieldsList, "all", true, void 0, { type: "select", tables: [...this.usedTables] }, this.cacheConfig ); query.joinsNotNullableMap = this.joinsNotNullableMap; return query; } $withCache(config3) { this.cacheConfig = config3 === void 0 ? { config: {}, enable: true, autoInvalidate: true } : config3 === false ? { enable: false } : { enable: true, autoInvalidate: true, ...config3 }; return this; } prepare() { return this._prepare(false); } run = /* @__PURE__ */ __name((placeholderValues) => { return this._prepare().run(placeholderValues); }, "run"); all = /* @__PURE__ */ __name((placeholderValues) => { return this._prepare().all(placeholderValues); }, "all"); get = /* @__PURE__ */ __name((placeholderValues) => { return this._prepare().get(placeholderValues); }, "get"); values = /* @__PURE__ */ __name((placeholderValues) => { return this._prepare().values(placeholderValues); }, "values"); async execute() { return this.all(); } }; applyMixins(SQLiteSelectBase, [QueryPromise]); __name(createSetOperator, "createSetOperator"); getSQLiteSetOperators = /* @__PURE__ */ __name(() => ({ union, unionAll, intersect, except }), "getSQLiteSetOperators"); union = createSetOperator("union", false); unionAll = createSetOperator("union", true); intersect = createSetOperator("intersect", false); except = createSetOperator("except", false); } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/query-builders/query-builder.js var QueryBuilder; var init_query_builder2 = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/query-builders/query-builder.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_entity(); init_selection_proxy(); init_dialect(); init_subquery(); init_select2(); QueryBuilder = class { static { __name(this, "QueryBuilder"); } static [entityKind] = "SQLiteQueryBuilder"; dialect; dialectConfig; constructor(dialect) { this.dialect = is(dialect, SQLiteDialect) ? dialect : void 0; this.dialectConfig = is(dialect, SQLiteDialect) ? void 0 : dialect; } $with = /* @__PURE__ */ __name((alias, selection) => { const queryBuilder = this; const as = /* @__PURE__ */ __name((qb) => { if (typeof qb === "function") { qb = qb(queryBuilder); } return new Proxy( new WithSubquery( qb.getSQL(), selection ?? ("getSelectedFields" in qb ? qb.getSelectedFields() ?? {} : {}), alias, true ), new SelectionProxyHandler({ alias, sqlAliasedBehavior: "alias", sqlBehavior: "error" }) ); }, "as"); return { as }; }, "$with"); with(...queries) { const self2 = this; function select(fields) { return new SQLiteSelectBuilder({ fields: fields ?? void 0, session: void 0, dialect: self2.getDialect(), withList: queries }); } __name(select, "select"); function selectDistinct(fields) { return new SQLiteSelectBuilder({ fields: fields ?? void 0, session: void 0, dialect: self2.getDialect(), withList: queries, distinct: true }); } __name(selectDistinct, "selectDistinct"); return { select, selectDistinct }; } select(fields) { return new SQLiteSelectBuilder({ fields: fields ?? void 0, session: void 0, dialect: this.getDialect() }); } selectDistinct(fields) { return new SQLiteSelectBuilder({ fields: fields ?? void 0, session: void 0, dialect: this.getDialect(), distinct: true }); } // Lazy load dialect to avoid circular dependency getDialect() { if (!this.dialect) { this.dialect = new SQLiteSyncDialect(this.dialectConfig); } return this.dialect; } }; } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/query-builders/insert.js var SQLiteInsertBuilder, SQLiteInsertBase; var init_insert = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/query-builders/insert.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_entity(); init_query_promise(); init_sql(); init_table3(); init_table(); init_utils2(); init_utils3(); init_query_builder2(); SQLiteInsertBuilder = class { static { __name(this, "SQLiteInsertBuilder"); } constructor(table3, session, dialect, withList) { this.table = table3; this.session = session; this.dialect = dialect; this.withList = withList; } static [entityKind] = "SQLiteInsertBuilder"; values(values) { values = Array.isArray(values) ? values : [values]; if (values.length === 0) { throw new Error("values() must be called with at least one value"); } const mappedValues = values.map((entry) => { const result = {}; const cols = this.table[Table.Symbol.Columns]; for (const colKey of Object.keys(entry)) { const colValue = entry[colKey]; result[colKey] = is(colValue, SQL) ? colValue : new Param(colValue, cols[colKey]); } return result; }); return new SQLiteInsertBase(this.table, mappedValues, this.session, this.dialect, this.withList); } select(selectQuery) { const select = typeof selectQuery === "function" ? selectQuery(new QueryBuilder()) : selectQuery; if (!is(select, SQL) && !haveSameKeys(this.table[Columns], select._.selectedFields)) { throw new Error( "Insert select error: selected fields are not the same or are in a different order compared to the table definition" ); } return new SQLiteInsertBase(this.table, select, this.session, this.dialect, this.withList, true); } }; SQLiteInsertBase = class extends QueryPromise { static { __name(this, "SQLiteInsertBase"); } constructor(table3, values, session, dialect, withList, select) { super(); this.session = session; this.dialect = dialect; this.config = { table: table3, values, withList, select }; } static [entityKind] = "SQLiteInsert"; /** @internal */ config; returning(fields = this.config.table[SQLiteTable.Symbol.Columns]) { this.config.returning = orderSelectedFields(fields); return this; } /** * Adds an `on conflict do nothing` clause to the query. * * Calling this method simply avoids inserting a row as its alternative action. * * See docs: {@link https://orm.drizzle.team/docs/insert#on-conflict-do-nothing} * * @param config The `target` and `where` clauses. * * @example * ```ts * // Insert one row and cancel the insert if there's a conflict * await db.insert(cars) * .values({ id: 1, brand: 'BMW' }) * .onConflictDoNothing(); * * // Explicitly specify conflict target * await db.insert(cars) * .values({ id: 1, brand: 'BMW' }) * .onConflictDoNothing({ target: cars.id }); * ``` */ onConflictDoNothing(config3 = {}) { if (!this.config.onConflict) this.config.onConflict = []; if (config3.target === void 0) { this.config.onConflict.push(sql` on conflict do nothing`); } else { const targetSql = Array.isArray(config3.target) ? sql`${config3.target}` : sql`${[config3.target]}`; const whereSql = config3.where ? sql` where ${config3.where}` : sql``; this.config.onConflict.push(sql` on conflict ${targetSql} do nothing${whereSql}`); } return this; } /** * Adds an `on conflict do update` clause to the query. * * Calling this method will update the existing row that conflicts with the row proposed for insertion as its alternative action. * * See docs: {@link https://orm.drizzle.team/docs/insert#upserts-and-conflicts} * * @param config The `target`, `set` and `where` clauses. * * @example * ```ts * // Update the row if there's a conflict * await db.insert(cars) * .values({ id: 1, brand: 'BMW' }) * .onConflictDoUpdate({ * target: cars.id, * set: { brand: 'Porsche' } * }); * * // Upsert with 'where' clause * await db.insert(cars) * .values({ id: 1, brand: 'BMW' }) * .onConflictDoUpdate({ * target: cars.id, * set: { brand: 'newBMW' }, * where: sql`${cars.createdAt} > '2023-01-01'::date`, * }); * ``` */ onConflictDoUpdate(config3) { if (config3.where && (config3.targetWhere || config3.setWhere)) { throw new Error( 'You cannot use both "where" and "targetWhere"/"setWhere" at the same time - "where" is deprecated, use "targetWhere" or "setWhere" instead.' ); } if (!this.config.onConflict) this.config.onConflict = []; const whereSql = config3.where ? sql` where ${config3.where}` : void 0; const targetWhereSql = config3.targetWhere ? sql` where ${config3.targetWhere}` : void 0; const setWhereSql = config3.setWhere ? sql` where ${config3.setWhere}` : void 0; const targetSql = Array.isArray(config3.target) ? sql`${config3.target}` : sql`${[config3.target]}`; const setSql = this.dialect.buildUpdateSet(this.config.table, mapUpdateSet(this.config.table, config3.set)); this.config.onConflict.push( sql` on conflict ${targetSql}${targetWhereSql} do update set ${setSql}${whereSql}${setWhereSql}` ); return this; } /** @internal */ getSQL() { return this.dialect.buildInsertQuery(this.config); } toSQL() { const { typings: _typings, ...rest } = this.dialect.sqlToQuery(this.getSQL()); return rest; } /** @internal */ _prepare(isOneTimeQuery = true) { return this.session[isOneTimeQuery ? "prepareOneTimeQuery" : "prepareQuery"]( this.dialect.sqlToQuery(this.getSQL()), this.config.returning, this.config.returning ? "all" : "run", true, void 0, { type: "insert", tables: extractUsedTable(this.config.table) } ); } prepare() { return this._prepare(false); } run = /* @__PURE__ */ __name((placeholderValues) => { return this._prepare().run(placeholderValues); }, "run"); all = /* @__PURE__ */ __name((placeholderValues) => { return this._prepare().all(placeholderValues); }, "all"); get = /* @__PURE__ */ __name((placeholderValues) => { return this._prepare().get(placeholderValues); }, "get"); values = /* @__PURE__ */ __name((placeholderValues) => { return this._prepare().values(placeholderValues); }, "values"); async execute() { return this.config.returning ? this.all() : this.run(); } $dynamic() { return this; } }; } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/query-builders/select.types.js var init_select_types = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/query-builders/select.types.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/query-builders/update.js var SQLiteUpdateBuilder, SQLiteUpdateBase; var init_update = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/query-builders/update.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_entity(); init_query_promise(); init_selection_proxy(); init_table3(); init_subquery(); init_table(); init_utils2(); init_view_common(); init_utils3(); init_view_base(); SQLiteUpdateBuilder = class { static { __name(this, "SQLiteUpdateBuilder"); } constructor(table3, session, dialect, withList) { this.table = table3; this.session = session; this.dialect = dialect; this.withList = withList; } static [entityKind] = "SQLiteUpdateBuilder"; set(values) { return new SQLiteUpdateBase( this.table, mapUpdateSet(this.table, values), this.session, this.dialect, this.withList ); } }; SQLiteUpdateBase = class extends QueryPromise { static { __name(this, "SQLiteUpdateBase"); } constructor(table3, set2, session, dialect, withList) { super(); this.session = session; this.dialect = dialect; this.config = { set: set2, table: table3, withList, joins: [] }; } static [entityKind] = "SQLiteUpdate"; /** @internal */ config; from(source) { this.config.from = source; return this; } createJoin(joinType) { return (table3, on2) => { const tableName = getTableLikeName(table3); if (typeof tableName === "string" && this.config.joins.some((join3) => join3.alias === tableName)) { throw new Error(`Alias "${tableName}" is already used in this query`); } if (typeof on2 === "function") { const from = this.config.from ? is(table3, SQLiteTable) ? table3[Table.Symbol.Columns] : is(table3, Subquery) ? table3._.selectedFields : is(table3, SQLiteViewBase) ? table3[ViewBaseConfig].selectedFields : void 0 : void 0; on2 = on2( new Proxy( this.config.table[Table.Symbol.Columns], new SelectionProxyHandler({ sqlAliasedBehavior: "sql", sqlBehavior: "sql" }) ), from && new Proxy( from, new SelectionProxyHandler({ sqlAliasedBehavior: "sql", sqlBehavior: "sql" }) ) ); } this.config.joins.push({ on: on2, table: table3, joinType, alias: tableName }); return this; }; } leftJoin = this.createJoin("left"); rightJoin = this.createJoin("right"); innerJoin = this.createJoin("inner"); fullJoin = this.createJoin("full"); /** * Adds a 'where' clause to the query. * * Calling this method will update only those rows that fulfill a specified condition. * * See docs: {@link https://orm.drizzle.team/docs/update} * * @param where the 'where' clause. * * @example * You can use conditional operators and `sql function` to filter the rows to be updated. * * ```ts * // Update all cars with green color * db.update(cars).set({ color: 'red' }) * .where(eq(cars.color, 'green')); * // or * db.update(cars).set({ color: 'red' }) * .where(sql`${cars.color} = 'green'`) * ``` * * You can logically combine conditional operators with `and()` and `or()` operators: * * ```ts * // Update all BMW cars with a green color * db.update(cars).set({ color: 'red' }) * .where(and(eq(cars.color, 'green'), eq(cars.brand, 'BMW'))); * * // Update all cars with the green or blue color * db.update(cars).set({ color: 'red' }) * .where(or(eq(cars.color, 'green'), eq(cars.color, 'blue'))); * ``` */ where(where) { this.config.where = where; return this; } orderBy(...columns) { if (typeof columns[0] === "function") { const orderBy = columns[0]( new Proxy( this.config.table[Table.Symbol.Columns], new SelectionProxyHandler({ sqlAliasedBehavior: "alias", sqlBehavior: "sql" }) ) ); const orderByArray = Array.isArray(orderBy) ? orderBy : [orderBy]; this.config.orderBy = orderByArray; } else { const orderByArray = columns; this.config.orderBy = orderByArray; } return this; } limit(limit) { this.config.limit = limit; return this; } returning(fields = this.config.table[SQLiteTable.Symbol.Columns]) { this.config.returning = orderSelectedFields(fields); return this; } /** @internal */ getSQL() { return this.dialect.buildUpdateQuery(this.config); } toSQL() { const { typings: _typings, ...rest } = this.dialect.sqlToQuery(this.getSQL()); return rest; } /** @internal */ _prepare(isOneTimeQuery = true) { return this.session[isOneTimeQuery ? "prepareOneTimeQuery" : "prepareQuery"]( this.dialect.sqlToQuery(this.getSQL()), this.config.returning, this.config.returning ? "all" : "run", true, void 0, { type: "insert", tables: extractUsedTable(this.config.table) } ); } prepare() { return this._prepare(false); } run = /* @__PURE__ */ __name((placeholderValues) => { return this._prepare().run(placeholderValues); }, "run"); all = /* @__PURE__ */ __name((placeholderValues) => { return this._prepare().all(placeholderValues); }, "all"); get = /* @__PURE__ */ __name((placeholderValues) => { return this._prepare().get(placeholderValues); }, "get"); values = /* @__PURE__ */ __name((placeholderValues) => { return this._prepare().values(placeholderValues); }, "values"); async execute() { return this.config.returning ? this.all() : this.run(); } $dynamic() { return this; } }; } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/query-builders/index.js var init_query_builders = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/query-builders/index.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_delete(); init_insert(); init_query_builder2(); init_select2(); init_select_types(); init_update(); } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/query-builders/count.js var SQLiteCountBuilder; var init_count = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/query-builders/count.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_entity(); init_sql(); SQLiteCountBuilder = class _SQLiteCountBuilder extends SQL { static { __name(this, "SQLiteCountBuilder"); } constructor(params) { super(_SQLiteCountBuilder.buildEmbeddedCount(params.source, params.filters).queryChunks); this.params = params; this.session = params.session; this.sql = _SQLiteCountBuilder.buildCount( params.source, params.filters ); } sql; static [entityKind] = "SQLiteCountBuilderAsync"; [Symbol.toStringTag] = "SQLiteCountBuilderAsync"; session; static buildEmbeddedCount(source, filters) { return sql`(select count(*) from ${source}${sql.raw(" where ").if(filters)}${filters})`; } static buildCount(source, filters) { return sql`select count(*) from ${source}${sql.raw(" where ").if(filters)}${filters}`; } then(onfulfilled, onrejected) { return Promise.resolve(this.session.count(this.sql)).then( onfulfilled, onrejected ); } catch(onRejected) { return this.then(void 0, onRejected); } finally(onFinally) { return this.then( (value) => { onFinally?.(); return value; }, (reason) => { onFinally?.(); throw reason; } ); } }; } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/query-builders/query.js var RelationalQueryBuilder, SQLiteRelationalQuery, SQLiteSyncRelationalQuery; var init_query = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/query-builders/query.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_entity(); init_query_promise(); init_relations(); RelationalQueryBuilder = class { static { __name(this, "RelationalQueryBuilder"); } constructor(mode, fullSchema, schema, tableNamesMap, table3, tableConfig, dialect, session) { this.mode = mode; this.fullSchema = fullSchema; this.schema = schema; this.tableNamesMap = tableNamesMap; this.table = table3; this.tableConfig = tableConfig; this.dialect = dialect; this.session = session; } static [entityKind] = "SQLiteAsyncRelationalQueryBuilder"; findMany(config3) { return this.mode === "sync" ? new SQLiteSyncRelationalQuery( this.fullSchema, this.schema, this.tableNamesMap, this.table, this.tableConfig, this.dialect, this.session, config3 ? config3 : {}, "many" ) : new SQLiteRelationalQuery( this.fullSchema, this.schema, this.tableNamesMap, this.table, this.tableConfig, this.dialect, this.session, config3 ? config3 : {}, "many" ); } findFirst(config3) { return this.mode === "sync" ? new SQLiteSyncRelationalQuery( this.fullSchema, this.schema, this.tableNamesMap, this.table, this.tableConfig, this.dialect, this.session, config3 ? { ...config3, limit: 1 } : { limit: 1 }, "first" ) : new SQLiteRelationalQuery( this.fullSchema, this.schema, this.tableNamesMap, this.table, this.tableConfig, this.dialect, this.session, config3 ? { ...config3, limit: 1 } : { limit: 1 }, "first" ); } }; SQLiteRelationalQuery = class extends QueryPromise { static { __name(this, "SQLiteRelationalQuery"); } constructor(fullSchema, schema, tableNamesMap, table3, tableConfig, dialect, session, config3, mode) { super(); this.fullSchema = fullSchema; this.schema = schema; this.tableNamesMap = tableNamesMap; this.table = table3; this.tableConfig = tableConfig; this.dialect = dialect; this.session = session; this.config = config3; this.mode = mode; } static [entityKind] = "SQLiteAsyncRelationalQuery"; /** @internal */ mode; /** @internal */ getSQL() { return this.dialect.buildRelationalQuery({ fullSchema: this.fullSchema, schema: this.schema, tableNamesMap: this.tableNamesMap, table: this.table, tableConfig: this.tableConfig, queryConfig: this.config, tableAlias: this.tableConfig.tsName }).sql; } /** @internal */ _prepare(isOneTimeQuery = false) { const { query, builtQuery } = this._toSQL(); return this.session[isOneTimeQuery ? "prepareOneTimeQuery" : "prepareQuery"]( builtQuery, void 0, this.mode === "first" ? "get" : "all", true, (rawRows, mapColumnValue) => { const rows = rawRows.map( (row) => mapRelationalRow(this.schema, this.tableConfig, row, query.selection, mapColumnValue) ); if (this.mode === "first") { return rows[0]; } return rows; } ); } prepare() { return this._prepare(false); } _toSQL() { const query = this.dialect.buildRelationalQuery({ fullSchema: this.fullSchema, schema: this.schema, tableNamesMap: this.tableNamesMap, table: this.table, tableConfig: this.tableConfig, queryConfig: this.config, tableAlias: this.tableConfig.tsName }); const builtQuery = this.dialect.sqlToQuery(query.sql); return { query, builtQuery }; } toSQL() { return this._toSQL().builtQuery; } /** @internal */ executeRaw() { if (this.mode === "first") { return this._prepare(false).get(); } return this._prepare(false).all(); } async execute() { return this.executeRaw(); } }; SQLiteSyncRelationalQuery = class extends SQLiteRelationalQuery { static { __name(this, "SQLiteSyncRelationalQuery"); } static [entityKind] = "SQLiteSyncRelationalQuery"; sync() { return this.executeRaw(); } }; } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/query-builders/raw.js var SQLiteRaw; var init_raw = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/query-builders/raw.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_entity(); init_query_promise(); SQLiteRaw = class extends QueryPromise { static { __name(this, "SQLiteRaw"); } constructor(execute, getSQL, action, dialect, mapBatchResult) { super(); this.execute = execute; this.getSQL = getSQL; this.dialect = dialect; this.mapBatchResult = mapBatchResult; this.config = { action }; } static [entityKind] = "SQLiteRaw"; /** @internal */ config; getQuery() { return { ...this.dialect.sqlToQuery(this.getSQL()), method: this.config.action }; } mapResult(result, isFromBatch) { return isFromBatch ? this.mapBatchResult(result) : result; } _prepare() { return this; } /** @internal */ isResponseInArrayMode() { return false; } }; } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/db.js var BaseSQLiteDatabase; var init_db = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/db.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_entity(); init_selection_proxy(); init_sql(); init_query_builders(); init_subquery(); init_count(); init_query(); init_raw(); BaseSQLiteDatabase = class { static { __name(this, "BaseSQLiteDatabase"); } constructor(resultKind, dialect, session, schema) { this.resultKind = resultKind; this.dialect = dialect; this.session = session; this._ = schema ? { schema: schema.schema, fullSchema: schema.fullSchema, tableNamesMap: schema.tableNamesMap } : { schema: void 0, fullSchema: {}, tableNamesMap: {} }; this.query = {}; const query = this.query; if (this._.schema) { for (const [tableName, columns] of Object.entries(this._.schema)) { query[tableName] = new RelationalQueryBuilder( resultKind, schema.fullSchema, this._.schema, this._.tableNamesMap, schema.fullSchema[tableName], columns, dialect, session ); } } this.$cache = { invalidate: /* @__PURE__ */ __name(async (_params) => { }, "invalidate") }; } static [entityKind] = "BaseSQLiteDatabase"; query; /** * Creates a subquery that defines a temporary named result set as a CTE. * * It is useful for breaking down complex queries into simpler parts and for reusing the result set in subsequent parts of the query. * * See docs: {@link https://orm.drizzle.team/docs/select#with-clause} * * @param alias The alias for the subquery. * * Failure to provide an alias will result in a DrizzleTypeError, preventing the subquery from being referenced in other queries. * * @example * * ```ts * // Create a subquery with alias 'sq' and use it in the select query * const sq = db.$with('sq').as(db.select().from(users).where(eq(users.id, 42))); * * const result = await db.with(sq).select().from(sq); * ``` * * To select arbitrary SQL values as fields in a CTE and reference them in other CTEs or in the main query, you need to add aliases to them: * * ```ts * // Select an arbitrary SQL value as a field in a CTE and reference it in the main query * const sq = db.$with('sq').as(db.select({ * name: sql`upper(${users.name})`.as('name'), * }) * .from(users)); * * const result = await db.with(sq).select({ name: sq.name }).from(sq); * ``` */ $with = /* @__PURE__ */ __name((alias, selection) => { const self2 = this; const as = /* @__PURE__ */ __name((qb) => { if (typeof qb === "function") { qb = qb(new QueryBuilder(self2.dialect)); } return new Proxy( new WithSubquery( qb.getSQL(), selection ?? ("getSelectedFields" in qb ? qb.getSelectedFields() ?? {} : {}), alias, true ), new SelectionProxyHandler({ alias, sqlAliasedBehavior: "alias", sqlBehavior: "error" }) ); }, "as"); return { as }; }, "$with"); $count(source, filters) { return new SQLiteCountBuilder({ source, filters, session: this.session }); } /** * Incorporates a previously defined CTE (using `$with`) into the main query. * * This method allows the main query to reference a temporary named result set. * * See docs: {@link https://orm.drizzle.team/docs/select#with-clause} * * @param queries The CTEs to incorporate into the main query. * * @example * * ```ts * // Define a subquery 'sq' as a CTE using $with * const sq = db.$with('sq').as(db.select().from(users).where(eq(users.id, 42))); * * // Incorporate the CTE 'sq' into the main query and select from it * const result = await db.with(sq).select().from(sq); * ``` */ with(...queries) { const self2 = this; function select(fields) { return new SQLiteSelectBuilder({ fields: fields ?? void 0, session: self2.session, dialect: self2.dialect, withList: queries }); } __name(select, "select"); function selectDistinct(fields) { return new SQLiteSelectBuilder({ fields: fields ?? void 0, session: self2.session, dialect: self2.dialect, withList: queries, distinct: true }); } __name(selectDistinct, "selectDistinct"); function update(table3) { return new SQLiteUpdateBuilder(table3, self2.session, self2.dialect, queries); } __name(update, "update"); function insert(into) { return new SQLiteInsertBuilder(into, self2.session, self2.dialect, queries); } __name(insert, "insert"); function delete_(from) { return new SQLiteDeleteBase(from, self2.session, self2.dialect, queries); } __name(delete_, "delete_"); return { select, selectDistinct, update, insert, delete: delete_ }; } select(fields) { return new SQLiteSelectBuilder({ fields: fields ?? void 0, session: this.session, dialect: this.dialect }); } selectDistinct(fields) { return new SQLiteSelectBuilder({ fields: fields ?? void 0, session: this.session, dialect: this.dialect, distinct: true }); } /** * Creates an update query. * * Calling this method without `.where()` clause will update all rows in a table. The `.where()` clause specifies which rows should be updated. * * Use `.set()` method to specify which values to update. * * See docs: {@link https://orm.drizzle.team/docs/update} * * @param table The table to update. * * @example * * ```ts * // Update all rows in the 'cars' table * await db.update(cars).set({ color: 'red' }); * * // Update rows with filters and conditions * await db.update(cars).set({ color: 'red' }).where(eq(cars.brand, 'BMW')); * * // Update with returning clause * const updatedCar: Car[] = await db.update(cars) * .set({ color: 'red' }) * .where(eq(cars.id, 1)) * .returning(); * ``` */ update(table3) { return new SQLiteUpdateBuilder(table3, this.session, this.dialect); } $cache; /** * Creates an insert query. * * Calling this method will create new rows in a table. Use `.values()` method to specify which values to insert. * * See docs: {@link https://orm.drizzle.team/docs/insert} * * @param table The table to insert into. * * @example * * ```ts * // Insert one row * await db.insert(cars).values({ brand: 'BMW' }); * * // Insert multiple rows * await db.insert(cars).values([{ brand: 'BMW' }, { brand: 'Porsche' }]); * * // Insert with returning clause * const insertedCar: Car[] = await db.insert(cars) * .values({ brand: 'BMW' }) * .returning(); * ``` */ insert(into) { return new SQLiteInsertBuilder(into, this.session, this.dialect); } /** * Creates a delete query. * * Calling this method without `.where()` clause will delete all rows in a table. The `.where()` clause specifies which rows should be deleted. * * See docs: {@link https://orm.drizzle.team/docs/delete} * * @param table The table to delete from. * * @example * * ```ts * // Delete all rows in the 'cars' table * await db.delete(cars); * * // Delete rows with filters and conditions * await db.delete(cars).where(eq(cars.color, 'green')); * * // Delete with returning clause * const deletedCar: Car[] = await db.delete(cars) * .where(eq(cars.id, 1)) * .returning(); * ``` */ delete(from) { return new SQLiteDeleteBase(from, this.session, this.dialect); } run(query) { const sequel = typeof query === "string" ? sql.raw(query) : query.getSQL(); if (this.resultKind === "async") { return new SQLiteRaw( async () => this.session.run(sequel), () => sequel, "run", this.dialect, this.session.extractRawRunValueFromBatchResult.bind(this.session) ); } return this.session.run(sequel); } all(query) { const sequel = typeof query === "string" ? sql.raw(query) : query.getSQL(); if (this.resultKind === "async") { return new SQLiteRaw( async () => this.session.all(sequel), () => sequel, "all", this.dialect, this.session.extractRawAllValueFromBatchResult.bind(this.session) ); } return this.session.all(sequel); } get(query) { const sequel = typeof query === "string" ? sql.raw(query) : query.getSQL(); if (this.resultKind === "async") { return new SQLiteRaw( async () => this.session.get(sequel), () => sequel, "get", this.dialect, this.session.extractRawGetValueFromBatchResult.bind(this.session) ); } return this.session.get(sequel); } values(query) { const sequel = typeof query === "string" ? sql.raw(query) : query.getSQL(); if (this.resultKind === "async") { return new SQLiteRaw( async () => this.session.values(sequel), () => sequel, "values", this.dialect, this.session.extractRawValuesValueFromBatchResult.bind(this.session) ); } return this.session.values(sequel); } transaction(transaction, config3) { return this.session.transaction(transaction, config3); } }; } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/cache/core/cache.js async function hashQuery(sql2, params) { const dataToHash = `${sql2}-${JSON.stringify(params)}`; const encoder2 = new TextEncoder(); const data = encoder2.encode(dataToHash); const hashBuffer = await crypto.subtle.digest("SHA-256", data); const hashArray = [...new Uint8Array(hashBuffer)]; const hashHex = hashArray.map((b) => b.toString(16).padStart(2, "0")).join(""); return hashHex; } var Cache, NoopCache; var init_cache = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/cache/core/cache.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_entity(); Cache = class { static { __name(this, "Cache"); } static [entityKind] = "Cache"; }; NoopCache = class extends Cache { static { __name(this, "NoopCache"); } strategy() { return "all"; } static [entityKind] = "NoopCache"; async get(_key2) { return void 0; } async put(_hashedQuery, _response, _tables, _config) { } async onMutate(_params) { } }; __name(hashQuery, "hashQuery"); } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/alias.js var init_alias2 = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/alias.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/session.js var ExecuteResultSync, SQLitePreparedQuery, SQLiteSession, SQLiteTransaction; var init_session = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/session.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_cache(); init_entity(); init_errors(); init_query_promise(); init_db(); ExecuteResultSync = class extends QueryPromise { static { __name(this, "ExecuteResultSync"); } constructor(resultCb) { super(); this.resultCb = resultCb; } static [entityKind] = "ExecuteResultSync"; async execute() { return this.resultCb(); } sync() { return this.resultCb(); } }; SQLitePreparedQuery = class { static { __name(this, "SQLitePreparedQuery"); } constructor(mode, executeMethod, query, cache2, queryMetadata, cacheConfig) { this.mode = mode; this.executeMethod = executeMethod; this.query = query; this.cache = cache2; this.queryMetadata = queryMetadata; this.cacheConfig = cacheConfig; if (cache2 && cache2.strategy() === "all" && cacheConfig === void 0) { this.cacheConfig = { enable: true, autoInvalidate: true }; } if (!this.cacheConfig?.enable) { this.cacheConfig = void 0; } } static [entityKind] = "PreparedQuery"; /** @internal */ joinsNotNullableMap; /** @internal */ async queryWithCache(queryString, params, query) { if (this.cache === void 0 || is(this.cache, NoopCache) || this.queryMetadata === void 0) { try { return await query(); } catch (e) { throw new DrizzleQueryError(queryString, params, e); } } if (this.cacheConfig && !this.cacheConfig.enable) { try { return await query(); } catch (e) { throw new DrizzleQueryError(queryString, params, e); } } if ((this.queryMetadata.type === "insert" || this.queryMetadata.type === "update" || this.queryMetadata.type === "delete") && this.queryMetadata.tables.length > 0) { try { const [res] = await Promise.all([ query(), this.cache.onMutate({ tables: this.queryMetadata.tables }) ]); return res; } catch (e) { throw new DrizzleQueryError(queryString, params, e); } } if (!this.cacheConfig) { try { return await query(); } catch (e) { throw new DrizzleQueryError(queryString, params, e); } } if (this.queryMetadata.type === "select") { const fromCache = await this.cache.get( this.cacheConfig.tag ?? await hashQuery(queryString, params), this.queryMetadata.tables, this.cacheConfig.tag !== void 0, this.cacheConfig.autoInvalidate ); if (fromCache === void 0) { let result; try { result = await query(); } catch (e) { throw new DrizzleQueryError(queryString, params, e); } await this.cache.put( this.cacheConfig.tag ?? await hashQuery(queryString, params), result, // make sure we send tables that were used in a query only if user wants to invalidate it on each write this.cacheConfig.autoInvalidate ? this.queryMetadata.tables : [], this.cacheConfig.tag !== void 0, this.cacheConfig.config ); return result; } return fromCache; } try { return await query(); } catch (e) { throw new DrizzleQueryError(queryString, params, e); } } getQuery() { return this.query; } mapRunResult(result, _isFromBatch) { return result; } mapAllResult(_result, _isFromBatch) { throw new Error("Not implemented"); } mapGetResult(_result, _isFromBatch) { throw new Error("Not implemented"); } execute(placeholderValues) { if (this.mode === "async") { return this[this.executeMethod](placeholderValues); } return new ExecuteResultSync(() => this[this.executeMethod](placeholderValues)); } mapResult(response, isFromBatch) { switch (this.executeMethod) { case "run": { return this.mapRunResult(response, isFromBatch); } case "all": { return this.mapAllResult(response, isFromBatch); } case "get": { return this.mapGetResult(response, isFromBatch); } } } }; SQLiteSession = class { static { __name(this, "SQLiteSession"); } constructor(dialect) { this.dialect = dialect; } static [entityKind] = "SQLiteSession"; prepareOneTimeQuery(query, fields, executeMethod, isResponseInArrayMode, customResultMapper, queryMetadata, cacheConfig) { return this.prepareQuery( query, fields, executeMethod, isResponseInArrayMode, customResultMapper, queryMetadata, cacheConfig ); } run(query) { const staticQuery = this.dialect.sqlToQuery(query); try { return this.prepareOneTimeQuery(staticQuery, void 0, "run", false).run(); } catch (err) { throw new DrizzleError({ cause: err, message: `Failed to run the query '${staticQuery.sql}'` }); } } /** @internal */ extractRawRunValueFromBatchResult(result) { return result; } all(query) { return this.prepareOneTimeQuery(this.dialect.sqlToQuery(query), void 0, "run", false).all(); } /** @internal */ extractRawAllValueFromBatchResult(_result) { throw new Error("Not implemented"); } get(query) { return this.prepareOneTimeQuery(this.dialect.sqlToQuery(query), void 0, "run", false).get(); } /** @internal */ extractRawGetValueFromBatchResult(_result) { throw new Error("Not implemented"); } values(query) { return this.prepareOneTimeQuery(this.dialect.sqlToQuery(query), void 0, "run", false).values(); } async count(sql2) { const result = await this.values(sql2); return result[0][0]; } /** @internal */ extractRawValuesValueFromBatchResult(_result) { throw new Error("Not implemented"); } }; SQLiteTransaction = class extends BaseSQLiteDatabase { static { __name(this, "SQLiteTransaction"); } constructor(resultType, dialect, session, schema, nestedIndex = 0) { super(resultType, dialect, session, schema); this.schema = schema; this.nestedIndex = nestedIndex; } static [entityKind] = "SQLiteTransaction"; rollback() { throw new TransactionRollbackError(); } }; } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/subquery.js var init_subquery2 = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/subquery.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/view.js var ViewBuilderCore, ViewBuilder, ManualViewBuilder, SQLiteView; var init_view = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/view.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_entity(); init_selection_proxy(); init_utils2(); init_query_builder2(); init_table3(); init_view_base(); ViewBuilderCore = class { static { __name(this, "ViewBuilderCore"); } constructor(name) { this.name = name; } static [entityKind] = "SQLiteViewBuilderCore"; config = {}; }; ViewBuilder = class extends ViewBuilderCore { static { __name(this, "ViewBuilder"); } static [entityKind] = "SQLiteViewBuilder"; as(qb) { if (typeof qb === "function") { qb = qb(new QueryBuilder()); } const selectionProxy = new SelectionProxyHandler({ alias: this.name, sqlBehavior: "error", sqlAliasedBehavior: "alias", replaceOriginalName: true }); const aliasedSelectedFields = qb.getSelectedFields(); return new Proxy( new SQLiteView({ // sqliteConfig: this.config, config: { name: this.name, schema: void 0, selectedFields: aliasedSelectedFields, query: qb.getSQL().inlineParams() } }), selectionProxy ); } }; ManualViewBuilder = class extends ViewBuilderCore { static { __name(this, "ManualViewBuilder"); } static [entityKind] = "SQLiteManualViewBuilder"; columns; constructor(name, columns) { super(name); this.columns = getTableColumns(sqliteTable(name, columns)); } existing() { return new Proxy( new SQLiteView({ config: { name: this.name, schema: void 0, selectedFields: this.columns, query: void 0 } }), new SelectionProxyHandler({ alias: this.name, sqlBehavior: "error", sqlAliasedBehavior: "alias", replaceOriginalName: true }) ); } as(query) { return new Proxy( new SQLiteView({ config: { name: this.name, schema: void 0, selectedFields: this.columns, query: query.inlineParams() } }), new SelectionProxyHandler({ alias: this.name, sqlBehavior: "error", sqlAliasedBehavior: "alias", replaceOriginalName: true }) ); } }; SQLiteView = class extends SQLiteViewBase { static { __name(this, "SQLiteView"); } static [entityKind] = "SQLiteView"; constructor({ config: config3 }) { super(config3); } }; } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/index.js var init_sqlite_core = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/sqlite-core/index.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_alias2(); init_checks(); init_columns(); init_db(); init_dialect(); init_foreign_keys2(); init_indexes(); init_primary_keys2(); init_query_builders(); init_session(); init_subquery2(); init_table3(); init_unique_constraint2(); init_utils3(); init_view(); } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/operations.js var init_operations = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/operations.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); } }); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/index.js var init_drizzle_orm = __esm({ "../../packages/db_helper_sqlite/node_modules/drizzle-orm/index.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_alias(); init_column_builder(); init_column(); init_entity(); init_errors(); init_logger(); init_operations(); init_query_promise(); init_relations(); init_sql2(); init_subquery(); init_table(); init_utils2(); init_view_common(); } }); // ../../packages/db_helper_sqlite/src/db/schema.ts var schema_exports = {}; __export(schema_exports, { addressAreas: () => addressAreas, addressAreasRelations: () => addressAreasRelations, addressZones: () => addressZones, addressZonesRelations: () => addressZonesRelations, addresses: () => addresses, addressesRelations: () => addressesRelations, cartItems: () => cartItems, cartItemsRelations: () => cartItemsRelations, complaints: () => complaints, complaintsRelations: () => complaintsRelations, couponApplicableProducts: () => couponApplicableProducts, couponApplicableProductsRelations: () => couponApplicableProductsRelations, couponApplicableUsers: () => couponApplicableUsers, couponApplicableUsersRelations: () => couponApplicableUsersRelations, couponUsage: () => couponUsage, couponUsageRelations: () => couponUsageRelations, coupons: () => coupons, couponsRelations: () => couponsRelations, deliverySlotInfo: () => deliverySlotInfo, deliverySlotInfoRelations: () => deliverySlotInfoRelations, homeBanners: () => homeBanners, homeBannersRelations: () => homeBannersRelations, keyValStore: () => keyValStore, notifCreds: () => notifCreds, notifCredsRelations: () => notifCredsRelations, notifications: () => notifications, notificationsRelations: () => notificationsRelations, orderItems: () => orderItems, orderItemsRelations: () => orderItemsRelations, orderStatus: () => orderStatus, orderStatusRelations: () => orderStatusRelations, orders: () => orders, ordersRelations: () => ordersRelations, paymentInfoRelations: () => paymentInfoRelations, paymentInfoTable: () => paymentInfoTable, paymentStatusEnum: () => paymentStatusEnum, payments: () => payments, paymentsRelations: () => paymentsRelations, productCategories: () => productCategories, productCategoriesRelations: () => productCategoriesRelations, productGroupInfo: () => productGroupInfo, productGroupInfoRelations: () => productGroupInfoRelations, productGroupMembership: () => productGroupMembership, productGroupMembershipRelations: () => productGroupMembershipRelations, productInfo: () => productInfo, productInfoRelations: () => productInfoRelations, productReviews: () => productReviews, productReviewsRelations: () => productReviewsRelations, productSlots: () => productSlots, productSlotsRelations: () => productSlotsRelations, productTagInfo: () => productTagInfo, productTagInfoRelations: () => productTagInfoRelations, productTags: () => productTags, productTagsRelations: () => productTagsRelations, refunds: () => refunds, refundsRelations: () => refundsRelations, reservedCoupons: () => reservedCoupons, reservedCouponsRelations: () => reservedCouponsRelations, specialDeals: () => specialDeals, specialDealsRelations: () => specialDealsRelations, staffPermissionEnum: () => staffPermissionEnum, staffPermissions: () => staffPermissions, staffPermissionsRelations: () => staffPermissionsRelations, staffRoleEnum: () => staffRoleEnum, staffRolePermissions: () => staffRolePermissions, staffRolePermissionsRelations: () => staffRolePermissionsRelations, staffRoles: () => staffRoles, staffRolesRelations: () => staffRolesRelations, staffUsers: () => staffUsers, staffUsersRelations: () => staffUsersRelations, storeInfo: () => storeInfo, storeInfoRelations: () => storeInfoRelations, units: () => units, unitsRelations: () => unitsRelations, unloggedUserTokens: () => unloggedUserTokens, uploadStatusEnum: () => uploadStatusEnum, uploadUrlStatus: () => uploadUrlStatus, userCreds: () => userCreds, userCredsRelations: () => userCredsRelations, userDetails: () => userDetails, userDetailsRelations: () => userDetailsRelations, userIncidents: () => userIncidents, userIncidentsRelations: () => userIncidentsRelations, userNotifications: () => userNotifications, userNotificationsRelations: () => userNotificationsRelations, users: () => users, usersRelations: () => usersRelations, vendorSnippets: () => vendorSnippets, vendorSnippetsRelations: () => vendorSnippetsRelations }); var jsonText, numericText, staffRoleValues, staffPermissionValues, uploadStatusValues, paymentStatusValues, staffRoleEnum, staffPermissionEnum, uploadStatusEnum, paymentStatusEnum, users, userDetails, userCreds, addressZones, addressAreas, addresses, staffRoles, staffPermissions, staffRolePermissions, staffUsers, storeInfo, units, productInfo, productGroupInfo, productGroupMembership, homeBanners, productReviews, uploadUrlStatus, productTagInfo, productTags, deliverySlotInfo, vendorSnippets, productSlots, specialDeals, paymentInfoTable, orders, orderItems, orderStatus, payments, refunds, keyValStore, notifications, productCategories, cartItems, complaints, coupons, couponUsage, couponApplicableUsers, couponApplicableProducts, userIncidents, reservedCoupons, notifCreds, unloggedUserTokens, userNotifications, usersRelations, userCredsRelations, staffUsersRelations, addressesRelations, unitsRelations, productInfoRelations, productTagInfoRelations, productTagsRelations, deliverySlotInfoRelations, productSlotsRelations, specialDealsRelations, ordersRelations, orderItemsRelations, orderStatusRelations, paymentInfoRelations, paymentsRelations, refundsRelations, notificationsRelations, productCategoriesRelations, cartItemsRelations, complaintsRelations, couponsRelations, couponUsageRelations, userDetailsRelations, notifCredsRelations, userNotificationsRelations, storeInfoRelations, couponApplicableUsersRelations, couponApplicableProductsRelations, reservedCouponsRelations, productReviewsRelations, addressZonesRelations, addressAreasRelations, productGroupInfoRelations, productGroupMembershipRelations, homeBannersRelations, staffRolesRelations, staffPermissionsRelations, staffRolePermissionsRelations, userIncidentsRelations, vendorSnippetsRelations; var init_schema = __esm({ "../../packages/db_helper_sqlite/src/db/schema.ts"() { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_sqlite_core(); init_drizzle_orm(); jsonText = /* @__PURE__ */ __name((name) => customType({ dataType() { return "text"; }, toDriver(value) { if (value === void 0 || value === null) return null; return JSON.stringify(value); }, fromDriver(value) { if (value === null || value === void 0) return null; try { return JSON.parse(String(value)); } catch { return null; } } })(name), "jsonText"); numericText = /* @__PURE__ */ __name((name) => customType({ dataType() { return "text"; }, toDriver(value) { if (value === void 0 || value === null) return null; return String(value); }, fromDriver(value) { if (value === null || value === void 0) return null; return String(value); } })(name), "numericText"); staffRoleValues = ["super_admin", "admin", "marketer", "delivery_staff"]; staffPermissionValues = ["crud_product", "make_coupon", "crud_staff_users"]; uploadStatusValues = ["pending", "claimed"]; paymentStatusValues = ["pending", "success", "cod", "failed"]; staffRoleEnum = /* @__PURE__ */ __name((name) => text(name, { enum: staffRoleValues }), "staffRoleEnum"); staffPermissionEnum = /* @__PURE__ */ __name((name) => text(name, { enum: staffPermissionValues }), "staffPermissionEnum"); uploadStatusEnum = /* @__PURE__ */ __name((name) => text(name, { enum: uploadStatusValues }), "uploadStatusEnum"); paymentStatusEnum = /* @__PURE__ */ __name((name) => text(name, { enum: paymentStatusValues }), "paymentStatusEnum"); users = sqliteTable("users", { id: integer().primaryKey({ autoIncrement: true }), name: text(), email: text(), mobile: text(), createdAt: integer("created_at", { mode: "timestamp" }).notNull().defaultNow() }, (t8) => ({ unq_email: uniqueIndex("unique_email").on(t8.email) })); userDetails = sqliteTable("user_details", { id: integer().primaryKey({ autoIncrement: true }), userId: integer("user_id").notNull().references(() => users.id).unique(), bio: text("bio"), dateOfBirth: integer("date_of_birth", { mode: "timestamp" }), gender: text("gender"), occupation: text("occupation"), profileImage: text("profile_image"), isSuspended: integer("is_suspended", { mode: "boolean" }).notNull().default(false), createdAt: integer("created_at", { mode: "timestamp" }).notNull().defaultNow(), updatedAt: integer("updated_at", { mode: "timestamp" }).notNull().defaultNow() }); userCreds = sqliteTable("user_creds", { id: integer().primaryKey({ autoIncrement: true }), userId: integer("user_id").notNull().references(() => users.id), userPassword: text("user_password").notNull(), createdAt: integer("created_at", { mode: "timestamp" }).notNull().defaultNow() }); addressZones = sqliteTable("address_zones", { id: integer().primaryKey({ autoIncrement: true }), zoneName: text("zone_name").notNull(), addedAt: integer("added_at", { mode: "timestamp" }).notNull().defaultNow() }); addressAreas = sqliteTable("address_areas", { id: integer().primaryKey({ autoIncrement: true }), placeName: text("place_name").notNull(), zoneId: integer("zone_id").references(() => addressZones.id), createdAt: integer("created_at", { mode: "timestamp" }).notNull().defaultNow() }); addresses = sqliteTable("addresses", { id: integer().primaryKey({ autoIncrement: true }), userId: integer("user_id").notNull().references(() => users.id), name: text("name").notNull(), phone: text("phone").notNull(), addressLine1: text("address_line1").notNull(), addressLine2: text("address_line2"), city: text("city").notNull(), state: text("state").notNull(), pincode: text("pincode").notNull(), isDefault: integer("is_default", { mode: "boolean" }).notNull().default(false), latitude: real("latitude"), longitude: real("longitude"), googleMapsUrl: text("google_maps_url"), adminLatitude: real("admin_latitude"), adminLongitude: real("admin_longitude"), zoneId: integer("zone_id").references(() => addressZones.id), createdAt: integer("created_at", { mode: "timestamp" }).notNull().defaultNow() }); staffRoles = sqliteTable("staff_roles", { id: integer().primaryKey({ autoIncrement: true }), roleName: staffRoleEnum("role_name").notNull(), createdAt: integer("created_at", { mode: "timestamp" }).notNull().defaultNow() }, (t8) => ({ unq_role_name: uniqueIndex("unique_role_name").on(t8.roleName) })); staffPermissions = sqliteTable("staff_permissions", { id: integer().primaryKey({ autoIncrement: true }), permissionName: staffPermissionEnum("permission_name").notNull(), createdAt: integer("created_at", { mode: "timestamp" }).notNull().defaultNow() }, (t8) => ({ unq_permission_name: uniqueIndex("unique_permission_name").on(t8.permissionName) })); staffRolePermissions = sqliteTable("staff_role_permissions", { id: integer().primaryKey({ autoIncrement: true }), staffRoleId: integer("staff_role_id").notNull().references(() => staffRoles.id), staffPermissionId: integer("staff_permission_id").notNull().references(() => staffPermissions.id), createdAt: integer("created_at", { mode: "timestamp" }).notNull().defaultNow() }, (t8) => ({ unq_role_permission: uniqueIndex("unique_role_permission").on(t8.staffRoleId, t8.staffPermissionId) })); staffUsers = sqliteTable("staff_users", { id: integer().primaryKey({ autoIncrement: true }), name: text().notNull(), password: text().notNull(), staffRoleId: integer("staff_role_id").references(() => staffRoles.id), createdAt: integer("created_at", { mode: "timestamp" }).notNull().defaultNow() }); storeInfo = sqliteTable("store_info", { id: integer().primaryKey({ autoIncrement: true }), name: text().notNull(), description: text(), imageUrl: text("image_url"), createdAt: integer("created_at", { mode: "timestamp" }).notNull().defaultNow(), owner: integer("owner").notNull().references(() => staffUsers.id) }); units = sqliteTable("units", { id: integer().primaryKey({ autoIncrement: true }), shortNotation: text("short_notation").notNull(), fullName: text("full_name").notNull() }, (t8) => ({ unq_short_notation: uniqueIndex("unique_short_notation").on(t8.shortNotation) })); productInfo = sqliteTable("product_info", { id: integer().primaryKey({ autoIncrement: true }), name: text().notNull(), shortDescription: text("short_description"), longDescription: text("long_description"), unitId: integer("unit_id").notNull().references(() => units.id), price: numericText("price").notNull(), marketPrice: numericText("market_price"), images: jsonText("images"), isOutOfStock: integer("is_out_of_stock", { mode: "boolean" }).notNull().default(false), isSuspended: integer("is_suspended", { mode: "boolean" }).notNull().default(false), isFlashAvailable: integer("is_flash_available", { mode: "boolean" }).notNull().default(false), flashPrice: numericText("flash_price"), createdAt: integer("created_at", { mode: "timestamp" }).notNull().defaultNow(), incrementStep: real("increment_step").notNull().default(1), productQuantity: real("product_quantity").notNull().default(1), storeId: integer("store_id").references(() => storeInfo.id) }); productGroupInfo = sqliteTable("product_group_info", { id: integer().primaryKey({ autoIncrement: true }), groupName: text("group_name").notNull(), description: text(), createdAt: integer("created_at", { mode: "timestamp" }).notNull().defaultNow() }); productGroupMembership = sqliteTable("product_group_membership", { productId: integer("product_id").notNull().references(() => productInfo.id), groupId: integer("group_id").notNull().references(() => productGroupInfo.id), addedAt: integer("added_at", { mode: "timestamp" }).notNull().defaultNow() }, (t8) => ({ pk: primaryKey({ columns: [t8.productId, t8.groupId], name: "product_group_membership_pk" }) })); homeBanners = sqliteTable("home_banners", { id: integer().primaryKey({ autoIncrement: true }), name: text("name").notNull(), imageUrl: text("image_url").notNull(), description: text("description"), productIds: jsonText("product_ids"), redirectUrl: text("redirect_url"), serialNum: integer("serial_num"), isActive: integer("is_active", { mode: "boolean" }).notNull().default(false), createdAt: integer("created_at", { mode: "timestamp" }).notNull().defaultNow(), lastUpdated: integer("last_updated", { mode: "timestamp" }).notNull().defaultNow() }); productReviews = sqliteTable("product_reviews", { id: integer().primaryKey({ autoIncrement: true }), userId: integer("user_id").notNull().references(() => users.id), productId: integer("product_id").notNull().references(() => productInfo.id), reviewBody: text("review_body").notNull(), imageUrls: jsonText("image_urls").$defaultFn(() => []), reviewTime: integer("review_time", { mode: "timestamp" }).notNull().defaultNow(), ratings: real("ratings").notNull(), adminResponse: text("admin_response"), adminResponseImages: jsonText("admin_response_images").$defaultFn(() => []) }, (t8) => ({ ratingCheck: check("rating_check", sql`${t8.ratings} >= 1 AND ${t8.ratings} <= 5`) })); uploadUrlStatus = sqliteTable("upload_url_status", { id: integer().primaryKey({ autoIncrement: true }), createdAt: integer("created_at", { mode: "timestamp" }).notNull().defaultNow(), key: text("key").notNull(), status: uploadStatusEnum("status").notNull().default("pending") }); productTagInfo = sqliteTable("product_tag_info", { id: integer().primaryKey({ autoIncrement: true }), tagName: text("tag_name").notNull().unique(), tagDescription: text("tag_description"), imageUrl: text("image_url"), isDashboardTag: integer("is_dashboard_tag", { mode: "boolean" }).notNull().default(false), relatedStores: jsonText("related_stores").$defaultFn(() => []), createdAt: integer("created_at", { mode: "timestamp" }).notNull().defaultNow() }); productTags = sqliteTable("product_tags", { id: integer().primaryKey({ autoIncrement: true }), productId: integer("product_id").notNull().references(() => productInfo.id), tagId: integer("tag_id").notNull().references(() => productTagInfo.id), assignedAt: integer("assigned_at", { mode: "timestamp" }).notNull().defaultNow() }, (t8) => ({ unq_product_tag: uniqueIndex("unique_product_tag").on(t8.productId, t8.tagId) })); deliverySlotInfo = sqliteTable("delivery_slot_info", { id: integer().primaryKey({ autoIncrement: true }), deliveryTime: integer("delivery_time", { mode: "timestamp" }).notNull(), freezeTime: integer("freeze_time", { mode: "timestamp" }).notNull(), isActive: integer("is_active", { mode: "boolean" }).notNull().default(true), isFlash: integer("is_flash", { mode: "boolean" }).notNull().default(false), isCapacityFull: integer("is_capacity_full", { mode: "boolean" }).notNull().default(false), deliverySequence: jsonText("delivery_sequence").$defaultFn(() => ({})), groupIds: jsonText("group_ids").$defaultFn(() => []) }); vendorSnippets = sqliteTable("vendor_snippets", { id: integer().primaryKey({ autoIncrement: true }), snippetCode: text("snippet_code").notNull().unique(), slotId: integer("slot_id").references(() => deliverySlotInfo.id), isPermanent: integer("is_permanent", { mode: "boolean" }).notNull().default(false), productIds: jsonText("product_ids").notNull(), validTill: integer("valid_till", { mode: "timestamp" }), createdAt: integer("created_at", { mode: "timestamp" }).notNull().defaultNow() }); productSlots = sqliteTable("product_slots", { productId: integer("product_id").notNull().references(() => productInfo.id), slotId: integer("slot_id").notNull().references(() => deliverySlotInfo.id) }, (t8) => ({ pk: primaryKey({ columns: [t8.productId, t8.slotId], name: "product_slot_pk" }) })); specialDeals = sqliteTable("special_deals", { id: integer().primaryKey({ autoIncrement: true }), productId: integer("product_id").notNull().references(() => productInfo.id), quantity: numericText("quantity").notNull(), price: numericText("price").notNull(), validTill: integer("valid_till", { mode: "timestamp" }).notNull() }); paymentInfoTable = sqliteTable("payment_info", { id: integer().primaryKey({ autoIncrement: true }), status: text().notNull(), gateway: text().notNull(), orderId: text("order_id"), token: text("token"), merchantOrderId: text("merchant_order_id").notNull().unique(), payload: jsonText("payload") }); orders = sqliteTable("orders", { id: integer().primaryKey({ autoIncrement: true }), userId: integer("user_id").notNull().references(() => users.id), addressId: integer("address_id").notNull().references(() => addresses.id), slotId: integer("slot_id").references(() => deliverySlotInfo.id), isCod: integer("is_cod", { mode: "boolean" }).notNull().default(false), isOnlinePayment: integer("is_online_payment", { mode: "boolean" }).notNull().default(false), paymentInfoId: integer("payment_info_id").references(() => paymentInfoTable.id), totalAmount: numericText("total_amount").notNull(), deliveryCharge: numericText("delivery_charge").notNull().default("0"), readableId: integer("readable_id").notNull(), adminNotes: text("admin_notes"), userNotes: text("user_notes"), orderGroupId: text("order_group_id"), orderGroupProportion: numericText("order_group_proportion"), isFlashDelivery: integer("is_flash_delivery", { mode: "boolean" }).notNull().default(false), createdAt: integer("created_at", { mode: "timestamp" }).notNull().defaultNow() }); orderItems = sqliteTable("order_items", { id: integer().primaryKey({ autoIncrement: true }), orderId: integer("order_id").notNull().references(() => orders.id), productId: integer("product_id").notNull().references(() => productInfo.id), quantity: text("quantity").notNull(), price: numericText("price").notNull(), discountedPrice: numericText("discounted_price"), is_packaged: integer("is_packaged", { mode: "boolean" }).notNull().default(false), is_package_verified: integer("is_package_verified", { mode: "boolean" }).notNull().default(false) }); orderStatus = sqliteTable("order_status", { id: integer().primaryKey({ autoIncrement: true }), orderTime: integer("order_time", { mode: "timestamp" }).notNull().defaultNow(), userId: integer("user_id").notNull().references(() => users.id), orderId: integer("order_id").notNull().references(() => orders.id), isPackaged: integer("is_packaged", { mode: "boolean" }).notNull().default(false), isDelivered: integer("is_delivered", { mode: "boolean" }).notNull().default(false), isCancelled: integer("is_cancelled", { mode: "boolean" }).notNull().default(false), cancelReason: text("cancel_reason"), isCancelledByAdmin: integer("is_cancelled_by_admin", { mode: "boolean" }), paymentStatus: paymentStatusEnum("payment_state").notNull().default("pending"), cancellationUserNotes: text("cancellation_user_notes"), cancellationAdminNotes: text("cancellation_admin_notes"), cancellationReviewed: integer("cancellation_reviewed", { mode: "boolean" }).notNull().default(false), cancellationReviewedAt: integer("cancellation_reviewed_at", { mode: "timestamp" }), refundCouponId: integer("refund_coupon_id").references(() => coupons.id) }); payments = sqliteTable("payments", { id: integer().primaryKey({ autoIncrement: true }), status: text().notNull(), gateway: text().notNull(), orderId: integer("order_id").notNull().references(() => orders.id), token: text("token"), merchantOrderId: text("merchant_order_id").notNull().unique(), payload: jsonText("payload") }); refunds = sqliteTable("refunds", { id: integer().primaryKey({ autoIncrement: true }), orderId: integer("order_id").notNull().references(() => orders.id), refundAmount: numericText("refund_amount"), refundStatus: text("refund_status").default("none"), merchantRefundId: text("merchant_refund_id"), refundProcessedAt: integer("refund_processed_at", { mode: "timestamp" }), createdAt: integer("created_at", { mode: "timestamp" }).notNull().defaultNow() }); keyValStore = sqliteTable("key_val_store", { key: text("key").primaryKey(), value: jsonText("value") }); notifications = sqliteTable("notifications", { id: integer().primaryKey({ autoIncrement: true }), userId: integer("user_id").notNull().references(() => users.id), title: text().notNull(), body: text().notNull(), type: text(), isRead: integer("is_read", { mode: "boolean" }).notNull().default(false), createdAt: integer("created_at", { mode: "timestamp" }).notNull().defaultNow() }); productCategories = sqliteTable("product_categories", { id: integer().primaryKey({ autoIncrement: true }), name: text().notNull(), description: text() }); cartItems = sqliteTable("cart_items", { id: integer().primaryKey({ autoIncrement: true }), userId: integer("user_id").notNull().references(() => users.id), productId: integer("product_id").notNull().references(() => productInfo.id), quantity: numericText("quantity").notNull(), addedAt: integer("added_at", { mode: "timestamp" }).notNull().defaultNow() }, (t8) => ({ unq_user_product: uniqueIndex("unique_user_product").on(t8.userId, t8.productId) })); complaints = sqliteTable("complaints", { id: integer().primaryKey({ autoIncrement: true }), userId: integer("user_id").notNull().references(() => users.id), orderId: integer("order_id").references(() => orders.id), complaintBody: text("complaint_body").notNull(), images: jsonText("images"), response: text("response"), isResolved: integer("is_resolved", { mode: "boolean" }).notNull().default(false), createdAt: integer("created_at", { mode: "timestamp" }).notNull().defaultNow() }); coupons = sqliteTable("coupons", { id: integer().primaryKey({ autoIncrement: true }), couponCode: text("coupon_code").notNull().unique(), isUserBased: integer("is_user_based", { mode: "boolean" }).notNull().default(false), discountPercent: numericText("discount_percent"), flatDiscount: numericText("flat_discount"), minOrder: numericText("min_order"), productIds: jsonText("product_ids"), createdBy: integer("created_by").notNull().references(() => staffUsers.id), maxValue: numericText("max_value"), isApplyForAll: integer("is_apply_for_all", { mode: "boolean" }).notNull().default(false), validTill: integer("valid_till", { mode: "timestamp" }), maxLimitForUser: integer("max_limit_for_user"), isInvalidated: integer("is_invalidated", { mode: "boolean" }).notNull().default(false), exclusiveApply: integer("exclusive_apply", { mode: "boolean" }).notNull().default(false), createdAt: integer("created_at", { mode: "timestamp" }).notNull().defaultNow() }); couponUsage = sqliteTable("coupon_usage", { id: integer().primaryKey({ autoIncrement: true }), userId: integer("user_id").notNull().references(() => users.id), couponId: integer("coupon_id").notNull().references(() => coupons.id), orderId: integer("order_id").references(() => orders.id), orderItemId: integer("order_item_id").references(() => orderItems.id), usedAt: integer("used_at", { mode: "timestamp" }).notNull().defaultNow() }); couponApplicableUsers = sqliteTable("coupon_applicable_users", { id: integer().primaryKey({ autoIncrement: true }), couponId: integer("coupon_id").notNull().references(() => coupons.id), userId: integer("user_id").notNull().references(() => users.id) }, (t8) => ({ unq_coupon_user: uniqueIndex("unique_coupon_user").on(t8.couponId, t8.userId) })); couponApplicableProducts = sqliteTable("coupon_applicable_products", { id: integer().primaryKey({ autoIncrement: true }), couponId: integer("coupon_id").notNull().references(() => coupons.id), productId: integer("product_id").notNull().references(() => productInfo.id) }, (t8) => ({ unq_coupon_product: uniqueIndex("unique_coupon_product").on(t8.couponId, t8.productId) })); userIncidents = sqliteTable("user_incidents", { id: integer().primaryKey({ autoIncrement: true }), userId: integer("user_id").notNull().references(() => users.id), orderId: integer("order_id").references(() => orders.id), dateAdded: integer("date_added", { mode: "timestamp" }).notNull().defaultNow(), adminComment: text("admin_comment"), addedBy: integer("added_by").references(() => staffUsers.id), negativityScore: integer("negativity_score") }); reservedCoupons = sqliteTable("reserved_coupons", { id: integer().primaryKey({ autoIncrement: true }), secretCode: text("secret_code").notNull().unique(), couponCode: text("coupon_code").notNull(), discountPercent: numericText("discount_percent"), flatDiscount: numericText("flat_discount"), minOrder: numericText("min_order"), productIds: jsonText("product_ids"), maxValue: numericText("max_value"), validTill: integer("valid_till", { mode: "timestamp" }), maxLimitForUser: integer("max_limit_for_user"), exclusiveApply: integer("exclusive_apply", { mode: "boolean" }).notNull().default(false), isRedeemed: integer("is_redeemed", { mode: "boolean" }).notNull().default(false), redeemedBy: integer("redeemed_by").references(() => users.id), redeemedAt: integer("redeemed_at", { mode: "timestamp" }), createdBy: integer("created_by").notNull().references(() => staffUsers.id), createdAt: integer("created_at", { mode: "timestamp" }).notNull().defaultNow() }); notifCreds = sqliteTable("notif_creds", { id: integer().primaryKey({ autoIncrement: true }), token: text().notNull().unique(), addedAt: integer("added_at", { mode: "timestamp" }).notNull().defaultNow(), userId: integer("user_id").notNull().references(() => users.id), lastVerified: integer("last_verified", { mode: "timestamp" }) }); unloggedUserTokens = sqliteTable("unlogged_user_tokens", { id: integer().primaryKey({ autoIncrement: true }), token: text().notNull().unique(), addedAt: integer("added_at", { mode: "timestamp" }).notNull().defaultNow(), lastVerified: integer("last_verified", { mode: "timestamp" }) }); userNotifications = sqliteTable("user_notifications", { id: integer().primaryKey({ autoIncrement: true }), title: text("title").notNull(), imageUrl: text("image_url"), createdAt: integer("created_at", { mode: "timestamp" }).notNull().defaultNow(), body: text("body").notNull(), applicableUsers: jsonText("applicable_users") }); usersRelations = relations(users, ({ many, one }) => ({ addresses: many(addresses), orders: many(orders), notifications: many(notifications), cartItems: many(cartItems), userCreds: one(userCreds), coupons: many(coupons), couponUsages: many(couponUsage), applicableCoupons: many(couponApplicableUsers), userDetails: one(userDetails), notifCreds: many(notifCreds), userIncidents: many(userIncidents) })); userCredsRelations = relations(userCreds, ({ one }) => ({ user: one(users, { fields: [userCreds.userId], references: [users.id] }) })); staffUsersRelations = relations(staffUsers, ({ one, many }) => ({ role: one(staffRoles, { fields: [staffUsers.staffRoleId], references: [staffRoles.id] }), coupons: many(coupons), stores: many(storeInfo) })); addressesRelations = relations(addresses, ({ one, many }) => ({ user: one(users, { fields: [addresses.userId], references: [users.id] }), orders: many(orders), zone: one(addressZones, { fields: [addresses.zoneId], references: [addressZones.id] }) })); unitsRelations = relations(units, ({ many }) => ({ products: many(productInfo) })); productInfoRelations = relations(productInfo, ({ one, many }) => ({ unit: one(units, { fields: [productInfo.unitId], references: [units.id] }), store: one(storeInfo, { fields: [productInfo.storeId], references: [storeInfo.id] }), productSlots: many(productSlots), specialDeals: many(specialDeals), orderItems: many(orderItems), cartItems: many(cartItems), tags: many(productTags), applicableCoupons: many(couponApplicableProducts), reviews: many(productReviews), groups: many(productGroupMembership) })); productTagInfoRelations = relations(productTagInfo, ({ many }) => ({ products: many(productTags) })); productTagsRelations = relations(productTags, ({ one }) => ({ product: one(productInfo, { fields: [productTags.productId], references: [productInfo.id] }), tag: one(productTagInfo, { fields: [productTags.tagId], references: [productTagInfo.id] }) })); deliverySlotInfoRelations = relations(deliverySlotInfo, ({ many }) => ({ productSlots: many(productSlots), orders: many(orders), vendorSnippets: many(vendorSnippets) })); productSlotsRelations = relations(productSlots, ({ one }) => ({ product: one(productInfo, { fields: [productSlots.productId], references: [productInfo.id] }), slot: one(deliverySlotInfo, { fields: [productSlots.slotId], references: [deliverySlotInfo.id] }) })); specialDealsRelations = relations(specialDeals, ({ one }) => ({ product: one(productInfo, { fields: [specialDeals.productId], references: [productInfo.id] }) })); ordersRelations = relations(orders, ({ one, many }) => ({ user: one(users, { fields: [orders.userId], references: [users.id] }), address: one(addresses, { fields: [orders.addressId], references: [addresses.id] }), slot: one(deliverySlotInfo, { fields: [orders.slotId], references: [deliverySlotInfo.id] }), orderItems: many(orderItems), payment: one(payments), paymentInfo: one(paymentInfoTable, { fields: [orders.paymentInfoId], references: [paymentInfoTable.id] }), orderStatus: many(orderStatus), refunds: many(refunds), couponUsages: many(couponUsage), userIncidents: many(userIncidents) })); orderItemsRelations = relations(orderItems, ({ one }) => ({ order: one(orders, { fields: [orderItems.orderId], references: [orders.id] }), product: one(productInfo, { fields: [orderItems.productId], references: [productInfo.id] }) })); orderStatusRelations = relations(orderStatus, ({ one }) => ({ order: one(orders, { fields: [orderStatus.orderId], references: [orders.id] }), user: one(users, { fields: [orderStatus.userId], references: [users.id] }), refundCoupon: one(coupons, { fields: [orderStatus.refundCouponId], references: [coupons.id] }) })); paymentInfoRelations = relations(paymentInfoTable, ({ one }) => ({ order: one(orders, { fields: [paymentInfoTable.id], references: [orders.paymentInfoId] }) })); paymentsRelations = relations(payments, ({ one }) => ({ order: one(orders, { fields: [payments.orderId], references: [orders.id] }) })); refundsRelations = relations(refunds, ({ one }) => ({ order: one(orders, { fields: [refunds.orderId], references: [orders.id] }) })); notificationsRelations = relations(notifications, ({ one }) => ({ user: one(users, { fields: [notifications.userId], references: [users.id] }) })); productCategoriesRelations = relations(productCategories, ({}) => ({})); cartItemsRelations = relations(cartItems, ({ one }) => ({ user: one(users, { fields: [cartItems.userId], references: [users.id] }), product: one(productInfo, { fields: [cartItems.productId], references: [productInfo.id] }) })); complaintsRelations = relations(complaints, ({ one }) => ({ user: one(users, { fields: [complaints.userId], references: [users.id] }), order: one(orders, { fields: [complaints.orderId], references: [orders.id] }) })); couponsRelations = relations(coupons, ({ one, many }) => ({ creator: one(staffUsers, { fields: [coupons.createdBy], references: [staffUsers.id] }), usages: many(couponUsage), applicableUsers: many(couponApplicableUsers), applicableProducts: many(couponApplicableProducts) })); couponUsageRelations = relations(couponUsage, ({ one }) => ({ user: one(users, { fields: [couponUsage.userId], references: [users.id] }), coupon: one(coupons, { fields: [couponUsage.couponId], references: [coupons.id] }), order: one(orders, { fields: [couponUsage.orderId], references: [orders.id] }), orderItem: one(orderItems, { fields: [couponUsage.orderItemId], references: [orderItems.id] }) })); userDetailsRelations = relations(userDetails, ({ one }) => ({ user: one(users, { fields: [userDetails.userId], references: [users.id] }) })); notifCredsRelations = relations(notifCreds, ({ one }) => ({ user: one(users, { fields: [notifCreds.userId], references: [users.id] }) })); userNotificationsRelations = relations(userNotifications, ({}) => ({ // No relations needed for now })); storeInfoRelations = relations(storeInfo, ({ one, many }) => ({ owner: one(staffUsers, { fields: [storeInfo.owner], references: [staffUsers.id] }), products: many(productInfo) })); couponApplicableUsersRelations = relations(couponApplicableUsers, ({ one }) => ({ coupon: one(coupons, { fields: [couponApplicableUsers.couponId], references: [coupons.id] }), user: one(users, { fields: [couponApplicableUsers.userId], references: [users.id] }) })); couponApplicableProductsRelations = relations(couponApplicableProducts, ({ one }) => ({ coupon: one(coupons, { fields: [couponApplicableProducts.couponId], references: [coupons.id] }), product: one(productInfo, { fields: [couponApplicableProducts.productId], references: [productInfo.id] }) })); reservedCouponsRelations = relations(reservedCoupons, ({ one }) => ({ redeemedUser: one(users, { fields: [reservedCoupons.redeemedBy], references: [users.id] }), creator: one(staffUsers, { fields: [reservedCoupons.createdBy], references: [staffUsers.id] }) })); productReviewsRelations = relations(productReviews, ({ one }) => ({ user: one(users, { fields: [productReviews.userId], references: [users.id] }), product: one(productInfo, { fields: [productReviews.productId], references: [productInfo.id] }) })); addressZonesRelations = relations(addressZones, ({ many }) => ({ addresses: many(addresses), areas: many(addressAreas) })); addressAreasRelations = relations(addressAreas, ({ one }) => ({ zone: one(addressZones, { fields: [addressAreas.zoneId], references: [addressZones.id] }) })); productGroupInfoRelations = relations(productGroupInfo, ({ many }) => ({ memberships: many(productGroupMembership) })); productGroupMembershipRelations = relations(productGroupMembership, ({ one }) => ({ product: one(productInfo, { fields: [productGroupMembership.productId], references: [productInfo.id] }), group: one(productGroupInfo, { fields: [productGroupMembership.groupId], references: [productGroupInfo.id] }) })); homeBannersRelations = relations(homeBanners, ({}) => ({ // Relations for productIds array would be more complex, skipping for now })); staffRolesRelations = relations(staffRoles, ({ many }) => ({ staffUsers: many(staffUsers), rolePermissions: many(staffRolePermissions) })); staffPermissionsRelations = relations(staffPermissions, ({ many }) => ({ rolePermissions: many(staffRolePermissions) })); staffRolePermissionsRelations = relations(staffRolePermissions, ({ one }) => ({ role: one(staffRoles, { fields: [staffRolePermissions.staffRoleId], references: [staffRoles.id] }), permission: one(staffPermissions, { fields: [staffRolePermissions.staffPermissionId], references: [staffPermissions.id] }) })); userIncidentsRelations = relations(userIncidents, ({ one }) => ({ user: one(users, { fields: [userIncidents.userId], references: [users.id] }), order: one(orders, { fields: [userIncidents.orderId], references: [orders.id] }), addedBy: one(staffUsers, { fields: [userIncidents.addedBy], references: [staffUsers.id] }) })); vendorSnippetsRelations = relations(vendorSnippets, ({ one }) => ({ slot: one(deliverySlotInfo, { fields: [vendorSnippets.slotId], references: [deliverySlotInfo.id] }) })); } }); // ../../node_modules/@smithy/util-utf8/dist-es/fromUtf8.browser.js var fromUtf8; var init_fromUtf8_browser = __esm({ "../../node_modules/@smithy/util-utf8/dist-es/fromUtf8.browser.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); fromUtf8 = /* @__PURE__ */ __name((input) => new TextEncoder().encode(input), "fromUtf8"); } }); // ../../node_modules/@smithy/util-utf8/dist-es/toUint8Array.js var toUint8Array; var init_toUint8Array = __esm({ "../../node_modules/@smithy/util-utf8/dist-es/toUint8Array.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_fromUtf8_browser(); toUint8Array = /* @__PURE__ */ __name((data) => { if (typeof data === "string") { return fromUtf8(data); } if (ArrayBuffer.isView(data)) { return new Uint8Array(data.buffer, data.byteOffset, data.byteLength / Uint8Array.BYTES_PER_ELEMENT); } return new Uint8Array(data); }, "toUint8Array"); } }); // ../../node_modules/@smithy/util-utf8/dist-es/toUtf8.browser.js var init_toUtf8_browser = __esm({ "../../node_modules/@smithy/util-utf8/dist-es/toUtf8.browser.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); } }); // ../../node_modules/@smithy/util-utf8/dist-es/index.js var init_dist_es = __esm({ "../../node_modules/@smithy/util-utf8/dist-es/index.js"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_fromUtf8_browser(); init_toUint8Array(); init_toUtf8_browser(); } }); // ../../node_modules/dayjs/dayjs.min.js var require_dayjs_min = __commonJS({ "../../node_modules/dayjs/dayjs.min.js"(exports, module2) { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); !(function(t8, e) { "object" == typeof exports && "undefined" != typeof module2 ? module2.exports = e() : "function" == typeof define && define.amd ? define(e) : (t8 = "undefined" != typeof globalThis ? globalThis : t8 || self).dayjs = e(); })(exports, (function() { "use strict"; var t8 = 1e3, e = 6e4, n = 36e5, r = "millisecond", i = "second", s = "minute", u4 = "hour", a = "day", o = "week", c = "month", f = "quarter", h = "year", d = "date", l = "Invalid Date", $ = /^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/, y = /\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g, M = { name: "en", weekdays: "Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"), months: "January_February_March_April_May_June_July_August_September_October_November_December".split("_"), ordinal: /* @__PURE__ */ __name(function(t9) { var e2 = ["th", "st", "nd", "rd"], n2 = t9 % 100; return "[" + t9 + (e2[(n2 - 20) % 10] || e2[n2] || e2[0]) + "]"; }, "ordinal") }, m = /* @__PURE__ */ __name(function(t9, e2, n2) { var r2 = String(t9); return !r2 || r2.length >= e2 ? t9 : "" + Array(e2 + 1 - r2.length).join(n2) + t9; }, "m"), v2 = { s: m, z: /* @__PURE__ */ __name(function(t9) { var e2 = -t9.utcOffset(), n2 = Math.abs(e2), r2 = Math.floor(n2 / 60), i2 = n2 % 60; return (e2 <= 0 ? "+" : "-") + m(r2, 2, "0") + ":" + m(i2, 2, "0"); }, "z"), m: /* @__PURE__ */ __name(function t9(e2, n2) { if (e2.date() < n2.date()) return -t9(n2, e2); var r2 = 12 * (n2.year() - e2.year()) + (n2.month() - e2.month()), i2 = e2.clone().add(r2, c), s2 = n2 - i2 < 0, u5 = e2.clone().add(r2 + (s2 ? -1 : 1), c); return +(-(r2 + (n2 - i2) / (s2 ? i2 - u5 : u5 - i2)) || 0); }, "t"), a: /* @__PURE__ */ __name(function(t9) { return t9 < 0 ? Math.ceil(t9) || 0 : Math.floor(t9); }, "a"), p: /* @__PURE__ */ __name(function(t9) { return { M: c, y: h, w: o, d: a, D: d, h: u4, m: s, s: i, ms: r, Q: f }[t9] || String(t9 || "").toLowerCase().replace(/s$/, ""); }, "p"), u: /* @__PURE__ */ __name(function(t9) { return void 0 === t9; }, "u") }, g = "en", D2 = {}; D2[g] = M; var p = "$isDayjsObject", S = /* @__PURE__ */ __name(function(t9) { return t9 instanceof _ || !(!t9 || !t9[p]); }, "S"), w = /* @__PURE__ */ __name(function t9(e2, n2, r2) { var i2; if (!e2) return g; if ("string" == typeof e2) { var s2 = e2.toLowerCase(); D2[s2] && (i2 = s2), n2 && (D2[s2] = n2, i2 = s2); var u5 = e2.split("-"); if (!i2 && u5.length > 1) return t9(u5[0]); } else { var a2 = e2.name; D2[a2] = e2, i2 = a2; } return !r2 && i2 && (g = i2), i2 || !r2 && g; }, "t"), O = /* @__PURE__ */ __name(function(t9, e2) { if (S(t9)) return t9.clone(); var n2 = "object" == typeof e2 ? e2 : {}; return n2.date = t9, n2.args = arguments, new _(n2); }, "O"), b = v2; b.l = w, b.i = S, b.w = function(t9, e2) { return O(t9, { locale: e2.$L, utc: e2.$u, x: e2.$x, $offset: e2.$offset }); }; var _ = (function() { function M2(t9) { this.$L = w(t9.locale, null, true), this.parse(t9), this.$x = this.$x || t9.x || {}, this[p] = true; } __name(M2, "M"); var m2 = M2.prototype; return m2.parse = function(t9) { this.$d = (function(t10) { var e2 = t10.date, n2 = t10.utc; if (null === e2) return /* @__PURE__ */ new Date(NaN); if (b.u(e2)) return /* @__PURE__ */ new Date(); if (e2 instanceof Date) return new Date(e2); if ("string" == typeof e2 && !/Z$/i.test(e2)) { var r2 = e2.match($); if (r2) { var i2 = r2[2] - 1 || 0, s2 = (r2[7] || "0").substring(0, 3); return n2 ? new Date(Date.UTC(r2[1], i2, r2[3] || 1, r2[4] || 0, r2[5] || 0, r2[6] || 0, s2)) : new Date(r2[1], i2, r2[3] || 1, r2[4] || 0, r2[5] || 0, r2[6] || 0, s2); } } return new Date(e2); })(t9), this.init(); }, m2.init = function() { var t9 = this.$d; this.$y = t9.getFullYear(), this.$M = t9.getMonth(), this.$D = t9.getDate(), this.$W = t9.getDay(), this.$H = t9.getHours(), this.$m = t9.getMinutes(), this.$s = t9.getSeconds(), this.$ms = t9.getMilliseconds(); }, m2.$utils = function() { return b; }, m2.isValid = function() { return !(this.$d.toString() === l); }, m2.isSame = function(t9, e2) { var n2 = O(t9); return this.startOf(e2) <= n2 && n2 <= this.endOf(e2); }, m2.isAfter = function(t9, e2) { return O(t9) < this.startOf(e2); }, m2.isBefore = function(t9, e2) { return this.endOf(e2) < O(t9); }, m2.$g = function(t9, e2, n2) { return b.u(t9) ? this[e2] : this.set(n2, t9); }, m2.unix = function() { return Math.floor(this.valueOf() / 1e3); }, m2.valueOf = function() { return this.$d.getTime(); }, m2.startOf = function(t9, e2) { var n2 = this, r2 = !!b.u(e2) || e2, f2 = b.p(t9), l2 = /* @__PURE__ */ __name(function(t10, e3) { var i2 = b.w(n2.$u ? Date.UTC(n2.$y, e3, t10) : new Date(n2.$y, e3, t10), n2); return r2 ? i2 : i2.endOf(a); }, "l"), $2 = /* @__PURE__ */ __name(function(t10, e3) { return b.w(n2.toDate()[t10].apply(n2.toDate("s"), (r2 ? [0, 0, 0, 0] : [23, 59, 59, 999]).slice(e3)), n2); }, "$"), y2 = this.$W, M3 = this.$M, m3 = this.$D, v3 = "set" + (this.$u ? "UTC" : ""); switch (f2) { case h: return r2 ? l2(1, 0) : l2(31, 11); case c: return r2 ? l2(1, M3) : l2(0, M3 + 1); case o: var g2 = this.$locale().weekStart || 0, D3 = (y2 < g2 ? y2 + 7 : y2) - g2; return l2(r2 ? m3 - D3 : m3 + (6 - D3), M3); case a: case d: return $2(v3 + "Hours", 0); case u4: return $2(v3 + "Minutes", 1); case s: return $2(v3 + "Seconds", 2); case i: return $2(v3 + "Milliseconds", 3); default: return this.clone(); } }, m2.endOf = function(t9) { return this.startOf(t9, false); }, m2.$set = function(t9, e2) { var n2, o2 = b.p(t9), f2 = "set" + (this.$u ? "UTC" : ""), l2 = (n2 = {}, n2[a] = f2 + "Date", n2[d] = f2 + "Date", n2[c] = f2 + "Month", n2[h] = f2 + "FullYear", n2[u4] = f2 + "Hours", n2[s] = f2 + "Minutes", n2[i] = f2 + "Seconds", n2[r] = f2 + "Milliseconds", n2)[o2], $2 = o2 === a ? this.$D + (e2 - this.$W) : e2; if (o2 === c || o2 === h) { var y2 = this.clone().set(d, 1); y2.$d[l2]($2), y2.init(), this.$d = y2.set(d, Math.min(this.$D, y2.daysInMonth())).$d; } else l2 && this.$d[l2]($2); return this.init(), this; }, m2.set = function(t9, e2) { return this.clone().$set(t9, e2); }, m2.get = function(t9) { return this[b.p(t9)](); }, m2.add = function(r2, f2) { var d2, l2 = this; r2 = Number(r2); var $2 = b.p(f2), y2 = /* @__PURE__ */ __name(function(t9) { var e2 = O(l2); return b.w(e2.date(e2.date() + Math.round(t9 * r2)), l2); }, "y"); if ($2 === c) return this.set(c, this.$M + r2); if ($2 === h) return this.set(h, this.$y + r2); if ($2 === a) return y2(1); if ($2 === o) return y2(7); var M3 = (d2 = {}, d2[s] = e, d2[u4] = n, d2[i] = t8, d2)[$2] || 1, m3 = this.$d.getTime() + r2 * M3; return b.w(m3, this); }, m2.subtract = function(t9, e2) { return this.add(-1 * t9, e2); }, m2.format = function(t9) { var e2 = this, n2 = this.$locale(); if (!this.isValid()) return n2.invalidDate || l; var r2 = t9 || "YYYY-MM-DDTHH:mm:ssZ", i2 = b.z(this), s2 = this.$H, u5 = this.$m, a2 = this.$M, o2 = n2.weekdays, c2 = n2.months, f2 = n2.meridiem, h2 = /* @__PURE__ */ __name(function(t10, n3, i3, s3) { return t10 && (t10[n3] || t10(e2, r2)) || i3[n3].slice(0, s3); }, "h"), d2 = /* @__PURE__ */ __name(function(t10) { return b.s(s2 % 12 || 12, t10, "0"); }, "d"), $2 = f2 || function(t10, e3, n3) { var r3 = t10 < 12 ? "AM" : "PM"; return n3 ? r3.toLowerCase() : r3; }; return r2.replace(y, (function(t10, r3) { return r3 || (function(t11) { switch (t11) { case "YY": return String(e2.$y).slice(-2); case "YYYY": return b.s(e2.$y, 4, "0"); case "M": return a2 + 1; case "MM": return b.s(a2 + 1, 2, "0"); case "MMM": return h2(n2.monthsShort, a2, c2, 3); case "MMMM": return h2(c2, a2); case "D": return e2.$D; case "DD": return b.s(e2.$D, 2, "0"); case "d": return String(e2.$W); case "dd": return h2(n2.weekdaysMin, e2.$W, o2, 2); case "ddd": return h2(n2.weekdaysShort, e2.$W, o2, 3); case "dddd": return o2[e2.$W]; case "H": return String(s2); case "HH": return b.s(s2, 2, "0"); case "h": return d2(1); case "hh": return d2(2); case "a": return $2(s2, u5, true); case "A": return $2(s2, u5, false); case "m": return String(u5); case "mm": return b.s(u5, 2, "0"); case "s": return String(e2.$s); case "ss": return b.s(e2.$s, 2, "0"); case "SSS": return b.s(e2.$ms, 3, "0"); case "Z": return i2; } return null; })(t10) || i2.replace(":", ""); })); }, m2.utcOffset = function() { return 15 * -Math.round(this.$d.getTimezoneOffset() / 15); }, m2.diff = function(r2, d2, l2) { var $2, y2 = this, M3 = b.p(d2), m3 = O(r2), v3 = (m3.utcOffset() - this.utcOffset()) * e, g2 = this - m3, D3 = /* @__PURE__ */ __name(function() { return b.m(y2, m3); }, "D"); switch (M3) { case h: $2 = D3() / 12; break; case c: $2 = D3(); break; case f: $2 = D3() / 3; break; case o: $2 = (g2 - v3) / 6048e5; break; case a: $2 = (g2 - v3) / 864e5; break; case u4: $2 = g2 / n; break; case s: $2 = g2 / e; break; case i: $2 = g2 / t8; break; default: $2 = g2; } return l2 ? $2 : b.a($2); }, m2.daysInMonth = function() { return this.endOf(c).$D; }, m2.$locale = function() { return D2[this.$L]; }, m2.locale = function(t9, e2) { if (!t9) return this.$L; var n2 = this.clone(), r2 = w(t9, e2, true); return r2 && (n2.$L = r2), n2; }, m2.clone = function() { return b.w(this.$d, this); }, m2.toDate = function() { return new Date(this.valueOf()); }, m2.toJSON = function() { return this.isValid() ? this.toISOString() : null; }, m2.toISOString = function() { return this.$d.toISOString(); }, m2.toString = function() { return this.$d.toUTCString(); }, M2; })(), k = _.prototype; return O.prototype = k, [["$ms", r], ["$s", i], ["$m", s], ["$H", u4], ["$W", a], ["$M", c], ["$y", h], ["$D", d]].forEach((function(t9) { k[t9[1]] = function(e2) { return this.$g(e2, t9[0], t9[1]); }; })), O.extend = function(t9, e2) { return t9.$i || (t9(e2, _, O), t9.$i = true), O; }, O.locale = w, O.isDayjs = S, O.unix = function(t9) { return O(1e3 * t9); }, O.en = D2[g], O.Ls = D2, O.p = {}, O; })); } }); // ../../node_modules/node-abort-controller/browser.js var require_browser = __commonJS({ "../../node_modules/node-abort-controller/browser.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var _global2 = typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : ( /* otherwise */ void 0 ); if (!_global2) { throw new Error( `Unable to find global scope. Are you sure this is running in the browser?` ); } if (!_global2.AbortController) { throw new Error( `Could not find "AbortController" in the global scope. You need to polyfill it first` ); } module2.exports.AbortController = _global2.AbortController; } }); // ../../node_modules/@ioredis/commands/built/commands.json var require_commands = __commonJS({ "../../node_modules/@ioredis/commands/built/commands.json"(exports, module2) { module2.exports = { acl: { arity: -2, flags: [], keyStart: 0, keyStop: 0, step: 0 }, append: { arity: 3, flags: [ "write", "denyoom", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, asking: { arity: 1, flags: [ "fast" ], keyStart: 0, keyStop: 0, step: 0 }, auth: { arity: -2, flags: [ "noscript", "loading", "stale", "fast", "no_auth", "allow_busy" ], keyStart: 0, keyStop: 0, step: 0 }, bgrewriteaof: { arity: 1, flags: [ "admin", "noscript", "no_async_loading" ], keyStart: 0, keyStop: 0, step: 0 }, bgsave: { arity: -1, flags: [ "admin", "noscript", "no_async_loading" ], keyStart: 0, keyStop: 0, step: 0 }, bitcount: { arity: -2, flags: [ "readonly" ], keyStart: 1, keyStop: 1, step: 1 }, bitfield: { arity: -2, flags: [ "write", "denyoom" ], keyStart: 1, keyStop: 1, step: 1 }, bitfield_ro: { arity: -2, flags: [ "readonly", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, bitop: { arity: -4, flags: [ "write", "denyoom" ], keyStart: 2, keyStop: -1, step: 1 }, bitpos: { arity: -3, flags: [ "readonly" ], keyStart: 1, keyStop: 1, step: 1 }, blmove: { arity: 6, flags: [ "write", "denyoom", "noscript", "blocking" ], keyStart: 1, keyStop: 2, step: 1 }, blmpop: { arity: -5, flags: [ "write", "blocking", "movablekeys" ], keyStart: 0, keyStop: 0, step: 0 }, blpop: { arity: -3, flags: [ "write", "noscript", "blocking" ], keyStart: 1, keyStop: -2, step: 1 }, brpop: { arity: -3, flags: [ "write", "noscript", "blocking" ], keyStart: 1, keyStop: -2, step: 1 }, brpoplpush: { arity: 4, flags: [ "write", "denyoom", "noscript", "blocking" ], keyStart: 1, keyStop: 2, step: 1 }, bzmpop: { arity: -5, flags: [ "write", "blocking", "movablekeys" ], keyStart: 0, keyStop: 0, step: 0 }, bzpopmax: { arity: -3, flags: [ "write", "noscript", "blocking", "fast" ], keyStart: 1, keyStop: -2, step: 1 }, bzpopmin: { arity: -3, flags: [ "write", "noscript", "blocking", "fast" ], keyStart: 1, keyStop: -2, step: 1 }, client: { arity: -2, flags: [], keyStart: 0, keyStop: 0, step: 0 }, cluster: { arity: -2, flags: [], keyStart: 0, keyStop: 0, step: 0 }, command: { arity: -1, flags: [ "loading", "stale" ], keyStart: 0, keyStop: 0, step: 0 }, config: { arity: -2, flags: [], keyStart: 0, keyStop: 0, step: 0 }, copy: { arity: -3, flags: [ "write", "denyoom" ], keyStart: 1, keyStop: 2, step: 1 }, dbsize: { arity: 1, flags: [ "readonly", "fast" ], keyStart: 0, keyStop: 0, step: 0 }, debug: { arity: -2, flags: [ "admin", "noscript", "loading", "stale" ], keyStart: 0, keyStop: 0, step: 0 }, decr: { arity: 2, flags: [ "write", "denyoom", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, decrby: { arity: 3, flags: [ "write", "denyoom", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, del: { arity: -2, flags: [ "write" ], keyStart: 1, keyStop: -1, step: 1 }, discard: { arity: 1, flags: [ "noscript", "loading", "stale", "fast", "allow_busy" ], keyStart: 0, keyStop: 0, step: 0 }, dump: { arity: 2, flags: [ "readonly" ], keyStart: 1, keyStop: 1, step: 1 }, echo: { arity: 2, flags: [ "fast" ], keyStart: 0, keyStop: 0, step: 0 }, eval: { arity: -3, flags: [ "noscript", "stale", "skip_monitor", "no_mandatory_keys", "movablekeys" ], keyStart: 0, keyStop: 0, step: 0 }, eval_ro: { arity: -3, flags: [ "readonly", "noscript", "stale", "skip_monitor", "no_mandatory_keys", "movablekeys" ], keyStart: 0, keyStop: 0, step: 0 }, evalsha: { arity: -3, flags: [ "noscript", "stale", "skip_monitor", "no_mandatory_keys", "movablekeys" ], keyStart: 0, keyStop: 0, step: 0 }, evalsha_ro: { arity: -3, flags: [ "readonly", "noscript", "stale", "skip_monitor", "no_mandatory_keys", "movablekeys" ], keyStart: 0, keyStop: 0, step: 0 }, exec: { arity: 1, flags: [ "noscript", "loading", "stale", "skip_slowlog" ], keyStart: 0, keyStop: 0, step: 0 }, exists: { arity: -2, flags: [ "readonly", "fast" ], keyStart: 1, keyStop: -1, step: 1 }, expire: { arity: -3, flags: [ "write", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, expireat: { arity: -3, flags: [ "write", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, expiretime: { arity: 2, flags: [ "readonly", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, failover: { arity: -1, flags: [ "admin", "noscript", "stale" ], keyStart: 0, keyStop: 0, step: 0 }, fcall: { arity: -3, flags: [ "noscript", "stale", "skip_monitor", "no_mandatory_keys", "movablekeys" ], keyStart: 0, keyStop: 0, step: 0 }, fcall_ro: { arity: -3, flags: [ "readonly", "noscript", "stale", "skip_monitor", "no_mandatory_keys", "movablekeys" ], keyStart: 0, keyStop: 0, step: 0 }, flushall: { arity: -1, flags: [ "write" ], keyStart: 0, keyStop: 0, step: 0 }, flushdb: { arity: -1, flags: [ "write" ], keyStart: 0, keyStop: 0, step: 0 }, function: { arity: -2, flags: [], keyStart: 0, keyStop: 0, step: 0 }, geoadd: { arity: -5, flags: [ "write", "denyoom" ], keyStart: 1, keyStop: 1, step: 1 }, geodist: { arity: -4, flags: [ "readonly" ], keyStart: 1, keyStop: 1, step: 1 }, geohash: { arity: -2, flags: [ "readonly" ], keyStart: 1, keyStop: 1, step: 1 }, geopos: { arity: -2, flags: [ "readonly" ], keyStart: 1, keyStop: 1, step: 1 }, georadius: { arity: -6, flags: [ "write", "denyoom", "movablekeys" ], keyStart: 1, keyStop: 1, step: 1 }, georadius_ro: { arity: -6, flags: [ "readonly" ], keyStart: 1, keyStop: 1, step: 1 }, georadiusbymember: { arity: -5, flags: [ "write", "denyoom", "movablekeys" ], keyStart: 1, keyStop: 1, step: 1 }, georadiusbymember_ro: { arity: -5, flags: [ "readonly" ], keyStart: 1, keyStop: 1, step: 1 }, geosearch: { arity: -7, flags: [ "readonly" ], keyStart: 1, keyStop: 1, step: 1 }, geosearchstore: { arity: -8, flags: [ "write", "denyoom" ], keyStart: 1, keyStop: 2, step: 1 }, get: { arity: 2, flags: [ "readonly", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, getbit: { arity: 3, flags: [ "readonly", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, getdel: { arity: 2, flags: [ "write", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, getex: { arity: -2, flags: [ "write", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, getrange: { arity: 4, flags: [ "readonly" ], keyStart: 1, keyStop: 1, step: 1 }, getset: { arity: 3, flags: [ "write", "denyoom", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, hdel: { arity: -3, flags: [ "write", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, hello: { arity: -1, flags: [ "noscript", "loading", "stale", "fast", "no_auth", "allow_busy" ], keyStart: 0, keyStop: 0, step: 0 }, hexists: { arity: 3, flags: [ "readonly", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, hexpire: { arity: -6, flags: [ "write", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, hpexpire: { arity: -6, flags: [ "write", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, hget: { arity: 3, flags: [ "readonly", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, hgetall: { arity: 2, flags: [ "readonly" ], keyStart: 1, keyStop: 1, step: 1 }, hincrby: { arity: 4, flags: [ "write", "denyoom", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, hincrbyfloat: { arity: 4, flags: [ "write", "denyoom", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, hkeys: { arity: 2, flags: [ "readonly" ], keyStart: 1, keyStop: 1, step: 1 }, hlen: { arity: 2, flags: [ "readonly", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, hmget: { arity: -3, flags: [ "readonly", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, hmset: { arity: -4, flags: [ "write", "denyoom", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, hrandfield: { arity: -2, flags: [ "readonly" ], keyStart: 1, keyStop: 1, step: 1 }, hscan: { arity: -3, flags: [ "readonly" ], keyStart: 1, keyStop: 1, step: 1 }, hset: { arity: -4, flags: [ "write", "denyoom", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, hsetnx: { arity: 4, flags: [ "write", "denyoom", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, hstrlen: { arity: 3, flags: [ "readonly", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, hvals: { arity: 2, flags: [ "readonly" ], keyStart: 1, keyStop: 1, step: 1 }, incr: { arity: 2, flags: [ "write", "denyoom", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, incrby: { arity: 3, flags: [ "write", "denyoom", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, incrbyfloat: { arity: 3, flags: [ "write", "denyoom", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, info: { arity: -1, flags: [ "loading", "stale" ], keyStart: 0, keyStop: 0, step: 0 }, keys: { arity: 2, flags: [ "readonly" ], keyStart: 0, keyStop: 0, step: 0 }, lastsave: { arity: 1, flags: [ "loading", "stale", "fast" ], keyStart: 0, keyStop: 0, step: 0 }, latency: { arity: -2, flags: [], keyStart: 0, keyStop: 0, step: 0 }, lcs: { arity: -3, flags: [ "readonly" ], keyStart: 1, keyStop: 2, step: 1 }, lindex: { arity: 3, flags: [ "readonly" ], keyStart: 1, keyStop: 1, step: 1 }, linsert: { arity: 5, flags: [ "write", "denyoom" ], keyStart: 1, keyStop: 1, step: 1 }, llen: { arity: 2, flags: [ "readonly", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, lmove: { arity: 5, flags: [ "write", "denyoom" ], keyStart: 1, keyStop: 2, step: 1 }, lmpop: { arity: -4, flags: [ "write", "movablekeys" ], keyStart: 0, keyStop: 0, step: 0 }, lolwut: { arity: -1, flags: [ "readonly", "fast" ], keyStart: 0, keyStop: 0, step: 0 }, lpop: { arity: -2, flags: [ "write", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, lpos: { arity: -3, flags: [ "readonly" ], keyStart: 1, keyStop: 1, step: 1 }, lpush: { arity: -3, flags: [ "write", "denyoom", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, lpushx: { arity: -3, flags: [ "write", "denyoom", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, lrange: { arity: 4, flags: [ "readonly" ], keyStart: 1, keyStop: 1, step: 1 }, lrem: { arity: 4, flags: [ "write" ], keyStart: 1, keyStop: 1, step: 1 }, lset: { arity: 4, flags: [ "write", "denyoom" ], keyStart: 1, keyStop: 1, step: 1 }, ltrim: { arity: 4, flags: [ "write" ], keyStart: 1, keyStop: 1, step: 1 }, memory: { arity: -2, flags: [], keyStart: 0, keyStop: 0, step: 0 }, mget: { arity: -2, flags: [ "readonly", "fast" ], keyStart: 1, keyStop: -1, step: 1 }, migrate: { arity: -6, flags: [ "write", "movablekeys" ], keyStart: 3, keyStop: 3, step: 1 }, module: { arity: -2, flags: [], keyStart: 0, keyStop: 0, step: 0 }, monitor: { arity: 1, flags: [ "admin", "noscript", "loading", "stale" ], keyStart: 0, keyStop: 0, step: 0 }, move: { arity: 3, flags: [ "write", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, mset: { arity: -3, flags: [ "write", "denyoom" ], keyStart: 1, keyStop: -1, step: 2 }, msetnx: { arity: -3, flags: [ "write", "denyoom" ], keyStart: 1, keyStop: -1, step: 2 }, multi: { arity: 1, flags: [ "noscript", "loading", "stale", "fast", "allow_busy" ], keyStart: 0, keyStop: 0, step: 0 }, object: { arity: -2, flags: [], keyStart: 0, keyStop: 0, step: 0 }, persist: { arity: 2, flags: [ "write", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, pexpire: { arity: -3, flags: [ "write", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, pexpireat: { arity: -3, flags: [ "write", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, pexpiretime: { arity: 2, flags: [ "readonly", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, pfadd: { arity: -2, flags: [ "write", "denyoom", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, pfcount: { arity: -2, flags: [ "readonly" ], keyStart: 1, keyStop: -1, step: 1 }, pfdebug: { arity: 3, flags: [ "write", "denyoom", "admin" ], keyStart: 2, keyStop: 2, step: 1 }, pfmerge: { arity: -2, flags: [ "write", "denyoom" ], keyStart: 1, keyStop: -1, step: 1 }, pfselftest: { arity: 1, flags: [ "admin" ], keyStart: 0, keyStop: 0, step: 0 }, ping: { arity: -1, flags: [ "fast" ], keyStart: 0, keyStop: 0, step: 0 }, psetex: { arity: 4, flags: [ "write", "denyoom" ], keyStart: 1, keyStop: 1, step: 1 }, psubscribe: { arity: -2, flags: [ "pubsub", "noscript", "loading", "stale" ], keyStart: 0, keyStop: 0, step: 0 }, psync: { arity: -3, flags: [ "admin", "noscript", "no_async_loading", "no_multi" ], keyStart: 0, keyStop: 0, step: 0 }, pttl: { arity: 2, flags: [ "readonly", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, publish: { arity: 3, flags: [ "pubsub", "loading", "stale", "fast" ], keyStart: 0, keyStop: 0, step: 0 }, pubsub: { arity: -2, flags: [], keyStart: 0, keyStop: 0, step: 0 }, punsubscribe: { arity: -1, flags: [ "pubsub", "noscript", "loading", "stale" ], keyStart: 0, keyStop: 0, step: 0 }, quit: { arity: -1, flags: [ "noscript", "loading", "stale", "fast", "no_auth", "allow_busy" ], keyStart: 0, keyStop: 0, step: 0 }, randomkey: { arity: 1, flags: [ "readonly" ], keyStart: 0, keyStop: 0, step: 0 }, readonly: { arity: 1, flags: [ "loading", "stale", "fast" ], keyStart: 0, keyStop: 0, step: 0 }, readwrite: { arity: 1, flags: [ "loading", "stale", "fast" ], keyStart: 0, keyStop: 0, step: 0 }, rename: { arity: 3, flags: [ "write" ], keyStart: 1, keyStop: 2, step: 1 }, renamenx: { arity: 3, flags: [ "write", "fast" ], keyStart: 1, keyStop: 2, step: 1 }, replconf: { arity: -1, flags: [ "admin", "noscript", "loading", "stale", "allow_busy" ], keyStart: 0, keyStop: 0, step: 0 }, replicaof: { arity: 3, flags: [ "admin", "noscript", "stale", "no_async_loading" ], keyStart: 0, keyStop: 0, step: 0 }, reset: { arity: 1, flags: [ "noscript", "loading", "stale", "fast", "no_auth", "allow_busy" ], keyStart: 0, keyStop: 0, step: 0 }, restore: { arity: -4, flags: [ "write", "denyoom" ], keyStart: 1, keyStop: 1, step: 1 }, "restore-asking": { arity: -4, flags: [ "write", "denyoom", "asking" ], keyStart: 1, keyStop: 1, step: 1 }, role: { arity: 1, flags: [ "noscript", "loading", "stale", "fast" ], keyStart: 0, keyStop: 0, step: 0 }, rpop: { arity: -2, flags: [ "write", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, rpoplpush: { arity: 3, flags: [ "write", "denyoom" ], keyStart: 1, keyStop: 2, step: 1 }, rpush: { arity: -3, flags: [ "write", "denyoom", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, rpushx: { arity: -3, flags: [ "write", "denyoom", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, sadd: { arity: -3, flags: [ "write", "denyoom", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, save: { arity: 1, flags: [ "admin", "noscript", "no_async_loading", "no_multi" ], keyStart: 0, keyStop: 0, step: 0 }, scan: { arity: -2, flags: [ "readonly" ], keyStart: 0, keyStop: 0, step: 0 }, scard: { arity: 2, flags: [ "readonly", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, script: { arity: -2, flags: [], keyStart: 0, keyStop: 0, step: 0 }, sdiff: { arity: -2, flags: [ "readonly" ], keyStart: 1, keyStop: -1, step: 1 }, sdiffstore: { arity: -3, flags: [ "write", "denyoom" ], keyStart: 1, keyStop: -1, step: 1 }, select: { arity: 2, flags: [ "loading", "stale", "fast" ], keyStart: 0, keyStop: 0, step: 0 }, set: { arity: -3, flags: [ "write", "denyoom" ], keyStart: 1, keyStop: 1, step: 1 }, setbit: { arity: 4, flags: [ "write", "denyoom" ], keyStart: 1, keyStop: 1, step: 1 }, setex: { arity: 4, flags: [ "write", "denyoom" ], keyStart: 1, keyStop: 1, step: 1 }, setnx: { arity: 3, flags: [ "write", "denyoom", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, setrange: { arity: 4, flags: [ "write", "denyoom" ], keyStart: 1, keyStop: 1, step: 1 }, shutdown: { arity: -1, flags: [ "admin", "noscript", "loading", "stale", "no_multi", "allow_busy" ], keyStart: 0, keyStop: 0, step: 0 }, sinter: { arity: -2, flags: [ "readonly" ], keyStart: 1, keyStop: -1, step: 1 }, sintercard: { arity: -3, flags: [ "readonly", "movablekeys" ], keyStart: 0, keyStop: 0, step: 0 }, sinterstore: { arity: -3, flags: [ "write", "denyoom" ], keyStart: 1, keyStop: -1, step: 1 }, sismember: { arity: 3, flags: [ "readonly", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, slaveof: { arity: 3, flags: [ "admin", "noscript", "stale", "no_async_loading" ], keyStart: 0, keyStop: 0, step: 0 }, slowlog: { arity: -2, flags: [], keyStart: 0, keyStop: 0, step: 0 }, smembers: { arity: 2, flags: [ "readonly" ], keyStart: 1, keyStop: 1, step: 1 }, smismember: { arity: -3, flags: [ "readonly", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, smove: { arity: 4, flags: [ "write", "fast" ], keyStart: 1, keyStop: 2, step: 1 }, sort: { arity: -2, flags: [ "write", "denyoom", "movablekeys" ], keyStart: 1, keyStop: 1, step: 1 }, sort_ro: { arity: -2, flags: [ "readonly", "movablekeys" ], keyStart: 1, keyStop: 1, step: 1 }, spop: { arity: -2, flags: [ "write", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, spublish: { arity: 3, flags: [ "pubsub", "loading", "stale", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, srandmember: { arity: -2, flags: [ "readonly" ], keyStart: 1, keyStop: 1, step: 1 }, srem: { arity: -3, flags: [ "write", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, sscan: { arity: -3, flags: [ "readonly" ], keyStart: 1, keyStop: 1, step: 1 }, ssubscribe: { arity: -2, flags: [ "pubsub", "noscript", "loading", "stale" ], keyStart: 1, keyStop: -1, step: 1 }, strlen: { arity: 2, flags: [ "readonly", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, subscribe: { arity: -2, flags: [ "pubsub", "noscript", "loading", "stale" ], keyStart: 0, keyStop: 0, step: 0 }, substr: { arity: 4, flags: [ "readonly" ], keyStart: 1, keyStop: 1, step: 1 }, sunion: { arity: -2, flags: [ "readonly" ], keyStart: 1, keyStop: -1, step: 1 }, sunionstore: { arity: -3, flags: [ "write", "denyoom" ], keyStart: 1, keyStop: -1, step: 1 }, sunsubscribe: { arity: -1, flags: [ "pubsub", "noscript", "loading", "stale" ], keyStart: 1, keyStop: -1, step: 1 }, swapdb: { arity: 3, flags: [ "write", "fast" ], keyStart: 0, keyStop: 0, step: 0 }, sync: { arity: 1, flags: [ "admin", "noscript", "no_async_loading", "no_multi" ], keyStart: 0, keyStop: 0, step: 0 }, time: { arity: 1, flags: [ "loading", "stale", "fast" ], keyStart: 0, keyStop: 0, step: 0 }, touch: { arity: -2, flags: [ "readonly", "fast" ], keyStart: 1, keyStop: -1, step: 1 }, ttl: { arity: 2, flags: [ "readonly", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, type: { arity: 2, flags: [ "readonly", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, unlink: { arity: -2, flags: [ "write", "fast" ], keyStart: 1, keyStop: -1, step: 1 }, unsubscribe: { arity: -1, flags: [ "pubsub", "noscript", "loading", "stale" ], keyStart: 0, keyStop: 0, step: 0 }, unwatch: { arity: 1, flags: [ "noscript", "loading", "stale", "fast", "allow_busy" ], keyStart: 0, keyStop: 0, step: 0 }, wait: { arity: 3, flags: [ "noscript" ], keyStart: 0, keyStop: 0, step: 0 }, watch: { arity: -2, flags: [ "noscript", "loading", "stale", "fast", "allow_busy" ], keyStart: 1, keyStop: -1, step: 1 }, xack: { arity: -4, flags: [ "write", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, xadd: { arity: -5, flags: [ "write", "denyoom", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, xautoclaim: { arity: -6, flags: [ "write", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, xclaim: { arity: -6, flags: [ "write", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, xdel: { arity: -3, flags: [ "write", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, xdelex: { arity: -5, flags: [ "write", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, xgroup: { arity: -2, flags: [], keyStart: 0, keyStop: 0, step: 0 }, xinfo: { arity: -2, flags: [], keyStart: 0, keyStop: 0, step: 0 }, xlen: { arity: 2, flags: [ "readonly", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, xpending: { arity: -3, flags: [ "readonly" ], keyStart: 1, keyStop: 1, step: 1 }, xrange: { arity: -4, flags: [ "readonly" ], keyStart: 1, keyStop: 1, step: 1 }, xread: { arity: -4, flags: [ "readonly", "blocking", "movablekeys" ], keyStart: 0, keyStop: 0, step: 0 }, xreadgroup: { arity: -7, flags: [ "write", "blocking", "movablekeys" ], keyStart: 0, keyStop: 0, step: 0 }, xrevrange: { arity: -4, flags: [ "readonly" ], keyStart: 1, keyStop: 1, step: 1 }, xsetid: { arity: -3, flags: [ "write", "denyoom", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, xtrim: { arity: -4, flags: [ "write" ], keyStart: 1, keyStop: 1, step: 1 }, zadd: { arity: -4, flags: [ "write", "denyoom", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, zcard: { arity: 2, flags: [ "readonly", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, zcount: { arity: 4, flags: [ "readonly", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, zdiff: { arity: -3, flags: [ "readonly", "movablekeys" ], keyStart: 0, keyStop: 0, step: 0 }, zdiffstore: { arity: -4, flags: [ "write", "denyoom", "movablekeys" ], keyStart: 1, keyStop: 1, step: 1 }, zincrby: { arity: 4, flags: [ "write", "denyoom", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, zinter: { arity: -3, flags: [ "readonly", "movablekeys" ], keyStart: 0, keyStop: 0, step: 0 }, zintercard: { arity: -3, flags: [ "readonly", "movablekeys" ], keyStart: 0, keyStop: 0, step: 0 }, zinterstore: { arity: -4, flags: [ "write", "denyoom", "movablekeys" ], keyStart: 1, keyStop: 1, step: 1 }, zlexcount: { arity: 4, flags: [ "readonly", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, zmpop: { arity: -4, flags: [ "write", "movablekeys" ], keyStart: 0, keyStop: 0, step: 0 }, zmscore: { arity: -3, flags: [ "readonly", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, zpopmax: { arity: -2, flags: [ "write", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, zpopmin: { arity: -2, flags: [ "write", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, zrandmember: { arity: -2, flags: [ "readonly" ], keyStart: 1, keyStop: 1, step: 1 }, zrange: { arity: -4, flags: [ "readonly" ], keyStart: 1, keyStop: 1, step: 1 }, zrangebylex: { arity: -4, flags: [ "readonly" ], keyStart: 1, keyStop: 1, step: 1 }, zrangebyscore: { arity: -4, flags: [ "readonly" ], keyStart: 1, keyStop: 1, step: 1 }, zrangestore: { arity: -5, flags: [ "write", "denyoom" ], keyStart: 1, keyStop: 2, step: 1 }, zrank: { arity: 3, flags: [ "readonly", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, zrem: { arity: -3, flags: [ "write", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, zremrangebylex: { arity: 4, flags: [ "write" ], keyStart: 1, keyStop: 1, step: 1 }, zremrangebyrank: { arity: 4, flags: [ "write" ], keyStart: 1, keyStop: 1, step: 1 }, zremrangebyscore: { arity: 4, flags: [ "write" ], keyStart: 1, keyStop: 1, step: 1 }, zrevrange: { arity: -4, flags: [ "readonly" ], keyStart: 1, keyStop: 1, step: 1 }, zrevrangebylex: { arity: -4, flags: [ "readonly" ], keyStart: 1, keyStop: 1, step: 1 }, zrevrangebyscore: { arity: -4, flags: [ "readonly" ], keyStart: 1, keyStop: 1, step: 1 }, zrevrank: { arity: 3, flags: [ "readonly", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, zscan: { arity: -3, flags: [ "readonly" ], keyStart: 1, keyStop: 1, step: 1 }, zscore: { arity: 3, flags: [ "readonly", "fast" ], keyStart: 1, keyStop: 1, step: 1 }, zunion: { arity: -3, flags: [ "readonly", "movablekeys" ], keyStart: 0, keyStop: 0, step: 0 }, zunionstore: { arity: -4, flags: [ "write", "denyoom", "movablekeys" ], keyStart: 1, keyStop: 1, step: 1 } }; } }); // ../../node_modules/@ioredis/commands/built/index.js var require_built = __commonJS({ "../../node_modules/@ioredis/commands/built/index.js"(exports) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var __importDefault = exports && exports.__importDefault || function(mod) { return mod && mod.__esModule ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.getKeyIndexes = exports.hasFlag = exports.exists = exports.list = void 0; var commands_json_1 = __importDefault(require_commands()); exports.list = Object.keys(commands_json_1.default); var flags = {}; exports.list.forEach((commandName) => { flags[commandName] = commands_json_1.default[commandName].flags.reduce(function(flags2, flag) { flags2[flag] = true; return flags2; }, {}); }); function exists3(commandName, options) { commandName = (options === null || options === void 0 ? void 0 : options.caseInsensitive) ? String(commandName).toLowerCase() : commandName; return Boolean(commands_json_1.default[commandName]); } __name(exists3, "exists"); exports.exists = exists3; function hasFlag(commandName, flag, options) { commandName = (options === null || options === void 0 ? void 0 : options.nameCaseInsensitive) ? String(commandName).toLowerCase() : commandName; if (!flags[commandName]) { throw new Error("Unknown command " + commandName); } return Boolean(flags[commandName][flag]); } __name(hasFlag, "hasFlag"); exports.hasFlag = hasFlag; function getKeyIndexes(commandName, args, options) { commandName = (options === null || options === void 0 ? void 0 : options.nameCaseInsensitive) ? String(commandName).toLowerCase() : commandName; const command = commands_json_1.default[commandName]; if (!command) { throw new Error("Unknown command " + commandName); } if (!Array.isArray(args)) { throw new Error("Expect args to be an array"); } const keys = []; const parseExternalKey = Boolean(options && options.parseExternalKey); const takeDynamicKeys = /* @__PURE__ */ __name((args2, startIndex) => { const keys2 = []; const keyStop = Number(args2[startIndex]); for (let i = 0; i < keyStop; i++) { keys2.push(i + startIndex + 1); } return keys2; }, "takeDynamicKeys"); const takeKeyAfterToken = /* @__PURE__ */ __name((args2, startIndex, token) => { for (let i = startIndex; i < args2.length - 1; i += 1) { if (String(args2[i]).toLowerCase() === token.toLowerCase()) { return i + 1; } } return null; }, "takeKeyAfterToken"); switch (commandName) { case "zunionstore": case "zinterstore": case "zdiffstore": keys.push(0, ...takeDynamicKeys(args, 1)); break; case "eval": case "evalsha": case "eval_ro": case "evalsha_ro": case "fcall": case "fcall_ro": case "blmpop": case "bzmpop": keys.push(...takeDynamicKeys(args, 1)); break; case "sintercard": case "lmpop": case "zunion": case "zinter": case "zmpop": case "zintercard": case "zdiff": { keys.push(...takeDynamicKeys(args, 0)); break; } case "georadius": { keys.push(0); const storeKey = takeKeyAfterToken(args, 5, "STORE"); if (storeKey) keys.push(storeKey); const distKey = takeKeyAfterToken(args, 5, "STOREDIST"); if (distKey) keys.push(distKey); break; } case "georadiusbymember": { keys.push(0); const storeKey = takeKeyAfterToken(args, 4, "STORE"); if (storeKey) keys.push(storeKey); const distKey = takeKeyAfterToken(args, 4, "STOREDIST"); if (distKey) keys.push(distKey); break; } case "sort": case "sort_ro": keys.push(0); for (let i = 1; i < args.length - 1; i++) { let arg = args[i]; if (typeof arg !== "string") { continue; } const directive = arg.toUpperCase(); if (directive === "GET") { i += 1; arg = args[i]; if (arg !== "#") { if (parseExternalKey) { keys.push([i, getExternalKeyNameLength(arg)]); } else { keys.push(i); } } } else if (directive === "BY") { i += 1; if (parseExternalKey) { keys.push([i, getExternalKeyNameLength(args[i])]); } else { keys.push(i); } } else if (directive === "STORE") { i += 1; keys.push(i); } } break; case "migrate": if (args[2] === "") { for (let i = 5; i < args.length - 1; i++) { const arg = args[i]; if (typeof arg === "string" && arg.toUpperCase() === "KEYS") { for (let j = i + 1; j < args.length; j++) { keys.push(j); } break; } } } else { keys.push(2); } break; case "xreadgroup": case "xread": for (let i = commandName === "xread" ? 0 : 3; i < args.length - 1; i++) { if (String(args[i]).toUpperCase() === "STREAMS") { for (let j = i + 1; j <= i + (args.length - 1 - i) / 2; j++) { keys.push(j); } break; } } break; default: if (command.step > 0) { const keyStart = command.keyStart - 1; const keyStop = command.keyStop > 0 ? command.keyStop : args.length + command.keyStop + 1; for (let i = keyStart; i < keyStop; i += command.step) { keys.push(i); } } break; } return keys; } __name(getKeyIndexes, "getKeyIndexes"); exports.getKeyIndexes = getKeyIndexes; function getExternalKeyNameLength(key) { if (typeof key !== "string") { key = String(key); } const hashPos = key.indexOf("->"); return hashPos === -1 ? key.length : hashPos; } __name(getExternalKeyNameLength, "getExternalKeyNameLength"); } }); // node-built-in-modules:events import libDefault from "events"; var require_events = __commonJS({ "node-built-in-modules:events"(exports, module2) { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); module2.exports = libDefault; } }); // ../../node_modules/standard-as-callback/built/utils.js var require_utils = __commonJS({ "../../node_modules/standard-as-callback/built/utils.js"(exports) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); Object.defineProperty(exports, "__esModule", { value: true }); exports.tryCatch = exports.errorObj = void 0; exports.errorObj = { e: {} }; var tryCatchTarget; function tryCatcher(err, val) { try { const target2 = tryCatchTarget; tryCatchTarget = null; return target2.apply(this, arguments); } catch (e) { exports.errorObj.e = e; return exports.errorObj; } } __name(tryCatcher, "tryCatcher"); function tryCatch2(fn) { tryCatchTarget = fn; return tryCatcher; } __name(tryCatch2, "tryCatch"); exports.tryCatch = tryCatch2; } }); // ../../node_modules/standard-as-callback/built/index.js var require_built2 = __commonJS({ "../../node_modules/standard-as-callback/built/index.js"(exports) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); Object.defineProperty(exports, "__esModule", { value: true }); var utils_1 = require_utils(); function throwLater(e) { setTimeout(function() { throw e; }, 0); } __name(throwLater, "throwLater"); function asCallback(promise2, nodeback, options) { if (typeof nodeback === "function") { promise2.then((val) => { let ret; if (options !== void 0 && Object(options).spread && Array.isArray(val)) { ret = utils_1.tryCatch(nodeback).apply(void 0, [null].concat(val)); } else { ret = val === void 0 ? utils_1.tryCatch(nodeback)(null) : utils_1.tryCatch(nodeback)(null, val); } if (ret === utils_1.errorObj) { throwLater(ret.e); } }, (cause) => { if (!cause) { const newReason = new Error(cause + ""); Object.assign(newReason, { cause }); cause = newReason; } const ret = utils_1.tryCatch(nodeback)(cause); if (ret === utils_1.errorObj) { throwLater(ret.e); } }); } return promise2; } __name(asCallback, "asCallback"); exports.default = asCallback; } }); // node-built-in-modules:assert import libDefault2 from "assert"; var require_assert = __commonJS({ "node-built-in-modules:assert"(exports, module2) { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); module2.exports = libDefault2; } }); // node-built-in-modules:util import libDefault3 from "util"; var require_util = __commonJS({ "node-built-in-modules:util"(exports, module2) { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); module2.exports = libDefault3; } }); // ../../node_modules/redis-errors/lib/old.js var require_old = __commonJS({ "../../node_modules/redis-errors/lib/old.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var assert4 = require_assert(); var util = require_util(); function RedisError(message2) { Object.defineProperty(this, "message", { value: message2 || "", configurable: true, writable: true }); Error.captureStackTrace(this, this.constructor); } __name(RedisError, "RedisError"); util.inherits(RedisError, Error); Object.defineProperty(RedisError.prototype, "name", { value: "RedisError", configurable: true, writable: true }); function ParserError(message2, buffer, offset) { assert4(buffer); assert4.strictEqual(typeof offset, "number"); Object.defineProperty(this, "message", { value: message2 || "", configurable: true, writable: true }); const tmp = Error.stackTraceLimit; Error.stackTraceLimit = 2; Error.captureStackTrace(this, this.constructor); Error.stackTraceLimit = tmp; this.offset = offset; this.buffer = buffer; } __name(ParserError, "ParserError"); util.inherits(ParserError, RedisError); Object.defineProperty(ParserError.prototype, "name", { value: "ParserError", configurable: true, writable: true }); function ReplyError(message2) { Object.defineProperty(this, "message", { value: message2 || "", configurable: true, writable: true }); const tmp = Error.stackTraceLimit; Error.stackTraceLimit = 2; Error.captureStackTrace(this, this.constructor); Error.stackTraceLimit = tmp; } __name(ReplyError, "ReplyError"); util.inherits(ReplyError, RedisError); Object.defineProperty(ReplyError.prototype, "name", { value: "ReplyError", configurable: true, writable: true }); function AbortError2(message2) { Object.defineProperty(this, "message", { value: message2 || "", configurable: true, writable: true }); Error.captureStackTrace(this, this.constructor); } __name(AbortError2, "AbortError"); util.inherits(AbortError2, RedisError); Object.defineProperty(AbortError2.prototype, "name", { value: "AbortError", configurable: true, writable: true }); function InterruptError(message2) { Object.defineProperty(this, "message", { value: message2 || "", configurable: true, writable: true }); Error.captureStackTrace(this, this.constructor); } __name(InterruptError, "InterruptError"); util.inherits(InterruptError, AbortError2); Object.defineProperty(InterruptError.prototype, "name", { value: "InterruptError", configurable: true, writable: true }); module2.exports = { RedisError, ParserError, ReplyError, AbortError: AbortError2, InterruptError }; } }); // ../../node_modules/redis-errors/lib/modern.js var require_modern = __commonJS({ "../../node_modules/redis-errors/lib/modern.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var assert4 = require_assert(); var RedisError = class extends Error { static { __name(this, "RedisError"); } get name() { return this.constructor.name; } }; var ParserError = class extends RedisError { static { __name(this, "ParserError"); } constructor(message2, buffer, offset) { assert4(buffer); assert4.strictEqual(typeof offset, "number"); const tmp = Error.stackTraceLimit; Error.stackTraceLimit = 2; super(message2); Error.stackTraceLimit = tmp; this.offset = offset; this.buffer = buffer; } get name() { return this.constructor.name; } }; var ReplyError = class extends RedisError { static { __name(this, "ReplyError"); } constructor(message2) { const tmp = Error.stackTraceLimit; Error.stackTraceLimit = 2; super(message2); Error.stackTraceLimit = tmp; } get name() { return this.constructor.name; } }; var AbortError2 = class extends RedisError { static { __name(this, "AbortError"); } get name() { return this.constructor.name; } }; var InterruptError = class extends AbortError2 { static { __name(this, "InterruptError"); } get name() { return this.constructor.name; } }; module2.exports = { RedisError, ParserError, ReplyError, AbortError: AbortError2, InterruptError }; } }); // ../../node_modules/redis-errors/index.js var require_redis_errors = __commonJS({ "../../node_modules/redis-errors/index.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var Errors2 = process.version.charCodeAt(1) < 55 && process.version.charCodeAt(2) === 46 ? require_old() : require_modern(); module2.exports = Errors2; } }); // ../../node_modules/cluster-key-slot/lib/index.js var require_lib = __commonJS({ "../../node_modules/cluster-key-slot/lib/index.js"(exports, module2) { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var lookup = [ 0, 4129, 8258, 12387, 16516, 20645, 24774, 28903, 33032, 37161, 41290, 45419, 49548, 53677, 57806, 61935, 4657, 528, 12915, 8786, 21173, 17044, 29431, 25302, 37689, 33560, 45947, 41818, 54205, 50076, 62463, 58334, 9314, 13379, 1056, 5121, 25830, 29895, 17572, 21637, 42346, 46411, 34088, 38153, 58862, 62927, 50604, 54669, 13907, 9842, 5649, 1584, 30423, 26358, 22165, 18100, 46939, 42874, 38681, 34616, 63455, 59390, 55197, 51132, 18628, 22757, 26758, 30887, 2112, 6241, 10242, 14371, 51660, 55789, 59790, 63919, 35144, 39273, 43274, 47403, 23285, 19156, 31415, 27286, 6769, 2640, 14899, 10770, 56317, 52188, 64447, 60318, 39801, 35672, 47931, 43802, 27814, 31879, 19684, 23749, 11298, 15363, 3168, 7233, 60846, 64911, 52716, 56781, 44330, 48395, 36200, 40265, 32407, 28342, 24277, 20212, 15891, 11826, 7761, 3696, 65439, 61374, 57309, 53244, 48923, 44858, 40793, 36728, 37256, 33193, 45514, 41451, 53516, 49453, 61774, 57711, 4224, 161, 12482, 8419, 20484, 16421, 28742, 24679, 33721, 37784, 41979, 46042, 49981, 54044, 58239, 62302, 689, 4752, 8947, 13010, 16949, 21012, 25207, 29270, 46570, 42443, 38312, 34185, 62830, 58703, 54572, 50445, 13538, 9411, 5280, 1153, 29798, 25671, 21540, 17413, 42971, 47098, 34713, 38840, 59231, 63358, 50973, 55100, 9939, 14066, 1681, 5808, 26199, 30326, 17941, 22068, 55628, 51565, 63758, 59695, 39368, 35305, 47498, 43435, 22596, 18533, 30726, 26663, 6336, 2273, 14466, 10403, 52093, 56156, 60223, 64286, 35833, 39896, 43963, 48026, 19061, 23124, 27191, 31254, 2801, 6864, 10931, 14994, 64814, 60687, 56684, 52557, 48554, 44427, 40424, 36297, 31782, 27655, 23652, 19525, 15522, 11395, 7392, 3265, 61215, 65342, 53085, 57212, 44955, 49082, 36825, 40952, 28183, 32310, 20053, 24180, 11923, 16050, 3793, 7920 ]; var toUTF8Array = /* @__PURE__ */ __name(function toUTF8Array2(str) { var char; var i = 0; var p = 0; var utf8 = []; var len = str.length; for (; i < len; i++) { char = str.charCodeAt(i); if (char < 128) { utf8[p++] = char; } else if (char < 2048) { utf8[p++] = char >> 6 | 192; utf8[p++] = char & 63 | 128; } else if ((char & 64512) === 55296 && i + 1 < str.length && (str.charCodeAt(i + 1) & 64512) === 56320) { char = 65536 + ((char & 1023) << 10) + (str.charCodeAt(++i) & 1023); utf8[p++] = char >> 18 | 240; utf8[p++] = char >> 12 & 63 | 128; utf8[p++] = char >> 6 & 63 | 128; utf8[p++] = char & 63 | 128; } else { utf8[p++] = char >> 12 | 224; utf8[p++] = char >> 6 & 63 | 128; utf8[p++] = char & 63 | 128; } } return utf8; }, "toUTF8Array"); var generate = module2.exports = /* @__PURE__ */ __name(function generate2(str) { var char; var i = 0; var start = -1; var result = 0; var resultHash = 0; var utf8 = typeof str === "string" ? toUTF8Array(str) : str; var len = utf8.length; while (i < len) { char = utf8[i++]; if (start === -1) { if (char === 123) { start = i; } } else if (char !== 125) { resultHash = lookup[(char ^ resultHash >> 8) & 255] ^ resultHash << 8; } else if (i - 1 !== start) { return resultHash & 16383; } result = lookup[(char ^ result >> 8) & 255] ^ result << 8; } return result & 16383; }, "generate"); module2.exports.generateMulti = /* @__PURE__ */ __name(function generateMulti(keys) { var i = 1; var len = keys.length; var base = generate(keys[0]); while (i < len) { if (generate(keys[i++]) !== base) return -1; } return base; }, "generateMulti"); } }); // ../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/unenv/dist/runtime/node/internal/fs/promises.mjs var access, copyFile, cp, open, opendir, rename, truncate, rm, rmdir, mkdir, readdir, readlink, symlink, lstat, stat, link, unlink, chmod, lchmod, lchown, chown, utimes, lutimes, realpath, mkdtemp, writeFile, appendFile, readFile, watch, statfs, glob; var init_promises = __esm({ "../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/unenv/dist/runtime/node/internal/fs/promises.mjs"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_utils(); access = /* @__PURE__ */ notImplemented("fs.access"); copyFile = /* @__PURE__ */ notImplemented("fs.copyFile"); cp = /* @__PURE__ */ notImplemented("fs.cp"); open = /* @__PURE__ */ notImplemented("fs.open"); opendir = /* @__PURE__ */ notImplemented("fs.opendir"); rename = /* @__PURE__ */ notImplemented("fs.rename"); truncate = /* @__PURE__ */ notImplemented("fs.truncate"); rm = /* @__PURE__ */ notImplemented("fs.rm"); rmdir = /* @__PURE__ */ notImplemented("fs.rmdir"); mkdir = /* @__PURE__ */ notImplemented("fs.mkdir"); readdir = /* @__PURE__ */ notImplemented("fs.readdir"); readlink = /* @__PURE__ */ notImplemented("fs.readlink"); symlink = /* @__PURE__ */ notImplemented("fs.symlink"); lstat = /* @__PURE__ */ notImplemented("fs.lstat"); stat = /* @__PURE__ */ notImplemented("fs.stat"); link = /* @__PURE__ */ notImplemented("fs.link"); unlink = /* @__PURE__ */ notImplemented("fs.unlink"); chmod = /* @__PURE__ */ notImplemented("fs.chmod"); lchmod = /* @__PURE__ */ notImplemented("fs.lchmod"); lchown = /* @__PURE__ */ notImplemented("fs.lchown"); chown = /* @__PURE__ */ notImplemented("fs.chown"); utimes = /* @__PURE__ */ notImplemented("fs.utimes"); lutimes = /* @__PURE__ */ notImplemented("fs.lutimes"); realpath = /* @__PURE__ */ notImplemented("fs.realpath"); mkdtemp = /* @__PURE__ */ notImplemented("fs.mkdtemp"); writeFile = /* @__PURE__ */ notImplemented("fs.writeFile"); appendFile = /* @__PURE__ */ notImplemented("fs.appendFile"); readFile = /* @__PURE__ */ notImplemented("fs.readFile"); watch = /* @__PURE__ */ notImplemented("fs.watch"); statfs = /* @__PURE__ */ notImplemented("fs.statfs"); glob = /* @__PURE__ */ notImplemented("fs.glob"); } }); // ../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/unenv/dist/runtime/node/internal/fs/constants.mjs var constants_exports = {}; __export(constants_exports, { COPYFILE_EXCL: () => COPYFILE_EXCL, COPYFILE_FICLONE: () => COPYFILE_FICLONE, COPYFILE_FICLONE_FORCE: () => COPYFILE_FICLONE_FORCE, EXTENSIONLESS_FORMAT_JAVASCRIPT: () => EXTENSIONLESS_FORMAT_JAVASCRIPT, EXTENSIONLESS_FORMAT_WASM: () => EXTENSIONLESS_FORMAT_WASM, F_OK: () => F_OK, O_APPEND: () => O_APPEND, O_CREAT: () => O_CREAT, O_DIRECT: () => O_DIRECT, O_DIRECTORY: () => O_DIRECTORY, O_DSYNC: () => O_DSYNC, O_EXCL: () => O_EXCL, O_NOATIME: () => O_NOATIME, O_NOCTTY: () => O_NOCTTY, O_NOFOLLOW: () => O_NOFOLLOW, O_NONBLOCK: () => O_NONBLOCK, O_RDONLY: () => O_RDONLY, O_RDWR: () => O_RDWR, O_SYNC: () => O_SYNC, O_TRUNC: () => O_TRUNC, O_WRONLY: () => O_WRONLY, R_OK: () => R_OK, S_IFBLK: () => S_IFBLK, S_IFCHR: () => S_IFCHR, S_IFDIR: () => S_IFDIR, S_IFIFO: () => S_IFIFO, S_IFLNK: () => S_IFLNK, S_IFMT: () => S_IFMT, S_IFREG: () => S_IFREG, S_IFSOCK: () => S_IFSOCK, S_IRGRP: () => S_IRGRP, S_IROTH: () => S_IROTH, S_IRUSR: () => S_IRUSR, S_IRWXG: () => S_IRWXG, S_IRWXO: () => S_IRWXO, S_IRWXU: () => S_IRWXU, S_IWGRP: () => S_IWGRP, S_IWOTH: () => S_IWOTH, S_IWUSR: () => S_IWUSR, S_IXGRP: () => S_IXGRP, S_IXOTH: () => S_IXOTH, S_IXUSR: () => S_IXUSR, UV_DIRENT_BLOCK: () => UV_DIRENT_BLOCK, UV_DIRENT_CHAR: () => UV_DIRENT_CHAR, UV_DIRENT_DIR: () => UV_DIRENT_DIR, UV_DIRENT_FIFO: () => UV_DIRENT_FIFO, UV_DIRENT_FILE: () => UV_DIRENT_FILE, UV_DIRENT_LINK: () => UV_DIRENT_LINK, UV_DIRENT_SOCKET: () => UV_DIRENT_SOCKET, UV_DIRENT_UNKNOWN: () => UV_DIRENT_UNKNOWN, UV_FS_COPYFILE_EXCL: () => UV_FS_COPYFILE_EXCL, UV_FS_COPYFILE_FICLONE: () => UV_FS_COPYFILE_FICLONE, UV_FS_COPYFILE_FICLONE_FORCE: () => UV_FS_COPYFILE_FICLONE_FORCE, UV_FS_O_FILEMAP: () => UV_FS_O_FILEMAP, UV_FS_SYMLINK_DIR: () => UV_FS_SYMLINK_DIR, UV_FS_SYMLINK_JUNCTION: () => UV_FS_SYMLINK_JUNCTION, W_OK: () => W_OK, X_OK: () => X_OK }); var UV_FS_SYMLINK_DIR, UV_FS_SYMLINK_JUNCTION, O_RDONLY, O_WRONLY, O_RDWR, UV_DIRENT_UNKNOWN, UV_DIRENT_FILE, UV_DIRENT_DIR, UV_DIRENT_LINK, UV_DIRENT_FIFO, UV_DIRENT_SOCKET, UV_DIRENT_CHAR, UV_DIRENT_BLOCK, EXTENSIONLESS_FORMAT_JAVASCRIPT, EXTENSIONLESS_FORMAT_WASM, S_IFMT, S_IFREG, S_IFDIR, S_IFCHR, S_IFBLK, S_IFIFO, S_IFLNK, S_IFSOCK, O_CREAT, O_EXCL, UV_FS_O_FILEMAP, O_NOCTTY, O_TRUNC, O_APPEND, O_DIRECTORY, O_NOATIME, O_NOFOLLOW, O_SYNC, O_DSYNC, O_DIRECT, O_NONBLOCK, S_IRWXU, S_IRUSR, S_IWUSR, S_IXUSR, S_IRWXG, S_IRGRP, S_IWGRP, S_IXGRP, S_IRWXO, S_IROTH, S_IWOTH, S_IXOTH, F_OK, R_OK, W_OK, X_OK, UV_FS_COPYFILE_EXCL, COPYFILE_EXCL, UV_FS_COPYFILE_FICLONE, COPYFILE_FICLONE, UV_FS_COPYFILE_FICLONE_FORCE, COPYFILE_FICLONE_FORCE; var init_constants = __esm({ "../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/unenv/dist/runtime/node/internal/fs/constants.mjs"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); UV_FS_SYMLINK_DIR = 1; UV_FS_SYMLINK_JUNCTION = 2; O_RDONLY = 0; O_WRONLY = 1; O_RDWR = 2; UV_DIRENT_UNKNOWN = 0; UV_DIRENT_FILE = 1; UV_DIRENT_DIR = 2; UV_DIRENT_LINK = 3; UV_DIRENT_FIFO = 4; UV_DIRENT_SOCKET = 5; UV_DIRENT_CHAR = 6; UV_DIRENT_BLOCK = 7; EXTENSIONLESS_FORMAT_JAVASCRIPT = 0; EXTENSIONLESS_FORMAT_WASM = 1; S_IFMT = 61440; S_IFREG = 32768; S_IFDIR = 16384; S_IFCHR = 8192; S_IFBLK = 24576; S_IFIFO = 4096; S_IFLNK = 40960; S_IFSOCK = 49152; O_CREAT = 64; O_EXCL = 128; UV_FS_O_FILEMAP = 0; O_NOCTTY = 256; O_TRUNC = 512; O_APPEND = 1024; O_DIRECTORY = 65536; O_NOATIME = 262144; O_NOFOLLOW = 131072; O_SYNC = 1052672; O_DSYNC = 4096; O_DIRECT = 16384; O_NONBLOCK = 2048; S_IRWXU = 448; S_IRUSR = 256; S_IWUSR = 128; S_IXUSR = 64; S_IRWXG = 56; S_IRGRP = 32; S_IWGRP = 16; S_IXGRP = 8; S_IRWXO = 7; S_IROTH = 4; S_IWOTH = 2; S_IXOTH = 1; F_OK = 0; R_OK = 4; W_OK = 2; X_OK = 1; UV_FS_COPYFILE_EXCL = 1; COPYFILE_EXCL = 1; UV_FS_COPYFILE_FICLONE = 2; COPYFILE_FICLONE = 2; UV_FS_COPYFILE_FICLONE_FORCE = 4; COPYFILE_FICLONE_FORCE = 4; } }); // ../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/unenv/dist/runtime/node/fs/promises.mjs var promises_default; var init_promises2 = __esm({ "../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/unenv/dist/runtime/node/fs/promises.mjs"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_promises(); init_constants(); init_promises(); promises_default = { constants: constants_exports, access, appendFile, chmod, chown, copyFile, cp, glob, lchmod, lchown, link, lstat, lutimes, mkdir, mkdtemp, open, opendir, readFile, readdir, readlink, realpath, rename, rm, rmdir, stat, statfs, symlink, truncate, unlink, utimes, watch, writeFile }; } }); // ../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/unenv/dist/runtime/node/internal/fs/classes.mjs var Dir, Dirent, Stats, ReadStream2, WriteStream2, FileReadStream, FileWriteStream; var init_classes = __esm({ "../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/unenv/dist/runtime/node/internal/fs/classes.mjs"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_utils(); Dir = /* @__PURE__ */ notImplementedClass("fs.Dir"); Dirent = /* @__PURE__ */ notImplementedClass("fs.Dirent"); Stats = /* @__PURE__ */ notImplementedClass("fs.Stats"); ReadStream2 = /* @__PURE__ */ notImplementedClass("fs.ReadStream"); WriteStream2 = /* @__PURE__ */ notImplementedClass("fs.WriteStream"); FileReadStream = ReadStream2; FileWriteStream = WriteStream2; } }); // ../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/unenv/dist/runtime/node/internal/fs/fs.mjs function callbackify(fn) { const fnc = /* @__PURE__ */ __name(function(...args) { const cb = args.pop(); fn().catch((error50) => cb(error50)).then((val) => cb(void 0, val)); }, "fnc"); fnc.__promisify__ = fn; fnc.native = fnc; return fnc; } var access2, appendFile2, chown2, chmod2, copyFile2, cp2, lchown2, lchmod2, link2, lstat2, lutimes2, mkdir2, mkdtemp2, realpath2, open2, opendir2, readdir2, readFile2, readlink2, rename2, rm2, rmdir2, stat2, symlink2, truncate2, unlink2, utimes2, writeFile2, statfs2, close, createReadStream, createWriteStream, exists2, fchown, fchmod, fdatasync, fstat, fsync, ftruncate, futimes, lstatSync, read, readv, realpathSync, statSync, unwatchFile, watch2, watchFile, write, writev, _toUnixTimestamp, openAsBlob, glob2, appendFileSync, accessSync, chownSync, chmodSync, closeSync, copyFileSync, cpSync, existsSync, fchownSync, fchmodSync, fdatasyncSync, fstatSync, fsyncSync, ftruncateSync, futimesSync, lchownSync, lchmodSync, linkSync, lutimesSync, mkdirSync, mkdtempSync, openSync, opendirSync, readdirSync, readSync, readvSync, readFileSync, readlinkSync, renameSync, rmSync, rmdirSync, symlinkSync, truncateSync, unlinkSync, utimesSync, writeFileSync, writeSync, writevSync, statfsSync, globSync; var init_fs = __esm({ "../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/unenv/dist/runtime/node/internal/fs/fs.mjs"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_utils(); init_promises(); __name(callbackify, "callbackify"); access2 = callbackify(access); appendFile2 = callbackify(appendFile); chown2 = callbackify(chown); chmod2 = callbackify(chmod); copyFile2 = callbackify(copyFile); cp2 = callbackify(cp); lchown2 = callbackify(lchown); lchmod2 = callbackify(lchmod); link2 = callbackify(link); lstat2 = callbackify(lstat); lutimes2 = callbackify(lutimes); mkdir2 = callbackify(mkdir); mkdtemp2 = callbackify(mkdtemp); realpath2 = callbackify(realpath); open2 = callbackify(open); opendir2 = callbackify(opendir); readdir2 = callbackify(readdir); readFile2 = callbackify(readFile); readlink2 = callbackify(readlink); rename2 = callbackify(rename); rm2 = callbackify(rm); rmdir2 = callbackify(rmdir); stat2 = callbackify(stat); symlink2 = callbackify(symlink); truncate2 = callbackify(truncate); unlink2 = callbackify(unlink); utimes2 = callbackify(utimes); writeFile2 = callbackify(writeFile); statfs2 = callbackify(statfs); close = /* @__PURE__ */ notImplementedAsync("fs.close"); createReadStream = /* @__PURE__ */ notImplementedAsync("fs.createReadStream"); createWriteStream = /* @__PURE__ */ notImplementedAsync("fs.createWriteStream"); exists2 = /* @__PURE__ */ notImplementedAsync("fs.exists"); fchown = /* @__PURE__ */ notImplementedAsync("fs.fchown"); fchmod = /* @__PURE__ */ notImplementedAsync("fs.fchmod"); fdatasync = /* @__PURE__ */ notImplementedAsync("fs.fdatasync"); fstat = /* @__PURE__ */ notImplementedAsync("fs.fstat"); fsync = /* @__PURE__ */ notImplementedAsync("fs.fsync"); ftruncate = /* @__PURE__ */ notImplementedAsync("fs.ftruncate"); futimes = /* @__PURE__ */ notImplementedAsync("fs.futimes"); lstatSync = /* @__PURE__ */ notImplementedAsync("fs.lstatSync"); read = /* @__PURE__ */ notImplementedAsync("fs.read"); readv = /* @__PURE__ */ notImplementedAsync("fs.readv"); realpathSync = /* @__PURE__ */ notImplementedAsync("fs.realpathSync"); statSync = /* @__PURE__ */ notImplementedAsync("fs.statSync"); unwatchFile = /* @__PURE__ */ notImplementedAsync("fs.unwatchFile"); watch2 = /* @__PURE__ */ notImplementedAsync("fs.watch"); watchFile = /* @__PURE__ */ notImplementedAsync("fs.watchFile"); write = /* @__PURE__ */ notImplementedAsync("fs.write"); writev = /* @__PURE__ */ notImplementedAsync("fs.writev"); _toUnixTimestamp = /* @__PURE__ */ notImplementedAsync("fs._toUnixTimestamp"); openAsBlob = /* @__PURE__ */ notImplementedAsync("fs.openAsBlob"); glob2 = /* @__PURE__ */ notImplementedAsync("fs.glob"); appendFileSync = /* @__PURE__ */ notImplemented("fs.appendFileSync"); accessSync = /* @__PURE__ */ notImplemented("fs.accessSync"); chownSync = /* @__PURE__ */ notImplemented("fs.chownSync"); chmodSync = /* @__PURE__ */ notImplemented("fs.chmodSync"); closeSync = /* @__PURE__ */ notImplemented("fs.closeSync"); copyFileSync = /* @__PURE__ */ notImplemented("fs.copyFileSync"); cpSync = /* @__PURE__ */ notImplemented("fs.cpSync"); existsSync = /* @__PURE__ */ __name(() => false, "existsSync"); fchownSync = /* @__PURE__ */ notImplemented("fs.fchownSync"); fchmodSync = /* @__PURE__ */ notImplemented("fs.fchmodSync"); fdatasyncSync = /* @__PURE__ */ notImplemented("fs.fdatasyncSync"); fstatSync = /* @__PURE__ */ notImplemented("fs.fstatSync"); fsyncSync = /* @__PURE__ */ notImplemented("fs.fsyncSync"); ftruncateSync = /* @__PURE__ */ notImplemented("fs.ftruncateSync"); futimesSync = /* @__PURE__ */ notImplemented("fs.futimesSync"); lchownSync = /* @__PURE__ */ notImplemented("fs.lchownSync"); lchmodSync = /* @__PURE__ */ notImplemented("fs.lchmodSync"); linkSync = /* @__PURE__ */ notImplemented("fs.linkSync"); lutimesSync = /* @__PURE__ */ notImplemented("fs.lutimesSync"); mkdirSync = /* @__PURE__ */ notImplemented("fs.mkdirSync"); mkdtempSync = /* @__PURE__ */ notImplemented("fs.mkdtempSync"); openSync = /* @__PURE__ */ notImplemented("fs.openSync"); opendirSync = /* @__PURE__ */ notImplemented("fs.opendirSync"); readdirSync = /* @__PURE__ */ notImplemented("fs.readdirSync"); readSync = /* @__PURE__ */ notImplemented("fs.readSync"); readvSync = /* @__PURE__ */ notImplemented("fs.readvSync"); readFileSync = /* @__PURE__ */ notImplemented("fs.readFileSync"); readlinkSync = /* @__PURE__ */ notImplemented("fs.readlinkSync"); renameSync = /* @__PURE__ */ notImplemented("fs.renameSync"); rmSync = /* @__PURE__ */ notImplemented("fs.rmSync"); rmdirSync = /* @__PURE__ */ notImplemented("fs.rmdirSync"); symlinkSync = /* @__PURE__ */ notImplemented("fs.symlinkSync"); truncateSync = /* @__PURE__ */ notImplemented("fs.truncateSync"); unlinkSync = /* @__PURE__ */ notImplemented("fs.unlinkSync"); utimesSync = /* @__PURE__ */ notImplemented("fs.utimesSync"); writeFileSync = /* @__PURE__ */ notImplemented("fs.writeFileSync"); writeSync = /* @__PURE__ */ notImplemented("fs.writeSync"); writevSync = /* @__PURE__ */ notImplemented("fs.writevSync"); statfsSync = /* @__PURE__ */ notImplemented("fs.statfsSync"); globSync = /* @__PURE__ */ notImplemented("fs.globSync"); } }); // ../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/unenv/dist/runtime/node/fs.mjs var fs_default; var init_fs2 = __esm({ "../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/unenv/dist/runtime/node/fs.mjs"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_promises2(); init_classes(); init_fs(); init_constants(); init_constants(); init_fs(); init_classes(); fs_default = { F_OK, R_OK, W_OK, X_OK, constants: constants_exports, promises: promises_default, Dir, Dirent, FileReadStream, FileWriteStream, ReadStream: ReadStream2, Stats, WriteStream: WriteStream2, _toUnixTimestamp, access: access2, accessSync, appendFile: appendFile2, appendFileSync, chmod: chmod2, chmodSync, chown: chown2, chownSync, close, closeSync, copyFile: copyFile2, copyFileSync, cp: cp2, cpSync, createReadStream, createWriteStream, exists: exists2, existsSync, fchmod, fchmodSync, fchown, fchownSync, fdatasync, fdatasyncSync, fstat, fstatSync, fsync, fsyncSync, ftruncate, ftruncateSync, futimes, futimesSync, glob: glob2, lchmod: lchmod2, globSync, lchmodSync, lchown: lchown2, lchownSync, link: link2, linkSync, lstat: lstat2, lstatSync, lutimes: lutimes2, lutimesSync, mkdir: mkdir2, mkdirSync, mkdtemp: mkdtemp2, mkdtempSync, open: open2, openAsBlob, openSync, opendir: opendir2, opendirSync, read, readFile: readFile2, readFileSync, readSync, readdir: readdir2, readdirSync, readlink: readlink2, readlinkSync, readv, readvSync, realpath: realpath2, realpathSync, rename: rename2, renameSync, rm: rm2, rmSync, rmdir: rmdir2, rmdirSync, stat: stat2, statSync, statfs: statfs2, statfsSync, symlink: symlink2, symlinkSync, truncate: truncate2, truncateSync, unlink: unlink2, unlinkSync, unwatchFile, utimes: utimes2, utimesSync, watch: watch2, watchFile, write, writeFile: writeFile2, writeFileSync, writeSync, writev, writevSync }; } }); // node-built-in-modules:fs var require_fs = __commonJS({ "node-built-in-modules:fs"(exports, module2) { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_fs2(); module2.exports = fs_default; } }); // node-built-in-modules:path import libDefault4 from "path"; var require_path = __commonJS({ "node-built-in-modules:path"(exports, module2) { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); module2.exports = libDefault4; } }); // node-built-in-modules:url import libDefault5 from "url"; var require_url = __commonJS({ "node-built-in-modules:url"(exports, module2) { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); module2.exports = libDefault5; } }); // ../../node_modules/lodash.defaults/index.js var require_lodash = __commonJS({ "../../node_modules/lodash.defaults/index.js"(exports, module2) { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var MAX_SAFE_INTEGER = 9007199254740991; var argsTag = "[object Arguments]"; var funcTag = "[object Function]"; var genTag = "[object GeneratorFunction]"; var reIsUint = /^(?:0|[1-9]\d*)$/; function apply(func, thisArg, args) { switch (args.length) { case 0: return func.call(thisArg); case 1: return func.call(thisArg, args[0]); case 2: return func.call(thisArg, args[0], args[1]); case 3: return func.call(thisArg, args[0], args[1], args[2]); } return func.apply(thisArg, args); } __name(apply, "apply"); function baseTimes(n, iteratee) { var index = -1, result = Array(n); while (++index < n) { result[index] = iteratee(index); } return result; } __name(baseTimes, "baseTimes"); var objectProto = Object.prototype; var hasOwnProperty2 = objectProto.hasOwnProperty; var objectToString = objectProto.toString; var propertyIsEnumerable = objectProto.propertyIsEnumerable; var nativeMax = Math.max; function arrayLikeKeys(value, inherited) { var result = isArray2(value) || isArguments(value) ? baseTimes(value.length, String) : []; var length = result.length, skipIndexes = !!length; for (var key in value) { if ((inherited || hasOwnProperty2.call(value, key)) && !(skipIndexes && (key == "length" || isIndex(key, length)))) { result.push(key); } } return result; } __name(arrayLikeKeys, "arrayLikeKeys"); function assignInDefaults(objValue, srcValue, key, object2) { if (objValue === void 0 || eq2(objValue, objectProto[key]) && !hasOwnProperty2.call(object2, key)) { return srcValue; } return objValue; } __name(assignInDefaults, "assignInDefaults"); function assignValue(object2, key, value) { var objValue = object2[key]; if (!(hasOwnProperty2.call(object2, key) && eq2(objValue, value)) || value === void 0 && !(key in object2)) { object2[key] = value; } } __name(assignValue, "assignValue"); function baseKeysIn(object2) { if (!isObject5(object2)) { return nativeKeysIn(object2); } var isProto = isPrototype(object2), result = []; for (var key in object2) { if (!(key == "constructor" && (isProto || !hasOwnProperty2.call(object2, key)))) { result.push(key); } } return result; } __name(baseKeysIn, "baseKeysIn"); function baseRest(func, start) { start = nativeMax(start === void 0 ? func.length - 1 : start, 0); return function() { var args = arguments, index = -1, length = nativeMax(args.length - start, 0), array2 = Array(length); while (++index < length) { array2[index] = args[start + index]; } index = -1; var otherArgs = Array(start + 1); while (++index < start) { otherArgs[index] = args[index]; } otherArgs[start] = array2; return apply(func, this, otherArgs); }; } __name(baseRest, "baseRest"); function copyObject(source, props, object2, customizer) { object2 || (object2 = {}); var index = -1, length = props.length; while (++index < length) { var key = props[index]; var newValue = customizer ? customizer(object2[key], source[key], key, object2, source) : void 0; assignValue(object2, key, newValue === void 0 ? source[key] : newValue); } return object2; } __name(copyObject, "copyObject"); function createAssigner(assigner) { return baseRest(function(object2, sources) { var index = -1, length = sources.length, customizer = length > 1 ? sources[length - 1] : void 0, guard = length > 2 ? sources[2] : void 0; customizer = assigner.length > 3 && typeof customizer == "function" ? (length--, customizer) : void 0; if (guard && isIterateeCall(sources[0], sources[1], guard)) { customizer = length < 3 ? void 0 : customizer; length = 1; } object2 = Object(object2); while (++index < length) { var source = sources[index]; if (source) { assigner(object2, source, index, customizer); } } return object2; }); } __name(createAssigner, "createAssigner"); function isIndex(value, length) { length = length == null ? MAX_SAFE_INTEGER : length; return !!length && (typeof value == "number" || reIsUint.test(value)) && (value > -1 && value % 1 == 0 && value < length); } __name(isIndex, "isIndex"); function isIterateeCall(value, index, object2) { if (!isObject5(object2)) { return false; } var type = typeof index; if (type == "number" ? isArrayLike(object2) && isIndex(index, object2.length) : type == "string" && index in object2) { return eq2(object2[index], value); } return false; } __name(isIterateeCall, "isIterateeCall"); function isPrototype(value) { var Ctor = value && value.constructor, proto = typeof Ctor == "function" && Ctor.prototype || objectProto; return value === proto; } __name(isPrototype, "isPrototype"); function nativeKeysIn(object2) { var result = []; if (object2 != null) { for (var key in Object(object2)) { result.push(key); } } return result; } __name(nativeKeysIn, "nativeKeysIn"); function eq2(value, other) { return value === other || value !== value && other !== other; } __name(eq2, "eq"); function isArguments(value) { return isArrayLikeObject(value) && hasOwnProperty2.call(value, "callee") && (!propertyIsEnumerable.call(value, "callee") || objectToString.call(value) == argsTag); } __name(isArguments, "isArguments"); var isArray2 = Array.isArray; function isArrayLike(value) { return value != null && isLength(value.length) && !isFunction4(value); } __name(isArrayLike, "isArrayLike"); function isArrayLikeObject(value) { return isObjectLike2(value) && isArrayLike(value); } __name(isArrayLikeObject, "isArrayLikeObject"); function isFunction4(value) { var tag2 = isObject5(value) ? objectToString.call(value) : ""; return tag2 == funcTag || tag2 == genTag; } __name(isFunction4, "isFunction"); function isLength(value) { return typeof value == "number" && value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER; } __name(isLength, "isLength"); function isObject5(value) { var type = typeof value; return !!value && (type == "object" || type == "function"); } __name(isObject5, "isObject"); function isObjectLike2(value) { return !!value && typeof value == "object"; } __name(isObjectLike2, "isObjectLike"); var assignInWith = createAssigner(function(object2, source, srcIndex, customizer) { copyObject(source, keysIn(source), object2, customizer); }); var defaults2 = baseRest(function(args) { args.push(void 0, assignInDefaults); return apply(assignInWith, void 0, args); }); function keysIn(object2) { return isArrayLike(object2) ? arrayLikeKeys(object2, true) : baseKeysIn(object2); } __name(keysIn, "keysIn"); module2.exports = defaults2; } }); // ../../node_modules/lodash.isarguments/index.js var require_lodash2 = __commonJS({ "../../node_modules/lodash.isarguments/index.js"(exports, module2) { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var MAX_SAFE_INTEGER = 9007199254740991; var argsTag = "[object Arguments]"; var funcTag = "[object Function]"; var genTag = "[object GeneratorFunction]"; var objectProto = Object.prototype; var hasOwnProperty2 = objectProto.hasOwnProperty; var objectToString = objectProto.toString; var propertyIsEnumerable = objectProto.propertyIsEnumerable; function isArguments(value) { return isArrayLikeObject(value) && hasOwnProperty2.call(value, "callee") && (!propertyIsEnumerable.call(value, "callee") || objectToString.call(value) == argsTag); } __name(isArguments, "isArguments"); function isArrayLike(value) { return value != null && isLength(value.length) && !isFunction4(value); } __name(isArrayLike, "isArrayLike"); function isArrayLikeObject(value) { return isObjectLike2(value) && isArrayLike(value); } __name(isArrayLikeObject, "isArrayLikeObject"); function isFunction4(value) { var tag2 = isObject5(value) ? objectToString.call(value) : ""; return tag2 == funcTag || tag2 == genTag; } __name(isFunction4, "isFunction"); function isLength(value) { return typeof value == "number" && value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER; } __name(isLength, "isLength"); function isObject5(value) { var type = typeof value; return !!value && (type == "object" || type == "function"); } __name(isObject5, "isObject"); function isObjectLike2(value) { return !!value && typeof value == "object"; } __name(isObjectLike2, "isObjectLike"); module2.exports = isArguments; } }); // ../../node_modules/ioredis/built/utils/lodash.js var require_lodash3 = __commonJS({ "../../node_modules/ioredis/built/utils/lodash.js"(exports) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); Object.defineProperty(exports, "__esModule", { value: true }); exports.isArguments = exports.defaults = exports.noop = void 0; var defaults2 = require_lodash(); exports.defaults = defaults2; var isArguments = require_lodash2(); exports.isArguments = isArguments; function noop3() { } __name(noop3, "noop"); exports.noop = noop3; } }); // ../../node_modules/ms/index.js var require_ms = __commonJS({ "../../node_modules/ms/index.js"(exports, module2) { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var s = 1e3; var m = s * 60; var h = m * 60; var d = h * 24; var w = d * 7; var y = d * 365.25; module2.exports = function(val, options) { options = options || {}; var type = typeof val; if (type === "string" && val.length > 0) { return parse3(val); } else if (type === "number" && isFinite(val)) { return options.long ? fmtLong(val) : fmtShort(val); } throw new Error( "val is not a non-empty string or a valid number. val=" + JSON.stringify(val) ); }; function parse3(str) { str = String(str); if (str.length > 100) { return; } var match2 = /^(-?(?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec( str ); if (!match2) { return; } var n = parseFloat(match2[1]); var type = (match2[2] || "ms").toLowerCase(); switch (type) { case "years": case "year": case "yrs": case "yr": case "y": return n * y; case "weeks": case "week": case "w": return n * w; case "days": case "day": case "d": return n * d; case "hours": case "hour": case "hrs": case "hr": case "h": return n * h; case "minutes": case "minute": case "mins": case "min": case "m": return n * m; case "seconds": case "second": case "secs": case "sec": case "s": return n * s; case "milliseconds": case "millisecond": case "msecs": case "msec": case "ms": return n; default: return void 0; } } __name(parse3, "parse"); function fmtShort(ms) { var msAbs = Math.abs(ms); if (msAbs >= d) { return Math.round(ms / d) + "d"; } if (msAbs >= h) { return Math.round(ms / h) + "h"; } if (msAbs >= m) { return Math.round(ms / m) + "m"; } if (msAbs >= s) { return Math.round(ms / s) + "s"; } return ms + "ms"; } __name(fmtShort, "fmtShort"); function fmtLong(ms) { var msAbs = Math.abs(ms); if (msAbs >= d) { return plural(ms, msAbs, d, "day"); } if (msAbs >= h) { return plural(ms, msAbs, h, "hour"); } if (msAbs >= m) { return plural(ms, msAbs, m, "minute"); } if (msAbs >= s) { return plural(ms, msAbs, s, "second"); } return ms + " ms"; } __name(fmtLong, "fmtLong"); function plural(ms, msAbs, n, name) { var isPlural = msAbs >= n * 1.5; return Math.round(ms / n) + " " + name + (isPlural ? "s" : ""); } __name(plural, "plural"); } }); // ../../node_modules/debug/src/common.js var require_common = __commonJS({ "../../node_modules/debug/src/common.js"(exports, module2) { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); function setup(env2) { createDebug.debug = createDebug; createDebug.default = createDebug; createDebug.coerce = coerce2; createDebug.disable = disable; createDebug.enable = enable; createDebug.enabled = enabled; createDebug.humanize = require_ms(); createDebug.destroy = destroy; Object.keys(env2).forEach((key) => { createDebug[key] = env2[key]; }); createDebug.names = []; createDebug.skips = []; createDebug.formatters = {}; function selectColor(namespace) { let hash3 = 0; for (let i = 0; i < namespace.length; i++) { hash3 = (hash3 << 5) - hash3 + namespace.charCodeAt(i); hash3 |= 0; } return createDebug.colors[Math.abs(hash3) % createDebug.colors.length]; } __name(selectColor, "selectColor"); createDebug.selectColor = selectColor; function createDebug(namespace) { let prevTime; let enableOverride = null; let namespacesCache; let enabledCache; function debug3(...args) { if (!debug3.enabled) { return; } const self2 = debug3; const curr = Number(/* @__PURE__ */ new Date()); const ms = curr - (prevTime || curr); self2.diff = ms; self2.prev = prevTime; self2.curr = curr; prevTime = curr; args[0] = createDebug.coerce(args[0]); if (typeof args[0] !== "string") { args.unshift("%O"); } let index = 0; args[0] = args[0].replace(/%([a-zA-Z%])/g, (match2, format) => { if (match2 === "%%") { return "%"; } index++; const formatter = createDebug.formatters[format]; if (typeof formatter === "function") { const val = args[index]; match2 = formatter.call(self2, val); args.splice(index, 1); index--; } return match2; }); createDebug.formatArgs.call(self2, args); const logFn = self2.log || createDebug.log; logFn.apply(self2, args); } __name(debug3, "debug"); debug3.namespace = namespace; debug3.useColors = createDebug.useColors(); debug3.color = createDebug.selectColor(namespace); debug3.extend = extend3; debug3.destroy = createDebug.destroy; Object.defineProperty(debug3, "enabled", { enumerable: true, configurable: false, get: /* @__PURE__ */ __name(() => { if (enableOverride !== null) { return enableOverride; } if (namespacesCache !== createDebug.namespaces) { namespacesCache = createDebug.namespaces; enabledCache = createDebug.enabled(namespace); } return enabledCache; }, "get"), set: /* @__PURE__ */ __name((v2) => { enableOverride = v2; }, "set") }); if (typeof createDebug.init === "function") { createDebug.init(debug3); } return debug3; } __name(createDebug, "createDebug"); function extend3(namespace, delimiter) { const newDebug = createDebug(this.namespace + (typeof delimiter === "undefined" ? ":" : delimiter) + namespace); newDebug.log = this.log; return newDebug; } __name(extend3, "extend"); function enable(namespaces) { createDebug.save(namespaces); createDebug.namespaces = namespaces; createDebug.names = []; createDebug.skips = []; const split = (typeof namespaces === "string" ? namespaces : "").trim().replace(/\s+/g, ",").split(",").filter(Boolean); for (const ns of split) { if (ns[0] === "-") { createDebug.skips.push(ns.slice(1)); } else { createDebug.names.push(ns); } } } __name(enable, "enable"); function matchesTemplate(search, template) { let searchIndex = 0; let templateIndex = 0; let starIndex = -1; let matchIndex = 0; while (searchIndex < search.length) { if (templateIndex < template.length && (template[templateIndex] === search[searchIndex] || template[templateIndex] === "*")) { if (template[templateIndex] === "*") { starIndex = templateIndex; matchIndex = searchIndex; templateIndex++; } else { searchIndex++; templateIndex++; } } else if (starIndex !== -1) { templateIndex = starIndex + 1; matchIndex++; searchIndex = matchIndex; } else { return false; } } while (templateIndex < template.length && template[templateIndex] === "*") { templateIndex++; } return templateIndex === template.length; } __name(matchesTemplate, "matchesTemplate"); function disable() { const namespaces = [ ...createDebug.names, ...createDebug.skips.map((namespace) => "-" + namespace) ].join(","); createDebug.enable(""); return namespaces; } __name(disable, "disable"); function enabled(name) { for (const skip of createDebug.skips) { if (matchesTemplate(name, skip)) { return false; } } for (const ns of createDebug.names) { if (matchesTemplate(name, ns)) { return true; } } return false; } __name(enabled, "enabled"); function coerce2(val) { if (val instanceof Error) { return val.stack || val.message; } return val; } __name(coerce2, "coerce"); function destroy() { console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."); } __name(destroy, "destroy"); createDebug.enable(createDebug.load()); return createDebug; } __name(setup, "setup"); module2.exports = setup; } }); // ../../node_modules/debug/src/browser.js var require_browser2 = __commonJS({ "../../node_modules/debug/src/browser.js"(exports, module2) { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); exports.formatArgs = formatArgs; exports.save = save; exports.load = load; exports.useColors = useColors; exports.storage = localstorage(); exports.destroy = /* @__PURE__ */ (() => { let warned = false; return () => { if (!warned) { warned = true; console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."); } }; })(); exports.colors = [ "#0000CC", "#0000FF", "#0033CC", "#0033FF", "#0066CC", "#0066FF", "#0099CC", "#0099FF", "#00CC00", "#00CC33", "#00CC66", "#00CC99", "#00CCCC", "#00CCFF", "#3300CC", "#3300FF", "#3333CC", "#3333FF", "#3366CC", "#3366FF", "#3399CC", "#3399FF", "#33CC00", "#33CC33", "#33CC66", "#33CC99", "#33CCCC", "#33CCFF", "#6600CC", "#6600FF", "#6633CC", "#6633FF", "#66CC00", "#66CC33", "#9900CC", "#9900FF", "#9933CC", "#9933FF", "#99CC00", "#99CC33", "#CC0000", "#CC0033", "#CC0066", "#CC0099", "#CC00CC", "#CC00FF", "#CC3300", "#CC3333", "#CC3366", "#CC3399", "#CC33CC", "#CC33FF", "#CC6600", "#CC6633", "#CC9900", "#CC9933", "#CCCC00", "#CCCC33", "#FF0000", "#FF0033", "#FF0066", "#FF0099", "#FF00CC", "#FF00FF", "#FF3300", "#FF3333", "#FF3366", "#FF3399", "#FF33CC", "#FF33FF", "#FF6600", "#FF6633", "#FF9900", "#FF9933", "#FFCC00", "#FFCC33" ]; function useColors() { if (typeof window !== "undefined" && window.process && (window.process.type === "renderer" || window.process.__nwjs)) { return true; } if (typeof navigator !== "undefined" && "Cloudflare-Workers" && "Cloudflare-Workers".toLowerCase().match(/(edge|trident)\/(\d+)/)) { return false; } let m; return typeof document !== "undefined" && document.documentElement && document.documentElement.style && document.documentElement.style.WebkitAppearance || // Is firebug? http://stackoverflow.com/a/398120/376773 typeof window !== "undefined" && window.console && (window.console.firebug || window.console.exception && window.console.table) || // Is firefox >= v31? // https://developer.mozilla.org/en-US/docs/Tools/Web_Console#Styling_messages typeof navigator !== "undefined" && "Cloudflare-Workers" && (m = "Cloudflare-Workers".toLowerCase().match(/firefox\/(\d+)/)) && parseInt(m[1], 10) >= 31 || // Double check webkit in userAgent just in case we are in a worker typeof navigator !== "undefined" && "Cloudflare-Workers" && "Cloudflare-Workers".toLowerCase().match(/applewebkit\/(\d+)/); } __name(useColors, "useColors"); function formatArgs(args) { args[0] = (this.useColors ? "%c" : "") + this.namespace + (this.useColors ? " %c" : " ") + args[0] + (this.useColors ? "%c " : " ") + "+" + module2.exports.humanize(this.diff); if (!this.useColors) { return; } const c = "color: " + this.color; args.splice(1, 0, c, "color: inherit"); let index = 0; let lastC = 0; args[0].replace(/%[a-zA-Z%]/g, (match2) => { if (match2 === "%%") { return; } index++; if (match2 === "%c") { lastC = index; } }); args.splice(lastC, 0, c); } __name(formatArgs, "formatArgs"); exports.log = console.debug || console.log || (() => { }); function save(namespaces) { try { if (namespaces) { exports.storage.setItem("debug", namespaces); } else { exports.storage.removeItem("debug"); } } catch (error50) { } } __name(save, "save"); function load() { let r; try { r = exports.storage.getItem("debug") || exports.storage.getItem("DEBUG"); } catch (error50) { } if (!r && typeof process !== "undefined" && "env" in process) { r = process.env.DEBUG; } return r; } __name(load, "load"); function localstorage() { try { return localStorage; } catch (error50) { } } __name(localstorage, "localstorage"); module2.exports = require_common()(exports); var { formatters } = module2.exports; formatters.j = function(v2) { try { return JSON.stringify(v2); } catch (error50) { return "[UnexpectedJSONParseError]: " + error50.message; } }; } }); // ../../node_modules/ioredis/built/utils/debug.js var require_debug = __commonJS({ "../../node_modules/ioredis/built/utils/debug.js"(exports) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); Object.defineProperty(exports, "__esModule", { value: true }); exports.genRedactedString = exports.getStringValue = exports.MAX_ARGUMENT_LENGTH = void 0; var debug_1 = require_browser2(); var MAX_ARGUMENT_LENGTH = 200; exports.MAX_ARGUMENT_LENGTH = MAX_ARGUMENT_LENGTH; var NAMESPACE_PREFIX = "ioredis"; function getStringValue(v2) { if (v2 === null) { return; } switch (typeof v2) { case "boolean": return; case "number": return; case "object": if (Buffer.isBuffer(v2)) { return v2.toString("hex"); } if (Array.isArray(v2)) { return v2.join(","); } try { return JSON.stringify(v2); } catch (e) { return; } case "string": return v2; } } __name(getStringValue, "getStringValue"); exports.getStringValue = getStringValue; function genRedactedString(str, maxLen) { const { length } = str; return length <= maxLen ? str : str.slice(0, maxLen) + ' ... '; } __name(genRedactedString, "genRedactedString"); exports.genRedactedString = genRedactedString; function genDebugFunction(namespace) { const fn = (0, debug_1.default)(`${NAMESPACE_PREFIX}:${namespace}`); function wrappedDebug(...args) { if (!fn.enabled) { return; } for (let i = 1; i < args.length; i++) { const str = getStringValue(args[i]); if (typeof str === "string" && str.length > MAX_ARGUMENT_LENGTH) { args[i] = genRedactedString(str, MAX_ARGUMENT_LENGTH); } } return fn.apply(null, args); } __name(wrappedDebug, "wrappedDebug"); Object.defineProperties(wrappedDebug, { namespace: { get() { return fn.namespace; } }, enabled: { get() { return fn.enabled; } }, destroy: { get() { return fn.destroy; } }, log: { get() { return fn.log; }, set(l) { fn.log = l; } } }); return wrappedDebug; } __name(genDebugFunction, "genDebugFunction"); exports.default = genDebugFunction; } }); // ../../node_modules/ioredis/built/constants/TLSProfiles.js var require_TLSProfiles = __commonJS({ "../../node_modules/ioredis/built/constants/TLSProfiles.js"(exports) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); Object.defineProperty(exports, "__esModule", { value: true }); var RedisCloudCA = `-----BEGIN CERTIFICATE----- MIIDTzCCAjegAwIBAgIJAKSVpiDswLcwMA0GCSqGSIb3DQEBBQUAMD4xFjAUBgNV BAoMDUdhcmFudGlhIERhdGExJDAiBgNVBAMMG1NTTCBDZXJ0aWZpY2F0aW9uIEF1 dGhvcml0eTAeFw0xMzEwMDExMjE0NTVaFw0yMzA5MjkxMjE0NTVaMD4xFjAUBgNV BAoMDUdhcmFudGlhIERhdGExJDAiBgNVBAMMG1NTTCBDZXJ0aWZpY2F0aW9uIEF1 dGhvcml0eTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALZqkh/DczWP JnxnHLQ7QL0T4B4CDKWBKCcisriGbA6ZePWVNo4hfKQC6JrzfR+081NeD6VcWUiz rmd+jtPhIY4c+WVQYm5PKaN6DT1imYdxQw7aqO5j2KUCEh/cznpLxeSHoTxlR34E QwF28Wl3eg2vc5ct8LjU3eozWVk3gb7alx9mSA2SgmuX5lEQawl++rSjsBStemY2 BDwOpAMXIrdEyP/cVn8mkvi/BDs5M5G+09j0gfhyCzRWMQ7Hn71u1eolRxwVxgi3 TMn+/vTaFSqxKjgck6zuAYjBRPaHe7qLxHNr1So/Mc9nPy+3wHebFwbIcnUojwbp 4nctkWbjb2cCAwEAAaNQME4wHQYDVR0OBBYEFP1whtcrydmW3ZJeuSoKZIKjze3w MB8GA1UdIwQYMBaAFP1whtcrydmW3ZJeuSoKZIKjze3wMAwGA1UdEwQFMAMBAf8w DQYJKoZIhvcNAQEFBQADggEBAG2erXhwRAa7+ZOBs0B6X57Hwyd1R4kfmXcs0rta lbPpvgULSiB+TCbf3EbhJnHGyvdCY1tvlffLjdA7HJ0PCOn+YYLBA0pTU/dyvrN6 Su8NuS5yubnt9mb13nDGYo1rnt0YRfxN+8DM3fXIVr038A30UlPX2Ou1ExFJT0MZ uFKY6ZvLdI6/1cbgmguMlAhM+DhKyV6Sr5699LM3zqeI816pZmlREETYkGr91q7k BpXJu/dtHaGxg1ZGu6w/PCsYGUcECWENYD4VQPd8N32JjOfu6vEgoEAwfPP+3oGp Z4m3ewACcWOAenqflb+cQYC4PsF7qbXDmRaWrbKntOlZ3n0= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIGMTCCBBmgAwIBAgICEAAwDQYJKoZIhvcNAQELBQAwajELMAkGA1UEBhMCVVMx CzAJBgNVBAgMAkNBMQswCQYDVQQHDAJDQTESMBAGA1UECgwJUmVkaXNMYWJzMS0w KwYDVQQDDCRSZWRpc0xhYnMgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwHhcN MTgwMjI1MTUzNzM3WhcNMjgwMjIzMTUzNzM3WjBfMQswCQYDVQQGEwJVUzELMAkG A1UECAwCQ0ExEjAQBgNVBAoMCVJlZGlzTGFiczEvMC0GA1UEAwwmUkNQIEludGVy bWVkaWF0ZSBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUA A4ICDwAwggIKAoICAQDf9dqbxc8Bq7Ctq9rWcxrGNKKHivqLAFpPq02yLPx6fsOv Tq7GsDChAYBBc4v7Y2Ap9RD5Vs3dIhEANcnolf27QwrG9RMnnvzk8pCvp1o6zSU4 VuOE1W66/O1/7e2rVxyrnTcP7UgK43zNIXu7+tiAqWsO92uSnuMoGPGpeaUm1jym hjWKtkAwDFSqvHY+XL5qDVBEjeUe+WHkYUg40cAXjusAqgm2hZt29c2wnVrxW25W P0meNlzHGFdA2AC5z54iRiqj57dTfBTkHoBczQxcyw6hhzxZQ4e5I5zOKjXXEhZN r0tA3YC14CTabKRus/JmZieyZzRgEy2oti64tmLYTqSlAD78pRL40VNoaSYetXLw hhNsXCHgWaY6d5bLOc/aIQMAV5oLvZQKvuXAF1IDmhPA+bZbpWipp0zagf1P1H3s UzsMdn2KM0ejzgotbtNlj5TcrVwpmvE3ktvUAuA+hi3FkVx1US+2Gsp5x4YOzJ7u P1WPk6ShF0JgnJH2ILdj6kttTWwFzH17keSFICWDfH/+kM+k7Y1v3EXMQXE7y0T9 MjvJskz6d/nv+sQhY04xt64xFMGTnZjlJMzfQNi7zWFLTZnDD0lPowq7l3YiPoTT t5Xky83lu0KZsZBo0WlWaDG00gLVdtRgVbcuSWxpi5BdLb1kRab66JptWjxwXQID AQABo4HrMIHoMDoGA1UdHwQzMDEwL6AtoCuGKWh0dHBzOi8vcmwtY2Etc2VydmVy LnJlZGlzbGFicy5jb20vdjEvY3JsMEYGCCsGAQUFBwEBBDowODA2BggrBgEFBQcw AYYqaHR0cHM6Ly9ybC1jYS1zZXJ2ZXIucmVkaXNsYWJzLmNvbS92MS9vY3NwMB0G A1UdDgQWBBQHar5OKvQUpP2qWt6mckzToeCOHDAfBgNVHSMEGDAWgBQi42wH6hM4 L2sujEvLM0/u8lRXTzASBgNVHRMBAf8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIB hjANBgkqhkiG9w0BAQsFAAOCAgEAirEn/iTsAKyhd+pu2W3Z5NjCko4NPU0EYUbr AP7+POK2rzjIrJO3nFYQ/LLuC7KCXG+2qwan2SAOGmqWst13Y+WHp44Kae0kaChW vcYLXXSoGQGC8QuFSNUdaeg3RbMDYFT04dOkqufeWVccoHVxyTSg9eD8LZuHn5jw 7QDLiEECBmIJHk5Eeo2TAZrx4Yx6ufSUX5HeVjlAzqwtAqdt99uCJ/EL8bgpWbe+ XoSpvUv0SEC1I1dCAhCKAvRlIOA6VBcmzg5Am12KzkqTul12/VEFIgzqu0Zy2Jbc AUPrYVu/+tOGXQaijy7YgwH8P8n3s7ZeUa1VABJHcxrxYduDDJBLZi+MjheUDaZ1 jQRHYevI2tlqeSBqdPKG4zBY5lS0GiAlmuze5oENt0P3XboHoZPHiqcK3VECgTVh /BkJcuudETSJcZDmQ8YfoKfBzRQNg2sv/hwvUv73Ss51Sco8GEt2lD8uEdib1Q6z zDT5lXJowSzOD5ZA9OGDjnSRL+2riNtKWKEqvtEG3VBJoBzu9GoxbAc7wIZLxmli iF5a/Zf5X+UXD3s4TMmy6C4QZJpAA2egsSQCnraWO2ULhh7iXMysSkF/nzVfZn43 iqpaB8++9a37hWq14ZmOv0TJIDz//b2+KC4VFXWQ5W5QC6whsjT+OlG4p5ZYG0jo 616pxqo= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIFujCCA6KgAwIBAgIJAJ1aTT1lu2ScMA0GCSqGSIb3DQEBCwUAMGoxCzAJBgNV BAYTAlVTMQswCQYDVQQIDAJDQTELMAkGA1UEBwwCQ0ExEjAQBgNVBAoMCVJlZGlz TGFiczEtMCsGA1UEAwwkUmVkaXNMYWJzIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9y aXR5MB4XDTE4MDIyNTE1MjA0MloXDTM4MDIyMDE1MjA0MlowajELMAkGA1UEBhMC VVMxCzAJBgNVBAgMAkNBMQswCQYDVQQHDAJDQTESMBAGA1UECgwJUmVkaXNMYWJz MS0wKwYDVQQDDCRSZWRpc0xhYnMgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkw ggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDLEjXy7YrbN5Waau5cd6g1 G5C2tMmeTpZ0duFAPxNU4oE3RHS5gGiok346fUXuUxbZ6QkuzeN2/2Z+RmRcJhQY Dm0ZgdG4x59An1TJfnzKKoWj8ISmoHS/TGNBdFzXV7FYNLBuqZouqePI6ReC6Qhl pp45huV32Q3a6IDrrvx7Wo5ZczEQeFNbCeCOQYNDdTmCyEkHqc2AGo8eoIlSTutT ULOC7R5gzJVTS0e1hesQ7jmqHjbO+VQS1NAL4/5K6cuTEqUl+XhVhPdLWBXJQ5ag 54qhX4v+ojLzeU1R/Vc6NjMvVtptWY6JihpgplprN0Yh2556ewcXMeturcKgXfGJ xeYzsjzXerEjrVocX5V8BNrg64NlifzTMKNOOv4fVZszq1SIHR8F9ROrqiOdh8iC JpUbLpXH9hWCSEO6VRMB2xJoKu3cgl63kF30s77x7wLFMEHiwsQRKxooE1UhgS9K 2sO4TlQ1eWUvFvHSTVDQDlGQ6zu4qjbOpb3Q8bQwoK+ai2alkXVR4Ltxe9QlgYK3 StsnPhruzZGA0wbXdpw0bnM+YdlEm5ffSTpNIfgHeaa7Dtb801FtA71ZlH7A6TaI SIQuUST9EKmv7xrJyx0W1pGoPOLw5T029aTjnICSLdtV9bLwysrLhIYG5bnPq78B cS+jZHFGzD7PUVGQD01nOQIDAQABo2MwYTAdBgNVHQ4EFgQUIuNsB+oTOC9rLoxL yzNP7vJUV08wHwYDVR0jBBgwFoAUIuNsB+oTOC9rLoxLyzNP7vJUV08wDwYDVR0T AQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAYYwDQYJKoZIhvcNAQELBQADggIBAHfg z5pMNUAKdMzK1aS1EDdK9yKz4qicILz5czSLj1mC7HKDRy8cVADUxEICis++CsCu rYOvyCVergHQLREcxPq4rc5Nq1uj6J6649NEeh4WazOOjL4ZfQ1jVznMbGy+fJm3 3Hoelv6jWRG9iqeJZja7/1s6YC6bWymI/OY1e4wUKeNHAo+Vger7MlHV+RuabaX+ hSJ8bJAM59NCM7AgMTQpJCncrcdLeceYniGy5Q/qt2b5mJkQVkIdy4TPGGB+AXDJ D0q3I/JDRkDUFNFdeW0js7fHdsvCR7O3tJy5zIgEV/o/BCkmJVtuwPYOrw/yOlKj TY/U7ATAx9VFF6/vYEOMYSmrZlFX+98L6nJtwDqfLB5VTltqZ4H/KBxGE3IRSt9l FXy40U+LnXzhhW+7VBAvyYX8GEXhHkKU8Gqk1xitrqfBXY74xKgyUSTolFSfFVgj mcM/X4K45bka+qpkj7Kfv/8D4j6aZekwhN2ly6hhC1SmQ8qjMjpG/mrWOSSHZFmf ybu9iD2AYHeIOkshIl6xYIa++Q/00/vs46IzAbQyriOi0XxlSMMVtPx0Q3isp+ji n8Mq9eOuxYOEQ4of8twUkUDd528iwGtEdwf0Q01UyT84S62N8AySl1ZBKXJz6W4F UhWfa/HQYOAPDdEjNgnVwLI23b8t0TozyCWw7q8h -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIEjzCCA3egAwIBAgIQe55B/ALCKJDZtdNT8kD6hTANBgkqhkiG9w0BAQsFADBM MSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSMzETMBEGA1UEChMKR2xv YmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjAeFw0yMjAxMjYxMjAwMDBaFw0y NTAxMjYwMDAwMDBaMFgxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWdu IG52LXNhMS4wLAYDVQQDEyVHbG9iYWxTaWduIEF0bGFzIFIzIE9WIFRMUyBDQSAy MDIyIFEyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmGmg1LW9b7Lf 8zDD83yBDTEkt+FOxKJZqF4veWc5KZsQj9HfnUS2e5nj/E+JImlGPsQuoiosLuXD BVBNAMcUFa11buFMGMeEMwiTmCXoXRrXQmH0qjpOfKgYc5gHG3BsRGaRrf7VR4eg ofNMG9wUBw4/g/TT7+bQJdA4NfE7Y4d5gEryZiBGB/swaX6Jp/8MF4TgUmOWmalK dZCKyb4sPGQFRTtElk67F7vU+wdGcrcOx1tDcIB0ncjLPMnaFicagl+daWGsKqTh counQb6QJtYHa91KvCfKWocMxQ7OIbB5UARLPmC4CJ1/f8YFm35ebfzAeULYdGXu jE9CLor0OwIDAQABo4IBXzCCAVswDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQG CCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQW BBSH5Zq7a7B/t95GfJWkDBpA8HHqdjAfBgNVHSMEGDAWgBSP8Et/qC5FJK5NUPpj move4t0bvDB7BggrBgEFBQcBAQRvMG0wLgYIKwYBBQUHMAGGImh0dHA6Ly9vY3Nw Mi5nbG9iYWxzaWduLmNvbS9yb290cjMwOwYIKwYBBQUHMAKGL2h0dHA6Ly9zZWN1 cmUuZ2xvYmFsc2lnbi5jb20vY2FjZXJ0L3Jvb3QtcjMuY3J0MDYGA1UdHwQvMC0w K6ApoCeGJWh0dHA6Ly9jcmwuZ2xvYmFsc2lnbi5jb20vcm9vdC1yMy5jcmwwIQYD VR0gBBowGDAIBgZngQwBAgIwDAYKKwYBBAGgMgoBAjANBgkqhkiG9w0BAQsFAAOC AQEAKRic9/f+nmhQU/wz04APZLjgG5OgsuUOyUEZjKVhNGDwxGTvKhyXGGAMW2B/ 3bRi+aElpXwoxu3pL6fkElbX3B0BeS5LoDtxkyiVEBMZ8m+sXbocwlPyxrPbX6mY 0rVIvnuUeBH8X0L5IwfpNVvKnBIilTbcebfHyXkPezGwz7E1yhUULjJFm2bt0SdX y+4X/WeiiYIv+fTVgZZgl+/2MKIsu/qdBJc3f3TvJ8nz+Eax1zgZmww+RSQWeOj3 15Iw6Z5FX+NwzY/Ab+9PosR5UosSeq+9HhtaxZttXG1nVh+avYPGYddWmiMT90J5 ZgKnO/Fx2hBgTxhOTMYaD312kg== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDXzCCAkegAwIBAgILBAAAAAABIVhTCKIwDQYJKoZIhvcNAQELBQAwTDEgMB4G A1UECxMXR2xvYmFsU2lnbiBSb290IENBIC0gUjMxEzARBgNVBAoTCkdsb2JhbFNp Z24xEzARBgNVBAMTCkdsb2JhbFNpZ24wHhcNMDkwMzE4MTAwMDAwWhcNMjkwMzE4 MTAwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSMzETMBEG A1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjCCASIwDQYJKoZI hvcNAQEBBQADggEPADCCAQoCggEBAMwldpB5BngiFvXAg7aEyiie/QV2EcWtiHL8 RgJDx7KKnQRfJMsuS+FggkbhUqsMgUdwbN1k0ev1LKMPgj0MK66X17YUhhB5uzsT gHeMCOFJ0mpiLx9e+pZo34knlTifBtc+ycsmWQ1z3rDI6SYOgxXG71uL0gRgykmm KPZpO/bLyCiR5Z2KYVc3rHQU3HTgOu5yLy6c+9C7v/U9AOEGM+iCK65TpjoWc4zd QQ4gOsC0p6Hpsk+QLjJg6VfLuQSSaGjlOCZgdbKfd/+RFO+uIEn8rUAVSNECMWEZ XriX7613t2Saer9fwRPvm2L7DWzgVGkWqQPabumDk3F2xmmFghcCAwEAAaNCMEAw DgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFI/wS3+o LkUkrk1Q+mOai97i3Ru8MA0GCSqGSIb3DQEBCwUAA4IBAQBLQNvAUKr+yAzv95ZU RUm7lgAJQayzE4aGKAczymvmdLm6AC2upArT9fHxD4q/c2dKg8dEe3jgr25sbwMp jjM5RcOO5LlXbKr8EpbsU8Yt5CRsuZRj+9xTaGdWPoO4zzUhw8lo/s7awlOqzJCK 6fBdRoyV3XpYKBovHd7NADdBj+1EbddTKJd+82cEHhXXipa0095MJ6RMG3NzdvQX mcIfeg7jLQitChws/zyrVQ4PkX4268NXSb7hLi18YIvDQVETI53O9zJrlAGomecs Mx86OyXShkDOOyyGeMlhLxS67ttVb9+E7gUJTb0o2HLO02JQZR7rkpeDMdmztcpH WD9f -----END CERTIFICATE-----`; var TLSProfiles = { RedisCloudFixed: { ca: RedisCloudCA }, RedisCloudFlexible: { ca: RedisCloudCA } }; exports.default = TLSProfiles; } }); // ../../node_modules/ioredis/built/utils/index.js var require_utils2 = __commonJS({ "../../node_modules/ioredis/built/utils/index.js"(exports) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); Object.defineProperty(exports, "__esModule", { value: true }); exports.noop = exports.defaults = exports.Debug = exports.getPackageMeta = exports.zipMap = exports.CONNECTION_CLOSED_ERROR_MSG = exports.shuffle = exports.sample = exports.resolveTLSProfile = exports.parseURL = exports.optimizeErrorStack = exports.toArg = exports.convertMapToArray = exports.convertObjectToArray = exports.timeout = exports.packObject = exports.isInt = exports.wrapMultiResult = exports.convertBufferToString = void 0; var fs_1 = require_fs(); var path_1 = require_path(); var url_1 = require_url(); var lodash_1 = require_lodash3(); Object.defineProperty(exports, "defaults", { enumerable: true, get: /* @__PURE__ */ __name(function() { return lodash_1.defaults; }, "get") }); Object.defineProperty(exports, "noop", { enumerable: true, get: /* @__PURE__ */ __name(function() { return lodash_1.noop; }, "get") }); var debug_1 = require_debug(); exports.Debug = debug_1.default; var TLSProfiles_1 = require_TLSProfiles(); function convertBufferToString(value, encoding) { if (value instanceof Buffer) { return value.toString(encoding); } if (Array.isArray(value)) { const length = value.length; const res = Array(length); for (let i = 0; i < length; ++i) { res[i] = value[i] instanceof Buffer && encoding === "utf8" ? value[i].toString() : convertBufferToString(value[i], encoding); } return res; } return value; } __name(convertBufferToString, "convertBufferToString"); exports.convertBufferToString = convertBufferToString; function wrapMultiResult(arr) { if (!arr) { return null; } const result = []; const length = arr.length; for (let i = 0; i < length; ++i) { const item = arr[i]; if (item instanceof Error) { result.push([item]); } else { result.push([null, item]); } } return result; } __name(wrapMultiResult, "wrapMultiResult"); exports.wrapMultiResult = wrapMultiResult; function isInt(value) { const x = parseFloat(value); return !isNaN(value) && (x | 0) === x; } __name(isInt, "isInt"); exports.isInt = isInt; function packObject(array2) { const result = {}; const length = array2.length; for (let i = 1; i < length; i += 2) { result[array2[i - 1]] = array2[i]; } return result; } __name(packObject, "packObject"); exports.packObject = packObject; function timeout(callback, timeout2) { let timer = null; const run2 = /* @__PURE__ */ __name(function() { if (timer) { clearTimeout(timer); timer = null; callback.apply(this, arguments); } }, "run"); timer = setTimeout(run2, timeout2, new Error("timeout")); return run2; } __name(timeout, "timeout"); exports.timeout = timeout; function convertObjectToArray(obj) { const result = []; const keys = Object.keys(obj); for (let i = 0, l = keys.length; i < l; i++) { result.push(keys[i], obj[keys[i]]); } return result; } __name(convertObjectToArray, "convertObjectToArray"); exports.convertObjectToArray = convertObjectToArray; function convertMapToArray(map2) { const result = []; let pos = 0; map2.forEach(function(value, key) { result[pos] = key; result[pos + 1] = value; pos += 2; }); return result; } __name(convertMapToArray, "convertMapToArray"); exports.convertMapToArray = convertMapToArray; function toArg(arg) { if (arg === null || typeof arg === "undefined") { return ""; } return String(arg); } __name(toArg, "toArg"); exports.toArg = toArg; function optimizeErrorStack(error50, friendlyStack, filterPath) { const stacks = friendlyStack.split("\n"); let lines = ""; let i; for (i = 1; i < stacks.length; ++i) { if (stacks[i].indexOf(filterPath) === -1) { break; } } for (let j = i; j < stacks.length; ++j) { lines += "\n" + stacks[j]; } if (error50.stack) { const pos = error50.stack.indexOf("\n"); error50.stack = error50.stack.slice(0, pos) + lines; } return error50; } __name(optimizeErrorStack, "optimizeErrorStack"); exports.optimizeErrorStack = optimizeErrorStack; function parseURL(url2) { if (isInt(url2)) { return { port: url2 }; } let parsed = (0, url_1.parse)(url2, true, true); if (!parsed.slashes && url2[0] !== "/") { url2 = "//" + url2; parsed = (0, url_1.parse)(url2, true, true); } const options = parsed.query || {}; const result = {}; if (parsed.auth) { const index = parsed.auth.indexOf(":"); result.username = index === -1 ? parsed.auth : parsed.auth.slice(0, index); result.password = index === -1 ? "" : parsed.auth.slice(index + 1); } if (parsed.pathname) { if (parsed.protocol === "redis:" || parsed.protocol === "rediss:") { if (parsed.pathname.length > 1) { result.db = parsed.pathname.slice(1); } } else { result.path = parsed.pathname; } } if (parsed.host) { result.host = parsed.hostname; } if (parsed.port) { result.port = parsed.port; } if (typeof options.family === "string") { const intFamily = Number.parseInt(options.family, 10); if (!Number.isNaN(intFamily)) { result.family = intFamily; } } (0, lodash_1.defaults)(result, options); return result; } __name(parseURL, "parseURL"); exports.parseURL = parseURL; function resolveTLSProfile(options) { let tls = options === null || options === void 0 ? void 0 : options.tls; if (typeof tls === "string") tls = { profile: tls }; const profile3 = TLSProfiles_1.default[tls === null || tls === void 0 ? void 0 : tls.profile]; if (profile3) { tls = Object.assign({}, profile3, tls); delete tls.profile; options = Object.assign({}, options, { tls }); } return options; } __name(resolveTLSProfile, "resolveTLSProfile"); exports.resolveTLSProfile = resolveTLSProfile; function sample(array2, from = 0) { const length = array2.length; if (from >= length) { return null; } return array2[from + Math.floor(Math.random() * (length - from))]; } __name(sample, "sample"); exports.sample = sample; function shuffle(array2) { let counter = array2.length; while (counter > 0) { const index = Math.floor(Math.random() * counter); counter--; [array2[counter], array2[index]] = [array2[index], array2[counter]]; } return array2; } __name(shuffle, "shuffle"); exports.shuffle = shuffle; exports.CONNECTION_CLOSED_ERROR_MSG = "Connection is closed."; function zipMap(keys, values) { const map2 = /* @__PURE__ */ new Map(); keys.forEach((key, index) => { map2.set(key, values[index]); }); return map2; } __name(zipMap, "zipMap"); exports.zipMap = zipMap; var cachedPackageMeta = null; async function getPackageMeta() { if (cachedPackageMeta) { return cachedPackageMeta; } try { const filePath = (0, path_1.resolve)(__dirname, "..", "..", "package.json"); const data = await fs_1.promises.readFile(filePath, "utf8"); const parsed = JSON.parse(data); cachedPackageMeta = { version: parsed.version }; return cachedPackageMeta; } catch (err) { cachedPackageMeta = { version: "error-fetching-version" }; return cachedPackageMeta; } } __name(getPackageMeta, "getPackageMeta"); exports.getPackageMeta = getPackageMeta; } }); // ../../node_modules/ioredis/built/utils/argumentParsers.js var require_argumentParsers = __commonJS({ "../../node_modules/ioredis/built/utils/argumentParsers.js"(exports) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); Object.defineProperty(exports, "__esModule", { value: true }); exports.parseBlockOption = exports.parseSecondsArgument = void 0; var parseNumberArgument = /* @__PURE__ */ __name((arg) => { if (typeof arg === "number") { return arg; } if (Buffer.isBuffer(arg)) { return parseNumberArgument(arg.toString()); } if (typeof arg === "string") { const value = Number(arg); return Number.isFinite(value) ? value : void 0; } return void 0; }, "parseNumberArgument"); var parseStringArgument = /* @__PURE__ */ __name((arg) => { if (typeof arg === "string") { return arg; } if (Buffer.isBuffer(arg)) { return arg.toString(); } return void 0; }, "parseStringArgument"); var parseSecondsArgument = /* @__PURE__ */ __name((arg) => { const value = parseNumberArgument(arg); if (value === void 0) { return void 0; } if (value <= 0) { return 0; } return value * 1e3; }, "parseSecondsArgument"); exports.parseSecondsArgument = parseSecondsArgument; var parseBlockOption = /* @__PURE__ */ __name((args) => { for (let i = 0; i < args.length; i++) { const token = parseStringArgument(args[i]); if (token && token.toLowerCase() === "block") { const duration3 = parseNumberArgument(args[i + 1]); if (duration3 === void 0) { return void 0; } if (duration3 <= 0) { return 0; } return duration3; } } return null; }, "parseBlockOption"); exports.parseBlockOption = parseBlockOption; } }); // ../../node_modules/ioredis/built/Command.js var require_Command = __commonJS({ "../../node_modules/ioredis/built/Command.js"(exports) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); Object.defineProperty(exports, "__esModule", { value: true }); var commands_1 = require_built(); var calculateSlot = require_lib(); var standard_as_callback_1 = require_built2(); var utils_1 = require_utils2(); var argumentParsers_1 = require_argumentParsers(); var Command2 = class _Command { static { __name(this, "Command"); } /** * Creates an instance of Command. * @param name Command name * @param args An array of command arguments * @param options * @param callback The callback that handles the response. * If omit, the response will be handled via Promise */ constructor(name, args = [], options = {}, callback) { this.name = name; this.inTransaction = false; this.isResolved = false; this.transformed = false; this.replyEncoding = options.replyEncoding; this.errorStack = options.errorStack; this.args = args.flat(); this.callback = callback; this.initPromise(); if (options.keyPrefix) { const isBufferKeyPrefix = options.keyPrefix instanceof Buffer; let keyPrefixBuffer = isBufferKeyPrefix ? options.keyPrefix : null; this._iterateKeys((key) => { if (key instanceof Buffer) { if (keyPrefixBuffer === null) { keyPrefixBuffer = Buffer.from(options.keyPrefix); } return Buffer.concat([keyPrefixBuffer, key]); } else if (isBufferKeyPrefix) { return Buffer.concat([options.keyPrefix, Buffer.from(String(key))]); } return options.keyPrefix + key; }); } if (options.readOnly) { this.isReadOnly = true; } } /** * Check whether the command has the flag */ static checkFlag(flagName, commandName) { commandName = commandName.toLowerCase(); return !!this.getFlagMap()[flagName][commandName]; } static setArgumentTransformer(name, func) { this._transformer.argument[name] = func; } static setReplyTransformer(name, func) { this._transformer.reply[name] = func; } static getFlagMap() { if (!this.flagMap) { this.flagMap = Object.keys(_Command.FLAGS).reduce((map2, flagName) => { map2[flagName] = {}; _Command.FLAGS[flagName].forEach((commandName) => { map2[flagName][commandName] = true; }); return map2; }, {}); } return this.flagMap; } getSlot() { if (typeof this.slot === "undefined") { const key = this.getKeys()[0]; this.slot = key == null ? null : calculateSlot(key); } return this.slot; } getKeys() { return this._iterateKeys(); } /** * Convert command to writable buffer or string */ toWritable(_socket) { let result; const commandStr = "*" + (this.args.length + 1) + "\r\n$" + Buffer.byteLength(this.name) + "\r\n" + this.name + "\r\n"; if (this.bufferMode) { const buffers = new MixedBuffers(); buffers.push(commandStr); for (let i = 0; i < this.args.length; ++i) { const arg = this.args[i]; if (arg instanceof Buffer) { if (arg.length === 0) { buffers.push("$0\r\n\r\n"); } else { buffers.push("$" + arg.length + "\r\n"); buffers.push(arg); buffers.push("\r\n"); } } else { buffers.push("$" + Buffer.byteLength(arg) + "\r\n" + arg + "\r\n"); } } result = buffers.toBuffer(); } else { result = commandStr; for (let i = 0; i < this.args.length; ++i) { const arg = this.args[i]; result += "$" + Buffer.byteLength(arg) + "\r\n" + arg + "\r\n"; } } return result; } stringifyArguments() { for (let i = 0; i < this.args.length; ++i) { const arg = this.args[i]; if (typeof arg === "string") { } else if (arg instanceof Buffer) { this.bufferMode = true; } else { this.args[i] = (0, utils_1.toArg)(arg); } } } /** * Convert buffer/buffer[] to string/string[], * and apply reply transformer. */ transformReply(result) { if (this.replyEncoding) { result = (0, utils_1.convertBufferToString)(result, this.replyEncoding); } const transformer = _Command._transformer.reply[this.name]; if (transformer) { result = transformer(result); } return result; } /** * Set the wait time before terminating the attempt to execute a command * and generating an error. */ setTimeout(ms) { if (!this._commandTimeoutTimer) { this._commandTimeoutTimer = setTimeout(() => { if (!this.isResolved) { this.reject(new Error("Command timed out")); } }, ms); } } /** * Set a timeout for blocking commands. * When the timeout expires, the command resolves with null (matching Redis behavior). * This handles the case of undetectable network failures (e.g., docker network disconnect) * where the TCP connection becomes a zombie and no close event fires. */ setBlockingTimeout(ms) { if (ms <= 0) { return; } if (this._blockingTimeoutTimer) { clearTimeout(this._blockingTimeoutTimer); this._blockingTimeoutTimer = void 0; } const now = Date.now(); if (this._blockingDeadline === void 0) { this._blockingDeadline = now + ms; } const remaining = this._blockingDeadline - now; if (remaining <= 0) { this.resolve(null); return; } this._blockingTimeoutTimer = setTimeout(() => { if (this.isResolved) { this._blockingTimeoutTimer = void 0; return; } this._blockingTimeoutTimer = void 0; this.resolve(null); }, remaining); } /** * Extract the blocking timeout from the command arguments. * * @returns The timeout in seconds, null for indefinite blocking (timeout of 0), * or undefined if this is not a blocking command */ extractBlockingTimeout() { const args = this.args; if (!args || args.length === 0) { return void 0; } const name = this.name.toLowerCase(); if (_Command.checkFlag("LAST_ARG_TIMEOUT_COMMANDS", name)) { return (0, argumentParsers_1.parseSecondsArgument)(args[args.length - 1]); } if (_Command.checkFlag("FIRST_ARG_TIMEOUT_COMMANDS", name)) { return (0, argumentParsers_1.parseSecondsArgument)(args[0]); } if (_Command.checkFlag("BLOCK_OPTION_COMMANDS", name)) { return (0, argumentParsers_1.parseBlockOption)(args); } return void 0; } /** * Clear the command and blocking timers */ _clearTimers() { const existingTimer = this._commandTimeoutTimer; if (existingTimer) { clearTimeout(existingTimer); delete this._commandTimeoutTimer; } const blockingTimer = this._blockingTimeoutTimer; if (blockingTimer) { clearTimeout(blockingTimer); delete this._blockingTimeoutTimer; } } initPromise() { const promise2 = new Promise((resolve, reject) => { if (!this.transformed) { this.transformed = true; const transformer = _Command._transformer.argument[this.name]; if (transformer) { this.args = transformer(this.args); } this.stringifyArguments(); } this.resolve = this._convertValue(resolve); this.reject = (err) => { this._clearTimers(); if (this.errorStack) { reject((0, utils_1.optimizeErrorStack)(err, this.errorStack.stack, __dirname)); } else { reject(err); } }; }); this.promise = (0, standard_as_callback_1.default)(promise2, this.callback); } /** * Iterate through the command arguments that are considered keys. */ _iterateKeys(transform2 = (key) => key) { if (typeof this.keys === "undefined") { this.keys = []; if ((0, commands_1.exists)(this.name, { caseInsensitive: true })) { const keyIndexes = (0, commands_1.getKeyIndexes)(this.name, this.args, { nameCaseInsensitive: true }); for (const index of keyIndexes) { this.args[index] = transform2(this.args[index]); this.keys.push(this.args[index]); } } } return this.keys; } /** * Convert the value from buffer to the target encoding. */ _convertValue(resolve) { return (value) => { try { this._clearTimers(); resolve(this.transformReply(value)); this.isResolved = true; } catch (err) { this.reject(err); } return this.promise; }; } }; exports.default = Command2; Command2.FLAGS = { VALID_IN_SUBSCRIBER_MODE: [ "subscribe", "psubscribe", "unsubscribe", "punsubscribe", "ssubscribe", "sunsubscribe", "ping", "quit" ], VALID_IN_MONITOR_MODE: ["monitor", "auth"], ENTER_SUBSCRIBER_MODE: ["subscribe", "psubscribe", "ssubscribe"], EXIT_SUBSCRIBER_MODE: ["unsubscribe", "punsubscribe", "sunsubscribe"], WILL_DISCONNECT: ["quit"], HANDSHAKE_COMMANDS: ["auth", "select", "client", "readonly", "info"], IGNORE_RECONNECT_ON_ERROR: ["client"], BLOCKING_COMMANDS: [ "blpop", "brpop", "brpoplpush", "blmove", "bzpopmin", "bzpopmax", "bzmpop", "blmpop", "xread", "xreadgroup" ], LAST_ARG_TIMEOUT_COMMANDS: [ "blpop", "brpop", "brpoplpush", "blmove", "bzpopmin", "bzpopmax" ], FIRST_ARG_TIMEOUT_COMMANDS: ["bzmpop", "blmpop"], BLOCK_OPTION_COMMANDS: ["xread", "xreadgroup"] }; Command2._transformer = { argument: {}, reply: {} }; var msetArgumentTransformer = /* @__PURE__ */ __name(function(args) { if (args.length === 1) { if (args[0] instanceof Map) { return (0, utils_1.convertMapToArray)(args[0]); } if (typeof args[0] === "object" && args[0] !== null) { return (0, utils_1.convertObjectToArray)(args[0]); } } return args; }, "msetArgumentTransformer"); var hsetArgumentTransformer = /* @__PURE__ */ __name(function(args) { if (args.length === 2) { if (args[1] instanceof Map) { return [args[0]].concat((0, utils_1.convertMapToArray)(args[1])); } if (typeof args[1] === "object" && args[1] !== null) { return [args[0]].concat((0, utils_1.convertObjectToArray)(args[1])); } } return args; }, "hsetArgumentTransformer"); Command2.setArgumentTransformer("mset", msetArgumentTransformer); Command2.setArgumentTransformer("msetnx", msetArgumentTransformer); Command2.setArgumentTransformer("hset", hsetArgumentTransformer); Command2.setArgumentTransformer("hmset", hsetArgumentTransformer); Command2.setReplyTransformer("hgetall", function(result) { if (Array.isArray(result)) { const obj = {}; for (let i = 0; i < result.length; i += 2) { const key = result[i]; const value = result[i + 1]; if (key in obj) { Object.defineProperty(obj, key, { value, configurable: true, enumerable: true, writable: true }); } else { obj[key] = value; } } return obj; } return result; }); var MixedBuffers = class { static { __name(this, "MixedBuffers"); } constructor() { this.length = 0; this.items = []; } push(x) { this.length += Buffer.byteLength(x); this.items.push(x); } toBuffer() { const result = Buffer.allocUnsafe(this.length); let offset = 0; for (const item of this.items) { const length = Buffer.byteLength(item); Buffer.isBuffer(item) ? item.copy(result, offset) : result.write(item, offset, length); offset += length; } return result; } }; } }); // ../../node_modules/ioredis/built/errors/ClusterAllFailedError.js var require_ClusterAllFailedError = __commonJS({ "../../node_modules/ioredis/built/errors/ClusterAllFailedError.js"(exports) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); Object.defineProperty(exports, "__esModule", { value: true }); var redis_errors_1 = require_redis_errors(); var ClusterAllFailedError = class extends redis_errors_1.RedisError { static { __name(this, "ClusterAllFailedError"); } constructor(message2, lastNodeError) { super(message2); this.lastNodeError = lastNodeError; Error.captureStackTrace(this, this.constructor); } get name() { return this.constructor.name; } }; exports.default = ClusterAllFailedError; ClusterAllFailedError.defaultMessage = "Failed to refresh slots cache."; } }); // node-built-in-modules:stream import libDefault6 from "stream"; var require_stream = __commonJS({ "node-built-in-modules:stream"(exports, module2) { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); module2.exports = libDefault6; } }); // ../../node_modules/ioredis/built/ScanStream.js var require_ScanStream = __commonJS({ "../../node_modules/ioredis/built/ScanStream.js"(exports) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); Object.defineProperty(exports, "__esModule", { value: true }); var stream_1 = require_stream(); var ScanStream = class extends stream_1.Readable { static { __name(this, "ScanStream"); } constructor(opt) { super(opt); this.opt = opt; this._redisCursor = "0"; this._redisDrained = false; } _read() { if (this._redisDrained) { this.push(null); return; } const args = [this._redisCursor]; if (this.opt.key) { args.unshift(this.opt.key); } if (this.opt.match) { args.push("MATCH", this.opt.match); } if (this.opt.type) { args.push("TYPE", this.opt.type); } if (this.opt.count) { args.push("COUNT", String(this.opt.count)); } if (this.opt.noValues) { args.push("NOVALUES"); } this.opt.redis[this.opt.command](args, (err, res) => { if (err) { this.emit("error", err); return; } this._redisCursor = res[0] instanceof Buffer ? res[0].toString() : res[0]; if (this._redisCursor === "0") { this._redisDrained = true; } this.push(res[1]); }); } close() { this._redisDrained = true; } }; exports.default = ScanStream; } }); // ../../node_modules/ioredis/built/autoPipelining.js var require_autoPipelining = __commonJS({ "../../node_modules/ioredis/built/autoPipelining.js"(exports) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); Object.defineProperty(exports, "__esModule", { value: true }); exports.executeWithAutoPipelining = exports.getFirstValueInFlattenedArray = exports.shouldUseAutoPipelining = exports.notAllowedAutoPipelineCommands = exports.kCallbacks = exports.kExec = void 0; var lodash_1 = require_lodash3(); var calculateSlot = require_lib(); var standard_as_callback_1 = require_built2(); var commands_1 = require_built(); exports.kExec = /* @__PURE__ */ Symbol("exec"); exports.kCallbacks = /* @__PURE__ */ Symbol("callbacks"); exports.notAllowedAutoPipelineCommands = [ "auth", "info", "script", "quit", "cluster", "pipeline", "multi", "subscribe", "psubscribe", "unsubscribe", "unpsubscribe", "select", "client" ]; function executeAutoPipeline(client, slotKey) { if (client._runningAutoPipelines.has(slotKey)) { return; } if (!client._autoPipelines.has(slotKey)) { return; } client._runningAutoPipelines.add(slotKey); const pipeline = client._autoPipelines.get(slotKey); client._autoPipelines.delete(slotKey); const callbacks = pipeline[exports.kCallbacks]; pipeline[exports.kCallbacks] = null; pipeline.exec(function(err, results) { client._runningAutoPipelines.delete(slotKey); if (err) { for (let i = 0; i < callbacks.length; i++) { process.nextTick(callbacks[i], err); } } else { for (let i = 0; i < callbacks.length; i++) { process.nextTick(callbacks[i], ...results[i]); } } if (client._autoPipelines.has(slotKey)) { executeAutoPipeline(client, slotKey); } }); } __name(executeAutoPipeline, "executeAutoPipeline"); function shouldUseAutoPipelining(client, functionName, commandName) { return functionName && client.options.enableAutoPipelining && !client.isPipeline && !exports.notAllowedAutoPipelineCommands.includes(commandName) && !client.options.autoPipeliningIgnoredCommands.includes(commandName); } __name(shouldUseAutoPipelining, "shouldUseAutoPipelining"); exports.shouldUseAutoPipelining = shouldUseAutoPipelining; function getFirstValueInFlattenedArray(args) { for (let i = 0; i < args.length; i++) { const arg = args[i]; if (typeof arg === "string") { return arg; } else if (Array.isArray(arg) || (0, lodash_1.isArguments)(arg)) { if (arg.length === 0) { continue; } return arg[0]; } const flattened = [arg].flat(); if (flattened.length > 0) { return flattened[0]; } } return void 0; } __name(getFirstValueInFlattenedArray, "getFirstValueInFlattenedArray"); exports.getFirstValueInFlattenedArray = getFirstValueInFlattenedArray; function executeWithAutoPipelining(client, functionName, commandName, args, callback) { if (client.isCluster && !client.slots.length) { if (client.status === "wait") client.connect().catch(lodash_1.noop); return (0, standard_as_callback_1.default)(new Promise(function(resolve, reject) { client.delayUntilReady((err) => { if (err) { reject(err); return; } executeWithAutoPipelining(client, functionName, commandName, args, null).then(resolve, reject); }); }), callback); } const prefix = client.options.keyPrefix || ""; let slotKey = client.isCluster ? client.slots[calculateSlot(`${prefix}${getFirstValueInFlattenedArray(args)}`)].join(",") : "main"; if (client.isCluster && client.options.scaleReads !== "master") { const isReadOnly = (0, commands_1.exists)(commandName) && (0, commands_1.hasFlag)(commandName, "readonly"); slotKey += isReadOnly ? ":read" : ":write"; } if (!client._autoPipelines.has(slotKey)) { const pipeline2 = client.pipeline(); pipeline2[exports.kExec] = false; pipeline2[exports.kCallbacks] = []; client._autoPipelines.set(slotKey, pipeline2); } const pipeline = client._autoPipelines.get(slotKey); if (!pipeline[exports.kExec]) { pipeline[exports.kExec] = true; setImmediate(executeAutoPipeline, client, slotKey); } const autoPipelinePromise = new Promise(function(resolve, reject) { pipeline[exports.kCallbacks].push(function(err, value) { if (err) { reject(err); return; } resolve(value); }); if (functionName === "call") { args.unshift(commandName); } pipeline[functionName](...args); }); return (0, standard_as_callback_1.default)(autoPipelinePromise, callback); } __name(executeWithAutoPipelining, "executeWithAutoPipelining"); exports.executeWithAutoPipelining = executeWithAutoPipelining; } }); // node-built-in-modules:crypto import libDefault7 from "crypto"; var require_crypto = __commonJS({ "node-built-in-modules:crypto"(exports, module2) { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); module2.exports = libDefault7; } }); // ../../node_modules/ioredis/built/Script.js var require_Script = __commonJS({ "../../node_modules/ioredis/built/Script.js"(exports) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); Object.defineProperty(exports, "__esModule", { value: true }); var crypto_1 = require_crypto(); var Command_1 = require_Command(); var standard_as_callback_1 = require_built2(); var Script = class { static { __name(this, "Script"); } constructor(lua, numberOfKeys = null, keyPrefix = "", readOnly = false) { this.lua = lua; this.numberOfKeys = numberOfKeys; this.keyPrefix = keyPrefix; this.readOnly = readOnly; this.sha = (0, crypto_1.createHash)("sha1").update(lua).digest("hex"); const sha = this.sha; const socketHasScriptLoaded = /* @__PURE__ */ new WeakSet(); this.Command = class CustomScriptCommand extends Command_1.default { static { __name(this, "CustomScriptCommand"); } toWritable(socket) { const origReject = this.reject; this.reject = (err) => { if (err.message.indexOf("NOSCRIPT") !== -1) { socketHasScriptLoaded.delete(socket); } origReject.call(this, err); }; if (!socketHasScriptLoaded.has(socket)) { socketHasScriptLoaded.add(socket); this.name = "eval"; this.args[0] = lua; } else if (this.name === "eval") { this.name = "evalsha"; this.args[0] = sha; } return super.toWritable(socket); } }; } execute(container, args, options, callback) { if (typeof this.numberOfKeys === "number") { args.unshift(this.numberOfKeys); } if (this.keyPrefix) { options.keyPrefix = this.keyPrefix; } if (this.readOnly) { options.readOnly = true; } const evalsha = new this.Command("evalsha", [this.sha, ...args], options); evalsha.promise = evalsha.promise.catch((err) => { if (err.message.indexOf("NOSCRIPT") === -1) { throw err; } const resend = new this.Command("evalsha", [this.sha, ...args], options); const client = container.isPipeline ? container.redis : container; return client.sendCommand(resend); }); (0, standard_as_callback_1.default)(evalsha.promise, callback); return container.sendCommand(evalsha); } }; exports.default = Script; } }); // ../../node_modules/ioredis/built/utils/Commander.js var require_Commander = __commonJS({ "../../node_modules/ioredis/built/utils/Commander.js"(exports) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); Object.defineProperty(exports, "__esModule", { value: true }); var commands_1 = require_built(); var autoPipelining_1 = require_autoPipelining(); var Command_1 = require_Command(); var Script_1 = require_Script(); var Commander = class { static { __name(this, "Commander"); } constructor() { this.options = {}; this.scriptsSet = {}; this.addedBuiltinSet = /* @__PURE__ */ new Set(); } /** * Return supported builtin commands */ getBuiltinCommands() { return commands.slice(0); } /** * Create a builtin command */ createBuiltinCommand(commandName) { return { string: generateFunction(null, commandName, "utf8"), buffer: generateFunction(null, commandName, null) }; } /** * Create add builtin command */ addBuiltinCommand(commandName) { this.addedBuiltinSet.add(commandName); this[commandName] = generateFunction(commandName, commandName, "utf8"); this[commandName + "Buffer"] = generateFunction(commandName + "Buffer", commandName, null); } /** * Define a custom command using lua script */ defineCommand(name, definition) { const script = new Script_1.default(definition.lua, definition.numberOfKeys, this.options.keyPrefix, definition.readOnly); this.scriptsSet[name] = script; this[name] = generateScriptingFunction(name, name, script, "utf8"); this[name + "Buffer"] = generateScriptingFunction(name + "Buffer", name, script, null); } /** * @ignore */ sendCommand(command, stream, node) { throw new Error('"sendCommand" is not implemented'); } }; var commands = commands_1.list.filter((command) => command !== "monitor"); commands.push("sentinel"); commands.forEach(function(commandName) { Commander.prototype[commandName] = generateFunction(commandName, commandName, "utf8"); Commander.prototype[commandName + "Buffer"] = generateFunction(commandName + "Buffer", commandName, null); }); Commander.prototype.call = generateFunction("call", "utf8"); Commander.prototype.callBuffer = generateFunction("callBuffer", null); Commander.prototype.send_command = Commander.prototype.call; function generateFunction(functionName, _commandName, _encoding) { if (typeof _encoding === "undefined") { _encoding = _commandName; _commandName = null; } return function(...args) { const commandName = _commandName || args.shift(); let callback = args[args.length - 1]; if (typeof callback === "function") { args.pop(); } else { callback = void 0; } const options = { errorStack: this.options.showFriendlyErrorStack ? new Error() : void 0, keyPrefix: this.options.keyPrefix, replyEncoding: _encoding }; if (!(0, autoPipelining_1.shouldUseAutoPipelining)(this, functionName, commandName)) { return this.sendCommand( // @ts-expect-error new Command_1.default(commandName, args, options, callback) ); } return (0, autoPipelining_1.executeWithAutoPipelining)( this, functionName, commandName, // @ts-expect-error args, callback ); }; } __name(generateFunction, "generateFunction"); function generateScriptingFunction(functionName, commandName, script, encoding) { return function(...args) { const callback = typeof args[args.length - 1] === "function" ? args.pop() : void 0; const options = { replyEncoding: encoding }; if (this.options.showFriendlyErrorStack) { options.errorStack = new Error(); } if (!(0, autoPipelining_1.shouldUseAutoPipelining)(this, functionName, commandName)) { return script.execute(this, args, options, callback); } return (0, autoPipelining_1.executeWithAutoPipelining)(this, functionName, commandName, args, callback); }; } __name(generateScriptingFunction, "generateScriptingFunction"); exports.default = Commander; } }); // ../../node_modules/ioredis/built/Pipeline.js var require_Pipeline = __commonJS({ "../../node_modules/ioredis/built/Pipeline.js"(exports) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); Object.defineProperty(exports, "__esModule", { value: true }); var calculateSlot = require_lib(); var commands_1 = require_built(); var standard_as_callback_1 = require_built2(); var util_1 = require_util(); var Command_1 = require_Command(); var utils_1 = require_utils2(); var Commander_1 = require_Commander(); function generateMultiWithNodes(redis, keys) { const slot = calculateSlot(keys[0]); const target2 = redis._groupsBySlot[slot]; for (let i = 1; i < keys.length; i++) { if (redis._groupsBySlot[calculateSlot(keys[i])] !== target2) { return -1; } } return slot; } __name(generateMultiWithNodes, "generateMultiWithNodes"); var Pipeline = class extends Commander_1.default { static { __name(this, "Pipeline"); } constructor(redis) { super(); this.redis = redis; this.isPipeline = true; this.replyPending = 0; this._queue = []; this._result = []; this._transactions = 0; this._shaToScript = {}; this.isCluster = this.redis.constructor.name === "Cluster" || this.redis.isCluster; this.options = redis.options; Object.keys(redis.scriptsSet).forEach((name) => { const script = redis.scriptsSet[name]; this._shaToScript[script.sha] = script; this[name] = redis[name]; this[name + "Buffer"] = redis[name + "Buffer"]; }); redis.addedBuiltinSet.forEach((name) => { this[name] = redis[name]; this[name + "Buffer"] = redis[name + "Buffer"]; }); this.promise = new Promise((resolve, reject) => { this.resolve = resolve; this.reject = reject; }); const _this = this; Object.defineProperty(this, "length", { get: /* @__PURE__ */ __name(function() { return _this._queue.length; }, "get") }); } fillResult(value, position3) { if (this._queue[position3].name === "exec" && Array.isArray(value[1])) { const execLength = value[1].length; for (let i = 0; i < execLength; i++) { if (value[1][i] instanceof Error) { continue; } const cmd = this._queue[position3 - (execLength - i)]; try { value[1][i] = cmd.transformReply(value[1][i]); } catch (err) { value[1][i] = err; } } } this._result[position3] = value; if (--this.replyPending) { return; } if (this.isCluster) { let retriable = true; let commonError; for (let i = 0; i < this._result.length; ++i) { const error50 = this._result[i][0]; const command = this._queue[i]; if (error50) { if (command.name === "exec" && error50.message === "EXECABORT Transaction discarded because of previous errors.") { continue; } if (!commonError) { commonError = { name: error50.name, message: error50.message }; } else if (commonError.name !== error50.name || commonError.message !== error50.message) { retriable = false; break; } } else if (!command.inTransaction) { const isReadOnly = (0, commands_1.exists)(command.name, { caseInsensitive: true }) && (0, commands_1.hasFlag)(command.name, "readonly", { nameCaseInsensitive: true }); if (!isReadOnly) { retriable = false; break; } } } if (commonError && retriable) { const _this = this; const errv = commonError.message.split(" "); const queue = this._queue; let inTransaction = false; this._queue = []; for (let i = 0; i < queue.length; ++i) { if (errv[0] === "ASK" && !inTransaction && queue[i].name !== "asking" && (!queue[i - 1] || queue[i - 1].name !== "asking")) { const asking = new Command_1.default("asking"); asking.ignore = true; this.sendCommand(asking); } queue[i].initPromise(); this.sendCommand(queue[i]); inTransaction = queue[i].inTransaction; } let matched = true; if (typeof this.leftRedirections === "undefined") { this.leftRedirections = {}; } const exec = /* @__PURE__ */ __name(function() { _this.exec(); }, "exec"); const cluster = this.redis; cluster.handleError(commonError, this.leftRedirections, { moved: /* @__PURE__ */ __name(function(_slot, key) { _this.preferKey = key; if (cluster.slots[errv[1]]) { if (cluster.slots[errv[1]][0] !== key) { cluster.slots[errv[1]] = [key]; } } else { cluster.slots[errv[1]] = [key]; } cluster._groupsBySlot[errv[1]] = cluster._groupsIds[cluster.slots[errv[1]].join(";")]; cluster.refreshSlotsCache(); _this.exec(); }, "moved"), ask: /* @__PURE__ */ __name(function(_slot, key) { _this.preferKey = key; _this.exec(); }, "ask"), tryagain: exec, clusterDown: exec, connectionClosed: exec, maxRedirections: /* @__PURE__ */ __name(() => { matched = false; }, "maxRedirections"), defaults: /* @__PURE__ */ __name(() => { matched = false; }, "defaults") }); if (matched) { return; } } } let ignoredCount = 0; for (let i = 0; i < this._queue.length - ignoredCount; ++i) { if (this._queue[i + ignoredCount].ignore) { ignoredCount += 1; } this._result[i] = this._result[i + ignoredCount]; } this.resolve(this._result.slice(0, this._result.length - ignoredCount)); } sendCommand(command) { if (this._transactions > 0) { command.inTransaction = true; } const position3 = this._queue.length; command.pipelineIndex = position3; command.promise.then((result) => { this.fillResult([null, result], position3); }).catch((error50) => { this.fillResult([error50], position3); }); this._queue.push(command); return this; } addBatch(commands) { let command, commandName, args; for (let i = 0; i < commands.length; ++i) { command = commands[i]; commandName = command[0]; args = command.slice(1); this[commandName].apply(this, args); } return this; } }; exports.default = Pipeline; var multi = Pipeline.prototype.multi; Pipeline.prototype.multi = function() { this._transactions += 1; return multi.apply(this, arguments); }; var execBuffer = Pipeline.prototype.execBuffer; Pipeline.prototype.execBuffer = (0, util_1.deprecate)(function() { if (this._transactions > 0) { this._transactions -= 1; } return execBuffer.apply(this, arguments); }, "Pipeline#execBuffer: Use Pipeline#exec instead"); Pipeline.prototype.exec = function(callback) { if (this.isCluster && !this.redis.slots.length) { if (this.redis.status === "wait") this.redis.connect().catch(utils_1.noop); if (callback && !this.nodeifiedPromise) { this.nodeifiedPromise = true; (0, standard_as_callback_1.default)(this.promise, callback); } this.redis.delayUntilReady((err) => { if (err) { this.reject(err); return; } this.exec(callback); }); return this.promise; } if (this._transactions > 0) { this._transactions -= 1; return execBuffer.apply(this, arguments); } if (!this.nodeifiedPromise) { this.nodeifiedPromise = true; (0, standard_as_callback_1.default)(this.promise, callback); } if (!this._queue.length) { this.resolve([]); } let pipelineSlot; if (this.isCluster) { const sampleKeys = []; for (let i = 0; i < this._queue.length; i++) { const keys = this._queue[i].getKeys(); if (keys.length) { sampleKeys.push(keys[0]); } if (keys.length && calculateSlot.generateMulti(keys) < 0) { this.reject(new Error("All the keys in a pipeline command should belong to the same slot")); return this.promise; } } if (sampleKeys.length) { pipelineSlot = generateMultiWithNodes(this.redis, sampleKeys); if (pipelineSlot < 0) { this.reject(new Error("All keys in the pipeline should belong to the same slots allocation group")); return this.promise; } } else { pipelineSlot = Math.random() * 16384 | 0; } } const _this = this; execPipeline(); return this.promise; function execPipeline() { let writePending = _this.replyPending = _this._queue.length; let node; if (_this.isCluster) { node = { slot: pipelineSlot, redis: _this.redis.connectionPool.nodes.all[_this.preferKey] }; } let data = ""; let buffers; const stream = { isPipeline: true, destination: _this.isCluster ? node : { redis: _this.redis }, write(writable) { if (typeof writable !== "string") { if (!buffers) { buffers = []; } if (data) { buffers.push(Buffer.from(data, "utf8")); data = ""; } buffers.push(writable); } else { data += writable; } if (!--writePending) { if (buffers) { if (data) { buffers.push(Buffer.from(data, "utf8")); } stream.destination.redis.stream.write(Buffer.concat(buffers)); } else { stream.destination.redis.stream.write(data); } writePending = _this._queue.length; data = ""; buffers = void 0; } } }; for (let i = 0; i < _this._queue.length; ++i) { _this.redis.sendCommand(_this._queue[i], stream, node); } return _this.promise; } __name(execPipeline, "execPipeline"); }; } }); // ../../node_modules/ioredis/built/transaction.js var require_transaction = __commonJS({ "../../node_modules/ioredis/built/transaction.js"(exports) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); Object.defineProperty(exports, "__esModule", { value: true }); exports.addTransactionSupport = void 0; var utils_1 = require_utils2(); var standard_as_callback_1 = require_built2(); var Pipeline_1 = require_Pipeline(); function addTransactionSupport(redis) { redis.pipeline = function(commands) { const pipeline = new Pipeline_1.default(this); if (Array.isArray(commands)) { pipeline.addBatch(commands); } return pipeline; }; const { multi } = redis; redis.multi = function(commands, options) { if (typeof options === "undefined" && !Array.isArray(commands)) { options = commands; commands = null; } if (options && options.pipeline === false) { return multi.call(this); } const pipeline = new Pipeline_1.default(this); pipeline.multi(); if (Array.isArray(commands)) { pipeline.addBatch(commands); } const exec2 = pipeline.exec; pipeline.exec = function(callback) { if (this.isCluster && !this.redis.slots.length) { if (this.redis.status === "wait") this.redis.connect().catch(utils_1.noop); return (0, standard_as_callback_1.default)(new Promise((resolve, reject) => { this.redis.delayUntilReady((err) => { if (err) { reject(err); return; } this.exec(pipeline).then(resolve, reject); }); }), callback); } if (this._transactions > 0) { exec2.call(pipeline); } if (this.nodeifiedPromise) { return exec2.call(pipeline); } const promise2 = exec2.call(pipeline); return (0, standard_as_callback_1.default)(promise2.then(function(result) { const execResult = result[result.length - 1]; if (typeof execResult === "undefined") { throw new Error("Pipeline cannot be used to send any commands when the `exec()` has been called on it."); } if (execResult[0]) { execResult[0].previousErrors = []; for (let i = 0; i < result.length - 1; ++i) { if (result[i][0]) { execResult[0].previousErrors.push(result[i][0]); } } throw execResult[0]; } return (0, utils_1.wrapMultiResult)(execResult[1]); }), callback); }; const { execBuffer } = pipeline; pipeline.execBuffer = function(callback) { if (this._transactions > 0) { execBuffer.call(pipeline); } return pipeline.exec(callback); }; return pipeline; }; const { exec } = redis; redis.exec = function(callback) { return (0, standard_as_callback_1.default)(exec.call(this).then(function(results) { if (Array.isArray(results)) { results = (0, utils_1.wrapMultiResult)(results); } return results; }), callback); }; } __name(addTransactionSupport, "addTransactionSupport"); exports.addTransactionSupport = addTransactionSupport; } }); // ../../node_modules/ioredis/built/utils/applyMixin.js var require_applyMixin = __commonJS({ "../../node_modules/ioredis/built/utils/applyMixin.js"(exports) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); Object.defineProperty(exports, "__esModule", { value: true }); function applyMixin(derivedConstructor, mixinConstructor) { Object.getOwnPropertyNames(mixinConstructor.prototype).forEach((name) => { Object.defineProperty(derivedConstructor.prototype, name, Object.getOwnPropertyDescriptor(mixinConstructor.prototype, name)); }); } __name(applyMixin, "applyMixin"); exports.default = applyMixin; } }); // node-built-in-modules:dns import libDefault8 from "dns"; var require_dns = __commonJS({ "node-built-in-modules:dns"(exports, module2) { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); module2.exports = libDefault8; } }); // ../../node_modules/ioredis/built/cluster/ClusterOptions.js var require_ClusterOptions = __commonJS({ "../../node_modules/ioredis/built/cluster/ClusterOptions.js"(exports) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); Object.defineProperty(exports, "__esModule", { value: true }); exports.DEFAULT_CLUSTER_OPTIONS = void 0; var dns_1 = require_dns(); exports.DEFAULT_CLUSTER_OPTIONS = { clusterRetryStrategy: /* @__PURE__ */ __name((times) => Math.min(100 + times * 2, 2e3), "clusterRetryStrategy"), enableOfflineQueue: true, enableReadyCheck: true, scaleReads: "master", maxRedirections: 16, retryDelayOnMoved: 0, retryDelayOnFailover: 100, retryDelayOnClusterDown: 100, retryDelayOnTryAgain: 100, slotsRefreshTimeout: 1e3, useSRVRecords: false, resolveSrv: dns_1.resolveSrv, dnsLookup: dns_1.lookup, enableAutoPipelining: false, autoPipeliningIgnoredCommands: [], shardedSubscribers: false }; } }); // node-built-in-modules:net import libDefault9 from "net"; var require_net = __commonJS({ "node-built-in-modules:net"(exports, module2) { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); module2.exports = libDefault9; } }); // ../../node_modules/ioredis/built/cluster/util.js var require_util2 = __commonJS({ "../../node_modules/ioredis/built/cluster/util.js"(exports) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); Object.defineProperty(exports, "__esModule", { value: true }); exports.getConnectionName = exports.weightSrvRecords = exports.groupSrvRecords = exports.getUniqueHostnamesFromOptions = exports.normalizeNodeOptions = exports.nodeKeyToRedisOptions = exports.getNodeKey = void 0; var utils_1 = require_utils2(); var net_1 = require_net(); function getNodeKey(node) { node.port = node.port || 6379; node.host = node.host || "127.0.0.1"; return node.host + ":" + node.port; } __name(getNodeKey, "getNodeKey"); exports.getNodeKey = getNodeKey; function nodeKeyToRedisOptions(nodeKey) { const portIndex = nodeKey.lastIndexOf(":"); if (portIndex === -1) { throw new Error(`Invalid node key ${nodeKey}`); } return { host: nodeKey.slice(0, portIndex), port: Number(nodeKey.slice(portIndex + 1)) }; } __name(nodeKeyToRedisOptions, "nodeKeyToRedisOptions"); exports.nodeKeyToRedisOptions = nodeKeyToRedisOptions; function normalizeNodeOptions(nodes) { return nodes.map((node) => { const options = {}; if (typeof node === "object") { Object.assign(options, node); } else if (typeof node === "string") { Object.assign(options, (0, utils_1.parseURL)(node)); } else if (typeof node === "number") { options.port = node; } else { throw new Error("Invalid argument " + node); } if (typeof options.port === "string") { options.port = parseInt(options.port, 10); } delete options.db; if (!options.port) { options.port = 6379; } if (!options.host) { options.host = "127.0.0.1"; } return (0, utils_1.resolveTLSProfile)(options); }); } __name(normalizeNodeOptions, "normalizeNodeOptions"); exports.normalizeNodeOptions = normalizeNodeOptions; function getUniqueHostnamesFromOptions(nodes) { const uniqueHostsMap = {}; nodes.forEach((node) => { uniqueHostsMap[node.host] = true; }); return Object.keys(uniqueHostsMap).filter((host) => !(0, net_1.isIP)(host)); } __name(getUniqueHostnamesFromOptions, "getUniqueHostnamesFromOptions"); exports.getUniqueHostnamesFromOptions = getUniqueHostnamesFromOptions; function groupSrvRecords(records) { const recordsByPriority = {}; for (const record2 of records) { if (!recordsByPriority.hasOwnProperty(record2.priority)) { recordsByPriority[record2.priority] = { totalWeight: record2.weight, records: [record2] }; } else { recordsByPriority[record2.priority].totalWeight += record2.weight; recordsByPriority[record2.priority].records.push(record2); } } return recordsByPriority; } __name(groupSrvRecords, "groupSrvRecords"); exports.groupSrvRecords = groupSrvRecords; function weightSrvRecords(recordsGroup) { if (recordsGroup.records.length === 1) { recordsGroup.totalWeight = 0; return recordsGroup.records.shift(); } const random = Math.floor(Math.random() * (recordsGroup.totalWeight + recordsGroup.records.length)); let total = 0; for (const [i, record2] of recordsGroup.records.entries()) { total += 1 + record2.weight; if (total > random) { recordsGroup.totalWeight -= record2.weight; recordsGroup.records.splice(i, 1); return record2; } } } __name(weightSrvRecords, "weightSrvRecords"); exports.weightSrvRecords = weightSrvRecords; function getConnectionName(component, nodeConnectionName) { const prefix = `ioredis-cluster(${component})`; return nodeConnectionName ? `${prefix}:${nodeConnectionName}` : prefix; } __name(getConnectionName, "getConnectionName"); exports.getConnectionName = getConnectionName; } }); // ../../node_modules/ioredis/built/cluster/ClusterSubscriber.js var require_ClusterSubscriber = __commonJS({ "../../node_modules/ioredis/built/cluster/ClusterSubscriber.js"(exports) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); Object.defineProperty(exports, "__esModule", { value: true }); var util_1 = require_util2(); var utils_1 = require_utils2(); var Redis_1 = require_Redis(); var debug3 = (0, utils_1.Debug)("cluster:subscriber"); var ClusterSubscriber = class { static { __name(this, "ClusterSubscriber"); } constructor(connectionPool, emitter, isSharded = false) { this.connectionPool = connectionPool; this.emitter = emitter; this.isSharded = isSharded; this.started = false; this.subscriber = null; this.slotRange = []; this.onSubscriberEnd = () => { if (!this.started) { debug3("subscriber has disconnected, but ClusterSubscriber is not started, so not reconnecting."); return; } debug3("subscriber has disconnected, selecting a new one..."); this.selectSubscriber(); }; this.connectionPool.on("-node", (_, key) => { if (!this.started || !this.subscriber) { return; } if ((0, util_1.getNodeKey)(this.subscriber.options) === key) { debug3("subscriber has left, selecting a new one..."); this.selectSubscriber(); } }); this.connectionPool.on("+node", () => { if (!this.started || this.subscriber) { return; } debug3("a new node is discovered and there is no subscriber, selecting a new one..."); this.selectSubscriber(); }); } getInstance() { return this.subscriber; } /** * Associate this subscriber to a specific slot range. * * Returns the range or an empty array if the slot range couldn't be associated. * * BTW: This is more for debugging and testing purposes. * * @param range */ associateSlotRange(range) { if (this.isSharded) { this.slotRange = range; } return this.slotRange; } start() { this.started = true; this.selectSubscriber(); debug3("started"); } stop() { this.started = false; if (this.subscriber) { this.subscriber.disconnect(); this.subscriber = null; } } isStarted() { return this.started; } selectSubscriber() { const lastActiveSubscriber = this.lastActiveSubscriber; if (lastActiveSubscriber) { lastActiveSubscriber.off("end", this.onSubscriberEnd); lastActiveSubscriber.disconnect(); } if (this.subscriber) { this.subscriber.off("end", this.onSubscriberEnd); this.subscriber.disconnect(); } const sampleNode = (0, utils_1.sample)(this.connectionPool.getNodes()); if (!sampleNode) { debug3("selecting subscriber failed since there is no node discovered in the cluster yet"); this.subscriber = null; return; } const { options } = sampleNode; debug3("selected a subscriber %s:%s", options.host, options.port); let connectionPrefix = "subscriber"; if (this.isSharded) connectionPrefix = "ssubscriber"; this.subscriber = new Redis_1.default({ port: options.port, host: options.host, username: options.username, password: options.password, enableReadyCheck: true, connectionName: (0, util_1.getConnectionName)(connectionPrefix, options.connectionName), lazyConnect: true, tls: options.tls, // Don't try to reconnect the subscriber connection. If the connection fails // we will get an end event (handled below), at which point we'll pick a new // node from the pool and try to connect to that as the subscriber connection. retryStrategy: null }); this.subscriber.on("error", utils_1.noop); this.subscriber.on("moved", () => { this.emitter.emit("forceRefresh"); }); this.subscriber.once("end", this.onSubscriberEnd); const previousChannels = { subscribe: [], psubscribe: [], ssubscribe: [] }; if (lastActiveSubscriber) { const condition = lastActiveSubscriber.condition || lastActiveSubscriber.prevCondition; if (condition && condition.subscriber) { previousChannels.subscribe = condition.subscriber.channels("subscribe"); previousChannels.psubscribe = condition.subscriber.channels("psubscribe"); previousChannels.ssubscribe = condition.subscriber.channels("ssubscribe"); } } if (previousChannels.subscribe.length || previousChannels.psubscribe.length || previousChannels.ssubscribe.length) { let pending = 0; for (const type of ["subscribe", "psubscribe", "ssubscribe"]) { const channels = previousChannels[type]; if (channels.length == 0) { continue; } debug3("%s %d channels", type, channels.length); if (type === "ssubscribe") { for (const channel2 of channels) { pending += 1; this.subscriber[type](channel2).then(() => { if (!--pending) { this.lastActiveSubscriber = this.subscriber; } }).catch(() => { debug3("failed to ssubscribe to channel: %s", channel2); }); } } else { pending += 1; this.subscriber[type](channels).then(() => { if (!--pending) { this.lastActiveSubscriber = this.subscriber; } }).catch(() => { debug3("failed to %s %d channels", type, channels.length); }); } } } else { this.lastActiveSubscriber = this.subscriber; } for (const event of [ "message", "messageBuffer" ]) { this.subscriber.on(event, (arg1, arg2) => { this.emitter.emit(event, arg1, arg2); }); } for (const event of ["pmessage", "pmessageBuffer"]) { this.subscriber.on(event, (arg1, arg2, arg3) => { this.emitter.emit(event, arg1, arg2, arg3); }); } if (this.isSharded == true) { for (const event of [ "smessage", "smessageBuffer" ]) { this.subscriber.on(event, (arg1, arg2) => { this.emitter.emit(event, arg1, arg2); }); } } } }; exports.default = ClusterSubscriber; } }); // ../../node_modules/ioredis/built/cluster/ConnectionPool.js var require_ConnectionPool = __commonJS({ "../../node_modules/ioredis/built/cluster/ConnectionPool.js"(exports) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); Object.defineProperty(exports, "__esModule", { value: true }); var events_1 = require_events(); var utils_1 = require_utils2(); var util_1 = require_util2(); var Redis_1 = require_Redis(); var debug3 = (0, utils_1.Debug)("cluster:connectionPool"); var ConnectionPool = class extends events_1.EventEmitter { static { __name(this, "ConnectionPool"); } constructor(redisOptions) { super(); this.redisOptions = redisOptions; this.nodes = { all: {}, master: {}, slave: {} }; this.specifiedOptions = {}; } getNodes(role = "all") { const nodes = this.nodes[role]; return Object.keys(nodes).map((key) => nodes[key]); } getInstanceByKey(key) { return this.nodes.all[key]; } getSampleInstance(role) { const keys = Object.keys(this.nodes[role]); const sampleKey = (0, utils_1.sample)(keys); return this.nodes[role][sampleKey]; } /** * Add a master node to the pool * @param node */ addMasterNode(node) { const key = (0, util_1.getNodeKey)(node.options); const redis = this.createRedisFromOptions(node, node.options.readOnly); if (!node.options.readOnly) { this.nodes.all[key] = redis; this.nodes.master[key] = redis; return true; } return false; } /** * Creates a Redis connection instance from the node options * @param node * @param readOnly */ createRedisFromOptions(node, readOnly) { const redis = new Redis_1.default((0, utils_1.defaults)({ // Never try to reconnect when a node is lose, // instead, waiting for a `MOVED` error and // fetch the slots again. retryStrategy: null, // Offline queue should be enabled so that // we don't need to wait for the `ready` event // before sending commands to the node. enableOfflineQueue: true, readOnly }, node, this.redisOptions, { lazyConnect: true })); return redis; } /** * Find or create a connection to the node */ findOrCreate(node, readOnly = false) { const key = (0, util_1.getNodeKey)(node); readOnly = Boolean(readOnly); if (this.specifiedOptions[key]) { Object.assign(node, this.specifiedOptions[key]); } else { this.specifiedOptions[key] = node; } let redis; if (this.nodes.all[key]) { redis = this.nodes.all[key]; if (redis.options.readOnly !== readOnly) { redis.options.readOnly = readOnly; debug3("Change role of %s to %s", key, readOnly ? "slave" : "master"); redis[readOnly ? "readonly" : "readwrite"]().catch(utils_1.noop); if (readOnly) { delete this.nodes.master[key]; this.nodes.slave[key] = redis; } else { delete this.nodes.slave[key]; this.nodes.master[key] = redis; } } } else { debug3("Connecting to %s as %s", key, readOnly ? "slave" : "master"); redis = this.createRedisFromOptions(node, readOnly); this.nodes.all[key] = redis; this.nodes[readOnly ? "slave" : "master"][key] = redis; redis.once("end", () => { this.removeNode(key); this.emit("-node", redis, key); if (!Object.keys(this.nodes.all).length) { this.emit("drain"); } }); this.emit("+node", redis, key); redis.on("error", function(error50) { this.emit("nodeError", error50, key); }); } return redis; } /** * Reset the pool with a set of nodes. * The old node will be removed. */ reset(nodes) { debug3("Reset with %O", nodes); const newNodes = {}; nodes.forEach((node) => { const key = (0, util_1.getNodeKey)(node); if (!(node.readOnly && newNodes[key])) { newNodes[key] = node; } }); Object.keys(this.nodes.all).forEach((key) => { if (!newNodes[key]) { debug3("Disconnect %s because the node does not hold any slot", key); this.nodes.all[key].disconnect(); this.removeNode(key); } }); Object.keys(newNodes).forEach((key) => { const node = newNodes[key]; this.findOrCreate(node, node.readOnly); }); } /** * Remove a node from the pool. */ removeNode(key) { const { nodes } = this; if (nodes.all[key]) { debug3("Remove %s from the pool", key); delete nodes.all[key]; } delete nodes.master[key]; delete nodes.slave[key]; } }; exports.default = ConnectionPool; } }); // ../../node_modules/denque/index.js var require_denque = __commonJS({ "../../node_modules/denque/index.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); function Denque(array2, options) { var options = options || {}; this._capacity = options.capacity; this._head = 0; this._tail = 0; if (Array.isArray(array2)) { this._fromArray(array2); } else { this._capacityMask = 3; this._list = new Array(4); } } __name(Denque, "Denque"); Denque.prototype.peekAt = /* @__PURE__ */ __name(function peekAt(index) { var i = index; if (i !== (i | 0)) { return void 0; } var len = this.size(); if (i >= len || i < -len) return void 0; if (i < 0) i += len; i = this._head + i & this._capacityMask; return this._list[i]; }, "peekAt"); Denque.prototype.get = /* @__PURE__ */ __name(function get(i) { return this.peekAt(i); }, "get"); Denque.prototype.peek = /* @__PURE__ */ __name(function peek() { if (this._head === this._tail) return void 0; return this._list[this._head]; }, "peek"); Denque.prototype.peekFront = /* @__PURE__ */ __name(function peekFront() { return this.peek(); }, "peekFront"); Denque.prototype.peekBack = /* @__PURE__ */ __name(function peekBack() { return this.peekAt(-1); }, "peekBack"); Object.defineProperty(Denque.prototype, "length", { get: /* @__PURE__ */ __name(function length() { return this.size(); }, "length") }); Denque.prototype.size = /* @__PURE__ */ __name(function size() { if (this._head === this._tail) return 0; if (this._head < this._tail) return this._tail - this._head; else return this._capacityMask + 1 - (this._head - this._tail); }, "size"); Denque.prototype.unshift = /* @__PURE__ */ __name(function unshift(item) { if (arguments.length === 0) return this.size(); var len = this._list.length; this._head = this._head - 1 + len & this._capacityMask; this._list[this._head] = item; if (this._tail === this._head) this._growArray(); if (this._capacity && this.size() > this._capacity) this.pop(); if (this._head < this._tail) return this._tail - this._head; else return this._capacityMask + 1 - (this._head - this._tail); }, "unshift"); Denque.prototype.shift = /* @__PURE__ */ __name(function shift() { var head = this._head; if (head === this._tail) return void 0; var item = this._list[head]; this._list[head] = void 0; this._head = head + 1 & this._capacityMask; if (head < 2 && this._tail > 1e4 && this._tail <= this._list.length >>> 2) this._shrinkArray(); return item; }, "shift"); Denque.prototype.push = /* @__PURE__ */ __name(function push(item) { if (arguments.length === 0) return this.size(); var tail = this._tail; this._list[tail] = item; this._tail = tail + 1 & this._capacityMask; if (this._tail === this._head) { this._growArray(); } if (this._capacity && this.size() > this._capacity) { this.shift(); } if (this._head < this._tail) return this._tail - this._head; else return this._capacityMask + 1 - (this._head - this._tail); }, "push"); Denque.prototype.pop = /* @__PURE__ */ __name(function pop() { var tail = this._tail; if (tail === this._head) return void 0; var len = this._list.length; this._tail = tail - 1 + len & this._capacityMask; var item = this._list[this._tail]; this._list[this._tail] = void 0; if (this._head < 2 && tail > 1e4 && tail <= len >>> 2) this._shrinkArray(); return item; }, "pop"); Denque.prototype.removeOne = /* @__PURE__ */ __name(function removeOne(index) { var i = index; if (i !== (i | 0)) { return void 0; } if (this._head === this._tail) return void 0; var size = this.size(); var len = this._list.length; if (i >= size || i < -size) return void 0; if (i < 0) i += size; i = this._head + i & this._capacityMask; var item = this._list[i]; var k; if (index < size / 2) { for (k = index; k > 0; k--) { this._list[i] = this._list[i = i - 1 + len & this._capacityMask]; } this._list[i] = void 0; this._head = this._head + 1 + len & this._capacityMask; } else { for (k = size - 1 - index; k > 0; k--) { this._list[i] = this._list[i = i + 1 + len & this._capacityMask]; } this._list[i] = void 0; this._tail = this._tail - 1 + len & this._capacityMask; } return item; }, "removeOne"); Denque.prototype.remove = /* @__PURE__ */ __name(function remove(index, count4) { var i = index; var removed; var del_count = count4; if (i !== (i | 0)) { return void 0; } if (this._head === this._tail) return void 0; var size = this.size(); var len = this._list.length; if (i >= size || i < -size || count4 < 1) return void 0; if (i < 0) i += size; if (count4 === 1 || !count4) { removed = new Array(1); removed[0] = this.removeOne(i); return removed; } if (i === 0 && i + count4 >= size) { removed = this.toArray(); this.clear(); return removed; } if (i + count4 > size) count4 = size - i; var k; removed = new Array(count4); for (k = 0; k < count4; k++) { removed[k] = this._list[this._head + i + k & this._capacityMask]; } i = this._head + i & this._capacityMask; if (index + count4 === size) { this._tail = this._tail - count4 + len & this._capacityMask; for (k = count4; k > 0; k--) { this._list[i = i + 1 + len & this._capacityMask] = void 0; } return removed; } if (index === 0) { this._head = this._head + count4 + len & this._capacityMask; for (k = count4 - 1; k > 0; k--) { this._list[i = i + 1 + len & this._capacityMask] = void 0; } return removed; } if (i < size / 2) { this._head = this._head + index + count4 + len & this._capacityMask; for (k = index; k > 0; k--) { this.unshift(this._list[i = i - 1 + len & this._capacityMask]); } i = this._head - 1 + len & this._capacityMask; while (del_count > 0) { this._list[i = i - 1 + len & this._capacityMask] = void 0; del_count--; } if (index < 0) this._tail = i; } else { this._tail = i; i = i + count4 + len & this._capacityMask; for (k = size - (count4 + index); k > 0; k--) { this.push(this._list[i++]); } i = this._tail; while (del_count > 0) { this._list[i = i + 1 + len & this._capacityMask] = void 0; del_count--; } } if (this._head < 2 && this._tail > 1e4 && this._tail <= len >>> 2) this._shrinkArray(); return removed; }, "remove"); Denque.prototype.splice = /* @__PURE__ */ __name(function splice(index, count4) { var i = index; if (i !== (i | 0)) { return void 0; } var size = this.size(); if (i < 0) i += size; if (i > size) return void 0; if (arguments.length > 2) { var k; var temp; var removed; var arg_len = arguments.length; var len = this._list.length; var arguments_index = 2; if (!size || i < size / 2) { temp = new Array(i); for (k = 0; k < i; k++) { temp[k] = this._list[this._head + k & this._capacityMask]; } if (count4 === 0) { removed = []; if (i > 0) { this._head = this._head + i + len & this._capacityMask; } } else { removed = this.remove(i, count4); this._head = this._head + i + len & this._capacityMask; } while (arg_len > arguments_index) { this.unshift(arguments[--arg_len]); } for (k = i; k > 0; k--) { this.unshift(temp[k - 1]); } } else { temp = new Array(size - (i + count4)); var leng = temp.length; for (k = 0; k < leng; k++) { temp[k] = this._list[this._head + i + count4 + k & this._capacityMask]; } if (count4 === 0) { removed = []; if (i != size) { this._tail = this._head + i + len & this._capacityMask; } } else { removed = this.remove(i, count4); this._tail = this._tail - leng + len & this._capacityMask; } while (arguments_index < arg_len) { this.push(arguments[arguments_index++]); } for (k = 0; k < leng; k++) { this.push(temp[k]); } } return removed; } else { return this.remove(i, count4); } }, "splice"); Denque.prototype.clear = /* @__PURE__ */ __name(function clear3() { this._list = new Array(this._list.length); this._head = 0; this._tail = 0; }, "clear"); Denque.prototype.isEmpty = /* @__PURE__ */ __name(function isEmpty2() { return this._head === this._tail; }, "isEmpty"); Denque.prototype.toArray = /* @__PURE__ */ __name(function toArray2() { return this._copyArray(false); }, "toArray"); Denque.prototype._fromArray = /* @__PURE__ */ __name(function _fromArray(array2) { var length = array2.length; var capacity = this._nextPowerOf2(length); this._list = new Array(capacity); this._capacityMask = capacity - 1; this._tail = length; for (var i = 0; i < length; i++) this._list[i] = array2[i]; }, "_fromArray"); Denque.prototype._copyArray = /* @__PURE__ */ __name(function _copyArray(fullCopy, size) { var src2 = this._list; var capacity = src2.length; var length = this.length; size = size | length; if (size == length && this._head < this._tail) { return this._list.slice(this._head, this._tail); } var dest = new Array(size); var k = 0; var i; if (fullCopy || this._head > this._tail) { for (i = this._head; i < capacity; i++) dest[k++] = src2[i]; for (i = 0; i < this._tail; i++) dest[k++] = src2[i]; } else { for (i = this._head; i < this._tail; i++) dest[k++] = src2[i]; } return dest; }, "_copyArray"); Denque.prototype._growArray = /* @__PURE__ */ __name(function _growArray() { if (this._head != 0) { var newList = this._copyArray(true, this._list.length << 1); this._tail = this._list.length; this._head = 0; this._list = newList; } else { this._tail = this._list.length; this._list.length <<= 1; } this._capacityMask = this._capacityMask << 1 | 1; }, "_growArray"); Denque.prototype._shrinkArray = /* @__PURE__ */ __name(function _shrinkArray() { this._list.length >>>= 1; this._capacityMask >>>= 1; }, "_shrinkArray"); Denque.prototype._nextPowerOf2 = /* @__PURE__ */ __name(function _nextPowerOf2(num) { var log22 = Math.log(num) / Math.log(2); var nextPow2 = 1 << log22 + 1; return Math.max(nextPow2, 4); }, "_nextPowerOf2"); module2.exports = Denque; } }); // ../../node_modules/ioredis/built/cluster/DelayQueue.js var require_DelayQueue = __commonJS({ "../../node_modules/ioredis/built/cluster/DelayQueue.js"(exports) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); Object.defineProperty(exports, "__esModule", { value: true }); var utils_1 = require_utils2(); var Deque = require_denque(); var debug3 = (0, utils_1.Debug)("delayqueue"); var DelayQueue = class { static { __name(this, "DelayQueue"); } constructor() { this.queues = {}; this.timeouts = {}; } /** * Add a new item to the queue * * @param bucket bucket name * @param item function that will run later * @param options */ push(bucket, item, options) { const callback = options.callback || process.nextTick; if (!this.queues[bucket]) { this.queues[bucket] = new Deque(); } const queue = this.queues[bucket]; queue.push(item); if (!this.timeouts[bucket]) { this.timeouts[bucket] = setTimeout(() => { callback(() => { this.timeouts[bucket] = null; this.execute(bucket); }); }, options.timeout); } } execute(bucket) { const queue = this.queues[bucket]; if (!queue) { return; } const { length } = queue; if (!length) { return; } debug3("send %d commands in %s queue", length, bucket); this.queues[bucket] = null; while (queue.length > 0) { queue.shift()(); } } }; exports.default = DelayQueue; } }); // ../../node_modules/ioredis/built/cluster/ShardedSubscriber.js var require_ShardedSubscriber = __commonJS({ "../../node_modules/ioredis/built/cluster/ShardedSubscriber.js"(exports) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); Object.defineProperty(exports, "__esModule", { value: true }); var util_1 = require_util2(); var utils_1 = require_utils2(); var Redis_1 = require_Redis(); var debug3 = (0, utils_1.Debug)("cluster:subscriberGroup:shardedSubscriber"); var ShardedSubscriber = class { static { __name(this, "ShardedSubscriber"); } constructor(emitter, options) { this.emitter = emitter; this.started = false; this.instance = null; this.messageListeners = /* @__PURE__ */ new Map(); this.onEnd = () => { this.started = false; this.emitter.emit("-node", this.instance, this.nodeKey); }; this.onError = (error50) => { this.emitter.emit("nodeError", error50, this.nodeKey); }; this.onMoved = () => { this.emitter.emit("moved"); }; this.instance = new Redis_1.default({ port: options.port, host: options.host, username: options.username, password: options.password, enableReadyCheck: false, offlineQueue: true, connectionName: (0, util_1.getConnectionName)("ssubscriber", options.connectionName), lazyConnect: true, tls: options.tls, /** * Disable auto reconnection for subscribers. * The ClusterSubscriberGroup will handle the reconnection. */ retryStrategy: null }); this.nodeKey = (0, util_1.getNodeKey)(options); this.instance.once("end", this.onEnd); this.instance.on("error", this.onError); this.instance.on("moved", this.onMoved); for (const event of ["smessage", "smessageBuffer"]) { const listener = /* @__PURE__ */ __name((...args) => { this.emitter.emit(event, ...args); }, "listener"); this.messageListeners.set(event, listener); this.instance.on(event, listener); } } async start() { if (this.started) { debug3("already started %s", this.nodeKey); return; } try { await this.instance.connect(); debug3("started %s", this.nodeKey); this.started = true; } catch (err) { debug3("failed to start %s: %s", this.nodeKey, err); this.started = false; throw err; } } stop() { this.started = false; if (this.instance) { this.instance.disconnect(); this.instance.removeAllListeners(); this.messageListeners.clear(); this.instance = null; } debug3("stopped %s", this.nodeKey); } isStarted() { return this.started; } getInstance() { return this.instance; } getNodeKey() { return this.nodeKey; } }; exports.default = ShardedSubscriber; } }); // ../../node_modules/ioredis/built/cluster/ClusterSubscriberGroup.js var require_ClusterSubscriberGroup = __commonJS({ "../../node_modules/ioredis/built/cluster/ClusterSubscriberGroup.js"(exports) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); Object.defineProperty(exports, "__esModule", { value: true }); var utils_1 = require_utils2(); var util_1 = require_util2(); var calculateSlot = require_lib(); var ShardedSubscriber_1 = require_ShardedSubscriber(); var debug3 = (0, utils_1.Debug)("cluster:subscriberGroup"); var ClusterSubscriberGroup = class _ClusterSubscriberGroup { static { __name(this, "ClusterSubscriberGroup"); } /** * Register callbacks * * @param cluster */ constructor(subscriberGroupEmitter) { this.subscriberGroupEmitter = subscriberGroupEmitter; this.shardedSubscribers = /* @__PURE__ */ new Map(); this.clusterSlots = []; this.subscriberToSlotsIndex = /* @__PURE__ */ new Map(); this.channels = /* @__PURE__ */ new Map(); this.failedAttemptsByNode = /* @__PURE__ */ new Map(); this.isResetting = false; this.pendingReset = null; this.handleSubscriberConnectFailed = (error50, nodeKey) => { const currentAttempts = this.failedAttemptsByNode.get(nodeKey) || 0; const failedAttempts = currentAttempts + 1; this.failedAttemptsByNode.set(nodeKey, failedAttempts); const attempts = Math.min(failedAttempts, _ClusterSubscriberGroup.MAX_RETRY_ATTEMPTS); const backoff = Math.min(_ClusterSubscriberGroup.BASE_BACKOFF_MS * 2 ** attempts, _ClusterSubscriberGroup.MAX_BACKOFF_MS); const jitter = Math.floor((Math.random() - 0.5) * (backoff * 0.5)); const delay2 = Math.max(0, backoff + jitter); debug3("Failed to connect subscriber for %s. Refreshing slots in %dms", nodeKey, delay2); this.subscriberGroupEmitter.emit("subscriberConnectFailed", { delay: delay2, error: error50 }); }; this.handleSubscriberConnectSucceeded = (nodeKey) => { this.failedAttemptsByNode.delete(nodeKey); }; } /** * Get the responsible subscriber. * * @param slot */ getResponsibleSubscriber(slot) { const nodeKey = this.clusterSlots[slot][0]; return this.shardedSubscribers.get(nodeKey); } /** * Adds a channel for which this subscriber group is responsible * * @param channels */ addChannels(channels) { const slot = calculateSlot(channels[0]); for (const c of channels) { if (calculateSlot(c) !== slot) { return -1; } } const currChannels = this.channels.get(slot); if (!currChannels) { this.channels.set(slot, channels); } else { this.channels.set(slot, currChannels.concat(channels)); } return Array.from(this.channels.values()).reduce((sum2, array2) => sum2 + array2.length, 0); } /** * Removes channels for which the subscriber group is responsible by optionally unsubscribing * @param channels */ removeChannels(channels) { const slot = calculateSlot(channels[0]); for (const c of channels) { if (calculateSlot(c) !== slot) { return -1; } } const slotChannels = this.channels.get(slot); if (slotChannels) { const updatedChannels = slotChannels.filter((c) => !channels.includes(c)); this.channels.set(slot, updatedChannels); } return Array.from(this.channels.values()).reduce((sum2, array2) => sum2 + array2.length, 0); } /** * Disconnect all subscribers and clear some of the internal state. */ stop() { for (const s of this.shardedSubscribers.values()) { s.stop(); } this.pendingReset = null; this.shardedSubscribers.clear(); this.subscriberToSlotsIndex.clear(); } /** * Start all not yet started subscribers */ start() { const startPromises = []; for (const s of this.shardedSubscribers.values()) { if (!s.isStarted()) { startPromises.push(s.start().then(() => { this.handleSubscriberConnectSucceeded(s.getNodeKey()); }).catch((err) => { this.handleSubscriberConnectFailed(err, s.getNodeKey()); })); } } return Promise.all(startPromises); } /** * Resets the subscriber group by disconnecting all subscribers that are no longer needed and connecting new ones. */ async reset(clusterSlots, clusterNodes) { if (this.isResetting) { this.pendingReset = { slots: clusterSlots, nodes: clusterNodes }; return; } this.isResetting = true; try { const hasTopologyChanged = this._refreshSlots(clusterSlots); const hasFailedSubscribers = this.hasUnhealthySubscribers(); if (!hasTopologyChanged && !hasFailedSubscribers) { debug3("No topology change detected or failed subscribers. Skipping reset."); return; } for (const [nodeKey, shardedSubscriber] of this.shardedSubscribers) { if ( // If the subscriber is still responsible for a slot range and is running then keep it this.subscriberToSlotsIndex.has(nodeKey) && shardedSubscriber.isStarted() ) { debug3("Skipping deleting subscriber for %s", nodeKey); continue; } debug3("Removing subscriber for %s", nodeKey); shardedSubscriber.stop(); this.shardedSubscribers.delete(nodeKey); this.subscriberGroupEmitter.emit("-subscriber"); } const startPromises = []; for (const [nodeKey, _] of this.subscriberToSlotsIndex) { if (this.shardedSubscribers.has(nodeKey)) { debug3("Skipping creating new subscriber for %s", nodeKey); continue; } debug3("Creating new subscriber for %s", nodeKey); const redis = clusterNodes.find((node) => { return (0, util_1.getNodeKey)(node.options) === nodeKey; }); if (!redis) { debug3("Failed to find node for key %s", nodeKey); continue; } const sub = new ShardedSubscriber_1.default(this.subscriberGroupEmitter, redis.options); this.shardedSubscribers.set(nodeKey, sub); startPromises.push(sub.start().then(() => { this.handleSubscriberConnectSucceeded(nodeKey); }).catch((error50) => { this.handleSubscriberConnectFailed(error50, nodeKey); })); this.subscriberGroupEmitter.emit("+subscriber"); } await Promise.all(startPromises); this._resubscribe(); this.subscriberGroupEmitter.emit("subscribersReady"); } finally { this.isResetting = false; if (this.pendingReset) { const { slots, nodes } = this.pendingReset; this.pendingReset = null; await this.reset(slots, nodes); } } } /** * Refreshes the subscriber-related slot ranges * * Returns false if no refresh was needed * * @param targetSlots */ _refreshSlots(targetSlots) { if (this._slotsAreEqual(targetSlots)) { debug3("Nothing to refresh because the new cluster map is equal to the previous one."); return false; } debug3("Refreshing the slots of the subscriber group."); this.subscriberToSlotsIndex = /* @__PURE__ */ new Map(); for (let slot = 0; slot < targetSlots.length; slot++) { const node = targetSlots[slot][0]; if (!this.subscriberToSlotsIndex.has(node)) { this.subscriberToSlotsIndex.set(node, []); } this.subscriberToSlotsIndex.get(node).push(Number(slot)); } this.clusterSlots = JSON.parse(JSON.stringify(targetSlots)); return true; } /** * Resubscribes to the previous channels * * @private */ _resubscribe() { if (this.shardedSubscribers) { this.shardedSubscribers.forEach((s, nodeKey) => { const subscriberSlots = this.subscriberToSlotsIndex.get(nodeKey); if (subscriberSlots) { subscriberSlots.forEach((ss) => { const redis = s.getInstance(); const channels = this.channels.get(ss); if (channels && channels.length > 0) { if (redis.status === "end") { return; } if (redis.status === "ready") { redis.ssubscribe(...channels).catch((err) => { debug3("Failed to ssubscribe on node %s: %s", nodeKey, err); }); } else { redis.once("ready", () => { redis.ssubscribe(...channels).catch((err) => { debug3("Failed to ssubscribe on node %s: %s", nodeKey, err); }); }); } } }); } }); } } /** * Deep equality of the cluster slots objects * * @param other * @private */ _slotsAreEqual(other) { if (this.clusterSlots === void 0) { return false; } else { return JSON.stringify(this.clusterSlots) === JSON.stringify(other); } } /** * Checks if any subscribers are in an unhealthy state. * * A subscriber is considered unhealthy if: * - It exists but is not started (failed/disconnected) * - It's missing entirely for a node that should have one * * @returns true if any subscribers need to be recreated */ hasUnhealthySubscribers() { const hasFailedSubscribers = Array.from(this.shardedSubscribers.values()).some((sub) => !sub.isStarted()); const hasMissingSubscribers = Array.from(this.subscriberToSlotsIndex.keys()).some((nodeKey) => !this.shardedSubscribers.has(nodeKey)); return hasFailedSubscribers || hasMissingSubscribers; } }; exports.default = ClusterSubscriberGroup; ClusterSubscriberGroup.MAX_RETRY_ATTEMPTS = 10; ClusterSubscriberGroup.MAX_BACKOFF_MS = 2e3; ClusterSubscriberGroup.BASE_BACKOFF_MS = 100; } }); // ../../node_modules/ioredis/built/cluster/index.js var require_cluster = __commonJS({ "../../node_modules/ioredis/built/cluster/index.js"(exports) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); Object.defineProperty(exports, "__esModule", { value: true }); var commands_1 = require_built(); var events_1 = require_events(); var redis_errors_1 = require_redis_errors(); var standard_as_callback_1 = require_built2(); var Command_1 = require_Command(); var ClusterAllFailedError_1 = require_ClusterAllFailedError(); var Redis_1 = require_Redis(); var ScanStream_1 = require_ScanStream(); var transaction_1 = require_transaction(); var utils_1 = require_utils2(); var applyMixin_1 = require_applyMixin(); var Commander_1 = require_Commander(); var ClusterOptions_1 = require_ClusterOptions(); var ClusterSubscriber_1 = require_ClusterSubscriber(); var ConnectionPool_1 = require_ConnectionPool(); var DelayQueue_1 = require_DelayQueue(); var util_1 = require_util2(); var Deque = require_denque(); var ClusterSubscriberGroup_1 = require_ClusterSubscriberGroup(); var debug3 = (0, utils_1.Debug)("cluster"); var REJECT_OVERWRITTEN_COMMANDS = /* @__PURE__ */ new WeakSet(); var Cluster2 = class _Cluster extends Commander_1.default { static { __name(this, "Cluster"); } /** * Creates an instance of Cluster. */ //TODO: Add an option that enables or disables sharded PubSub constructor(startupNodes, options = {}) { super(); this.slots = []; this._groupsIds = {}; this._groupsBySlot = Array(16384); this.isCluster = true; this.retryAttempts = 0; this.delayQueue = new DelayQueue_1.default(); this.offlineQueue = new Deque(); this.isRefreshing = false; this._refreshSlotsCacheCallbacks = []; this._autoPipelines = /* @__PURE__ */ new Map(); this._runningAutoPipelines = /* @__PURE__ */ new Set(); this._readyDelayedCallbacks = []; this.connectionEpoch = 0; events_1.EventEmitter.call(this); this.startupNodes = startupNodes; this.options = (0, utils_1.defaults)({}, options, ClusterOptions_1.DEFAULT_CLUSTER_OPTIONS, this.options); if (this.options.shardedSubscribers) { this.createShardedSubscriberGroup(); } if (this.options.redisOptions && this.options.redisOptions.keyPrefix && !this.options.keyPrefix) { this.options.keyPrefix = this.options.redisOptions.keyPrefix; } if (typeof this.options.scaleReads !== "function" && ["all", "master", "slave"].indexOf(this.options.scaleReads) === -1) { throw new Error('Invalid option scaleReads "' + this.options.scaleReads + '". Expected "all", "master", "slave" or a custom function'); } this.connectionPool = new ConnectionPool_1.default(this.options.redisOptions); this.connectionPool.on("-node", (redis, key) => { this.emit("-node", redis); }); this.connectionPool.on("+node", (redis) => { this.emit("+node", redis); }); this.connectionPool.on("drain", () => { this.setStatus("close"); }); this.connectionPool.on("nodeError", (error50, key) => { this.emit("node error", error50, key); }); this.subscriber = new ClusterSubscriber_1.default(this.connectionPool, this); if (this.options.scripts) { Object.entries(this.options.scripts).forEach(([name, definition]) => { this.defineCommand(name, definition); }); } if (this.options.lazyConnect) { this.setStatus("wait"); } else { this.connect().catch((err) => { debug3("connecting failed: %s", err); }); } } /** * Connect to a cluster */ connect() { return new Promise((resolve, reject) => { if (this.status === "connecting" || this.status === "connect" || this.status === "ready") { reject(new Error("Redis is already connecting/connected")); return; } const epoch2 = ++this.connectionEpoch; this.setStatus("connecting"); this.resolveStartupNodeHostnames().then((nodes) => { if (this.connectionEpoch !== epoch2) { debug3("discard connecting after resolving startup nodes because epoch not match: %d != %d", epoch2, this.connectionEpoch); reject(new redis_errors_1.RedisError("Connection is discarded because a new connection is made")); return; } if (this.status !== "connecting") { debug3("discard connecting after resolving startup nodes because the status changed to %s", this.status); reject(new redis_errors_1.RedisError("Connection is aborted")); return; } this.connectionPool.reset(nodes); if (this.options.shardedSubscribers) { this.shardedSubscribers.reset(this.slots, this.connectionPool.getNodes("all")).catch((err) => { debug3("Error while starting subscribers: %s", err); }); } const readyHandler = /* @__PURE__ */ __name(() => { this.setStatus("ready"); this.retryAttempts = 0; this.executeOfflineCommands(); this.resetNodesRefreshInterval(); resolve(); }, "readyHandler"); let closeListener = void 0; const refreshListener = /* @__PURE__ */ __name(() => { this.invokeReadyDelayedCallbacks(void 0); this.removeListener("close", closeListener); this.manuallyClosing = false; this.setStatus("connect"); if (this.options.enableReadyCheck) { this.readyCheck((err, fail) => { if (err || fail) { debug3("Ready check failed (%s). Reconnecting...", err || fail); if (this.status === "connect") { this.disconnect(true); } } else { readyHandler(); } }); } else { readyHandler(); } }, "refreshListener"); closeListener = /* @__PURE__ */ __name(() => { const error50 = new Error("None of startup nodes is available"); this.removeListener("refresh", refreshListener); this.invokeReadyDelayedCallbacks(error50); reject(error50); }, "closeListener"); this.once("refresh", refreshListener); this.once("close", closeListener); this.once("close", this.handleCloseEvent.bind(this)); this.refreshSlotsCache((err) => { if (err && err.message === ClusterAllFailedError_1.default.defaultMessage) { Redis_1.default.prototype.silentEmit.call(this, "error", err); this.connectionPool.reset([]); } }); this.subscriber.start(); if (this.options.shardedSubscribers) { this.shardedSubscribers.start().catch((err) => { debug3("Error while starting subscribers: %s", err); }); } }).catch((err) => { this.setStatus("close"); this.handleCloseEvent(err); this.invokeReadyDelayedCallbacks(err); reject(err); }); }); } /** * Disconnect from every node in the cluster. */ disconnect(reconnect = false) { const status = this.status; this.setStatus("disconnecting"); if (!reconnect) { this.manuallyClosing = true; } if (this.reconnectTimeout && !reconnect) { clearTimeout(this.reconnectTimeout); this.reconnectTimeout = null; debug3("Canceled reconnecting attempts"); } this.clearNodesRefreshInterval(); this.subscriber.stop(); if (this.options.shardedSubscribers) { this.shardedSubscribers.stop(); } if (status === "wait") { this.setStatus("close"); this.handleCloseEvent(); } else { this.connectionPool.reset([]); } } /** * Quit the cluster gracefully. */ quit(callback) { const status = this.status; this.setStatus("disconnecting"); this.manuallyClosing = true; if (this.reconnectTimeout) { clearTimeout(this.reconnectTimeout); this.reconnectTimeout = null; } this.clearNodesRefreshInterval(); this.subscriber.stop(); if (this.options.shardedSubscribers) { this.shardedSubscribers.stop(); } if (status === "wait") { const ret = (0, standard_as_callback_1.default)(Promise.resolve("OK"), callback); setImmediate(function() { this.setStatus("close"); this.handleCloseEvent(); }.bind(this)); return ret; } return (0, standard_as_callback_1.default)(Promise.all(this.nodes().map((node) => node.quit().catch((err) => { if (err.message === utils_1.CONNECTION_CLOSED_ERROR_MSG) { return "OK"; } throw err; }))).then(() => "OK"), callback); } /** * Create a new instance with the same startup nodes and options as the current one. * * @example * ```js * var cluster = new Redis.Cluster([{ host: "127.0.0.1", port: "30001" }]); * var anotherCluster = cluster.duplicate(); * ``` */ duplicate(overrideStartupNodes = [], overrideOptions = {}) { const startupNodes = overrideStartupNodes.length > 0 ? overrideStartupNodes : this.startupNodes.slice(0); const options = Object.assign({}, this.options, overrideOptions); return new _Cluster(startupNodes, options); } /** * Get nodes with the specified role */ nodes(role = "all") { if (role !== "all" && role !== "master" && role !== "slave") { throw new Error('Invalid role "' + role + '". Expected "all", "master" or "slave"'); } return this.connectionPool.getNodes(role); } /** * This is needed in order not to install a listener for each auto pipeline * * @ignore */ delayUntilReady(callback) { this._readyDelayedCallbacks.push(callback); } /** * Get the number of commands queued in automatic pipelines. * * This is not available (and returns 0) until the cluster is connected and slots information have been received. */ get autoPipelineQueueSize() { let queued = 0; for (const pipeline of this._autoPipelines.values()) { queued += pipeline.length; } return queued; } /** * Refresh the slot cache * * @ignore */ refreshSlotsCache(callback) { if (callback) { this._refreshSlotsCacheCallbacks.push(callback); } if (this.isRefreshing) { return; } this.isRefreshing = true; const _this = this; const wrapper = /* @__PURE__ */ __name((error50) => { this.isRefreshing = false; for (const callback2 of this._refreshSlotsCacheCallbacks) { callback2(error50); } this._refreshSlotsCacheCallbacks = []; }, "wrapper"); const nodes = (0, utils_1.shuffle)(this.connectionPool.getNodes()); let lastNodeError = null; function tryNode(index) { if (index === nodes.length) { const error50 = new ClusterAllFailedError_1.default(ClusterAllFailedError_1.default.defaultMessage, lastNodeError); return wrapper(error50); } const node = nodes[index]; const key = `${node.options.host}:${node.options.port}`; debug3("getting slot cache from %s", key); _this.getInfoFromNode(node, function(err) { switch (_this.status) { case "close": case "end": return wrapper(new Error("Cluster is disconnected.")); case "disconnecting": return wrapper(new Error("Cluster is disconnecting.")); } if (err) { _this.emit("node error", err, key); lastNodeError = err; tryNode(index + 1); } else { _this.emit("refresh"); wrapper(); } }); } __name(tryNode, "tryNode"); tryNode(0); } /** * @ignore */ sendCommand(command, stream, node) { if (this.status === "wait") { this.connect().catch(utils_1.noop); } if (this.status === "end") { command.reject(new Error(utils_1.CONNECTION_CLOSED_ERROR_MSG)); return command.promise; } let to = this.options.scaleReads; if (to !== "master") { const isCommandReadOnly = command.isReadOnly || (0, commands_1.exists)(command.name) && (0, commands_1.hasFlag)(command.name, "readonly"); if (!isCommandReadOnly) { to = "master"; } } let targetSlot = node ? node.slot : command.getSlot(); const ttl = {}; const _this = this; if (!node && !REJECT_OVERWRITTEN_COMMANDS.has(command)) { REJECT_OVERWRITTEN_COMMANDS.add(command); const reject = command.reject; command.reject = function(err) { const partialTry = tryConnection.bind(null, true); _this.handleError(err, ttl, { moved: /* @__PURE__ */ __name(function(slot, key) { debug3("command %s is moved to %s", command.name, key); targetSlot = Number(slot); if (_this.slots[slot]) { _this.slots[slot][0] = key; } else { _this.slots[slot] = [key]; } _this._groupsBySlot[slot] = _this._groupsIds[_this.slots[slot].join(";")]; _this.connectionPool.findOrCreate(_this.natMapper(key)); tryConnection(); debug3("refreshing slot caches... (triggered by MOVED error)"); _this.refreshSlotsCache(); }, "moved"), ask: /* @__PURE__ */ __name(function(slot, key) { debug3("command %s is required to ask %s:%s", command.name, key); const mapped = _this.natMapper(key); _this.connectionPool.findOrCreate(mapped); tryConnection(false, `${mapped.host}:${mapped.port}`); }, "ask"), tryagain: partialTry, clusterDown: partialTry, connectionClosed: partialTry, maxRedirections: /* @__PURE__ */ __name(function(redirectionError) { reject.call(command, redirectionError); }, "maxRedirections"), defaults: /* @__PURE__ */ __name(function() { reject.call(command, err); }, "defaults") }); }; } tryConnection(); function tryConnection(random, asking) { if (_this.status === "end") { command.reject(new redis_errors_1.AbortError("Cluster is ended.")); return; } let redis; if (_this.status === "ready" || command.name === "cluster") { if (node && node.redis) { redis = node.redis; } else if (Command_1.default.checkFlag("ENTER_SUBSCRIBER_MODE", command.name) || Command_1.default.checkFlag("EXIT_SUBSCRIBER_MODE", command.name)) { if (_this.options.shardedSubscribers && (command.name == "ssubscribe" || command.name == "sunsubscribe")) { const sub = _this.shardedSubscribers.getResponsibleSubscriber(targetSlot); if (!sub) { command.reject(new redis_errors_1.AbortError(`No sharded subscriber for slot: ${targetSlot}`)); return; } let status = -1; if (command.name == "ssubscribe") { status = _this.shardedSubscribers.addChannels(command.getKeys()); } if (command.name == "sunsubscribe") { status = _this.shardedSubscribers.removeChannels(command.getKeys()); } if (status !== -1) { redis = sub.getInstance(); } else { command.reject(new redis_errors_1.AbortError("Possible CROSSSLOT error: All channels must hash to the same slot")); } } else { redis = _this.subscriber.getInstance(); } if (!redis) { command.reject(new redis_errors_1.AbortError("No subscriber for the cluster")); return; } } else { if (!random) { if (typeof targetSlot === "number" && _this.slots[targetSlot]) { const nodeKeys = _this.slots[targetSlot]; if (typeof to === "function") { const nodes = nodeKeys.map(function(key) { return _this.connectionPool.getInstanceByKey(key); }); redis = to(nodes, command); if (Array.isArray(redis)) { redis = (0, utils_1.sample)(redis); } if (!redis) { redis = nodes[0]; } } else { let key; if (to === "all") { key = (0, utils_1.sample)(nodeKeys); } else if (to === "slave" && nodeKeys.length > 1) { key = (0, utils_1.sample)(nodeKeys, 1); } else { key = nodeKeys[0]; } redis = _this.connectionPool.getInstanceByKey(key); } } if (asking) { redis = _this.connectionPool.getInstanceByKey(asking); redis.asking(); } } if (!redis) { redis = (typeof to === "function" ? null : _this.connectionPool.getSampleInstance(to)) || _this.connectionPool.getSampleInstance("all"); } } if (node && !node.redis) { node.redis = redis; } } if (redis) { redis.sendCommand(command, stream); } else if (_this.options.enableOfflineQueue) { _this.offlineQueue.push({ command, stream, node }); } else { command.reject(new Error("Cluster isn't ready and enableOfflineQueue options is false")); } } __name(tryConnection, "tryConnection"); return command.promise; } sscanStream(key, options) { return this.createScanStream("sscan", { key, options }); } sscanBufferStream(key, options) { return this.createScanStream("sscanBuffer", { key, options }); } hscanStream(key, options) { return this.createScanStream("hscan", { key, options }); } hscanBufferStream(key, options) { return this.createScanStream("hscanBuffer", { key, options }); } zscanStream(key, options) { return this.createScanStream("zscan", { key, options }); } zscanBufferStream(key, options) { return this.createScanStream("zscanBuffer", { key, options }); } /** * @ignore */ handleError(error50, ttl, handlers2) { if (typeof ttl.value === "undefined") { ttl.value = this.options.maxRedirections; } else { ttl.value -= 1; } if (ttl.value <= 0) { handlers2.maxRedirections(new Error("Too many Cluster redirections. Last error: " + error50)); return; } const errv = error50.message.split(" "); if (errv[0] === "MOVED") { const timeout = this.options.retryDelayOnMoved; if (timeout && typeof timeout === "number") { this.delayQueue.push("moved", handlers2.moved.bind(null, errv[1], errv[2]), { timeout }); } else { handlers2.moved(errv[1], errv[2]); } } else if (errv[0] === "ASK") { handlers2.ask(errv[1], errv[2]); } else if (errv[0] === "TRYAGAIN") { this.delayQueue.push("tryagain", handlers2.tryagain, { timeout: this.options.retryDelayOnTryAgain }); } else if (errv[0] === "CLUSTERDOWN" && this.options.retryDelayOnClusterDown > 0) { this.delayQueue.push("clusterdown", handlers2.connectionClosed, { timeout: this.options.retryDelayOnClusterDown, callback: this.refreshSlotsCache.bind(this) }); } else if (error50.message === utils_1.CONNECTION_CLOSED_ERROR_MSG && this.options.retryDelayOnFailover > 0 && this.status === "ready") { this.delayQueue.push("failover", handlers2.connectionClosed, { timeout: this.options.retryDelayOnFailover, callback: this.refreshSlotsCache.bind(this) }); } else { handlers2.defaults(); } } resetOfflineQueue() { this.offlineQueue = new Deque(); } clearNodesRefreshInterval() { if (this.slotsTimer) { clearTimeout(this.slotsTimer); this.slotsTimer = null; } } resetNodesRefreshInterval() { if (this.slotsTimer || !this.options.slotsRefreshInterval) { return; } const nextRound = /* @__PURE__ */ __name(() => { this.slotsTimer = setTimeout(() => { debug3('refreshing slot caches... (triggered by "slotsRefreshInterval" option)'); this.refreshSlotsCache(() => { nextRound(); }); }, this.options.slotsRefreshInterval); }, "nextRound"); nextRound(); } /** * Change cluster instance's status */ setStatus(status) { debug3("status: %s -> %s", this.status || "[empty]", status); this.status = status; process.nextTick(() => { this.emit(status); }); } /** * Called when closed to check whether a reconnection should be made */ handleCloseEvent(reason) { var _a2; if (reason) { debug3("closed because %s", reason); } let retryDelay; if (!this.manuallyClosing && typeof this.options.clusterRetryStrategy === "function") { retryDelay = this.options.clusterRetryStrategy.call(this, ++this.retryAttempts, reason); } if (typeof retryDelay === "number") { this.setStatus("reconnecting"); this.reconnectTimeout = setTimeout(() => { this.reconnectTimeout = null; debug3("Cluster is disconnected. Retrying after %dms", retryDelay); this.connect().catch(function(err) { debug3("Got error %s when reconnecting. Ignoring...", err); }); }, retryDelay); } else { if (this.options.shardedSubscribers) { (_a2 = this.subscriberGroupEmitter) === null || _a2 === void 0 ? void 0 : _a2.removeAllListeners(); } this.setStatus("end"); this.flushQueue(new Error("None of startup nodes is available")); } } /** * Flush offline queue with error. */ flushQueue(error50) { let item; while (item = this.offlineQueue.shift()) { item.command.reject(error50); } } executeOfflineCommands() { if (this.offlineQueue.length) { debug3("send %d commands in offline queue", this.offlineQueue.length); const offlineQueue = this.offlineQueue; this.resetOfflineQueue(); let item; while (item = offlineQueue.shift()) { this.sendCommand(item.command, item.stream, item.node); } } } natMapper(nodeKey) { const key = typeof nodeKey === "string" ? nodeKey : `${nodeKey.host}:${nodeKey.port}`; let mapped = null; if (this.options.natMap && typeof this.options.natMap === "function") { mapped = this.options.natMap(key); } else if (this.options.natMap && typeof this.options.natMap === "object") { mapped = this.options.natMap[key]; } if (mapped) { debug3("NAT mapping %s -> %O", key, mapped); return Object.assign({}, mapped); } return typeof nodeKey === "string" ? (0, util_1.nodeKeyToRedisOptions)(nodeKey) : nodeKey; } getInfoFromNode(redis, callback) { if (!redis) { return callback(new Error("Node is disconnected")); } const duplicatedConnection = redis.duplicate({ enableOfflineQueue: true, enableReadyCheck: false, retryStrategy: null, connectionName: (0, util_1.getConnectionName)("refresher", this.options.redisOptions && this.options.redisOptions.connectionName) }); duplicatedConnection.on("error", utils_1.noop); duplicatedConnection.cluster("SLOTS", (0, utils_1.timeout)((err, result) => { duplicatedConnection.disconnect(); if (err) { debug3("error encountered running CLUSTER.SLOTS: %s", err); return callback(err); } if (this.status === "disconnecting" || this.status === "close" || this.status === "end") { debug3("ignore CLUSTER.SLOTS results (count: %d) since cluster status is %s", result.length, this.status); callback(); return; } const nodes = []; debug3("cluster slots result count: %d", result.length); for (let i = 0; i < result.length; ++i) { const items = result[i]; const slotRangeStart = items[0]; const slotRangeEnd = items[1]; const keys = []; for (let j2 = 2; j2 < items.length; j2++) { if (!items[j2][0]) { continue; } const node = this.natMapper({ host: items[j2][0], port: items[j2][1] }); node.readOnly = j2 !== 2; nodes.push(node); keys.push(node.host + ":" + node.port); } debug3("cluster slots result [%d]: slots %d~%d served by %s", i, slotRangeStart, slotRangeEnd, keys); for (let slot = slotRangeStart; slot <= slotRangeEnd; slot++) { this.slots[slot] = keys; } } this._groupsIds = /* @__PURE__ */ Object.create(null); let j = 0; for (let i = 0; i < 16384; i++) { const target2 = (this.slots[i] || []).join(";"); if (!target2.length) { this._groupsBySlot[i] = void 0; continue; } if (!this._groupsIds[target2]) { this._groupsIds[target2] = ++j; } this._groupsBySlot[i] = this._groupsIds[target2]; } this.connectionPool.reset(nodes); if (this.options.shardedSubscribers) { this.shardedSubscribers.reset(this.slots, this.connectionPool.getNodes("all")).catch((err2) => { debug3("Error while starting subscribers: %s", err2); }); } callback(); }, this.options.slotsRefreshTimeout)); } invokeReadyDelayedCallbacks(err) { for (const c of this._readyDelayedCallbacks) { process.nextTick(c, err); } this._readyDelayedCallbacks = []; } /** * Check whether Cluster is able to process commands */ readyCheck(callback) { this.cluster("INFO", (err, res) => { if (err) { return callback(err); } if (typeof res !== "string") { return callback(); } let state; const lines = res.split("\r\n"); for (let i = 0; i < lines.length; ++i) { const parts = lines[i].split(":"); if (parts[0] === "cluster_state") { state = parts[1]; break; } } if (state === "fail") { debug3("cluster state not ok (%s)", state); callback(null, state); } else { callback(); } }); } resolveSrv(hostname3) { return new Promise((resolve, reject) => { this.options.resolveSrv(hostname3, (err, records) => { if (err) { return reject(err); } const self2 = this, groupedRecords = (0, util_1.groupSrvRecords)(records), sortedKeys = Object.keys(groupedRecords).sort((a, b) => parseInt(a) - parseInt(b)); function tryFirstOne(err2) { if (!sortedKeys.length) { return reject(err2); } const key = sortedKeys[0], group3 = groupedRecords[key], record2 = (0, util_1.weightSrvRecords)(group3); if (!group3.records.length) { sortedKeys.shift(); } self2.dnsLookup(record2.name).then((host) => resolve({ host, port: record2.port }), tryFirstOne); } __name(tryFirstOne, "tryFirstOne"); tryFirstOne(); }); }); } dnsLookup(hostname3) { return new Promise((resolve, reject) => { this.options.dnsLookup(hostname3, (err, address) => { if (err) { debug3("failed to resolve hostname %s to IP: %s", hostname3, err.message); reject(err); } else { debug3("resolved hostname %s to IP %s", hostname3, address); resolve(address); } }); }); } /** * Normalize startup nodes, and resolving hostnames to IPs. * * This process happens every time when #connect() is called since * #startupNodes and DNS records may chanage. */ async resolveStartupNodeHostnames() { if (!Array.isArray(this.startupNodes) || this.startupNodes.length === 0) { throw new Error("`startupNodes` should contain at least one node."); } const startupNodes = (0, util_1.normalizeNodeOptions)(this.startupNodes); const hostnames = (0, util_1.getUniqueHostnamesFromOptions)(startupNodes); if (hostnames.length === 0) { return startupNodes; } const configs = await Promise.all(hostnames.map((this.options.useSRVRecords ? this.resolveSrv : this.dnsLookup).bind(this))); const hostnameToConfig = (0, utils_1.zipMap)(hostnames, configs); return startupNodes.map((node) => { const config3 = hostnameToConfig.get(node.host); if (!config3) { return node; } if (this.options.useSRVRecords) { return Object.assign({}, node, config3); } return Object.assign({}, node, { host: config3 }); }); } createScanStream(command, { key, options = {} }) { return new ScanStream_1.default({ objectMode: true, key, redis: this, command, ...options }); } createShardedSubscriberGroup() { this.subscriberGroupEmitter = new events_1.EventEmitter(); this.shardedSubscribers = new ClusterSubscriberGroup_1.default(this.subscriberGroupEmitter); const refreshSlotsCacheCallback = /* @__PURE__ */ __name((err) => { if (err instanceof ClusterAllFailedError_1.default) { this.disconnect(true); } }, "refreshSlotsCacheCallback"); this.subscriberGroupEmitter.on("-node", (redis, nodeKey) => { this.emit("-node", redis, nodeKey); this.refreshSlotsCache(refreshSlotsCacheCallback); }); this.subscriberGroupEmitter.on("subscriberConnectFailed", ({ delay: delay2, error: error50 }) => { this.emit("error", error50); setTimeout(() => { this.refreshSlotsCache(refreshSlotsCacheCallback); }, delay2); }); this.subscriberGroupEmitter.on("moved", () => { this.refreshSlotsCache(refreshSlotsCacheCallback); }); this.subscriberGroupEmitter.on("-subscriber", () => { this.emit("-subscriber"); }); this.subscriberGroupEmitter.on("+subscriber", () => { this.emit("+subscriber"); }); this.subscriberGroupEmitter.on("nodeError", (error50, nodeKey) => { this.emit("nodeError", error50, nodeKey); }); this.subscriberGroupEmitter.on("subscribersReady", () => { this.emit("subscribersReady"); }); for (const event of ["smessage", "smessageBuffer"]) { this.subscriberGroupEmitter.on(event, (arg1, arg2, arg3) => { this.emit(event, arg1, arg2, arg3); }); } } }; (0, applyMixin_1.default)(Cluster2, events_1.EventEmitter); (0, transaction_1.addTransactionSupport)(Cluster2.prototype); exports.default = Cluster2; } }); // node-built-in-modules:tls import libDefault10 from "tls"; var require_tls = __commonJS({ "node-built-in-modules:tls"(exports, module2) { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); module2.exports = libDefault10; } }); // ../../node_modules/ioredis/built/connectors/AbstractConnector.js var require_AbstractConnector = __commonJS({ "../../node_modules/ioredis/built/connectors/AbstractConnector.js"(exports) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); Object.defineProperty(exports, "__esModule", { value: true }); var utils_1 = require_utils2(); var debug3 = (0, utils_1.Debug)("AbstractConnector"); var AbstractConnector = class { static { __name(this, "AbstractConnector"); } constructor(disconnectTimeout) { this.connecting = false; this.disconnectTimeout = disconnectTimeout; } check(info3) { return true; } disconnect() { this.connecting = false; if (this.stream) { const stream = this.stream; const timeout = setTimeout(() => { debug3("stream %s:%s still open, destroying it", stream.remoteAddress, stream.remotePort); stream.destroy(); }, this.disconnectTimeout); stream.on("close", () => clearTimeout(timeout)); stream.end(); } } }; exports.default = AbstractConnector; } }); // ../../node_modules/ioredis/built/connectors/StandaloneConnector.js var require_StandaloneConnector = __commonJS({ "../../node_modules/ioredis/built/connectors/StandaloneConnector.js"(exports) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); Object.defineProperty(exports, "__esModule", { value: true }); var net_1 = require_net(); var tls_1 = require_tls(); var utils_1 = require_utils2(); var AbstractConnector_1 = require_AbstractConnector(); var StandaloneConnector = class extends AbstractConnector_1.default { static { __name(this, "StandaloneConnector"); } constructor(options) { super(options.disconnectTimeout); this.options = options; } connect(_) { const { options } = this; this.connecting = true; let connectionOptions; if ("path" in options && options.path) { connectionOptions = { path: options.path }; } else { connectionOptions = {}; if ("port" in options && options.port != null) { connectionOptions.port = options.port; } if ("host" in options && options.host != null) { connectionOptions.host = options.host; } if ("family" in options && options.family != null) { connectionOptions.family = options.family; } } if (options.tls) { Object.assign(connectionOptions, options.tls); } return new Promise((resolve, reject) => { process.nextTick(() => { if (!this.connecting) { reject(new Error(utils_1.CONNECTION_CLOSED_ERROR_MSG)); return; } try { if (options.tls) { this.stream = (0, tls_1.connect)(connectionOptions); } else { this.stream = (0, net_1.createConnection)(connectionOptions); } } catch (err) { reject(err); return; } this.stream.once("error", (err) => { this.firstError = err; }); resolve(this.stream); }); }); } }; exports.default = StandaloneConnector; } }); // ../../node_modules/ioredis/built/connectors/SentinelConnector/SentinelIterator.js var require_SentinelIterator = __commonJS({ "../../node_modules/ioredis/built/connectors/SentinelConnector/SentinelIterator.js"(exports) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); Object.defineProperty(exports, "__esModule", { value: true }); function isSentinelEql(a, b) { return (a.host || "127.0.0.1") === (b.host || "127.0.0.1") && (a.port || 26379) === (b.port || 26379); } __name(isSentinelEql, "isSentinelEql"); var SentinelIterator = class { static { __name(this, "SentinelIterator"); } constructor(sentinels) { this.cursor = 0; this.sentinels = sentinels.slice(0); } next() { const done = this.cursor >= this.sentinels.length; return { done, value: done ? void 0 : this.sentinels[this.cursor++] }; } reset(moveCurrentEndpointToFirst) { if (moveCurrentEndpointToFirst && this.sentinels.length > 1 && this.cursor !== 1) { this.sentinels.unshift(...this.sentinels.splice(this.cursor - 1)); } this.cursor = 0; } add(sentinel) { for (let i = 0; i < this.sentinels.length; i++) { if (isSentinelEql(sentinel, this.sentinels[i])) { return false; } } this.sentinels.push(sentinel); return true; } toString() { return `${JSON.stringify(this.sentinels)} @${this.cursor}`; } }; exports.default = SentinelIterator; } }); // ../../node_modules/ioredis/built/connectors/SentinelConnector/FailoverDetector.js var require_FailoverDetector = __commonJS({ "../../node_modules/ioredis/built/connectors/SentinelConnector/FailoverDetector.js"(exports) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); Object.defineProperty(exports, "__esModule", { value: true }); exports.FailoverDetector = void 0; var utils_1 = require_utils2(); var debug3 = (0, utils_1.Debug)("FailoverDetector"); var CHANNEL_NAME = "+switch-master"; var FailoverDetector = class { static { __name(this, "FailoverDetector"); } // sentinels can't be used for regular commands after this constructor(connector, sentinels) { this.isDisconnected = false; this.connector = connector; this.sentinels = sentinels; } cleanup() { this.isDisconnected = true; for (const sentinel of this.sentinels) { sentinel.client.disconnect(); } } async subscribe() { debug3("Starting FailoverDetector"); const promises = []; for (const sentinel of this.sentinels) { const promise2 = sentinel.client.subscribe(CHANNEL_NAME).catch((err) => { debug3("Failed to subscribe to failover messages on sentinel %s:%s (%s)", sentinel.address.host || "127.0.0.1", sentinel.address.port || 26739, err.message); }); promises.push(promise2); sentinel.client.on("message", (channel2) => { if (!this.isDisconnected && channel2 === CHANNEL_NAME) { this.disconnect(); } }); } await Promise.all(promises); } disconnect() { this.isDisconnected = true; debug3("Failover detected, disconnecting"); this.connector.disconnect(); } }; exports.FailoverDetector = FailoverDetector; } }); // ../../node_modules/ioredis/built/connectors/SentinelConnector/index.js var require_SentinelConnector = __commonJS({ "../../node_modules/ioredis/built/connectors/SentinelConnector/index.js"(exports) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); Object.defineProperty(exports, "__esModule", { value: true }); exports.SentinelIterator = void 0; var net_1 = require_net(); var utils_1 = require_utils2(); var tls_1 = require_tls(); var SentinelIterator_1 = require_SentinelIterator(); exports.SentinelIterator = SentinelIterator_1.default; var AbstractConnector_1 = require_AbstractConnector(); var Redis_1 = require_Redis(); var FailoverDetector_1 = require_FailoverDetector(); var debug3 = (0, utils_1.Debug)("SentinelConnector"); var SentinelConnector = class extends AbstractConnector_1.default { static { __name(this, "SentinelConnector"); } constructor(options) { super(options.disconnectTimeout); this.options = options; this.emitter = null; this.failoverDetector = null; if (!this.options.sentinels.length) { throw new Error("Requires at least one sentinel to connect to."); } if (!this.options.name) { throw new Error("Requires the name of master."); } this.sentinelIterator = new SentinelIterator_1.default(this.options.sentinels); } check(info3) { const roleMatches = !info3.role || this.options.role === info3.role; if (!roleMatches) { debug3("role invalid, expected %s, but got %s", this.options.role, info3.role); this.sentinelIterator.next(); this.sentinelIterator.next(); this.sentinelIterator.reset(true); } return roleMatches; } disconnect() { super.disconnect(); if (this.failoverDetector) { this.failoverDetector.cleanup(); } } connect(eventEmitter) { this.connecting = true; this.retryAttempts = 0; let lastError; const connectToNext = /* @__PURE__ */ __name(async () => { const endpoint = this.sentinelIterator.next(); if (endpoint.done) { this.sentinelIterator.reset(false); const retryDelay = typeof this.options.sentinelRetryStrategy === "function" ? this.options.sentinelRetryStrategy(++this.retryAttempts) : null; let errorMsg = typeof retryDelay !== "number" ? "All sentinels are unreachable and retry is disabled." : `All sentinels are unreachable. Retrying from scratch after ${retryDelay}ms.`; if (lastError) { errorMsg += ` Last error: ${lastError.message}`; } debug3(errorMsg); const error50 = new Error(errorMsg); if (typeof retryDelay === "number") { eventEmitter("error", error50); await new Promise((resolve) => setTimeout(resolve, retryDelay)); return connectToNext(); } else { throw error50; } } let resolved = null; let err = null; try { resolved = await this.resolve(endpoint.value); } catch (error50) { err = error50; } if (!this.connecting) { throw new Error(utils_1.CONNECTION_CLOSED_ERROR_MSG); } const endpointAddress = endpoint.value.host + ":" + endpoint.value.port; if (resolved) { debug3("resolved: %s:%s from sentinel %s", resolved.host, resolved.port, endpointAddress); if (this.options.enableTLSForSentinelMode && this.options.tls) { Object.assign(resolved, this.options.tls); this.stream = (0, tls_1.connect)(resolved); this.stream.once("secureConnect", this.initFailoverDetector.bind(this)); } else { this.stream = (0, net_1.createConnection)(resolved); this.stream.once("connect", this.initFailoverDetector.bind(this)); } this.stream.once("error", (err2) => { this.firstError = err2; }); return this.stream; } else { const errorMsg = err ? "failed to connect to sentinel " + endpointAddress + " because " + err.message : "connected to sentinel " + endpointAddress + " successfully, but got an invalid reply: " + resolved; debug3(errorMsg); eventEmitter("sentinelError", new Error(errorMsg)); if (err) { lastError = err; } return connectToNext(); } }, "connectToNext"); return connectToNext(); } async updateSentinels(client) { if (!this.options.updateSentinels) { return; } const result = await client.sentinel("sentinels", this.options.name); if (!Array.isArray(result)) { return; } result.map(utils_1.packObject).forEach((sentinel) => { const flags = sentinel.flags ? sentinel.flags.split(",") : []; if (flags.indexOf("disconnected") === -1 && sentinel.ip && sentinel.port) { const endpoint = this.sentinelNatResolve(addressResponseToAddress(sentinel)); if (this.sentinelIterator.add(endpoint)) { debug3("adding sentinel %s:%s", endpoint.host, endpoint.port); } } }); debug3("Updated internal sentinels: %s", this.sentinelIterator); } async resolveMaster(client) { const result = await client.sentinel("get-master-addr-by-name", this.options.name); await this.updateSentinels(client); return this.sentinelNatResolve(Array.isArray(result) ? { host: result[0], port: Number(result[1]) } : null); } async resolveSlave(client) { const result = await client.sentinel("slaves", this.options.name); if (!Array.isArray(result)) { return null; } const availableSlaves = result.map(utils_1.packObject).filter((slave) => slave.flags && !slave.flags.match(/(disconnected|s_down|o_down)/)); return this.sentinelNatResolve(selectPreferredSentinel(availableSlaves, this.options.preferredSlaves)); } sentinelNatResolve(item) { if (!item || !this.options.natMap) return item; const key = `${item.host}:${item.port}`; let result = item; if (typeof this.options.natMap === "function") { result = this.options.natMap(key) || item; } else if (typeof this.options.natMap === "object") { result = this.options.natMap[key] || item; } return result; } connectToSentinel(endpoint, options) { const redis = new Redis_1.default({ port: endpoint.port || 26379, host: endpoint.host, username: this.options.sentinelUsername || null, password: this.options.sentinelPassword || null, family: endpoint.family || // @ts-expect-error ("path" in this.options && this.options.path ? void 0 : ( // @ts-expect-error this.options.family )), tls: this.options.sentinelTLS, retryStrategy: null, enableReadyCheck: false, connectTimeout: this.options.connectTimeout, commandTimeout: this.options.sentinelCommandTimeout, ...options }); return redis; } async resolve(endpoint) { const client = this.connectToSentinel(endpoint); client.on("error", noop3); try { if (this.options.role === "slave") { return await this.resolveSlave(client); } else { return await this.resolveMaster(client); } } finally { client.disconnect(); } } async initFailoverDetector() { var _a2; if (!this.options.failoverDetector) { return; } this.sentinelIterator.reset(true); const sentinels = []; while (sentinels.length < this.options.sentinelMaxConnections) { const { done, value } = this.sentinelIterator.next(); if (done) { break; } const client = this.connectToSentinel(value, { lazyConnect: true, retryStrategy: this.options.sentinelReconnectStrategy }); client.on("reconnecting", () => { var _a3; (_a3 = this.emitter) === null || _a3 === void 0 ? void 0 : _a3.emit("sentinelReconnecting"); }); sentinels.push({ address: value, client }); } this.sentinelIterator.reset(false); if (this.failoverDetector) { this.failoverDetector.cleanup(); } this.failoverDetector = new FailoverDetector_1.FailoverDetector(this, sentinels); await this.failoverDetector.subscribe(); (_a2 = this.emitter) === null || _a2 === void 0 ? void 0 : _a2.emit("failoverSubscribed"); } }; exports.default = SentinelConnector; function selectPreferredSentinel(availableSlaves, preferredSlaves) { if (availableSlaves.length === 0) { return null; } let selectedSlave; if (typeof preferredSlaves === "function") { selectedSlave = preferredSlaves(availableSlaves); } else if (preferredSlaves !== null && typeof preferredSlaves === "object") { const preferredSlavesArray = Array.isArray(preferredSlaves) ? preferredSlaves : [preferredSlaves]; preferredSlavesArray.sort((a, b) => { if (!a.prio) { a.prio = 1; } if (!b.prio) { b.prio = 1; } if (a.prio < b.prio) { return -1; } if (a.prio > b.prio) { return 1; } return 0; }); for (let p = 0; p < preferredSlavesArray.length; p++) { for (let a = 0; a < availableSlaves.length; a++) { const slave = availableSlaves[a]; if (slave.ip === preferredSlavesArray[p].ip) { if (slave.port === preferredSlavesArray[p].port) { selectedSlave = slave; break; } } } if (selectedSlave) { break; } } } if (!selectedSlave) { selectedSlave = (0, utils_1.sample)(availableSlaves); } return addressResponseToAddress(selectedSlave); } __name(selectPreferredSentinel, "selectPreferredSentinel"); function addressResponseToAddress(input) { return { host: input.ip, port: Number(input.port) }; } __name(addressResponseToAddress, "addressResponseToAddress"); function noop3() { } __name(noop3, "noop"); } }); // ../../node_modules/ioredis/built/connectors/index.js var require_connectors = __commonJS({ "../../node_modules/ioredis/built/connectors/index.js"(exports) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); Object.defineProperty(exports, "__esModule", { value: true }); exports.SentinelConnector = exports.StandaloneConnector = void 0; var StandaloneConnector_1 = require_StandaloneConnector(); exports.StandaloneConnector = StandaloneConnector_1.default; var SentinelConnector_1 = require_SentinelConnector(); exports.SentinelConnector = SentinelConnector_1.default; } }); // ../../node_modules/ioredis/built/errors/MaxRetriesPerRequestError.js var require_MaxRetriesPerRequestError = __commonJS({ "../../node_modules/ioredis/built/errors/MaxRetriesPerRequestError.js"(exports) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); Object.defineProperty(exports, "__esModule", { value: true }); var redis_errors_1 = require_redis_errors(); var MaxRetriesPerRequestError = class extends redis_errors_1.AbortError { static { __name(this, "MaxRetriesPerRequestError"); } constructor(maxRetriesPerRequest) { const message2 = `Reached the max retries per request limit (which is ${maxRetriesPerRequest}). Refer to "maxRetriesPerRequest" option for details.`; super(message2); Error.captureStackTrace(this, this.constructor); } get name() { return this.constructor.name; } }; exports.default = MaxRetriesPerRequestError; } }); // ../../node_modules/ioredis/built/errors/index.js var require_errors = __commonJS({ "../../node_modules/ioredis/built/errors/index.js"(exports) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); Object.defineProperty(exports, "__esModule", { value: true }); exports.MaxRetriesPerRequestError = void 0; var MaxRetriesPerRequestError_1 = require_MaxRetriesPerRequestError(); exports.MaxRetriesPerRequestError = MaxRetriesPerRequestError_1.default; } }); // node-built-in-modules:buffer import libDefault11 from "buffer"; var require_buffer = __commonJS({ "node-built-in-modules:buffer"(exports, module2) { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); module2.exports = libDefault11; } }); // node-built-in-modules:string_decoder import libDefault12 from "string_decoder"; var require_string_decoder = __commonJS({ "node-built-in-modules:string_decoder"(exports, module2) { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); module2.exports = libDefault12; } }); // ../../node_modules/redis-parser/lib/parser.js var require_parser = __commonJS({ "../../node_modules/redis-parser/lib/parser.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var Buffer2 = require_buffer().Buffer; var StringDecoder = require_string_decoder().StringDecoder; var decoder3 = new StringDecoder(); var errors2 = require_redis_errors(); var ReplyError = errors2.ReplyError; var ParserError = errors2.ParserError; var bufferPool = Buffer2.allocUnsafe(32 * 1024); var bufferOffset = 0; var interval = null; var counter = 0; var notDecreased = 0; function parseSimpleNumbers(parser) { const length = parser.buffer.length - 1; var offset = parser.offset; var number4 = 0; var sign2 = 1; if (parser.buffer[offset] === 45) { sign2 = -1; offset++; } while (offset < length) { const c1 = parser.buffer[offset++]; if (c1 === 13) { parser.offset = offset + 1; return sign2 * number4; } number4 = number4 * 10 + (c1 - 48); } } __name(parseSimpleNumbers, "parseSimpleNumbers"); function parseStringNumbers(parser) { const length = parser.buffer.length - 1; var offset = parser.offset; var number4 = 0; var res = ""; if (parser.buffer[offset] === 45) { res += "-"; offset++; } while (offset < length) { var c1 = parser.buffer[offset++]; if (c1 === 13) { parser.offset = offset + 1; if (number4 !== 0) { res += number4; } return res; } else if (number4 > 429496728) { res += number4 * 10 + (c1 - 48); number4 = 0; } else if (c1 === 48 && number4 === 0) { res += 0; } else { number4 = number4 * 10 + (c1 - 48); } } } __name(parseStringNumbers, "parseStringNumbers"); function parseSimpleString(parser) { const start = parser.offset; const buffer = parser.buffer; const length = buffer.length - 1; var offset = start; while (offset < length) { if (buffer[offset++] === 13) { parser.offset = offset + 1; if (parser.optionReturnBuffers === true) { return parser.buffer.slice(start, offset - 1); } return parser.buffer.toString("utf8", start, offset - 1); } } } __name(parseSimpleString, "parseSimpleString"); function parseLength(parser) { const length = parser.buffer.length - 1; var offset = parser.offset; var number4 = 0; while (offset < length) { const c1 = parser.buffer[offset++]; if (c1 === 13) { parser.offset = offset + 1; return number4; } number4 = number4 * 10 + (c1 - 48); } } __name(parseLength, "parseLength"); function parseInteger(parser) { if (parser.optionStringNumbers === true) { return parseStringNumbers(parser); } return parseSimpleNumbers(parser); } __name(parseInteger, "parseInteger"); function parseBulkString(parser) { const length = parseLength(parser); if (length === void 0) { return; } if (length < 0) { return null; } const offset = parser.offset + length; if (offset + 2 > parser.buffer.length) { parser.bigStrSize = offset + 2; parser.totalChunkSize = parser.buffer.length; parser.bufferCache.push(parser.buffer); return; } const start = parser.offset; parser.offset = offset + 2; if (parser.optionReturnBuffers === true) { return parser.buffer.slice(start, offset); } return parser.buffer.toString("utf8", start, offset); } __name(parseBulkString, "parseBulkString"); function parseError(parser) { var string4 = parseSimpleString(parser); if (string4 !== void 0) { if (parser.optionReturnBuffers === true) { string4 = string4.toString(); } return new ReplyError(string4); } } __name(parseError, "parseError"); function handleError(parser, type) { const err = new ParserError( "Protocol error, got " + JSON.stringify(String.fromCharCode(type)) + " as reply type byte", JSON.stringify(parser.buffer), parser.offset ); parser.buffer = null; parser.returnFatalError(err); } __name(handleError, "handleError"); function parseArray(parser) { const length = parseLength(parser); if (length === void 0) { return; } if (length < 0) { return null; } const responses = new Array(length); return parseArrayElements(parser, responses, 0); } __name(parseArray, "parseArray"); function pushArrayCache(parser, array2, pos) { parser.arrayCache.push(array2); parser.arrayPos.push(pos); } __name(pushArrayCache, "pushArrayCache"); function parseArrayChunks(parser) { const tmp = parser.arrayCache.pop(); var pos = parser.arrayPos.pop(); if (parser.arrayCache.length) { const res = parseArrayChunks(parser); if (res === void 0) { pushArrayCache(parser, tmp, pos); return; } tmp[pos++] = res; } return parseArrayElements(parser, tmp, pos); } __name(parseArrayChunks, "parseArrayChunks"); function parseArrayElements(parser, responses, i) { const bufferLength = parser.buffer.length; while (i < responses.length) { const offset = parser.offset; if (parser.offset >= bufferLength) { pushArrayCache(parser, responses, i); return; } const response = parseType(parser, parser.buffer[parser.offset++]); if (response === void 0) { if (!(parser.arrayCache.length || parser.bufferCache.length)) { parser.offset = offset; } pushArrayCache(parser, responses, i); return; } responses[i] = response; i++; } return responses; } __name(parseArrayElements, "parseArrayElements"); function parseType(parser, type) { switch (type) { case 36: return parseBulkString(parser); case 43: return parseSimpleString(parser); case 42: return parseArray(parser); case 58: return parseInteger(parser); case 45: return parseError(parser); default: return handleError(parser, type); } } __name(parseType, "parseType"); function decreaseBufferPool() { if (bufferPool.length > 50 * 1024) { if (counter === 1 || notDecreased > counter * 2) { const minSliceLen = Math.floor(bufferPool.length / 10); const sliceLength = minSliceLen < bufferOffset ? bufferOffset : minSliceLen; bufferOffset = 0; bufferPool = bufferPool.slice(sliceLength, bufferPool.length); } else { notDecreased++; counter--; } } else { clearInterval(interval); counter = 0; notDecreased = 0; interval = null; } } __name(decreaseBufferPool, "decreaseBufferPool"); function resizeBuffer(length) { if (bufferPool.length < length + bufferOffset) { const multiplier = length > 1024 * 1024 * 75 ? 2 : 3; if (bufferOffset > 1024 * 1024 * 111) { bufferOffset = 1024 * 1024 * 50; } bufferPool = Buffer2.allocUnsafe(length * multiplier + bufferOffset); bufferOffset = 0; counter++; if (interval === null) { interval = setInterval(decreaseBufferPool, 50); } } } __name(resizeBuffer, "resizeBuffer"); function concatBulkString(parser) { const list = parser.bufferCache; const oldOffset = parser.offset; var chunks = list.length; var offset = parser.bigStrSize - parser.totalChunkSize; parser.offset = offset; if (offset <= 2) { if (chunks === 2) { return list[0].toString("utf8", oldOffset, list[0].length + offset - 2); } chunks--; offset = list[list.length - 2].length + offset; } var res = decoder3.write(list[0].slice(oldOffset)); for (var i = 1; i < chunks - 1; i++) { res += decoder3.write(list[i]); } res += decoder3.end(list[i].slice(0, offset - 2)); return res; } __name(concatBulkString, "concatBulkString"); function concatBulkBuffer(parser) { const list = parser.bufferCache; const oldOffset = parser.offset; const length = parser.bigStrSize - oldOffset - 2; var chunks = list.length; var offset = parser.bigStrSize - parser.totalChunkSize; parser.offset = offset; if (offset <= 2) { if (chunks === 2) { return list[0].slice(oldOffset, list[0].length + offset - 2); } chunks--; offset = list[list.length - 2].length + offset; } resizeBuffer(length); const start = bufferOffset; list[0].copy(bufferPool, start, oldOffset, list[0].length); bufferOffset += list[0].length - oldOffset; for (var i = 1; i < chunks - 1; i++) { list[i].copy(bufferPool, bufferOffset); bufferOffset += list[i].length; } list[i].copy(bufferPool, bufferOffset, 0, offset - 2); bufferOffset += offset - 2; return bufferPool.slice(start, bufferOffset); } __name(concatBulkBuffer, "concatBulkBuffer"); var JavascriptRedisParser = class { static { __name(this, "JavascriptRedisParser"); } /** * Javascript Redis Parser constructor * @param {{returnError: Function, returnReply: Function, returnFatalError?: Function, returnBuffers: boolean, stringNumbers: boolean }} options * @constructor */ constructor(options) { if (!options) { throw new TypeError("Options are mandatory."); } if (typeof options.returnError !== "function" || typeof options.returnReply !== "function") { throw new TypeError("The returnReply and returnError options have to be functions."); } this.setReturnBuffers(!!options.returnBuffers); this.setStringNumbers(!!options.stringNumbers); this.returnError = options.returnError; this.returnFatalError = options.returnFatalError || options.returnError; this.returnReply = options.returnReply; this.reset(); } /** * Reset the parser values to the initial state * * @returns {undefined} */ reset() { this.offset = 0; this.buffer = null; this.bigStrSize = 0; this.totalChunkSize = 0; this.bufferCache = []; this.arrayCache = []; this.arrayPos = []; } /** * Set the returnBuffers option * * @param {boolean} returnBuffers * @returns {undefined} */ setReturnBuffers(returnBuffers) { if (typeof returnBuffers !== "boolean") { throw new TypeError("The returnBuffers argument has to be a boolean"); } this.optionReturnBuffers = returnBuffers; } /** * Set the stringNumbers option * * @param {boolean} stringNumbers * @returns {undefined} */ setStringNumbers(stringNumbers) { if (typeof stringNumbers !== "boolean") { throw new TypeError("The stringNumbers argument has to be a boolean"); } this.optionStringNumbers = stringNumbers; } /** * Parse the redis buffer * @param {Buffer} buffer * @returns {undefined} */ execute(buffer) { if (this.buffer === null) { this.buffer = buffer; this.offset = 0; } else if (this.bigStrSize === 0) { const oldLength = this.buffer.length; const remainingLength = oldLength - this.offset; const newBuffer = Buffer2.allocUnsafe(remainingLength + buffer.length); this.buffer.copy(newBuffer, 0, this.offset, oldLength); buffer.copy(newBuffer, remainingLength, 0, buffer.length); this.buffer = newBuffer; this.offset = 0; if (this.arrayCache.length) { const arr = parseArrayChunks(this); if (arr === void 0) { return; } this.returnReply(arr); } } else if (this.totalChunkSize + buffer.length >= this.bigStrSize) { this.bufferCache.push(buffer); var tmp = this.optionReturnBuffers ? concatBulkBuffer(this) : concatBulkString(this); this.bigStrSize = 0; this.bufferCache = []; this.buffer = buffer; if (this.arrayCache.length) { this.arrayCache[0][this.arrayPos[0]++] = tmp; tmp = parseArrayChunks(this); if (tmp === void 0) { return; } } this.returnReply(tmp); } else { this.bufferCache.push(buffer); this.totalChunkSize += buffer.length; return; } while (this.offset < this.buffer.length) { const offset = this.offset; const type = this.buffer[this.offset++]; const response = parseType(this, type); if (response === void 0) { if (!(this.arrayCache.length || this.bufferCache.length)) { this.offset = offset; } return; } if (type === 45) { this.returnError(response); } else { this.returnReply(response); } } this.buffer = null; } }; module2.exports = JavascriptRedisParser; } }); // ../../node_modules/redis-parser/index.js var require_redis_parser = __commonJS({ "../../node_modules/redis-parser/index.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); module2.exports = require_parser(); } }); // ../../node_modules/ioredis/built/SubscriptionSet.js var require_SubscriptionSet = __commonJS({ "../../node_modules/ioredis/built/SubscriptionSet.js"(exports) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); Object.defineProperty(exports, "__esModule", { value: true }); var SubscriptionSet = class { static { __name(this, "SubscriptionSet"); } constructor() { this.set = { subscribe: {}, psubscribe: {}, ssubscribe: {} }; } add(set2, channel2) { this.set[mapSet(set2)][channel2] = true; } del(set2, channel2) { delete this.set[mapSet(set2)][channel2]; } channels(set2) { return Object.keys(this.set[mapSet(set2)]); } isEmpty() { return this.channels("subscribe").length === 0 && this.channels("psubscribe").length === 0 && this.channels("ssubscribe").length === 0; } }; exports.default = SubscriptionSet; function mapSet(set2) { if (set2 === "unsubscribe") { return "subscribe"; } if (set2 === "punsubscribe") { return "psubscribe"; } if (set2 === "sunsubscribe") { return "ssubscribe"; } return set2; } __name(mapSet, "mapSet"); } }); // ../../node_modules/ioredis/built/DataHandler.js var require_DataHandler = __commonJS({ "../../node_modules/ioredis/built/DataHandler.js"(exports) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); Object.defineProperty(exports, "__esModule", { value: true }); var Command_1 = require_Command(); var utils_1 = require_utils2(); var RedisParser = require_redis_parser(); var SubscriptionSet_1 = require_SubscriptionSet(); var debug3 = (0, utils_1.Debug)("dataHandler"); var DataHandler = class { static { __name(this, "DataHandler"); } constructor(redis, parserOptions) { this.redis = redis; const parser = new RedisParser({ stringNumbers: parserOptions.stringNumbers, returnBuffers: true, returnError: /* @__PURE__ */ __name((err) => { this.returnError(err); }, "returnError"), returnFatalError: /* @__PURE__ */ __name((err) => { this.returnFatalError(err); }, "returnFatalError"), returnReply: /* @__PURE__ */ __name((reply) => { this.returnReply(reply); }, "returnReply") }); redis.stream.prependListener("data", (data) => { parser.execute(data); }); redis.stream.resume(); } returnFatalError(err) { err.message += ". Please report this."; this.redis.recoverFromFatalError(err, err, { offlineQueue: false }); } returnError(err) { const item = this.shiftCommand(err); if (!item) { return; } err.command = { name: item.command.name, args: item.command.args }; if (item.command.name == "ssubscribe" && err.message.includes("MOVED")) { this.redis.emit("moved"); return; } this.redis.handleReconnection(err, item); } returnReply(reply) { if (this.handleMonitorReply(reply)) { return; } if (this.handleSubscriberReply(reply)) { return; } const item = this.shiftCommand(reply); if (!item) { return; } if (Command_1.default.checkFlag("ENTER_SUBSCRIBER_MODE", item.command.name)) { this.redis.condition.subscriber = new SubscriptionSet_1.default(); this.redis.condition.subscriber.add(item.command.name, reply[1].toString()); if (!fillSubCommand(item.command, reply[2])) { this.redis.commandQueue.unshift(item); } } else if (Command_1.default.checkFlag("EXIT_SUBSCRIBER_MODE", item.command.name)) { if (!fillUnsubCommand(item.command, reply[2])) { this.redis.commandQueue.unshift(item); } } else { item.command.resolve(reply); } } handleSubscriberReply(reply) { if (!this.redis.condition.subscriber) { return false; } const replyType = Array.isArray(reply) ? reply[0].toString() : null; debug3('receive reply "%s" in subscriber mode', replyType); switch (replyType) { case "message": if (this.redis.listeners("message").length > 0) { this.redis.emit("message", reply[1].toString(), reply[2] ? reply[2].toString() : ""); } this.redis.emit("messageBuffer", reply[1], reply[2]); break; case "pmessage": { const pattern = reply[1].toString(); if (this.redis.listeners("pmessage").length > 0) { this.redis.emit("pmessage", pattern, reply[2].toString(), reply[3].toString()); } this.redis.emit("pmessageBuffer", pattern, reply[2], reply[3]); break; } case "smessage": { if (this.redis.listeners("smessage").length > 0) { this.redis.emit("smessage", reply[1].toString(), reply[2] ? reply[2].toString() : ""); } this.redis.emit("smessageBuffer", reply[1], reply[2]); break; } case "ssubscribe": case "subscribe": case "psubscribe": { const channel2 = reply[1].toString(); this.redis.condition.subscriber.add(replyType, channel2); const item = this.shiftCommand(reply); if (!item) { return; } if (!fillSubCommand(item.command, reply[2])) { this.redis.commandQueue.unshift(item); } break; } case "sunsubscribe": case "unsubscribe": case "punsubscribe": { const channel2 = reply[1] ? reply[1].toString() : null; if (channel2) { this.redis.condition.subscriber.del(replyType, channel2); } const count4 = reply[2]; if (Number(count4) === 0) { this.redis.condition.subscriber = false; } const item = this.shiftCommand(reply); if (!item) { return; } if (!fillUnsubCommand(item.command, count4)) { this.redis.commandQueue.unshift(item); } break; } default: { const item = this.shiftCommand(reply); if (!item) { return; } item.command.resolve(reply); } } return true; } handleMonitorReply(reply) { if (this.redis.status !== "monitoring") { return false; } const replyStr = reply.toString(); if (replyStr === "OK") { return false; } const len = replyStr.indexOf(" "); const timestamp = replyStr.slice(0, len); const argIndex = replyStr.indexOf('"'); const args = replyStr.slice(argIndex + 1, -1).split('" "').map((elem) => elem.replace(/\\"/g, '"')); const dbAndSource = replyStr.slice(len + 2, argIndex - 2).split(" "); this.redis.emit("monitor", timestamp, args, dbAndSource[1], dbAndSource[0]); return true; } shiftCommand(reply) { const item = this.redis.commandQueue.shift(); if (!item) { const message2 = "Command queue state error. If you can reproduce this, please report it."; const error50 = new Error(message2 + (reply instanceof Error ? ` Last error: ${reply.message}` : ` Last reply: ${reply.toString()}`)); this.redis.emit("error", error50); return null; } return item; } }; exports.default = DataHandler; var remainingRepliesMap = /* @__PURE__ */ new WeakMap(); function fillSubCommand(command, count4) { let remainingReplies = remainingRepliesMap.has(command) ? remainingRepliesMap.get(command) : command.args.length; remainingReplies -= 1; if (remainingReplies <= 0) { command.resolve(count4); remainingRepliesMap.delete(command); return true; } remainingRepliesMap.set(command, remainingReplies); return false; } __name(fillSubCommand, "fillSubCommand"); function fillUnsubCommand(command, count4) { let remainingReplies = remainingRepliesMap.has(command) ? remainingRepliesMap.get(command) : command.args.length; if (remainingReplies === 0) { if (Number(count4) === 0) { remainingRepliesMap.delete(command); command.resolve(count4); return true; } return false; } remainingReplies -= 1; if (remainingReplies <= 0) { command.resolve(count4); return true; } remainingRepliesMap.set(command, remainingReplies); return false; } __name(fillUnsubCommand, "fillUnsubCommand"); } }); // ../../node_modules/ioredis/built/redis/event_handler.js var require_event_handler = __commonJS({ "../../node_modules/ioredis/built/redis/event_handler.js"(exports) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); Object.defineProperty(exports, "__esModule", { value: true }); exports.readyHandler = exports.errorHandler = exports.closeHandler = exports.connectHandler = void 0; var redis_errors_1 = require_redis_errors(); var Command_1 = require_Command(); var errors_1 = require_errors(); var utils_1 = require_utils2(); var DataHandler_1 = require_DataHandler(); var debug3 = (0, utils_1.Debug)("connection"); function connectHandler(self2) { return function() { var _a2; self2.setStatus("connect"); self2.resetCommandQueue(); let flushed = false; const { connectionEpoch } = self2; if (self2.condition.auth) { self2.auth(self2.condition.auth, function(err) { if (connectionEpoch !== self2.connectionEpoch) { return; } if (err) { if (err.message.indexOf("no password is set") !== -1) { console.warn("[WARN] Redis server does not require a password, but a password was supplied."); } else if (err.message.indexOf("without any password configured for the default user") !== -1) { console.warn("[WARN] This Redis server's `default` user does not require a password, but a password was supplied"); } else if (err.message.indexOf("wrong number of arguments for 'auth' command") !== -1) { console.warn(`[ERROR] The server returned "wrong number of arguments for 'auth' command". You are probably passing both username and password to Redis version 5 or below. You should only pass the 'password' option for Redis version 5 and under.`); } else { flushed = true; self2.recoverFromFatalError(err, err); } } }); } if (self2.condition.select) { self2.select(self2.condition.select).catch((err) => { self2.silentEmit("error", err); }); } new DataHandler_1.default(self2, { stringNumbers: self2.options.stringNumbers }); const clientCommandPromises = []; if (self2.options.connectionName) { debug3("set the connection name [%s]", self2.options.connectionName); clientCommandPromises.push(self2.client("setname", self2.options.connectionName).catch(utils_1.noop)); } if (!self2.options.disableClientInfo) { debug3("set the client info"); clientCommandPromises.push((0, utils_1.getPackageMeta)().then((packageMeta) => { return self2.client("SETINFO", "LIB-VER", packageMeta.version).catch(utils_1.noop); }).catch(utils_1.noop)); clientCommandPromises.push(self2.client("SETINFO", "LIB-NAME", ((_a2 = self2.options) === null || _a2 === void 0 ? void 0 : _a2.clientInfoTag) ? `ioredis(${self2.options.clientInfoTag})` : "ioredis").catch(utils_1.noop)); } Promise.all(clientCommandPromises).catch(utils_1.noop).finally(() => { if (!self2.options.enableReadyCheck) { exports.readyHandler(self2)(); } if (self2.options.enableReadyCheck) { self2._readyCheck(function(err, info3) { if (connectionEpoch !== self2.connectionEpoch) { return; } if (err) { if (!flushed) { self2.recoverFromFatalError(new Error("Ready check failed: " + err.message), err); } } else { if (self2.connector.check(info3)) { exports.readyHandler(self2)(); } else { self2.disconnect(true); } } }); } }); }; } __name(connectHandler, "connectHandler"); exports.connectHandler = connectHandler; function abortError(command) { const err = new redis_errors_1.AbortError("Command aborted due to connection close"); err.command = { name: command.name, args: command.args }; return err; } __name(abortError, "abortError"); function abortIncompletePipelines(commandQueue) { var _a2; let expectedIndex = 0; for (let i = 0; i < commandQueue.length; ) { const command = (_a2 = commandQueue.peekAt(i)) === null || _a2 === void 0 ? void 0 : _a2.command; const pipelineIndex = command.pipelineIndex; if (pipelineIndex === void 0 || pipelineIndex === 0) { expectedIndex = 0; } if (pipelineIndex !== void 0 && pipelineIndex !== expectedIndex++) { commandQueue.remove(i, 1); command.reject(abortError(command)); continue; } i++; } } __name(abortIncompletePipelines, "abortIncompletePipelines"); function abortTransactionFragments(commandQueue) { var _a2; for (let i = 0; i < commandQueue.length; ) { const command = (_a2 = commandQueue.peekAt(i)) === null || _a2 === void 0 ? void 0 : _a2.command; if (command.name === "multi") { break; } if (command.name === "exec") { commandQueue.remove(i, 1); command.reject(abortError(command)); break; } if (command.inTransaction) { commandQueue.remove(i, 1); command.reject(abortError(command)); } else { i++; } } } __name(abortTransactionFragments, "abortTransactionFragments"); function closeHandler(self2) { return function() { const prevStatus = self2.status; self2.setStatus("close"); if (self2.commandQueue.length) { abortIncompletePipelines(self2.commandQueue); } if (self2.offlineQueue.length) { abortTransactionFragments(self2.offlineQueue); } if (prevStatus === "ready") { if (!self2.prevCondition) { self2.prevCondition = self2.condition; } if (self2.commandQueue.length) { self2.prevCommandQueue = self2.commandQueue; } } if (self2.manuallyClosing) { self2.manuallyClosing = false; debug3("skip reconnecting since the connection is manually closed."); return close2(); } if (typeof self2.options.retryStrategy !== "function") { debug3("skip reconnecting because `retryStrategy` is not a function"); return close2(); } const retryDelay = self2.options.retryStrategy(++self2.retryAttempts); if (typeof retryDelay !== "number") { debug3("skip reconnecting because `retryStrategy` doesn't return a number"); return close2(); } debug3("reconnect in %sms", retryDelay); self2.setStatus("reconnecting", retryDelay); self2.reconnectTimeout = setTimeout(function() { self2.reconnectTimeout = null; self2.connect().catch(utils_1.noop); }, retryDelay); const { maxRetriesPerRequest } = self2.options; if (typeof maxRetriesPerRequest === "number") { if (maxRetriesPerRequest < 0) { debug3("maxRetriesPerRequest is negative, ignoring..."); } else { const remainder = self2.retryAttempts % (maxRetriesPerRequest + 1); if (remainder === 0) { debug3("reach maxRetriesPerRequest limitation, flushing command queue..."); self2.flushQueue(new errors_1.MaxRetriesPerRequestError(maxRetriesPerRequest)); } } } }; function close2() { self2.setStatus("end"); self2.flushQueue(new Error(utils_1.CONNECTION_CLOSED_ERROR_MSG)); } __name(close2, "close"); } __name(closeHandler, "closeHandler"); exports.closeHandler = closeHandler; function errorHandler2(self2) { return function(error50) { debug3("error: %s", error50); self2.silentEmit("error", error50); }; } __name(errorHandler2, "errorHandler"); exports.errorHandler = errorHandler2; function readyHandler(self2) { return function() { self2.setStatus("ready"); self2.retryAttempts = 0; if (self2.options.monitor) { self2.call("monitor").then(() => self2.setStatus("monitoring"), (error50) => self2.emit("error", error50)); const { sendCommand } = self2; self2.sendCommand = function(command) { if (Command_1.default.checkFlag("VALID_IN_MONITOR_MODE", command.name)) { return sendCommand.call(self2, command); } command.reject(new Error("Connection is in monitoring mode, can't process commands.")); return command.promise; }; self2.once("close", function() { delete self2.sendCommand; }); return; } const finalSelect = self2.prevCondition ? self2.prevCondition.select : self2.condition.select; if (self2.options.readOnly) { debug3("set the connection to readonly mode"); self2.readonly().catch(utils_1.noop); } if (self2.prevCondition) { const condition = self2.prevCondition; self2.prevCondition = null; if (condition.subscriber && self2.options.autoResubscribe) { if (self2.condition.select !== finalSelect) { debug3("connect to db [%d]", finalSelect); self2.select(finalSelect); } const subscribeChannels = condition.subscriber.channels("subscribe"); if (subscribeChannels.length) { debug3("subscribe %d channels", subscribeChannels.length); self2.subscribe(subscribeChannels); } const psubscribeChannels = condition.subscriber.channels("psubscribe"); if (psubscribeChannels.length) { debug3("psubscribe %d channels", psubscribeChannels.length); self2.psubscribe(psubscribeChannels); } const ssubscribeChannels = condition.subscriber.channels("ssubscribe"); if (ssubscribeChannels.length) { debug3("ssubscribe %s", ssubscribeChannels.length); for (const channel2 of ssubscribeChannels) { self2.ssubscribe(channel2); } } } } if (self2.prevCommandQueue) { if (self2.options.autoResendUnfulfilledCommands) { debug3("resend %d unfulfilled commands", self2.prevCommandQueue.length); while (self2.prevCommandQueue.length > 0) { const item = self2.prevCommandQueue.shift(); if (item.select !== self2.condition.select && item.command.name !== "select") { self2.select(item.select); } self2.sendCommand(item.command, item.stream); } } else { self2.prevCommandQueue = null; } } if (self2.offlineQueue.length) { debug3("send %d commands in offline queue", self2.offlineQueue.length); const offlineQueue = self2.offlineQueue; self2.resetOfflineQueue(); while (offlineQueue.length > 0) { const item = offlineQueue.shift(); if (item.select !== self2.condition.select && item.command.name !== "select") { self2.select(item.select); } self2.sendCommand(item.command, item.stream); } } if (self2.condition.select !== finalSelect) { debug3("connect to db [%d]", finalSelect); self2.select(finalSelect); } }; } __name(readyHandler, "readyHandler"); exports.readyHandler = readyHandler; } }); // ../../node_modules/ioredis/built/redis/RedisOptions.js var require_RedisOptions = __commonJS({ "../../node_modules/ioredis/built/redis/RedisOptions.js"(exports) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); Object.defineProperty(exports, "__esModule", { value: true }); exports.DEFAULT_REDIS_OPTIONS = void 0; exports.DEFAULT_REDIS_OPTIONS = { // Connection port: 6379, host: "localhost", family: 0, connectTimeout: 1e4, disconnectTimeout: 2e3, retryStrategy: /* @__PURE__ */ __name(function(times) { return Math.min(times * 50, 2e3); }, "retryStrategy"), keepAlive: 0, noDelay: true, connectionName: null, disableClientInfo: false, clientInfoTag: void 0, // Sentinel sentinels: null, name: null, role: "master", sentinelRetryStrategy: /* @__PURE__ */ __name(function(times) { return Math.min(times * 10, 1e3); }, "sentinelRetryStrategy"), sentinelReconnectStrategy: /* @__PURE__ */ __name(function() { return 6e4; }, "sentinelReconnectStrategy"), natMap: null, enableTLSForSentinelMode: false, updateSentinels: true, failoverDetector: false, // Status username: null, password: null, db: 0, // Others enableOfflineQueue: true, enableReadyCheck: true, autoResubscribe: true, autoResendUnfulfilledCommands: true, lazyConnect: false, keyPrefix: "", reconnectOnError: null, readOnly: false, stringNumbers: false, maxRetriesPerRequest: 20, maxLoadingRetryTime: 1e4, enableAutoPipelining: false, autoPipeliningIgnoredCommands: [], sentinelMaxConnections: 10, blockingTimeoutGrace: 100 }; } }); // ../../node_modules/ioredis/built/Redis.js var require_Redis = __commonJS({ "../../node_modules/ioredis/built/Redis.js"(exports) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); Object.defineProperty(exports, "__esModule", { value: true }); var commands_1 = require_built(); var events_1 = require_events(); var standard_as_callback_1 = require_built2(); var cluster_1 = require_cluster(); var Command_1 = require_Command(); var connectors_1 = require_connectors(); var SentinelConnector_1 = require_SentinelConnector(); var eventHandler = require_event_handler(); var RedisOptions_1 = require_RedisOptions(); var ScanStream_1 = require_ScanStream(); var transaction_1 = require_transaction(); var utils_1 = require_utils2(); var applyMixin_1 = require_applyMixin(); var Commander_1 = require_Commander(); var lodash_1 = require_lodash3(); var Deque = require_denque(); var debug3 = (0, utils_1.Debug)("redis"); var Redis = class _Redis extends Commander_1.default { static { __name(this, "Redis"); } constructor(arg1, arg2, arg3) { super(); this.status = "wait"; this.isCluster = false; this.reconnectTimeout = null; this.connectionEpoch = 0; this.retryAttempts = 0; this.manuallyClosing = false; this._autoPipelines = /* @__PURE__ */ new Map(); this._runningAutoPipelines = /* @__PURE__ */ new Set(); this.parseOptions(arg1, arg2, arg3); events_1.EventEmitter.call(this); this.resetCommandQueue(); this.resetOfflineQueue(); if (this.options.Connector) { this.connector = new this.options.Connector(this.options); } else if (this.options.sentinels) { const sentinelConnector = new SentinelConnector_1.default(this.options); sentinelConnector.emitter = this; this.connector = sentinelConnector; } else { this.connector = new connectors_1.StandaloneConnector(this.options); } if (this.options.scripts) { Object.entries(this.options.scripts).forEach(([name, definition]) => { this.defineCommand(name, definition); }); } if (this.options.lazyConnect) { this.setStatus("wait"); } else { this.connect().catch(lodash_1.noop); } } /** * Create a Redis instance. * This is the same as `new Redis()` but is included for compatibility with node-redis. */ static createClient(...args) { return new _Redis(...args); } get autoPipelineQueueSize() { let queued = 0; for (const pipeline of this._autoPipelines.values()) { queued += pipeline.length; } return queued; } /** * Create a connection to Redis. * This method will be invoked automatically when creating a new Redis instance * unless `lazyConnect: true` is passed. * * When calling this method manually, a Promise is returned, which will * be resolved when the connection status is ready. The promise can reject * if the connection fails, times out, or if Redis is already connecting/connected. */ connect(callback) { const promise2 = new Promise((resolve, reject) => { if (this.status === "connecting" || this.status === "connect" || this.status === "ready") { reject(new Error("Redis is already connecting/connected")); return; } this.connectionEpoch += 1; this.setStatus("connecting"); const { options } = this; this.condition = { select: options.db, auth: options.username ? [options.username, options.password] : options.password, subscriber: false }; const _this = this; (0, standard_as_callback_1.default)(this.connector.connect(function(type, err) { _this.silentEmit(type, err); }), function(err, stream) { if (err) { _this.flushQueue(err); _this.silentEmit("error", err); reject(err); _this.setStatus("end"); return; } let CONNECT_EVENT = options.tls ? "secureConnect" : "connect"; if ("sentinels" in options && options.sentinels && !options.enableTLSForSentinelMode) { CONNECT_EVENT = "connect"; } _this.stream = stream; if (options.noDelay) { stream.setNoDelay(true); } if (typeof options.keepAlive === "number") { if (stream.connecting) { stream.once(CONNECT_EVENT, () => { stream.setKeepAlive(true, options.keepAlive); }); } else { stream.setKeepAlive(true, options.keepAlive); } } if (stream.connecting) { stream.once(CONNECT_EVENT, eventHandler.connectHandler(_this)); if (options.connectTimeout) { let connectTimeoutCleared = false; stream.setTimeout(options.connectTimeout, function() { if (connectTimeoutCleared) { return; } stream.setTimeout(0); stream.destroy(); const err2 = new Error("connect ETIMEDOUT"); err2.errorno = "ETIMEDOUT"; err2.code = "ETIMEDOUT"; err2.syscall = "connect"; eventHandler.errorHandler(_this)(err2); }); stream.once(CONNECT_EVENT, function() { connectTimeoutCleared = true; stream.setTimeout(0); }); } } else if (stream.destroyed) { const firstError = _this.connector.firstError; if (firstError) { process.nextTick(() => { eventHandler.errorHandler(_this)(firstError); }); } process.nextTick(eventHandler.closeHandler(_this)); } else { process.nextTick(eventHandler.connectHandler(_this)); } if (!stream.destroyed) { stream.once("error", eventHandler.errorHandler(_this)); stream.once("close", eventHandler.closeHandler(_this)); } const connectionReadyHandler = /* @__PURE__ */ __name(function() { _this.removeListener("close", connectionCloseHandler); resolve(); }, "connectionReadyHandler"); var connectionCloseHandler = /* @__PURE__ */ __name(function() { _this.removeListener("ready", connectionReadyHandler); reject(new Error(utils_1.CONNECTION_CLOSED_ERROR_MSG)); }, "connectionCloseHandler"); _this.once("ready", connectionReadyHandler); _this.once("close", connectionCloseHandler); }); }); return (0, standard_as_callback_1.default)(promise2, callback); } /** * Disconnect from Redis. * * This method closes the connection immediately, * and may lose some pending replies that haven't written to client. * If you want to wait for the pending replies, use Redis#quit instead. */ disconnect(reconnect = false) { if (!reconnect) { this.manuallyClosing = true; } if (this.reconnectTimeout && !reconnect) { clearTimeout(this.reconnectTimeout); this.reconnectTimeout = null; } if (this.status === "wait") { eventHandler.closeHandler(this)(); } else { this.connector.disconnect(); } } /** * Disconnect from Redis. * * @deprecated */ end() { this.disconnect(); } /** * Create a new instance with the same options as the current one. * * @example * ```js * var redis = new Redis(6380); * var anotherRedis = redis.duplicate(); * ``` */ duplicate(override) { return new _Redis({ ...this.options, ...override }); } /** * Mode of the connection. * * One of `"normal"`, `"subscriber"`, or `"monitor"`. When the connection is * not in `"normal"` mode, certain commands are not allowed. */ get mode() { var _a2; return this.options.monitor ? "monitor" : ((_a2 = this.condition) === null || _a2 === void 0 ? void 0 : _a2.subscriber) ? "subscriber" : "normal"; } /** * Listen for all requests received by the server in real time. * * This command will create a new connection to Redis and send a * MONITOR command via the new connection in order to avoid disturbing * the current connection. * * @param callback The callback function. If omit, a promise will be returned. * @example * ```js * var redis = new Redis(); * redis.monitor(function (err, monitor) { * // Entering monitoring mode. * monitor.on('monitor', function (time, args, source, database) { * console.log(time + ": " + util.inspect(args)); * }); * }); * * // supports promise as well as other commands * redis.monitor().then(function (monitor) { * monitor.on('monitor', function (time, args, source, database) { * console.log(time + ": " + util.inspect(args)); * }); * }); * ``` */ monitor(callback) { const monitorInstance = this.duplicate({ monitor: true, lazyConnect: false }); return (0, standard_as_callback_1.default)(new Promise(function(resolve, reject) { monitorInstance.once("error", reject); monitorInstance.once("monitoring", function() { resolve(monitorInstance); }); }), callback); } /** * Send a command to Redis * * This method is used internally and in most cases you should not * use it directly. If you need to send a command that is not supported * by the library, you can use the `call` method: * * ```js * const redis = new Redis(); * * redis.call('set', 'foo', 'bar'); * // or * redis.call(['set', 'foo', 'bar']); * ``` * * @ignore */ sendCommand(command, stream) { var _a2, _b; if (this.status === "wait") { this.connect().catch(lodash_1.noop); } if (this.status === "end") { command.reject(new Error(utils_1.CONNECTION_CLOSED_ERROR_MSG)); return command.promise; } if (((_a2 = this.condition) === null || _a2 === void 0 ? void 0 : _a2.subscriber) && !Command_1.default.checkFlag("VALID_IN_SUBSCRIBER_MODE", command.name)) { command.reject(new Error("Connection in subscriber mode, only subscriber commands may be used")); return command.promise; } if (typeof this.options.commandTimeout === "number") { command.setTimeout(this.options.commandTimeout); } const blockingTimeout = this.getBlockingTimeoutInMs(command); let writable = this.status === "ready" || !stream && this.status === "connect" && (0, commands_1.exists)(command.name, { caseInsensitive: true }) && ((0, commands_1.hasFlag)(command.name, "loading", { nameCaseInsensitive: true }) || Command_1.default.checkFlag("HANDSHAKE_COMMANDS", command.name)); if (!this.stream) { writable = false; } else if (!this.stream.writable) { writable = false; } else if (this.stream._writableState && this.stream._writableState.ended) { writable = false; } if (!writable) { if (!this.options.enableOfflineQueue) { command.reject(new Error("Stream isn't writeable and enableOfflineQueue options is false")); return command.promise; } if (command.name === "quit" && this.offlineQueue.length === 0) { this.disconnect(); command.resolve(Buffer.from("OK")); return command.promise; } if (debug3.enabled) { debug3("queue command[%s]: %d -> %s(%o)", this._getDescription(), this.condition.select, command.name, command.args); } this.offlineQueue.push({ command, stream, select: this.condition.select }); if (Command_1.default.checkFlag("BLOCKING_COMMANDS", command.name)) { const offlineTimeout = this.getConfiguredBlockingTimeout(); if (offlineTimeout !== void 0) { command.setBlockingTimeout(offlineTimeout); } } } else { if (debug3.enabled) { debug3("write command[%s]: %d -> %s(%o)", this._getDescription(), (_b = this.condition) === null || _b === void 0 ? void 0 : _b.select, command.name, command.args); } if (stream) { if ("isPipeline" in stream && stream.isPipeline) { stream.write(command.toWritable(stream.destination.redis.stream)); } else { stream.write(command.toWritable(stream)); } } else { this.stream.write(command.toWritable(this.stream)); } this.commandQueue.push({ command, stream, select: this.condition.select }); if (blockingTimeout !== void 0) { command.setBlockingTimeout(blockingTimeout); } if (Command_1.default.checkFlag("WILL_DISCONNECT", command.name)) { this.manuallyClosing = true; } if (this.options.socketTimeout !== void 0 && this.socketTimeoutTimer === void 0) { this.setSocketTimeout(); } } if (command.name === "select" && (0, utils_1.isInt)(command.args[0])) { const db3 = parseInt(command.args[0], 10); if (this.condition.select !== db3) { this.condition.select = db3; this.emit("select", db3); debug3("switch to db [%d]", this.condition.select); } } return command.promise; } getBlockingTimeoutInMs(command) { var _a2; if (!Command_1.default.checkFlag("BLOCKING_COMMANDS", command.name)) { return void 0; } const configuredTimeout = this.getConfiguredBlockingTimeout(); if (configuredTimeout === void 0) { return void 0; } const timeout = command.extractBlockingTimeout(); if (typeof timeout === "number") { if (timeout > 0) { return timeout + ((_a2 = this.options.blockingTimeoutGrace) !== null && _a2 !== void 0 ? _a2 : RedisOptions_1.DEFAULT_REDIS_OPTIONS.blockingTimeoutGrace); } return configuredTimeout; } if (timeout === null) { return configuredTimeout; } return void 0; } getConfiguredBlockingTimeout() { if (typeof this.options.blockingTimeout === "number" && this.options.blockingTimeout > 0) { return this.options.blockingTimeout; } return void 0; } setSocketTimeout() { this.socketTimeoutTimer = setTimeout(() => { this.stream.destroy(new Error(`Socket timeout. Expecting data, but didn't receive any in ${this.options.socketTimeout}ms.`)); this.socketTimeoutTimer = void 0; }, this.options.socketTimeout); this.stream.once("data", () => { clearTimeout(this.socketTimeoutTimer); this.socketTimeoutTimer = void 0; if (this.commandQueue.length === 0) return; this.setSocketTimeout(); }); } scanStream(options) { return this.createScanStream("scan", { options }); } scanBufferStream(options) { return this.createScanStream("scanBuffer", { options }); } sscanStream(key, options) { return this.createScanStream("sscan", { key, options }); } sscanBufferStream(key, options) { return this.createScanStream("sscanBuffer", { key, options }); } hscanStream(key, options) { return this.createScanStream("hscan", { key, options }); } hscanBufferStream(key, options) { return this.createScanStream("hscanBuffer", { key, options }); } zscanStream(key, options) { return this.createScanStream("zscan", { key, options }); } zscanBufferStream(key, options) { return this.createScanStream("zscanBuffer", { key, options }); } /** * Emit only when there's at least one listener. * * @ignore */ silentEmit(eventName, arg) { let error50; if (eventName === "error") { error50 = arg; if (this.status === "end") { return; } if (this.manuallyClosing) { if (error50 instanceof Error && (error50.message === utils_1.CONNECTION_CLOSED_ERROR_MSG || // @ts-expect-error error50.syscall === "connect" || // @ts-expect-error error50.syscall === "read")) { return; } } } if (this.listeners(eventName).length > 0) { return this.emit.apply(this, arguments); } if (error50 && error50 instanceof Error) { console.error("[ioredis] Unhandled error event:", error50.stack); } return false; } /** * @ignore */ recoverFromFatalError(_commandError, err, options) { this.flushQueue(err, options); this.silentEmit("error", err); this.disconnect(true); } /** * @ignore */ handleReconnection(err, item) { var _a2; let needReconnect = false; if (this.options.reconnectOnError && !Command_1.default.checkFlag("IGNORE_RECONNECT_ON_ERROR", item.command.name)) { needReconnect = this.options.reconnectOnError(err); } switch (needReconnect) { case 1: case true: if (this.status !== "reconnecting") { this.disconnect(true); } item.command.reject(err); break; case 2: if (this.status !== "reconnecting") { this.disconnect(true); } if (((_a2 = this.condition) === null || _a2 === void 0 ? void 0 : _a2.select) !== item.select && item.command.name !== "select") { this.select(item.select); } this.sendCommand(item.command); break; default: item.command.reject(err); } } /** * Get description of the connection. Used for debugging. */ _getDescription() { let description; if ("path" in this.options && this.options.path) { description = this.options.path; } else if (this.stream && this.stream.remoteAddress && this.stream.remotePort) { description = this.stream.remoteAddress + ":" + this.stream.remotePort; } else if ("host" in this.options && this.options.host) { description = this.options.host + ":" + this.options.port; } else { description = ""; } if (this.options.connectionName) { description += ` (${this.options.connectionName})`; } return description; } resetCommandQueue() { this.commandQueue = new Deque(); } resetOfflineQueue() { this.offlineQueue = new Deque(); } parseOptions(...args) { const options = {}; let isTls = false; for (let i = 0; i < args.length; ++i) { const arg = args[i]; if (arg === null || typeof arg === "undefined") { continue; } if (typeof arg === "object") { (0, lodash_1.defaults)(options, arg); } else if (typeof arg === "string") { (0, lodash_1.defaults)(options, (0, utils_1.parseURL)(arg)); if (arg.startsWith("rediss://")) { isTls = true; } } else if (typeof arg === "number") { options.port = arg; } else { throw new Error("Invalid argument " + arg); } } if (isTls) { (0, lodash_1.defaults)(options, { tls: true }); } (0, lodash_1.defaults)(options, _Redis.defaultOptions); if (typeof options.port === "string") { options.port = parseInt(options.port, 10); } if (typeof options.db === "string") { options.db = parseInt(options.db, 10); } this.options = (0, utils_1.resolveTLSProfile)(options); } /** * Change instance's status */ setStatus(status, arg) { if (debug3.enabled) { debug3("status[%s]: %s -> %s", this._getDescription(), this.status || "[empty]", status); } this.status = status; process.nextTick(this.emit.bind(this, status, arg)); } createScanStream(command, { key, options = {} }) { return new ScanStream_1.default({ objectMode: true, key, redis: this, command, ...options }); } /** * Flush offline queue and command queue with error. * * @param error The error object to send to the commands * @param options options */ flushQueue(error50, options) { options = (0, lodash_1.defaults)({}, options, { offlineQueue: true, commandQueue: true }); let item; if (options.offlineQueue) { while (item = this.offlineQueue.shift()) { item.command.reject(error50); } } if (options.commandQueue) { if (this.commandQueue.length > 0) { if (this.stream) { this.stream.removeAllListeners("data"); } while (item = this.commandQueue.shift()) { item.command.reject(error50); } } } } /** * Check whether Redis has finished loading the persistent data and is able to * process commands. */ _readyCheck(callback) { const _this = this; this.info(function(err, res) { if (err) { if (err.message && err.message.includes("NOPERM")) { console.warn(`Skipping the ready check because INFO command fails: "${err.message}". You can disable ready check with "enableReadyCheck". More: https://github.com/luin/ioredis/wiki/Disable-ready-check.`); return callback(null, {}); } return callback(err); } if (typeof res !== "string") { return callback(null, res); } const info3 = {}; const lines = res.split("\r\n"); for (let i = 0; i < lines.length; ++i) { const [fieldName, ...fieldValueParts] = lines[i].split(":"); const fieldValue = fieldValueParts.join(":"); if (fieldValue) { info3[fieldName] = fieldValue; } } if (!info3.loading || info3.loading === "0") { callback(null, info3); } else { const loadingEtaMs = (info3.loading_eta_seconds || 1) * 1e3; const retryTime = _this.options.maxLoadingRetryTime && _this.options.maxLoadingRetryTime < loadingEtaMs ? _this.options.maxLoadingRetryTime : loadingEtaMs; debug3("Redis server still loading, trying again in " + retryTime + "ms"); setTimeout(function() { _this._readyCheck(callback); }, retryTime); } }).catch(lodash_1.noop); } }; Redis.Cluster = cluster_1.default; Redis.Command = Command_1.default; Redis.defaultOptions = RedisOptions_1.DEFAULT_REDIS_OPTIONS; (0, applyMixin_1.default)(Redis, events_1.EventEmitter); (0, transaction_1.addTransactionSupport)(Redis.prototype); exports.default = Redis; } }); // ../../node_modules/ioredis/built/index.js var require_built3 = __commonJS({ "../../node_modules/ioredis/built/index.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); Object.defineProperty(exports, "__esModule", { value: true }); exports.print = exports.ReplyError = exports.SentinelIterator = exports.SentinelConnector = exports.AbstractConnector = exports.Pipeline = exports.ScanStream = exports.Command = exports.Cluster = exports.Redis = exports.default = void 0; exports = module2.exports = require_Redis().default; var Redis_1 = require_Redis(); Object.defineProperty(exports, "default", { enumerable: true, get: /* @__PURE__ */ __name(function() { return Redis_1.default; }, "get") }); var Redis_2 = require_Redis(); Object.defineProperty(exports, "Redis", { enumerable: true, get: /* @__PURE__ */ __name(function() { return Redis_2.default; }, "get") }); var cluster_1 = require_cluster(); Object.defineProperty(exports, "Cluster", { enumerable: true, get: /* @__PURE__ */ __name(function() { return cluster_1.default; }, "get") }); var Command_1 = require_Command(); Object.defineProperty(exports, "Command", { enumerable: true, get: /* @__PURE__ */ __name(function() { return Command_1.default; }, "get") }); var ScanStream_1 = require_ScanStream(); Object.defineProperty(exports, "ScanStream", { enumerable: true, get: /* @__PURE__ */ __name(function() { return ScanStream_1.default; }, "get") }); var Pipeline_1 = require_Pipeline(); Object.defineProperty(exports, "Pipeline", { enumerable: true, get: /* @__PURE__ */ __name(function() { return Pipeline_1.default; }, "get") }); var AbstractConnector_1 = require_AbstractConnector(); Object.defineProperty(exports, "AbstractConnector", { enumerable: true, get: /* @__PURE__ */ __name(function() { return AbstractConnector_1.default; }, "get") }); var SentinelConnector_1 = require_SentinelConnector(); Object.defineProperty(exports, "SentinelConnector", { enumerable: true, get: /* @__PURE__ */ __name(function() { return SentinelConnector_1.default; }, "get") }); Object.defineProperty(exports, "SentinelIterator", { enumerable: true, get: /* @__PURE__ */ __name(function() { return SentinelConnector_1.SentinelIterator; }, "get") }); exports.ReplyError = require_redis_errors().ReplyError; Object.defineProperty(exports, "Promise", { get() { console.warn("ioredis v5 does not support plugging third-party Promise library anymore. Native Promise will be used."); return Promise; }, set(_lib) { console.warn("ioredis v5 does not support plugging third-party Promise library anymore. Native Promise will be used."); } }); function print(err, reply) { if (err) { console.log("Error: " + err); } else { console.log("Reply: " + reply); } } __name(print, "print"); exports.print = print; } }); // ../../node_modules/bullmq/node_modules/semver/internal/constants.js var require_constants = __commonJS({ "../../node_modules/bullmq/node_modules/semver/internal/constants.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var SEMVER_SPEC_VERSION = "2.0.0"; var MAX_LENGTH = 256; var MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER || /* istanbul ignore next */ 9007199254740991; var MAX_SAFE_COMPONENT_LENGTH = 16; var MAX_SAFE_BUILD_LENGTH = MAX_LENGTH - 6; var RELEASE_TYPES = [ "major", "premajor", "minor", "preminor", "patch", "prepatch", "prerelease" ]; module2.exports = { MAX_LENGTH, MAX_SAFE_COMPONENT_LENGTH, MAX_SAFE_BUILD_LENGTH, MAX_SAFE_INTEGER, RELEASE_TYPES, SEMVER_SPEC_VERSION, FLAG_INCLUDE_PRERELEASE: 1, FLAG_LOOSE: 2 }; } }); // ../../node_modules/bullmq/node_modules/semver/internal/debug.js var require_debug2 = __commonJS({ "../../node_modules/bullmq/node_modules/semver/internal/debug.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var debug3 = typeof process === "object" && process.env && process.env.NODE_DEBUG && /\bsemver\b/i.test(process.env.NODE_DEBUG) ? (...args) => console.error("SEMVER", ...args) : () => { }; module2.exports = debug3; } }); // ../../node_modules/bullmq/node_modules/semver/internal/re.js var require_re = __commonJS({ "../../node_modules/bullmq/node_modules/semver/internal/re.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var { MAX_SAFE_COMPONENT_LENGTH, MAX_SAFE_BUILD_LENGTH, MAX_LENGTH } = require_constants(); var debug3 = require_debug2(); exports = module2.exports = {}; var re = exports.re = []; var safeRe = exports.safeRe = []; var src2 = exports.src = []; var safeSrc = exports.safeSrc = []; var t8 = exports.t = {}; var R = 0; var LETTERDASHNUMBER = "[a-zA-Z0-9-]"; var safeRegexReplacements = [ ["\\s", 1], ["\\d", MAX_LENGTH], [LETTERDASHNUMBER, MAX_SAFE_BUILD_LENGTH] ]; var makeSafeRegex = /* @__PURE__ */ __name((value) => { for (const [token, max2] of safeRegexReplacements) { value = value.split(`${token}*`).join(`${token}{0,${max2}}`).split(`${token}+`).join(`${token}{1,${max2}}`); } return value; }, "makeSafeRegex"); var createToken = /* @__PURE__ */ __name((name, value, isGlobal) => { const safe = makeSafeRegex(value); const index = R++; debug3(name, index, value); t8[name] = index; src2[index] = value; safeSrc[index] = safe; re[index] = new RegExp(value, isGlobal ? "g" : void 0); safeRe[index] = new RegExp(safe, isGlobal ? "g" : void 0); }, "createToken"); createToken("NUMERICIDENTIFIER", "0|[1-9]\\d*"); createToken("NUMERICIDENTIFIERLOOSE", "\\d+"); createToken("NONNUMERICIDENTIFIER", `\\d*[a-zA-Z-]${LETTERDASHNUMBER}*`); createToken("MAINVERSION", `(${src2[t8.NUMERICIDENTIFIER]})\\.(${src2[t8.NUMERICIDENTIFIER]})\\.(${src2[t8.NUMERICIDENTIFIER]})`); createToken("MAINVERSIONLOOSE", `(${src2[t8.NUMERICIDENTIFIERLOOSE]})\\.(${src2[t8.NUMERICIDENTIFIERLOOSE]})\\.(${src2[t8.NUMERICIDENTIFIERLOOSE]})`); createToken("PRERELEASEIDENTIFIER", `(?:${src2[t8.NONNUMERICIDENTIFIER]}|${src2[t8.NUMERICIDENTIFIER]})`); createToken("PRERELEASEIDENTIFIERLOOSE", `(?:${src2[t8.NONNUMERICIDENTIFIER]}|${src2[t8.NUMERICIDENTIFIERLOOSE]})`); createToken("PRERELEASE", `(?:-(${src2[t8.PRERELEASEIDENTIFIER]}(?:\\.${src2[t8.PRERELEASEIDENTIFIER]})*))`); createToken("PRERELEASELOOSE", `(?:-?(${src2[t8.PRERELEASEIDENTIFIERLOOSE]}(?:\\.${src2[t8.PRERELEASEIDENTIFIERLOOSE]})*))`); createToken("BUILDIDENTIFIER", `${LETTERDASHNUMBER}+`); createToken("BUILD", `(?:\\+(${src2[t8.BUILDIDENTIFIER]}(?:\\.${src2[t8.BUILDIDENTIFIER]})*))`); createToken("FULLPLAIN", `v?${src2[t8.MAINVERSION]}${src2[t8.PRERELEASE]}?${src2[t8.BUILD]}?`); createToken("FULL", `^${src2[t8.FULLPLAIN]}$`); createToken("LOOSEPLAIN", `[v=\\s]*${src2[t8.MAINVERSIONLOOSE]}${src2[t8.PRERELEASELOOSE]}?${src2[t8.BUILD]}?`); createToken("LOOSE", `^${src2[t8.LOOSEPLAIN]}$`); createToken("GTLT", "((?:<|>)?=?)"); createToken("XRANGEIDENTIFIERLOOSE", `${src2[t8.NUMERICIDENTIFIERLOOSE]}|x|X|\\*`); createToken("XRANGEIDENTIFIER", `${src2[t8.NUMERICIDENTIFIER]}|x|X|\\*`); createToken("XRANGEPLAIN", `[v=\\s]*(${src2[t8.XRANGEIDENTIFIER]})(?:\\.(${src2[t8.XRANGEIDENTIFIER]})(?:\\.(${src2[t8.XRANGEIDENTIFIER]})(?:${src2[t8.PRERELEASE]})?${src2[t8.BUILD]}?)?)?`); createToken("XRANGEPLAINLOOSE", `[v=\\s]*(${src2[t8.XRANGEIDENTIFIERLOOSE]})(?:\\.(${src2[t8.XRANGEIDENTIFIERLOOSE]})(?:\\.(${src2[t8.XRANGEIDENTIFIERLOOSE]})(?:${src2[t8.PRERELEASELOOSE]})?${src2[t8.BUILD]}?)?)?`); createToken("XRANGE", `^${src2[t8.GTLT]}\\s*${src2[t8.XRANGEPLAIN]}$`); createToken("XRANGELOOSE", `^${src2[t8.GTLT]}\\s*${src2[t8.XRANGEPLAINLOOSE]}$`); createToken("COERCEPLAIN", `${"(^|[^\\d])(\\d{1,"}${MAX_SAFE_COMPONENT_LENGTH}})(?:\\.(\\d{1,${MAX_SAFE_COMPONENT_LENGTH}}))?(?:\\.(\\d{1,${MAX_SAFE_COMPONENT_LENGTH}}))?`); createToken("COERCE", `${src2[t8.COERCEPLAIN]}(?:$|[^\\d])`); createToken("COERCEFULL", src2[t8.COERCEPLAIN] + `(?:${src2[t8.PRERELEASE]})?(?:${src2[t8.BUILD]})?(?:$|[^\\d])`); createToken("COERCERTL", src2[t8.COERCE], true); createToken("COERCERTLFULL", src2[t8.COERCEFULL], true); createToken("LONETILDE", "(?:~>?)"); createToken("TILDETRIM", `(\\s*)${src2[t8.LONETILDE]}\\s+`, true); exports.tildeTrimReplace = "$1~"; createToken("TILDE", `^${src2[t8.LONETILDE]}${src2[t8.XRANGEPLAIN]}$`); createToken("TILDELOOSE", `^${src2[t8.LONETILDE]}${src2[t8.XRANGEPLAINLOOSE]}$`); createToken("LONECARET", "(?:\\^)"); createToken("CARETTRIM", `(\\s*)${src2[t8.LONECARET]}\\s+`, true); exports.caretTrimReplace = "$1^"; createToken("CARET", `^${src2[t8.LONECARET]}${src2[t8.XRANGEPLAIN]}$`); createToken("CARETLOOSE", `^${src2[t8.LONECARET]}${src2[t8.XRANGEPLAINLOOSE]}$`); createToken("COMPARATORLOOSE", `^${src2[t8.GTLT]}\\s*(${src2[t8.LOOSEPLAIN]})$|^$`); createToken("COMPARATOR", `^${src2[t8.GTLT]}\\s*(${src2[t8.FULLPLAIN]})$|^$`); createToken("COMPARATORTRIM", `(\\s*)${src2[t8.GTLT]}\\s*(${src2[t8.LOOSEPLAIN]}|${src2[t8.XRANGEPLAIN]})`, true); exports.comparatorTrimReplace = "$1$2$3"; createToken("HYPHENRANGE", `^\\s*(${src2[t8.XRANGEPLAIN]})\\s+-\\s+(${src2[t8.XRANGEPLAIN]})\\s*$`); createToken("HYPHENRANGELOOSE", `^\\s*(${src2[t8.XRANGEPLAINLOOSE]})\\s+-\\s+(${src2[t8.XRANGEPLAINLOOSE]})\\s*$`); createToken("STAR", "(<|>)?=?\\s*\\*"); createToken("GTE0", "^\\s*>=\\s*0\\.0\\.0\\s*$"); createToken("GTE0PRE", "^\\s*>=\\s*0\\.0\\.0-0\\s*$"); } }); // ../../node_modules/bullmq/node_modules/semver/internal/parse-options.js var require_parse_options = __commonJS({ "../../node_modules/bullmq/node_modules/semver/internal/parse-options.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var looseOption = Object.freeze({ loose: true }); var emptyOpts = Object.freeze({}); var parseOptions = /* @__PURE__ */ __name((options) => { if (!options) { return emptyOpts; } if (typeof options !== "object") { return looseOption; } return options; }, "parseOptions"); module2.exports = parseOptions; } }); // ../../node_modules/bullmq/node_modules/semver/internal/identifiers.js var require_identifiers = __commonJS({ "../../node_modules/bullmq/node_modules/semver/internal/identifiers.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var numeric2 = /^[0-9]+$/; var compareIdentifiers = /* @__PURE__ */ __name((a, b) => { if (typeof a === "number" && typeof b === "number") { return a === b ? 0 : a < b ? -1 : 1; } const anum = numeric2.test(a); const bnum = numeric2.test(b); if (anum && bnum) { a = +a; b = +b; } return a === b ? 0 : anum && !bnum ? -1 : bnum && !anum ? 1 : a < b ? -1 : 1; }, "compareIdentifiers"); var rcompareIdentifiers = /* @__PURE__ */ __name((a, b) => compareIdentifiers(b, a), "rcompareIdentifiers"); module2.exports = { compareIdentifiers, rcompareIdentifiers }; } }); // ../../node_modules/bullmq/node_modules/semver/classes/semver.js var require_semver = __commonJS({ "../../node_modules/bullmq/node_modules/semver/classes/semver.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var debug3 = require_debug2(); var { MAX_LENGTH, MAX_SAFE_INTEGER } = require_constants(); var { safeRe: re, t: t8 } = require_re(); var parseOptions = require_parse_options(); var { compareIdentifiers } = require_identifiers(); var SemVer = class _SemVer { static { __name(this, "SemVer"); } constructor(version5, options) { options = parseOptions(options); if (version5 instanceof _SemVer) { if (version5.loose === !!options.loose && version5.includePrerelease === !!options.includePrerelease) { return version5; } else { version5 = version5.version; } } else if (typeof version5 !== "string") { throw new TypeError(`Invalid version. Must be a string. Got type "${typeof version5}".`); } if (version5.length > MAX_LENGTH) { throw new TypeError( `version is longer than ${MAX_LENGTH} characters` ); } debug3("SemVer", version5, options); this.options = options; this.loose = !!options.loose; this.includePrerelease = !!options.includePrerelease; const m = version5.trim().match(options.loose ? re[t8.LOOSE] : re[t8.FULL]); if (!m) { throw new TypeError(`Invalid Version: ${version5}`); } this.raw = version5; this.major = +m[1]; this.minor = +m[2]; this.patch = +m[3]; if (this.major > MAX_SAFE_INTEGER || this.major < 0) { throw new TypeError("Invalid major version"); } if (this.minor > MAX_SAFE_INTEGER || this.minor < 0) { throw new TypeError("Invalid minor version"); } if (this.patch > MAX_SAFE_INTEGER || this.patch < 0) { throw new TypeError("Invalid patch version"); } if (!m[4]) { this.prerelease = []; } else { this.prerelease = m[4].split(".").map((id) => { if (/^[0-9]+$/.test(id)) { const num = +id; if (num >= 0 && num < MAX_SAFE_INTEGER) { return num; } } return id; }); } this.build = m[5] ? m[5].split(".") : []; this.format(); } format() { this.version = `${this.major}.${this.minor}.${this.patch}`; if (this.prerelease.length) { this.version += `-${this.prerelease.join(".")}`; } return this.version; } toString() { return this.version; } compare(other) { debug3("SemVer.compare", this.version, this.options, other); if (!(other instanceof _SemVer)) { if (typeof other === "string" && other === this.version) { return 0; } other = new _SemVer(other, this.options); } if (other.version === this.version) { return 0; } return this.compareMain(other) || this.comparePre(other); } compareMain(other) { if (!(other instanceof _SemVer)) { other = new _SemVer(other, this.options); } if (this.major < other.major) { return -1; } if (this.major > other.major) { return 1; } if (this.minor < other.minor) { return -1; } if (this.minor > other.minor) { return 1; } if (this.patch < other.patch) { return -1; } if (this.patch > other.patch) { return 1; } return 0; } comparePre(other) { if (!(other instanceof _SemVer)) { other = new _SemVer(other, this.options); } if (this.prerelease.length && !other.prerelease.length) { return -1; } else if (!this.prerelease.length && other.prerelease.length) { return 1; } else if (!this.prerelease.length && !other.prerelease.length) { return 0; } let i = 0; do { const a = this.prerelease[i]; const b = other.prerelease[i]; debug3("prerelease compare", i, a, b); if (a === void 0 && b === void 0) { return 0; } else if (b === void 0) { return 1; } else if (a === void 0) { return -1; } else if (a === b) { continue; } else { return compareIdentifiers(a, b); } } while (++i); } compareBuild(other) { if (!(other instanceof _SemVer)) { other = new _SemVer(other, this.options); } let i = 0; do { const a = this.build[i]; const b = other.build[i]; debug3("build compare", i, a, b); if (a === void 0 && b === void 0) { return 0; } else if (b === void 0) { return 1; } else if (a === void 0) { return -1; } else if (a === b) { continue; } else { return compareIdentifiers(a, b); } } while (++i); } // preminor will bump the version up to the next minor release, and immediately // down to pre-release. premajor and prepatch work the same way. inc(release2, identifier, identifierBase) { if (release2.startsWith("pre")) { if (!identifier && identifierBase === false) { throw new Error("invalid increment argument: identifier is empty"); } if (identifier) { const match2 = `-${identifier}`.match(this.options.loose ? re[t8.PRERELEASELOOSE] : re[t8.PRERELEASE]); if (!match2 || match2[1] !== identifier) { throw new Error(`invalid identifier: ${identifier}`); } } } switch (release2) { case "premajor": this.prerelease.length = 0; this.patch = 0; this.minor = 0; this.major++; this.inc("pre", identifier, identifierBase); break; case "preminor": this.prerelease.length = 0; this.patch = 0; this.minor++; this.inc("pre", identifier, identifierBase); break; case "prepatch": this.prerelease.length = 0; this.inc("patch", identifier, identifierBase); this.inc("pre", identifier, identifierBase); break; // If the input is a non-prerelease version, this acts the same as // prepatch. case "prerelease": if (this.prerelease.length === 0) { this.inc("patch", identifier, identifierBase); } this.inc("pre", identifier, identifierBase); break; case "release": if (this.prerelease.length === 0) { throw new Error(`version ${this.raw} is not a prerelease`); } this.prerelease.length = 0; break; case "major": if (this.minor !== 0 || this.patch !== 0 || this.prerelease.length === 0) { this.major++; } this.minor = 0; this.patch = 0; this.prerelease = []; break; case "minor": if (this.patch !== 0 || this.prerelease.length === 0) { this.minor++; } this.patch = 0; this.prerelease = []; break; case "patch": if (this.prerelease.length === 0) { this.patch++; } this.prerelease = []; break; // This probably shouldn't be used publicly. // 1.0.0 'pre' would become 1.0.0-0 which is the wrong direction. case "pre": { const base = Number(identifierBase) ? 1 : 0; if (this.prerelease.length === 0) { this.prerelease = [base]; } else { let i = this.prerelease.length; while (--i >= 0) { if (typeof this.prerelease[i] === "number") { this.prerelease[i]++; i = -2; } } if (i === -1) { if (identifier === this.prerelease.join(".") && identifierBase === false) { throw new Error("invalid increment argument: identifier already exists"); } this.prerelease.push(base); } } if (identifier) { let prerelease = [identifier, base]; if (identifierBase === false) { prerelease = [identifier]; } if (compareIdentifiers(this.prerelease[0], identifier) === 0) { if (isNaN(this.prerelease[1])) { this.prerelease = prerelease; } } else { this.prerelease = prerelease; } } break; } default: throw new Error(`invalid increment argument: ${release2}`); } this.raw = this.format(); if (this.build.length) { this.raw += `+${this.build.join(".")}`; } return this; } }; module2.exports = SemVer; } }); // ../../node_modules/bullmq/node_modules/semver/functions/parse.js var require_parse = __commonJS({ "../../node_modules/bullmq/node_modules/semver/functions/parse.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var SemVer = require_semver(); var parse3 = /* @__PURE__ */ __name((version5, options, throwErrors = false) => { if (version5 instanceof SemVer) { return version5; } try { return new SemVer(version5, options); } catch (er) { if (!throwErrors) { return null; } throw er; } }, "parse"); module2.exports = parse3; } }); // ../../node_modules/bullmq/node_modules/semver/functions/valid.js var require_valid = __commonJS({ "../../node_modules/bullmq/node_modules/semver/functions/valid.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var parse3 = require_parse(); var valid2 = /* @__PURE__ */ __name((version5, options) => { const v2 = parse3(version5, options); return v2 ? v2.version : null; }, "valid"); module2.exports = valid2; } }); // ../../node_modules/bullmq/node_modules/semver/functions/clean.js var require_clean = __commonJS({ "../../node_modules/bullmq/node_modules/semver/functions/clean.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var parse3 = require_parse(); var clean = /* @__PURE__ */ __name((version5, options) => { const s = parse3(version5.trim().replace(/^[=v]+/, ""), options); return s ? s.version : null; }, "clean"); module2.exports = clean; } }); // ../../node_modules/bullmq/node_modules/semver/functions/inc.js var require_inc = __commonJS({ "../../node_modules/bullmq/node_modules/semver/functions/inc.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var SemVer = require_semver(); var inc = /* @__PURE__ */ __name((version5, release2, options, identifier, identifierBase) => { if (typeof options === "string") { identifierBase = identifier; identifier = options; options = void 0; } try { return new SemVer( version5 instanceof SemVer ? version5.version : version5, options ).inc(release2, identifier, identifierBase).version; } catch (er) { return null; } }, "inc"); module2.exports = inc; } }); // ../../node_modules/bullmq/node_modules/semver/functions/diff.js var require_diff = __commonJS({ "../../node_modules/bullmq/node_modules/semver/functions/diff.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var parse3 = require_parse(); var diff = /* @__PURE__ */ __name((version1, version22) => { const v1 = parse3(version1, null, true); const v2 = parse3(version22, null, true); const comparison = v1.compare(v2); if (comparison === 0) { return null; } const v1Higher = comparison > 0; const highVersion = v1Higher ? v1 : v2; const lowVersion = v1Higher ? v2 : v1; const highHasPre = !!highVersion.prerelease.length; const lowHasPre = !!lowVersion.prerelease.length; if (lowHasPre && !highHasPre) { if (!lowVersion.patch && !lowVersion.minor) { return "major"; } if (lowVersion.compareMain(highVersion) === 0) { if (lowVersion.minor && !lowVersion.patch) { return "minor"; } return "patch"; } } const prefix = highHasPre ? "pre" : ""; if (v1.major !== v2.major) { return prefix + "major"; } if (v1.minor !== v2.minor) { return prefix + "minor"; } if (v1.patch !== v2.patch) { return prefix + "patch"; } return "prerelease"; }, "diff"); module2.exports = diff; } }); // ../../node_modules/bullmq/node_modules/semver/functions/major.js var require_major = __commonJS({ "../../node_modules/bullmq/node_modules/semver/functions/major.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var SemVer = require_semver(); var major = /* @__PURE__ */ __name((a, loose) => new SemVer(a, loose).major, "major"); module2.exports = major; } }); // ../../node_modules/bullmq/node_modules/semver/functions/minor.js var require_minor = __commonJS({ "../../node_modules/bullmq/node_modules/semver/functions/minor.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var SemVer = require_semver(); var minor = /* @__PURE__ */ __name((a, loose) => new SemVer(a, loose).minor, "minor"); module2.exports = minor; } }); // ../../node_modules/bullmq/node_modules/semver/functions/patch.js var require_patch = __commonJS({ "../../node_modules/bullmq/node_modules/semver/functions/patch.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var SemVer = require_semver(); var patch = /* @__PURE__ */ __name((a, loose) => new SemVer(a, loose).patch, "patch"); module2.exports = patch; } }); // ../../node_modules/bullmq/node_modules/semver/functions/prerelease.js var require_prerelease = __commonJS({ "../../node_modules/bullmq/node_modules/semver/functions/prerelease.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var parse3 = require_parse(); var prerelease = /* @__PURE__ */ __name((version5, options) => { const parsed = parse3(version5, options); return parsed && parsed.prerelease.length ? parsed.prerelease : null; }, "prerelease"); module2.exports = prerelease; } }); // ../../node_modules/bullmq/node_modules/semver/functions/compare.js var require_compare = __commonJS({ "../../node_modules/bullmq/node_modules/semver/functions/compare.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var SemVer = require_semver(); var compare2 = /* @__PURE__ */ __name((a, b, loose) => new SemVer(a, loose).compare(new SemVer(b, loose)), "compare"); module2.exports = compare2; } }); // ../../node_modules/bullmq/node_modules/semver/functions/rcompare.js var require_rcompare = __commonJS({ "../../node_modules/bullmq/node_modules/semver/functions/rcompare.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var compare2 = require_compare(); var rcompare = /* @__PURE__ */ __name((a, b, loose) => compare2(b, a, loose), "rcompare"); module2.exports = rcompare; } }); // ../../node_modules/bullmq/node_modules/semver/functions/compare-loose.js var require_compare_loose = __commonJS({ "../../node_modules/bullmq/node_modules/semver/functions/compare-loose.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var compare2 = require_compare(); var compareLoose = /* @__PURE__ */ __name((a, b) => compare2(a, b, true), "compareLoose"); module2.exports = compareLoose; } }); // ../../node_modules/bullmq/node_modules/semver/functions/compare-build.js var require_compare_build = __commonJS({ "../../node_modules/bullmq/node_modules/semver/functions/compare-build.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var SemVer = require_semver(); var compareBuild = /* @__PURE__ */ __name((a, b, loose) => { const versionA = new SemVer(a, loose); const versionB = new SemVer(b, loose); return versionA.compare(versionB) || versionA.compareBuild(versionB); }, "compareBuild"); module2.exports = compareBuild; } }); // ../../node_modules/bullmq/node_modules/semver/functions/sort.js var require_sort = __commonJS({ "../../node_modules/bullmq/node_modules/semver/functions/sort.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var compareBuild = require_compare_build(); var sort = /* @__PURE__ */ __name((list, loose) => list.sort((a, b) => compareBuild(a, b, loose)), "sort"); module2.exports = sort; } }); // ../../node_modules/bullmq/node_modules/semver/functions/rsort.js var require_rsort = __commonJS({ "../../node_modules/bullmq/node_modules/semver/functions/rsort.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var compareBuild = require_compare_build(); var rsort = /* @__PURE__ */ __name((list, loose) => list.sort((a, b) => compareBuild(b, a, loose)), "rsort"); module2.exports = rsort; } }); // ../../node_modules/bullmq/node_modules/semver/functions/gt.js var require_gt = __commonJS({ "../../node_modules/bullmq/node_modules/semver/functions/gt.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var compare2 = require_compare(); var gt2 = /* @__PURE__ */ __name((a, b, loose) => compare2(a, b, loose) > 0, "gt"); module2.exports = gt2; } }); // ../../node_modules/bullmq/node_modules/semver/functions/lt.js var require_lt = __commonJS({ "../../node_modules/bullmq/node_modules/semver/functions/lt.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var compare2 = require_compare(); var lt3 = /* @__PURE__ */ __name((a, b, loose) => compare2(a, b, loose) < 0, "lt"); module2.exports = lt3; } }); // ../../node_modules/bullmq/node_modules/semver/functions/eq.js var require_eq = __commonJS({ "../../node_modules/bullmq/node_modules/semver/functions/eq.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var compare2 = require_compare(); var eq2 = /* @__PURE__ */ __name((a, b, loose) => compare2(a, b, loose) === 0, "eq"); module2.exports = eq2; } }); // ../../node_modules/bullmq/node_modules/semver/functions/neq.js var require_neq = __commonJS({ "../../node_modules/bullmq/node_modules/semver/functions/neq.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var compare2 = require_compare(); var neq = /* @__PURE__ */ __name((a, b, loose) => compare2(a, b, loose) !== 0, "neq"); module2.exports = neq; } }); // ../../node_modules/bullmq/node_modules/semver/functions/gte.js var require_gte = __commonJS({ "../../node_modules/bullmq/node_modules/semver/functions/gte.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var compare2 = require_compare(); var gte2 = /* @__PURE__ */ __name((a, b, loose) => compare2(a, b, loose) >= 0, "gte"); module2.exports = gte2; } }); // ../../node_modules/bullmq/node_modules/semver/functions/lte.js var require_lte = __commonJS({ "../../node_modules/bullmq/node_modules/semver/functions/lte.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var compare2 = require_compare(); var lte2 = /* @__PURE__ */ __name((a, b, loose) => compare2(a, b, loose) <= 0, "lte"); module2.exports = lte2; } }); // ../../node_modules/bullmq/node_modules/semver/functions/cmp.js var require_cmp = __commonJS({ "../../node_modules/bullmq/node_modules/semver/functions/cmp.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var eq2 = require_eq(); var neq = require_neq(); var gt2 = require_gt(); var gte2 = require_gte(); var lt3 = require_lt(); var lte2 = require_lte(); var cmp = /* @__PURE__ */ __name((a, op, b, loose) => { switch (op) { case "===": if (typeof a === "object") { a = a.version; } if (typeof b === "object") { b = b.version; } return a === b; case "!==": if (typeof a === "object") { a = a.version; } if (typeof b === "object") { b = b.version; } return a !== b; case "": case "=": case "==": return eq2(a, b, loose); case "!=": return neq(a, b, loose); case ">": return gt2(a, b, loose); case ">=": return gte2(a, b, loose); case "<": return lt3(a, b, loose); case "<=": return lte2(a, b, loose); default: throw new TypeError(`Invalid operator: ${op}`); } }, "cmp"); module2.exports = cmp; } }); // ../../node_modules/bullmq/node_modules/semver/functions/coerce.js var require_coerce = __commonJS({ "../../node_modules/bullmq/node_modules/semver/functions/coerce.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var SemVer = require_semver(); var parse3 = require_parse(); var { safeRe: re, t: t8 } = require_re(); var coerce2 = /* @__PURE__ */ __name((version5, options) => { if (version5 instanceof SemVer) { return version5; } if (typeof version5 === "number") { version5 = String(version5); } if (typeof version5 !== "string") { return null; } options = options || {}; let match2 = null; if (!options.rtl) { match2 = version5.match(options.includePrerelease ? re[t8.COERCEFULL] : re[t8.COERCE]); } else { const coerceRtlRegex = options.includePrerelease ? re[t8.COERCERTLFULL] : re[t8.COERCERTL]; let next; while ((next = coerceRtlRegex.exec(version5)) && (!match2 || match2.index + match2[0].length !== version5.length)) { if (!match2 || next.index + next[0].length !== match2.index + match2[0].length) { match2 = next; } coerceRtlRegex.lastIndex = next.index + next[1].length + next[2].length; } coerceRtlRegex.lastIndex = -1; } if (match2 === null) { return null; } const major = match2[2]; const minor = match2[3] || "0"; const patch = match2[4] || "0"; const prerelease = options.includePrerelease && match2[5] ? `-${match2[5]}` : ""; const build = options.includePrerelease && match2[6] ? `+${match2[6]}` : ""; return parse3(`${major}.${minor}.${patch}${prerelease}${build}`, options); }, "coerce"); module2.exports = coerce2; } }); // ../../node_modules/bullmq/node_modules/semver/internal/lrucache.js var require_lrucache = __commonJS({ "../../node_modules/bullmq/node_modules/semver/internal/lrucache.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var LRUCache = class { static { __name(this, "LRUCache"); } constructor() { this.max = 1e3; this.map = /* @__PURE__ */ new Map(); } get(key) { const value = this.map.get(key); if (value === void 0) { return void 0; } else { this.map.delete(key); this.map.set(key, value); return value; } } delete(key) { return this.map.delete(key); } set(key, value) { const deleted = this.delete(key); if (!deleted && value !== void 0) { if (this.map.size >= this.max) { const firstKey = this.map.keys().next().value; this.delete(firstKey); } this.map.set(key, value); } return this; } }; module2.exports = LRUCache; } }); // ../../node_modules/bullmq/node_modules/semver/classes/range.js var require_range = __commonJS({ "../../node_modules/bullmq/node_modules/semver/classes/range.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var SPACE_CHARACTERS = /\s+/g; var Range = class _Range { static { __name(this, "Range"); } constructor(range, options) { options = parseOptions(options); if (range instanceof _Range) { if (range.loose === !!options.loose && range.includePrerelease === !!options.includePrerelease) { return range; } else { return new _Range(range.raw, options); } } if (range instanceof Comparator) { this.raw = range.value; this.set = [[range]]; this.formatted = void 0; return this; } this.options = options; this.loose = !!options.loose; this.includePrerelease = !!options.includePrerelease; this.raw = range.trim().replace(SPACE_CHARACTERS, " "); this.set = this.raw.split("||").map((r) => this.parseRange(r.trim())).filter((c) => c.length); if (!this.set.length) { throw new TypeError(`Invalid SemVer Range: ${this.raw}`); } if (this.set.length > 1) { const first = this.set[0]; this.set = this.set.filter((c) => !isNullSet(c[0])); if (this.set.length === 0) { this.set = [first]; } else if (this.set.length > 1) { for (const c of this.set) { if (c.length === 1 && isAny(c[0])) { this.set = [c]; break; } } } } this.formatted = void 0; } get range() { if (this.formatted === void 0) { this.formatted = ""; for (let i = 0; i < this.set.length; i++) { if (i > 0) { this.formatted += "||"; } const comps = this.set[i]; for (let k = 0; k < comps.length; k++) { if (k > 0) { this.formatted += " "; } this.formatted += comps[k].toString().trim(); } } } return this.formatted; } format() { return this.range; } toString() { return this.range; } parseRange(range) { const memoOpts = (this.options.includePrerelease && FLAG_INCLUDE_PRERELEASE) | (this.options.loose && FLAG_LOOSE); const memoKey = memoOpts + ":" + range; const cached2 = cache2.get(memoKey); if (cached2) { return cached2; } const loose = this.options.loose; const hr = loose ? re[t8.HYPHENRANGELOOSE] : re[t8.HYPHENRANGE]; range = range.replace(hr, hyphenReplace(this.options.includePrerelease)); debug3("hyphen replace", range); range = range.replace(re[t8.COMPARATORTRIM], comparatorTrimReplace); debug3("comparator trim", range); range = range.replace(re[t8.TILDETRIM], tildeTrimReplace); debug3("tilde trim", range); range = range.replace(re[t8.CARETTRIM], caretTrimReplace); debug3("caret trim", range); let rangeList = range.split(" ").map((comp) => parseComparator(comp, this.options)).join(" ").split(/\s+/).map((comp) => replaceGTE0(comp, this.options)); if (loose) { rangeList = rangeList.filter((comp) => { debug3("loose invalid filter", comp, this.options); return !!comp.match(re[t8.COMPARATORLOOSE]); }); } debug3("range list", rangeList); const rangeMap = /* @__PURE__ */ new Map(); const comparators = rangeList.map((comp) => new Comparator(comp, this.options)); for (const comp of comparators) { if (isNullSet(comp)) { return [comp]; } rangeMap.set(comp.value, comp); } if (rangeMap.size > 1 && rangeMap.has("")) { rangeMap.delete(""); } const result = [...rangeMap.values()]; cache2.set(memoKey, result); return result; } intersects(range, options) { if (!(range instanceof _Range)) { throw new TypeError("a Range is required"); } return this.set.some((thisComparators) => { return isSatisfiable(thisComparators, options) && range.set.some((rangeComparators) => { return isSatisfiable(rangeComparators, options) && thisComparators.every((thisComparator) => { return rangeComparators.every((rangeComparator) => { return thisComparator.intersects(rangeComparator, options); }); }); }); }); } // if ANY of the sets match ALL of its comparators, then pass test(version5) { if (!version5) { return false; } if (typeof version5 === "string") { try { version5 = new SemVer(version5, this.options); } catch (er) { return false; } } for (let i = 0; i < this.set.length; i++) { if (testSet(this.set[i], version5, this.options)) { return true; } } return false; } }; module2.exports = Range; var LRU = require_lrucache(); var cache2 = new LRU(); var parseOptions = require_parse_options(); var Comparator = require_comparator(); var debug3 = require_debug2(); var SemVer = require_semver(); var { safeRe: re, t: t8, comparatorTrimReplace, tildeTrimReplace, caretTrimReplace } = require_re(); var { FLAG_INCLUDE_PRERELEASE, FLAG_LOOSE } = require_constants(); var isNullSet = /* @__PURE__ */ __name((c) => c.value === "<0.0.0-0", "isNullSet"); var isAny = /* @__PURE__ */ __name((c) => c.value === "", "isAny"); var isSatisfiable = /* @__PURE__ */ __name((comparators, options) => { let result = true; const remainingComparators = comparators.slice(); let testComparator = remainingComparators.pop(); while (result && remainingComparators.length) { result = remainingComparators.every((otherComparator) => { return testComparator.intersects(otherComparator, options); }); testComparator = remainingComparators.pop(); } return result; }, "isSatisfiable"); var parseComparator = /* @__PURE__ */ __name((comp, options) => { comp = comp.replace(re[t8.BUILD], ""); debug3("comp", comp, options); comp = replaceCarets(comp, options); debug3("caret", comp); comp = replaceTildes(comp, options); debug3("tildes", comp); comp = replaceXRanges(comp, options); debug3("xrange", comp); comp = replaceStars(comp, options); debug3("stars", comp); return comp; }, "parseComparator"); var isX = /* @__PURE__ */ __name((id) => !id || id.toLowerCase() === "x" || id === "*", "isX"); var replaceTildes = /* @__PURE__ */ __name((comp, options) => { return comp.trim().split(/\s+/).map((c) => replaceTilde(c, options)).join(" "); }, "replaceTildes"); var replaceTilde = /* @__PURE__ */ __name((comp, options) => { const r = options.loose ? re[t8.TILDELOOSE] : re[t8.TILDE]; return comp.replace(r, (_, M, m, p, pr) => { debug3("tilde", comp, _, M, m, p, pr); let ret; if (isX(M)) { ret = ""; } else if (isX(m)) { ret = `>=${M}.0.0 <${+M + 1}.0.0-0`; } else if (isX(p)) { ret = `>=${M}.${m}.0 <${M}.${+m + 1}.0-0`; } else if (pr) { debug3("replaceTilde pr", pr); ret = `>=${M}.${m}.${p}-${pr} <${M}.${+m + 1}.0-0`; } else { ret = `>=${M}.${m}.${p} <${M}.${+m + 1}.0-0`; } debug3("tilde return", ret); return ret; }); }, "replaceTilde"); var replaceCarets = /* @__PURE__ */ __name((comp, options) => { return comp.trim().split(/\s+/).map((c) => replaceCaret(c, options)).join(" "); }, "replaceCarets"); var replaceCaret = /* @__PURE__ */ __name((comp, options) => { debug3("caret", comp, options); const r = options.loose ? re[t8.CARETLOOSE] : re[t8.CARET]; const z2 = options.includePrerelease ? "-0" : ""; return comp.replace(r, (_, M, m, p, pr) => { debug3("caret", comp, _, M, m, p, pr); let ret; if (isX(M)) { ret = ""; } else if (isX(m)) { ret = `>=${M}.0.0${z2} <${+M + 1}.0.0-0`; } else if (isX(p)) { if (M === "0") { ret = `>=${M}.${m}.0${z2} <${M}.${+m + 1}.0-0`; } else { ret = `>=${M}.${m}.0${z2} <${+M + 1}.0.0-0`; } } else if (pr) { debug3("replaceCaret pr", pr); if (M === "0") { if (m === "0") { ret = `>=${M}.${m}.${p}-${pr} <${M}.${m}.${+p + 1}-0`; } else { ret = `>=${M}.${m}.${p}-${pr} <${M}.${+m + 1}.0-0`; } } else { ret = `>=${M}.${m}.${p}-${pr} <${+M + 1}.0.0-0`; } } else { debug3("no pr"); if (M === "0") { if (m === "0") { ret = `>=${M}.${m}.${p}${z2} <${M}.${m}.${+p + 1}-0`; } else { ret = `>=${M}.${m}.${p}${z2} <${M}.${+m + 1}.0-0`; } } else { ret = `>=${M}.${m}.${p} <${+M + 1}.0.0-0`; } } debug3("caret return", ret); return ret; }); }, "replaceCaret"); var replaceXRanges = /* @__PURE__ */ __name((comp, options) => { debug3("replaceXRanges", comp, options); return comp.split(/\s+/).map((c) => replaceXRange(c, options)).join(" "); }, "replaceXRanges"); var replaceXRange = /* @__PURE__ */ __name((comp, options) => { comp = comp.trim(); const r = options.loose ? re[t8.XRANGELOOSE] : re[t8.XRANGE]; return comp.replace(r, (ret, gtlt, M, m, p, pr) => { debug3("xRange", comp, ret, gtlt, M, m, p, pr); const xM = isX(M); const xm = xM || isX(m); const xp = xm || isX(p); const anyX = xp; if (gtlt === "=" && anyX) { gtlt = ""; } pr = options.includePrerelease ? "-0" : ""; if (xM) { if (gtlt === ">" || gtlt === "<") { ret = "<0.0.0-0"; } else { ret = "*"; } } else if (gtlt && anyX) { if (xm) { m = 0; } p = 0; if (gtlt === ">") { gtlt = ">="; if (xm) { M = +M + 1; m = 0; p = 0; } else { m = +m + 1; p = 0; } } else if (gtlt === "<=") { gtlt = "<"; if (xm) { M = +M + 1; } else { m = +m + 1; } } if (gtlt === "<") { pr = "-0"; } ret = `${gtlt + M}.${m}.${p}${pr}`; } else if (xm) { ret = `>=${M}.0.0${pr} <${+M + 1}.0.0-0`; } else if (xp) { ret = `>=${M}.${m}.0${pr} <${M}.${+m + 1}.0-0`; } debug3("xRange return", ret); return ret; }); }, "replaceXRange"); var replaceStars = /* @__PURE__ */ __name((comp, options) => { debug3("replaceStars", comp, options); return comp.trim().replace(re[t8.STAR], ""); }, "replaceStars"); var replaceGTE0 = /* @__PURE__ */ __name((comp, options) => { debug3("replaceGTE0", comp, options); return comp.trim().replace(re[options.includePrerelease ? t8.GTE0PRE : t8.GTE0], ""); }, "replaceGTE0"); var hyphenReplace = /* @__PURE__ */ __name((incPr) => ($0, from, fM, fm, fp, fpr, fb, to, tM, tm, tp, tpr) => { if (isX(fM)) { from = ""; } else if (isX(fm)) { from = `>=${fM}.0.0${incPr ? "-0" : ""}`; } else if (isX(fp)) { from = `>=${fM}.${fm}.0${incPr ? "-0" : ""}`; } else if (fpr) { from = `>=${from}`; } else { from = `>=${from}${incPr ? "-0" : ""}`; } if (isX(tM)) { to = ""; } else if (isX(tm)) { to = `<${+tM + 1}.0.0-0`; } else if (isX(tp)) { to = `<${tM}.${+tm + 1}.0-0`; } else if (tpr) { to = `<=${tM}.${tm}.${tp}-${tpr}`; } else if (incPr) { to = `<${tM}.${tm}.${+tp + 1}-0`; } else { to = `<=${to}`; } return `${from} ${to}`.trim(); }, "hyphenReplace"); var testSet = /* @__PURE__ */ __name((set2, version5, options) => { for (let i = 0; i < set2.length; i++) { if (!set2[i].test(version5)) { return false; } } if (version5.prerelease.length && !options.includePrerelease) { for (let i = 0; i < set2.length; i++) { debug3(set2[i].semver); if (set2[i].semver === Comparator.ANY) { continue; } if (set2[i].semver.prerelease.length > 0) { const allowed = set2[i].semver; if (allowed.major === version5.major && allowed.minor === version5.minor && allowed.patch === version5.patch) { return true; } } } return false; } return true; }, "testSet"); } }); // ../../node_modules/bullmq/node_modules/semver/classes/comparator.js var require_comparator = __commonJS({ "../../node_modules/bullmq/node_modules/semver/classes/comparator.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var ANY = /* @__PURE__ */ Symbol("SemVer ANY"); var Comparator = class _Comparator { static { __name(this, "Comparator"); } static get ANY() { return ANY; } constructor(comp, options) { options = parseOptions(options); if (comp instanceof _Comparator) { if (comp.loose === !!options.loose) { return comp; } else { comp = comp.value; } } comp = comp.trim().split(/\s+/).join(" "); debug3("comparator", comp, options); this.options = options; this.loose = !!options.loose; this.parse(comp); if (this.semver === ANY) { this.value = ""; } else { this.value = this.operator + this.semver.version; } debug3("comp", this); } parse(comp) { const r = this.options.loose ? re[t8.COMPARATORLOOSE] : re[t8.COMPARATOR]; const m = comp.match(r); if (!m) { throw new TypeError(`Invalid comparator: ${comp}`); } this.operator = m[1] !== void 0 ? m[1] : ""; if (this.operator === "=") { this.operator = ""; } if (!m[2]) { this.semver = ANY; } else { this.semver = new SemVer(m[2], this.options.loose); } } toString() { return this.value; } test(version5) { debug3("Comparator.test", version5, this.options.loose); if (this.semver === ANY || version5 === ANY) { return true; } if (typeof version5 === "string") { try { version5 = new SemVer(version5, this.options); } catch (er) { return false; } } return cmp(version5, this.operator, this.semver, this.options); } intersects(comp, options) { if (!(comp instanceof _Comparator)) { throw new TypeError("a Comparator is required"); } if (this.operator === "") { if (this.value === "") { return true; } return new Range(comp.value, options).test(this.value); } else if (comp.operator === "") { if (comp.value === "") { return true; } return new Range(this.value, options).test(comp.semver); } options = parseOptions(options); if (options.includePrerelease && (this.value === "<0.0.0-0" || comp.value === "<0.0.0-0")) { return false; } if (!options.includePrerelease && (this.value.startsWith("<0.0.0") || comp.value.startsWith("<0.0.0"))) { return false; } if (this.operator.startsWith(">") && comp.operator.startsWith(">")) { return true; } if (this.operator.startsWith("<") && comp.operator.startsWith("<")) { return true; } if (this.semver.version === comp.semver.version && this.operator.includes("=") && comp.operator.includes("=")) { return true; } if (cmp(this.semver, "<", comp.semver, options) && this.operator.startsWith(">") && comp.operator.startsWith("<")) { return true; } if (cmp(this.semver, ">", comp.semver, options) && this.operator.startsWith("<") && comp.operator.startsWith(">")) { return true; } return false; } }; module2.exports = Comparator; var parseOptions = require_parse_options(); var { safeRe: re, t: t8 } = require_re(); var cmp = require_cmp(); var debug3 = require_debug2(); var SemVer = require_semver(); var Range = require_range(); } }); // ../../node_modules/bullmq/node_modules/semver/functions/satisfies.js var require_satisfies = __commonJS({ "../../node_modules/bullmq/node_modules/semver/functions/satisfies.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var Range = require_range(); var satisfies = /* @__PURE__ */ __name((version5, range, options) => { try { range = new Range(range, options); } catch (er) { return false; } return range.test(version5); }, "satisfies"); module2.exports = satisfies; } }); // ../../node_modules/bullmq/node_modules/semver/ranges/to-comparators.js var require_to_comparators = __commonJS({ "../../node_modules/bullmq/node_modules/semver/ranges/to-comparators.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var Range = require_range(); var toComparators = /* @__PURE__ */ __name((range, options) => new Range(range, options).set.map((comp) => comp.map((c) => c.value).join(" ").trim().split(" ")), "toComparators"); module2.exports = toComparators; } }); // ../../node_modules/bullmq/node_modules/semver/ranges/max-satisfying.js var require_max_satisfying = __commonJS({ "../../node_modules/bullmq/node_modules/semver/ranges/max-satisfying.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var SemVer = require_semver(); var Range = require_range(); var maxSatisfying = /* @__PURE__ */ __name((versions2, range, options) => { let max2 = null; let maxSV = null; let rangeObj = null; try { rangeObj = new Range(range, options); } catch (er) { return null; } versions2.forEach((v2) => { if (rangeObj.test(v2)) { if (!max2 || maxSV.compare(v2) === -1) { max2 = v2; maxSV = new SemVer(max2, options); } } }); return max2; }, "maxSatisfying"); module2.exports = maxSatisfying; } }); // ../../node_modules/bullmq/node_modules/semver/ranges/min-satisfying.js var require_min_satisfying = __commonJS({ "../../node_modules/bullmq/node_modules/semver/ranges/min-satisfying.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var SemVer = require_semver(); var Range = require_range(); var minSatisfying = /* @__PURE__ */ __name((versions2, range, options) => { let min = null; let minSV = null; let rangeObj = null; try { rangeObj = new Range(range, options); } catch (er) { return null; } versions2.forEach((v2) => { if (rangeObj.test(v2)) { if (!min || minSV.compare(v2) === 1) { min = v2; minSV = new SemVer(min, options); } } }); return min; }, "minSatisfying"); module2.exports = minSatisfying; } }); // ../../node_modules/bullmq/node_modules/semver/ranges/min-version.js var require_min_version = __commonJS({ "../../node_modules/bullmq/node_modules/semver/ranges/min-version.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var SemVer = require_semver(); var Range = require_range(); var gt2 = require_gt(); var minVersion = /* @__PURE__ */ __name((range, loose) => { range = new Range(range, loose); let minver = new SemVer("0.0.0"); if (range.test(minver)) { return minver; } minver = new SemVer("0.0.0-0"); if (range.test(minver)) { return minver; } minver = null; for (let i = 0; i < range.set.length; ++i) { const comparators = range.set[i]; let setMin = null; comparators.forEach((comparator) => { const compver = new SemVer(comparator.semver.version); switch (comparator.operator) { case ">": if (compver.prerelease.length === 0) { compver.patch++; } else { compver.prerelease.push(0); } compver.raw = compver.format(); /* fallthrough */ case "": case ">=": if (!setMin || gt2(compver, setMin)) { setMin = compver; } break; case "<": case "<=": break; /* istanbul ignore next */ default: throw new Error(`Unexpected operation: ${comparator.operator}`); } }); if (setMin && (!minver || gt2(minver, setMin))) { minver = setMin; } } if (minver && range.test(minver)) { return minver; } return null; }, "minVersion"); module2.exports = minVersion; } }); // ../../node_modules/bullmq/node_modules/semver/ranges/valid.js var require_valid2 = __commonJS({ "../../node_modules/bullmq/node_modules/semver/ranges/valid.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var Range = require_range(); var validRange = /* @__PURE__ */ __name((range, options) => { try { return new Range(range, options).range || "*"; } catch (er) { return null; } }, "validRange"); module2.exports = validRange; } }); // ../../node_modules/bullmq/node_modules/semver/ranges/outside.js var require_outside = __commonJS({ "../../node_modules/bullmq/node_modules/semver/ranges/outside.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var SemVer = require_semver(); var Comparator = require_comparator(); var { ANY } = Comparator; var Range = require_range(); var satisfies = require_satisfies(); var gt2 = require_gt(); var lt3 = require_lt(); var lte2 = require_lte(); var gte2 = require_gte(); var outside = /* @__PURE__ */ __name((version5, range, hilo, options) => { version5 = new SemVer(version5, options); range = new Range(range, options); let gtfn, ltefn, ltfn, comp, ecomp; switch (hilo) { case ">": gtfn = gt2; ltefn = lte2; ltfn = lt3; comp = ">"; ecomp = ">="; break; case "<": gtfn = lt3; ltefn = gte2; ltfn = gt2; comp = "<"; ecomp = "<="; break; default: throw new TypeError('Must provide a hilo val of "<" or ">"'); } if (satisfies(version5, range, options)) { return false; } for (let i = 0; i < range.set.length; ++i) { const comparators = range.set[i]; let high = null; let low = null; comparators.forEach((comparator) => { if (comparator.semver === ANY) { comparator = new Comparator(">=0.0.0"); } high = high || comparator; low = low || comparator; if (gtfn(comparator.semver, high.semver, options)) { high = comparator; } else if (ltfn(comparator.semver, low.semver, options)) { low = comparator; } }); if (high.operator === comp || high.operator === ecomp) { return false; } if ((!low.operator || low.operator === comp) && ltefn(version5, low.semver)) { return false; } else if (low.operator === ecomp && ltfn(version5, low.semver)) { return false; } } return true; }, "outside"); module2.exports = outside; } }); // ../../node_modules/bullmq/node_modules/semver/ranges/gtr.js var require_gtr = __commonJS({ "../../node_modules/bullmq/node_modules/semver/ranges/gtr.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var outside = require_outside(); var gtr = /* @__PURE__ */ __name((version5, range, options) => outside(version5, range, ">", options), "gtr"); module2.exports = gtr; } }); // ../../node_modules/bullmq/node_modules/semver/ranges/ltr.js var require_ltr = __commonJS({ "../../node_modules/bullmq/node_modules/semver/ranges/ltr.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var outside = require_outside(); var ltr = /* @__PURE__ */ __name((version5, range, options) => outside(version5, range, "<", options), "ltr"); module2.exports = ltr; } }); // ../../node_modules/bullmq/node_modules/semver/ranges/intersects.js var require_intersects = __commonJS({ "../../node_modules/bullmq/node_modules/semver/ranges/intersects.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var Range = require_range(); var intersects = /* @__PURE__ */ __name((r1, r2, options) => { r1 = new Range(r1, options); r2 = new Range(r2, options); return r1.intersects(r2, options); }, "intersects"); module2.exports = intersects; } }); // ../../node_modules/bullmq/node_modules/semver/ranges/simplify.js var require_simplify = __commonJS({ "../../node_modules/bullmq/node_modules/semver/ranges/simplify.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var satisfies = require_satisfies(); var compare2 = require_compare(); module2.exports = (versions2, range, options) => { const set2 = []; let first = null; let prev = null; const v2 = versions2.sort((a, b) => compare2(a, b, options)); for (const version5 of v2) { const included = satisfies(version5, range, options); if (included) { prev = version5; if (!first) { first = version5; } } else { if (prev) { set2.push([first, prev]); } prev = null; first = null; } } if (first) { set2.push([first, null]); } const ranges = []; for (const [min, max2] of set2) { if (min === max2) { ranges.push(min); } else if (!max2 && min === v2[0]) { ranges.push("*"); } else if (!max2) { ranges.push(`>=${min}`); } else if (min === v2[0]) { ranges.push(`<=${max2}`); } else { ranges.push(`${min} - ${max2}`); } } const simplified = ranges.join(" || "); const original = typeof range.raw === "string" ? range.raw : String(range); return simplified.length < original.length ? simplified : range; }; } }); // ../../node_modules/bullmq/node_modules/semver/ranges/subset.js var require_subset = __commonJS({ "../../node_modules/bullmq/node_modules/semver/ranges/subset.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var Range = require_range(); var Comparator = require_comparator(); var { ANY } = Comparator; var satisfies = require_satisfies(); var compare2 = require_compare(); var subset = /* @__PURE__ */ __name((sub, dom, options = {}) => { if (sub === dom) { return true; } sub = new Range(sub, options); dom = new Range(dom, options); let sawNonNull = false; OUTER: for (const simpleSub of sub.set) { for (const simpleDom of dom.set) { const isSub = simpleSubset(simpleSub, simpleDom, options); sawNonNull = sawNonNull || isSub !== null; if (isSub) { continue OUTER; } } if (sawNonNull) { return false; } } return true; }, "subset"); var minimumVersionWithPreRelease = [new Comparator(">=0.0.0-0")]; var minimumVersion = [new Comparator(">=0.0.0")]; var simpleSubset = /* @__PURE__ */ __name((sub, dom, options) => { if (sub === dom) { return true; } if (sub.length === 1 && sub[0].semver === ANY) { if (dom.length === 1 && dom[0].semver === ANY) { return true; } else if (options.includePrerelease) { sub = minimumVersionWithPreRelease; } else { sub = minimumVersion; } } if (dom.length === 1 && dom[0].semver === ANY) { if (options.includePrerelease) { return true; } else { dom = minimumVersion; } } const eqSet = /* @__PURE__ */ new Set(); let gt2, lt3; for (const c of sub) { if (c.operator === ">" || c.operator === ">=") { gt2 = higherGT(gt2, c, options); } else if (c.operator === "<" || c.operator === "<=") { lt3 = lowerLT(lt3, c, options); } else { eqSet.add(c.semver); } } if (eqSet.size > 1) { return null; } let gtltComp; if (gt2 && lt3) { gtltComp = compare2(gt2.semver, lt3.semver, options); if (gtltComp > 0) { return null; } else if (gtltComp === 0 && (gt2.operator !== ">=" || lt3.operator !== "<=")) { return null; } } for (const eq2 of eqSet) { if (gt2 && !satisfies(eq2, String(gt2), options)) { return null; } if (lt3 && !satisfies(eq2, String(lt3), options)) { return null; } for (const c of dom) { if (!satisfies(eq2, String(c), options)) { return false; } } return true; } let higher, lower; let hasDomLT, hasDomGT; let needDomLTPre = lt3 && !options.includePrerelease && lt3.semver.prerelease.length ? lt3.semver : false; let needDomGTPre = gt2 && !options.includePrerelease && gt2.semver.prerelease.length ? gt2.semver : false; if (needDomLTPre && needDomLTPre.prerelease.length === 1 && lt3.operator === "<" && needDomLTPre.prerelease[0] === 0) { needDomLTPre = false; } for (const c of dom) { hasDomGT = hasDomGT || c.operator === ">" || c.operator === ">="; hasDomLT = hasDomLT || c.operator === "<" || c.operator === "<="; if (gt2) { if (needDomGTPre) { if (c.semver.prerelease && c.semver.prerelease.length && c.semver.major === needDomGTPre.major && c.semver.minor === needDomGTPre.minor && c.semver.patch === needDomGTPre.patch) { needDomGTPre = false; } } if (c.operator === ">" || c.operator === ">=") { higher = higherGT(gt2, c, options); if (higher === c && higher !== gt2) { return false; } } else if (gt2.operator === ">=" && !satisfies(gt2.semver, String(c), options)) { return false; } } if (lt3) { if (needDomLTPre) { if (c.semver.prerelease && c.semver.prerelease.length && c.semver.major === needDomLTPre.major && c.semver.minor === needDomLTPre.minor && c.semver.patch === needDomLTPre.patch) { needDomLTPre = false; } } if (c.operator === "<" || c.operator === "<=") { lower = lowerLT(lt3, c, options); if (lower === c && lower !== lt3) { return false; } } else if (lt3.operator === "<=" && !satisfies(lt3.semver, String(c), options)) { return false; } } if (!c.operator && (lt3 || gt2) && gtltComp !== 0) { return false; } } if (gt2 && hasDomLT && !lt3 && gtltComp !== 0) { return false; } if (lt3 && hasDomGT && !gt2 && gtltComp !== 0) { return false; } if (needDomGTPre || needDomLTPre) { return false; } return true; }, "simpleSubset"); var higherGT = /* @__PURE__ */ __name((a, b, options) => { if (!a) { return b; } const comp = compare2(a.semver, b.semver, options); return comp > 0 ? a : comp < 0 ? b : b.operator === ">" && a.operator === ">=" ? b : a; }, "higherGT"); var lowerLT = /* @__PURE__ */ __name((a, b, options) => { if (!a) { return b; } const comp = compare2(a.semver, b.semver, options); return comp < 0 ? a : comp > 0 ? b : b.operator === "<" && a.operator === "<=" ? b : a; }, "lowerLT"); module2.exports = subset; } }); // ../../node_modules/bullmq/node_modules/semver/index.js var require_semver2 = __commonJS({ "../../node_modules/bullmq/node_modules/semver/index.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var internalRe = require_re(); var constants = require_constants(); var SemVer = require_semver(); var identifiers = require_identifiers(); var parse3 = require_parse(); var valid2 = require_valid(); var clean = require_clean(); var inc = require_inc(); var diff = require_diff(); var major = require_major(); var minor = require_minor(); var patch = require_patch(); var prerelease = require_prerelease(); var compare2 = require_compare(); var rcompare = require_rcompare(); var compareLoose = require_compare_loose(); var compareBuild = require_compare_build(); var sort = require_sort(); var rsort = require_rsort(); var gt2 = require_gt(); var lt3 = require_lt(); var eq2 = require_eq(); var neq = require_neq(); var gte2 = require_gte(); var lte2 = require_lte(); var cmp = require_cmp(); var coerce2 = require_coerce(); var Comparator = require_comparator(); var Range = require_range(); var satisfies = require_satisfies(); var toComparators = require_to_comparators(); var maxSatisfying = require_max_satisfying(); var minSatisfying = require_min_satisfying(); var minVersion = require_min_version(); var validRange = require_valid2(); var outside = require_outside(); var gtr = require_gtr(); var ltr = require_ltr(); var intersects = require_intersects(); var simplifyRange = require_simplify(); var subset = require_subset(); module2.exports = { parse: parse3, valid: valid2, clean, inc, diff, major, minor, patch, prerelease, compare: compare2, rcompare, compareLoose, compareBuild, sort, rsort, gt: gt2, lt: lt3, eq: eq2, neq, gte: gte2, lte: lte2, cmp, coerce: coerce2, Comparator, Range, satisfies, toComparators, maxSatisfying, minSatisfying, minVersion, validRange, outside, gtr, ltr, intersects, simplifyRange, subset, SemVer, re: internalRe.re, src: internalRe.src, tokens: internalRe.t, SEMVER_SPEC_VERSION: constants.SEMVER_SPEC_VERSION, RELEASE_TYPES: constants.RELEASE_TYPES, compareIdentifiers: identifiers.compareIdentifiers, rcompareIdentifiers: identifiers.rcompareIdentifiers }; } }); // ../../node_modules/luxon/build/node/luxon.js var require_luxon = __commonJS({ "../../node_modules/luxon/build/node/luxon.js"(exports) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); Object.defineProperty(exports, "__esModule", { value: true }); var LuxonError = class extends Error { static { __name(this, "LuxonError"); } }; var InvalidDateTimeError = class extends LuxonError { static { __name(this, "InvalidDateTimeError"); } constructor(reason) { super(`Invalid DateTime: ${reason.toMessage()}`); } }; var InvalidIntervalError = class extends LuxonError { static { __name(this, "InvalidIntervalError"); } constructor(reason) { super(`Invalid Interval: ${reason.toMessage()}`); } }; var InvalidDurationError = class extends LuxonError { static { __name(this, "InvalidDurationError"); } constructor(reason) { super(`Invalid Duration: ${reason.toMessage()}`); } }; var ConflictingSpecificationError = class extends LuxonError { static { __name(this, "ConflictingSpecificationError"); } }; var InvalidUnitError = class extends LuxonError { static { __name(this, "InvalidUnitError"); } constructor(unit) { super(`Invalid unit ${unit}`); } }; var InvalidArgumentError = class extends LuxonError { static { __name(this, "InvalidArgumentError"); } }; var ZoneIsAbstractError = class extends LuxonError { static { __name(this, "ZoneIsAbstractError"); } constructor() { super("Zone is an abstract class"); } }; var n = "numeric"; var s = "short"; var l = "long"; var DATE_SHORT = { year: n, month: n, day: n }; var DATE_MED = { year: n, month: s, day: n }; var DATE_MED_WITH_WEEKDAY = { year: n, month: s, day: n, weekday: s }; var DATE_FULL = { year: n, month: l, day: n }; var DATE_HUGE = { year: n, month: l, day: n, weekday: l }; var TIME_SIMPLE = { hour: n, minute: n }; var TIME_WITH_SECONDS = { hour: n, minute: n, second: n }; var TIME_WITH_SHORT_OFFSET = { hour: n, minute: n, second: n, timeZoneName: s }; var TIME_WITH_LONG_OFFSET = { hour: n, minute: n, second: n, timeZoneName: l }; var TIME_24_SIMPLE = { hour: n, minute: n, hourCycle: "h23" }; var TIME_24_WITH_SECONDS = { hour: n, minute: n, second: n, hourCycle: "h23" }; var TIME_24_WITH_SHORT_OFFSET = { hour: n, minute: n, second: n, hourCycle: "h23", timeZoneName: s }; var TIME_24_WITH_LONG_OFFSET = { hour: n, minute: n, second: n, hourCycle: "h23", timeZoneName: l }; var DATETIME_SHORT = { year: n, month: n, day: n, hour: n, minute: n }; var DATETIME_SHORT_WITH_SECONDS = { year: n, month: n, day: n, hour: n, minute: n, second: n }; var DATETIME_MED = { year: n, month: s, day: n, hour: n, minute: n }; var DATETIME_MED_WITH_SECONDS = { year: n, month: s, day: n, hour: n, minute: n, second: n }; var DATETIME_MED_WITH_WEEKDAY = { year: n, month: s, day: n, weekday: s, hour: n, minute: n }; var DATETIME_FULL = { year: n, month: l, day: n, hour: n, minute: n, timeZoneName: s }; var DATETIME_FULL_WITH_SECONDS = { year: n, month: l, day: n, hour: n, minute: n, second: n, timeZoneName: s }; var DATETIME_HUGE = { year: n, month: l, day: n, weekday: l, hour: n, minute: n, timeZoneName: l }; var DATETIME_HUGE_WITH_SECONDS = { year: n, month: l, day: n, weekday: l, hour: n, minute: n, second: n, timeZoneName: l }; var Zone = class { static { __name(this, "Zone"); } /** * The type of zone * @abstract * @type {string} */ get type() { throw new ZoneIsAbstractError(); } /** * The name of this zone. * @abstract * @type {string} */ get name() { throw new ZoneIsAbstractError(); } /** * The IANA name of this zone. * Defaults to `name` if not overwritten by a subclass. * @abstract * @type {string} */ get ianaName() { return this.name; } /** * Returns whether the offset is known to be fixed for the whole year. * @abstract * @type {boolean} */ get isUniversal() { throw new ZoneIsAbstractError(); } /** * Returns the offset's common name (such as EST) at the specified timestamp * @abstract * @param {number} ts - Epoch milliseconds for which to get the name * @param {Object} opts - Options to affect the format * @param {string} opts.format - What style of offset to return. Accepts 'long' or 'short'. * @param {string} opts.locale - What locale to return the offset name in. * @return {string} */ offsetName(ts, opts) { throw new ZoneIsAbstractError(); } /** * Returns the offset's value as a string * @abstract * @param {number} ts - Epoch milliseconds for which to get the offset * @param {string} format - What style of offset to return. * Accepts 'narrow', 'short', or 'techie'. Returning '+6', '+06:00', or '+0600' respectively * @return {string} */ formatOffset(ts, format) { throw new ZoneIsAbstractError(); } /** * Return the offset in minutes for this zone at the specified timestamp. * @abstract * @param {number} ts - Epoch milliseconds for which to compute the offset * @return {number} */ offset(ts) { throw new ZoneIsAbstractError(); } /** * Return whether this Zone is equal to another zone * @abstract * @param {Zone} otherZone - the zone to compare * @return {boolean} */ equals(otherZone) { throw new ZoneIsAbstractError(); } /** * Return whether this Zone is valid. * @abstract * @type {boolean} */ get isValid() { throw new ZoneIsAbstractError(); } }; var singleton$1 = null; var SystemZone = class _SystemZone extends Zone { static { __name(this, "SystemZone"); } /** * Get a singleton instance of the local zone * @return {SystemZone} */ static get instance() { if (singleton$1 === null) { singleton$1 = new _SystemZone(); } return singleton$1; } /** @override **/ get type() { return "system"; } /** @override **/ get name() { return new Intl.DateTimeFormat().resolvedOptions().timeZone; } /** @override **/ get isUniversal() { return false; } /** @override **/ offsetName(ts, { format, locale }) { return parseZoneInfo(ts, format, locale); } /** @override **/ formatOffset(ts, format) { return formatOffset(this.offset(ts), format); } /** @override **/ offset(ts) { return -new Date(ts).getTimezoneOffset(); } /** @override **/ equals(otherZone) { return otherZone.type === "system"; } /** @override **/ get isValid() { return true; } }; var dtfCache = /* @__PURE__ */ new Map(); function makeDTF(zoneName) { let dtf = dtfCache.get(zoneName); if (dtf === void 0) { dtf = new Intl.DateTimeFormat("en-US", { hour12: false, timeZone: zoneName, year: "numeric", month: "2-digit", day: "2-digit", hour: "2-digit", minute: "2-digit", second: "2-digit", era: "short" }); dtfCache.set(zoneName, dtf); } return dtf; } __name(makeDTF, "makeDTF"); var typeToPos = { year: 0, month: 1, day: 2, era: 3, hour: 4, minute: 5, second: 6 }; function hackyOffset(dtf, date5) { const formatted = dtf.format(date5).replace(/\u200E/g, ""), parsed = /(\d+)\/(\d+)\/(\d+) (AD|BC),? (\d+):(\d+):(\d+)/.exec(formatted), [, fMonth, fDay, fYear, fadOrBc, fHour, fMinute, fSecond] = parsed; return [fYear, fMonth, fDay, fadOrBc, fHour, fMinute, fSecond]; } __name(hackyOffset, "hackyOffset"); function partsOffset(dtf, date5) { const formatted = dtf.formatToParts(date5); const filled = []; for (let i = 0; i < formatted.length; i++) { const { type, value } = formatted[i]; const pos = typeToPos[type]; if (type === "era") { filled[pos] = value; } else if (!isUndefined2(pos)) { filled[pos] = parseInt(value, 10); } } return filled; } __name(partsOffset, "partsOffset"); var ianaZoneCache = /* @__PURE__ */ new Map(); var IANAZone = class _IANAZone extends Zone { static { __name(this, "IANAZone"); } /** * @param {string} name - Zone name * @return {IANAZone} */ static create(name) { let zone = ianaZoneCache.get(name); if (zone === void 0) { ianaZoneCache.set(name, zone = new _IANAZone(name)); } return zone; } /** * Reset local caches. Should only be necessary in testing scenarios. * @return {void} */ static resetCache() { ianaZoneCache.clear(); dtfCache.clear(); } /** * Returns whether the provided string is a valid specifier. This only checks the string's format, not that the specifier identifies a known zone; see isValidZone for that. * @param {string} s - The string to check validity on * @example IANAZone.isValidSpecifier("America/New_York") //=> true * @example IANAZone.isValidSpecifier("Sport~~blorp") //=> false * @deprecated For backward compatibility, this forwards to isValidZone, better use `isValidZone()` directly instead. * @return {boolean} */ static isValidSpecifier(s2) { return this.isValidZone(s2); } /** * Returns whether the provided string identifies a real zone * @param {string} zone - The string to check * @example IANAZone.isValidZone("America/New_York") //=> true * @example IANAZone.isValidZone("Fantasia/Castle") //=> false * @example IANAZone.isValidZone("Sport~~blorp") //=> false * @return {boolean} */ static isValidZone(zone) { if (!zone) { return false; } try { new Intl.DateTimeFormat("en-US", { timeZone: zone }).format(); return true; } catch (e) { return false; } } constructor(name) { super(); this.zoneName = name; this.valid = _IANAZone.isValidZone(name); } /** * The type of zone. `iana` for all instances of `IANAZone`. * @override * @type {string} */ get type() { return "iana"; } /** * The name of this zone (i.e. the IANA zone name). * @override * @type {string} */ get name() { return this.zoneName; } /** * Returns whether the offset is known to be fixed for the whole year: * Always returns false for all IANA zones. * @override * @type {boolean} */ get isUniversal() { return false; } /** * Returns the offset's common name (such as EST) at the specified timestamp * @override * @param {number} ts - Epoch milliseconds for which to get the name * @param {Object} opts - Options to affect the format * @param {string} opts.format - What style of offset to return. Accepts 'long' or 'short'. * @param {string} opts.locale - What locale to return the offset name in. * @return {string} */ offsetName(ts, { format, locale }) { return parseZoneInfo(ts, format, locale, this.name); } /** * Returns the offset's value as a string * @override * @param {number} ts - Epoch milliseconds for which to get the offset * @param {string} format - What style of offset to return. * Accepts 'narrow', 'short', or 'techie'. Returning '+6', '+06:00', or '+0600' respectively * @return {string} */ formatOffset(ts, format) { return formatOffset(this.offset(ts), format); } /** * Return the offset in minutes for this zone at the specified timestamp. * @override * @param {number} ts - Epoch milliseconds for which to compute the offset * @return {number} */ offset(ts) { if (!this.valid) return NaN; const date5 = new Date(ts); if (isNaN(date5)) return NaN; const dtf = makeDTF(this.name); let [year2, month, day2, adOrBc, hour2, minute2, second] = dtf.formatToParts ? partsOffset(dtf, date5) : hackyOffset(dtf, date5); if (adOrBc === "BC") { year2 = -Math.abs(year2) + 1; } const adjustedHour = hour2 === 24 ? 0 : hour2; const asUTC = objToLocalTS({ year: year2, month, day: day2, hour: adjustedHour, minute: minute2, second, millisecond: 0 }); let asTS = +date5; const over = asTS % 1e3; asTS -= over >= 0 ? over : 1e3 + over; return (asUTC - asTS) / (60 * 1e3); } /** * Return whether this Zone is equal to another zone * @override * @param {Zone} otherZone - the zone to compare * @return {boolean} */ equals(otherZone) { return otherZone.type === "iana" && otherZone.name === this.name; } /** * Return whether this Zone is valid. * @override * @type {boolean} */ get isValid() { return this.valid; } }; var intlLFCache = {}; function getCachedLF(locString, opts = {}) { const key = JSON.stringify([locString, opts]); let dtf = intlLFCache[key]; if (!dtf) { dtf = new Intl.ListFormat(locString, opts); intlLFCache[key] = dtf; } return dtf; } __name(getCachedLF, "getCachedLF"); var intlDTCache = /* @__PURE__ */ new Map(); function getCachedDTF(locString, opts = {}) { const key = JSON.stringify([locString, opts]); let dtf = intlDTCache.get(key); if (dtf === void 0) { dtf = new Intl.DateTimeFormat(locString, opts); intlDTCache.set(key, dtf); } return dtf; } __name(getCachedDTF, "getCachedDTF"); var intlNumCache = /* @__PURE__ */ new Map(); function getCachedINF(locString, opts = {}) { const key = JSON.stringify([locString, opts]); let inf = intlNumCache.get(key); if (inf === void 0) { inf = new Intl.NumberFormat(locString, opts); intlNumCache.set(key, inf); } return inf; } __name(getCachedINF, "getCachedINF"); var intlRelCache = /* @__PURE__ */ new Map(); function getCachedRTF(locString, opts = {}) { const { base, ...cacheKeyOpts } = opts; const key = JSON.stringify([locString, cacheKeyOpts]); let inf = intlRelCache.get(key); if (inf === void 0) { inf = new Intl.RelativeTimeFormat(locString, opts); intlRelCache.set(key, inf); } return inf; } __name(getCachedRTF, "getCachedRTF"); var sysLocaleCache = null; function systemLocale() { if (sysLocaleCache) { return sysLocaleCache; } else { sysLocaleCache = new Intl.DateTimeFormat().resolvedOptions().locale; return sysLocaleCache; } } __name(systemLocale, "systemLocale"); var intlResolvedOptionsCache = /* @__PURE__ */ new Map(); function getCachedIntResolvedOptions(locString) { let opts = intlResolvedOptionsCache.get(locString); if (opts === void 0) { opts = new Intl.DateTimeFormat(locString).resolvedOptions(); intlResolvedOptionsCache.set(locString, opts); } return opts; } __name(getCachedIntResolvedOptions, "getCachedIntResolvedOptions"); var weekInfoCache = /* @__PURE__ */ new Map(); function getCachedWeekInfo(locString) { let data = weekInfoCache.get(locString); if (!data) { const locale = new Intl.Locale(locString); data = "getWeekInfo" in locale ? locale.getWeekInfo() : locale.weekInfo; if (!("minimalDays" in data)) { data = { ...fallbackWeekSettings, ...data }; } weekInfoCache.set(locString, data); } return data; } __name(getCachedWeekInfo, "getCachedWeekInfo"); function parseLocaleString(localeStr) { const xIndex = localeStr.indexOf("-x-"); if (xIndex !== -1) { localeStr = localeStr.substring(0, xIndex); } const uIndex = localeStr.indexOf("-u-"); if (uIndex === -1) { return [localeStr]; } else { let options; let selectedStr; try { options = getCachedDTF(localeStr).resolvedOptions(); selectedStr = localeStr; } catch (e) { const smaller = localeStr.substring(0, uIndex); options = getCachedDTF(smaller).resolvedOptions(); selectedStr = smaller; } const { numberingSystem, calendar } = options; return [selectedStr, numberingSystem, calendar]; } } __name(parseLocaleString, "parseLocaleString"); function intlConfigString(localeStr, numberingSystem, outputCalendar) { if (outputCalendar || numberingSystem) { if (!localeStr.includes("-u-")) { localeStr += "-u"; } if (outputCalendar) { localeStr += `-ca-${outputCalendar}`; } if (numberingSystem) { localeStr += `-nu-${numberingSystem}`; } return localeStr; } else { return localeStr; } } __name(intlConfigString, "intlConfigString"); function mapMonths(f) { const ms = []; for (let i = 1; i <= 12; i++) { const dt = DateTime.utc(2009, i, 1); ms.push(f(dt)); } return ms; } __name(mapMonths, "mapMonths"); function mapWeekdays(f) { const ms = []; for (let i = 1; i <= 7; i++) { const dt = DateTime.utc(2016, 11, 13 + i); ms.push(f(dt)); } return ms; } __name(mapWeekdays, "mapWeekdays"); function listStuff(loc, length, englishFn, intlFn) { const mode = loc.listingMode(); if (mode === "error") { return null; } else if (mode === "en") { return englishFn(length); } else { return intlFn(length); } } __name(listStuff, "listStuff"); function supportsFastNumbers(loc) { if (loc.numberingSystem && loc.numberingSystem !== "latn") { return false; } else { return loc.numberingSystem === "latn" || !loc.locale || loc.locale.startsWith("en") || getCachedIntResolvedOptions(loc.locale).numberingSystem === "latn"; } } __name(supportsFastNumbers, "supportsFastNumbers"); var PolyNumberFormatter = class { static { __name(this, "PolyNumberFormatter"); } constructor(intl, forceSimple, opts) { this.padTo = opts.padTo || 0; this.floor = opts.floor || false; const { padTo, floor, ...otherOpts } = opts; if (!forceSimple || Object.keys(otherOpts).length > 0) { const intlOpts = { useGrouping: false, ...opts }; if (opts.padTo > 0) intlOpts.minimumIntegerDigits = opts.padTo; this.inf = getCachedINF(intl, intlOpts); } } format(i) { if (this.inf) { const fixed = this.floor ? Math.floor(i) : i; return this.inf.format(fixed); } else { const fixed = this.floor ? Math.floor(i) : roundTo(i, 3); return padStart(fixed, this.padTo); } } }; var PolyDateFormatter = class { static { __name(this, "PolyDateFormatter"); } constructor(dt, intl, opts) { this.opts = opts; this.originalZone = void 0; let z2 = void 0; if (this.opts.timeZone) { this.dt = dt; } else if (dt.zone.type === "fixed") { const gmtOffset = -1 * (dt.offset / 60); const offsetZ = gmtOffset >= 0 ? `Etc/GMT+${gmtOffset}` : `Etc/GMT${gmtOffset}`; if (dt.offset !== 0 && IANAZone.create(offsetZ).valid) { z2 = offsetZ; this.dt = dt; } else { z2 = "UTC"; this.dt = dt.offset === 0 ? dt : dt.setZone("UTC").plus({ minutes: dt.offset }); this.originalZone = dt.zone; } } else if (dt.zone.type === "system") { this.dt = dt; } else if (dt.zone.type === "iana") { this.dt = dt; z2 = dt.zone.name; } else { z2 = "UTC"; this.dt = dt.setZone("UTC").plus({ minutes: dt.offset }); this.originalZone = dt.zone; } const intlOpts = { ...this.opts }; intlOpts.timeZone = intlOpts.timeZone || z2; this.dtf = getCachedDTF(intl, intlOpts); } format() { if (this.originalZone) { return this.formatToParts().map(({ value }) => value).join(""); } return this.dtf.format(this.dt.toJSDate()); } formatToParts() { const parts = this.dtf.formatToParts(this.dt.toJSDate()); if (this.originalZone) { return parts.map((part) => { if (part.type === "timeZoneName") { const offsetName = this.originalZone.offsetName(this.dt.ts, { locale: this.dt.locale, format: this.opts.timeZoneName }); return { ...part, value: offsetName }; } else { return part; } }); } return parts; } resolvedOptions() { return this.dtf.resolvedOptions(); } }; var PolyRelFormatter = class { static { __name(this, "PolyRelFormatter"); } constructor(intl, isEnglish, opts) { this.opts = { style: "long", ...opts }; if (!isEnglish && hasRelative()) { this.rtf = getCachedRTF(intl, opts); } } format(count4, unit) { if (this.rtf) { return this.rtf.format(count4, unit); } else { return formatRelativeTime(unit, count4, this.opts.numeric, this.opts.style !== "long"); } } formatToParts(count4, unit) { if (this.rtf) { return this.rtf.formatToParts(count4, unit); } else { return []; } } }; var fallbackWeekSettings = { firstDay: 1, minimalDays: 4, weekend: [6, 7] }; var Locale = class _Locale { static { __name(this, "Locale"); } static fromOpts(opts) { return _Locale.create(opts.locale, opts.numberingSystem, opts.outputCalendar, opts.weekSettings, opts.defaultToEN); } static create(locale, numberingSystem, outputCalendar, weekSettings, defaultToEN = false) { const specifiedLocale = locale || Settings.defaultLocale; const localeR = specifiedLocale || (defaultToEN ? "en-US" : systemLocale()); const numberingSystemR = numberingSystem || Settings.defaultNumberingSystem; const outputCalendarR = outputCalendar || Settings.defaultOutputCalendar; const weekSettingsR = validateWeekSettings(weekSettings) || Settings.defaultWeekSettings; return new _Locale(localeR, numberingSystemR, outputCalendarR, weekSettingsR, specifiedLocale); } static resetCache() { sysLocaleCache = null; intlDTCache.clear(); intlNumCache.clear(); intlRelCache.clear(); intlResolvedOptionsCache.clear(); weekInfoCache.clear(); } static fromObject({ locale, numberingSystem, outputCalendar, weekSettings } = {}) { return _Locale.create(locale, numberingSystem, outputCalendar, weekSettings); } constructor(locale, numbering, outputCalendar, weekSettings, specifiedLocale) { const [parsedLocale, parsedNumberingSystem, parsedOutputCalendar] = parseLocaleString(locale); this.locale = parsedLocale; this.numberingSystem = numbering || parsedNumberingSystem || null; this.outputCalendar = outputCalendar || parsedOutputCalendar || null; this.weekSettings = weekSettings; this.intl = intlConfigString(this.locale, this.numberingSystem, this.outputCalendar); this.weekdaysCache = { format: {}, standalone: {} }; this.monthsCache = { format: {}, standalone: {} }; this.meridiemCache = null; this.eraCache = {}; this.specifiedLocale = specifiedLocale; this.fastNumbersCached = null; } get fastNumbers() { if (this.fastNumbersCached == null) { this.fastNumbersCached = supportsFastNumbers(this); } return this.fastNumbersCached; } listingMode() { const isActuallyEn = this.isEnglish(); const hasNoWeirdness = (this.numberingSystem === null || this.numberingSystem === "latn") && (this.outputCalendar === null || this.outputCalendar === "gregory"); return isActuallyEn && hasNoWeirdness ? "en" : "intl"; } clone(alts) { if (!alts || Object.getOwnPropertyNames(alts).length === 0) { return this; } else { return _Locale.create(alts.locale || this.specifiedLocale, alts.numberingSystem || this.numberingSystem, alts.outputCalendar || this.outputCalendar, validateWeekSettings(alts.weekSettings) || this.weekSettings, alts.defaultToEN || false); } } redefaultToEN(alts = {}) { return this.clone({ ...alts, defaultToEN: true }); } redefaultToSystem(alts = {}) { return this.clone({ ...alts, defaultToEN: false }); } months(length, format = false) { return listStuff(this, length, months, () => { const monthSpecialCase = this.intl === "ja" || this.intl.startsWith("ja-"); format &= !monthSpecialCase; const intl = format ? { month: length, day: "numeric" } : { month: length }, formatStr = format ? "format" : "standalone"; if (!this.monthsCache[formatStr][length]) { const mapper = !monthSpecialCase ? (dt) => this.extract(dt, intl, "month") : (dt) => this.dtFormatter(dt, intl).format(); this.monthsCache[formatStr][length] = mapMonths(mapper); } return this.monthsCache[formatStr][length]; }); } weekdays(length, format = false) { return listStuff(this, length, weekdays, () => { const intl = format ? { weekday: length, year: "numeric", month: "long", day: "numeric" } : { weekday: length }, formatStr = format ? "format" : "standalone"; if (!this.weekdaysCache[formatStr][length]) { this.weekdaysCache[formatStr][length] = mapWeekdays((dt) => this.extract(dt, intl, "weekday")); } return this.weekdaysCache[formatStr][length]; }); } meridiems() { return listStuff(this, void 0, () => meridiems, () => { if (!this.meridiemCache) { const intl = { hour: "numeric", hourCycle: "h12" }; this.meridiemCache = [DateTime.utc(2016, 11, 13, 9), DateTime.utc(2016, 11, 13, 19)].map((dt) => this.extract(dt, intl, "dayperiod")); } return this.meridiemCache; }); } eras(length) { return listStuff(this, length, eras, () => { const intl = { era: length }; if (!this.eraCache[length]) { this.eraCache[length] = [DateTime.utc(-40, 1, 1), DateTime.utc(2017, 1, 1)].map((dt) => this.extract(dt, intl, "era")); } return this.eraCache[length]; }); } extract(dt, intlOpts, field) { const df = this.dtFormatter(dt, intlOpts), results = df.formatToParts(), matching = results.find((m) => m.type.toLowerCase() === field); return matching ? matching.value : null; } numberFormatter(opts = {}) { return new PolyNumberFormatter(this.intl, opts.forceSimple || this.fastNumbers, opts); } dtFormatter(dt, intlOpts = {}) { return new PolyDateFormatter(dt, this.intl, intlOpts); } relFormatter(opts = {}) { return new PolyRelFormatter(this.intl, this.isEnglish(), opts); } listFormatter(opts = {}) { return getCachedLF(this.intl, opts); } isEnglish() { return this.locale === "en" || this.locale.toLowerCase() === "en-us" || getCachedIntResolvedOptions(this.intl).locale.startsWith("en-us"); } getWeekSettings() { if (this.weekSettings) { return this.weekSettings; } else if (!hasLocaleWeekInfo()) { return fallbackWeekSettings; } else { return getCachedWeekInfo(this.locale); } } getStartOfWeek() { return this.getWeekSettings().firstDay; } getMinDaysInFirstWeek() { return this.getWeekSettings().minimalDays; } getWeekendDays() { return this.getWeekSettings().weekend; } equals(other) { return this.locale === other.locale && this.numberingSystem === other.numberingSystem && this.outputCalendar === other.outputCalendar; } toString() { return `Locale(${this.locale}, ${this.numberingSystem}, ${this.outputCalendar})`; } }; var singleton = null; var FixedOffsetZone = class _FixedOffsetZone extends Zone { static { __name(this, "FixedOffsetZone"); } /** * Get a singleton instance of UTC * @return {FixedOffsetZone} */ static get utcInstance() { if (singleton === null) { singleton = new _FixedOffsetZone(0); } return singleton; } /** * Get an instance with a specified offset * @param {number} offset - The offset in minutes * @return {FixedOffsetZone} */ static instance(offset2) { return offset2 === 0 ? _FixedOffsetZone.utcInstance : new _FixedOffsetZone(offset2); } /** * Get an instance of FixedOffsetZone from a UTC offset string, like "UTC+6" * @param {string} s - The offset string to parse * @example FixedOffsetZone.parseSpecifier("UTC+6") * @example FixedOffsetZone.parseSpecifier("UTC+06") * @example FixedOffsetZone.parseSpecifier("UTC-6:00") * @return {FixedOffsetZone} */ static parseSpecifier(s2) { if (s2) { const r = s2.match(/^utc(?:([+-]\d{1,2})(?::(\d{2}))?)?$/i); if (r) { return new _FixedOffsetZone(signedOffset(r[1], r[2])); } } return null; } constructor(offset2) { super(); this.fixed = offset2; } /** * The type of zone. `fixed` for all instances of `FixedOffsetZone`. * @override * @type {string} */ get type() { return "fixed"; } /** * The name of this zone. * All fixed zones' names always start with "UTC" (plus optional offset) * @override * @type {string} */ get name() { return this.fixed === 0 ? "UTC" : `UTC${formatOffset(this.fixed, "narrow")}`; } /** * The IANA name of this zone, i.e. `Etc/UTC` or `Etc/GMT+/-nn` * * @override * @type {string} */ get ianaName() { if (this.fixed === 0) { return "Etc/UTC"; } else { return `Etc/GMT${formatOffset(-this.fixed, "narrow")}`; } } /** * Returns the offset's common name at the specified timestamp. * * For fixed offset zones this equals to the zone name. * @override */ offsetName() { return this.name; } /** * Returns the offset's value as a string * @override * @param {number} ts - Epoch milliseconds for which to get the offset * @param {string} format - What style of offset to return. * Accepts 'narrow', 'short', or 'techie'. Returning '+6', '+06:00', or '+0600' respectively * @return {string} */ formatOffset(ts, format) { return formatOffset(this.fixed, format); } /** * Returns whether the offset is known to be fixed for the whole year: * Always returns true for all fixed offset zones. * @override * @type {boolean} */ get isUniversal() { return true; } /** * Return the offset in minutes for this zone at the specified timestamp. * * For fixed offset zones, this is constant and does not depend on a timestamp. * @override * @return {number} */ offset() { return this.fixed; } /** * Return whether this Zone is equal to another zone (i.e. also fixed and same offset) * @override * @param {Zone} otherZone - the zone to compare * @return {boolean} */ equals(otherZone) { return otherZone.type === "fixed" && otherZone.fixed === this.fixed; } /** * Return whether this Zone is valid: * All fixed offset zones are valid. * @override * @type {boolean} */ get isValid() { return true; } }; var InvalidZone = class extends Zone { static { __name(this, "InvalidZone"); } constructor(zoneName) { super(); this.zoneName = zoneName; } /** @override **/ get type() { return "invalid"; } /** @override **/ get name() { return this.zoneName; } /** @override **/ get isUniversal() { return false; } /** @override **/ offsetName() { return null; } /** @override **/ formatOffset() { return ""; } /** @override **/ offset() { return NaN; } /** @override **/ equals() { return false; } /** @override **/ get isValid() { return false; } }; function normalizeZone(input, defaultZone2) { if (isUndefined2(input) || input === null) { return defaultZone2; } else if (input instanceof Zone) { return input; } else if (isString2(input)) { const lowered = input.toLowerCase(); if (lowered === "default") return defaultZone2; else if (lowered === "local" || lowered === "system") return SystemZone.instance; else if (lowered === "utc" || lowered === "gmt") return FixedOffsetZone.utcInstance; else return FixedOffsetZone.parseSpecifier(lowered) || IANAZone.create(input); } else if (isNumber3(input)) { return FixedOffsetZone.instance(input); } else if (typeof input === "object" && "offset" in input && typeof input.offset === "function") { return input; } else { return new InvalidZone(input); } } __name(normalizeZone, "normalizeZone"); var numberingSystems = { arab: "[\u0660-\u0669]", arabext: "[\u06F0-\u06F9]", bali: "[\u1B50-\u1B59]", beng: "[\u09E6-\u09EF]", deva: "[\u0966-\u096F]", fullwide: "[\uFF10-\uFF19]", gujr: "[\u0AE6-\u0AEF]", hanidec: "[\u3007|\u4E00|\u4E8C|\u4E09|\u56DB|\u4E94|\u516D|\u4E03|\u516B|\u4E5D]", khmr: "[\u17E0-\u17E9]", knda: "[\u0CE6-\u0CEF]", laoo: "[\u0ED0-\u0ED9]", limb: "[\u1946-\u194F]", mlym: "[\u0D66-\u0D6F]", mong: "[\u1810-\u1819]", mymr: "[\u1040-\u1049]", orya: "[\u0B66-\u0B6F]", tamldec: "[\u0BE6-\u0BEF]", telu: "[\u0C66-\u0C6F]", thai: "[\u0E50-\u0E59]", tibt: "[\u0F20-\u0F29]", latn: "\\d" }; var numberingSystemsUTF16 = { arab: [1632, 1641], arabext: [1776, 1785], bali: [6992, 7001], beng: [2534, 2543], deva: [2406, 2415], fullwide: [65296, 65303], gujr: [2790, 2799], khmr: [6112, 6121], knda: [3302, 3311], laoo: [3792, 3801], limb: [6470, 6479], mlym: [3430, 3439], mong: [6160, 6169], mymr: [4160, 4169], orya: [2918, 2927], tamldec: [3046, 3055], telu: [3174, 3183], thai: [3664, 3673], tibt: [3872, 3881] }; var hanidecChars = numberingSystems.hanidec.replace(/[\[|\]]/g, "").split(""); function parseDigits(str) { let value = parseInt(str, 10); if (isNaN(value)) { value = ""; for (let i = 0; i < str.length; i++) { const code = str.charCodeAt(i); if (str[i].search(numberingSystems.hanidec) !== -1) { value += hanidecChars.indexOf(str[i]); } else { for (const key in numberingSystemsUTF16) { const [min, max2] = numberingSystemsUTF16[key]; if (code >= min && code <= max2) { value += code - min; } } } } return parseInt(value, 10); } else { return value; } } __name(parseDigits, "parseDigits"); var digitRegexCache = /* @__PURE__ */ new Map(); function resetDigitRegexCache() { digitRegexCache.clear(); } __name(resetDigitRegexCache, "resetDigitRegexCache"); function digitRegex({ numberingSystem }, append2 = "") { const ns = numberingSystem || "latn"; let appendCache = digitRegexCache.get(ns); if (appendCache === void 0) { appendCache = /* @__PURE__ */ new Map(); digitRegexCache.set(ns, appendCache); } let regex = appendCache.get(append2); if (regex === void 0) { regex = new RegExp(`${numberingSystems[ns]}${append2}`); appendCache.set(append2, regex); } return regex; } __name(digitRegex, "digitRegex"); var now = /* @__PURE__ */ __name(() => Date.now(), "now"); var defaultZone = "system"; var defaultLocale = null; var defaultNumberingSystem = null; var defaultOutputCalendar = null; var twoDigitCutoffYear = 60; var throwOnInvalid; var defaultWeekSettings = null; var Settings = class { static { __name(this, "Settings"); } /** * Get the callback for returning the current timestamp. * @type {function} */ static get now() { return now; } /** * Set the callback for returning the current timestamp. * The function should return a number, which will be interpreted as an Epoch millisecond count * @type {function} * @example Settings.now = () => Date.now() + 3000 // pretend it is 3 seconds in the future * @example Settings.now = () => 0 // always pretend it's Jan 1, 1970 at midnight in UTC time */ static set now(n2) { now = n2; } /** * Set the default time zone to create DateTimes in. Does not affect existing instances. * Use the value "system" to reset this value to the system's time zone. * @type {string} */ static set defaultZone(zone) { defaultZone = zone; } /** * Get the default time zone object currently used to create DateTimes. Does not affect existing instances. * The default value is the system's time zone (the one set on the machine that runs this code). * @type {Zone} */ static get defaultZone() { return normalizeZone(defaultZone, SystemZone.instance); } /** * Get the default locale to create DateTimes with. Does not affect existing instances. * @type {string} */ static get defaultLocale() { return defaultLocale; } /** * Set the default locale to create DateTimes with. Does not affect existing instances. * @type {string} */ static set defaultLocale(locale) { defaultLocale = locale; } /** * Get the default numbering system to create DateTimes with. Does not affect existing instances. * @type {string} */ static get defaultNumberingSystem() { return defaultNumberingSystem; } /** * Set the default numbering system to create DateTimes with. Does not affect existing instances. * @type {string} */ static set defaultNumberingSystem(numberingSystem) { defaultNumberingSystem = numberingSystem; } /** * Get the default output calendar to create DateTimes with. Does not affect existing instances. * @type {string} */ static get defaultOutputCalendar() { return defaultOutputCalendar; } /** * Set the default output calendar to create DateTimes with. Does not affect existing instances. * @type {string} */ static set defaultOutputCalendar(outputCalendar) { defaultOutputCalendar = outputCalendar; } /** * @typedef {Object} WeekSettings * @property {number} firstDay * @property {number} minimalDays * @property {number[]} weekend */ /** * @return {WeekSettings|null} */ static get defaultWeekSettings() { return defaultWeekSettings; } /** * Allows overriding the default locale week settings, i.e. the start of the week, the weekend and * how many days are required in the first week of a year. * Does not affect existing instances. * * @param {WeekSettings|null} weekSettings */ static set defaultWeekSettings(weekSettings) { defaultWeekSettings = validateWeekSettings(weekSettings); } /** * Get the cutoff year for whether a 2-digit year string is interpreted in the current or previous century. Numbers higher than the cutoff will be considered to mean 19xx and numbers lower or equal to the cutoff will be considered 20xx. * @type {number} */ static get twoDigitCutoffYear() { return twoDigitCutoffYear; } /** * Set the cutoff year for whether a 2-digit year string is interpreted in the current or previous century. Numbers higher than the cutoff will be considered to mean 19xx and numbers lower or equal to the cutoff will be considered 20xx. * @type {number} * @example Settings.twoDigitCutoffYear = 0 // all 'yy' are interpreted as 20th century * @example Settings.twoDigitCutoffYear = 99 // all 'yy' are interpreted as 21st century * @example Settings.twoDigitCutoffYear = 50 // '49' -> 2049; '50' -> 1950 * @example Settings.twoDigitCutoffYear = 1950 // interpreted as 50 * @example Settings.twoDigitCutoffYear = 2050 // ALSO interpreted as 50 */ static set twoDigitCutoffYear(cutoffYear) { twoDigitCutoffYear = cutoffYear % 100; } /** * Get whether Luxon will throw when it encounters invalid DateTimes, Durations, or Intervals * @type {boolean} */ static get throwOnInvalid() { return throwOnInvalid; } /** * Set whether Luxon will throw when it encounters invalid DateTimes, Durations, or Intervals * @type {boolean} */ static set throwOnInvalid(t8) { throwOnInvalid = t8; } /** * Reset Luxon's global caches. Should only be necessary in testing scenarios. * @return {void} */ static resetCaches() { Locale.resetCache(); IANAZone.resetCache(); DateTime.resetCache(); resetDigitRegexCache(); } }; var Invalid = class { static { __name(this, "Invalid"); } constructor(reason, explanation) { this.reason = reason; this.explanation = explanation; } toMessage() { if (this.explanation) { return `${this.reason}: ${this.explanation}`; } else { return this.reason; } } }; var nonLeapLadder = [0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334]; var leapLadder = [0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335]; function unitOutOfRange(unit, value) { return new Invalid("unit out of range", `you specified ${value} (of type ${typeof value}) as a ${unit}, which is invalid`); } __name(unitOutOfRange, "unitOutOfRange"); function dayOfWeek(year2, month, day2) { const d = new Date(Date.UTC(year2, month - 1, day2)); if (year2 < 100 && year2 >= 0) { d.setUTCFullYear(d.getUTCFullYear() - 1900); } const js = d.getUTCDay(); return js === 0 ? 7 : js; } __name(dayOfWeek, "dayOfWeek"); function computeOrdinal(year2, month, day2) { return day2 + (isLeapYear2(year2) ? leapLadder : nonLeapLadder)[month - 1]; } __name(computeOrdinal, "computeOrdinal"); function uncomputeOrdinal(year2, ordinal) { const table3 = isLeapYear2(year2) ? leapLadder : nonLeapLadder, month0 = table3.findIndex((i) => i < ordinal), day2 = ordinal - table3[month0]; return { month: month0 + 1, day: day2 }; } __name(uncomputeOrdinal, "uncomputeOrdinal"); function isoWeekdayToLocal(isoWeekday, startOfWeek) { return (isoWeekday - startOfWeek + 7) % 7 + 1; } __name(isoWeekdayToLocal, "isoWeekdayToLocal"); function gregorianToWeek(gregObj, minDaysInFirstWeek = 4, startOfWeek = 1) { const { year: year2, month, day: day2 } = gregObj, ordinal = computeOrdinal(year2, month, day2), weekday = isoWeekdayToLocal(dayOfWeek(year2, month, day2), startOfWeek); let weekNumber = Math.floor((ordinal - weekday + 14 - minDaysInFirstWeek) / 7), weekYear; if (weekNumber < 1) { weekYear = year2 - 1; weekNumber = weeksInWeekYear(weekYear, minDaysInFirstWeek, startOfWeek); } else if (weekNumber > weeksInWeekYear(year2, minDaysInFirstWeek, startOfWeek)) { weekYear = year2 + 1; weekNumber = 1; } else { weekYear = year2; } return { weekYear, weekNumber, weekday, ...timeObject(gregObj) }; } __name(gregorianToWeek, "gregorianToWeek"); function weekToGregorian(weekData, minDaysInFirstWeek = 4, startOfWeek = 1) { const { weekYear, weekNumber, weekday } = weekData, weekdayOfJan4 = isoWeekdayToLocal(dayOfWeek(weekYear, 1, minDaysInFirstWeek), startOfWeek), yearInDays = daysInYear(weekYear); let ordinal = weekNumber * 7 + weekday - weekdayOfJan4 - 7 + minDaysInFirstWeek, year2; if (ordinal < 1) { year2 = weekYear - 1; ordinal += daysInYear(year2); } else if (ordinal > yearInDays) { year2 = weekYear + 1; ordinal -= daysInYear(weekYear); } else { year2 = weekYear; } const { month, day: day2 } = uncomputeOrdinal(year2, ordinal); return { year: year2, month, day: day2, ...timeObject(weekData) }; } __name(weekToGregorian, "weekToGregorian"); function gregorianToOrdinal(gregData) { const { year: year2, month, day: day2 } = gregData; const ordinal = computeOrdinal(year2, month, day2); return { year: year2, ordinal, ...timeObject(gregData) }; } __name(gregorianToOrdinal, "gregorianToOrdinal"); function ordinalToGregorian(ordinalData) { const { year: year2, ordinal } = ordinalData; const { month, day: day2 } = uncomputeOrdinal(year2, ordinal); return { year: year2, month, day: day2, ...timeObject(ordinalData) }; } __name(ordinalToGregorian, "ordinalToGregorian"); function usesLocalWeekValues(obj, loc) { const hasLocaleWeekData = !isUndefined2(obj.localWeekday) || !isUndefined2(obj.localWeekNumber) || !isUndefined2(obj.localWeekYear); if (hasLocaleWeekData) { const hasIsoWeekData = !isUndefined2(obj.weekday) || !isUndefined2(obj.weekNumber) || !isUndefined2(obj.weekYear); if (hasIsoWeekData) { throw new ConflictingSpecificationError("Cannot mix locale-based week fields with ISO-based week fields"); } if (!isUndefined2(obj.localWeekday)) obj.weekday = obj.localWeekday; if (!isUndefined2(obj.localWeekNumber)) obj.weekNumber = obj.localWeekNumber; if (!isUndefined2(obj.localWeekYear)) obj.weekYear = obj.localWeekYear; delete obj.localWeekday; delete obj.localWeekNumber; delete obj.localWeekYear; return { minDaysInFirstWeek: loc.getMinDaysInFirstWeek(), startOfWeek: loc.getStartOfWeek() }; } else { return { minDaysInFirstWeek: 4, startOfWeek: 1 }; } } __name(usesLocalWeekValues, "usesLocalWeekValues"); function hasInvalidWeekData(obj, minDaysInFirstWeek = 4, startOfWeek = 1) { const validYear = isInteger(obj.weekYear), validWeek = integerBetween(obj.weekNumber, 1, weeksInWeekYear(obj.weekYear, minDaysInFirstWeek, startOfWeek)), validWeekday = integerBetween(obj.weekday, 1, 7); if (!validYear) { return unitOutOfRange("weekYear", obj.weekYear); } else if (!validWeek) { return unitOutOfRange("week", obj.weekNumber); } else if (!validWeekday) { return unitOutOfRange("weekday", obj.weekday); } else return false; } __name(hasInvalidWeekData, "hasInvalidWeekData"); function hasInvalidOrdinalData(obj) { const validYear = isInteger(obj.year), validOrdinal = integerBetween(obj.ordinal, 1, daysInYear(obj.year)); if (!validYear) { return unitOutOfRange("year", obj.year); } else if (!validOrdinal) { return unitOutOfRange("ordinal", obj.ordinal); } else return false; } __name(hasInvalidOrdinalData, "hasInvalidOrdinalData"); function hasInvalidGregorianData(obj) { const validYear = isInteger(obj.year), validMonth = integerBetween(obj.month, 1, 12), validDay = integerBetween(obj.day, 1, daysInMonth(obj.year, obj.month)); if (!validYear) { return unitOutOfRange("year", obj.year); } else if (!validMonth) { return unitOutOfRange("month", obj.month); } else if (!validDay) { return unitOutOfRange("day", obj.day); } else return false; } __name(hasInvalidGregorianData, "hasInvalidGregorianData"); function hasInvalidTimeData(obj) { const { hour: hour2, minute: minute2, second, millisecond } = obj; const validHour = integerBetween(hour2, 0, 23) || hour2 === 24 && minute2 === 0 && second === 0 && millisecond === 0, validMinute = integerBetween(minute2, 0, 59), validSecond = integerBetween(second, 0, 59), validMillisecond = integerBetween(millisecond, 0, 999); if (!validHour) { return unitOutOfRange("hour", hour2); } else if (!validMinute) { return unitOutOfRange("minute", minute2); } else if (!validSecond) { return unitOutOfRange("second", second); } else if (!validMillisecond) { return unitOutOfRange("millisecond", millisecond); } else return false; } __name(hasInvalidTimeData, "hasInvalidTimeData"); function isUndefined2(o) { return typeof o === "undefined"; } __name(isUndefined2, "isUndefined"); function isNumber3(o) { return typeof o === "number"; } __name(isNumber3, "isNumber"); function isInteger(o) { return typeof o === "number" && o % 1 === 0; } __name(isInteger, "isInteger"); function isString2(o) { return typeof o === "string"; } __name(isString2, "isString"); function isDate2(o) { return Object.prototype.toString.call(o) === "[object Date]"; } __name(isDate2, "isDate"); function hasRelative() { try { return typeof Intl !== "undefined" && !!Intl.RelativeTimeFormat; } catch (e) { return false; } } __name(hasRelative, "hasRelative"); function hasLocaleWeekInfo() { try { return typeof Intl !== "undefined" && !!Intl.Locale && ("weekInfo" in Intl.Locale.prototype || "getWeekInfo" in Intl.Locale.prototype); } catch (e) { return false; } } __name(hasLocaleWeekInfo, "hasLocaleWeekInfo"); function maybeArray(thing) { return Array.isArray(thing) ? thing : [thing]; } __name(maybeArray, "maybeArray"); function bestBy(arr, by, compare2) { if (arr.length === 0) { return void 0; } return arr.reduce((best, next) => { const pair = [by(next), next]; if (!best) { return pair; } else if (compare2(best[0], pair[0]) === best[0]) { return best; } else { return pair; } }, null)[1]; } __name(bestBy, "bestBy"); function pick2(obj, keys) { return keys.reduce((a, k) => { a[k] = obj[k]; return a; }, {}); } __name(pick2, "pick"); function hasOwnProperty2(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); } __name(hasOwnProperty2, "hasOwnProperty"); function validateWeekSettings(settings) { if (settings == null) { return null; } else if (typeof settings !== "object") { throw new InvalidArgumentError("Week settings must be an object"); } else { if (!integerBetween(settings.firstDay, 1, 7) || !integerBetween(settings.minimalDays, 1, 7) || !Array.isArray(settings.weekend) || settings.weekend.some((v2) => !integerBetween(v2, 1, 7))) { throw new InvalidArgumentError("Invalid week settings"); } return { firstDay: settings.firstDay, minimalDays: settings.minimalDays, weekend: Array.from(settings.weekend) }; } } __name(validateWeekSettings, "validateWeekSettings"); function integerBetween(thing, bottom, top) { return isInteger(thing) && thing >= bottom && thing <= top; } __name(integerBetween, "integerBetween"); function floorMod(x, n2) { return x - n2 * Math.floor(x / n2); } __name(floorMod, "floorMod"); function padStart(input, n2 = 2) { const isNeg = input < 0; let padded; if (isNeg) { padded = "-" + ("" + -input).padStart(n2, "0"); } else { padded = ("" + input).padStart(n2, "0"); } return padded; } __name(padStart, "padStart"); function parseInteger(string4) { if (isUndefined2(string4) || string4 === null || string4 === "") { return void 0; } else { return parseInt(string4, 10); } } __name(parseInteger, "parseInteger"); function parseFloating(string4) { if (isUndefined2(string4) || string4 === null || string4 === "") { return void 0; } else { return parseFloat(string4); } } __name(parseFloating, "parseFloating"); function parseMillis(fraction) { if (isUndefined2(fraction) || fraction === null || fraction === "") { return void 0; } else { const f = parseFloat("0." + fraction) * 1e3; return Math.floor(f); } } __name(parseMillis, "parseMillis"); function roundTo(number4, digits, rounding = "round") { const factor = 10 ** digits; switch (rounding) { case "expand": return number4 > 0 ? Math.ceil(number4 * factor) / factor : Math.floor(number4 * factor) / factor; case "trunc": return Math.trunc(number4 * factor) / factor; case "round": return Math.round(number4 * factor) / factor; case "floor": return Math.floor(number4 * factor) / factor; case "ceil": return Math.ceil(number4 * factor) / factor; default: throw new RangeError(`Value rounding ${rounding} is out of range`); } } __name(roundTo, "roundTo"); function isLeapYear2(year2) { return year2 % 4 === 0 && (year2 % 100 !== 0 || year2 % 400 === 0); } __name(isLeapYear2, "isLeapYear"); function daysInYear(year2) { return isLeapYear2(year2) ? 366 : 365; } __name(daysInYear, "daysInYear"); function daysInMonth(year2, month) { const modMonth = floorMod(month - 1, 12) + 1, modYear = year2 + (month - modMonth) / 12; if (modMonth === 2) { return isLeapYear2(modYear) ? 29 : 28; } else { return [31, null, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31][modMonth - 1]; } } __name(daysInMonth, "daysInMonth"); function objToLocalTS(obj) { let d = Date.UTC(obj.year, obj.month - 1, obj.day, obj.hour, obj.minute, obj.second, obj.millisecond); if (obj.year < 100 && obj.year >= 0) { d = new Date(d); d.setUTCFullYear(obj.year, obj.month - 1, obj.day); } return +d; } __name(objToLocalTS, "objToLocalTS"); function firstWeekOffset(year2, minDaysInFirstWeek, startOfWeek) { const fwdlw = isoWeekdayToLocal(dayOfWeek(year2, 1, minDaysInFirstWeek), startOfWeek); return -fwdlw + minDaysInFirstWeek - 1; } __name(firstWeekOffset, "firstWeekOffset"); function weeksInWeekYear(weekYear, minDaysInFirstWeek = 4, startOfWeek = 1) { const weekOffset = firstWeekOffset(weekYear, minDaysInFirstWeek, startOfWeek); const weekOffsetNext = firstWeekOffset(weekYear + 1, minDaysInFirstWeek, startOfWeek); return (daysInYear(weekYear) - weekOffset + weekOffsetNext) / 7; } __name(weeksInWeekYear, "weeksInWeekYear"); function untruncateYear(year2) { if (year2 > 99) { return year2; } else return year2 > Settings.twoDigitCutoffYear ? 1900 + year2 : 2e3 + year2; } __name(untruncateYear, "untruncateYear"); function parseZoneInfo(ts, offsetFormat, locale, timeZone = null) { const date5 = new Date(ts), intlOpts = { hourCycle: "h23", year: "numeric", month: "2-digit", day: "2-digit", hour: "2-digit", minute: "2-digit" }; if (timeZone) { intlOpts.timeZone = timeZone; } const modified = { timeZoneName: offsetFormat, ...intlOpts }; const parsed = new Intl.DateTimeFormat(locale, modified).formatToParts(date5).find((m) => m.type.toLowerCase() === "timezonename"); return parsed ? parsed.value : null; } __name(parseZoneInfo, "parseZoneInfo"); function signedOffset(offHourStr, offMinuteStr) { let offHour = parseInt(offHourStr, 10); if (Number.isNaN(offHour)) { offHour = 0; } const offMin = parseInt(offMinuteStr, 10) || 0, offMinSigned = offHour < 0 || Object.is(offHour, -0) ? -offMin : offMin; return offHour * 60 + offMinSigned; } __name(signedOffset, "signedOffset"); function asNumber(value) { const numericValue = Number(value); if (typeof value === "boolean" || value === "" || !Number.isFinite(numericValue)) throw new InvalidArgumentError(`Invalid unit value ${value}`); return numericValue; } __name(asNumber, "asNumber"); function normalizeObject(obj, normalizer) { const normalized = {}; for (const u4 in obj) { if (hasOwnProperty2(obj, u4)) { const v2 = obj[u4]; if (v2 === void 0 || v2 === null) continue; normalized[normalizer(u4)] = asNumber(v2); } } return normalized; } __name(normalizeObject, "normalizeObject"); function formatOffset(offset2, format) { const hours = Math.trunc(Math.abs(offset2 / 60)), minutes = Math.trunc(Math.abs(offset2 % 60)), sign2 = offset2 >= 0 ? "+" : "-"; switch (format) { case "short": return `${sign2}${padStart(hours, 2)}:${padStart(minutes, 2)}`; case "narrow": return `${sign2}${hours}${minutes > 0 ? `:${minutes}` : ""}`; case "techie": return `${sign2}${padStart(hours, 2)}${padStart(minutes, 2)}`; default: throw new RangeError(`Value format ${format} is out of range for property format`); } } __name(formatOffset, "formatOffset"); function timeObject(obj) { return pick2(obj, ["hour", "minute", "second", "millisecond"]); } __name(timeObject, "timeObject"); var monthsLong = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"]; var monthsShort = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]; var monthsNarrow = ["J", "F", "M", "A", "M", "J", "J", "A", "S", "O", "N", "D"]; function months(length) { switch (length) { case "narrow": return [...monthsNarrow]; case "short": return [...monthsShort]; case "long": return [...monthsLong]; case "numeric": return ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12"]; case "2-digit": return ["01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12"]; default: return null; } } __name(months, "months"); var weekdaysLong = ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"]; var weekdaysShort = ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"]; var weekdaysNarrow = ["M", "T", "W", "T", "F", "S", "S"]; function weekdays(length) { switch (length) { case "narrow": return [...weekdaysNarrow]; case "short": return [...weekdaysShort]; case "long": return [...weekdaysLong]; case "numeric": return ["1", "2", "3", "4", "5", "6", "7"]; default: return null; } } __name(weekdays, "weekdays"); var meridiems = ["AM", "PM"]; var erasLong = ["Before Christ", "Anno Domini"]; var erasShort = ["BC", "AD"]; var erasNarrow = ["B", "A"]; function eras(length) { switch (length) { case "narrow": return [...erasNarrow]; case "short": return [...erasShort]; case "long": return [...erasLong]; default: return null; } } __name(eras, "eras"); function meridiemForDateTime(dt) { return meridiems[dt.hour < 12 ? 0 : 1]; } __name(meridiemForDateTime, "meridiemForDateTime"); function weekdayForDateTime(dt, length) { return weekdays(length)[dt.weekday - 1]; } __name(weekdayForDateTime, "weekdayForDateTime"); function monthForDateTime(dt, length) { return months(length)[dt.month - 1]; } __name(monthForDateTime, "monthForDateTime"); function eraForDateTime(dt, length) { return eras(length)[dt.year < 0 ? 0 : 1]; } __name(eraForDateTime, "eraForDateTime"); function formatRelativeTime(unit, count4, numeric2 = "always", narrow = false) { const units2 = { years: ["year", "yr."], quarters: ["quarter", "qtr."], months: ["month", "mo."], weeks: ["week", "wk."], days: ["day", "day", "days"], hours: ["hour", "hr."], minutes: ["minute", "min."], seconds: ["second", "sec."] }; const lastable = ["hours", "minutes", "seconds"].indexOf(unit) === -1; if (numeric2 === "auto" && lastable) { const isDay = unit === "days"; switch (count4) { case 1: return isDay ? "tomorrow" : `next ${units2[unit][0]}`; case -1: return isDay ? "yesterday" : `last ${units2[unit][0]}`; case 0: return isDay ? "today" : `this ${units2[unit][0]}`; } } const isInPast = Object.is(count4, -0) || count4 < 0, fmtValue = Math.abs(count4), singular = fmtValue === 1, lilUnits = units2[unit], fmtUnit = narrow ? singular ? lilUnits[1] : lilUnits[2] || lilUnits[1] : singular ? units2[unit][0] : unit; return isInPast ? `${fmtValue} ${fmtUnit} ago` : `in ${fmtValue} ${fmtUnit}`; } __name(formatRelativeTime, "formatRelativeTime"); function stringifyTokens(splits, tokenToString) { let s2 = ""; for (const token of splits) { if (token.literal) { s2 += token.val; } else { s2 += tokenToString(token.val); } } return s2; } __name(stringifyTokens, "stringifyTokens"); var macroTokenToFormatOpts = { D: DATE_SHORT, DD: DATE_MED, DDD: DATE_FULL, DDDD: DATE_HUGE, t: TIME_SIMPLE, tt: TIME_WITH_SECONDS, ttt: TIME_WITH_SHORT_OFFSET, tttt: TIME_WITH_LONG_OFFSET, T: TIME_24_SIMPLE, TT: TIME_24_WITH_SECONDS, TTT: TIME_24_WITH_SHORT_OFFSET, TTTT: TIME_24_WITH_LONG_OFFSET, f: DATETIME_SHORT, ff: DATETIME_MED, fff: DATETIME_FULL, ffff: DATETIME_HUGE, F: DATETIME_SHORT_WITH_SECONDS, FF: DATETIME_MED_WITH_SECONDS, FFF: DATETIME_FULL_WITH_SECONDS, FFFF: DATETIME_HUGE_WITH_SECONDS }; var Formatter = class _Formatter { static { __name(this, "Formatter"); } static create(locale, opts = {}) { return new _Formatter(locale, opts); } static parseFormat(fmt) { let current = null, currentFull = "", bracketed = false; const splits = []; for (let i = 0; i < fmt.length; i++) { const c = fmt.charAt(i); if (c === "'") { if (currentFull.length > 0 || bracketed) { splits.push({ literal: bracketed || /^\s+$/.test(currentFull), val: currentFull === "" ? "'" : currentFull }); } current = null; currentFull = ""; bracketed = !bracketed; } else if (bracketed) { currentFull += c; } else if (c === current) { currentFull += c; } else { if (currentFull.length > 0) { splits.push({ literal: /^\s+$/.test(currentFull), val: currentFull }); } currentFull = c; current = c; } } if (currentFull.length > 0) { splits.push({ literal: bracketed || /^\s+$/.test(currentFull), val: currentFull }); } return splits; } static macroTokenToFormatOpts(token) { return macroTokenToFormatOpts[token]; } constructor(locale, formatOpts) { this.opts = formatOpts; this.loc = locale; this.systemLoc = null; } formatWithSystemDefault(dt, opts) { if (this.systemLoc === null) { this.systemLoc = this.loc.redefaultToSystem(); } const df = this.systemLoc.dtFormatter(dt, { ...this.opts, ...opts }); return df.format(); } dtFormatter(dt, opts = {}) { return this.loc.dtFormatter(dt, { ...this.opts, ...opts }); } formatDateTime(dt, opts) { return this.dtFormatter(dt, opts).format(); } formatDateTimeParts(dt, opts) { return this.dtFormatter(dt, opts).formatToParts(); } formatInterval(interval, opts) { const df = this.dtFormatter(interval.start, opts); return df.dtf.formatRange(interval.start.toJSDate(), interval.end.toJSDate()); } resolvedOptions(dt, opts) { return this.dtFormatter(dt, opts).resolvedOptions(); } num(n2, p = 0, signDisplay = void 0) { if (this.opts.forceSimple) { return padStart(n2, p); } const opts = { ...this.opts }; if (p > 0) { opts.padTo = p; } if (signDisplay) { opts.signDisplay = signDisplay; } return this.loc.numberFormatter(opts).format(n2); } formatDateTimeFromString(dt, fmt) { const knownEnglish = this.loc.listingMode() === "en", useDateTimeFormatter = this.loc.outputCalendar && this.loc.outputCalendar !== "gregory", string4 = /* @__PURE__ */ __name((opts, extract) => this.loc.extract(dt, opts, extract), "string"), formatOffset2 = /* @__PURE__ */ __name((opts) => { if (dt.isOffsetFixed && dt.offset === 0 && opts.allowZ) { return "Z"; } return dt.isValid ? dt.zone.formatOffset(dt.ts, opts.format) : ""; }, "formatOffset"), meridiem = /* @__PURE__ */ __name(() => knownEnglish ? meridiemForDateTime(dt) : string4({ hour: "numeric", hourCycle: "h12" }, "dayperiod"), "meridiem"), month = /* @__PURE__ */ __name((length, standalone) => knownEnglish ? monthForDateTime(dt, length) : string4(standalone ? { month: length } : { month: length, day: "numeric" }, "month"), "month"), weekday = /* @__PURE__ */ __name((length, standalone) => knownEnglish ? weekdayForDateTime(dt, length) : string4(standalone ? { weekday: length } : { weekday: length, month: "long", day: "numeric" }, "weekday"), "weekday"), maybeMacro = /* @__PURE__ */ __name((token) => { const formatOpts = _Formatter.macroTokenToFormatOpts(token); if (formatOpts) { return this.formatWithSystemDefault(dt, formatOpts); } else { return token; } }, "maybeMacro"), era = /* @__PURE__ */ __name((length) => knownEnglish ? eraForDateTime(dt, length) : string4({ era: length }, "era"), "era"), tokenToString = /* @__PURE__ */ __name((token) => { switch (token) { // ms case "S": return this.num(dt.millisecond); case "u": // falls through case "SSS": return this.num(dt.millisecond, 3); // seconds case "s": return this.num(dt.second); case "ss": return this.num(dt.second, 2); // fractional seconds case "uu": return this.num(Math.floor(dt.millisecond / 10), 2); case "uuu": return this.num(Math.floor(dt.millisecond / 100)); // minutes case "m": return this.num(dt.minute); case "mm": return this.num(dt.minute, 2); // hours case "h": return this.num(dt.hour % 12 === 0 ? 12 : dt.hour % 12); case "hh": return this.num(dt.hour % 12 === 0 ? 12 : dt.hour % 12, 2); case "H": return this.num(dt.hour); case "HH": return this.num(dt.hour, 2); // offset case "Z": return formatOffset2({ format: "narrow", allowZ: this.opts.allowZ }); case "ZZ": return formatOffset2({ format: "short", allowZ: this.opts.allowZ }); case "ZZZ": return formatOffset2({ format: "techie", allowZ: this.opts.allowZ }); case "ZZZZ": return dt.zone.offsetName(dt.ts, { format: "short", locale: this.loc.locale }); case "ZZZZZ": return dt.zone.offsetName(dt.ts, { format: "long", locale: this.loc.locale }); // zone case "z": return dt.zoneName; // meridiems case "a": return meridiem(); // dates case "d": return useDateTimeFormatter ? string4({ day: "numeric" }, "day") : this.num(dt.day); case "dd": return useDateTimeFormatter ? string4({ day: "2-digit" }, "day") : this.num(dt.day, 2); // weekdays - standalone case "c": return this.num(dt.weekday); case "ccc": return weekday("short", true); case "cccc": return weekday("long", true); case "ccccc": return weekday("narrow", true); // weekdays - format case "E": return this.num(dt.weekday); case "EEE": return weekday("short", false); case "EEEE": return weekday("long", false); case "EEEEE": return weekday("narrow", false); // months - standalone case "L": return useDateTimeFormatter ? string4({ month: "numeric", day: "numeric" }, "month") : this.num(dt.month); case "LL": return useDateTimeFormatter ? string4({ month: "2-digit", day: "numeric" }, "month") : this.num(dt.month, 2); case "LLL": return month("short", true); case "LLLL": return month("long", true); case "LLLLL": return month("narrow", true); // months - format case "M": return useDateTimeFormatter ? string4({ month: "numeric" }, "month") : this.num(dt.month); case "MM": return useDateTimeFormatter ? string4({ month: "2-digit" }, "month") : this.num(dt.month, 2); case "MMM": return month("short", false); case "MMMM": return month("long", false); case "MMMMM": return month("narrow", false); // years case "y": return useDateTimeFormatter ? string4({ year: "numeric" }, "year") : this.num(dt.year); case "yy": return useDateTimeFormatter ? string4({ year: "2-digit" }, "year") : this.num(dt.year.toString().slice(-2), 2); case "yyyy": return useDateTimeFormatter ? string4({ year: "numeric" }, "year") : this.num(dt.year, 4); case "yyyyyy": return useDateTimeFormatter ? string4({ year: "numeric" }, "year") : this.num(dt.year, 6); // eras case "G": return era("short"); case "GG": return era("long"); case "GGGGG": return era("narrow"); case "kk": return this.num(dt.weekYear.toString().slice(-2), 2); case "kkkk": return this.num(dt.weekYear, 4); case "W": return this.num(dt.weekNumber); case "WW": return this.num(dt.weekNumber, 2); case "n": return this.num(dt.localWeekNumber); case "nn": return this.num(dt.localWeekNumber, 2); case "ii": return this.num(dt.localWeekYear.toString().slice(-2), 2); case "iiii": return this.num(dt.localWeekYear, 4); case "o": return this.num(dt.ordinal); case "ooo": return this.num(dt.ordinal, 3); case "q": return this.num(dt.quarter); case "qq": return this.num(dt.quarter, 2); case "X": return this.num(Math.floor(dt.ts / 1e3)); case "x": return this.num(dt.ts); default: return maybeMacro(token); } }, "tokenToString"); return stringifyTokens(_Formatter.parseFormat(fmt), tokenToString); } formatDurationFromString(dur, fmt) { const invertLargest = this.opts.signMode === "negativeLargestOnly" ? -1 : 1; const tokenToField = /* @__PURE__ */ __name((token) => { switch (token[0]) { case "S": return "milliseconds"; case "s": return "seconds"; case "m": return "minutes"; case "h": return "hours"; case "d": return "days"; case "w": return "weeks"; case "M": return "months"; case "y": return "years"; default: return null; } }, "tokenToField"), tokenToString = /* @__PURE__ */ __name((lildur, info3) => (token) => { const mapped = tokenToField(token); if (mapped) { const inversionFactor = info3.isNegativeDuration && mapped !== info3.largestUnit ? invertLargest : 1; let signDisplay; if (this.opts.signMode === "negativeLargestOnly" && mapped !== info3.largestUnit) { signDisplay = "never"; } else if (this.opts.signMode === "all") { signDisplay = "always"; } else { signDisplay = "auto"; } return this.num(lildur.get(mapped) * inversionFactor, token.length, signDisplay); } else { return token; } }, "tokenToString"), tokens = _Formatter.parseFormat(fmt), realTokens = tokens.reduce((found, { literal: literal2, val }) => literal2 ? found : found.concat(val), []), collapsed = dur.shiftTo(...realTokens.map(tokenToField).filter((t8) => t8)), durationInfo = { isNegativeDuration: collapsed < 0, // this relies on "collapsed" being based on "shiftTo", which builds up the object // in order largestUnit: Object.keys(collapsed.values)[0] }; return stringifyTokens(tokens, tokenToString(collapsed, durationInfo)); } }; var ianaRegex = /[A-Za-z_+-]{1,256}(?::?\/[A-Za-z0-9_+-]{1,256}(?:\/[A-Za-z0-9_+-]{1,256})?)?/; function combineRegexes(...regexes) { const full = regexes.reduce((f, r) => f + r.source, ""); return RegExp(`^${full}$`); } __name(combineRegexes, "combineRegexes"); function combineExtractors(...extractors) { return (m) => extractors.reduce(([mergedVals, mergedZone, cursor], ex) => { const [val, zone, next] = ex(m, cursor); return [{ ...mergedVals, ...val }, zone || mergedZone, next]; }, [{}, null, 1]).slice(0, 2); } __name(combineExtractors, "combineExtractors"); function parse3(s2, ...patterns) { if (s2 == null) { return [null, null]; } for (const [regex, extractor] of patterns) { const m = regex.exec(s2); if (m) { return extractor(m); } } return [null, null]; } __name(parse3, "parse"); function simpleParse(...keys) { return (match3, cursor) => { const ret = {}; let i; for (i = 0; i < keys.length; i++) { ret[keys[i]] = parseInteger(match3[cursor + i]); } return [ret, null, cursor + i]; }; } __name(simpleParse, "simpleParse"); var offsetRegex = /(?:([Zz])|([+-]\d\d)(?::?(\d\d))?)/; var isoExtendedZone = `(?:${offsetRegex.source}?(?:\\[(${ianaRegex.source})\\])?)?`; var isoTimeBaseRegex = /(\d\d)(?::?(\d\d)(?::?(\d\d)(?:[.,](\d{1,30}))?)?)?/; var isoTimeRegex = RegExp(`${isoTimeBaseRegex.source}${isoExtendedZone}`); var isoTimeExtensionRegex = RegExp(`(?:[Tt]${isoTimeRegex.source})?`); var isoYmdRegex = /([+-]\d{6}|\d{4})(?:-?(\d\d)(?:-?(\d\d))?)?/; var isoWeekRegex = /(\d{4})-?W(\d\d)(?:-?(\d))?/; var isoOrdinalRegex = /(\d{4})-?(\d{3})/; var extractISOWeekData = simpleParse("weekYear", "weekNumber", "weekDay"); var extractISOOrdinalData = simpleParse("year", "ordinal"); var sqlYmdRegex = /(\d{4})-(\d\d)-(\d\d)/; var sqlTimeRegex = RegExp(`${isoTimeBaseRegex.source} ?(?:${offsetRegex.source}|(${ianaRegex.source}))?`); var sqlTimeExtensionRegex = RegExp(`(?: ${sqlTimeRegex.source})?`); function int2(match3, pos, fallback) { const m = match3[pos]; return isUndefined2(m) ? fallback : parseInteger(m); } __name(int2, "int"); function extractISOYmd(match3, cursor) { const item = { year: int2(match3, cursor), month: int2(match3, cursor + 1, 1), day: int2(match3, cursor + 2, 1) }; return [item, null, cursor + 3]; } __name(extractISOYmd, "extractISOYmd"); function extractISOTime(match3, cursor) { const item = { hours: int2(match3, cursor, 0), minutes: int2(match3, cursor + 1, 0), seconds: int2(match3, cursor + 2, 0), milliseconds: parseMillis(match3[cursor + 3]) }; return [item, null, cursor + 4]; } __name(extractISOTime, "extractISOTime"); function extractISOOffset(match3, cursor) { const local = !match3[cursor] && !match3[cursor + 1], fullOffset = signedOffset(match3[cursor + 1], match3[cursor + 2]), zone = local ? null : FixedOffsetZone.instance(fullOffset); return [{}, zone, cursor + 3]; } __name(extractISOOffset, "extractISOOffset"); function extractIANAZone(match3, cursor) { const zone = match3[cursor] ? IANAZone.create(match3[cursor]) : null; return [{}, zone, cursor + 1]; } __name(extractIANAZone, "extractIANAZone"); var isoTimeOnly = RegExp(`^T?${isoTimeBaseRegex.source}$`); var isoDuration = /^-?P(?:(?:(-?\d{1,20}(?:\.\d{1,20})?)Y)?(?:(-?\d{1,20}(?:\.\d{1,20})?)M)?(?:(-?\d{1,20}(?:\.\d{1,20})?)W)?(?:(-?\d{1,20}(?:\.\d{1,20})?)D)?(?:T(?:(-?\d{1,20}(?:\.\d{1,20})?)H)?(?:(-?\d{1,20}(?:\.\d{1,20})?)M)?(?:(-?\d{1,20})(?:[.,](-?\d{1,20}))?S)?)?)$/; function extractISODuration(match3) { const [s2, yearStr, monthStr, weekStr, dayStr, hourStr, minuteStr, secondStr, millisecondsStr] = match3; const hasNegativePrefix = s2[0] === "-"; const negativeSeconds = secondStr && secondStr[0] === "-"; const maybeNegate = /* @__PURE__ */ __name((num, force = false) => num !== void 0 && (force || num && hasNegativePrefix) ? -num : num, "maybeNegate"); return [{ years: maybeNegate(parseFloating(yearStr)), months: maybeNegate(parseFloating(monthStr)), weeks: maybeNegate(parseFloating(weekStr)), days: maybeNegate(parseFloating(dayStr)), hours: maybeNegate(parseFloating(hourStr)), minutes: maybeNegate(parseFloating(minuteStr)), seconds: maybeNegate(parseFloating(secondStr), secondStr === "-0"), milliseconds: maybeNegate(parseMillis(millisecondsStr), negativeSeconds) }]; } __name(extractISODuration, "extractISODuration"); var obsOffsets = { GMT: 0, EDT: -4 * 60, EST: -5 * 60, CDT: -5 * 60, CST: -6 * 60, MDT: -6 * 60, MST: -7 * 60, PDT: -7 * 60, PST: -8 * 60 }; function fromStrings(weekdayStr, yearStr, monthStr, dayStr, hourStr, minuteStr, secondStr) { const result = { year: yearStr.length === 2 ? untruncateYear(parseInteger(yearStr)) : parseInteger(yearStr), month: monthsShort.indexOf(monthStr) + 1, day: parseInteger(dayStr), hour: parseInteger(hourStr), minute: parseInteger(minuteStr) }; if (secondStr) result.second = parseInteger(secondStr); if (weekdayStr) { result.weekday = weekdayStr.length > 3 ? weekdaysLong.indexOf(weekdayStr) + 1 : weekdaysShort.indexOf(weekdayStr) + 1; } return result; } __name(fromStrings, "fromStrings"); var rfc2822 = /^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|(?:([+-]\d\d)(\d\d)))$/; function extractRFC2822(match3) { const [, weekdayStr, dayStr, monthStr, yearStr, hourStr, minuteStr, secondStr, obsOffset, milOffset, offHourStr, offMinuteStr] = match3, result = fromStrings(weekdayStr, yearStr, monthStr, dayStr, hourStr, minuteStr, secondStr); let offset2; if (obsOffset) { offset2 = obsOffsets[obsOffset]; } else if (milOffset) { offset2 = 0; } else { offset2 = signedOffset(offHourStr, offMinuteStr); } return [result, new FixedOffsetZone(offset2)]; } __name(extractRFC2822, "extractRFC2822"); function preprocessRFC2822(s2) { return s2.replace(/\([^()]*\)|[\n\t]/g, " ").replace(/(\s\s+)/g, " ").trim(); } __name(preprocessRFC2822, "preprocessRFC2822"); var rfc1123 = /^(Mon|Tue|Wed|Thu|Fri|Sat|Sun), (\d\d) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) (\d{4}) (\d\d):(\d\d):(\d\d) GMT$/; var rfc850 = /^(Monday|Tuesday|Wednesday|Thursday|Friday|Saturday|Sunday), (\d\d)-(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)-(\d\d) (\d\d):(\d\d):(\d\d) GMT$/; var ascii = /^(Mon|Tue|Wed|Thu|Fri|Sat|Sun) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) ( \d|\d\d) (\d\d):(\d\d):(\d\d) (\d{4})$/; function extractRFC1123Or850(match3) { const [, weekdayStr, dayStr, monthStr, yearStr, hourStr, minuteStr, secondStr] = match3, result = fromStrings(weekdayStr, yearStr, monthStr, dayStr, hourStr, minuteStr, secondStr); return [result, FixedOffsetZone.utcInstance]; } __name(extractRFC1123Or850, "extractRFC1123Or850"); function extractASCII(match3) { const [, weekdayStr, monthStr, dayStr, hourStr, minuteStr, secondStr, yearStr] = match3, result = fromStrings(weekdayStr, yearStr, monthStr, dayStr, hourStr, minuteStr, secondStr); return [result, FixedOffsetZone.utcInstance]; } __name(extractASCII, "extractASCII"); var isoYmdWithTimeExtensionRegex = combineRegexes(isoYmdRegex, isoTimeExtensionRegex); var isoWeekWithTimeExtensionRegex = combineRegexes(isoWeekRegex, isoTimeExtensionRegex); var isoOrdinalWithTimeExtensionRegex = combineRegexes(isoOrdinalRegex, isoTimeExtensionRegex); var isoTimeCombinedRegex = combineRegexes(isoTimeRegex); var extractISOYmdTimeAndOffset = combineExtractors(extractISOYmd, extractISOTime, extractISOOffset, extractIANAZone); var extractISOWeekTimeAndOffset = combineExtractors(extractISOWeekData, extractISOTime, extractISOOffset, extractIANAZone); var extractISOOrdinalDateAndTime = combineExtractors(extractISOOrdinalData, extractISOTime, extractISOOffset, extractIANAZone); var extractISOTimeAndOffset = combineExtractors(extractISOTime, extractISOOffset, extractIANAZone); function parseISODate(s2) { return parse3(s2, [isoYmdWithTimeExtensionRegex, extractISOYmdTimeAndOffset], [isoWeekWithTimeExtensionRegex, extractISOWeekTimeAndOffset], [isoOrdinalWithTimeExtensionRegex, extractISOOrdinalDateAndTime], [isoTimeCombinedRegex, extractISOTimeAndOffset]); } __name(parseISODate, "parseISODate"); function parseRFC2822Date(s2) { return parse3(preprocessRFC2822(s2), [rfc2822, extractRFC2822]); } __name(parseRFC2822Date, "parseRFC2822Date"); function parseHTTPDate(s2) { return parse3(s2, [rfc1123, extractRFC1123Or850], [rfc850, extractRFC1123Or850], [ascii, extractASCII]); } __name(parseHTTPDate, "parseHTTPDate"); function parseISODuration(s2) { return parse3(s2, [isoDuration, extractISODuration]); } __name(parseISODuration, "parseISODuration"); var extractISOTimeOnly = combineExtractors(extractISOTime); function parseISOTimeOnly(s2) { return parse3(s2, [isoTimeOnly, extractISOTimeOnly]); } __name(parseISOTimeOnly, "parseISOTimeOnly"); var sqlYmdWithTimeExtensionRegex = combineRegexes(sqlYmdRegex, sqlTimeExtensionRegex); var sqlTimeCombinedRegex = combineRegexes(sqlTimeRegex); var extractISOTimeOffsetAndIANAZone = combineExtractors(extractISOTime, extractISOOffset, extractIANAZone); function parseSQL(s2) { return parse3(s2, [sqlYmdWithTimeExtensionRegex, extractISOYmdTimeAndOffset], [sqlTimeCombinedRegex, extractISOTimeOffsetAndIANAZone]); } __name(parseSQL, "parseSQL"); var INVALID$2 = "Invalid Duration"; var lowOrderMatrix = { weeks: { days: 7, hours: 7 * 24, minutes: 7 * 24 * 60, seconds: 7 * 24 * 60 * 60, milliseconds: 7 * 24 * 60 * 60 * 1e3 }, days: { hours: 24, minutes: 24 * 60, seconds: 24 * 60 * 60, milliseconds: 24 * 60 * 60 * 1e3 }, hours: { minutes: 60, seconds: 60 * 60, milliseconds: 60 * 60 * 1e3 }, minutes: { seconds: 60, milliseconds: 60 * 1e3 }, seconds: { milliseconds: 1e3 } }; var casualMatrix = { years: { quarters: 4, months: 12, weeks: 52, days: 365, hours: 365 * 24, minutes: 365 * 24 * 60, seconds: 365 * 24 * 60 * 60, milliseconds: 365 * 24 * 60 * 60 * 1e3 }, quarters: { months: 3, weeks: 13, days: 91, hours: 91 * 24, minutes: 91 * 24 * 60, seconds: 91 * 24 * 60 * 60, milliseconds: 91 * 24 * 60 * 60 * 1e3 }, months: { weeks: 4, days: 30, hours: 30 * 24, minutes: 30 * 24 * 60, seconds: 30 * 24 * 60 * 60, milliseconds: 30 * 24 * 60 * 60 * 1e3 }, ...lowOrderMatrix }; var daysInYearAccurate = 146097 / 400; var daysInMonthAccurate = 146097 / 4800; var accurateMatrix = { years: { quarters: 4, months: 12, weeks: daysInYearAccurate / 7, days: daysInYearAccurate, hours: daysInYearAccurate * 24, minutes: daysInYearAccurate * 24 * 60, seconds: daysInYearAccurate * 24 * 60 * 60, milliseconds: daysInYearAccurate * 24 * 60 * 60 * 1e3 }, quarters: { months: 3, weeks: daysInYearAccurate / 28, days: daysInYearAccurate / 4, hours: daysInYearAccurate * 24 / 4, minutes: daysInYearAccurate * 24 * 60 / 4, seconds: daysInYearAccurate * 24 * 60 * 60 / 4, milliseconds: daysInYearAccurate * 24 * 60 * 60 * 1e3 / 4 }, months: { weeks: daysInMonthAccurate / 7, days: daysInMonthAccurate, hours: daysInMonthAccurate * 24, minutes: daysInMonthAccurate * 24 * 60, seconds: daysInMonthAccurate * 24 * 60 * 60, milliseconds: daysInMonthAccurate * 24 * 60 * 60 * 1e3 }, ...lowOrderMatrix }; var orderedUnits$1 = ["years", "quarters", "months", "weeks", "days", "hours", "minutes", "seconds", "milliseconds"]; var reverseUnits = orderedUnits$1.slice(0).reverse(); function clone$1(dur, alts, clear3 = false) { const conf = { values: clear3 ? alts.values : { ...dur.values, ...alts.values || {} }, loc: dur.loc.clone(alts.loc), conversionAccuracy: alts.conversionAccuracy || dur.conversionAccuracy, matrix: alts.matrix || dur.matrix }; return new Duration(conf); } __name(clone$1, "clone$1"); function durationToMillis(matrix, vals) { var _vals$milliseconds; let sum2 = (_vals$milliseconds = vals.milliseconds) != null ? _vals$milliseconds : 0; for (const unit of reverseUnits.slice(1)) { if (vals[unit]) { sum2 += vals[unit] * matrix[unit]["milliseconds"]; } } return sum2; } __name(durationToMillis, "durationToMillis"); function normalizeValues(matrix, vals) { const factor = durationToMillis(matrix, vals) < 0 ? -1 : 1; orderedUnits$1.reduceRight((previous, current) => { if (!isUndefined2(vals[current])) { if (previous) { const previousVal = vals[previous] * factor; const conv = matrix[current][previous]; const rollUp = Math.floor(previousVal / conv); vals[current] += rollUp * factor; vals[previous] -= rollUp * conv * factor; } return current; } else { return previous; } }, null); orderedUnits$1.reduce((previous, current) => { if (!isUndefined2(vals[current])) { if (previous) { const fraction = vals[previous] % 1; vals[previous] -= fraction; vals[current] += fraction * matrix[previous][current]; } return current; } else { return previous; } }, null); } __name(normalizeValues, "normalizeValues"); function removeZeroes(vals) { const newVals = {}; for (const [key, value] of Object.entries(vals)) { if (value !== 0) { newVals[key] = value; } } return newVals; } __name(removeZeroes, "removeZeroes"); var Duration = class _Duration { static { __name(this, "Duration"); } /** * @private */ constructor(config3) { const accurate = config3.conversionAccuracy === "longterm" || false; let matrix = accurate ? accurateMatrix : casualMatrix; if (config3.matrix) { matrix = config3.matrix; } this.values = config3.values; this.loc = config3.loc || Locale.create(); this.conversionAccuracy = accurate ? "longterm" : "casual"; this.invalid = config3.invalid || null; this.matrix = matrix; this.isLuxonDuration = true; } /** * Create Duration from a number of milliseconds. * @param {number} count of milliseconds * @param {Object} opts - options for parsing * @param {string} [opts.locale='en-US'] - the locale to use * @param {string} opts.numberingSystem - the numbering system to use * @param {string} [opts.conversionAccuracy='casual'] - the conversion system to use * @return {Duration} */ static fromMillis(count4, opts) { return _Duration.fromObject({ milliseconds: count4 }, opts); } /** * Create a Duration from a JavaScript object with keys like 'years' and 'hours'. * If this object is empty then a zero milliseconds duration is returned. * @param {Object} obj - the object to create the DateTime from * @param {number} obj.years * @param {number} obj.quarters * @param {number} obj.months * @param {number} obj.weeks * @param {number} obj.days * @param {number} obj.hours * @param {number} obj.minutes * @param {number} obj.seconds * @param {number} obj.milliseconds * @param {Object} [opts=[]] - options for creating this Duration * @param {string} [opts.locale='en-US'] - the locale to use * @param {string} opts.numberingSystem - the numbering system to use * @param {string} [opts.conversionAccuracy='casual'] - the preset conversion system to use * @param {string} [opts.matrix=Object] - the custom conversion system to use * @return {Duration} */ static fromObject(obj, opts = {}) { if (obj == null || typeof obj !== "object") { throw new InvalidArgumentError(`Duration.fromObject: argument expected to be an object, got ${obj === null ? "null" : typeof obj}`); } return new _Duration({ values: normalizeObject(obj, _Duration.normalizeUnit), loc: Locale.fromObject(opts), conversionAccuracy: opts.conversionAccuracy, matrix: opts.matrix }); } /** * Create a Duration from DurationLike. * * @param {Object | number | Duration} durationLike * One of: * - object with keys like 'years' and 'hours'. * - number representing milliseconds * - Duration instance * @return {Duration} */ static fromDurationLike(durationLike) { if (isNumber3(durationLike)) { return _Duration.fromMillis(durationLike); } else if (_Duration.isDuration(durationLike)) { return durationLike; } else if (typeof durationLike === "object") { return _Duration.fromObject(durationLike); } else { throw new InvalidArgumentError(`Unknown duration argument ${durationLike} of type ${typeof durationLike}`); } } /** * Create a Duration from an ISO 8601 duration string. * @param {string} text - text to parse * @param {Object} opts - options for parsing * @param {string} [opts.locale='en-US'] - the locale to use * @param {string} opts.numberingSystem - the numbering system to use * @param {string} [opts.conversionAccuracy='casual'] - the preset conversion system to use * @param {string} [opts.matrix=Object] - the preset conversion system to use * @see https://en.wikipedia.org/wiki/ISO_8601#Durations * @example Duration.fromISO('P3Y6M1W4DT12H30M5S').toObject() //=> { years: 3, months: 6, weeks: 1, days: 4, hours: 12, minutes: 30, seconds: 5 } * @example Duration.fromISO('PT23H').toObject() //=> { hours: 23 } * @example Duration.fromISO('P5Y3M').toObject() //=> { years: 5, months: 3 } * @return {Duration} */ static fromISO(text2, opts) { const [parsed] = parseISODuration(text2); if (parsed) { return _Duration.fromObject(parsed, opts); } else { return _Duration.invalid("unparsable", `the input "${text2}" can't be parsed as ISO 8601`); } } /** * Create a Duration from an ISO 8601 time string. * @param {string} text - text to parse * @param {Object} opts - options for parsing * @param {string} [opts.locale='en-US'] - the locale to use * @param {string} opts.numberingSystem - the numbering system to use * @param {string} [opts.conversionAccuracy='casual'] - the preset conversion system to use * @param {string} [opts.matrix=Object] - the conversion system to use * @see https://en.wikipedia.org/wiki/ISO_8601#Times * @example Duration.fromISOTime('11:22:33.444').toObject() //=> { hours: 11, minutes: 22, seconds: 33, milliseconds: 444 } * @example Duration.fromISOTime('11:00').toObject() //=> { hours: 11, minutes: 0, seconds: 0 } * @example Duration.fromISOTime('T11:00').toObject() //=> { hours: 11, minutes: 0, seconds: 0 } * @example Duration.fromISOTime('1100').toObject() //=> { hours: 11, minutes: 0, seconds: 0 } * @example Duration.fromISOTime('T1100').toObject() //=> { hours: 11, minutes: 0, seconds: 0 } * @return {Duration} */ static fromISOTime(text2, opts) { const [parsed] = parseISOTimeOnly(text2); if (parsed) { return _Duration.fromObject(parsed, opts); } else { return _Duration.invalid("unparsable", `the input "${text2}" can't be parsed as ISO 8601`); } } /** * Create an invalid Duration. * @param {string} reason - simple string of why this datetime is invalid. Should not contain parameters or anything else data-dependent * @param {string} [explanation=null] - longer explanation, may include parameters and other useful debugging information * @return {Duration} */ static invalid(reason, explanation = null) { if (!reason) { throw new InvalidArgumentError("need to specify a reason the Duration is invalid"); } const invalid = reason instanceof Invalid ? reason : new Invalid(reason, explanation); if (Settings.throwOnInvalid) { throw new InvalidDurationError(invalid); } else { return new _Duration({ invalid }); } } /** * @private */ static normalizeUnit(unit) { const normalized = { year: "years", years: "years", quarter: "quarters", quarters: "quarters", month: "months", months: "months", week: "weeks", weeks: "weeks", day: "days", days: "days", hour: "hours", hours: "hours", minute: "minutes", minutes: "minutes", second: "seconds", seconds: "seconds", millisecond: "milliseconds", milliseconds: "milliseconds" }[unit ? unit.toLowerCase() : unit]; if (!normalized) throw new InvalidUnitError(unit); return normalized; } /** * Check if an object is a Duration. Works across context boundaries * @param {object} o * @return {boolean} */ static isDuration(o) { return o && o.isLuxonDuration || false; } /** * Get the locale of a Duration, such 'en-GB' * @type {string} */ get locale() { return this.isValid ? this.loc.locale : null; } /** * Get the numbering system of a Duration, such 'beng'. The numbering system is used when formatting the Duration * * @type {string} */ get numberingSystem() { return this.isValid ? this.loc.numberingSystem : null; } /** * Returns a string representation of this Duration formatted according to the specified format string. You may use these tokens: * * `S` for milliseconds * * `s` for seconds * * `m` for minutes * * `h` for hours * * `d` for days * * `w` for weeks * * `M` for months * * `y` for years * Notes: * * Add padding by repeating the token, e.g. "yy" pads the years to two digits, "hhhh" pads the hours out to four digits * * Tokens can be escaped by wrapping with single quotes. * * The duration will be converted to the set of units in the format string using {@link Duration#shiftTo} and the Durations's conversion accuracy setting. * @param {string} fmt - the format string * @param {Object} opts - options * @param {boolean} [opts.floor=true] - floor numerical values * @param {'negative'|'all'|'negativeLargestOnly'} [opts.signMode=negative] - How to handle signs * @example Duration.fromObject({ years: 1, days: 6, seconds: 2 }).toFormat("y d s") //=> "1 6 2" * @example Duration.fromObject({ years: 1, days: 6, seconds: 2 }).toFormat("yy dd sss") //=> "01 06 002" * @example Duration.fromObject({ years: 1, days: 6, seconds: 2 }).toFormat("M S") //=> "12 518402000" * @example Duration.fromObject({ days: 6, seconds: 2 }).toFormat("d s", { signMode: "all" }) //=> "+6 +2" * @example Duration.fromObject({ days: -6, seconds: -2 }).toFormat("d s", { signMode: "all" }) //=> "-6 -2" * @example Duration.fromObject({ days: -6, seconds: -2 }).toFormat("d s", { signMode: "negativeLargestOnly" }) //=> "-6 2" * @return {string} */ toFormat(fmt, opts = {}) { const fmtOpts = { ...opts, floor: opts.round !== false && opts.floor !== false }; return this.isValid ? Formatter.create(this.loc, fmtOpts).formatDurationFromString(this, fmt) : INVALID$2; } /** * Returns a string representation of a Duration with all units included. * To modify its behavior, use `listStyle` and any Intl.NumberFormat option, though `unitDisplay` is especially relevant. * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat/NumberFormat#options * @param {Object} opts - Formatting options. Accepts the same keys as the options parameter of the native `Intl.NumberFormat` constructor, as well as `listStyle`. * @param {string} [opts.listStyle='narrow'] - How to format the merged list. Corresponds to the `style` property of the options parameter of the native `Intl.ListFormat` constructor. * @param {boolean} [opts.showZeros=true] - Show all units previously used by the duration even if they are zero * @example * ```js * var dur = Duration.fromObject({ months: 1, weeks: 0, hours: 5, minutes: 6 }) * dur.toHuman() //=> '1 month, 0 weeks, 5 hours, 6 minutes' * dur.toHuman({ listStyle: "long" }) //=> '1 month, 0 weeks, 5 hours, and 6 minutes' * dur.toHuman({ unitDisplay: "short" }) //=> '1 mth, 0 wks, 5 hr, 6 min' * dur.toHuman({ showZeros: false }) //=> '1 month, 5 hours, 6 minutes' * ``` */ toHuman(opts = {}) { if (!this.isValid) return INVALID$2; const showZeros = opts.showZeros !== false; const l2 = orderedUnits$1.map((unit) => { const val = this.values[unit]; if (isUndefined2(val) || val === 0 && !showZeros) { return null; } return this.loc.numberFormatter({ style: "unit", unitDisplay: "long", ...opts, unit: unit.slice(0, -1) }).format(val); }).filter((n2) => n2); return this.loc.listFormatter({ type: "conjunction", style: opts.listStyle || "narrow", ...opts }).format(l2); } /** * Returns a JavaScript object with this Duration's values. * @example Duration.fromObject({ years: 1, days: 6, seconds: 2 }).toObject() //=> { years: 1, days: 6, seconds: 2 } * @return {Object} */ toObject() { if (!this.isValid) return {}; return { ...this.values }; } /** * Returns an ISO 8601-compliant string representation of this Duration. * @see https://en.wikipedia.org/wiki/ISO_8601#Durations * @example Duration.fromObject({ years: 3, seconds: 45 }).toISO() //=> 'P3YT45S' * @example Duration.fromObject({ months: 4, seconds: 45 }).toISO() //=> 'P4MT45S' * @example Duration.fromObject({ months: 5 }).toISO() //=> 'P5M' * @example Duration.fromObject({ minutes: 5 }).toISO() //=> 'PT5M' * @example Duration.fromObject({ milliseconds: 6 }).toISO() //=> 'PT0.006S' * @return {string} */ toISO() { if (!this.isValid) return null; let s2 = "P"; if (this.years !== 0) s2 += this.years + "Y"; if (this.months !== 0 || this.quarters !== 0) s2 += this.months + this.quarters * 3 + "M"; if (this.weeks !== 0) s2 += this.weeks + "W"; if (this.days !== 0) s2 += this.days + "D"; if (this.hours !== 0 || this.minutes !== 0 || this.seconds !== 0 || this.milliseconds !== 0) s2 += "T"; if (this.hours !== 0) s2 += this.hours + "H"; if (this.minutes !== 0) s2 += this.minutes + "M"; if (this.seconds !== 0 || this.milliseconds !== 0) s2 += roundTo(this.seconds + this.milliseconds / 1e3, 3) + "S"; if (s2 === "P") s2 += "T0S"; return s2; } /** * Returns an ISO 8601-compliant string representation of this Duration, formatted as a time of day. * Note that this will return null if the duration is invalid, negative, or equal to or greater than 24 hours. * @see https://en.wikipedia.org/wiki/ISO_8601#Times * @param {Object} opts - options * @param {boolean} [opts.suppressMilliseconds=false] - exclude milliseconds from the format if they're 0 * @param {boolean} [opts.suppressSeconds=false] - exclude seconds from the format if they're 0 * @param {boolean} [opts.includePrefix=false] - include the `T` prefix * @param {string} [opts.format='extended'] - choose between the basic and extended format * @example Duration.fromObject({ hours: 11 }).toISOTime() //=> '11:00:00.000' * @example Duration.fromObject({ hours: 11 }).toISOTime({ suppressMilliseconds: true }) //=> '11:00:00' * @example Duration.fromObject({ hours: 11 }).toISOTime({ suppressSeconds: true }) //=> '11:00' * @example Duration.fromObject({ hours: 11 }).toISOTime({ includePrefix: true }) //=> 'T11:00:00.000' * @example Duration.fromObject({ hours: 11 }).toISOTime({ format: 'basic' }) //=> '110000.000' * @return {string} */ toISOTime(opts = {}) { if (!this.isValid) return null; const millis = this.toMillis(); if (millis < 0 || millis >= 864e5) return null; opts = { suppressMilliseconds: false, suppressSeconds: false, includePrefix: false, format: "extended", ...opts, includeOffset: false }; const dateTime = DateTime.fromMillis(millis, { zone: "UTC" }); return dateTime.toISOTime(opts); } /** * Returns an ISO 8601 representation of this Duration appropriate for use in JSON. * @return {string} */ toJSON() { return this.toISO(); } /** * Returns an ISO 8601 representation of this Duration appropriate for use in debugging. * @return {string} */ toString() { return this.toISO(); } /** * Returns a string representation of this Duration appropriate for the REPL. * @return {string} */ [/* @__PURE__ */ Symbol.for("nodejs.util.inspect.custom")]() { if (this.isValid) { return `Duration { values: ${JSON.stringify(this.values)} }`; } else { return `Duration { Invalid, reason: ${this.invalidReason} }`; } } /** * Returns an milliseconds value of this Duration. * @return {number} */ toMillis() { if (!this.isValid) return NaN; return durationToMillis(this.matrix, this.values); } /** * Returns an milliseconds value of this Duration. Alias of {@link toMillis} * @return {number} */ valueOf() { return this.toMillis(); } /** * Make this Duration longer by the specified amount. Return a newly-constructed Duration. * @param {Duration|Object|number} duration - The amount to add. Either a Luxon Duration, a number of milliseconds, the object argument to Duration.fromObject() * @return {Duration} */ plus(duration3) { if (!this.isValid) return this; const dur = _Duration.fromDurationLike(duration3), result = {}; for (const k of orderedUnits$1) { if (hasOwnProperty2(dur.values, k) || hasOwnProperty2(this.values, k)) { result[k] = dur.get(k) + this.get(k); } } return clone$1(this, { values: result }, true); } /** * Make this Duration shorter by the specified amount. Return a newly-constructed Duration. * @param {Duration|Object|number} duration - The amount to subtract. Either a Luxon Duration, a number of milliseconds, the object argument to Duration.fromObject() * @return {Duration} */ minus(duration3) { if (!this.isValid) return this; const dur = _Duration.fromDurationLike(duration3); return this.plus(dur.negate()); } /** * Scale this Duration by the specified amount. Return a newly-constructed Duration. * @param {function} fn - The function to apply to each unit. Arity is 1 or 2: the value of the unit and, optionally, the unit name. Must return a number. * @example Duration.fromObject({ hours: 1, minutes: 30 }).mapUnits(x => x * 2) //=> { hours: 2, minutes: 60 } * @example Duration.fromObject({ hours: 1, minutes: 30 }).mapUnits((x, u) => u === "hours" ? x * 2 : x) //=> { hours: 2, minutes: 30 } * @return {Duration} */ mapUnits(fn) { if (!this.isValid) return this; const result = {}; for (const k of Object.keys(this.values)) { result[k] = asNumber(fn(this.values[k], k)); } return clone$1(this, { values: result }, true); } /** * Get the value of unit. * @param {string} unit - a unit such as 'minute' or 'day' * @example Duration.fromObject({years: 2, days: 3}).get('years') //=> 2 * @example Duration.fromObject({years: 2, days: 3}).get('months') //=> 0 * @example Duration.fromObject({years: 2, days: 3}).get('days') //=> 3 * @return {number} */ get(unit) { return this[_Duration.normalizeUnit(unit)]; } /** * "Set" the values of specified units. Return a newly-constructed Duration. * @param {Object} values - a mapping of units to numbers * @example dur.set({ years: 2017 }) * @example dur.set({ hours: 8, minutes: 30 }) * @return {Duration} */ set(values) { if (!this.isValid) return this; const mixed = { ...this.values, ...normalizeObject(values, _Duration.normalizeUnit) }; return clone$1(this, { values: mixed }); } /** * "Set" the locale and/or numberingSystem. Returns a newly-constructed Duration. * @example dur.reconfigure({ locale: 'en-GB' }) * @return {Duration} */ reconfigure({ locale, numberingSystem, conversionAccuracy, matrix } = {}) { const loc = this.loc.clone({ locale, numberingSystem }); const opts = { loc, matrix, conversionAccuracy }; return clone$1(this, opts); } /** * Return the length of the duration in the specified unit. * @param {string} unit - a unit such as 'minutes' or 'days' * @example Duration.fromObject({years: 1}).as('days') //=> 365 * @example Duration.fromObject({years: 1}).as('months') //=> 12 * @example Duration.fromObject({hours: 60}).as('days') //=> 2.5 * @return {number} */ as(unit) { return this.isValid ? this.shiftTo(unit).get(unit) : NaN; } /** * Reduce this Duration to its canonical representation in its current units. * Assuming the overall value of the Duration is positive, this means: * - excessive values for lower-order units are converted to higher-order units (if possible, see first and second example) * - negative lower-order units are converted to higher order units (there must be such a higher order unit, otherwise * the overall value would be negative, see third example) * - fractional values for higher-order units are converted to lower-order units (if possible, see fourth example) * * If the overall value is negative, the result of this method is equivalent to `this.negate().normalize().negate()`. * @example Duration.fromObject({ years: 2, days: 5000 }).normalize().toObject() //=> { years: 15, days: 255 } * @example Duration.fromObject({ days: 5000 }).normalize().toObject() //=> { days: 5000 } * @example Duration.fromObject({ hours: 12, minutes: -45 }).normalize().toObject() //=> { hours: 11, minutes: 15 } * @example Duration.fromObject({ years: 2.5, days: 0, hours: 0 }).normalize().toObject() //=> { years: 2, days: 182, hours: 12 } * @return {Duration} */ normalize() { if (!this.isValid) return this; const vals = this.toObject(); normalizeValues(this.matrix, vals); return clone$1(this, { values: vals }, true); } /** * Rescale units to its largest representation * @example Duration.fromObject({ milliseconds: 90000 }).rescale().toObject() //=> { minutes: 1, seconds: 30 } * @return {Duration} */ rescale() { if (!this.isValid) return this; const vals = removeZeroes(this.normalize().shiftToAll().toObject()); return clone$1(this, { values: vals }, true); } /** * Convert this Duration into its representation in a different set of units. * @example Duration.fromObject({ hours: 1, seconds: 30 }).shiftTo('minutes', 'milliseconds').toObject() //=> { minutes: 60, milliseconds: 30000 } * @return {Duration} */ shiftTo(...units2) { if (!this.isValid) return this; if (units2.length === 0) { return this; } units2 = units2.map((u4) => _Duration.normalizeUnit(u4)); const built = {}, accumulated = {}, vals = this.toObject(); let lastUnit; for (const k of orderedUnits$1) { if (units2.indexOf(k) >= 0) { lastUnit = k; let own = 0; for (const ak in accumulated) { own += this.matrix[ak][k] * accumulated[ak]; accumulated[ak] = 0; } if (isNumber3(vals[k])) { own += vals[k]; } const i = Math.trunc(own); built[k] = i; accumulated[k] = (own * 1e3 - i * 1e3) / 1e3; } else if (isNumber3(vals[k])) { accumulated[k] = vals[k]; } } for (const key in accumulated) { if (accumulated[key] !== 0) { built[lastUnit] += key === lastUnit ? accumulated[key] : accumulated[key] / this.matrix[lastUnit][key]; } } normalizeValues(this.matrix, built); return clone$1(this, { values: built }, true); } /** * Shift this Duration to all available units. * Same as shiftTo("years", "months", "weeks", "days", "hours", "minutes", "seconds", "milliseconds") * @return {Duration} */ shiftToAll() { if (!this.isValid) return this; return this.shiftTo("years", "months", "weeks", "days", "hours", "minutes", "seconds", "milliseconds"); } /** * Return the negative of this Duration. * @example Duration.fromObject({ hours: 1, seconds: 30 }).negate().toObject() //=> { hours: -1, seconds: -30 } * @return {Duration} */ negate() { if (!this.isValid) return this; const negated = {}; for (const k of Object.keys(this.values)) { negated[k] = this.values[k] === 0 ? 0 : -this.values[k]; } return clone$1(this, { values: negated }, true); } /** * Removes all units with values equal to 0 from this Duration. * @example Duration.fromObject({ years: 2, days: 0, hours: 0, minutes: 0 }).removeZeros().toObject() //=> { years: 2 } * @return {Duration} */ removeZeros() { if (!this.isValid) return this; const vals = removeZeroes(this.values); return clone$1(this, { values: vals }, true); } /** * Get the years. * @type {number} */ get years() { return this.isValid ? this.values.years || 0 : NaN; } /** * Get the quarters. * @type {number} */ get quarters() { return this.isValid ? this.values.quarters || 0 : NaN; } /** * Get the months. * @type {number} */ get months() { return this.isValid ? this.values.months || 0 : NaN; } /** * Get the weeks * @type {number} */ get weeks() { return this.isValid ? this.values.weeks || 0 : NaN; } /** * Get the days. * @type {number} */ get days() { return this.isValid ? this.values.days || 0 : NaN; } /** * Get the hours. * @type {number} */ get hours() { return this.isValid ? this.values.hours || 0 : NaN; } /** * Get the minutes. * @type {number} */ get minutes() { return this.isValid ? this.values.minutes || 0 : NaN; } /** * Get the seconds. * @return {number} */ get seconds() { return this.isValid ? this.values.seconds || 0 : NaN; } /** * Get the milliseconds. * @return {number} */ get milliseconds() { return this.isValid ? this.values.milliseconds || 0 : NaN; } /** * Returns whether the Duration is invalid. Invalid durations are returned by diff operations * on invalid DateTimes or Intervals. * @return {boolean} */ get isValid() { return this.invalid === null; } /** * Returns an error code if this Duration became invalid, or null if the Duration is valid * @return {string} */ get invalidReason() { return this.invalid ? this.invalid.reason : null; } /** * Returns an explanation of why this Duration became invalid, or null if the Duration is valid * @type {string} */ get invalidExplanation() { return this.invalid ? this.invalid.explanation : null; } /** * Equality check * Two Durations are equal iff they have the same units and the same values for each unit. * @param {Duration} other * @return {boolean} */ equals(other) { if (!this.isValid || !other.isValid) { return false; } if (!this.loc.equals(other.loc)) { return false; } function eq2(v1, v2) { if (v1 === void 0 || v1 === 0) return v2 === void 0 || v2 === 0; return v1 === v2; } __name(eq2, "eq"); for (const u4 of orderedUnits$1) { if (!eq2(this.values[u4], other.values[u4])) { return false; } } return true; } }; var INVALID$1 = "Invalid Interval"; function validateStartEnd(start, end) { if (!start || !start.isValid) { return Interval.invalid("missing or invalid start"); } else if (!end || !end.isValid) { return Interval.invalid("missing or invalid end"); } else if (end < start) { return Interval.invalid("end before start", `The end of an interval must be after its start, but you had start=${start.toISO()} and end=${end.toISO()}`); } else { return null; } } __name(validateStartEnd, "validateStartEnd"); var Interval = class _Interval { static { __name(this, "Interval"); } /** * @private */ constructor(config3) { this.s = config3.start; this.e = config3.end; this.invalid = config3.invalid || null; this.isLuxonInterval = true; } /** * Create an invalid Interval. * @param {string} reason - simple string of why this Interval is invalid. Should not contain parameters or anything else data-dependent * @param {string} [explanation=null] - longer explanation, may include parameters and other useful debugging information * @return {Interval} */ static invalid(reason, explanation = null) { if (!reason) { throw new InvalidArgumentError("need to specify a reason the Interval is invalid"); } const invalid = reason instanceof Invalid ? reason : new Invalid(reason, explanation); if (Settings.throwOnInvalid) { throw new InvalidIntervalError(invalid); } else { return new _Interval({ invalid }); } } /** * Create an Interval from a start DateTime and an end DateTime. Inclusive of the start but not the end. * @param {DateTime|Date|Object} start * @param {DateTime|Date|Object} end * @return {Interval} */ static fromDateTimes(start, end) { const builtStart = friendlyDateTime(start), builtEnd = friendlyDateTime(end); const validateError = validateStartEnd(builtStart, builtEnd); if (validateError == null) { return new _Interval({ start: builtStart, end: builtEnd }); } else { return validateError; } } /** * Create an Interval from a start DateTime and a Duration to extend to. * @param {DateTime|Date|Object} start * @param {Duration|Object|number} duration - the length of the Interval. * @return {Interval} */ static after(start, duration3) { const dur = Duration.fromDurationLike(duration3), dt = friendlyDateTime(start); return _Interval.fromDateTimes(dt, dt.plus(dur)); } /** * Create an Interval from an end DateTime and a Duration to extend backwards to. * @param {DateTime|Date|Object} end * @param {Duration|Object|number} duration - the length of the Interval. * @return {Interval} */ static before(end, duration3) { const dur = Duration.fromDurationLike(duration3), dt = friendlyDateTime(end); return _Interval.fromDateTimes(dt.minus(dur), dt); } /** * Create an Interval from an ISO 8601 string. * Accepts `/`, `/`, and `/` formats. * @param {string} text - the ISO string to parse * @param {Object} [opts] - options to pass {@link DateTime#fromISO} and optionally {@link Duration#fromISO} * @see https://en.wikipedia.org/wiki/ISO_8601#Time_intervals * @return {Interval} */ static fromISO(text2, opts) { const [s2, e] = (text2 || "").split("/", 2); if (s2 && e) { let start, startIsValid; try { start = DateTime.fromISO(s2, opts); startIsValid = start.isValid; } catch (e2) { startIsValid = false; } let end, endIsValid; try { end = DateTime.fromISO(e, opts); endIsValid = end.isValid; } catch (e2) { endIsValid = false; } if (startIsValid && endIsValid) { return _Interval.fromDateTimes(start, end); } if (startIsValid) { const dur = Duration.fromISO(e, opts); if (dur.isValid) { return _Interval.after(start, dur); } } else if (endIsValid) { const dur = Duration.fromISO(s2, opts); if (dur.isValid) { return _Interval.before(end, dur); } } } return _Interval.invalid("unparsable", `the input "${text2}" can't be parsed as ISO 8601`); } /** * Check if an object is an Interval. Works across context boundaries * @param {object} o * @return {boolean} */ static isInterval(o) { return o && o.isLuxonInterval || false; } /** * Returns the start of the Interval * @type {DateTime} */ get start() { return this.isValid ? this.s : null; } /** * Returns the end of the Interval. This is the first instant which is not part of the interval * (Interval is half-open). * @type {DateTime} */ get end() { return this.isValid ? this.e : null; } /** * Returns the last DateTime included in the interval (since end is not part of the interval) * @type {DateTime} */ get lastDateTime() { return this.isValid ? this.e ? this.e.minus(1) : null : null; } /** * Returns whether this Interval's end is at least its start, meaning that the Interval isn't 'backwards'. * @type {boolean} */ get isValid() { return this.invalidReason === null; } /** * Returns an error code if this Interval is invalid, or null if the Interval is valid * @type {string} */ get invalidReason() { return this.invalid ? this.invalid.reason : null; } /** * Returns an explanation of why this Interval became invalid, or null if the Interval is valid * @type {string} */ get invalidExplanation() { return this.invalid ? this.invalid.explanation : null; } /** * Returns the length of the Interval in the specified unit. * @param {string} unit - the unit (such as 'hours' or 'days') to return the length in. * @return {number} */ length(unit = "milliseconds") { return this.isValid ? this.toDuration(...[unit]).get(unit) : NaN; } /** * Returns the count of minutes, hours, days, months, or years included in the Interval, even in part. * Unlike {@link Interval#length} this counts sections of the calendar, not periods of time, e.g. specifying 'day' * asks 'what dates are included in this interval?', not 'how many days long is this interval?' * @param {string} [unit='milliseconds'] - the unit of time to count. * @param {Object} opts - options * @param {boolean} [opts.useLocaleWeeks=false] - If true, use weeks based on the locale, i.e. use the locale-dependent start of the week; this operation will always use the locale of the start DateTime * @return {number} */ count(unit = "milliseconds", opts) { if (!this.isValid) return NaN; const start = this.start.startOf(unit, opts); let end; if (opts != null && opts.useLocaleWeeks) { end = this.end.reconfigure({ locale: start.locale }); } else { end = this.end; } end = end.startOf(unit, opts); return Math.floor(end.diff(start, unit).get(unit)) + (end.valueOf() !== this.end.valueOf()); } /** * Returns whether this Interval's start and end are both in the same unit of time * @param {string} unit - the unit of time to check sameness on * @return {boolean} */ hasSame(unit) { return this.isValid ? this.isEmpty() || this.e.minus(1).hasSame(this.s, unit) : false; } /** * Return whether this Interval has the same start and end DateTimes. * @return {boolean} */ isEmpty() { return this.s.valueOf() === this.e.valueOf(); } /** * Return whether this Interval's start is after the specified DateTime. * @param {DateTime} dateTime * @return {boolean} */ isAfter(dateTime) { if (!this.isValid) return false; return this.s > dateTime; } /** * Return whether this Interval's end is before the specified DateTime. * @param {DateTime} dateTime * @return {boolean} */ isBefore(dateTime) { if (!this.isValid) return false; return this.e <= dateTime; } /** * Return whether this Interval contains the specified DateTime. * @param {DateTime} dateTime * @return {boolean} */ contains(dateTime) { if (!this.isValid) return false; return this.s <= dateTime && this.e > dateTime; } /** * "Sets" the start and/or end dates. Returns a newly-constructed Interval. * @param {Object} values - the values to set * @param {DateTime} values.start - the starting DateTime * @param {DateTime} values.end - the ending DateTime * @return {Interval} */ set({ start, end } = {}) { if (!this.isValid) return this; return _Interval.fromDateTimes(start || this.s, end || this.e); } /** * Split this Interval at each of the specified DateTimes * @param {...DateTime} dateTimes - the unit of time to count. * @return {Array} */ splitAt(...dateTimes) { if (!this.isValid) return []; const sorted = dateTimes.map(friendlyDateTime).filter((d) => this.contains(d)).sort((a, b) => a.toMillis() - b.toMillis()), results = []; let { s: s2 } = this, i = 0; while (s2 < this.e) { const added = sorted[i] || this.e, next = +added > +this.e ? this.e : added; results.push(_Interval.fromDateTimes(s2, next)); s2 = next; i += 1; } return results; } /** * Split this Interval into smaller Intervals, each of the specified length. * Left over time is grouped into a smaller interval * @param {Duration|Object|number} duration - The length of each resulting interval. * @return {Array} */ splitBy(duration3) { const dur = Duration.fromDurationLike(duration3); if (!this.isValid || !dur.isValid || dur.as("milliseconds") === 0) { return []; } let { s: s2 } = this, idx = 1, next; const results = []; while (s2 < this.e) { const added = this.start.plus(dur.mapUnits((x) => x * idx)); next = +added > +this.e ? this.e : added; results.push(_Interval.fromDateTimes(s2, next)); s2 = next; idx += 1; } return results; } /** * Split this Interval into the specified number of smaller intervals. * @param {number} numberOfParts - The number of Intervals to divide the Interval into. * @return {Array} */ divideEqually(numberOfParts) { if (!this.isValid) return []; return this.splitBy(this.length() / numberOfParts).slice(0, numberOfParts); } /** * Return whether this Interval overlaps with the specified Interval * @param {Interval} other * @return {boolean} */ overlaps(other) { return this.e > other.s && this.s < other.e; } /** * Return whether this Interval's end is adjacent to the specified Interval's start. * @param {Interval} other * @return {boolean} */ abutsStart(other) { if (!this.isValid) return false; return +this.e === +other.s; } /** * Return whether this Interval's start is adjacent to the specified Interval's end. * @param {Interval} other * @return {boolean} */ abutsEnd(other) { if (!this.isValid) return false; return +other.e === +this.s; } /** * Returns true if this Interval fully contains the specified Interval, specifically if the intersect (of this Interval and the other Interval) is equal to the other Interval; false otherwise. * @param {Interval} other * @return {boolean} */ engulfs(other) { if (!this.isValid) return false; return this.s <= other.s && this.e >= other.e; } /** * Return whether this Interval has the same start and end as the specified Interval. * @param {Interval} other * @return {boolean} */ equals(other) { if (!this.isValid || !other.isValid) { return false; } return this.s.equals(other.s) && this.e.equals(other.e); } /** * Return an Interval representing the intersection of this Interval and the specified Interval. * Specifically, the resulting Interval has the maximum start time and the minimum end time of the two Intervals. * Returns null if the intersection is empty, meaning, the intervals don't intersect. * @param {Interval} other * @return {Interval} */ intersection(other) { if (!this.isValid) return this; const s2 = this.s > other.s ? this.s : other.s, e = this.e < other.e ? this.e : other.e; if (s2 >= e) { return null; } else { return _Interval.fromDateTimes(s2, e); } } /** * Return an Interval representing the union of this Interval and the specified Interval. * Specifically, the resulting Interval has the minimum start time and the maximum end time of the two Intervals. * @param {Interval} other * @return {Interval} */ union(other) { if (!this.isValid) return this; const s2 = this.s < other.s ? this.s : other.s, e = this.e > other.e ? this.e : other.e; return _Interval.fromDateTimes(s2, e); } /** * Merge an array of Intervals into an equivalent minimal set of Intervals. * Combines overlapping and adjacent Intervals. * The resulting array will contain the Intervals in ascending order, that is, starting with the earliest Interval * and ending with the latest. * * @param {Array} intervals * @return {Array} */ static merge(intervals) { const [found, final] = intervals.sort((a, b) => a.s - b.s).reduce(([sofar, current], item) => { if (!current) { return [sofar, item]; } else if (current.overlaps(item) || current.abutsStart(item)) { return [sofar, current.union(item)]; } else { return [sofar.concat([current]), item]; } }, [[], null]); if (final) { found.push(final); } return found; } /** * Return an array of Intervals representing the spans of time that only appear in one of the specified Intervals. * @param {Array} intervals * @return {Array} */ static xor(intervals) { let start = null, currentCount = 0; const results = [], ends = intervals.map((i) => [{ time: i.s, type: "s" }, { time: i.e, type: "e" }]), flattened = Array.prototype.concat(...ends), arr = flattened.sort((a, b) => a.time - b.time); for (const i of arr) { currentCount += i.type === "s" ? 1 : -1; if (currentCount === 1) { start = i.time; } else { if (start && +start !== +i.time) { results.push(_Interval.fromDateTimes(start, i.time)); } start = null; } } return _Interval.merge(results); } /** * Return an Interval representing the span of time in this Interval that doesn't overlap with any of the specified Intervals. * @param {...Interval} intervals * @return {Array} */ difference(...intervals) { return _Interval.xor([this].concat(intervals)).map((i) => this.intersection(i)).filter((i) => i && !i.isEmpty()); } /** * Returns a string representation of this Interval appropriate for debugging. * @return {string} */ toString() { if (!this.isValid) return INVALID$1; return `[${this.s.toISO()} \u2013 ${this.e.toISO()})`; } /** * Returns a string representation of this Interval appropriate for the REPL. * @return {string} */ [/* @__PURE__ */ Symbol.for("nodejs.util.inspect.custom")]() { if (this.isValid) { return `Interval { start: ${this.s.toISO()}, end: ${this.e.toISO()} }`; } else { return `Interval { Invalid, reason: ${this.invalidReason} }`; } } /** * Returns a localized string representing this Interval. Accepts the same options as the * Intl.DateTimeFormat constructor and any presets defined by Luxon, such as * {@link DateTime.DATE_FULL} or {@link DateTime.TIME_SIMPLE}. The exact behavior of this method * is browser-specific, but in general it will return an appropriate representation of the * Interval in the assigned locale. Defaults to the system's locale if no locale has been * specified. * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DateTimeFormat * @param {Object} [formatOpts=DateTime.DATE_SHORT] - Either a DateTime preset or * Intl.DateTimeFormat constructor options. * @param {Object} opts - Options to override the configuration of the start DateTime. * @example Interval.fromISO('2022-11-07T09:00Z/2022-11-08T09:00Z').toLocaleString(); //=> 11/7/2022 – 11/8/2022 * @example Interval.fromISO('2022-11-07T09:00Z/2022-11-08T09:00Z').toLocaleString(DateTime.DATE_FULL); //=> November 7 – 8, 2022 * @example Interval.fromISO('2022-11-07T09:00Z/2022-11-08T09:00Z').toLocaleString(DateTime.DATE_FULL, { locale: 'fr-FR' }); //=> 7–8 novembre 2022 * @example Interval.fromISO('2022-11-07T17:00Z/2022-11-07T19:00Z').toLocaleString(DateTime.TIME_SIMPLE); //=> 6:00 – 8:00 PM * @example Interval.fromISO('2022-11-07T17:00Z/2022-11-07T19:00Z').toLocaleString({ weekday: 'short', month: 'short', day: '2-digit', hour: '2-digit', minute: '2-digit' }); //=> Mon, Nov 07, 6:00 – 8:00 p * @return {string} */ toLocaleString(formatOpts = DATE_SHORT, opts = {}) { return this.isValid ? Formatter.create(this.s.loc.clone(opts), formatOpts).formatInterval(this) : INVALID$1; } /** * Returns an ISO 8601-compliant string representation of this Interval. * @see https://en.wikipedia.org/wiki/ISO_8601#Time_intervals * @param {Object} opts - The same options as {@link DateTime#toISO} * @return {string} */ toISO(opts) { if (!this.isValid) return INVALID$1; return `${this.s.toISO(opts)}/${this.e.toISO(opts)}`; } /** * Returns an ISO 8601-compliant string representation of date of this Interval. * The time components are ignored. * @see https://en.wikipedia.org/wiki/ISO_8601#Time_intervals * @return {string} */ toISODate() { if (!this.isValid) return INVALID$1; return `${this.s.toISODate()}/${this.e.toISODate()}`; } /** * Returns an ISO 8601-compliant string representation of time of this Interval. * The date components are ignored. * @see https://en.wikipedia.org/wiki/ISO_8601#Time_intervals * @param {Object} opts - The same options as {@link DateTime#toISO} * @return {string} */ toISOTime(opts) { if (!this.isValid) return INVALID$1; return `${this.s.toISOTime(opts)}/${this.e.toISOTime(opts)}`; } /** * Returns a string representation of this Interval formatted according to the specified format * string. **You may not want this.** See {@link Interval#toLocaleString} for a more flexible * formatting tool. * @param {string} dateFormat - The format string. This string formats the start and end time. * See {@link DateTime#toFormat} for details. * @param {Object} opts - Options. * @param {string} [opts.separator = ' – '] - A separator to place between the start and end * representations. * @return {string} */ toFormat(dateFormat, { separator = " \u2013 " } = {}) { if (!this.isValid) return INVALID$1; return `${this.s.toFormat(dateFormat)}${separator}${this.e.toFormat(dateFormat)}`; } /** * Return a Duration representing the time spanned by this interval. * @param {string|string[]} [unit=['milliseconds']] - the unit or units (such as 'hours' or 'days') to include in the duration. * @param {Object} opts - options that affect the creation of the Duration * @param {string} [opts.conversionAccuracy='casual'] - the conversion system to use * @example Interval.fromDateTimes(dt1, dt2).toDuration().toObject() //=> { milliseconds: 88489257 } * @example Interval.fromDateTimes(dt1, dt2).toDuration('days').toObject() //=> { days: 1.0241812152777778 } * @example Interval.fromDateTimes(dt1, dt2).toDuration(['hours', 'minutes']).toObject() //=> { hours: 24, minutes: 34.82095 } * @example Interval.fromDateTimes(dt1, dt2).toDuration(['hours', 'minutes', 'seconds']).toObject() //=> { hours: 24, minutes: 34, seconds: 49.257 } * @example Interval.fromDateTimes(dt1, dt2).toDuration('seconds').toObject() //=> { seconds: 88489.257 } * @return {Duration} */ toDuration(unit, opts) { if (!this.isValid) { return Duration.invalid(this.invalidReason); } return this.e.diff(this.s, unit, opts); } /** * Run mapFn on the interval start and end, returning a new Interval from the resulting DateTimes * @param {function} mapFn * @return {Interval} * @example Interval.fromDateTimes(dt1, dt2).mapEndpoints(endpoint => endpoint.toUTC()) * @example Interval.fromDateTimes(dt1, dt2).mapEndpoints(endpoint => endpoint.plus({ hours: 2 })) */ mapEndpoints(mapFn) { return _Interval.fromDateTimes(mapFn(this.s), mapFn(this.e)); } }; var Info = class { static { __name(this, "Info"); } /** * Return whether the specified zone contains a DST. * @param {string|Zone} [zone='local'] - Zone to check. Defaults to the environment's local zone. * @return {boolean} */ static hasDST(zone = Settings.defaultZone) { const proto = DateTime.now().setZone(zone).set({ month: 12 }); return !zone.isUniversal && proto.offset !== proto.set({ month: 6 }).offset; } /** * Return whether the specified zone is a valid IANA specifier. * @param {string} zone - Zone to check * @return {boolean} */ static isValidIANAZone(zone) { return IANAZone.isValidZone(zone); } /** * Converts the input into a {@link Zone} instance. * * * If `input` is already a Zone instance, it is returned unchanged. * * If `input` is a string containing a valid time zone name, a Zone instance * with that name is returned. * * If `input` is a string that doesn't refer to a known time zone, a Zone * instance with {@link Zone#isValid} == false is returned. * * If `input is a number, a Zone instance with the specified fixed offset * in minutes is returned. * * If `input` is `null` or `undefined`, the default zone is returned. * @param {string|Zone|number} [input] - the value to be converted * @return {Zone} */ static normalizeZone(input) { return normalizeZone(input, Settings.defaultZone); } /** * Get the weekday on which the week starts according to the given locale. * @param {Object} opts - options * @param {string} [opts.locale] - the locale code * @param {string} [opts.locObj=null] - an existing locale object to use * @returns {number} the start of the week, 1 for Monday through 7 for Sunday */ static getStartOfWeek({ locale = null, locObj = null } = {}) { return (locObj || Locale.create(locale)).getStartOfWeek(); } /** * Get the minimum number of days necessary in a week before it is considered part of the next year according * to the given locale. * @param {Object} opts - options * @param {string} [opts.locale] - the locale code * @param {string} [opts.locObj=null] - an existing locale object to use * @returns {number} */ static getMinimumDaysInFirstWeek({ locale = null, locObj = null } = {}) { return (locObj || Locale.create(locale)).getMinDaysInFirstWeek(); } /** * Get the weekdays, which are considered the weekend according to the given locale * @param {Object} opts - options * @param {string} [opts.locale] - the locale code * @param {string} [opts.locObj=null] - an existing locale object to use * @returns {number[]} an array of weekdays, 1 for Monday through 7 for Sunday */ static getWeekendWeekdays({ locale = null, locObj = null } = {}) { return (locObj || Locale.create(locale)).getWeekendDays().slice(); } /** * Return an array of standalone month names. * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DateTimeFormat * @param {string} [length='long'] - the length of the month representation, such as "numeric", "2-digit", "narrow", "short", "long" * @param {Object} opts - options * @param {string} [opts.locale] - the locale code * @param {string} [opts.numberingSystem=null] - the numbering system * @param {string} [opts.locObj=null] - an existing locale object to use * @param {string} [opts.outputCalendar='gregory'] - the calendar * @example Info.months()[0] //=> 'January' * @example Info.months('short')[0] //=> 'Jan' * @example Info.months('numeric')[0] //=> '1' * @example Info.months('short', { locale: 'fr-CA' } )[0] //=> 'janv.' * @example Info.months('numeric', { locale: 'ar' })[0] //=> '١' * @example Info.months('long', { outputCalendar: 'islamic' })[0] //=> 'Rabiʻ I' * @return {Array} */ static months(length = "long", { locale = null, numberingSystem = null, locObj = null, outputCalendar = "gregory" } = {}) { return (locObj || Locale.create(locale, numberingSystem, outputCalendar)).months(length); } /** * Return an array of format month names. * Format months differ from standalone months in that they're meant to appear next to the day of the month. In some languages, that * changes the string. * See {@link Info#months} * @param {string} [length='long'] - the length of the month representation, such as "numeric", "2-digit", "narrow", "short", "long" * @param {Object} opts - options * @param {string} [opts.locale] - the locale code * @param {string} [opts.numberingSystem=null] - the numbering system * @param {string} [opts.locObj=null] - an existing locale object to use * @param {string} [opts.outputCalendar='gregory'] - the calendar * @return {Array} */ static monthsFormat(length = "long", { locale = null, numberingSystem = null, locObj = null, outputCalendar = "gregory" } = {}) { return (locObj || Locale.create(locale, numberingSystem, outputCalendar)).months(length, true); } /** * Return an array of standalone week names. * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DateTimeFormat * @param {string} [length='long'] - the length of the weekday representation, such as "narrow", "short", "long". * @param {Object} opts - options * @param {string} [opts.locale] - the locale code * @param {string} [opts.numberingSystem=null] - the numbering system * @param {string} [opts.locObj=null] - an existing locale object to use * @example Info.weekdays()[0] //=> 'Monday' * @example Info.weekdays('short')[0] //=> 'Mon' * @example Info.weekdays('short', { locale: 'fr-CA' })[0] //=> 'lun.' * @example Info.weekdays('short', { locale: 'ar' })[0] //=> 'الاثنين' * @return {Array} */ static weekdays(length = "long", { locale = null, numberingSystem = null, locObj = null } = {}) { return (locObj || Locale.create(locale, numberingSystem, null)).weekdays(length); } /** * Return an array of format week names. * Format weekdays differ from standalone weekdays in that they're meant to appear next to more date information. In some languages, that * changes the string. * See {@link Info#weekdays} * @param {string} [length='long'] - the length of the month representation, such as "narrow", "short", "long". * @param {Object} opts - options * @param {string} [opts.locale=null] - the locale code * @param {string} [opts.numberingSystem=null] - the numbering system * @param {string} [opts.locObj=null] - an existing locale object to use * @return {Array} */ static weekdaysFormat(length = "long", { locale = null, numberingSystem = null, locObj = null } = {}) { return (locObj || Locale.create(locale, numberingSystem, null)).weekdays(length, true); } /** * Return an array of meridiems. * @param {Object} opts - options * @param {string} [opts.locale] - the locale code * @example Info.meridiems() //=> [ 'AM', 'PM' ] * @example Info.meridiems({ locale: 'my' }) //=> [ 'နံနက်', 'ညနေ' ] * @return {Array} */ static meridiems({ locale = null } = {}) { return Locale.create(locale).meridiems(); } /** * Return an array of eras, such as ['BC', 'AD']. The locale can be specified, but the calendar system is always Gregorian. * @param {string} [length='short'] - the length of the era representation, such as "short" or "long". * @param {Object} opts - options * @param {string} [opts.locale] - the locale code * @example Info.eras() //=> [ 'BC', 'AD' ] * @example Info.eras('long') //=> [ 'Before Christ', 'Anno Domini' ] * @example Info.eras('long', { locale: 'fr' }) //=> [ 'avant Jésus-Christ', 'après Jésus-Christ' ] * @return {Array} */ static eras(length = "short", { locale = null } = {}) { return Locale.create(locale, null, "gregory").eras(length); } /** * Return the set of available features in this environment. * Some features of Luxon are not available in all environments. For example, on older browsers, relative time formatting support is not available. Use this function to figure out if that's the case. * Keys: * * `relative`: whether this environment supports relative time formatting * * `localeWeek`: whether this environment supports different weekdays for the start of the week based on the locale * @example Info.features() //=> { relative: false, localeWeek: true } * @return {Object} */ static features() { return { relative: hasRelative(), localeWeek: hasLocaleWeekInfo() }; } }; function dayDiff(earlier, later) { const utcDayStart = /* @__PURE__ */ __name((dt) => dt.toUTC(0, { keepLocalTime: true }).startOf("day").valueOf(), "utcDayStart"), ms = utcDayStart(later) - utcDayStart(earlier); return Math.floor(Duration.fromMillis(ms).as("days")); } __name(dayDiff, "dayDiff"); function highOrderDiffs(cursor, later, units2) { const differs = [["years", (a, b) => b.year - a.year], ["quarters", (a, b) => b.quarter - a.quarter + (b.year - a.year) * 4], ["months", (a, b) => b.month - a.month + (b.year - a.year) * 12], ["weeks", (a, b) => { const days = dayDiff(a, b); return (days - days % 7) / 7; }], ["days", dayDiff]]; const results = {}; const earlier = cursor; let lowestOrder, highWater; for (const [unit, differ] of differs) { if (units2.indexOf(unit) >= 0) { lowestOrder = unit; results[unit] = differ(cursor, later); highWater = earlier.plus(results); if (highWater > later) { results[unit]--; cursor = earlier.plus(results); if (cursor > later) { highWater = cursor; results[unit]--; cursor = earlier.plus(results); } } else { cursor = highWater; } } } return [cursor, results, highWater, lowestOrder]; } __name(highOrderDiffs, "highOrderDiffs"); function diff(earlier, later, units2, opts) { let [cursor, results, highWater, lowestOrder] = highOrderDiffs(earlier, later, units2); const remainingMillis = later - cursor; const lowerOrderUnits = units2.filter((u4) => ["hours", "minutes", "seconds", "milliseconds"].indexOf(u4) >= 0); if (lowerOrderUnits.length === 0) { if (highWater < later) { highWater = cursor.plus({ [lowestOrder]: 1 }); } if (highWater !== cursor) { results[lowestOrder] = (results[lowestOrder] || 0) + remainingMillis / (highWater - cursor); } } const duration3 = Duration.fromObject(results, opts); if (lowerOrderUnits.length > 0) { return Duration.fromMillis(remainingMillis, opts).shiftTo(...lowerOrderUnits).plus(duration3); } else { return duration3; } } __name(diff, "diff"); var MISSING_FTP = "missing Intl.DateTimeFormat.formatToParts support"; function intUnit(regex, post = (i) => i) { return { regex, deser: /* @__PURE__ */ __name(([s2]) => post(parseDigits(s2)), "deser") }; } __name(intUnit, "intUnit"); var NBSP = String.fromCharCode(160); var spaceOrNBSP = `[ ${NBSP}]`; var spaceOrNBSPRegExp = new RegExp(spaceOrNBSP, "g"); function fixListRegex(s2) { return s2.replace(/\./g, "\\.?").replace(spaceOrNBSPRegExp, spaceOrNBSP); } __name(fixListRegex, "fixListRegex"); function stripInsensitivities(s2) { return s2.replace(/\./g, "").replace(spaceOrNBSPRegExp, " ").toLowerCase(); } __name(stripInsensitivities, "stripInsensitivities"); function oneOf(strings2, startIndex) { if (strings2 === null) { return null; } else { return { regex: RegExp(strings2.map(fixListRegex).join("|")), deser: /* @__PURE__ */ __name(([s2]) => strings2.findIndex((i) => stripInsensitivities(s2) === stripInsensitivities(i)) + startIndex, "deser") }; } } __name(oneOf, "oneOf"); function offset(regex, groups) { return { regex, deser: /* @__PURE__ */ __name(([, h, m]) => signedOffset(h, m), "deser"), groups }; } __name(offset, "offset"); function simple(regex) { return { regex, deser: /* @__PURE__ */ __name(([s2]) => s2, "deser") }; } __name(simple, "simple"); function escapeToken(value) { return value.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g, "\\$&"); } __name(escapeToken, "escapeToken"); function unitForToken(token, loc) { const one = digitRegex(loc), two = digitRegex(loc, "{2}"), three = digitRegex(loc, "{3}"), four = digitRegex(loc, "{4}"), six = digitRegex(loc, "{6}"), oneOrTwo = digitRegex(loc, "{1,2}"), oneToThree = digitRegex(loc, "{1,3}"), oneToSix = digitRegex(loc, "{1,6}"), oneToNine = digitRegex(loc, "{1,9}"), twoToFour = digitRegex(loc, "{2,4}"), fourToSix = digitRegex(loc, "{4,6}"), literal2 = /* @__PURE__ */ __name((t8) => ({ regex: RegExp(escapeToken(t8.val)), deser: /* @__PURE__ */ __name(([s2]) => s2, "deser"), literal: true }), "literal"), unitate = /* @__PURE__ */ __name((t8) => { if (token.literal) { return literal2(t8); } switch (t8.val) { // era case "G": return oneOf(loc.eras("short"), 0); case "GG": return oneOf(loc.eras("long"), 0); // years case "y": return intUnit(oneToSix); case "yy": return intUnit(twoToFour, untruncateYear); case "yyyy": return intUnit(four); case "yyyyy": return intUnit(fourToSix); case "yyyyyy": return intUnit(six); // months case "M": return intUnit(oneOrTwo); case "MM": return intUnit(two); case "MMM": return oneOf(loc.months("short", true), 1); case "MMMM": return oneOf(loc.months("long", true), 1); case "L": return intUnit(oneOrTwo); case "LL": return intUnit(two); case "LLL": return oneOf(loc.months("short", false), 1); case "LLLL": return oneOf(loc.months("long", false), 1); // dates case "d": return intUnit(oneOrTwo); case "dd": return intUnit(two); // ordinals case "o": return intUnit(oneToThree); case "ooo": return intUnit(three); // time case "HH": return intUnit(two); case "H": return intUnit(oneOrTwo); case "hh": return intUnit(two); case "h": return intUnit(oneOrTwo); case "mm": return intUnit(two); case "m": return intUnit(oneOrTwo); case "q": return intUnit(oneOrTwo); case "qq": return intUnit(two); case "s": return intUnit(oneOrTwo); case "ss": return intUnit(two); case "S": return intUnit(oneToThree); case "SSS": return intUnit(three); case "u": return simple(oneToNine); case "uu": return simple(oneOrTwo); case "uuu": return intUnit(one); // meridiem case "a": return oneOf(loc.meridiems(), 0); // weekYear (k) case "kkkk": return intUnit(four); case "kk": return intUnit(twoToFour, untruncateYear); // weekNumber (W) case "W": return intUnit(oneOrTwo); case "WW": return intUnit(two); // weekdays case "E": case "c": return intUnit(one); case "EEE": return oneOf(loc.weekdays("short", false), 1); case "EEEE": return oneOf(loc.weekdays("long", false), 1); case "ccc": return oneOf(loc.weekdays("short", true), 1); case "cccc": return oneOf(loc.weekdays("long", true), 1); // offset/zone case "Z": case "ZZ": return offset(new RegExp(`([+-]${oneOrTwo.source})(?::(${two.source}))?`), 2); case "ZZZ": return offset(new RegExp(`([+-]${oneOrTwo.source})(${two.source})?`), 2); // we don't support ZZZZ (PST) or ZZZZZ (Pacific Standard Time) in parsing // because we don't have any way to figure out what they are case "z": return simple(/[a-z_+-/]{1,256}?/i); // this special-case "token" represents a place where a macro-token expanded into a white-space literal // in this case we accept any non-newline white-space case " ": return simple(/[^\S\n\r]/); default: return literal2(t8); } }, "unitate"); const unit = unitate(token) || { invalidReason: MISSING_FTP }; unit.token = token; return unit; } __name(unitForToken, "unitForToken"); var partTypeStyleToTokenVal = { year: { "2-digit": "yy", numeric: "yyyyy" }, month: { numeric: "M", "2-digit": "MM", short: "MMM", long: "MMMM" }, day: { numeric: "d", "2-digit": "dd" }, weekday: { short: "EEE", long: "EEEE" }, dayperiod: "a", dayPeriod: "a", hour12: { numeric: "h", "2-digit": "hh" }, hour24: { numeric: "H", "2-digit": "HH" }, minute: { numeric: "m", "2-digit": "mm" }, second: { numeric: "s", "2-digit": "ss" }, timeZoneName: { long: "ZZZZZ", short: "ZZZ" } }; function tokenForPart(part, formatOpts, resolvedOpts) { const { type, value } = part; if (type === "literal") { const isSpace = /^\s+$/.test(value); return { literal: !isSpace, val: isSpace ? " " : value }; } const style = formatOpts[type]; let actualType = type; if (type === "hour") { if (formatOpts.hour12 != null) { actualType = formatOpts.hour12 ? "hour12" : "hour24"; } else if (formatOpts.hourCycle != null) { if (formatOpts.hourCycle === "h11" || formatOpts.hourCycle === "h12") { actualType = "hour12"; } else { actualType = "hour24"; } } else { actualType = resolvedOpts.hour12 ? "hour12" : "hour24"; } } let val = partTypeStyleToTokenVal[actualType]; if (typeof val === "object") { val = val[style]; } if (val) { return { literal: false, val }; } return void 0; } __name(tokenForPart, "tokenForPart"); function buildRegex(units2) { const re = units2.map((u4) => u4.regex).reduce((f, r) => `${f}(${r.source})`, ""); return [`^${re}$`, units2]; } __name(buildRegex, "buildRegex"); function match2(input, regex, handlers2) { const matches = input.match(regex); if (matches) { const all3 = {}; let matchIndex = 1; for (const i in handlers2) { if (hasOwnProperty2(handlers2, i)) { const h = handlers2[i], groups = h.groups ? h.groups + 1 : 1; if (!h.literal && h.token) { all3[h.token.val[0]] = h.deser(matches.slice(matchIndex, matchIndex + groups)); } matchIndex += groups; } } return [matches, all3]; } else { return [matches, {}]; } } __name(match2, "match"); function dateTimeFromMatches(matches) { const toField = /* @__PURE__ */ __name((token) => { switch (token) { case "S": return "millisecond"; case "s": return "second"; case "m": return "minute"; case "h": case "H": return "hour"; case "d": return "day"; case "o": return "ordinal"; case "L": case "M": return "month"; case "y": return "year"; case "E": case "c": return "weekday"; case "W": return "weekNumber"; case "k": return "weekYear"; case "q": return "quarter"; default: return null; } }, "toField"); let zone = null; let specificOffset; if (!isUndefined2(matches.z)) { zone = IANAZone.create(matches.z); } if (!isUndefined2(matches.Z)) { if (!zone) { zone = new FixedOffsetZone(matches.Z); } specificOffset = matches.Z; } if (!isUndefined2(matches.q)) { matches.M = (matches.q - 1) * 3 + 1; } if (!isUndefined2(matches.h)) { if (matches.h < 12 && matches.a === 1) { matches.h += 12; } else if (matches.h === 12 && matches.a === 0) { matches.h = 0; } } if (matches.G === 0 && matches.y) { matches.y = -matches.y; } if (!isUndefined2(matches.u)) { matches.S = parseMillis(matches.u); } const vals = Object.keys(matches).reduce((r, k) => { const f = toField(k); if (f) { r[f] = matches[k]; } return r; }, {}); return [vals, zone, specificOffset]; } __name(dateTimeFromMatches, "dateTimeFromMatches"); var dummyDateTimeCache = null; function getDummyDateTime() { if (!dummyDateTimeCache) { dummyDateTimeCache = DateTime.fromMillis(1555555555555); } return dummyDateTimeCache; } __name(getDummyDateTime, "getDummyDateTime"); function maybeExpandMacroToken(token, locale) { if (token.literal) { return token; } const formatOpts = Formatter.macroTokenToFormatOpts(token.val); const tokens = formatOptsToTokens(formatOpts, locale); if (tokens == null || tokens.includes(void 0)) { return token; } return tokens; } __name(maybeExpandMacroToken, "maybeExpandMacroToken"); function expandMacroTokens(tokens, locale) { return Array.prototype.concat(...tokens.map((t8) => maybeExpandMacroToken(t8, locale))); } __name(expandMacroTokens, "expandMacroTokens"); var TokenParser = class { static { __name(this, "TokenParser"); } constructor(locale, format) { this.locale = locale; this.format = format; this.tokens = expandMacroTokens(Formatter.parseFormat(format), locale); this.units = this.tokens.map((t8) => unitForToken(t8, locale)); this.disqualifyingUnit = this.units.find((t8) => t8.invalidReason); if (!this.disqualifyingUnit) { const [regexString, handlers2] = buildRegex(this.units); this.regex = RegExp(regexString, "i"); this.handlers = handlers2; } } explainFromTokens(input) { if (!this.isValid) { return { input, tokens: this.tokens, invalidReason: this.invalidReason }; } else { const [rawMatches, matches] = match2(input, this.regex, this.handlers), [result, zone, specificOffset] = matches ? dateTimeFromMatches(matches) : [null, null, void 0]; if (hasOwnProperty2(matches, "a") && hasOwnProperty2(matches, "H")) { throw new ConflictingSpecificationError("Can't include meridiem when specifying 24-hour format"); } return { input, tokens: this.tokens, regex: this.regex, rawMatches, matches, result, zone, specificOffset }; } } get isValid() { return !this.disqualifyingUnit; } get invalidReason() { return this.disqualifyingUnit ? this.disqualifyingUnit.invalidReason : null; } }; function explainFromTokens(locale, input, format) { const parser = new TokenParser(locale, format); return parser.explainFromTokens(input); } __name(explainFromTokens, "explainFromTokens"); function parseFromTokens(locale, input, format) { const { result, zone, specificOffset, invalidReason } = explainFromTokens(locale, input, format); return [result, zone, specificOffset, invalidReason]; } __name(parseFromTokens, "parseFromTokens"); function formatOptsToTokens(formatOpts, locale) { if (!formatOpts) { return null; } const formatter = Formatter.create(locale, formatOpts); const df = formatter.dtFormatter(getDummyDateTime()); const parts = df.formatToParts(); const resolvedOpts = df.resolvedOptions(); return parts.map((p) => tokenForPart(p, formatOpts, resolvedOpts)); } __name(formatOptsToTokens, "formatOptsToTokens"); var INVALID = "Invalid DateTime"; var MAX_DATE = 864e13; function unsupportedZone(zone) { return new Invalid("unsupported zone", `the zone "${zone.name}" is not supported`); } __name(unsupportedZone, "unsupportedZone"); function possiblyCachedWeekData(dt) { if (dt.weekData === null) { dt.weekData = gregorianToWeek(dt.c); } return dt.weekData; } __name(possiblyCachedWeekData, "possiblyCachedWeekData"); function possiblyCachedLocalWeekData(dt) { if (dt.localWeekData === null) { dt.localWeekData = gregorianToWeek(dt.c, dt.loc.getMinDaysInFirstWeek(), dt.loc.getStartOfWeek()); } return dt.localWeekData; } __name(possiblyCachedLocalWeekData, "possiblyCachedLocalWeekData"); function clone2(inst, alts) { const current = { ts: inst.ts, zone: inst.zone, c: inst.c, o: inst.o, loc: inst.loc, invalid: inst.invalid }; return new DateTime({ ...current, ...alts, old: current }); } __name(clone2, "clone"); function fixOffset(localTS, o, tz) { let utcGuess = localTS - o * 60 * 1e3; const o2 = tz.offset(utcGuess); if (o === o2) { return [utcGuess, o]; } utcGuess -= (o2 - o) * 60 * 1e3; const o3 = tz.offset(utcGuess); if (o2 === o3) { return [utcGuess, o2]; } return [localTS - Math.min(o2, o3) * 60 * 1e3, Math.max(o2, o3)]; } __name(fixOffset, "fixOffset"); function tsToObj(ts, offset2) { ts += offset2 * 60 * 1e3; const d = new Date(ts); return { year: d.getUTCFullYear(), month: d.getUTCMonth() + 1, day: d.getUTCDate(), hour: d.getUTCHours(), minute: d.getUTCMinutes(), second: d.getUTCSeconds(), millisecond: d.getUTCMilliseconds() }; } __name(tsToObj, "tsToObj"); function objToTS(obj, offset2, zone) { return fixOffset(objToLocalTS(obj), offset2, zone); } __name(objToTS, "objToTS"); function adjustTime(inst, dur) { const oPre = inst.o, year2 = inst.c.year + Math.trunc(dur.years), month = inst.c.month + Math.trunc(dur.months) + Math.trunc(dur.quarters) * 3, c = { ...inst.c, year: year2, month, day: Math.min(inst.c.day, daysInMonth(year2, month)) + Math.trunc(dur.days) + Math.trunc(dur.weeks) * 7 }, millisToAdd = Duration.fromObject({ years: dur.years - Math.trunc(dur.years), quarters: dur.quarters - Math.trunc(dur.quarters), months: dur.months - Math.trunc(dur.months), weeks: dur.weeks - Math.trunc(dur.weeks), days: dur.days - Math.trunc(dur.days), hours: dur.hours, minutes: dur.minutes, seconds: dur.seconds, milliseconds: dur.milliseconds }).as("milliseconds"), localTS = objToLocalTS(c); let [ts, o] = fixOffset(localTS, oPre, inst.zone); if (millisToAdd !== 0) { ts += millisToAdd; o = inst.zone.offset(ts); } return { ts, o }; } __name(adjustTime, "adjustTime"); function parseDataToDateTime(parsed, parsedZone, opts, format, text2, specificOffset) { const { setZone, zone } = opts; if (parsed && Object.keys(parsed).length !== 0 || parsedZone) { const interpretationZone = parsedZone || zone, inst = DateTime.fromObject(parsed, { ...opts, zone: interpretationZone, specificOffset }); return setZone ? inst : inst.setZone(zone); } else { return DateTime.invalid(new Invalid("unparsable", `the input "${text2}" can't be parsed as ${format}`)); } } __name(parseDataToDateTime, "parseDataToDateTime"); function toTechFormat(dt, format, allowZ = true) { return dt.isValid ? Formatter.create(Locale.create("en-US"), { allowZ, forceSimple: true }).formatDateTimeFromString(dt, format) : null; } __name(toTechFormat, "toTechFormat"); function toISODate(o, extended, precision) { const longFormat = o.c.year > 9999 || o.c.year < 0; let c = ""; if (longFormat && o.c.year >= 0) c += "+"; c += padStart(o.c.year, longFormat ? 6 : 4); if (precision === "year") return c; if (extended) { c += "-"; c += padStart(o.c.month); if (precision === "month") return c; c += "-"; } else { c += padStart(o.c.month); if (precision === "month") return c; } c += padStart(o.c.day); return c; } __name(toISODate, "toISODate"); function toISOTime(o, extended, suppressSeconds, suppressMilliseconds, includeOffset, extendedZone, precision) { let showSeconds = !suppressSeconds || o.c.millisecond !== 0 || o.c.second !== 0, c = ""; switch (precision) { case "day": case "month": case "year": break; default: c += padStart(o.c.hour); if (precision === "hour") break; if (extended) { c += ":"; c += padStart(o.c.minute); if (precision === "minute") break; if (showSeconds) { c += ":"; c += padStart(o.c.second); } } else { c += padStart(o.c.minute); if (precision === "minute") break; if (showSeconds) { c += padStart(o.c.second); } } if (precision === "second") break; if (showSeconds && (!suppressMilliseconds || o.c.millisecond !== 0)) { c += "."; c += padStart(o.c.millisecond, 3); } } if (includeOffset) { if (o.isOffsetFixed && o.offset === 0 && !extendedZone) { c += "Z"; } else if (o.o < 0) { c += "-"; c += padStart(Math.trunc(-o.o / 60)); c += ":"; c += padStart(Math.trunc(-o.o % 60)); } else { c += "+"; c += padStart(Math.trunc(o.o / 60)); c += ":"; c += padStart(Math.trunc(o.o % 60)); } } if (extendedZone) { c += "[" + o.zone.ianaName + "]"; } return c; } __name(toISOTime, "toISOTime"); var defaultUnitValues = { month: 1, day: 1, hour: 0, minute: 0, second: 0, millisecond: 0 }; var defaultWeekUnitValues = { weekNumber: 1, weekday: 1, hour: 0, minute: 0, second: 0, millisecond: 0 }; var defaultOrdinalUnitValues = { ordinal: 1, hour: 0, minute: 0, second: 0, millisecond: 0 }; var orderedUnits = ["year", "month", "day", "hour", "minute", "second", "millisecond"]; var orderedWeekUnits = ["weekYear", "weekNumber", "weekday", "hour", "minute", "second", "millisecond"]; var orderedOrdinalUnits = ["year", "ordinal", "hour", "minute", "second", "millisecond"]; function normalizeUnit(unit) { const normalized = { year: "year", years: "year", month: "month", months: "month", day: "day", days: "day", hour: "hour", hours: "hour", minute: "minute", minutes: "minute", quarter: "quarter", quarters: "quarter", second: "second", seconds: "second", millisecond: "millisecond", milliseconds: "millisecond", weekday: "weekday", weekdays: "weekday", weeknumber: "weekNumber", weeksnumber: "weekNumber", weeknumbers: "weekNumber", weekyear: "weekYear", weekyears: "weekYear", ordinal: "ordinal" }[unit.toLowerCase()]; if (!normalized) throw new InvalidUnitError(unit); return normalized; } __name(normalizeUnit, "normalizeUnit"); function normalizeUnitWithLocalWeeks(unit) { switch (unit.toLowerCase()) { case "localweekday": case "localweekdays": return "localWeekday"; case "localweeknumber": case "localweeknumbers": return "localWeekNumber"; case "localweekyear": case "localweekyears": return "localWeekYear"; default: return normalizeUnit(unit); } } __name(normalizeUnitWithLocalWeeks, "normalizeUnitWithLocalWeeks"); function guessOffsetForZone(zone) { if (zoneOffsetTs === void 0) { zoneOffsetTs = Settings.now(); } if (zone.type !== "iana") { return zone.offset(zoneOffsetTs); } const zoneName = zone.name; let offsetGuess = zoneOffsetGuessCache.get(zoneName); if (offsetGuess === void 0) { offsetGuess = zone.offset(zoneOffsetTs); zoneOffsetGuessCache.set(zoneName, offsetGuess); } return offsetGuess; } __name(guessOffsetForZone, "guessOffsetForZone"); function quickDT(obj, opts) { const zone = normalizeZone(opts.zone, Settings.defaultZone); if (!zone.isValid) { return DateTime.invalid(unsupportedZone(zone)); } const loc = Locale.fromObject(opts); let ts, o; if (!isUndefined2(obj.year)) { for (const u4 of orderedUnits) { if (isUndefined2(obj[u4])) { obj[u4] = defaultUnitValues[u4]; } } const invalid = hasInvalidGregorianData(obj) || hasInvalidTimeData(obj); if (invalid) { return DateTime.invalid(invalid); } const offsetProvis = guessOffsetForZone(zone); [ts, o] = objToTS(obj, offsetProvis, zone); } else { ts = Settings.now(); } return new DateTime({ ts, zone, loc, o }); } __name(quickDT, "quickDT"); function diffRelative(start, end, opts) { const round = isUndefined2(opts.round) ? true : opts.round, rounding = isUndefined2(opts.rounding) ? "trunc" : opts.rounding, format = /* @__PURE__ */ __name((c, unit) => { c = roundTo(c, round || opts.calendary ? 0 : 2, opts.calendary ? "round" : rounding); const formatter = end.loc.clone(opts).relFormatter(opts); return formatter.format(c, unit); }, "format"), differ = /* @__PURE__ */ __name((unit) => { if (opts.calendary) { if (!end.hasSame(start, unit)) { return end.startOf(unit).diff(start.startOf(unit), unit).get(unit); } else return 0; } else { return end.diff(start, unit).get(unit); } }, "differ"); if (opts.unit) { return format(differ(opts.unit), opts.unit); } for (const unit of opts.units) { const count4 = differ(unit); if (Math.abs(count4) >= 1) { return format(count4, unit); } } return format(start > end ? -0 : 0, opts.units[opts.units.length - 1]); } __name(diffRelative, "diffRelative"); function lastOpts(argList) { let opts = {}, args; if (argList.length > 0 && typeof argList[argList.length - 1] === "object") { opts = argList[argList.length - 1]; args = Array.from(argList).slice(0, argList.length - 1); } else { args = Array.from(argList); } return [opts, args]; } __name(lastOpts, "lastOpts"); var zoneOffsetTs; var zoneOffsetGuessCache = /* @__PURE__ */ new Map(); var DateTime = class _DateTime { static { __name(this, "DateTime"); } /** * @access private */ constructor(config3) { const zone = config3.zone || Settings.defaultZone; let invalid = config3.invalid || (Number.isNaN(config3.ts) ? new Invalid("invalid input") : null) || (!zone.isValid ? unsupportedZone(zone) : null); this.ts = isUndefined2(config3.ts) ? Settings.now() : config3.ts; let c = null, o = null; if (!invalid) { const unchanged = config3.old && config3.old.ts === this.ts && config3.old.zone.equals(zone); if (unchanged) { [c, o] = [config3.old.c, config3.old.o]; } else { const ot = isNumber3(config3.o) && !config3.old ? config3.o : zone.offset(this.ts); c = tsToObj(this.ts, ot); invalid = Number.isNaN(c.year) ? new Invalid("invalid input") : null; c = invalid ? null : c; o = invalid ? null : ot; } } this._zone = zone; this.loc = config3.loc || Locale.create(); this.invalid = invalid; this.weekData = null; this.localWeekData = null; this.c = c; this.o = o; this.isLuxonDateTime = true; } // CONSTRUCT /** * Create a DateTime for the current instant, in the system's time zone. * * Use Settings to override these default values if needed. * @example DateTime.now().toISO() //~> now in the ISO format * @return {DateTime} */ static now() { return new _DateTime({}); } /** * Create a local DateTime * @param {number} [year] - The calendar year. If omitted (as in, call `local()` with no arguments), the current time will be used * @param {number} [month=1] - The month, 1-indexed * @param {number} [day=1] - The day of the month, 1-indexed * @param {number} [hour=0] - The hour of the day, in 24-hour time * @param {number} [minute=0] - The minute of the hour, meaning a number between 0 and 59 * @param {number} [second=0] - The second of the minute, meaning a number between 0 and 59 * @param {number} [millisecond=0] - The millisecond of the second, meaning a number between 0 and 999 * @example DateTime.local() //~> now * @example DateTime.local({ zone: "America/New_York" }) //~> now, in US east coast time * @example DateTime.local(2017) //~> 2017-01-01T00:00:00 * @example DateTime.local(2017, 3) //~> 2017-03-01T00:00:00 * @example DateTime.local(2017, 3, 12, { locale: "fr" }) //~> 2017-03-12T00:00:00, with a French locale * @example DateTime.local(2017, 3, 12, 5) //~> 2017-03-12T05:00:00 * @example DateTime.local(2017, 3, 12, 5, { zone: "utc" }) //~> 2017-03-12T05:00:00, in UTC * @example DateTime.local(2017, 3, 12, 5, 45) //~> 2017-03-12T05:45:00 * @example DateTime.local(2017, 3, 12, 5, 45, 10) //~> 2017-03-12T05:45:10 * @example DateTime.local(2017, 3, 12, 5, 45, 10, 765) //~> 2017-03-12T05:45:10.765 * @return {DateTime} */ static local() { const [opts, args] = lastOpts(arguments), [year2, month, day2, hour2, minute2, second, millisecond] = args; return quickDT({ year: year2, month, day: day2, hour: hour2, minute: minute2, second, millisecond }, opts); } /** * Create a DateTime in UTC * @param {number} [year] - The calendar year. If omitted (as in, call `utc()` with no arguments), the current time will be used * @param {number} [month=1] - The month, 1-indexed * @param {number} [day=1] - The day of the month * @param {number} [hour=0] - The hour of the day, in 24-hour time * @param {number} [minute=0] - The minute of the hour, meaning a number between 0 and 59 * @param {number} [second=0] - The second of the minute, meaning a number between 0 and 59 * @param {number} [millisecond=0] - The millisecond of the second, meaning a number between 0 and 999 * @param {Object} options - configuration options for the DateTime * @param {string} [options.locale] - a locale to set on the resulting DateTime instance * @param {string} [options.outputCalendar] - the output calendar to set on the resulting DateTime instance * @param {string} [options.numberingSystem] - the numbering system to set on the resulting DateTime instance * @param {string} [options.weekSettings] - the week settings to set on the resulting DateTime instance * @example DateTime.utc() //~> now * @example DateTime.utc(2017) //~> 2017-01-01T00:00:00Z * @example DateTime.utc(2017, 3) //~> 2017-03-01T00:00:00Z * @example DateTime.utc(2017, 3, 12) //~> 2017-03-12T00:00:00Z * @example DateTime.utc(2017, 3, 12, 5) //~> 2017-03-12T05:00:00Z * @example DateTime.utc(2017, 3, 12, 5, 45) //~> 2017-03-12T05:45:00Z * @example DateTime.utc(2017, 3, 12, 5, 45, { locale: "fr" }) //~> 2017-03-12T05:45:00Z with a French locale * @example DateTime.utc(2017, 3, 12, 5, 45, 10) //~> 2017-03-12T05:45:10Z * @example DateTime.utc(2017, 3, 12, 5, 45, 10, 765, { locale: "fr" }) //~> 2017-03-12T05:45:10.765Z with a French locale * @return {DateTime} */ static utc() { const [opts, args] = lastOpts(arguments), [year2, month, day2, hour2, minute2, second, millisecond] = args; opts.zone = FixedOffsetZone.utcInstance; return quickDT({ year: year2, month, day: day2, hour: hour2, minute: minute2, second, millisecond }, opts); } /** * Create a DateTime from a JavaScript Date object. Uses the default zone. * @param {Date} date - a JavaScript Date object * @param {Object} options - configuration options for the DateTime * @param {string|Zone} [options.zone='local'] - the zone to place the DateTime into * @return {DateTime} */ static fromJSDate(date5, options = {}) { const ts = isDate2(date5) ? date5.valueOf() : NaN; if (Number.isNaN(ts)) { return _DateTime.invalid("invalid input"); } const zoneToUse = normalizeZone(options.zone, Settings.defaultZone); if (!zoneToUse.isValid) { return _DateTime.invalid(unsupportedZone(zoneToUse)); } return new _DateTime({ ts, zone: zoneToUse, loc: Locale.fromObject(options) }); } /** * Create a DateTime from a number of milliseconds since the epoch (meaning since 1 January 1970 00:00:00 UTC). Uses the default zone. * @param {number} milliseconds - a number of milliseconds since 1970 UTC * @param {Object} options - configuration options for the DateTime * @param {string|Zone} [options.zone='local'] - the zone to place the DateTime into * @param {string} [options.locale] - a locale to set on the resulting DateTime instance * @param {string} options.outputCalendar - the output calendar to set on the resulting DateTime instance * @param {string} options.numberingSystem - the numbering system to set on the resulting DateTime instance * @param {string} options.weekSettings - the week settings to set on the resulting DateTime instance * @return {DateTime} */ static fromMillis(milliseconds, options = {}) { if (!isNumber3(milliseconds)) { throw new InvalidArgumentError(`fromMillis requires a numerical input, but received a ${typeof milliseconds} with value ${milliseconds}`); } else if (milliseconds < -MAX_DATE || milliseconds > MAX_DATE) { return _DateTime.invalid("Timestamp out of range"); } else { return new _DateTime({ ts: milliseconds, zone: normalizeZone(options.zone, Settings.defaultZone), loc: Locale.fromObject(options) }); } } /** * Create a DateTime from a number of seconds since the epoch (meaning since 1 January 1970 00:00:00 UTC). Uses the default zone. * @param {number} seconds - a number of seconds since 1970 UTC * @param {Object} options - configuration options for the DateTime * @param {string|Zone} [options.zone='local'] - the zone to place the DateTime into * @param {string} [options.locale] - a locale to set on the resulting DateTime instance * @param {string} options.outputCalendar - the output calendar to set on the resulting DateTime instance * @param {string} options.numberingSystem - the numbering system to set on the resulting DateTime instance * @param {string} options.weekSettings - the week settings to set on the resulting DateTime instance * @return {DateTime} */ static fromSeconds(seconds, options = {}) { if (!isNumber3(seconds)) { throw new InvalidArgumentError("fromSeconds requires a numerical input"); } else { return new _DateTime({ ts: seconds * 1e3, zone: normalizeZone(options.zone, Settings.defaultZone), loc: Locale.fromObject(options) }); } } /** * Create a DateTime from a JavaScript object with keys like 'year' and 'hour' with reasonable defaults. * @param {Object} obj - the object to create the DateTime from * @param {number} obj.year - a year, such as 1987 * @param {number} obj.month - a month, 1-12 * @param {number} obj.day - a day of the month, 1-31, depending on the month * @param {number} obj.ordinal - day of the year, 1-365 or 366 * @param {number} obj.weekYear - an ISO week year * @param {number} obj.weekNumber - an ISO week number, between 1 and 52 or 53, depending on the year * @param {number} obj.weekday - an ISO weekday, 1-7, where 1 is Monday and 7 is Sunday * @param {number} obj.localWeekYear - a week year, according to the locale * @param {number} obj.localWeekNumber - a week number, between 1 and 52 or 53, depending on the year, according to the locale * @param {number} obj.localWeekday - a weekday, 1-7, where 1 is the first and 7 is the last day of the week, according to the locale * @param {number} obj.hour - hour of the day, 0-23 * @param {number} obj.minute - minute of the hour, 0-59 * @param {number} obj.second - second of the minute, 0-59 * @param {number} obj.millisecond - millisecond of the second, 0-999 * @param {Object} opts - options for creating this DateTime * @param {string|Zone} [opts.zone='local'] - interpret the numbers in the context of a particular zone. Can take any value taken as the first argument to setZone() * @param {string} [opts.locale='system\'s locale'] - a locale to set on the resulting DateTime instance * @param {string} opts.outputCalendar - the output calendar to set on the resulting DateTime instance * @param {string} opts.numberingSystem - the numbering system to set on the resulting DateTime instance * @param {string} opts.weekSettings - the week settings to set on the resulting DateTime instance * @example DateTime.fromObject({ year: 1982, month: 5, day: 25}).toISODate() //=> '1982-05-25' * @example DateTime.fromObject({ year: 1982 }).toISODate() //=> '1982-01-01' * @example DateTime.fromObject({ hour: 10, minute: 26, second: 6 }) //~> today at 10:26:06 * @example DateTime.fromObject({ hour: 10, minute: 26, second: 6 }, { zone: 'utc' }), * @example DateTime.fromObject({ hour: 10, minute: 26, second: 6 }, { zone: 'local' }) * @example DateTime.fromObject({ hour: 10, minute: 26, second: 6 }, { zone: 'America/New_York' }) * @example DateTime.fromObject({ weekYear: 2016, weekNumber: 2, weekday: 3 }).toISODate() //=> '2016-01-13' * @example DateTime.fromObject({ localWeekYear: 2022, localWeekNumber: 1, localWeekday: 1 }, { locale: "en-US" }).toISODate() //=> '2021-12-26' * @return {DateTime} */ static fromObject(obj, opts = {}) { obj = obj || {}; const zoneToUse = normalizeZone(opts.zone, Settings.defaultZone); if (!zoneToUse.isValid) { return _DateTime.invalid(unsupportedZone(zoneToUse)); } const loc = Locale.fromObject(opts); const normalized = normalizeObject(obj, normalizeUnitWithLocalWeeks); const { minDaysInFirstWeek, startOfWeek } = usesLocalWeekValues(normalized, loc); const tsNow = Settings.now(), offsetProvis = !isUndefined2(opts.specificOffset) ? opts.specificOffset : zoneToUse.offset(tsNow), containsOrdinal = !isUndefined2(normalized.ordinal), containsGregorYear = !isUndefined2(normalized.year), containsGregorMD = !isUndefined2(normalized.month) || !isUndefined2(normalized.day), containsGregor = containsGregorYear || containsGregorMD, definiteWeekDef = normalized.weekYear || normalized.weekNumber; if ((containsGregor || containsOrdinal) && definiteWeekDef) { throw new ConflictingSpecificationError("Can't mix weekYear/weekNumber units with year/month/day or ordinals"); } if (containsGregorMD && containsOrdinal) { throw new ConflictingSpecificationError("Can't mix ordinal dates with month/day"); } const useWeekData = definiteWeekDef || normalized.weekday && !containsGregor; let units2, defaultValues, objNow = tsToObj(tsNow, offsetProvis); if (useWeekData) { units2 = orderedWeekUnits; defaultValues = defaultWeekUnitValues; objNow = gregorianToWeek(objNow, minDaysInFirstWeek, startOfWeek); } else if (containsOrdinal) { units2 = orderedOrdinalUnits; defaultValues = defaultOrdinalUnitValues; objNow = gregorianToOrdinal(objNow); } else { units2 = orderedUnits; defaultValues = defaultUnitValues; } let foundFirst = false; for (const u4 of units2) { const v2 = normalized[u4]; if (!isUndefined2(v2)) { foundFirst = true; } else if (foundFirst) { normalized[u4] = defaultValues[u4]; } else { normalized[u4] = objNow[u4]; } } const higherOrderInvalid = useWeekData ? hasInvalidWeekData(normalized, minDaysInFirstWeek, startOfWeek) : containsOrdinal ? hasInvalidOrdinalData(normalized) : hasInvalidGregorianData(normalized), invalid = higherOrderInvalid || hasInvalidTimeData(normalized); if (invalid) { return _DateTime.invalid(invalid); } const gregorian = useWeekData ? weekToGregorian(normalized, minDaysInFirstWeek, startOfWeek) : containsOrdinal ? ordinalToGregorian(normalized) : normalized, [tsFinal, offsetFinal] = objToTS(gregorian, offsetProvis, zoneToUse), inst = new _DateTime({ ts: tsFinal, zone: zoneToUse, o: offsetFinal, loc }); if (normalized.weekday && containsGregor && obj.weekday !== inst.weekday) { return _DateTime.invalid("mismatched weekday", `you can't specify both a weekday of ${normalized.weekday} and a date of ${inst.toISO()}`); } if (!inst.isValid) { return _DateTime.invalid(inst.invalid); } return inst; } /** * Create a DateTime from an ISO 8601 string * @param {string} text - the ISO string * @param {Object} opts - options to affect the creation * @param {string|Zone} [opts.zone='local'] - use this zone if no offset is specified in the input string itself. Will also convert the time to this zone * @param {boolean} [opts.setZone=false] - override the zone with a fixed-offset zone specified in the string itself, if it specifies one * @param {string} [opts.locale='system's locale'] - a locale to set on the resulting DateTime instance * @param {string} [opts.outputCalendar] - the output calendar to set on the resulting DateTime instance * @param {string} [opts.numberingSystem] - the numbering system to set on the resulting DateTime instance * @param {string} [opts.weekSettings] - the week settings to set on the resulting DateTime instance * @example DateTime.fromISO('2016-05-25T09:08:34.123') * @example DateTime.fromISO('2016-05-25T09:08:34.123+06:00') * @example DateTime.fromISO('2016-05-25T09:08:34.123+06:00', {setZone: true}) * @example DateTime.fromISO('2016-05-25T09:08:34.123', {zone: 'utc'}) * @example DateTime.fromISO('2016-W05-4') * @return {DateTime} */ static fromISO(text2, opts = {}) { const [vals, parsedZone] = parseISODate(text2); return parseDataToDateTime(vals, parsedZone, opts, "ISO 8601", text2); } /** * Create a DateTime from an RFC 2822 string * @param {string} text - the RFC 2822 string * @param {Object} opts - options to affect the creation * @param {string|Zone} [opts.zone='local'] - convert the time to this zone. Since the offset is always specified in the string itself, this has no effect on the interpretation of string, merely the zone the resulting DateTime is expressed in. * @param {boolean} [opts.setZone=false] - override the zone with a fixed-offset zone specified in the string itself, if it specifies one * @param {string} [opts.locale='system's locale'] - a locale to set on the resulting DateTime instance * @param {string} opts.outputCalendar - the output calendar to set on the resulting DateTime instance * @param {string} opts.numberingSystem - the numbering system to set on the resulting DateTime instance * @param {string} opts.weekSettings - the week settings to set on the resulting DateTime instance * @example DateTime.fromRFC2822('25 Nov 2016 13:23:12 GMT') * @example DateTime.fromRFC2822('Fri, 25 Nov 2016 13:23:12 +0600') * @example DateTime.fromRFC2822('25 Nov 2016 13:23 Z') * @return {DateTime} */ static fromRFC2822(text2, opts = {}) { const [vals, parsedZone] = parseRFC2822Date(text2); return parseDataToDateTime(vals, parsedZone, opts, "RFC 2822", text2); } /** * Create a DateTime from an HTTP header date * @see https://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.3.1 * @param {string} text - the HTTP header date * @param {Object} opts - options to affect the creation * @param {string|Zone} [opts.zone='local'] - convert the time to this zone. Since HTTP dates are always in UTC, this has no effect on the interpretation of string, merely the zone the resulting DateTime is expressed in. * @param {boolean} [opts.setZone=false] - override the zone with the fixed-offset zone specified in the string. For HTTP dates, this is always UTC, so this option is equivalent to setting the `zone` option to 'utc', but this option is included for consistency with similar methods. * @param {string} [opts.locale='system's locale'] - a locale to set on the resulting DateTime instance * @param {string} opts.outputCalendar - the output calendar to set on the resulting DateTime instance * @param {string} opts.numberingSystem - the numbering system to set on the resulting DateTime instance * @param {string} opts.weekSettings - the week settings to set on the resulting DateTime instance * @example DateTime.fromHTTP('Sun, 06 Nov 1994 08:49:37 GMT') * @example DateTime.fromHTTP('Sunday, 06-Nov-94 08:49:37 GMT') * @example DateTime.fromHTTP('Sun Nov 6 08:49:37 1994') * @return {DateTime} */ static fromHTTP(text2, opts = {}) { const [vals, parsedZone] = parseHTTPDate(text2); return parseDataToDateTime(vals, parsedZone, opts, "HTTP", opts); } /** * Create a DateTime from an input string and format string. * Defaults to en-US if no locale has been specified, regardless of the system's locale. For a table of tokens and their interpretations, see [here](https://moment.github.io/luxon/#/parsing?id=table-of-tokens). * @param {string} text - the string to parse * @param {string} fmt - the format the string is expected to be in (see the link below for the formats) * @param {Object} opts - options to affect the creation * @param {string|Zone} [opts.zone='local'] - use this zone if no offset is specified in the input string itself. Will also convert the DateTime to this zone * @param {boolean} [opts.setZone=false] - override the zone with a zone specified in the string itself, if it specifies one * @param {string} [opts.locale='en-US'] - a locale string to use when parsing. Will also set the DateTime to this locale * @param {string} opts.numberingSystem - the numbering system to use when parsing. Will also set the resulting DateTime to this numbering system * @param {string} opts.weekSettings - the week settings to set on the resulting DateTime instance * @param {string} opts.outputCalendar - the output calendar to set on the resulting DateTime instance * @return {DateTime} */ static fromFormat(text2, fmt, opts = {}) { if (isUndefined2(text2) || isUndefined2(fmt)) { throw new InvalidArgumentError("fromFormat requires an input string and a format"); } const { locale = null, numberingSystem = null } = opts, localeToUse = Locale.fromOpts({ locale, numberingSystem, defaultToEN: true }), [vals, parsedZone, specificOffset, invalid] = parseFromTokens(localeToUse, text2, fmt); if (invalid) { return _DateTime.invalid(invalid); } else { return parseDataToDateTime(vals, parsedZone, opts, `format ${fmt}`, text2, specificOffset); } } /** * @deprecated use fromFormat instead */ static fromString(text2, fmt, opts = {}) { return _DateTime.fromFormat(text2, fmt, opts); } /** * Create a DateTime from a SQL date, time, or datetime * Defaults to en-US if no locale has been specified, regardless of the system's locale * @param {string} text - the string to parse * @param {Object} opts - options to affect the creation * @param {string|Zone} [opts.zone='local'] - use this zone if no offset is specified in the input string itself. Will also convert the DateTime to this zone * @param {boolean} [opts.setZone=false] - override the zone with a zone specified in the string itself, if it specifies one * @param {string} [opts.locale='en-US'] - a locale string to use when parsing. Will also set the DateTime to this locale * @param {string} opts.numberingSystem - the numbering system to use when parsing. Will also set the resulting DateTime to this numbering system * @param {string} opts.weekSettings - the week settings to set on the resulting DateTime instance * @param {string} opts.outputCalendar - the output calendar to set on the resulting DateTime instance * @example DateTime.fromSQL('2017-05-15') * @example DateTime.fromSQL('2017-05-15 09:12:34') * @example DateTime.fromSQL('2017-05-15 09:12:34.342') * @example DateTime.fromSQL('2017-05-15 09:12:34.342+06:00') * @example DateTime.fromSQL('2017-05-15 09:12:34.342 America/Los_Angeles') * @example DateTime.fromSQL('2017-05-15 09:12:34.342 America/Los_Angeles', { setZone: true }) * @example DateTime.fromSQL('2017-05-15 09:12:34.342', { zone: 'America/Los_Angeles' }) * @example DateTime.fromSQL('09:12:34.342') * @return {DateTime} */ static fromSQL(text2, opts = {}) { const [vals, parsedZone] = parseSQL(text2); return parseDataToDateTime(vals, parsedZone, opts, "SQL", text2); } /** * Create an invalid DateTime. * @param {string} reason - simple string of why this DateTime is invalid. Should not contain parameters or anything else data-dependent. * @param {string} [explanation=null] - longer explanation, may include parameters and other useful debugging information * @return {DateTime} */ static invalid(reason, explanation = null) { if (!reason) { throw new InvalidArgumentError("need to specify a reason the DateTime is invalid"); } const invalid = reason instanceof Invalid ? reason : new Invalid(reason, explanation); if (Settings.throwOnInvalid) { throw new InvalidDateTimeError(invalid); } else { return new _DateTime({ invalid }); } } /** * Check if an object is an instance of DateTime. Works across context boundaries * @param {object} o * @return {boolean} */ static isDateTime(o) { return o && o.isLuxonDateTime || false; } /** * Produce the format string for a set of options * @param formatOpts * @param localeOpts * @returns {string} */ static parseFormatForOpts(formatOpts, localeOpts = {}) { const tokenList = formatOptsToTokens(formatOpts, Locale.fromObject(localeOpts)); return !tokenList ? null : tokenList.map((t8) => t8 ? t8.val : null).join(""); } /** * Produce the the fully expanded format token for the locale * Does NOT quote characters, so quoted tokens will not round trip correctly * @param fmt * @param localeOpts * @returns {string} */ static expandFormat(fmt, localeOpts = {}) { const expanded = expandMacroTokens(Formatter.parseFormat(fmt), Locale.fromObject(localeOpts)); return expanded.map((t8) => t8.val).join(""); } static resetCache() { zoneOffsetTs = void 0; zoneOffsetGuessCache.clear(); } // INFO /** * Get the value of unit. * @param {string} unit - a unit such as 'minute' or 'day' * @example DateTime.local(2017, 7, 4).get('month'); //=> 7 * @example DateTime.local(2017, 7, 4).get('day'); //=> 4 * @return {number} */ get(unit) { return this[unit]; } /** * Returns whether the DateTime is valid. Invalid DateTimes occur when: * * The DateTime was created from invalid calendar information, such as the 13th month or February 30 * * The DateTime was created by an operation on another invalid date * @type {boolean} */ get isValid() { return this.invalid === null; } /** * Returns an error code if this DateTime is invalid, or null if the DateTime is valid * @type {string} */ get invalidReason() { return this.invalid ? this.invalid.reason : null; } /** * Returns an explanation of why this DateTime became invalid, or null if the DateTime is valid * @type {string} */ get invalidExplanation() { return this.invalid ? this.invalid.explanation : null; } /** * Get the locale of a DateTime, such 'en-GB'. The locale is used when formatting the DateTime * * @type {string} */ get locale() { return this.isValid ? this.loc.locale : null; } /** * Get the numbering system of a DateTime, such 'beng'. The numbering system is used when formatting the DateTime * * @type {string} */ get numberingSystem() { return this.isValid ? this.loc.numberingSystem : null; } /** * Get the output calendar of a DateTime, such 'islamic'. The output calendar is used when formatting the DateTime * * @type {string} */ get outputCalendar() { return this.isValid ? this.loc.outputCalendar : null; } /** * Get the time zone associated with this DateTime. * @type {Zone} */ get zone() { return this._zone; } /** * Get the name of the time zone. * @type {string} */ get zoneName() { return this.isValid ? this.zone.name : null; } /** * Get the year * @example DateTime.local(2017, 5, 25).year //=> 2017 * @type {number} */ get year() { return this.isValid ? this.c.year : NaN; } /** * Get the quarter * @example DateTime.local(2017, 5, 25).quarter //=> 2 * @type {number} */ get quarter() { return this.isValid ? Math.ceil(this.c.month / 3) : NaN; } /** * Get the month (1-12). * @example DateTime.local(2017, 5, 25).month //=> 5 * @type {number} */ get month() { return this.isValid ? this.c.month : NaN; } /** * Get the day of the month (1-30ish). * @example DateTime.local(2017, 5, 25).day //=> 25 * @type {number} */ get day() { return this.isValid ? this.c.day : NaN; } /** * Get the hour of the day (0-23). * @example DateTime.local(2017, 5, 25, 9).hour //=> 9 * @type {number} */ get hour() { return this.isValid ? this.c.hour : NaN; } /** * Get the minute of the hour (0-59). * @example DateTime.local(2017, 5, 25, 9, 30).minute //=> 30 * @type {number} */ get minute() { return this.isValid ? this.c.minute : NaN; } /** * Get the second of the minute (0-59). * @example DateTime.local(2017, 5, 25, 9, 30, 52).second //=> 52 * @type {number} */ get second() { return this.isValid ? this.c.second : NaN; } /** * Get the millisecond of the second (0-999). * @example DateTime.local(2017, 5, 25, 9, 30, 52, 654).millisecond //=> 654 * @type {number} */ get millisecond() { return this.isValid ? this.c.millisecond : NaN; } /** * Get the week year * @see https://en.wikipedia.org/wiki/ISO_week_date * @example DateTime.local(2014, 12, 31).weekYear //=> 2015 * @type {number} */ get weekYear() { return this.isValid ? possiblyCachedWeekData(this).weekYear : NaN; } /** * Get the week number of the week year (1-52ish). * @see https://en.wikipedia.org/wiki/ISO_week_date * @example DateTime.local(2017, 5, 25).weekNumber //=> 21 * @type {number} */ get weekNumber() { return this.isValid ? possiblyCachedWeekData(this).weekNumber : NaN; } /** * Get the day of the week. * 1 is Monday and 7 is Sunday * @see https://en.wikipedia.org/wiki/ISO_week_date * @example DateTime.local(2014, 11, 31).weekday //=> 4 * @type {number} */ get weekday() { return this.isValid ? possiblyCachedWeekData(this).weekday : NaN; } /** * Returns true if this date is on a weekend according to the locale, false otherwise * @returns {boolean} */ get isWeekend() { return this.isValid && this.loc.getWeekendDays().includes(this.weekday); } /** * Get the day of the week according to the locale. * 1 is the first day of the week and 7 is the last day of the week. * If the locale assigns Sunday as the first day of the week, then a date which is a Sunday will return 1, * @returns {number} */ get localWeekday() { return this.isValid ? possiblyCachedLocalWeekData(this).weekday : NaN; } /** * Get the week number of the week year according to the locale. Different locales assign week numbers differently, * because the week can start on different days of the week (see localWeekday) and because a different number of days * is required for a week to count as the first week of a year. * @returns {number} */ get localWeekNumber() { return this.isValid ? possiblyCachedLocalWeekData(this).weekNumber : NaN; } /** * Get the week year according to the locale. Different locales assign week numbers (and therefor week years) * differently, see localWeekNumber. * @returns {number} */ get localWeekYear() { return this.isValid ? possiblyCachedLocalWeekData(this).weekYear : NaN; } /** * Get the ordinal (meaning the day of the year) * @example DateTime.local(2017, 5, 25).ordinal //=> 145 * @type {number|DateTime} */ get ordinal() { return this.isValid ? gregorianToOrdinal(this.c).ordinal : NaN; } /** * Get the human readable short month name, such as 'Oct'. * Defaults to the system's locale if no locale has been specified * @example DateTime.local(2017, 10, 30).monthShort //=> Oct * @type {string} */ get monthShort() { return this.isValid ? Info.months("short", { locObj: this.loc })[this.month - 1] : null; } /** * Get the human readable long month name, such as 'October'. * Defaults to the system's locale if no locale has been specified * @example DateTime.local(2017, 10, 30).monthLong //=> October * @type {string} */ get monthLong() { return this.isValid ? Info.months("long", { locObj: this.loc })[this.month - 1] : null; } /** * Get the human readable short weekday, such as 'Mon'. * Defaults to the system's locale if no locale has been specified * @example DateTime.local(2017, 10, 30).weekdayShort //=> Mon * @type {string} */ get weekdayShort() { return this.isValid ? Info.weekdays("short", { locObj: this.loc })[this.weekday - 1] : null; } /** * Get the human readable long weekday, such as 'Monday'. * Defaults to the system's locale if no locale has been specified * @example DateTime.local(2017, 10, 30).weekdayLong //=> Monday * @type {string} */ get weekdayLong() { return this.isValid ? Info.weekdays("long", { locObj: this.loc })[this.weekday - 1] : null; } /** * Get the UTC offset of this DateTime in minutes * @example DateTime.now().offset //=> -240 * @example DateTime.utc().offset //=> 0 * @type {number} */ get offset() { return this.isValid ? +this.o : NaN; } /** * Get the short human name for the zone's current offset, for example "EST" or "EDT". * Defaults to the system's locale if no locale has been specified * @type {string} */ get offsetNameShort() { if (this.isValid) { return this.zone.offsetName(this.ts, { format: "short", locale: this.locale }); } else { return null; } } /** * Get the long human name for the zone's current offset, for example "Eastern Standard Time" or "Eastern Daylight Time". * Defaults to the system's locale if no locale has been specified * @type {string} */ get offsetNameLong() { if (this.isValid) { return this.zone.offsetName(this.ts, { format: "long", locale: this.locale }); } else { return null; } } /** * Get whether this zone's offset ever changes, as in a DST. * @type {boolean} */ get isOffsetFixed() { return this.isValid ? this.zone.isUniversal : null; } /** * Get whether the DateTime is in a DST. * @type {boolean} */ get isInDST() { if (this.isOffsetFixed) { return false; } else { return this.offset > this.set({ month: 1, day: 1 }).offset || this.offset > this.set({ month: 5 }).offset; } } /** * Get those DateTimes which have the same local time as this DateTime, but a different offset from UTC * in this DateTime's zone. During DST changes local time can be ambiguous, for example * `2023-10-29T02:30:00` in `Europe/Berlin` can have offset `+01:00` or `+02:00`. * This method will return both possible DateTimes if this DateTime's local time is ambiguous. * @returns {DateTime[]} */ getPossibleOffsets() { if (!this.isValid || this.isOffsetFixed) { return [this]; } const dayMs = 864e5; const minuteMs = 6e4; const localTS = objToLocalTS(this.c); const oEarlier = this.zone.offset(localTS - dayMs); const oLater = this.zone.offset(localTS + dayMs); const o1 = this.zone.offset(localTS - oEarlier * minuteMs); const o2 = this.zone.offset(localTS - oLater * minuteMs); if (o1 === o2) { return [this]; } const ts1 = localTS - o1 * minuteMs; const ts2 = localTS - o2 * minuteMs; const c1 = tsToObj(ts1, o1); const c2 = tsToObj(ts2, o2); if (c1.hour === c2.hour && c1.minute === c2.minute && c1.second === c2.second && c1.millisecond === c2.millisecond) { return [clone2(this, { ts: ts1 }), clone2(this, { ts: ts2 })]; } return [this]; } /** * Returns true if this DateTime is in a leap year, false otherwise * @example DateTime.local(2016).isInLeapYear //=> true * @example DateTime.local(2013).isInLeapYear //=> false * @type {boolean} */ get isInLeapYear() { return isLeapYear2(this.year); } /** * Returns the number of days in this DateTime's month * @example DateTime.local(2016, 2).daysInMonth //=> 29 * @example DateTime.local(2016, 3).daysInMonth //=> 31 * @type {number} */ get daysInMonth() { return daysInMonth(this.year, this.month); } /** * Returns the number of days in this DateTime's year * @example DateTime.local(2016).daysInYear //=> 366 * @example DateTime.local(2013).daysInYear //=> 365 * @type {number} */ get daysInYear() { return this.isValid ? daysInYear(this.year) : NaN; } /** * Returns the number of weeks in this DateTime's year * @see https://en.wikipedia.org/wiki/ISO_week_date * @example DateTime.local(2004).weeksInWeekYear //=> 53 * @example DateTime.local(2013).weeksInWeekYear //=> 52 * @type {number} */ get weeksInWeekYear() { return this.isValid ? weeksInWeekYear(this.weekYear) : NaN; } /** * Returns the number of weeks in this DateTime's local week year * @example DateTime.local(2020, 6, {locale: 'en-US'}).weeksInLocalWeekYear //=> 52 * @example DateTime.local(2020, 6, {locale: 'de-DE'}).weeksInLocalWeekYear //=> 53 * @type {number} */ get weeksInLocalWeekYear() { return this.isValid ? weeksInWeekYear(this.localWeekYear, this.loc.getMinDaysInFirstWeek(), this.loc.getStartOfWeek()) : NaN; } /** * Returns the resolved Intl options for this DateTime. * This is useful in understanding the behavior of formatting methods * @param {Object} opts - the same options as toLocaleString * @return {Object} */ resolvedLocaleOptions(opts = {}) { const { locale, numberingSystem, calendar } = Formatter.create(this.loc.clone(opts), opts).resolvedOptions(this); return { locale, numberingSystem, outputCalendar: calendar }; } // TRANSFORM /** * "Set" the DateTime's zone to UTC. Returns a newly-constructed DateTime. * * Equivalent to {@link DateTime#setZone}('utc') * @param {number} [offset=0] - optionally, an offset from UTC in minutes * @param {Object} [opts={}] - options to pass to `setZone()` * @return {DateTime} */ toUTC(offset2 = 0, opts = {}) { return this.setZone(FixedOffsetZone.instance(offset2), opts); } /** * "Set" the DateTime's zone to the host's local zone. Returns a newly-constructed DateTime. * * Equivalent to `setZone('local')` * @return {DateTime} */ toLocal() { return this.setZone(Settings.defaultZone); } /** * "Set" the DateTime's zone to specified zone. Returns a newly-constructed DateTime. * * By default, the setter keeps the underlying time the same (as in, the same timestamp), but the new instance will report different local times and consider DSTs when making computations, as with {@link DateTime#plus}. You may wish to use {@link DateTime#toLocal} and {@link DateTime#toUTC} which provide simple convenience wrappers for commonly used zones. * @param {string|Zone} [zone='local'] - a zone identifier. As a string, that can be any IANA zone supported by the host environment, or a fixed-offset name of the form 'UTC+3', or the strings 'local' or 'utc'. You may also supply an instance of a {@link DateTime#Zone} class. * @param {Object} opts - options * @param {boolean} [opts.keepLocalTime=false] - If true, adjust the underlying time so that the local time stays the same, but in the target zone. You should rarely need this. * @return {DateTime} */ setZone(zone, { keepLocalTime = false, keepCalendarTime = false } = {}) { zone = normalizeZone(zone, Settings.defaultZone); if (zone.equals(this.zone)) { return this; } else if (!zone.isValid) { return _DateTime.invalid(unsupportedZone(zone)); } else { let newTS = this.ts; if (keepLocalTime || keepCalendarTime) { const offsetGuess = zone.offset(this.ts); const asObj = this.toObject(); [newTS] = objToTS(asObj, offsetGuess, zone); } return clone2(this, { ts: newTS, zone }); } } /** * "Set" the locale, numberingSystem, or outputCalendar. Returns a newly-constructed DateTime. * @param {Object} properties - the properties to set * @example DateTime.local(2017, 5, 25).reconfigure({ locale: 'en-GB' }) * @return {DateTime} */ reconfigure({ locale, numberingSystem, outputCalendar } = {}) { const loc = this.loc.clone({ locale, numberingSystem, outputCalendar }); return clone2(this, { loc }); } /** * "Set" the locale. Returns a newly-constructed DateTime. * Just a convenient alias for reconfigure({ locale }) * @example DateTime.local(2017, 5, 25).setLocale('en-GB') * @return {DateTime} */ setLocale(locale) { return this.reconfigure({ locale }); } /** * "Set" the values of specified units. Returns a newly-constructed DateTime. * You can only set units with this method; for "setting" metadata, see {@link DateTime#reconfigure} and {@link DateTime#setZone}. * * This method also supports setting locale-based week units, i.e. `localWeekday`, `localWeekNumber` and `localWeekYear`. * They cannot be mixed with ISO-week units like `weekday`. * @param {Object} values - a mapping of units to numbers * @example dt.set({ year: 2017 }) * @example dt.set({ hour: 8, minute: 30 }) * @example dt.set({ weekday: 5 }) * @example dt.set({ year: 2005, ordinal: 234 }) * @return {DateTime} */ set(values) { if (!this.isValid) return this; const normalized = normalizeObject(values, normalizeUnitWithLocalWeeks); const { minDaysInFirstWeek, startOfWeek } = usesLocalWeekValues(normalized, this.loc); const settingWeekStuff = !isUndefined2(normalized.weekYear) || !isUndefined2(normalized.weekNumber) || !isUndefined2(normalized.weekday), containsOrdinal = !isUndefined2(normalized.ordinal), containsGregorYear = !isUndefined2(normalized.year), containsGregorMD = !isUndefined2(normalized.month) || !isUndefined2(normalized.day), containsGregor = containsGregorYear || containsGregorMD, definiteWeekDef = normalized.weekYear || normalized.weekNumber; if ((containsGregor || containsOrdinal) && definiteWeekDef) { throw new ConflictingSpecificationError("Can't mix weekYear/weekNumber units with year/month/day or ordinals"); } if (containsGregorMD && containsOrdinal) { throw new ConflictingSpecificationError("Can't mix ordinal dates with month/day"); } let mixed; if (settingWeekStuff) { mixed = weekToGregorian({ ...gregorianToWeek(this.c, minDaysInFirstWeek, startOfWeek), ...normalized }, minDaysInFirstWeek, startOfWeek); } else if (!isUndefined2(normalized.ordinal)) { mixed = ordinalToGregorian({ ...gregorianToOrdinal(this.c), ...normalized }); } else { mixed = { ...this.toObject(), ...normalized }; if (isUndefined2(normalized.day)) { mixed.day = Math.min(daysInMonth(mixed.year, mixed.month), mixed.day); } } const [ts, o] = objToTS(mixed, this.o, this.zone); return clone2(this, { ts, o }); } /** * Add a period of time to this DateTime and return the resulting DateTime * * Adding hours, minutes, seconds, or milliseconds increases the timestamp by the right number of milliseconds. Adding days, months, or years shifts the calendar, accounting for DSTs and leap years along the way. Thus, `dt.plus({ hours: 24 })` may result in a different time than `dt.plus({ days: 1 })` if there's a DST shift in between. * @param {Duration|Object|number} duration - The amount to add. Either a Luxon Duration, a number of milliseconds, the object argument to Duration.fromObject() * @example DateTime.now().plus(123) //~> in 123 milliseconds * @example DateTime.now().plus({ minutes: 15 }) //~> in 15 minutes * @example DateTime.now().plus({ days: 1 }) //~> this time tomorrow * @example DateTime.now().plus({ days: -1 }) //~> this time yesterday * @example DateTime.now().plus({ hours: 3, minutes: 13 }) //~> in 3 hr, 13 min * @example DateTime.now().plus(Duration.fromObject({ hours: 3, minutes: 13 })) //~> in 3 hr, 13 min * @return {DateTime} */ plus(duration3) { if (!this.isValid) return this; const dur = Duration.fromDurationLike(duration3); return clone2(this, adjustTime(this, dur)); } /** * Subtract a period of time to this DateTime and return the resulting DateTime * See {@link DateTime#plus} * @param {Duration|Object|number} duration - The amount to subtract. Either a Luxon Duration, a number of milliseconds, the object argument to Duration.fromObject() @return {DateTime} */ minus(duration3) { if (!this.isValid) return this; const dur = Duration.fromDurationLike(duration3).negate(); return clone2(this, adjustTime(this, dur)); } /** * "Set" this DateTime to the beginning of a unit of time. * @param {string} unit - The unit to go to the beginning of. Can be 'year', 'quarter', 'month', 'week', 'day', 'hour', 'minute', 'second', or 'millisecond'. * @param {Object} opts - options * @param {boolean} [opts.useLocaleWeeks=false] - If true, use weeks based on the locale, i.e. use the locale-dependent start of the week * @example DateTime.local(2014, 3, 3).startOf('month').toISODate(); //=> '2014-03-01' * @example DateTime.local(2014, 3, 3).startOf('year').toISODate(); //=> '2014-01-01' * @example DateTime.local(2014, 3, 3).startOf('week').toISODate(); //=> '2014-03-03', weeks always start on Mondays * @example DateTime.local(2014, 3, 3, 5, 30).startOf('day').toISOTime(); //=> '00:00.000-05:00' * @example DateTime.local(2014, 3, 3, 5, 30).startOf('hour').toISOTime(); //=> '05:00:00.000-05:00' * @return {DateTime} */ startOf(unit, { useLocaleWeeks = false } = {}) { if (!this.isValid) return this; const o = {}, normalizedUnit = Duration.normalizeUnit(unit); switch (normalizedUnit) { case "years": o.month = 1; // falls through case "quarters": case "months": o.day = 1; // falls through case "weeks": case "days": o.hour = 0; // falls through case "hours": o.minute = 0; // falls through case "minutes": o.second = 0; // falls through case "seconds": o.millisecond = 0; break; } if (normalizedUnit === "weeks") { if (useLocaleWeeks) { const startOfWeek = this.loc.getStartOfWeek(); const { weekday } = this; if (weekday < startOfWeek) { o.weekNumber = this.weekNumber - 1; } o.weekday = startOfWeek; } else { o.weekday = 1; } } if (normalizedUnit === "quarters") { const q = Math.ceil(this.month / 3); o.month = (q - 1) * 3 + 1; } return this.set(o); } /** * "Set" this DateTime to the end (meaning the last millisecond) of a unit of time * @param {string} unit - The unit to go to the end of. Can be 'year', 'quarter', 'month', 'week', 'day', 'hour', 'minute', 'second', or 'millisecond'. * @param {Object} opts - options * @param {boolean} [opts.useLocaleWeeks=false] - If true, use weeks based on the locale, i.e. use the locale-dependent start of the week * @example DateTime.local(2014, 3, 3).endOf('month').toISO(); //=> '2014-03-31T23:59:59.999-05:00' * @example DateTime.local(2014, 3, 3).endOf('year').toISO(); //=> '2014-12-31T23:59:59.999-05:00' * @example DateTime.local(2014, 3, 3).endOf('week').toISO(); // => '2014-03-09T23:59:59.999-05:00', weeks start on Mondays * @example DateTime.local(2014, 3, 3, 5, 30).endOf('day').toISO(); //=> '2014-03-03T23:59:59.999-05:00' * @example DateTime.local(2014, 3, 3, 5, 30).endOf('hour').toISO(); //=> '2014-03-03T05:59:59.999-05:00' * @return {DateTime} */ endOf(unit, opts) { return this.isValid ? this.plus({ [unit]: 1 }).startOf(unit, opts).minus(1) : this; } // OUTPUT /** * Returns a string representation of this DateTime formatted according to the specified format string. * **You may not want this.** See {@link DateTime#toLocaleString} for a more flexible formatting tool. For a table of tokens and their interpretations, see [here](https://moment.github.io/luxon/#/formatting?id=table-of-tokens). * Defaults to en-US if no locale has been specified, regardless of the system's locale. * @param {string} fmt - the format string * @param {Object} opts - opts to override the configuration options on this DateTime * @example DateTime.now().toFormat('yyyy LLL dd') //=> '2017 Apr 22' * @example DateTime.now().setLocale('fr').toFormat('yyyy LLL dd') //=> '2017 avr. 22' * @example DateTime.now().toFormat('yyyy LLL dd', { locale: "fr" }) //=> '2017 avr. 22' * @example DateTime.now().toFormat("HH 'hours and' mm 'minutes'") //=> '20 hours and 55 minutes' * @return {string} */ toFormat(fmt, opts = {}) { return this.isValid ? Formatter.create(this.loc.redefaultToEN(opts)).formatDateTimeFromString(this, fmt) : INVALID; } /** * Returns a localized string representing this date. Accepts the same options as the Intl.DateTimeFormat constructor and any presets defined by Luxon, such as `DateTime.DATE_FULL` or `DateTime.TIME_SIMPLE`. * The exact behavior of this method is browser-specific, but in general it will return an appropriate representation * of the DateTime in the assigned locale. * Defaults to the system's locale if no locale has been specified * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DateTimeFormat * @param formatOpts {Object} - Intl.DateTimeFormat constructor options and configuration options * @param {Object} opts - opts to override the configuration options on this DateTime * @example DateTime.now().toLocaleString(); //=> 4/20/2017 * @example DateTime.now().setLocale('en-gb').toLocaleString(); //=> '20/04/2017' * @example DateTime.now().toLocaleString(DateTime.DATE_FULL); //=> 'April 20, 2017' * @example DateTime.now().toLocaleString(DateTime.DATE_FULL, { locale: 'fr' }); //=> '28 août 2022' * @example DateTime.now().toLocaleString(DateTime.TIME_SIMPLE); //=> '11:32 AM' * @example DateTime.now().toLocaleString(DateTime.DATETIME_SHORT); //=> '4/20/2017, 11:32 AM' * @example DateTime.now().toLocaleString({ weekday: 'long', month: 'long', day: '2-digit' }); //=> 'Thursday, April 20' * @example DateTime.now().toLocaleString({ weekday: 'short', month: 'short', day: '2-digit', hour: '2-digit', minute: '2-digit' }); //=> 'Thu, Apr 20, 11:27 AM' * @example DateTime.now().toLocaleString({ hour: '2-digit', minute: '2-digit', hourCycle: 'h23' }); //=> '11:32' * @return {string} */ toLocaleString(formatOpts = DATE_SHORT, opts = {}) { return this.isValid ? Formatter.create(this.loc.clone(opts), formatOpts).formatDateTime(this) : INVALID; } /** * Returns an array of format "parts", meaning individual tokens along with metadata. This is allows callers to post-process individual sections of the formatted output. * Defaults to the system's locale if no locale has been specified * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DateTimeFormat/formatToParts * @param opts {Object} - Intl.DateTimeFormat constructor options, same as `toLocaleString`. * @example DateTime.now().toLocaleParts(); //=> [ * //=> { type: 'day', value: '25' }, * //=> { type: 'literal', value: '/' }, * //=> { type: 'month', value: '05' }, * //=> { type: 'literal', value: '/' }, * //=> { type: 'year', value: '1982' } * //=> ] */ toLocaleParts(opts = {}) { return this.isValid ? Formatter.create(this.loc.clone(opts), opts).formatDateTimeParts(this) : []; } /** * Returns an ISO 8601-compliant string representation of this DateTime * @param {Object} opts - options * @param {boolean} [opts.suppressMilliseconds=false] - exclude milliseconds from the format if they're 0 * @param {boolean} [opts.suppressSeconds=false] - exclude seconds from the format if they're 0 * @param {boolean} [opts.includeOffset=true] - include the offset, such as 'Z' or '-04:00' * @param {boolean} [opts.extendedZone=false] - add the time zone format extension * @param {string} [opts.format='extended'] - choose between the basic and extended format * @param {string} [opts.precision='milliseconds'] - truncate output to desired presicion: 'years', 'months', 'days', 'hours', 'minutes', 'seconds' or 'milliseconds'. When precision and suppressSeconds or suppressMilliseconds are used together, precision sets the maximum unit shown in the output, however seconds or milliseconds will still be suppressed if they are 0. * @example DateTime.utc(1983, 5, 25).toISO() //=> '1982-05-25T00:00:00.000Z' * @example DateTime.now().toISO() //=> '2017-04-22T20:47:05.335-04:00' * @example DateTime.now().toISO({ includeOffset: false }) //=> '2017-04-22T20:47:05.335' * @example DateTime.now().toISO({ format: 'basic' }) //=> '20170422T204705.335-0400' * @example DateTime.now().toISO({ precision: 'day' }) //=> '2017-04-22Z' * @example DateTime.now().toISO({ precision: 'minute' }) //=> '2017-04-22T20:47Z' * @return {string|null} */ toISO({ format = "extended", suppressSeconds = false, suppressMilliseconds = false, includeOffset = true, extendedZone = false, precision = "milliseconds" } = {}) { if (!this.isValid) { return null; } precision = normalizeUnit(precision); const ext = format === "extended"; let c = toISODate(this, ext, precision); if (orderedUnits.indexOf(precision) >= 3) c += "T"; c += toISOTime(this, ext, suppressSeconds, suppressMilliseconds, includeOffset, extendedZone, precision); return c; } /** * Returns an ISO 8601-compliant string representation of this DateTime's date component * @param {Object} opts - options * @param {string} [opts.format='extended'] - choose between the basic and extended format * @param {string} [opts.precision='day'] - truncate output to desired precision: 'years', 'months', or 'days'. * @example DateTime.utc(1982, 5, 25).toISODate() //=> '1982-05-25' * @example DateTime.utc(1982, 5, 25).toISODate({ format: 'basic' }) //=> '19820525' * @example DateTime.utc(1982, 5, 25).toISODate({ precision: 'month' }) //=> '1982-05' * @return {string|null} */ toISODate({ format = "extended", precision = "day" } = {}) { if (!this.isValid) { return null; } return toISODate(this, format === "extended", normalizeUnit(precision)); } /** * Returns an ISO 8601-compliant string representation of this DateTime's week date * @example DateTime.utc(1982, 5, 25).toISOWeekDate() //=> '1982-W21-2' * @return {string} */ toISOWeekDate() { return toTechFormat(this, "kkkk-'W'WW-c"); } /** * Returns an ISO 8601-compliant string representation of this DateTime's time component * @param {Object} opts - options * @param {boolean} [opts.suppressMilliseconds=false] - exclude milliseconds from the format if they're 0 * @param {boolean} [opts.suppressSeconds=false] - exclude seconds from the format if they're 0 * @param {boolean} [opts.includeOffset=true] - include the offset, such as 'Z' or '-04:00' * @param {boolean} [opts.extendedZone=true] - add the time zone format extension * @param {boolean} [opts.includePrefix=false] - include the `T` prefix * @param {string} [opts.format='extended'] - choose between the basic and extended format * @param {string} [opts.precision='milliseconds'] - truncate output to desired presicion: 'hours', 'minutes', 'seconds' or 'milliseconds'. When precision and suppressSeconds or suppressMilliseconds are used together, precision sets the maximum unit shown in the output, however seconds or milliseconds will still be suppressed if they are 0. * @example DateTime.utc().set({ hour: 7, minute: 34 }).toISOTime() //=> '07:34:19.361Z' * @example DateTime.utc().set({ hour: 7, minute: 34, seconds: 0, milliseconds: 0 }).toISOTime({ suppressSeconds: true }) //=> '07:34Z' * @example DateTime.utc().set({ hour: 7, minute: 34 }).toISOTime({ format: 'basic' }) //=> '073419.361Z' * @example DateTime.utc().set({ hour: 7, minute: 34 }).toISOTime({ includePrefix: true }) //=> 'T07:34:19.361Z' * @example DateTime.utc().set({ hour: 7, minute: 34, second: 56 }).toISOTime({ precision: 'minute' }) //=> '07:34Z' * @return {string} */ toISOTime({ suppressMilliseconds = false, suppressSeconds = false, includeOffset = true, includePrefix = false, extendedZone = false, format = "extended", precision = "milliseconds" } = {}) { if (!this.isValid) { return null; } precision = normalizeUnit(precision); let c = includePrefix && orderedUnits.indexOf(precision) >= 3 ? "T" : ""; return c + toISOTime(this, format === "extended", suppressSeconds, suppressMilliseconds, includeOffset, extendedZone, precision); } /** * Returns an RFC 2822-compatible string representation of this DateTime * @example DateTime.utc(2014, 7, 13).toRFC2822() //=> 'Sun, 13 Jul 2014 00:00:00 +0000' * @example DateTime.local(2014, 7, 13).toRFC2822() //=> 'Sun, 13 Jul 2014 00:00:00 -0400' * @return {string} */ toRFC2822() { return toTechFormat(this, "EEE, dd LLL yyyy HH:mm:ss ZZZ", false); } /** * Returns a string representation of this DateTime appropriate for use in HTTP headers. The output is always expressed in GMT. * Specifically, the string conforms to RFC 1123. * @see https://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.3.1 * @example DateTime.utc(2014, 7, 13).toHTTP() //=> 'Sun, 13 Jul 2014 00:00:00 GMT' * @example DateTime.utc(2014, 7, 13, 19).toHTTP() //=> 'Sun, 13 Jul 2014 19:00:00 GMT' * @return {string} */ toHTTP() { return toTechFormat(this.toUTC(), "EEE, dd LLL yyyy HH:mm:ss 'GMT'"); } /** * Returns a string representation of this DateTime appropriate for use in SQL Date * @example DateTime.utc(2014, 7, 13).toSQLDate() //=> '2014-07-13' * @return {string|null} */ toSQLDate() { if (!this.isValid) { return null; } return toISODate(this, true); } /** * Returns a string representation of this DateTime appropriate for use in SQL Time * @param {Object} opts - options * @param {boolean} [opts.includeZone=false] - include the zone, such as 'America/New_York'. Overrides includeOffset. * @param {boolean} [opts.includeOffset=true] - include the offset, such as 'Z' or '-04:00' * @param {boolean} [opts.includeOffsetSpace=true] - include the space between the time and the offset, such as '05:15:16.345 -04:00' * @example DateTime.utc().toSQL() //=> '05:15:16.345' * @example DateTime.now().toSQL() //=> '05:15:16.345 -04:00' * @example DateTime.now().toSQL({ includeOffset: false }) //=> '05:15:16.345' * @example DateTime.now().toSQL({ includeZone: false }) //=> '05:15:16.345 America/New_York' * @return {string} */ toSQLTime({ includeOffset = true, includeZone = false, includeOffsetSpace = true } = {}) { let fmt = "HH:mm:ss.SSS"; if (includeZone || includeOffset) { if (includeOffsetSpace) { fmt += " "; } if (includeZone) { fmt += "z"; } else if (includeOffset) { fmt += "ZZ"; } } return toTechFormat(this, fmt, true); } /** * Returns a string representation of this DateTime appropriate for use in SQL DateTime * @param {Object} opts - options * @param {boolean} [opts.includeZone=false] - include the zone, such as 'America/New_York'. Overrides includeOffset. * @param {boolean} [opts.includeOffset=true] - include the offset, such as 'Z' or '-04:00' * @param {boolean} [opts.includeOffsetSpace=true] - include the space between the time and the offset, such as '05:15:16.345 -04:00' * @example DateTime.utc(2014, 7, 13).toSQL() //=> '2014-07-13 00:00:00.000 Z' * @example DateTime.local(2014, 7, 13).toSQL() //=> '2014-07-13 00:00:00.000 -04:00' * @example DateTime.local(2014, 7, 13).toSQL({ includeOffset: false }) //=> '2014-07-13 00:00:00.000' * @example DateTime.local(2014, 7, 13).toSQL({ includeZone: true }) //=> '2014-07-13 00:00:00.000 America/New_York' * @return {string} */ toSQL(opts = {}) { if (!this.isValid) { return null; } return `${this.toSQLDate()} ${this.toSQLTime(opts)}`; } /** * Returns a string representation of this DateTime appropriate for debugging * @return {string} */ toString() { return this.isValid ? this.toISO() : INVALID; } /** * Returns a string representation of this DateTime appropriate for the REPL. * @return {string} */ [/* @__PURE__ */ Symbol.for("nodejs.util.inspect.custom")]() { if (this.isValid) { return `DateTime { ts: ${this.toISO()}, zone: ${this.zone.name}, locale: ${this.locale} }`; } else { return `DateTime { Invalid, reason: ${this.invalidReason} }`; } } /** * Returns the epoch milliseconds of this DateTime. Alias of {@link DateTime#toMillis} * @return {number} */ valueOf() { return this.toMillis(); } /** * Returns the epoch milliseconds of this DateTime. * @return {number} */ toMillis() { return this.isValid ? this.ts : NaN; } /** * Returns the epoch seconds (including milliseconds in the fractional part) of this DateTime. * @return {number} */ toSeconds() { return this.isValid ? this.ts / 1e3 : NaN; } /** * Returns the epoch seconds (as a whole number) of this DateTime. * @return {number} */ toUnixInteger() { return this.isValid ? Math.floor(this.ts / 1e3) : NaN; } /** * Returns an ISO 8601 representation of this DateTime appropriate for use in JSON. * @return {string} */ toJSON() { return this.toISO(); } /** * Returns a BSON serializable equivalent to this DateTime. * @return {Date} */ toBSON() { return this.toJSDate(); } /** * Returns a JavaScript object with this DateTime's year, month, day, and so on. * @param opts - options for generating the object * @param {boolean} [opts.includeConfig=false] - include configuration attributes in the output * @example DateTime.now().toObject() //=> { year: 2017, month: 4, day: 22, hour: 20, minute: 49, second: 42, millisecond: 268 } * @return {Object} */ toObject(opts = {}) { if (!this.isValid) return {}; const base = { ...this.c }; if (opts.includeConfig) { base.outputCalendar = this.outputCalendar; base.numberingSystem = this.loc.numberingSystem; base.locale = this.loc.locale; } return base; } /** * Returns a JavaScript Date equivalent to this DateTime. * @return {Date} */ toJSDate() { return new Date(this.isValid ? this.ts : NaN); } // COMPARE /** * Return the difference between two DateTimes as a Duration. * @param {DateTime} otherDateTime - the DateTime to compare this one to * @param {string|string[]} [unit=['milliseconds']] - the unit or array of units (such as 'hours' or 'days') to include in the duration. * @param {Object} opts - options that affect the creation of the Duration * @param {string} [opts.conversionAccuracy='casual'] - the conversion system to use * @example * var i1 = DateTime.fromISO('1982-05-25T09:45'), * i2 = DateTime.fromISO('1983-10-14T10:30'); * i2.diff(i1).toObject() //=> { milliseconds: 43807500000 } * i2.diff(i1, 'hours').toObject() //=> { hours: 12168.75 } * i2.diff(i1, ['months', 'days']).toObject() //=> { months: 16, days: 19.03125 } * i2.diff(i1, ['months', 'days', 'hours']).toObject() //=> { months: 16, days: 19, hours: 0.75 } * @return {Duration} */ diff(otherDateTime, unit = "milliseconds", opts = {}) { if (!this.isValid || !otherDateTime.isValid) { return Duration.invalid("created by diffing an invalid DateTime"); } const durOpts = { locale: this.locale, numberingSystem: this.numberingSystem, ...opts }; const units2 = maybeArray(unit).map(Duration.normalizeUnit), otherIsLater = otherDateTime.valueOf() > this.valueOf(), earlier = otherIsLater ? this : otherDateTime, later = otherIsLater ? otherDateTime : this, diffed = diff(earlier, later, units2, durOpts); return otherIsLater ? diffed.negate() : diffed; } /** * Return the difference between this DateTime and right now. * See {@link DateTime#diff} * @param {string|string[]} [unit=['milliseconds']] - the unit or units units (such as 'hours' or 'days') to include in the duration * @param {Object} opts - options that affect the creation of the Duration * @param {string} [opts.conversionAccuracy='casual'] - the conversion system to use * @return {Duration} */ diffNow(unit = "milliseconds", opts = {}) { return this.diff(_DateTime.now(), unit, opts); } /** * Return an Interval spanning between this DateTime and another DateTime * @param {DateTime} otherDateTime - the other end point of the Interval * @return {Interval|DateTime} */ until(otherDateTime) { return this.isValid ? Interval.fromDateTimes(this, otherDateTime) : this; } /** * Return whether this DateTime is in the same unit of time as another DateTime. * Higher-order units must also be identical for this function to return `true`. * Note that time zones are **ignored** in this comparison, which compares the **local** calendar time. Use {@link DateTime#setZone} to convert one of the dates if needed. * @param {DateTime} otherDateTime - the other DateTime * @param {string} unit - the unit of time to check sameness on * @param {Object} opts - options * @param {boolean} [opts.useLocaleWeeks=false] - If true, use weeks based on the locale, i.e. use the locale-dependent start of the week; only the locale of this DateTime is used * @example DateTime.now().hasSame(otherDT, 'day'); //~> true if otherDT is in the same current calendar day * @return {boolean} */ hasSame(otherDateTime, unit, opts) { if (!this.isValid) return false; const inputMs = otherDateTime.valueOf(); const adjustedToZone = this.setZone(otherDateTime.zone, { keepLocalTime: true }); return adjustedToZone.startOf(unit, opts) <= inputMs && inputMs <= adjustedToZone.endOf(unit, opts); } /** * Equality check * Two DateTimes are equal if and only if they represent the same millisecond, have the same zone and location, and are both valid. * To compare just the millisecond values, use `+dt1 === +dt2`. * @param {DateTime} other - the other DateTime * @return {boolean} */ equals(other) { return this.isValid && other.isValid && this.valueOf() === other.valueOf() && this.zone.equals(other.zone) && this.loc.equals(other.loc); } /** * Returns a string representation of a this time relative to now, such as "in two days". Can only internationalize if your * platform supports Intl.RelativeTimeFormat. Rounds towards zero by default. * @param {Object} options - options that affect the output * @param {DateTime} [options.base=DateTime.now()] - the DateTime to use as the basis to which this time is compared. Defaults to now. * @param {string} [options.style="long"] - the style of units, must be "long", "short", or "narrow" * @param {string|string[]} options.unit - use a specific unit or array of units; if omitted, or an array, the method will pick the best unit. Use an array or one of "years", "quarters", "months", "weeks", "days", "hours", "minutes", or "seconds" * @param {boolean} [options.round=true] - whether to round the numbers in the output. * @param {string} [options.rounding="trunc"] - rounding method to use when rounding the numbers in the output. Can be "trunc" (toward zero), "expand" (away from zero), "round", "floor", or "ceil". * @param {number} [options.padding=0] - padding in milliseconds. This allows you to round up the result if it fits inside the threshold. Don't use in combination with {round: false} because the decimal output will include the padding. * @param {string} options.locale - override the locale of this DateTime * @param {string} options.numberingSystem - override the numberingSystem of this DateTime. The Intl system may choose not to honor this * @example DateTime.now().plus({ days: 1 }).toRelative() //=> "in 1 day" * @example DateTime.now().setLocale("es").toRelative({ days: 1 }) //=> "dentro de 1 día" * @example DateTime.now().plus({ days: 1 }).toRelative({ locale: "fr" }) //=> "dans 23 heures" * @example DateTime.now().minus({ days: 2 }).toRelative() //=> "2 days ago" * @example DateTime.now().minus({ days: 2 }).toRelative({ unit: "hours" }) //=> "48 hours ago" * @example DateTime.now().minus({ hours: 36 }).toRelative({ round: false }) //=> "1.5 days ago" */ toRelative(options = {}) { if (!this.isValid) return null; const base = options.base || _DateTime.fromObject({}, { zone: this.zone }), padding = options.padding ? this < base ? -options.padding : options.padding : 0; let units2 = ["years", "months", "days", "hours", "minutes", "seconds"]; let unit = options.unit; if (Array.isArray(options.unit)) { units2 = options.unit; unit = void 0; } return diffRelative(base, this.plus(padding), { ...options, numeric: "always", units: units2, unit }); } /** * Returns a string representation of this date relative to today, such as "yesterday" or "next month". * Only internationalizes on platforms that supports Intl.RelativeTimeFormat. * @param {Object} options - options that affect the output * @param {DateTime} [options.base=DateTime.now()] - the DateTime to use as the basis to which this time is compared. Defaults to now. * @param {string} options.locale - override the locale of this DateTime * @param {string} options.unit - use a specific unit; if omitted, the method will pick the unit. Use one of "years", "quarters", "months", "weeks", or "days" * @param {string} options.numberingSystem - override the numberingSystem of this DateTime. The Intl system may choose not to honor this * @example DateTime.now().plus({ days: 1 }).toRelativeCalendar() //=> "tomorrow" * @example DateTime.now().setLocale("es").plus({ days: 1 }).toRelative() //=> ""mañana" * @example DateTime.now().plus({ days: 1 }).toRelativeCalendar({ locale: "fr" }) //=> "demain" * @example DateTime.now().minus({ days: 2 }).toRelativeCalendar() //=> "2 days ago" */ toRelativeCalendar(options = {}) { if (!this.isValid) return null; return diffRelative(options.base || _DateTime.fromObject({}, { zone: this.zone }), this, { ...options, numeric: "auto", units: ["years", "months", "days"], calendary: true }); } /** * Return the min of several date times * @param {...DateTime} dateTimes - the DateTimes from which to choose the minimum * @return {DateTime} the min DateTime, or undefined if called with no argument */ static min(...dateTimes) { if (!dateTimes.every(_DateTime.isDateTime)) { throw new InvalidArgumentError("min requires all arguments be DateTimes"); } return bestBy(dateTimes, (i) => i.valueOf(), Math.min); } /** * Return the max of several date times * @param {...DateTime} dateTimes - the DateTimes from which to choose the maximum * @return {DateTime} the max DateTime, or undefined if called with no argument */ static max(...dateTimes) { if (!dateTimes.every(_DateTime.isDateTime)) { throw new InvalidArgumentError("max requires all arguments be DateTimes"); } return bestBy(dateTimes, (i) => i.valueOf(), Math.max); } // MISC /** * Explain how a string would be parsed by fromFormat() * @param {string} text - the string to parse * @param {string} fmt - the format the string is expected to be in (see description) * @param {Object} options - options taken by fromFormat() * @return {Object} */ static fromFormatExplain(text2, fmt, options = {}) { const { locale = null, numberingSystem = null } = options, localeToUse = Locale.fromOpts({ locale, numberingSystem, defaultToEN: true }); return explainFromTokens(localeToUse, text2, fmt); } /** * @deprecated use fromFormatExplain instead */ static fromStringExplain(text2, fmt, options = {}) { return _DateTime.fromFormatExplain(text2, fmt, options); } /** * Build a parser for `fmt` using the given locale. This parser can be passed * to {@link DateTime.fromFormatParser} to a parse a date in this format. This * can be used to optimize cases where many dates need to be parsed in a * specific format. * * @param {String} fmt - the format the string is expected to be in (see * description) * @param {Object} options - options used to set locale and numberingSystem * for parser * @returns {TokenParser} - opaque object to be used */ static buildFormatParser(fmt, options = {}) { const { locale = null, numberingSystem = null } = options, localeToUse = Locale.fromOpts({ locale, numberingSystem, defaultToEN: true }); return new TokenParser(localeToUse, fmt); } /** * Create a DateTime from an input string and format parser. * * The format parser must have been created with the same locale as this call. * * @param {String} text - the string to parse * @param {TokenParser} formatParser - parser from {@link DateTime.buildFormatParser} * @param {Object} opts - options taken by fromFormat() * @returns {DateTime} */ static fromFormatParser(text2, formatParser, opts = {}) { if (isUndefined2(text2) || isUndefined2(formatParser)) { throw new InvalidArgumentError("fromFormatParser requires an input string and a format parser"); } const { locale = null, numberingSystem = null } = opts, localeToUse = Locale.fromOpts({ locale, numberingSystem, defaultToEN: true }); if (!localeToUse.equals(formatParser.locale)) { throw new InvalidArgumentError(`fromFormatParser called with a locale of ${localeToUse}, but the format parser was created for ${formatParser.locale}`); } const { result, zone, specificOffset, invalidReason } = formatParser.explainFromTokens(text2); if (invalidReason) { return _DateTime.invalid(invalidReason); } else { return parseDataToDateTime(result, zone, opts, `format ${formatParser.format}`, text2, specificOffset); } } // FORMAT PRESETS /** * {@link DateTime#toLocaleString} format like 10/14/1983 * @type {Object} */ static get DATE_SHORT() { return DATE_SHORT; } /** * {@link DateTime#toLocaleString} format like 'Oct 14, 1983' * @type {Object} */ static get DATE_MED() { return DATE_MED; } /** * {@link DateTime#toLocaleString} format like 'Fri, Oct 14, 1983' * @type {Object} */ static get DATE_MED_WITH_WEEKDAY() { return DATE_MED_WITH_WEEKDAY; } /** * {@link DateTime#toLocaleString} format like 'October 14, 1983' * @type {Object} */ static get DATE_FULL() { return DATE_FULL; } /** * {@link DateTime#toLocaleString} format like 'Tuesday, October 14, 1983' * @type {Object} */ static get DATE_HUGE() { return DATE_HUGE; } /** * {@link DateTime#toLocaleString} format like '09:30 AM'. Only 12-hour if the locale is. * @type {Object} */ static get TIME_SIMPLE() { return TIME_SIMPLE; } /** * {@link DateTime#toLocaleString} format like '09:30:23 AM'. Only 12-hour if the locale is. * @type {Object} */ static get TIME_WITH_SECONDS() { return TIME_WITH_SECONDS; } /** * {@link DateTime#toLocaleString} format like '09:30:23 AM EDT'. Only 12-hour if the locale is. * @type {Object} */ static get TIME_WITH_SHORT_OFFSET() { return TIME_WITH_SHORT_OFFSET; } /** * {@link DateTime#toLocaleString} format like '09:30:23 AM Eastern Daylight Time'. Only 12-hour if the locale is. * @type {Object} */ static get TIME_WITH_LONG_OFFSET() { return TIME_WITH_LONG_OFFSET; } /** * {@link DateTime#toLocaleString} format like '09:30', always 24-hour. * @type {Object} */ static get TIME_24_SIMPLE() { return TIME_24_SIMPLE; } /** * {@link DateTime#toLocaleString} format like '09:30:23', always 24-hour. * @type {Object} */ static get TIME_24_WITH_SECONDS() { return TIME_24_WITH_SECONDS; } /** * {@link DateTime#toLocaleString} format like '09:30:23 EDT', always 24-hour. * @type {Object} */ static get TIME_24_WITH_SHORT_OFFSET() { return TIME_24_WITH_SHORT_OFFSET; } /** * {@link DateTime#toLocaleString} format like '09:30:23 Eastern Daylight Time', always 24-hour. * @type {Object} */ static get TIME_24_WITH_LONG_OFFSET() { return TIME_24_WITH_LONG_OFFSET; } /** * {@link DateTime#toLocaleString} format like '10/14/1983, 9:30 AM'. Only 12-hour if the locale is. * @type {Object} */ static get DATETIME_SHORT() { return DATETIME_SHORT; } /** * {@link DateTime#toLocaleString} format like '10/14/1983, 9:30:33 AM'. Only 12-hour if the locale is. * @type {Object} */ static get DATETIME_SHORT_WITH_SECONDS() { return DATETIME_SHORT_WITH_SECONDS; } /** * {@link DateTime#toLocaleString} format like 'Oct 14, 1983, 9:30 AM'. Only 12-hour if the locale is. * @type {Object} */ static get DATETIME_MED() { return DATETIME_MED; } /** * {@link DateTime#toLocaleString} format like 'Oct 14, 1983, 9:30:33 AM'. Only 12-hour if the locale is. * @type {Object} */ static get DATETIME_MED_WITH_SECONDS() { return DATETIME_MED_WITH_SECONDS; } /** * {@link DateTime#toLocaleString} format like 'Fri, 14 Oct 1983, 9:30 AM'. Only 12-hour if the locale is. * @type {Object} */ static get DATETIME_MED_WITH_WEEKDAY() { return DATETIME_MED_WITH_WEEKDAY; } /** * {@link DateTime#toLocaleString} format like 'October 14, 1983, 9:30 AM EDT'. Only 12-hour if the locale is. * @type {Object} */ static get DATETIME_FULL() { return DATETIME_FULL; } /** * {@link DateTime#toLocaleString} format like 'October 14, 1983, 9:30:33 AM EDT'. Only 12-hour if the locale is. * @type {Object} */ static get DATETIME_FULL_WITH_SECONDS() { return DATETIME_FULL_WITH_SECONDS; } /** * {@link DateTime#toLocaleString} format like 'Friday, October 14, 1983, 9:30 AM Eastern Daylight Time'. Only 12-hour if the locale is. * @type {Object} */ static get DATETIME_HUGE() { return DATETIME_HUGE; } /** * {@link DateTime#toLocaleString} format like 'Friday, October 14, 1983, 9:30:33 AM Eastern Daylight Time'. Only 12-hour if the locale is. * @type {Object} */ static get DATETIME_HUGE_WITH_SECONDS() { return DATETIME_HUGE_WITH_SECONDS; } }; function friendlyDateTime(dateTimeish) { if (DateTime.isDateTime(dateTimeish)) { return dateTimeish; } else if (dateTimeish && dateTimeish.valueOf && isNumber3(dateTimeish.valueOf())) { return DateTime.fromJSDate(dateTimeish); } else if (dateTimeish && typeof dateTimeish === "object") { return DateTime.fromObject(dateTimeish); } else { throw new InvalidArgumentError(`Unknown datetime argument: ${dateTimeish}, of type ${typeof dateTimeish}`); } } __name(friendlyDateTime, "friendlyDateTime"); var VERSION3 = "3.7.2"; exports.DateTime = DateTime; exports.Duration = Duration; exports.FixedOffsetZone = FixedOffsetZone; exports.IANAZone = IANAZone; exports.Info = Info; exports.Interval = Interval; exports.InvalidZone = InvalidZone; exports.Settings = Settings; exports.SystemZone = SystemZone; exports.VERSION = VERSION3; exports.Zone = Zone; } }); // ../../node_modules/cron-parser/lib/date.js var require_date = __commonJS({ "../../node_modules/cron-parser/lib/date.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var luxon = require_luxon(); CronDate.prototype.addYear = function() { this._date = this._date.plus({ years: 1 }); }; CronDate.prototype.addMonth = function() { this._date = this._date.plus({ months: 1 }).startOf("month"); }; CronDate.prototype.addDay = function() { this._date = this._date.plus({ days: 1 }).startOf("day"); }; CronDate.prototype.addHour = function() { var prev = this._date; this._date = this._date.plus({ hours: 1 }).startOf("hour"); if (this._date <= prev) { this._date = this._date.plus({ hours: 1 }); } }; CronDate.prototype.addMinute = function() { var prev = this._date; this._date = this._date.plus({ minutes: 1 }).startOf("minute"); if (this._date < prev) { this._date = this._date.plus({ hours: 1 }); } }; CronDate.prototype.addSecond = function() { var prev = this._date; this._date = this._date.plus({ seconds: 1 }).startOf("second"); if (this._date < prev) { this._date = this._date.plus({ hours: 1 }); } }; CronDate.prototype.subtractYear = function() { this._date = this._date.minus({ years: 1 }); }; CronDate.prototype.subtractMonth = function() { this._date = this._date.minus({ months: 1 }).endOf("month").startOf("second"); }; CronDate.prototype.subtractDay = function() { this._date = this._date.minus({ days: 1 }).endOf("day").startOf("second"); }; CronDate.prototype.subtractHour = function() { var prev = this._date; this._date = this._date.minus({ hours: 1 }).endOf("hour").startOf("second"); if (this._date >= prev) { this._date = this._date.minus({ hours: 1 }); } }; CronDate.prototype.subtractMinute = function() { var prev = this._date; this._date = this._date.minus({ minutes: 1 }).endOf("minute").startOf("second"); if (this._date > prev) { this._date = this._date.minus({ hours: 1 }); } }; CronDate.prototype.subtractSecond = function() { var prev = this._date; this._date = this._date.minus({ seconds: 1 }).startOf("second"); if (this._date > prev) { this._date = this._date.minus({ hours: 1 }); } }; CronDate.prototype.getDate = function() { return this._date.day; }; CronDate.prototype.getFullYear = function() { return this._date.year; }; CronDate.prototype.getDay = function() { var weekday = this._date.weekday; return weekday == 7 ? 0 : weekday; }; CronDate.prototype.getMonth = function() { return this._date.month - 1; }; CronDate.prototype.getHours = function() { return this._date.hour; }; CronDate.prototype.getMinutes = function() { return this._date.minute; }; CronDate.prototype.getSeconds = function() { return this._date.second; }; CronDate.prototype.getMilliseconds = function() { return this._date.millisecond; }; CronDate.prototype.getTime = function() { return this._date.valueOf(); }; CronDate.prototype.getUTCDate = function() { return this._getUTC().day; }; CronDate.prototype.getUTCFullYear = function() { return this._getUTC().year; }; CronDate.prototype.getUTCDay = function() { var weekday = this._getUTC().weekday; return weekday == 7 ? 0 : weekday; }; CronDate.prototype.getUTCMonth = function() { return this._getUTC().month - 1; }; CronDate.prototype.getUTCHours = function() { return this._getUTC().hour; }; CronDate.prototype.getUTCMinutes = function() { return this._getUTC().minute; }; CronDate.prototype.getUTCSeconds = function() { return this._getUTC().second; }; CronDate.prototype.toISOString = function() { return this._date.toUTC().toISO(); }; CronDate.prototype.toJSON = function() { return this._date.toJSON(); }; CronDate.prototype.setDate = function(d) { this._date = this._date.set({ day: d }); }; CronDate.prototype.setFullYear = function(y) { this._date = this._date.set({ year: y }); }; CronDate.prototype.setDay = function(d) { this._date = this._date.set({ weekday: d }); }; CronDate.prototype.setMonth = function(m) { this._date = this._date.set({ month: m + 1 }); }; CronDate.prototype.setHours = function(h) { this._date = this._date.set({ hour: h }); }; CronDate.prototype.setMinutes = function(m) { this._date = this._date.set({ minute: m }); }; CronDate.prototype.setSeconds = function(s) { this._date = this._date.set({ second: s }); }; CronDate.prototype.setMilliseconds = function(s) { this._date = this._date.set({ millisecond: s }); }; CronDate.prototype._getUTC = function() { return this._date.toUTC(); }; CronDate.prototype.toString = function() { return this.toDate().toString(); }; CronDate.prototype.toDate = function() { return this._date.toJSDate(); }; CronDate.prototype.isLastDayOfMonth = function() { var newDate = this._date.plus({ days: 1 }).startOf("day"); return this._date.month !== newDate.month; }; CronDate.prototype.isLastWeekdayOfMonth = function() { var newDate = this._date.plus({ days: 7 }).startOf("day"); return this._date.month !== newDate.month; }; function CronDate(timestamp, tz) { var dateOpts = { zone: tz }; if (!timestamp) { this._date = luxon.DateTime.local(); } else if (timestamp instanceof CronDate) { this._date = timestamp._date; } else if (timestamp instanceof Date) { this._date = luxon.DateTime.fromJSDate(timestamp, dateOpts); } else if (typeof timestamp === "number") { this._date = luxon.DateTime.fromMillis(timestamp, dateOpts); } else if (typeof timestamp === "string") { this._date = luxon.DateTime.fromISO(timestamp, dateOpts); this._date.isValid || (this._date = luxon.DateTime.fromRFC2822(timestamp, dateOpts)); this._date.isValid || (this._date = luxon.DateTime.fromSQL(timestamp, dateOpts)); this._date.isValid || (this._date = luxon.DateTime.fromFormat(timestamp, "EEE, d MMM yyyy HH:mm:ss", dateOpts)); } if (!this._date || !this._date.isValid) { throw new Error("CronDate: unhandled timestamp: " + JSON.stringify(timestamp)); } if (tz && tz !== this._date.zoneName) { this._date = this._date.setZone(tz); } } __name(CronDate, "CronDate"); module2.exports = CronDate; } }); // ../../node_modules/cron-parser/lib/field_compactor.js var require_field_compactor = __commonJS({ "../../node_modules/cron-parser/lib/field_compactor.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); function buildRange(item) { return { start: item, count: 1 }; } __name(buildRange, "buildRange"); function completeRangeWithItem(range, item) { range.end = item; range.step = item - range.start; range.count = 2; } __name(completeRangeWithItem, "completeRangeWithItem"); function finalizeCurrentRange(results, currentRange, currentItemRange) { if (currentRange) { if (currentRange.count === 2) { results.push(buildRange(currentRange.start)); results.push(buildRange(currentRange.end)); } else { results.push(currentRange); } } if (currentItemRange) { results.push(currentItemRange); } } __name(finalizeCurrentRange, "finalizeCurrentRange"); function compactField(arr) { var results = []; var currentRange = void 0; for (var i = 0; i < arr.length; i++) { var currentItem = arr[i]; if (typeof currentItem !== "number") { finalizeCurrentRange(results, currentRange, buildRange(currentItem)); currentRange = void 0; } else if (!currentRange) { currentRange = buildRange(currentItem); } else if (currentRange.count === 1) { completeRangeWithItem(currentRange, currentItem); } else { if (currentRange.step === currentItem - currentRange.end) { currentRange.count++; currentRange.end = currentItem; } else if (currentRange.count === 2) { results.push(buildRange(currentRange.start)); currentRange = buildRange(currentRange.end); completeRangeWithItem(currentRange, currentItem); } else { finalizeCurrentRange(results, currentRange); currentRange = buildRange(currentItem); } } } finalizeCurrentRange(results, currentRange); return results; } __name(compactField, "compactField"); module2.exports = compactField; } }); // ../../node_modules/cron-parser/lib/field_stringify.js var require_field_stringify = __commonJS({ "../../node_modules/cron-parser/lib/field_stringify.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var compactField = require_field_compactor(); function stringifyField(arr, min, max2) { var ranges = compactField(arr); if (ranges.length === 1) { var singleRange = ranges[0]; var step = singleRange.step; if (step === 1 && singleRange.start === min && singleRange.end === max2) { return "*"; } if (step !== 1 && singleRange.start === min && singleRange.end === max2 - step + 1) { return "*/" + step; } } var result = []; for (var i = 0, l = ranges.length; i < l; ++i) { var range = ranges[i]; if (range.count === 1) { result.push(range.start); continue; } var step = range.step; if (range.step === 1) { result.push(range.start + "-" + range.end); continue; } var multiplier = range.start == 0 ? range.count - 1 : range.count; if (range.step * multiplier > range.end) { result = result.concat( Array.from({ length: range.end - range.start + 1 }).map(function(_, index) { var value = range.start + index; if ((value - range.start) % range.step === 0) { return value; } return null; }).filter(function(value) { return value != null; }) ); } else if (range.end === max2 - range.step + 1) { result.push(range.start + "/" + range.step); } else { result.push(range.start + "-" + range.end + "/" + range.step); } } return result.join(","); } __name(stringifyField, "stringifyField"); module2.exports = stringifyField; } }); // ../../node_modules/cron-parser/lib/expression.js var require_expression = __commonJS({ "../../node_modules/cron-parser/lib/expression.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var CronDate = require_date(); var stringifyField = require_field_stringify(); var LOOP_LIMIT = 1e4; function CronExpression(fields, options) { this._options = options; this._utc = options.utc || false; this._tz = this._utc ? "UTC" : options.tz; this._currentDate = new CronDate(options.currentDate, this._tz); this._startDate = options.startDate ? new CronDate(options.startDate, this._tz) : null; this._endDate = options.endDate ? new CronDate(options.endDate, this._tz) : null; this._isIterator = options.iterator || false; this._hasIterated = false; this._nthDayOfWeek = options.nthDayOfWeek || 0; this.fields = CronExpression._freezeFields(fields); } __name(CronExpression, "CronExpression"); CronExpression.map = ["second", "minute", "hour", "dayOfMonth", "month", "dayOfWeek"]; CronExpression.predefined = { "@yearly": "0 0 1 1 *", "@monthly": "0 0 1 * *", "@weekly": "0 0 * * 0", "@daily": "0 0 * * *", "@hourly": "0 * * * *" }; CronExpression.constraints = [ { min: 0, max: 59, chars: [] }, // Second { min: 0, max: 59, chars: [] }, // Minute { min: 0, max: 23, chars: [] }, // Hour { min: 1, max: 31, chars: ["L"] }, // Day of month { min: 1, max: 12, chars: [] }, // Month { min: 0, max: 7, chars: ["L"] } // Day of week ]; CronExpression.daysInMonth = [ 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 ]; CronExpression.aliases = { month: { jan: 1, feb: 2, mar: 3, apr: 4, may: 5, jun: 6, jul: 7, aug: 8, sep: 9, oct: 10, nov: 11, dec: 12 }, dayOfWeek: { sun: 0, mon: 1, tue: 2, wed: 3, thu: 4, fri: 5, sat: 6 } }; CronExpression.parseDefaults = ["0", "*", "*", "*", "*", "*"]; CronExpression.standardValidCharacters = /^[,*\d/-]+$/; CronExpression.dayOfWeekValidCharacters = /^[?,*\dL#/-]+$/; CronExpression.dayOfMonthValidCharacters = /^[?,*\dL/-]+$/; CronExpression.validCharacters = { second: CronExpression.standardValidCharacters, minute: CronExpression.standardValidCharacters, hour: CronExpression.standardValidCharacters, dayOfMonth: CronExpression.dayOfMonthValidCharacters, month: CronExpression.standardValidCharacters, dayOfWeek: CronExpression.dayOfWeekValidCharacters }; CronExpression._isValidConstraintChar = /* @__PURE__ */ __name(function _isValidConstraintChar(constraints, value) { if (typeof value !== "string") { return false; } return constraints.chars.some(function(char) { return value.indexOf(char) > -1; }); }, "_isValidConstraintChar"); CronExpression._parseField = /* @__PURE__ */ __name(function _parseField(field, value, constraints) { switch (field) { case "month": case "dayOfWeek": var aliases = CronExpression.aliases[field]; value = value.replace(/[a-z]{3}/gi, function(match2) { match2 = match2.toLowerCase(); if (typeof aliases[match2] !== "undefined") { return aliases[match2]; } else { throw new Error('Validation error, cannot resolve alias "' + match2 + '"'); } }); break; } if (!CronExpression.validCharacters[field].test(value)) { throw new Error("Invalid characters, got value: " + value); } if (value.indexOf("*") !== -1) { value = value.replace(/\*/g, constraints.min + "-" + constraints.max); } else if (value.indexOf("?") !== -1) { value = value.replace(/\?/g, constraints.min + "-" + constraints.max); } function parseSequence(val) { var stack = []; function handleResult(result) { if (result instanceof Array) { for (var i2 = 0, c2 = result.length; i2 < c2; i2++) { var value2 = result[i2]; if (CronExpression._isValidConstraintChar(constraints, value2)) { stack.push(value2); continue; } if (typeof value2 !== "number" || Number.isNaN(value2) || value2 < constraints.min || value2 > constraints.max) { throw new Error( "Constraint error, got value " + value2 + " expected range " + constraints.min + "-" + constraints.max ); } stack.push(value2); } } else { if (CronExpression._isValidConstraintChar(constraints, result)) { stack.push(result); return; } var numResult = +result; if (Number.isNaN(numResult) || numResult < constraints.min || numResult > constraints.max) { throw new Error( "Constraint error, got value " + result + " expected range " + constraints.min + "-" + constraints.max ); } if (field === "dayOfWeek") { numResult = numResult % 7; } stack.push(numResult); } } __name(handleResult, "handleResult"); var atoms = val.split(","); if (!atoms.every(function(atom) { return atom.length > 0; })) { throw new Error("Invalid list value format"); } if (atoms.length > 1) { for (var i = 0, c = atoms.length; i < c; i++) { handleResult(parseRepeat(atoms[i])); } } else { handleResult(parseRepeat(val)); } stack.sort(CronExpression._sortCompareFn); return stack; } __name(parseSequence, "parseSequence"); function parseRepeat(val) { var repeatInterval = 1; var atoms = val.split("/"); if (atoms.length > 2) { throw new Error("Invalid repeat: " + val); } if (atoms.length > 1) { if (atoms[0] == +atoms[0]) { atoms = [atoms[0] + "-" + constraints.max, atoms[1]]; } return parseRange(atoms[0], atoms[atoms.length - 1]); } return parseRange(val, repeatInterval); } __name(parseRepeat, "parseRepeat"); function parseRange(val, repeatInterval) { var stack = []; var atoms = val.split("-"); if (atoms.length > 1) { if (atoms.length < 2) { return +val; } if (!atoms[0].length) { if (!atoms[1].length) { throw new Error("Invalid range: " + val); } return +val; } var min = +atoms[0]; var max2 = +atoms[1]; if (Number.isNaN(min) || Number.isNaN(max2) || min < constraints.min || max2 > constraints.max) { throw new Error( "Constraint error, got range " + min + "-" + max2 + " expected range " + constraints.min + "-" + constraints.max ); } else if (min > max2) { throw new Error("Invalid range: " + val); } var repeatIndex = +repeatInterval; if (Number.isNaN(repeatIndex) || repeatIndex <= 0) { throw new Error("Constraint error, cannot repeat at every " + repeatIndex + " time."); } if (field === "dayOfWeek" && max2 % 7 === 0) { stack.push(0); } for (var index = min, count4 = max2; index <= count4; index++) { var exists3 = stack.indexOf(index) !== -1; if (!exists3 && repeatIndex > 0 && repeatIndex % repeatInterval === 0) { repeatIndex = 1; stack.push(index); } else { repeatIndex++; } } return stack; } return Number.isNaN(+val) ? val : +val; } __name(parseRange, "parseRange"); return parseSequence(value); }, "_parseField"); CronExpression._sortCompareFn = function(a, b) { var aIsNumber = typeof a === "number"; var bIsNumber = typeof b === "number"; if (aIsNumber && bIsNumber) { return a - b; } if (!aIsNumber && bIsNumber) { return 1; } if (aIsNumber && !bIsNumber) { return -1; } return a.localeCompare(b); }; CronExpression._handleMaxDaysInMonth = function(mappedFields) { if (mappedFields.month.length === 1) { var daysInMonth = CronExpression.daysInMonth[mappedFields.month[0] - 1]; if (mappedFields.dayOfMonth[0] > daysInMonth) { throw new Error("Invalid explicit day of month definition"); } return mappedFields.dayOfMonth.filter(function(dayOfMonth) { return dayOfMonth === "L" ? true : dayOfMonth <= daysInMonth; }).sort(CronExpression._sortCompareFn); } }; CronExpression._freezeFields = function(fields) { for (var i = 0, c = CronExpression.map.length; i < c; ++i) { var field = CronExpression.map[i]; var value = fields[field]; fields[field] = Object.freeze(value); } return Object.freeze(fields); }; CronExpression.prototype._applyTimezoneShift = function(currentDate, dateMathVerb, method) { if (method === "Month" || method === "Day") { var prevTime = currentDate.getTime(); currentDate[dateMathVerb + method](); var currTime = currentDate.getTime(); if (prevTime === currTime) { if (currentDate.getMinutes() === 0 && currentDate.getSeconds() === 0) { currentDate.addHour(); } else if (currentDate.getMinutes() === 59 && currentDate.getSeconds() === 59) { currentDate.subtractHour(); } } } else { var previousHour = currentDate.getHours(); currentDate[dateMathVerb + method](); var currentHour = currentDate.getHours(); var diff = currentHour - previousHour; if (diff === 2) { if (this.fields.hour.length !== 24) { this._dstStart = currentHour; } } else if (diff === 0 && currentDate.getMinutes() === 0 && currentDate.getSeconds() === 0) { if (this.fields.hour.length !== 24) { this._dstEnd = currentHour; } } } }; CronExpression.prototype._findSchedule = /* @__PURE__ */ __name(function _findSchedule(reverse) { function matchSchedule(value, sequence) { for (var i = 0, c = sequence.length; i < c; i++) { if (sequence[i] >= value) { return sequence[i] === value; } } return sequence[0] === value; } __name(matchSchedule, "matchSchedule"); function isNthDayMatch(date5, nthDayOfWeek) { if (nthDayOfWeek < 6) { if (date5.getDate() < 8 && nthDayOfWeek === 1) { return true; } var offset = date5.getDate() % 7 ? 1 : 0; var adjustedDate = date5.getDate() - date5.getDate() % 7; var occurrence = Math.floor(adjustedDate / 7) + offset; return occurrence === nthDayOfWeek; } return false; } __name(isNthDayMatch, "isNthDayMatch"); function isLInExpressions(expressions) { return expressions.length > 0 && expressions.some(function(expression) { return typeof expression === "string" && expression.indexOf("L") >= 0; }); } __name(isLInExpressions, "isLInExpressions"); reverse = reverse || false; var dateMathVerb = reverse ? "subtract" : "add"; var currentDate = new CronDate(this._currentDate, this._tz); var startDate = this._startDate; var endDate = this._endDate; var startTimestamp = currentDate.getTime(); var stepCount = 0; function isLastWeekdayOfMonthMatch(expressions) { return expressions.some(function(expression) { if (!isLInExpressions([expression])) { return false; } var weekday = Number.parseInt(expression[0]) % 7; if (Number.isNaN(weekday)) { throw new Error("Invalid last weekday of the month expression: " + expression); } return currentDate.getDay() === weekday && currentDate.isLastWeekdayOfMonth(); }); } __name(isLastWeekdayOfMonthMatch, "isLastWeekdayOfMonthMatch"); while (stepCount < LOOP_LIMIT) { stepCount++; if (reverse) { if (startDate && currentDate.getTime() - startDate.getTime() < 0) { throw new Error("Out of the timespan range"); } } else { if (endDate && endDate.getTime() - currentDate.getTime() < 0) { throw new Error("Out of the timespan range"); } } var dayOfMonthMatch = matchSchedule(currentDate.getDate(), this.fields.dayOfMonth); if (isLInExpressions(this.fields.dayOfMonth)) { dayOfMonthMatch = dayOfMonthMatch || currentDate.isLastDayOfMonth(); } var dayOfWeekMatch = matchSchedule(currentDate.getDay(), this.fields.dayOfWeek); if (isLInExpressions(this.fields.dayOfWeek)) { dayOfWeekMatch = dayOfWeekMatch || isLastWeekdayOfMonthMatch(this.fields.dayOfWeek); } var isDayOfMonthWildcardMatch = this.fields.dayOfMonth.length >= CronExpression.daysInMonth[currentDate.getMonth()]; var isDayOfWeekWildcardMatch = this.fields.dayOfWeek.length === CronExpression.constraints[5].max - CronExpression.constraints[5].min + 1; var currentHour = currentDate.getHours(); if (!dayOfMonthMatch && (!dayOfWeekMatch || isDayOfWeekWildcardMatch)) { this._applyTimezoneShift(currentDate, dateMathVerb, "Day"); continue; } if (!isDayOfMonthWildcardMatch && isDayOfWeekWildcardMatch && !dayOfMonthMatch) { this._applyTimezoneShift(currentDate, dateMathVerb, "Day"); continue; } if (isDayOfMonthWildcardMatch && !isDayOfWeekWildcardMatch && !dayOfWeekMatch) { this._applyTimezoneShift(currentDate, dateMathVerb, "Day"); continue; } if (this._nthDayOfWeek > 0 && !isNthDayMatch(currentDate, this._nthDayOfWeek)) { this._applyTimezoneShift(currentDate, dateMathVerb, "Day"); continue; } if (!matchSchedule(currentDate.getMonth() + 1, this.fields.month)) { this._applyTimezoneShift(currentDate, dateMathVerb, "Month"); continue; } if (!matchSchedule(currentHour, this.fields.hour)) { if (this._dstStart !== currentHour) { this._dstStart = null; this._applyTimezoneShift(currentDate, dateMathVerb, "Hour"); continue; } else if (!matchSchedule(currentHour - 1, this.fields.hour)) { currentDate[dateMathVerb + "Hour"](); continue; } } else if (this._dstEnd === currentHour) { if (!reverse) { this._dstEnd = null; this._applyTimezoneShift(currentDate, "add", "Hour"); continue; } } if (!matchSchedule(currentDate.getMinutes(), this.fields.minute)) { this._applyTimezoneShift(currentDate, dateMathVerb, "Minute"); continue; } if (!matchSchedule(currentDate.getSeconds(), this.fields.second)) { this._applyTimezoneShift(currentDate, dateMathVerb, "Second"); continue; } if (startTimestamp === currentDate.getTime()) { if (dateMathVerb === "add" || currentDate.getMilliseconds() === 0) { this._applyTimezoneShift(currentDate, dateMathVerb, "Second"); } else { currentDate.setMilliseconds(0); } continue; } break; } if (stepCount >= LOOP_LIMIT) { throw new Error("Invalid expression, loop limit exceeded"); } this._currentDate = new CronDate(currentDate, this._tz); this._hasIterated = true; return currentDate; }, "_findSchedule"); CronExpression.prototype.next = /* @__PURE__ */ __name(function next() { var schedule = this._findSchedule(); if (this._isIterator) { return { value: schedule, done: !this.hasNext() }; } return schedule; }, "next"); CronExpression.prototype.prev = /* @__PURE__ */ __name(function prev() { var schedule = this._findSchedule(true); if (this._isIterator) { return { value: schedule, done: !this.hasPrev() }; } return schedule; }, "prev"); CronExpression.prototype.hasNext = function() { var current = this._currentDate; var hasIterated = this._hasIterated; try { this._findSchedule(); return true; } catch (err) { return false; } finally { this._currentDate = current; this._hasIterated = hasIterated; } }; CronExpression.prototype.hasPrev = function() { var current = this._currentDate; var hasIterated = this._hasIterated; try { this._findSchedule(true); return true; } catch (err) { return false; } finally { this._currentDate = current; this._hasIterated = hasIterated; } }; CronExpression.prototype.iterate = /* @__PURE__ */ __name(function iterate(steps, callback) { var dates = []; if (steps >= 0) { for (var i = 0, c = steps; i < c; i++) { try { var item = this.next(); dates.push(item); if (callback) { callback(item, i); } } catch (err) { break; } } } else { for (var i = 0, c = steps; i > c; i--) { try { var item = this.prev(); dates.push(item); if (callback) { callback(item, i); } } catch (err) { break; } } } return dates; }, "iterate"); CronExpression.prototype.reset = /* @__PURE__ */ __name(function reset(newDate) { this._currentDate = new CronDate(newDate || this._options.currentDate); }, "reset"); CronExpression.prototype.stringify = /* @__PURE__ */ __name(function stringify(includeSeconds) { var resultArr = []; for (var i = includeSeconds ? 0 : 1, c = CronExpression.map.length; i < c; ++i) { var field = CronExpression.map[i]; var value = this.fields[field]; var constraint = CronExpression.constraints[i]; if (field === "dayOfMonth" && this.fields.month.length === 1) { constraint = { min: 1, max: CronExpression.daysInMonth[this.fields.month[0] - 1] }; } else if (field === "dayOfWeek") { constraint = { min: 0, max: 6 }; value = value[value.length - 1] === 7 ? value.slice(0, -1) : value; } resultArr.push(stringifyField(value, constraint.min, constraint.max)); } return resultArr.join(" "); }, "stringify"); CronExpression.parse = /* @__PURE__ */ __name(function parse3(expression, options) { var self2 = this; if (typeof options === "function") { options = {}; } function parse4(expression2, options2) { if (!options2) { options2 = {}; } if (typeof options2.currentDate === "undefined") { options2.currentDate = new CronDate(void 0, self2._tz); } if (CronExpression.predefined[expression2]) { expression2 = CronExpression.predefined[expression2]; } var fields = []; var atoms = (expression2 + "").trim().split(/\s+/); if (atoms.length > 6) { throw new Error("Invalid cron expression"); } var start = CronExpression.map.length - atoms.length; for (var i = 0, c = CronExpression.map.length; i < c; ++i) { var field = CronExpression.map[i]; var value = atoms[atoms.length > c ? i : i - start]; if (i < start || !value) { fields.push( CronExpression._parseField( field, CronExpression.parseDefaults[i], CronExpression.constraints[i] ) ); } else { var val = field === "dayOfWeek" ? parseNthDay(value) : value; fields.push( CronExpression._parseField( field, val, CronExpression.constraints[i] ) ); } } var mappedFields = {}; for (var i = 0, c = CronExpression.map.length; i < c; i++) { var key = CronExpression.map[i]; mappedFields[key] = fields[i]; } var dayOfMonth = CronExpression._handleMaxDaysInMonth(mappedFields); mappedFields.dayOfMonth = dayOfMonth || mappedFields.dayOfMonth; return new CronExpression(mappedFields, options2); function parseNthDay(val2) { var atoms2 = val2.split("#"); if (atoms2.length > 1) { var nthValue = +atoms2[atoms2.length - 1]; if (/,/.test(val2)) { throw new Error("Constraint error, invalid dayOfWeek `#` and `,` special characters are incompatible"); } if (/\//.test(val2)) { throw new Error("Constraint error, invalid dayOfWeek `#` and `/` special characters are incompatible"); } if (/-/.test(val2)) { throw new Error("Constraint error, invalid dayOfWeek `#` and `-` special characters are incompatible"); } if (atoms2.length > 2 || Number.isNaN(nthValue) || (nthValue < 1 || nthValue > 5)) { throw new Error("Constraint error, invalid dayOfWeek occurrence number (#)"); } options2.nthDayOfWeek = nthValue; return atoms2[0]; } return val2; } __name(parseNthDay, "parseNthDay"); } __name(parse4, "parse"); return parse4(expression, options); }, "parse"); CronExpression.fieldsToExpression = /* @__PURE__ */ __name(function fieldsToExpression(fields, options) { function validateConstraints(field2, values2, constraints) { if (!values2) { throw new Error("Validation error, Field " + field2 + " is missing"); } if (values2.length === 0) { throw new Error("Validation error, Field " + field2 + " contains no values"); } for (var i2 = 0, c2 = values2.length; i2 < c2; i2++) { var value = values2[i2]; if (CronExpression._isValidConstraintChar(constraints, value)) { continue; } if (typeof value !== "number" || Number.isNaN(value) || value < constraints.min || value > constraints.max) { throw new Error( "Constraint error, got value " + value + " expected range " + constraints.min + "-" + constraints.max ); } } } __name(validateConstraints, "validateConstraints"); var mappedFields = {}; for (var i = 0, c = CronExpression.map.length; i < c; ++i) { var field = CronExpression.map[i]; var values = fields[field]; validateConstraints( field, values, CronExpression.constraints[i] ); var copy = []; var j = -1; while (++j < values.length) { copy[j] = values[j]; } values = copy.sort(CronExpression._sortCompareFn).filter(function(item, pos, ary) { return !pos || item !== ary[pos - 1]; }); if (values.length !== copy.length) { throw new Error("Validation error, Field " + field + " contains duplicate values"); } mappedFields[field] = values; } var dayOfMonth = CronExpression._handleMaxDaysInMonth(mappedFields); mappedFields.dayOfMonth = dayOfMonth || mappedFields.dayOfMonth; return new CronExpression(mappedFields, options || {}); }, "fieldsToExpression"); module2.exports = CronExpression; } }); // ../../node_modules/cron-parser/lib/parser.js var require_parser2 = __commonJS({ "../../node_modules/cron-parser/lib/parser.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var CronExpression = require_expression(); function CronParser() { } __name(CronParser, "CronParser"); CronParser._parseEntry = /* @__PURE__ */ __name(function _parseEntry(entry) { var atoms = entry.split(" "); if (atoms.length === 6) { return { interval: CronExpression.parse(entry) }; } else if (atoms.length > 6) { return { interval: CronExpression.parse( atoms.slice(0, 6).join(" ") ), command: atoms.slice(6, atoms.length) }; } else { throw new Error("Invalid entry: " + entry); } }, "_parseEntry"); CronParser.parseExpression = /* @__PURE__ */ __name(function parseExpression3(expression, options) { return CronExpression.parse(expression, options); }, "parseExpression"); CronParser.fieldsToExpression = /* @__PURE__ */ __name(function fieldsToExpression(fields, options) { return CronExpression.fieldsToExpression(fields, options); }, "fieldsToExpression"); CronParser.parseString = /* @__PURE__ */ __name(function parseString(data) { var blocks = data.split("\n"); var response = { variables: {}, expressions: [], errors: {} }; for (var i = 0, c = blocks.length; i < c; i++) { var block = blocks[i]; var matches = null; var entry = block.trim(); if (entry.length > 0) { if (entry.match(/^#/)) { continue; } else if (matches = entry.match(/^(.*)=(.*)$/)) { response.variables[matches[1]] = matches[2]; } else { var result = null; try { result = CronParser._parseEntry("0 " + entry); response.expressions.push(result.interval); } catch (err) { response.errors[entry] = err; } } } } return response; }, "parseString"); CronParser.parseFile = /* @__PURE__ */ __name(function parseFile(filePath, callback) { require_fs().readFile(filePath, function(err, data) { if (err) { callback(err); return; } return callback(null, CronParser.parseString(data.toString())); }); }, "parseFile"); module2.exports = CronParser; } }); // ../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/unenv/dist/runtime/npm/node-fetch.mjs var node_fetch_exports = {}; __export(node_fetch_exports, { AbortController: () => AbortController5, AbortError: () => AbortError, FetchError: () => FetchError, Headers: () => Headers2, Request: () => Request2, Response: () => Response2, default: () => node_fetch_default, fetch: () => fetch2, isRedirect: () => isRedirect }); var fetch2, Headers2, Request2, Response2, AbortController5, FetchError, AbortError, redirectStatus, isRedirect, node_fetch_default; var init_node_fetch = __esm({ "../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/unenv/dist/runtime/npm/node-fetch.mjs"() { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); fetch2 = /* @__PURE__ */ __name((...args) => globalThis.fetch(...args), "fetch"); Headers2 = globalThis.Headers; Request2 = globalThis.Request; Response2 = globalThis.Response; AbortController5 = globalThis.AbortController; FetchError = Error; AbortError = Error; redirectStatus = /* @__PURE__ */ new Set([ 301, 302, 303, 307, 308 ]); isRedirect = /* @__PURE__ */ __name((code) => redirectStatus.has(code), "isRedirect"); fetch2.Promise = globalThis.Promise; fetch2.isRedirect = isRedirect; node_fetch_default = fetch2; } }); // required-unenv-alias:node-fetch var require_node_fetch = __commonJS({ "required-unenv-alias:node-fetch"(exports, module2) { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_node_fetch(); module2.exports = Object.entries(node_fetch_exports).filter(([k]) => k !== "default").reduce( (cjs, [k, value]) => Object.defineProperty(cjs, k, { value, enumerable: true }), "default" in node_fetch_exports ? node_fetch_default : {} ); } }); // node-built-in-modules:node:assert import libDefault13 from "node:assert"; var require_node_assert = __commonJS({ "node-built-in-modules:node:assert"(exports, module2) { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); module2.exports = libDefault13; } }); // node-built-in-modules:node:zlib import libDefault14 from "node:zlib"; var require_node_zlib = __commonJS({ "node-built-in-modules:node:zlib"(exports, module2) { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); module2.exports = libDefault14; } }); // ../../node_modules/promise-limit/index.js var require_promise_limit = __commonJS({ "../../node_modules/promise-limit/index.js"(exports, module2) { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); function limiter(count4) { var outstanding = 0; var jobs = []; function remove() { outstanding--; if (outstanding < count4) { dequeue(); } } __name(remove, "remove"); function dequeue() { var job = jobs.shift(); semaphore.queue = jobs.length; if (job) { run2(job.fn).then(job.resolve).catch(job.reject); } } __name(dequeue, "dequeue"); function queue(fn) { return new Promise(function(resolve, reject) { jobs.push({ fn, resolve, reject }); semaphore.queue = jobs.length; }); } __name(queue, "queue"); function run2(fn) { outstanding++; try { return Promise.resolve(fn()).then(function(result) { remove(); return result; }, function(error50) { remove(); throw error50; }); } catch (err) { remove(); return Promise.reject(err); } } __name(run2, "run"); var semaphore = /* @__PURE__ */ __name(function(fn) { if (outstanding >= count4) { return queue(fn); } else { return run2(fn); } }, "semaphore"); return semaphore; } __name(limiter, "limiter"); function map2(items, mapper) { var failed = false; var limit = this; return Promise.all(items.map(function() { var args = arguments; return limit(function() { if (!failed) { return mapper.apply(void 0, args).catch(function(e) { failed = true; throw e; }); } }); })); } __name(map2, "map"); function addExtras(fn) { fn.queue = 0; fn.map = map2; return fn; } __name(addExtras, "addExtras"); module2.exports = function(count4) { if (count4) { return addExtras(limiter(count4)); } else { return addExtras(function(fn) { return fn(); }); } }; } }); // ../../node_modules/err-code/index.js var require_err_code = __commonJS({ "../../node_modules/err-code/index.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); function assign(obj, props) { for (const key in props) { Object.defineProperty(obj, key, { value: props[key], enumerable: true, configurable: true }); } return obj; } __name(assign, "assign"); function createError(err, code, props) { if (!err || typeof err === "string") { throw new TypeError("Please pass an Error to err-code"); } if (!props) { props = {}; } if (typeof code === "object") { props = code; code = void 0; } if (code != null) { props.code = code; } try { return assign(err, props); } catch (_) { props.message = err.message; props.stack = err.stack; const ErrClass = /* @__PURE__ */ __name(function() { }, "ErrClass"); ErrClass.prototype = Object.create(Object.getPrototypeOf(err)); return assign(new ErrClass(), props); } } __name(createError, "createError"); module2.exports = createError; } }); // ../../node_modules/retry/lib/retry_operation.js var require_retry_operation = __commonJS({ "../../node_modules/retry/lib/retry_operation.js"(exports, module2) { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); function RetryOperation(timeouts, options) { if (typeof options === "boolean") { options = { forever: options }; } this._originalTimeouts = JSON.parse(JSON.stringify(timeouts)); this._timeouts = timeouts; this._options = options || {}; this._maxRetryTime = options && options.maxRetryTime || Infinity; this._fn = null; this._errors = []; this._attempts = 1; this._operationTimeout = null; this._operationTimeoutCb = null; this._timeout = null; this._operationStart = null; if (this._options.forever) { this._cachedTimeouts = this._timeouts.slice(0); } } __name(RetryOperation, "RetryOperation"); module2.exports = RetryOperation; RetryOperation.prototype.reset = function() { this._attempts = 1; this._timeouts = this._originalTimeouts; }; RetryOperation.prototype.stop = function() { if (this._timeout) { clearTimeout(this._timeout); } this._timeouts = []; this._cachedTimeouts = null; }; RetryOperation.prototype.retry = function(err) { if (this._timeout) { clearTimeout(this._timeout); } if (!err) { return false; } var currentTime = (/* @__PURE__ */ new Date()).getTime(); if (err && currentTime - this._operationStart >= this._maxRetryTime) { this._errors.unshift(new Error("RetryOperation timeout occurred")); return false; } this._errors.push(err); var timeout = this._timeouts.shift(); if (timeout === void 0) { if (this._cachedTimeouts) { this._errors.splice(this._errors.length - 1, this._errors.length); this._timeouts = this._cachedTimeouts.slice(0); timeout = this._timeouts.shift(); } else { return false; } } var self2 = this; var timer = setTimeout(function() { self2._attempts++; if (self2._operationTimeoutCb) { self2._timeout = setTimeout(function() { self2._operationTimeoutCb(self2._attempts); }, self2._operationTimeout); if (self2._options.unref) { self2._timeout.unref(); } } self2._fn(self2._attempts); }, timeout); if (this._options.unref) { timer.unref(); } return true; }; RetryOperation.prototype.attempt = function(fn, timeoutOps) { this._fn = fn; if (timeoutOps) { if (timeoutOps.timeout) { this._operationTimeout = timeoutOps.timeout; } if (timeoutOps.cb) { this._operationTimeoutCb = timeoutOps.cb; } } var self2 = this; if (this._operationTimeoutCb) { this._timeout = setTimeout(function() { self2._operationTimeoutCb(); }, self2._operationTimeout); } this._operationStart = (/* @__PURE__ */ new Date()).getTime(); this._fn(this._attempts); }; RetryOperation.prototype.try = function(fn) { console.log("Using RetryOperation.try() is deprecated"); this.attempt(fn); }; RetryOperation.prototype.start = function(fn) { console.log("Using RetryOperation.start() is deprecated"); this.attempt(fn); }; RetryOperation.prototype.start = RetryOperation.prototype.try; RetryOperation.prototype.errors = function() { return this._errors; }; RetryOperation.prototype.attempts = function() { return this._attempts; }; RetryOperation.prototype.mainError = function() { if (this._errors.length === 0) { return null; } var counts = {}; var mainError = null; var mainErrorCount = 0; for (var i = 0; i < this._errors.length; i++) { var error50 = this._errors[i]; var message2 = error50.message; var count4 = (counts[message2] || 0) + 1; counts[message2] = count4; if (count4 >= mainErrorCount) { mainError = error50; mainErrorCount = count4; } } return mainError; }; } }); // ../../node_modules/retry/lib/retry.js var require_retry = __commonJS({ "../../node_modules/retry/lib/retry.js"(exports) { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var RetryOperation = require_retry_operation(); exports.operation = function(options) { var timeouts = exports.timeouts(options); return new RetryOperation(timeouts, { forever: options && options.forever, unref: options && options.unref, maxRetryTime: options && options.maxRetryTime }); }; exports.timeouts = function(options) { if (options instanceof Array) { return [].concat(options); } var opts = { retries: 10, factor: 2, minTimeout: 1 * 1e3, maxTimeout: Infinity, randomize: false }; for (var key in options) { opts[key] = options[key]; } if (opts.minTimeout > opts.maxTimeout) { throw new Error("minTimeout is greater than maxTimeout"); } var timeouts = []; for (var i = 0; i < opts.retries; i++) { timeouts.push(this.createTimeout(i, opts)); } if (options && options.forever && !timeouts.length) { timeouts.push(this.createTimeout(i, opts)); } timeouts.sort(function(a, b) { return a - b; }); return timeouts; }; exports.createTimeout = function(attempt, opts) { var random = opts.randomize ? Math.random() + 1 : 1; var timeout = Math.round(random * opts.minTimeout * Math.pow(opts.factor, attempt)); timeout = Math.min(timeout, opts.maxTimeout); return timeout; }; exports.wrap = function(obj, options, methods) { if (options instanceof Array) { methods = options; options = null; } if (!methods) { methods = []; for (var key in obj) { if (typeof obj[key] === "function") { methods.push(key); } } } for (var i = 0; i < methods.length; i++) { var method = methods[i]; var original = obj[method]; obj[method] = (/* @__PURE__ */ __name(function retryWrapper(original2) { var op = exports.operation(options); var args = Array.prototype.slice.call(arguments, 1); var callback = args.pop(); args.push(function(err) { if (op.retry(err)) { return; } if (err) { arguments[0] = op.mainError(); } callback.apply(this, arguments); }); op.attempt(function() { original2.apply(obj, args); }); }, "retryWrapper")).bind(obj, original); obj[method].options = options; } }; } }); // ../../node_modules/retry/index.js var require_retry2 = __commonJS({ "../../node_modules/retry/index.js"(exports, module2) { init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); module2.exports = require_retry(); } }); // ../../node_modules/promise-retry/index.js var require_promise_retry = __commonJS({ "../../node_modules/promise-retry/index.js"(exports, module2) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var errcode = require_err_code(); var retry = require_retry2(); var hasOwn = Object.prototype.hasOwnProperty; function isRetryError(err) { return err && err.code === "EPROMISERETRY" && hasOwn.call(err, "retried"); } __name(isRetryError, "isRetryError"); function promiseRetry(fn, options) { var temp; var operation; if (typeof fn === "object" && typeof options === "function") { temp = options; options = fn; fn = temp; } operation = retry.operation(options); return new Promise(function(resolve, reject) { operation.attempt(function(number4) { Promise.resolve().then(function() { return fn(function(err) { if (isRetryError(err)) { err = err.retried; } throw errcode(new Error("Retrying"), "EPROMISERETRY", { retried: err }); }, number4); }).then(resolve, function(err) { if (isRetryError(err)) { err = err.retried; if (operation.retry(err || new Error())) { return; } } reject(err); }); }); }); } __name(promiseRetry, "promiseRetry"); module2.exports = promiseRetry; } }); // node_modules/expo-server-sdk/build/ExpoClientValues.js var require_ExpoClientValues = __commonJS({ "node_modules/expo-server-sdk/build/ExpoClientValues.js"(exports) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); Object.defineProperty(exports, "__esModule", { value: true }); exports.requestRetryMinTimeout = exports.defaultConcurrentRequestLimit = exports.pushNotificationReceiptChunkLimit = exports.pushNotificationChunkLimit = exports.getReceiptsApiUrl = exports.sendApiUrl = void 0; var baseUrl = process.env["EXPO_BASE_URL"] || "https://exp.host"; exports.sendApiUrl = `${baseUrl}/--/api/v2/push/send`; exports.getReceiptsApiUrl = `${baseUrl}/--/api/v2/push/getReceipts`; exports.pushNotificationChunkLimit = 100; exports.pushNotificationReceiptChunkLimit = 300; exports.defaultConcurrentRequestLimit = 6; exports.requestRetryMinTimeout = 1e3; } }); // node_modules/expo-server-sdk/package.json var require_package = __commonJS({ "node_modules/expo-server-sdk/package.json"(exports, module2) { module2.exports = { name: "expo-server-sdk", version: "4.0.0", description: "Server-side library for working with Expo using Node.js", main: "build/ExpoClient.js", types: "build/ExpoClient.d.ts", files: [ "build" ], engines: { node: ">=20" }, scripts: { build: "yarn prepack", lint: "eslint", prepack: "tsc --project tsconfig.build.json", test: "jest", tsc: "tsc", watch: "tsc --watch" }, jest: { coverageDirectory: "/../coverage", coverageThreshold: { global: { branches: 100, functions: 100, lines: 100, statements: 0 } }, preset: "ts-jest", rootDir: "src", testEnvironment: "node" }, repository: { type: "git", url: "git+https://github.com/expo/expo-server-sdk-node.git" }, keywords: [ "expo", "push-notifications" ], author: "support@expo.dev", license: "MIT", bugs: { url: "https://github.com/expo/expo-server-sdk-node/issues" }, homepage: "https://github.com/expo/expo-server-sdk-node#readme", dependencies: { "node-fetch": "^2.6.0", "promise-limit": "^2.7.0", "promise-retry": "^2.0.1" }, devDependencies: { "@tsconfig/node20": "20.1.6", "@tsconfig/strictest": "2.0.5", "@types/node": "22.17.2", "@types/node-fetch": "2.6.12", "@types/promise-retry": "1.1.6", eslint: "9.33.0", "eslint-config-universe": "15.0.3", jest: "29.7.0", jiti: "2.4.2", msw: "2.10.5", prettier: "3.6.2", "ts-jest": "29.4.1", typescript: "5.9.2" }, packageManager: "yarn@4.9.2" }; } }); // node_modules/expo-server-sdk/build/ExpoClient.js var require_ExpoClient = __commonJS({ "node_modules/expo-server-sdk/build/ExpoClient.js"(exports) { "use strict"; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) { if (k2 === void 0) k2 = k; var desc2 = Object.getOwnPropertyDescriptor(m, k); if (!desc2 || ("get" in desc2 ? !m.__esModule : desc2.writable || desc2.configurable)) { desc2 = { enumerable: true, get: /* @__PURE__ */ __name(function() { return m[k]; }, "get") }; } Object.defineProperty(o, k2, desc2); }) : (function(o, m, k, k2) { if (k2 === void 0) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = exports && exports.__setModuleDefault || (Object.create ? (function(o, v2) { Object.defineProperty(o, "default", { enumerable: true, value: v2 }); }) : function(o, v2) { o["default"] = v2; }); var __importStar = exports && exports.__importStar || /* @__PURE__ */ (function() { var ownKeys = /* @__PURE__ */ __name(function(o) { ownKeys = Object.getOwnPropertyNames || function(o2) { var ar = []; for (var k in o2) if (Object.prototype.hasOwnProperty.call(o2, k)) ar[ar.length] = k; return ar; }; return ownKeys(o); }, "ownKeys"); return function(mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) { for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); } __setModuleDefault(result, mod); return result; }; })(); var __importDefault = exports && exports.__importDefault || function(mod) { return mod && mod.__esModule ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.Expo = void 0; var node_fetch_1 = __importStar(require_node_fetch()); var node_assert_1 = __importDefault(require_node_assert()); var node_zlib_1 = require_node_zlib(); var promise_limit_1 = __importDefault(require_promise_limit()); var promise_retry_1 = __importDefault(require_promise_retry()); var ExpoClientValues_1 = require_ExpoClientValues(); var Expo2 = class _Expo { static { __name(this, "Expo"); } static pushNotificationChunkSizeLimit = ExpoClientValues_1.pushNotificationChunkLimit; static pushNotificationReceiptChunkSizeLimit = ExpoClientValues_1.pushNotificationReceiptChunkLimit; httpAgent; limitConcurrentRequests; accessToken; useFcmV1; retryMinTimeout; constructor(options = {}) { this.httpAgent = options.httpAgent; this.limitConcurrentRequests = (0, promise_limit_1.default)(options.maxConcurrentRequests ?? ExpoClientValues_1.defaultConcurrentRequestLimit); this.retryMinTimeout = options.retryMinTimeout ?? ExpoClientValues_1.requestRetryMinTimeout; this.accessToken = options.accessToken; this.useFcmV1 = options.useFcmV1; } /** * Returns `true` if the token is an Expo push token */ static isExpoPushToken(token) { return typeof token === "string" && ((token.startsWith("ExponentPushToken[") || token.startsWith("ExpoPushToken[")) && token.endsWith("]") || /^[a-z\d]{8}-[a-z\d]{4}-[a-z\d]{4}-[a-z\d]{4}-[a-z\d]{12}$/i.test(token)); } /** * Sends the given messages to their recipients via push notifications and returns an array of * push tickets. Each ticket corresponds to the message at its respective index (the nth receipt * is for the nth message) and contains a receipt ID. Later, after Expo attempts to deliver the * messages to the underlying push notification services, the receipts with those IDs will be * available for a period of time (approximately a day). * * There is a limit on the number of push notifications you can send at once. Use * `chunkPushNotifications` to divide an array of push notification messages into appropriately * sized chunks. */ async sendPushNotificationsAsync(messages) { const url2 = new URL(ExpoClientValues_1.sendApiUrl); if (this.useFcmV1 === false) { url2.searchParams.append("useFcmV1", String(this.useFcmV1)); } const actualMessagesCount = _Expo._getActualMessageCount(messages); const data = await this.limitConcurrentRequests(async () => { return await (0, promise_retry_1.default)(async (retry) => { try { return await this.requestAsync(url2.toString(), { httpMethod: "post", body: messages, shouldCompress(body) { return body.length > 1024; } }); } catch (e) { if (e.statusCode === 429) { return retry(e); } throw e; } }, { retries: 2, factor: 2, minTimeout: this.retryMinTimeout }); }); if (!Array.isArray(data) || data.length !== actualMessagesCount) { const apiError = new Error(`Expected Expo to respond with ${actualMessagesCount} ${actualMessagesCount === 1 ? "ticket" : "tickets"} but got ${data.length}`); apiError["data"] = data; throw apiError; } return data; } async getPushNotificationReceiptsAsync(receiptIds) { const data = await this.requestAsync(ExpoClientValues_1.getReceiptsApiUrl, { httpMethod: "post", body: { ids: receiptIds }, shouldCompress(body) { return body.length > 1024; } }); if (!data || typeof data !== "object" || Array.isArray(data)) { const apiError = new Error(`Expected Expo to respond with a map from receipt IDs to receipts but received data of another type`); apiError["data"] = data; throw apiError; } return data; } chunkPushNotifications(messages) { const chunks = []; let chunk = []; let chunkMessagesCount = 0; for (const message2 of messages) { if (Array.isArray(message2.to)) { let partialTo = []; for (const recipient of message2.to) { partialTo.push(recipient); chunkMessagesCount++; if (chunkMessagesCount >= ExpoClientValues_1.pushNotificationChunkLimit) { chunk.push({ ...message2, to: partialTo }); chunks.push(chunk); chunk = []; chunkMessagesCount = 0; partialTo = []; } } if (partialTo.length) { chunk.push({ ...message2, to: partialTo }); } } else { chunk.push(message2); chunkMessagesCount++; } if (chunkMessagesCount >= ExpoClientValues_1.pushNotificationChunkLimit) { chunks.push(chunk); chunk = []; chunkMessagesCount = 0; } } if (chunkMessagesCount) { chunks.push(chunk); } return chunks; } chunkPushNotificationReceiptIds(receiptIds) { return this.chunkItems(receiptIds, ExpoClientValues_1.pushNotificationReceiptChunkLimit); } chunkItems(items, chunkSize) { const chunks = []; let chunk = []; for (const item of items) { chunk.push(item); if (chunk.length >= chunkSize) { chunks.push(chunk); chunk = []; } } if (chunk.length) { chunks.push(chunk); } return chunks; } async requestAsync(url2, options) { let requestBody; const sdkVersion = require_package().version; const requestHeaders = new node_fetch_1.Headers({ Accept: "application/json", "Accept-Encoding": "gzip, deflate", "User-Agent": `expo-server-sdk-node/${sdkVersion}` }); if (this.accessToken) { requestHeaders.set("Authorization", `Bearer ${this.accessToken}`); } if (options.body != null) { const json2 = JSON.stringify(options.body); (0, node_assert_1.default)(json2 != null, `JSON request body must not be null`); if (options.shouldCompress(json2)) { requestBody = (0, node_zlib_1.gzipSync)(Buffer.from(json2)); requestHeaders.set("Content-Encoding", "gzip"); } else { requestBody = json2; } requestHeaders.set("Content-Type", "application/json"); } const response = await (0, node_fetch_1.default)(url2, { method: options.httpMethod, body: requestBody, headers: requestHeaders, agent: this.httpAgent }); if (response.status !== 200) { const apiError = await this.parseErrorResponseAsync(response); throw apiError; } const textBody = await response.text(); let result; try { result = JSON.parse(textBody); } catch { const apiError = await this.getTextResponseErrorAsync(response, textBody); throw apiError; } if (result.errors) { const apiError = this.getErrorFromResult(response, result); throw apiError; } return result.data; } async parseErrorResponseAsync(response) { const textBody = await response.text(); let result; try { result = JSON.parse(textBody); } catch { return await this.getTextResponseErrorAsync(response, textBody); } if (!result.errors || !Array.isArray(result.errors) || !result.errors.length) { const apiError = await this.getTextResponseErrorAsync(response, textBody); apiError["errorData"] = result; return apiError; } return this.getErrorFromResult(response, result); } async getTextResponseErrorAsync(response, text2) { const apiError = new Error(`Expo responded with an error with status code ${response.status}: ` + text2); apiError["statusCode"] = response.status; apiError["errorText"] = text2; return apiError; } /** * Returns an error for the first API error in the result, with an optional `others` field that * contains any other errors. */ getErrorFromResult(response, result) { const noErrorsMessage = `Expected at least one error from Expo`; (0, node_assert_1.default)(result.errors, noErrorsMessage); const [errorData, ...otherErrorData] = result.errors; node_assert_1.default.ok(errorData, noErrorsMessage); const error50 = this.getErrorFromResultError(errorData); if (otherErrorData.length) { error50["others"] = otherErrorData.map((data) => this.getErrorFromResultError(data)); } error50["statusCode"] = response.status; return error50; } /** * Returns an error for a single API error */ getErrorFromResultError(errorData) { const error50 = new Error(errorData.message); error50["code"] = errorData.code; if (errorData.details != null) { error50["details"] = errorData.details; } if (errorData.stack != null) { error50["serverStack"] = errorData.stack; } return error50; } static _getActualMessageCount(messages) { return messages.reduce((total, message2) => { if (Array.isArray(message2.to)) { total += message2.to.length; } else { total++; } return total; }, 0); } }; exports.Expo = Expo2; exports.default = Expo2; } }); // .wrangler/tmp/bundle-rJ86wI/middleware-loader.entry.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // .wrangler/tmp/bundle-rJ86wI/middleware-insertion-facade.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // worker.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // src/app.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/hono/dist/index.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/hono/dist/hono.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/hono/dist/hono-base.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/hono/dist/compose.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var compose = /* @__PURE__ */ __name((middleware2, onError, onNotFound) => { return (context2, next) => { let index = -1; return dispatch(0); async function dispatch(i) { if (i <= index) { throw new Error("next() called multiple times"); } index = i; let res; let isError = false; let handler; if (middleware2[i]) { handler = middleware2[i][0][0]; context2.req.routeIndex = i; } else { handler = i === middleware2.length && next || void 0; } if (handler) { try { res = await handler(context2, () => dispatch(i + 1)); } catch (err) { if (err instanceof Error && onError) { context2.error = err; res = await onError(err, context2); isError = true; } else { throw err; } } } else { if (context2.finalized === false && onNotFound) { res = await onNotFound(context2); } } if (res && (context2.finalized === false || isError)) { context2.res = res; } return context2; } __name(dispatch, "dispatch"); }; }, "compose"); // ../../node_modules/hono/dist/context.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/hono/dist/request.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/hono/dist/http-exception.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/hono/dist/request/constants.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var GET_MATCH_RESULT = /* @__PURE__ */ Symbol(); // ../../node_modules/hono/dist/utils/body.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var parseBody = /* @__PURE__ */ __name(async (request, options = /* @__PURE__ */ Object.create(null)) => { const { all: all3 = false, dot = false } = options; const headers = request instanceof HonoRequest ? request.raw.headers : request.headers; const contentType = headers.get("Content-Type"); if (contentType?.startsWith("multipart/form-data") || contentType?.startsWith("application/x-www-form-urlencoded")) { return parseFormData(request, { all: all3, dot }); } return {}; }, "parseBody"); async function parseFormData(request, options) { const formData = await request.formData(); if (formData) { return convertFormDataToBodyData(formData, options); } return {}; } __name(parseFormData, "parseFormData"); function convertFormDataToBodyData(formData, options) { const form = /* @__PURE__ */ Object.create(null); formData.forEach((value, key) => { const shouldParseAllValues = options.all || key.endsWith("[]"); if (!shouldParseAllValues) { form[key] = value; } else { handleParsingAllValues(form, key, value); } }); if (options.dot) { Object.entries(form).forEach(([key, value]) => { const shouldParseDotValues = key.includes("."); if (shouldParseDotValues) { handleParsingNestedValues(form, key, value); delete form[key]; } }); } return form; } __name(convertFormDataToBodyData, "convertFormDataToBodyData"); var handleParsingAllValues = /* @__PURE__ */ __name((form, key, value) => { if (form[key] !== void 0) { if (Array.isArray(form[key])) { ; form[key].push(value); } else { form[key] = [form[key], value]; } } else { if (!key.endsWith("[]")) { form[key] = value; } else { form[key] = [value]; } } }, "handleParsingAllValues"); var handleParsingNestedValues = /* @__PURE__ */ __name((form, key, value) => { if (/(?:^|\.)__proto__\./.test(key)) { return; } let nestedForm = form; const keys = key.split("."); keys.forEach((key2, index) => { if (index === keys.length - 1) { nestedForm[key2] = value; } else { if (!nestedForm[key2] || typeof nestedForm[key2] !== "object" || Array.isArray(nestedForm[key2]) || nestedForm[key2] instanceof File) { nestedForm[key2] = /* @__PURE__ */ Object.create(null); } nestedForm = nestedForm[key2]; } }); }, "handleParsingNestedValues"); // ../../node_modules/hono/dist/utils/url.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var splitPath = /* @__PURE__ */ __name((path3) => { const paths = path3.split("/"); if (paths[0] === "") { paths.shift(); } return paths; }, "splitPath"); var splitRoutingPath = /* @__PURE__ */ __name((routePath2) => { const { groups, path: path3 } = extractGroupsFromPath(routePath2); const paths = splitPath(path3); return replaceGroupMarks(paths, groups); }, "splitRoutingPath"); var extractGroupsFromPath = /* @__PURE__ */ __name((path3) => { const groups = []; path3 = path3.replace(/\{[^}]+\}/g, (match2, index) => { const mark = `@${index}`; groups.push([mark, match2]); return mark; }); return { groups, path: path3 }; }, "extractGroupsFromPath"); var replaceGroupMarks = /* @__PURE__ */ __name((paths, groups) => { for (let i = groups.length - 1; i >= 0; i--) { const [mark] = groups[i]; for (let j = paths.length - 1; j >= 0; j--) { if (paths[j].includes(mark)) { paths[j] = paths[j].replace(mark, groups[i][1]); break; } } } return paths; }, "replaceGroupMarks"); var patternCache = {}; var getPattern = /* @__PURE__ */ __name((label, next) => { if (label === "*") { return "*"; } const match2 = label.match(/^\:([^\{\}]+)(?:\{(.+)\})?$/); if (match2) { const cacheKey = `${label}#${next}`; if (!patternCache[cacheKey]) { if (match2[2]) { patternCache[cacheKey] = next && next[0] !== ":" && next[0] !== "*" ? [cacheKey, match2[1], new RegExp(`^${match2[2]}(?=/${next})`)] : [label, match2[1], new RegExp(`^${match2[2]}$`)]; } else { patternCache[cacheKey] = [label, match2[1], true]; } } return patternCache[cacheKey]; } return null; }, "getPattern"); var tryDecode = /* @__PURE__ */ __name((str, decoder3) => { try { return decoder3(str); } catch { return str.replace(/(?:%[0-9A-Fa-f]{2})+/g, (match2) => { try { return decoder3(match2); } catch { return match2; } }); } }, "tryDecode"); var tryDecodeURI = /* @__PURE__ */ __name((str) => tryDecode(str, decodeURI), "tryDecodeURI"); var getPath = /* @__PURE__ */ __name((request) => { const url2 = request.url; const start = url2.indexOf("/", url2.indexOf(":") + 4); let i = start; for (; i < url2.length; i++) { const charCode = url2.charCodeAt(i); if (charCode === 37) { const queryIndex = url2.indexOf("?", i); const hashIndex = url2.indexOf("#", i); const end = queryIndex === -1 ? hashIndex === -1 ? void 0 : hashIndex : hashIndex === -1 ? queryIndex : Math.min(queryIndex, hashIndex); const path3 = url2.slice(start, end); return tryDecodeURI(path3.includes("%25") ? path3.replace(/%25/g, "%2525") : path3); } else if (charCode === 63 || charCode === 35) { break; } } return url2.slice(start, i); }, "getPath"); var getPathNoStrict = /* @__PURE__ */ __name((request) => { const result = getPath(request); return result.length > 1 && result.at(-1) === "/" ? result.slice(0, -1) : result; }, "getPathNoStrict"); var mergePath = /* @__PURE__ */ __name((base, sub, ...rest) => { if (rest.length) { sub = mergePath(sub, ...rest); } return `${base?.[0] === "/" ? "" : "/"}${base}${sub === "/" ? "" : `${base?.at(-1) === "/" ? "" : "/"}${sub?.[0] === "/" ? sub.slice(1) : sub}`}`; }, "mergePath"); var checkOptionalParameter = /* @__PURE__ */ __name((path3) => { if (path3.charCodeAt(path3.length - 1) !== 63 || !path3.includes(":")) { return null; } const segments = path3.split("/"); const results = []; let basePath = ""; segments.forEach((segment) => { if (segment !== "" && !/\:/.test(segment)) { basePath += "/" + segment; } else if (/\:/.test(segment)) { if (/\?/.test(segment)) { if (results.length === 0 && basePath === "") { results.push("/"); } else { results.push(basePath); } const optionalSegment = segment.replace("?", ""); basePath += "/" + optionalSegment; results.push(basePath); } else { basePath += "/" + segment; } } }); return results.filter((v2, i, a) => a.indexOf(v2) === i); }, "checkOptionalParameter"); var _decodeURI = /* @__PURE__ */ __name((value) => { if (!/[%+]/.test(value)) { return value; } if (value.indexOf("+") !== -1) { value = value.replace(/\+/g, " "); } return value.indexOf("%") !== -1 ? tryDecode(value, decodeURIComponent_) : value; }, "_decodeURI"); var _getQueryParam = /* @__PURE__ */ __name((url2, key, multiple) => { let encoded; if (!multiple && key && !/[%+]/.test(key)) { let keyIndex2 = url2.indexOf("?", 8); if (keyIndex2 === -1) { return void 0; } if (!url2.startsWith(key, keyIndex2 + 1)) { keyIndex2 = url2.indexOf(`&${key}`, keyIndex2 + 1); } while (keyIndex2 !== -1) { const trailingKeyCode = url2.charCodeAt(keyIndex2 + key.length + 1); if (trailingKeyCode === 61) { const valueIndex = keyIndex2 + key.length + 2; const endIndex = url2.indexOf("&", valueIndex); return _decodeURI(url2.slice(valueIndex, endIndex === -1 ? void 0 : endIndex)); } else if (trailingKeyCode == 38 || isNaN(trailingKeyCode)) { return ""; } keyIndex2 = url2.indexOf(`&${key}`, keyIndex2 + 1); } encoded = /[%+]/.test(url2); if (!encoded) { return void 0; } } const results = {}; encoded ??= /[%+]/.test(url2); let keyIndex = url2.indexOf("?", 8); while (keyIndex !== -1) { const nextKeyIndex = url2.indexOf("&", keyIndex + 1); let valueIndex = url2.indexOf("=", keyIndex); if (valueIndex > nextKeyIndex && nextKeyIndex !== -1) { valueIndex = -1; } let name = url2.slice( keyIndex + 1, valueIndex === -1 ? nextKeyIndex === -1 ? void 0 : nextKeyIndex : valueIndex ); if (encoded) { name = _decodeURI(name); } keyIndex = nextKeyIndex; if (name === "") { continue; } let value; if (valueIndex === -1) { value = ""; } else { value = url2.slice(valueIndex + 1, nextKeyIndex === -1 ? void 0 : nextKeyIndex); if (encoded) { value = _decodeURI(value); } } if (multiple) { if (!(results[name] && Array.isArray(results[name]))) { results[name] = []; } ; results[name].push(value); } else { results[name] ??= value; } } return key ? results[key] : results; }, "_getQueryParam"); var getQueryParam = _getQueryParam; var getQueryParams = /* @__PURE__ */ __name((url2, key) => { return _getQueryParam(url2, key, true); }, "getQueryParams"); var decodeURIComponent_ = decodeURIComponent; // ../../node_modules/hono/dist/request.js var tryDecodeURIComponent = /* @__PURE__ */ __name((str) => tryDecode(str, decodeURIComponent_), "tryDecodeURIComponent"); var HonoRequest = class { static { __name(this, "HonoRequest"); } /** * `.raw` can get the raw Request object. * * @see {@link https://hono.dev/docs/api/request#raw} * * @example * ```ts * // For Cloudflare Workers * app.post('/', async (c) => { * const metadata = c.req.raw.cf?.hostMetadata? * ... * }) * ``` */ raw; #validatedData; // Short name of validatedData #matchResult; routeIndex = 0; /** * `.path` can get the pathname of the request. * * @see {@link https://hono.dev/docs/api/request#path} * * @example * ```ts * app.get('/about/me', (c) => { * const pathname = c.req.path // `/about/me` * }) * ``` */ path; bodyCache = {}; constructor(request, path3 = "/", matchResult = [[]]) { this.raw = request; this.path = path3; this.#matchResult = matchResult; this.#validatedData = {}; } param(key) { return key ? this.#getDecodedParam(key) : this.#getAllDecodedParams(); } #getDecodedParam(key) { const paramKey = this.#matchResult[0][this.routeIndex][1][key]; const param = this.#getParamValue(paramKey); return param && /\%/.test(param) ? tryDecodeURIComponent(param) : param; } #getAllDecodedParams() { const decoded = {}; const keys = Object.keys(this.#matchResult[0][this.routeIndex][1]); for (const key of keys) { const value = this.#getParamValue(this.#matchResult[0][this.routeIndex][1][key]); if (value !== void 0) { decoded[key] = /\%/.test(value) ? tryDecodeURIComponent(value) : value; } } return decoded; } #getParamValue(paramKey) { return this.#matchResult[1] ? this.#matchResult[1][paramKey] : paramKey; } query(key) { return getQueryParam(this.url, key); } queries(key) { return getQueryParams(this.url, key); } header(name) { if (name) { return this.raw.headers.get(name) ?? void 0; } const headerData = {}; this.raw.headers.forEach((value, key) => { headerData[key] = value; }); return headerData; } async parseBody(options) { return parseBody(this, options); } #cachedBody = /* @__PURE__ */ __name((key) => { const { bodyCache, raw: raw2 } = this; const cachedBody = bodyCache[key]; if (cachedBody) { return cachedBody; } const anyCachedKey = Object.keys(bodyCache)[0]; if (anyCachedKey) { return bodyCache[anyCachedKey].then((body) => { if (anyCachedKey === "json") { body = JSON.stringify(body); } return new Response(body)[key](); }); } return bodyCache[key] = raw2[key](); }, "#cachedBody"); /** * `.json()` can parse Request body of type `application/json` * * @see {@link https://hono.dev/docs/api/request#json} * * @example * ```ts * app.post('/entry', async (c) => { * const body = await c.req.json() * }) * ``` */ json() { return this.#cachedBody("text").then((text2) => JSON.parse(text2)); } /** * `.text()` can parse Request body of type `text/plain` * * @see {@link https://hono.dev/docs/api/request#text} * * @example * ```ts * app.post('/entry', async (c) => { * const body = await c.req.text() * }) * ``` */ text() { return this.#cachedBody("text"); } /** * `.arrayBuffer()` parse Request body as an `ArrayBuffer` * * @see {@link https://hono.dev/docs/api/request#arraybuffer} * * @example * ```ts * app.post('/entry', async (c) => { * const body = await c.req.arrayBuffer() * }) * ``` */ arrayBuffer() { return this.#cachedBody("arrayBuffer"); } /** * Parses the request body as a `Blob`. * @example * ```ts * app.post('/entry', async (c) => { * const body = await c.req.blob(); * }); * ``` * @see https://hono.dev/docs/api/request#blob */ blob() { return this.#cachedBody("blob"); } /** * Parses the request body as `FormData`. * @example * ```ts * app.post('/entry', async (c) => { * const body = await c.req.formData(); * }); * ``` * @see https://hono.dev/docs/api/request#formdata */ formData() { return this.#cachedBody("formData"); } /** * Adds validated data to the request. * * @param target - The target of the validation. * @param data - The validated data to add. */ addValidatedData(target2, data) { this.#validatedData[target2] = data; } valid(target2) { return this.#validatedData[target2]; } /** * `.url()` can get the request url strings. * * @see {@link https://hono.dev/docs/api/request#url} * * @example * ```ts * app.get('/about/me', (c) => { * const url = c.req.url // `http://localhost:8787/about/me` * ... * }) * ``` */ get url() { return this.raw.url; } /** * `.method()` can get the method name of the request. * * @see {@link https://hono.dev/docs/api/request#method} * * @example * ```ts * app.get('/about/me', (c) => { * const method = c.req.method // `GET` * }) * ``` */ get method() { return this.raw.method; } get [GET_MATCH_RESULT]() { return this.#matchResult; } /** * `.matchedRoutes()` can return a matched route in the handler * * @deprecated * * Use matchedRoutes helper defined in "hono/route" instead. * * @see {@link https://hono.dev/docs/api/request#matchedroutes} * * @example * ```ts * app.use('*', async function logger(c, next) { * await next() * c.req.matchedRoutes.forEach(({ handler, method, path }, i) => { * const name = handler.name || (handler.length < 2 ? '[handler]' : '[middleware]') * console.log( * method, * ' ', * path, * ' '.repeat(Math.max(10 - path.length, 0)), * name, * i === c.req.routeIndex ? '<- respond from here' : '' * ) * }) * }) * ``` */ get matchedRoutes() { return this.#matchResult[0].map(([[, route]]) => route); } /** * `routePath()` can retrieve the path registered within the handler * * @deprecated * * Use routePath helper defined in "hono/route" instead. * * @see {@link https://hono.dev/docs/api/request#routepath} * * @example * ```ts * app.get('/posts/:id', (c) => { * return c.json({ path: c.req.routePath }) * }) * ``` */ get routePath() { return this.#matchResult[0].map(([[, route]]) => route)[this.routeIndex].path; } }; // ../../node_modules/hono/dist/utils/html.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var HtmlEscapedCallbackPhase = { Stringify: 1, BeforeStream: 2, Stream: 3 }; var raw = /* @__PURE__ */ __name((value, callbacks) => { const escapedString = new String(value); escapedString.isEscaped = true; escapedString.callbacks = callbacks; return escapedString; }, "raw"); var resolveCallback = /* @__PURE__ */ __name(async (str, phase, preserveCallbacks, context2, buffer) => { if (typeof str === "object" && !(str instanceof String)) { if (!(str instanceof Promise)) { str = str.toString(); } if (str instanceof Promise) { str = await str; } } const callbacks = str.callbacks; if (!callbacks?.length) { return Promise.resolve(str); } if (buffer) { buffer[0] += str; } else { buffer = [str]; } const resStr = Promise.all(callbacks.map((c) => c({ phase, buffer, context: context2 }))).then( (res) => Promise.all( res.filter(Boolean).map((str2) => resolveCallback(str2, phase, false, context2, buffer)) ).then(() => buffer[0]) ); if (preserveCallbacks) { return raw(await resStr, callbacks); } else { return resStr; } }, "resolveCallback"); // ../../node_modules/hono/dist/context.js var TEXT_PLAIN = "text/plain; charset=UTF-8"; var setDefaultContentType = /* @__PURE__ */ __name((contentType, headers) => { return { "Content-Type": contentType, ...headers }; }, "setDefaultContentType"); var createResponseInstance = /* @__PURE__ */ __name((body, init) => new Response(body, init), "createResponseInstance"); var Context = class { static { __name(this, "Context"); } #rawRequest; #req; /** * `.env` can get bindings (environment variables, secrets, KV namespaces, D1 database, R2 bucket etc.) in Cloudflare Workers. * * @see {@link https://hono.dev/docs/api/context#env} * * @example * ```ts * // Environment object for Cloudflare Workers * app.get('*', async c => { * const counter = c.env.COUNTER * }) * ``` */ env = {}; #var; finalized = false; /** * `.error` can get the error object from the middleware if the Handler throws an error. * * @see {@link https://hono.dev/docs/api/context#error} * * @example * ```ts * app.use('*', async (c, next) => { * await next() * if (c.error) { * // do something... * } * }) * ``` */ error; #status; #executionCtx; #res; #layout; #renderer; #notFoundHandler; #preparedHeaders; #matchResult; #path; /** * Creates an instance of the Context class. * * @param req - The Request object. * @param options - Optional configuration options for the context. */ constructor(req, options) { this.#rawRequest = req; if (options) { this.#executionCtx = options.executionCtx; this.env = options.env; this.#notFoundHandler = options.notFoundHandler; this.#path = options.path; this.#matchResult = options.matchResult; } } /** * `.req` is the instance of {@link HonoRequest}. */ get req() { this.#req ??= new HonoRequest(this.#rawRequest, this.#path, this.#matchResult); return this.#req; } /** * @see {@link https://hono.dev/docs/api/context#event} * The FetchEvent associated with the current request. * * @throws Will throw an error if the context does not have a FetchEvent. */ get event() { if (this.#executionCtx && "respondWith" in this.#executionCtx) { return this.#executionCtx; } else { throw Error("This context has no FetchEvent"); } } /** * @see {@link https://hono.dev/docs/api/context#executionctx} * The ExecutionContext associated with the current request. * * @throws Will throw an error if the context does not have an ExecutionContext. */ get executionCtx() { if (this.#executionCtx) { return this.#executionCtx; } else { throw Error("This context has no ExecutionContext"); } } /** * @see {@link https://hono.dev/docs/api/context#res} * The Response object for the current request. */ get res() { return this.#res ||= createResponseInstance(null, { headers: this.#preparedHeaders ??= new Headers() }); } /** * Sets the Response object for the current request. * * @param _res - The Response object to set. */ set res(_res) { if (this.#res && _res) { _res = createResponseInstance(_res.body, _res); for (const [k, v2] of this.#res.headers.entries()) { if (k === "content-type") { continue; } if (k === "set-cookie") { const cookies = this.#res.headers.getSetCookie(); _res.headers.delete("set-cookie"); for (const cookie of cookies) { _res.headers.append("set-cookie", cookie); } } else { _res.headers.set(k, v2); } } } this.#res = _res; this.finalized = true; } /** * `.render()` can create a response within a layout. * * @see {@link https://hono.dev/docs/api/context#render-setrenderer} * * @example * ```ts * app.get('/', (c) => { * return c.render('Hello!') * }) * ``` */ render = /* @__PURE__ */ __name((...args) => { this.#renderer ??= (content52) => this.html(content52); return this.#renderer(...args); }, "render"); /** * Sets the layout for the response. * * @param layout - The layout to set. * @returns The layout function. */ setLayout = /* @__PURE__ */ __name((layout) => this.#layout = layout, "setLayout"); /** * Gets the current layout for the response. * * @returns The current layout function. */ getLayout = /* @__PURE__ */ __name(() => this.#layout, "getLayout"); /** * `.setRenderer()` can set the layout in the custom middleware. * * @see {@link https://hono.dev/docs/api/context#render-setrenderer} * * @example * ```tsx * app.use('*', async (c, next) => { * c.setRenderer((content) => { * return c.html( * * *

{content}

* * * ) * }) * await next() * }) * ``` */ setRenderer = /* @__PURE__ */ __name((renderer) => { this.#renderer = renderer; }, "setRenderer"); /** * `.header()` can set headers. * * @see {@link https://hono.dev/docs/api/context#header} * * @example * ```ts * app.get('/welcome', (c) => { * // Set headers * c.header('X-Message', 'Hello!') * c.header('Content-Type', 'text/plain') * * return c.body('Thank you for coming') * }) * ``` */ header = /* @__PURE__ */ __name((name, value, options) => { if (this.finalized) { this.#res = createResponseInstance(this.#res.body, this.#res); } const headers = this.#res ? this.#res.headers : this.#preparedHeaders ??= new Headers(); if (value === void 0) { headers.delete(name); } else if (options?.append) { headers.append(name, value); } else { headers.set(name, value); } }, "header"); status = /* @__PURE__ */ __name((status) => { this.#status = status; }, "status"); /** * `.set()` can set the value specified by the key. * * @see {@link https://hono.dev/docs/api/context#set-get} * * @example * ```ts * app.use('*', async (c, next) => { * c.set('message', 'Hono is hot!!') * await next() * }) * ``` */ set = /* @__PURE__ */ __name((key, value) => { this.#var ??= /* @__PURE__ */ new Map(); this.#var.set(key, value); }, "set"); /** * `.get()` can use the value specified by the key. * * @see {@link https://hono.dev/docs/api/context#set-get} * * @example * ```ts * app.get('/', (c) => { * const message = c.get('message') * return c.text(`The message is "${message}"`) * }) * ``` */ get = /* @__PURE__ */ __name((key) => { return this.#var ? this.#var.get(key) : void 0; }, "get"); /** * `.var` can access the value of a variable. * * @see {@link https://hono.dev/docs/api/context#var} * * @example * ```ts * const result = c.var.client.oneMethod() * ``` */ // c.var.propName is a read-only get var() { if (!this.#var) { return {}; } return Object.fromEntries(this.#var); } #newResponse(data, arg, headers) { const responseHeaders = this.#res ? new Headers(this.#res.headers) : this.#preparedHeaders ?? new Headers(); if (typeof arg === "object" && "headers" in arg) { const argHeaders = arg.headers instanceof Headers ? arg.headers : new Headers(arg.headers); for (const [key, value] of argHeaders) { if (key.toLowerCase() === "set-cookie") { responseHeaders.append(key, value); } else { responseHeaders.set(key, value); } } } if (headers) { for (const [k, v2] of Object.entries(headers)) { if (typeof v2 === "string") { responseHeaders.set(k, v2); } else { responseHeaders.delete(k); for (const v22 of v2) { responseHeaders.append(k, v22); } } } } const status = typeof arg === "number" ? arg : arg?.status ?? this.#status; return createResponseInstance(data, { status, headers: responseHeaders }); } newResponse = /* @__PURE__ */ __name((...args) => this.#newResponse(...args), "newResponse"); /** * `.body()` can return the HTTP response. * You can set headers with `.header()` and set HTTP status code with `.status`. * This can also be set in `.text()`, `.json()` and so on. * * @see {@link https://hono.dev/docs/api/context#body} * * @example * ```ts * app.get('/welcome', (c) => { * // Set headers * c.header('X-Message', 'Hello!') * c.header('Content-Type', 'text/plain') * // Set HTTP status code * c.status(201) * * // Return the response body * return c.body('Thank you for coming') * }) * ``` */ body = /* @__PURE__ */ __name((data, arg, headers) => this.#newResponse(data, arg, headers), "body"); /** * `.text()` can render text as `Content-Type:text/plain`. * * @see {@link https://hono.dev/docs/api/context#text} * * @example * ```ts * app.get('/say', (c) => { * return c.text('Hello!') * }) * ``` */ text = /* @__PURE__ */ __name((text2, arg, headers) => { return !this.#preparedHeaders && !this.#status && !arg && !headers && !this.finalized ? new Response(text2) : this.#newResponse( text2, arg, setDefaultContentType(TEXT_PLAIN, headers) ); }, "text"); /** * `.json()` can render JSON as `Content-Type:application/json`. * * @see {@link https://hono.dev/docs/api/context#json} * * @example * ```ts * app.get('/api', (c) => { * return c.json({ message: 'Hello!' }) * }) * ``` */ json = /* @__PURE__ */ __name((object2, arg, headers) => { return this.#newResponse( JSON.stringify(object2), arg, setDefaultContentType("application/json", headers) ); }, "json"); html = /* @__PURE__ */ __name((html, arg, headers) => { const res = /* @__PURE__ */ __name((html2) => this.#newResponse(html2, arg, setDefaultContentType("text/html; charset=UTF-8", headers)), "res"); return typeof html === "object" ? resolveCallback(html, HtmlEscapedCallbackPhase.Stringify, false, {}).then(res) : res(html); }, "html"); /** * `.redirect()` can Redirect, default status code is 302. * * @see {@link https://hono.dev/docs/api/context#redirect} * * @example * ```ts * app.get('/redirect', (c) => { * return c.redirect('/') * }) * app.get('/redirect-permanently', (c) => { * return c.redirect('/', 301) * }) * ``` */ redirect = /* @__PURE__ */ __name((location, status) => { const locationString = String(location); this.header( "Location", // Multibyes should be encoded // eslint-disable-next-line no-control-regex !/[^\x00-\xFF]/.test(locationString) ? locationString : encodeURI(locationString) ); return this.newResponse(null, status ?? 302); }, "redirect"); /** * `.notFound()` can return the Not Found Response. * * @see {@link https://hono.dev/docs/api/context#notfound} * * @example * ```ts * app.get('/notfound', (c) => { * return c.notFound() * }) * ``` */ notFound = /* @__PURE__ */ __name(() => { this.#notFoundHandler ??= () => createResponseInstance(); return this.#notFoundHandler(this); }, "notFound"); }; // ../../node_modules/hono/dist/router.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var METHOD_NAME_ALL = "ALL"; var METHOD_NAME_ALL_LOWERCASE = "all"; var METHODS = ["get", "post", "put", "delete", "options", "patch"]; var MESSAGE_MATCHER_IS_ALREADY_BUILT = "Can not add a route since the matcher is already built."; var UnsupportedPathError = class extends Error { static { __name(this, "UnsupportedPathError"); } }; // ../../node_modules/hono/dist/utils/constants.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var COMPOSED_HANDLER = "__COMPOSED_HANDLER"; // ../../node_modules/hono/dist/hono-base.js var notFoundHandler = /* @__PURE__ */ __name((c) => { return c.text("404 Not Found", 404); }, "notFoundHandler"); var errorHandler = /* @__PURE__ */ __name((err, c) => { if ("getResponse" in err) { const res = err.getResponse(); return c.newResponse(res.body, res); } console.error(err); return c.text("Internal Server Error", 500); }, "errorHandler"); var Hono = class _Hono { static { __name(this, "_Hono"); } get; post; put; delete; options; patch; all; on; use; /* This class is like an abstract class and does not have a router. To use it, inherit the class and implement router in the constructor. */ router; getPath; // Cannot use `#` because it requires visibility at JavaScript runtime. _basePath = "/"; #path = "/"; routes = []; constructor(options = {}) { const allMethods = [...METHODS, METHOD_NAME_ALL_LOWERCASE]; allMethods.forEach((method) => { this[method] = (args1, ...args) => { if (typeof args1 === "string") { this.#path = args1; } else { this.#addRoute(method, this.#path, args1); } args.forEach((handler) => { this.#addRoute(method, this.#path, handler); }); return this; }; }); this.on = (method, path3, ...handlers2) => { for (const p of [path3].flat()) { this.#path = p; for (const m of [method].flat()) { handlers2.map((handler) => { this.#addRoute(m.toUpperCase(), this.#path, handler); }); } } return this; }; this.use = (arg1, ...handlers2) => { if (typeof arg1 === "string") { this.#path = arg1; } else { this.#path = "*"; handlers2.unshift(arg1); } handlers2.forEach((handler) => { this.#addRoute(METHOD_NAME_ALL, this.#path, handler); }); return this; }; const { strict, ...optionsWithoutStrict } = options; Object.assign(this, optionsWithoutStrict); this.getPath = strict ?? true ? options.getPath ?? getPath : getPathNoStrict; } #clone() { const clone2 = new _Hono({ router: this.router, getPath: this.getPath }); clone2.errorHandler = this.errorHandler; clone2.#notFoundHandler = this.#notFoundHandler; clone2.routes = this.routes; return clone2; } #notFoundHandler = notFoundHandler; // Cannot use `#` because it requires visibility at JavaScript runtime. errorHandler = errorHandler; /** * `.route()` allows grouping other Hono instance in routes. * * @see {@link https://hono.dev/docs/api/routing#grouping} * * @param {string} path - base Path * @param {Hono} app - other Hono instance * @returns {Hono} routed Hono instance * * @example * ```ts * const app = new Hono() * const app2 = new Hono() * * app2.get("/user", (c) => c.text("user")) * app.route("/api", app2) // GET /api/user * ``` */ route(path3, app) { const subApp = this.basePath(path3); app.routes.map((r) => { let handler; if (app.errorHandler === errorHandler) { handler = r.handler; } else { handler = /* @__PURE__ */ __name(async (c, next) => (await compose([], app.errorHandler)(c, () => r.handler(c, next))).res, "handler"); handler[COMPOSED_HANDLER] = r.handler; } subApp.#addRoute(r.method, r.path, handler); }); return this; } /** * `.basePath()` allows base paths to be specified. * * @see {@link https://hono.dev/docs/api/routing#base-path} * * @param {string} path - base Path * @returns {Hono} changed Hono instance * * @example * ```ts * const api = new Hono().basePath('/api') * ``` */ basePath(path3) { const subApp = this.#clone(); subApp._basePath = mergePath(this._basePath, path3); return subApp; } /** * `.onError()` handles an error and returns a customized Response. * * @see {@link https://hono.dev/docs/api/hono#error-handling} * * @param {ErrorHandler} handler - request Handler for error * @returns {Hono} changed Hono instance * * @example * ```ts * app.onError((err, c) => { * console.error(`${err}`) * return c.text('Custom Error Message', 500) * }) * ``` */ onError = /* @__PURE__ */ __name((handler) => { this.errorHandler = handler; return this; }, "onError"); /** * `.notFound()` allows you to customize a Not Found Response. * * @see {@link https://hono.dev/docs/api/hono#not-found} * * @param {NotFoundHandler} handler - request handler for not-found * @returns {Hono} changed Hono instance * * @example * ```ts * app.notFound((c) => { * return c.text('Custom 404 Message', 404) * }) * ``` */ notFound = /* @__PURE__ */ __name((handler) => { this.#notFoundHandler = handler; return this; }, "notFound"); /** * `.mount()` allows you to mount applications built with other frameworks into your Hono application. * * @see {@link https://hono.dev/docs/api/hono#mount} * * @param {string} path - base Path * @param {Function} applicationHandler - other Request Handler * @param {MountOptions} [options] - options of `.mount()` * @returns {Hono} mounted Hono instance * * @example * ```ts * import { Router as IttyRouter } from 'itty-router' * import { Hono } from 'hono' * // Create itty-router application * const ittyRouter = IttyRouter() * // GET /itty-router/hello * ittyRouter.get('/hello', () => new Response('Hello from itty-router')) * * const app = new Hono() * app.mount('/itty-router', ittyRouter.handle) * ``` * * @example * ```ts * const app = new Hono() * // Send the request to another application without modification. * app.mount('/app', anotherApp, { * replaceRequest: (req) => req, * }) * ``` */ mount(path3, applicationHandler, options) { let replaceRequest; let optionHandler; if (options) { if (typeof options === "function") { optionHandler = options; } else { optionHandler = options.optionHandler; if (options.replaceRequest === false) { replaceRequest = /* @__PURE__ */ __name((request) => request, "replaceRequest"); } else { replaceRequest = options.replaceRequest; } } } const getOptions = optionHandler ? (c) => { const options2 = optionHandler(c); return Array.isArray(options2) ? options2 : [options2]; } : (c) => { let executionContext = void 0; try { executionContext = c.executionCtx; } catch { } return [c.env, executionContext]; }; replaceRequest ||= (() => { const mergedPath = mergePath(this._basePath, path3); const pathPrefixLength = mergedPath === "/" ? 0 : mergedPath.length; return (request) => { const url2 = new URL(request.url); url2.pathname = url2.pathname.slice(pathPrefixLength) || "/"; return new Request(url2, request); }; })(); const handler = /* @__PURE__ */ __name(async (c, next) => { const res = await applicationHandler(replaceRequest(c.req.raw), ...getOptions(c)); if (res) { return res; } await next(); }, "handler"); this.#addRoute(METHOD_NAME_ALL, mergePath(path3, "*"), handler); return this; } #addRoute(method, path3, handler) { method = method.toUpperCase(); path3 = mergePath(this._basePath, path3); const r = { basePath: this._basePath, path: path3, method, handler }; this.router.add(method, path3, [handler, r]); this.routes.push(r); } #handleError(err, c) { if (err instanceof Error) { return this.errorHandler(err, c); } throw err; } #dispatch(request, executionCtx, env2, method) { if (method === "HEAD") { return (async () => new Response(null, await this.#dispatch(request, executionCtx, env2, "GET")))(); } const path3 = this.getPath(request, { env: env2 }); const matchResult = this.router.match(method, path3); const c = new Context(request, { path: path3, matchResult, env: env2, executionCtx, notFoundHandler: this.#notFoundHandler }); if (matchResult[0].length === 1) { let res; try { res = matchResult[0][0][0][0](c, async () => { c.res = await this.#notFoundHandler(c); }); } catch (err) { return this.#handleError(err, c); } return res instanceof Promise ? res.then( (resolved) => resolved || (c.finalized ? c.res : this.#notFoundHandler(c)) ).catch((err) => this.#handleError(err, c)) : res ?? this.#notFoundHandler(c); } const composed = compose(matchResult[0], this.errorHandler, this.#notFoundHandler); return (async () => { try { const context2 = await composed(c); if (!context2.finalized) { throw new Error( "Context is not finalized. Did you forget to return a Response object or `await next()`?" ); } return context2.res; } catch (err) { return this.#handleError(err, c); } })(); } /** * `.fetch()` will be entry point of your app. * * @see {@link https://hono.dev/docs/api/hono#fetch} * * @param {Request} request - request Object of request * @param {Env} Env - env Object * @param {ExecutionContext} - context of execution * @returns {Response | Promise} response of request * */ fetch = /* @__PURE__ */ __name((request, ...rest) => { return this.#dispatch(request, rest[1], rest[0], request.method); }, "fetch"); /** * `.request()` is a useful method for testing. * You can pass a URL or pathname to send a GET request. * app will return a Response object. * ```ts * test('GET /hello is ok', async () => { * const res = await app.request('/hello') * expect(res.status).toBe(200) * }) * ``` * @see https://hono.dev/docs/api/hono#request */ request = /* @__PURE__ */ __name((input, requestInit, Env, executionCtx) => { if (input instanceof Request) { return this.fetch(requestInit ? new Request(input, requestInit) : input, Env, executionCtx); } input = input.toString(); return this.fetch( new Request( /^https?:\/\//.test(input) ? input : `http://localhost${mergePath("/", input)}`, requestInit ), Env, executionCtx ); }, "request"); /** * `.fire()` automatically adds a global fetch event listener. * This can be useful for environments that adhere to the Service Worker API, such as non-ES module Cloudflare Workers. * @deprecated * Use `fire` from `hono/service-worker` instead. * ```ts * import { Hono } from 'hono' * import { fire } from 'hono/service-worker' * * const app = new Hono() * // ... * fire(app) * ``` * @see https://hono.dev/docs/api/hono#fire * @see https://developer.mozilla.org/en-US/docs/Web/API/Service_Worker_API * @see https://developers.cloudflare.com/workers/reference/migrate-to-module-workers/ */ fire = /* @__PURE__ */ __name(() => { addEventListener("fetch", (event) => { event.respondWith(this.#dispatch(event.request, event, void 0, event.request.method)); }); }, "fire"); }; // ../../node_modules/hono/dist/router/reg-exp-router/index.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/hono/dist/router/reg-exp-router/router.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/hono/dist/router/reg-exp-router/matcher.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var emptyParam = []; function match(method, path3) { const matchers = this.buildAllMatchers(); const match2 = /* @__PURE__ */ __name(((method2, path22) => { const matcher = matchers[method2] || matchers[METHOD_NAME_ALL]; const staticMatch = matcher[2][path22]; if (staticMatch) { return staticMatch; } const match3 = path22.match(matcher[0]); if (!match3) { return [[], emptyParam]; } const index = match3.indexOf("", 1); return [matcher[1][index], match3]; }), "match2"); this.match = match2; return match2(method, path3); } __name(match, "match"); // ../../node_modules/hono/dist/router/reg-exp-router/node.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var LABEL_REG_EXP_STR = "[^/]+"; var ONLY_WILDCARD_REG_EXP_STR = ".*"; var TAIL_WILDCARD_REG_EXP_STR = "(?:|/.*)"; var PATH_ERROR = /* @__PURE__ */ Symbol(); var regExpMetaChars = new Set(".\\+*[^]$()"); function compareKey(a, b) { if (a.length === 1) { return b.length === 1 ? a < b ? -1 : 1 : -1; } if (b.length === 1) { return 1; } if (a === ONLY_WILDCARD_REG_EXP_STR || a === TAIL_WILDCARD_REG_EXP_STR) { return 1; } else if (b === ONLY_WILDCARD_REG_EXP_STR || b === TAIL_WILDCARD_REG_EXP_STR) { return -1; } if (a === LABEL_REG_EXP_STR) { return 1; } else if (b === LABEL_REG_EXP_STR) { return -1; } return a.length === b.length ? a < b ? -1 : 1 : b.length - a.length; } __name(compareKey, "compareKey"); var Node = class _Node { static { __name(this, "_Node"); } #index; #varIndex; #children = /* @__PURE__ */ Object.create(null); insert(tokens, index, paramMap, context2, pathErrorCheckOnly) { if (tokens.length === 0) { if (this.#index !== void 0) { throw PATH_ERROR; } if (pathErrorCheckOnly) { return; } this.#index = index; return; } const [token, ...restTokens] = tokens; const pattern = token === "*" ? restTokens.length === 0 ? ["", "", ONLY_WILDCARD_REG_EXP_STR] : ["", "", LABEL_REG_EXP_STR] : token === "/*" ? ["", "", TAIL_WILDCARD_REG_EXP_STR] : token.match(/^\:([^\{\}]+)(?:\{(.+)\})?$/); let node; if (pattern) { const name = pattern[1]; let regexpStr = pattern[2] || LABEL_REG_EXP_STR; if (name && pattern[2]) { if (regexpStr === ".*") { throw PATH_ERROR; } regexpStr = regexpStr.replace(/^\((?!\?:)(?=[^)]+\)$)/, "(?:"); if (/\((?!\?:)/.test(regexpStr)) { throw PATH_ERROR; } } node = this.#children[regexpStr]; if (!node) { if (Object.keys(this.#children).some( (k) => k !== ONLY_WILDCARD_REG_EXP_STR && k !== TAIL_WILDCARD_REG_EXP_STR )) { throw PATH_ERROR; } if (pathErrorCheckOnly) { return; } node = this.#children[regexpStr] = new _Node(); if (name !== "") { node.#varIndex = context2.varIndex++; } } if (!pathErrorCheckOnly && name !== "") { paramMap.push([name, node.#varIndex]); } } else { node = this.#children[token]; if (!node) { if (Object.keys(this.#children).some( (k) => k.length > 1 && k !== ONLY_WILDCARD_REG_EXP_STR && k !== TAIL_WILDCARD_REG_EXP_STR )) { throw PATH_ERROR; } if (pathErrorCheckOnly) { return; } node = this.#children[token] = new _Node(); } } node.insert(restTokens, index, paramMap, context2, pathErrorCheckOnly); } buildRegExpStr() { const childKeys = Object.keys(this.#children).sort(compareKey); const strList = childKeys.map((k) => { const c = this.#children[k]; return (typeof c.#varIndex === "number" ? `(${k})@${c.#varIndex}` : regExpMetaChars.has(k) ? `\\${k}` : k) + c.buildRegExpStr(); }); if (typeof this.#index === "number") { strList.unshift(`#${this.#index}`); } if (strList.length === 0) { return ""; } if (strList.length === 1) { return strList[0]; } return "(?:" + strList.join("|") + ")"; } }; // ../../node_modules/hono/dist/router/reg-exp-router/trie.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var Trie = class { static { __name(this, "Trie"); } #context = { varIndex: 0 }; #root = new Node(); insert(path3, index, pathErrorCheckOnly) { const paramAssoc = []; const groups = []; for (let i = 0; ; ) { let replaced = false; path3 = path3.replace(/\{[^}]+\}/g, (m) => { const mark = `@\\${i}`; groups[i] = [mark, m]; i++; replaced = true; return mark; }); if (!replaced) { break; } } const tokens = path3.match(/(?::[^\/]+)|(?:\/\*$)|./g) || []; for (let i = groups.length - 1; i >= 0; i--) { const [mark] = groups[i]; for (let j = tokens.length - 1; j >= 0; j--) { if (tokens[j].indexOf(mark) !== -1) { tokens[j] = tokens[j].replace(mark, groups[i][1]); break; } } } this.#root.insert(tokens, index, paramAssoc, this.#context, pathErrorCheckOnly); return paramAssoc; } buildRegExp() { let regexp = this.#root.buildRegExpStr(); if (regexp === "") { return [/^$/, [], []]; } let captureIndex = 0; const indexReplacementMap = []; const paramReplacementMap = []; regexp = regexp.replace(/#(\d+)|@(\d+)|\.\*\$/g, (_, handlerIndex, paramIndex) => { if (handlerIndex !== void 0) { indexReplacementMap[++captureIndex] = Number(handlerIndex); return "$()"; } if (paramIndex !== void 0) { paramReplacementMap[Number(paramIndex)] = ++captureIndex; return ""; } return ""; }); return [new RegExp(`^${regexp}`), indexReplacementMap, paramReplacementMap]; } }; // ../../node_modules/hono/dist/router/reg-exp-router/router.js var nullMatcher = [/^$/, [], /* @__PURE__ */ Object.create(null)]; var wildcardRegExpCache = /* @__PURE__ */ Object.create(null); function buildWildcardRegExp(path3) { return wildcardRegExpCache[path3] ??= new RegExp( path3 === "*" ? "" : `^${path3.replace( /\/\*$|([.\\+*[^\]$()])/g, (_, metaChar) => metaChar ? `\\${metaChar}` : "(?:|/.*)" )}$` ); } __name(buildWildcardRegExp, "buildWildcardRegExp"); function clearWildcardRegExpCache() { wildcardRegExpCache = /* @__PURE__ */ Object.create(null); } __name(clearWildcardRegExpCache, "clearWildcardRegExpCache"); function buildMatcherFromPreprocessedRoutes(routes) { const trie = new Trie(); const handlerData = []; if (routes.length === 0) { return nullMatcher; } const routesWithStaticPathFlag = routes.map( (route) => [!/\*|\/:/.test(route[0]), ...route] ).sort( ([isStaticA, pathA], [isStaticB, pathB]) => isStaticA ? 1 : isStaticB ? -1 : pathA.length - pathB.length ); const staticMap = /* @__PURE__ */ Object.create(null); for (let i = 0, j = -1, len = routesWithStaticPathFlag.length; i < len; i++) { const [pathErrorCheckOnly, path3, handlers2] = routesWithStaticPathFlag[i]; if (pathErrorCheckOnly) { staticMap[path3] = [handlers2.map(([h]) => [h, /* @__PURE__ */ Object.create(null)]), emptyParam]; } else { j++; } let paramAssoc; try { paramAssoc = trie.insert(path3, j, pathErrorCheckOnly); } catch (e) { throw e === PATH_ERROR ? new UnsupportedPathError(path3) : e; } if (pathErrorCheckOnly) { continue; } handlerData[j] = handlers2.map(([h, paramCount]) => { const paramIndexMap = /* @__PURE__ */ Object.create(null); paramCount -= 1; for (; paramCount >= 0; paramCount--) { const [key, value] = paramAssoc[paramCount]; paramIndexMap[key] = value; } return [h, paramIndexMap]; }); } const [regexp, indexReplacementMap, paramReplacementMap] = trie.buildRegExp(); for (let i = 0, len = handlerData.length; i < len; i++) { for (let j = 0, len2 = handlerData[i].length; j < len2; j++) { const map2 = handlerData[i][j]?.[1]; if (!map2) { continue; } const keys = Object.keys(map2); for (let k = 0, len3 = keys.length; k < len3; k++) { map2[keys[k]] = paramReplacementMap[map2[keys[k]]]; } } } const handlerMap = []; for (const i in indexReplacementMap) { handlerMap[i] = handlerData[indexReplacementMap[i]]; } return [regexp, handlerMap, staticMap]; } __name(buildMatcherFromPreprocessedRoutes, "buildMatcherFromPreprocessedRoutes"); function findMiddleware(middleware2, path3) { if (!middleware2) { return void 0; } for (const k of Object.keys(middleware2).sort((a, b) => b.length - a.length)) { if (buildWildcardRegExp(k).test(path3)) { return [...middleware2[k]]; } } return void 0; } __name(findMiddleware, "findMiddleware"); var RegExpRouter = class { static { __name(this, "RegExpRouter"); } name = "RegExpRouter"; #middleware; #routes; constructor() { this.#middleware = { [METHOD_NAME_ALL]: /* @__PURE__ */ Object.create(null) }; this.#routes = { [METHOD_NAME_ALL]: /* @__PURE__ */ Object.create(null) }; } add(method, path3, handler) { const middleware2 = this.#middleware; const routes = this.#routes; if (!middleware2 || !routes) { throw new Error(MESSAGE_MATCHER_IS_ALREADY_BUILT); } if (!middleware2[method]) { ; [middleware2, routes].forEach((handlerMap) => { handlerMap[method] = /* @__PURE__ */ Object.create(null); Object.keys(handlerMap[METHOD_NAME_ALL]).forEach((p) => { handlerMap[method][p] = [...handlerMap[METHOD_NAME_ALL][p]]; }); }); } if (path3 === "/*") { path3 = "*"; } const paramCount = (path3.match(/\/:/g) || []).length; if (/\*$/.test(path3)) { const re = buildWildcardRegExp(path3); if (method === METHOD_NAME_ALL) { Object.keys(middleware2).forEach((m) => { middleware2[m][path3] ||= findMiddleware(middleware2[m], path3) || findMiddleware(middleware2[METHOD_NAME_ALL], path3) || []; }); } else { middleware2[method][path3] ||= findMiddleware(middleware2[method], path3) || findMiddleware(middleware2[METHOD_NAME_ALL], path3) || []; } Object.keys(middleware2).forEach((m) => { if (method === METHOD_NAME_ALL || method === m) { Object.keys(middleware2[m]).forEach((p) => { re.test(p) && middleware2[m][p].push([handler, paramCount]); }); } }); Object.keys(routes).forEach((m) => { if (method === METHOD_NAME_ALL || method === m) { Object.keys(routes[m]).forEach( (p) => re.test(p) && routes[m][p].push([handler, paramCount]) ); } }); return; } const paths = checkOptionalParameter(path3) || [path3]; for (let i = 0, len = paths.length; i < len; i++) { const path22 = paths[i]; Object.keys(routes).forEach((m) => { if (method === METHOD_NAME_ALL || method === m) { routes[m][path22] ||= [ ...findMiddleware(middleware2[m], path22) || findMiddleware(middleware2[METHOD_NAME_ALL], path22) || [] ]; routes[m][path22].push([handler, paramCount - len + i + 1]); } }); } } match = match; buildAllMatchers() { const matchers = /* @__PURE__ */ Object.create(null); Object.keys(this.#routes).concat(Object.keys(this.#middleware)).forEach((method) => { matchers[method] ||= this.#buildMatcher(method); }); this.#middleware = this.#routes = void 0; clearWildcardRegExpCache(); return matchers; } #buildMatcher(method) { const routes = []; let hasOwnRoute = method === METHOD_NAME_ALL; [this.#middleware, this.#routes].forEach((r) => { const ownRoute = r[method] ? Object.keys(r[method]).map((path3) => [path3, r[method][path3]]) : []; if (ownRoute.length !== 0) { hasOwnRoute ||= true; routes.push(...ownRoute); } else if (method !== METHOD_NAME_ALL) { routes.push( ...Object.keys(r[METHOD_NAME_ALL]).map((path3) => [path3, r[METHOD_NAME_ALL][path3]]) ); } }); if (!hasOwnRoute) { return null; } else { return buildMatcherFromPreprocessedRoutes(routes); } } }; // ../../node_modules/hono/dist/router/reg-exp-router/prepared-router.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/hono/dist/router/smart-router/index.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/hono/dist/router/smart-router/router.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var SmartRouter = class { static { __name(this, "SmartRouter"); } name = "SmartRouter"; #routers = []; #routes = []; constructor(init) { this.#routers = init.routers; } add(method, path3, handler) { if (!this.#routes) { throw new Error(MESSAGE_MATCHER_IS_ALREADY_BUILT); } this.#routes.push([method, path3, handler]); } match(method, path3) { if (!this.#routes) { throw new Error("Fatal error"); } const routers = this.#routers; const routes = this.#routes; const len = routers.length; let i = 0; let res; for (; i < len; i++) { const router8 = routers[i]; try { for (let i2 = 0, len2 = routes.length; i2 < len2; i2++) { router8.add(...routes[i2]); } res = router8.match(method, path3); } catch (e) { if (e instanceof UnsupportedPathError) { continue; } throw e; } this.match = router8.match.bind(router8); this.#routers = [router8]; this.#routes = void 0; break; } if (i === len) { throw new Error("Fatal error"); } this.name = `SmartRouter + ${this.activeRouter.name}`; return res; } get activeRouter() { if (this.#routes || this.#routers.length !== 1) { throw new Error("No active router has been determined yet."); } return this.#routers[0]; } }; // ../../node_modules/hono/dist/router/trie-router/index.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/hono/dist/router/trie-router/router.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/hono/dist/router/trie-router/node.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var emptyParams = /* @__PURE__ */ Object.create(null); var hasChildren = /* @__PURE__ */ __name((children) => { for (const _ in children) { return true; } return false; }, "hasChildren"); var Node2 = class _Node2 { static { __name(this, "_Node"); } #methods; #children; #patterns; #order = 0; #params = emptyParams; constructor(method, handler, children) { this.#children = children || /* @__PURE__ */ Object.create(null); this.#methods = []; if (method && handler) { const m = /* @__PURE__ */ Object.create(null); m[method] = { handler, possibleKeys: [], score: 0 }; this.#methods = [m]; } this.#patterns = []; } insert(method, path3, handler) { this.#order = ++this.#order; let curNode = this; const parts = splitRoutingPath(path3); const possibleKeys = []; for (let i = 0, len = parts.length; i < len; i++) { const p = parts[i]; const nextP = parts[i + 1]; const pattern = getPattern(p, nextP); const key = Array.isArray(pattern) ? pattern[0] : p; if (key in curNode.#children) { curNode = curNode.#children[key]; if (pattern) { possibleKeys.push(pattern[1]); } continue; } curNode.#children[key] = new _Node2(); if (pattern) { curNode.#patterns.push(pattern); possibleKeys.push(pattern[1]); } curNode = curNode.#children[key]; } curNode.#methods.push({ [method]: { handler, possibleKeys: possibleKeys.filter((v2, i, a) => a.indexOf(v2) === i), score: this.#order } }); return curNode; } #pushHandlerSets(handlerSets, node, method, nodeParams, params) { for (let i = 0, len = node.#methods.length; i < len; i++) { const m = node.#methods[i]; const handlerSet = m[method] || m[METHOD_NAME_ALL]; const processedSet = {}; if (handlerSet !== void 0) { handlerSet.params = /* @__PURE__ */ Object.create(null); handlerSets.push(handlerSet); if (nodeParams !== emptyParams || params && params !== emptyParams) { for (let i2 = 0, len2 = handlerSet.possibleKeys.length; i2 < len2; i2++) { const key = handlerSet.possibleKeys[i2]; const processed = processedSet[handlerSet.score]; handlerSet.params[key] = params?.[key] && !processed ? params[key] : nodeParams[key] ?? params?.[key]; processedSet[handlerSet.score] = true; } } } } } search(method, path3) { const handlerSets = []; this.#params = emptyParams; const curNode = this; let curNodes = [curNode]; const parts = splitPath(path3); const curNodesQueue = []; const len = parts.length; let partOffsets = null; for (let i = 0; i < len; i++) { const part = parts[i]; const isLast = i === len - 1; const tempNodes = []; for (let j = 0, len2 = curNodes.length; j < len2; j++) { const node = curNodes[j]; const nextNode = node.#children[part]; if (nextNode) { nextNode.#params = node.#params; if (isLast) { if (nextNode.#children["*"]) { this.#pushHandlerSets(handlerSets, nextNode.#children["*"], method, node.#params); } this.#pushHandlerSets(handlerSets, nextNode, method, node.#params); } else { tempNodes.push(nextNode); } } for (let k = 0, len3 = node.#patterns.length; k < len3; k++) { const pattern = node.#patterns[k]; const params = node.#params === emptyParams ? {} : { ...node.#params }; if (pattern === "*") { const astNode = node.#children["*"]; if (astNode) { this.#pushHandlerSets(handlerSets, astNode, method, node.#params); astNode.#params = params; tempNodes.push(astNode); } continue; } const [key, name, matcher] = pattern; if (!part && !(matcher instanceof RegExp)) { continue; } const child = node.#children[key]; if (matcher instanceof RegExp) { if (partOffsets === null) { partOffsets = new Array(len); let offset = path3[0] === "/" ? 1 : 0; for (let p = 0; p < len; p++) { partOffsets[p] = offset; offset += parts[p].length + 1; } } const restPathString = path3.substring(partOffsets[i]); const m = matcher.exec(restPathString); if (m) { params[name] = m[0]; this.#pushHandlerSets(handlerSets, child, method, node.#params, params); if (hasChildren(child.#children)) { child.#params = params; const componentCount = m[0].match(/\//)?.length ?? 0; const targetCurNodes = curNodesQueue[componentCount] ||= []; targetCurNodes.push(child); } continue; } } if (matcher === true || matcher.test(part)) { params[name] = part; if (isLast) { this.#pushHandlerSets(handlerSets, child, method, params, node.#params); if (child.#children["*"]) { this.#pushHandlerSets( handlerSets, child.#children["*"], method, params, node.#params ); } } else { child.#params = params; tempNodes.push(child); } } } } const shifted = curNodesQueue.shift(); curNodes = shifted ? tempNodes.concat(shifted) : tempNodes; } if (handlerSets.length > 1) { handlerSets.sort((a, b) => { return a.score - b.score; }); } return [handlerSets.map(({ handler, params }) => [handler, params])]; } }; // ../../node_modules/hono/dist/router/trie-router/router.js var TrieRouter = class { static { __name(this, "TrieRouter"); } name = "TrieRouter"; #node; constructor() { this.#node = new Node2(); } add(method, path3, handler) { const results = checkOptionalParameter(path3); if (results) { for (let i = 0, len = results.length; i < len; i++) { this.#node.insert(method, results[i], handler); } return; } this.#node.insert(method, path3, handler); } match(method, path3) { return this.#node.search(method, path3); } }; // ../../node_modules/hono/dist/hono.js var Hono2 = class extends Hono { static { __name(this, "Hono"); } /** * Creates an instance of the Hono class. * * @param options - Optional configuration options for the Hono instance. */ constructor(options = {}) { super(options); this.router = options.router ?? new SmartRouter({ routers: [new RegExpRouter(), new TrieRouter()] }); } }; // ../../node_modules/hono/dist/middleware/cors/index.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var cors = /* @__PURE__ */ __name((options) => { const defaults2 = { origin: "*", allowMethods: ["GET", "HEAD", "PUT", "POST", "DELETE", "PATCH"], allowHeaders: [], exposeHeaders: [] }; const opts = { ...defaults2, ...options }; const findAllowOrigin = ((optsOrigin) => { if (typeof optsOrigin === "string") { if (optsOrigin === "*") { if (opts.credentials) { return (origin2) => origin2 || null; } return () => optsOrigin; } else { return (origin2) => optsOrigin === origin2 ? origin2 : null; } } else if (typeof optsOrigin === "function") { return optsOrigin; } else { return (origin2) => optsOrigin.includes(origin2) ? origin2 : null; } })(opts.origin); const findAllowMethods = ((optsAllowMethods) => { if (typeof optsAllowMethods === "function") { return optsAllowMethods; } else if (Array.isArray(optsAllowMethods)) { return () => optsAllowMethods; } else { return () => []; } })(opts.allowMethods); return /* @__PURE__ */ __name(async function cors2(c, next) { function set2(key, value) { c.res.headers.set(key, value); } __name(set2, "set"); const allowOrigin = await findAllowOrigin(c.req.header("origin") || "", c); if (allowOrigin) { set2("Access-Control-Allow-Origin", allowOrigin); } if (opts.credentials) { set2("Access-Control-Allow-Credentials", "true"); } if (opts.exposeHeaders?.length) { set2("Access-Control-Expose-Headers", opts.exposeHeaders.join(",")); } if (c.req.method === "OPTIONS") { if (opts.origin !== "*" || opts.credentials) { set2("Vary", "Origin"); } if (opts.maxAge != null) { set2("Access-Control-Max-Age", opts.maxAge.toString()); } const allowMethods = await findAllowMethods(c.req.header("origin") || "", c); if (allowMethods.length) { set2("Access-Control-Allow-Methods", allowMethods.join(",")); } let headers = opts.allowHeaders; if (!headers?.length) { const requestHeaders = c.req.header("Access-Control-Request-Headers"); if (requestHeaders) { headers = requestHeaders.split(/\s*,\s*/); } } if (headers?.length) { set2("Access-Control-Allow-Headers", headers.join(",")); c.res.headers.append("Vary", "Access-Control-Request-Headers"); } c.res.headers.delete("Content-Length"); c.res.headers.delete("Content-Type"); return new Response(null, { headers: c.res.headers, status: 204, statusText: "No Content" }); } await next(); if (opts.origin !== "*" || opts.credentials) { c.header("Vary", "Origin", { append: true }); } }, "cors2"); }, "cors"); // ../../node_modules/hono/dist/middleware/logger/index.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/hono/dist/utils/color.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); function getColorEnabled() { const { process: process3, Deno } = globalThis; const isNoColor = typeof Deno?.noColor === "boolean" ? Deno.noColor : process3 !== void 0 ? ( // eslint-disable-next-line no-unsafe-optional-chaining "NO_COLOR" in process3?.env ) : false; return !isNoColor; } __name(getColorEnabled, "getColorEnabled"); async function getColorEnabledAsync() { const { navigator: navigator2 } = globalThis; const cfWorkers = "cloudflare:workers"; const isNoColor = navigator2 !== void 0 && navigator2.userAgent === "Cloudflare-Workers" ? await (async () => { try { return "NO_COLOR" in ((await import(cfWorkers)).env ?? {}); } catch { return false; } })() : !getColorEnabled(); return !isNoColor; } __name(getColorEnabledAsync, "getColorEnabledAsync"); // ../../node_modules/hono/dist/middleware/logger/index.js var humanize = /* @__PURE__ */ __name((times) => { const [delimiter, separator] = [",", "."]; const orderTimes = times.map((v2) => v2.replace(/(\d)(?=(\d\d\d)+(?!\d))/g, "$1" + delimiter)); return orderTimes.join(separator); }, "humanize"); var time3 = /* @__PURE__ */ __name((start) => { const delta = Date.now() - start; return humanize([delta < 1e3 ? delta + "ms" : Math.round(delta / 1e3) + "s"]); }, "time"); var colorStatus = /* @__PURE__ */ __name(async (status) => { const colorEnabled = await getColorEnabledAsync(); if (colorEnabled) { switch (status / 100 | 0) { case 5: return `\x1B[31m${status}\x1B[0m`; case 4: return `\x1B[33m${status}\x1B[0m`; case 3: return `\x1B[36m${status}\x1B[0m`; case 2: return `\x1B[32m${status}\x1B[0m`; } } return `${status}`; }, "colorStatus"); async function log3(fn, prefix, method, path3, status = 0, elapsed) { const out = prefix === "<--" ? `${prefix} ${method} ${path3}` : `${prefix} ${method} ${path3} ${await colorStatus(status)} ${elapsed}`; fn(out); } __name(log3, "log"); var logger = /* @__PURE__ */ __name((fn = console.log) => { return /* @__PURE__ */ __name(async function logger22(c, next) { const { method, url: url2 } = c.req; const path3 = url2.slice(url2.indexOf("/", 8)); await log3(fn, "<--", method, path3); const start = Date.now(); await next(); await log3(fn, "-->", method, path3, c.res.status, time3(start)); }, "logger2"); }, "logger"); // ../../node_modules/@hono/trpc-server/dist/index.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/@trpc/server/dist/adapters/fetch/index.mjs init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/@trpc/server/dist/getErrorShape-vC8mUXJD.mjs init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/@trpc/server/dist/codes-DagpWZLc.mjs init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); function mergeWithoutOverrides(obj1, ...objs) { const newObj = Object.assign(emptyObject(), obj1); for (const overrides of objs) for (const key in overrides) { if (key in newObj && newObj[key] !== overrides[key]) throw new Error(`Duplicate key ${key}`); newObj[key] = overrides[key]; } return newObj; } __name(mergeWithoutOverrides, "mergeWithoutOverrides"); function isObject(value) { return !!value && !Array.isArray(value) && typeof value === "object"; } __name(isObject, "isObject"); function isFunction(fn) { return typeof fn === "function"; } __name(isFunction, "isFunction"); function emptyObject() { return /* @__PURE__ */ Object.create(null); } __name(emptyObject, "emptyObject"); var asyncIteratorsSupported = typeof Symbol === "function" && !!Symbol.asyncIterator; function isAsyncIterable(value) { return asyncIteratorsSupported && isObject(value) && Symbol.asyncIterator in value; } __name(isAsyncIterable, "isAsyncIterable"); var run = /* @__PURE__ */ __name((fn) => fn(), "run"); function identity(it) { return it; } __name(identity, "identity"); function abortSignalsAnyPonyfill(signals) { if (typeof AbortSignal.any === "function") return AbortSignal.any(signals); const ac2 = new AbortController(); for (const signal of signals) { if (signal.aborted) { trigger(); break; } signal.addEventListener("abort", trigger, { once: true }); } return ac2.signal; function trigger() { ac2.abort(); for (const signal of signals) signal.removeEventListener("abort", trigger); } __name(trigger, "trigger"); } __name(abortSignalsAnyPonyfill, "abortSignalsAnyPonyfill"); var TRPC_ERROR_CODES_BY_KEY = { PARSE_ERROR: -32700, BAD_REQUEST: -32600, INTERNAL_SERVER_ERROR: -32603, NOT_IMPLEMENTED: -32603, BAD_GATEWAY: -32603, SERVICE_UNAVAILABLE: -32603, GATEWAY_TIMEOUT: -32603, UNAUTHORIZED: -32001, PAYMENT_REQUIRED: -32002, FORBIDDEN: -32003, NOT_FOUND: -32004, METHOD_NOT_SUPPORTED: -32005, TIMEOUT: -32008, CONFLICT: -32009, PRECONDITION_FAILED: -32012, PAYLOAD_TOO_LARGE: -32013, UNSUPPORTED_MEDIA_TYPE: -32015, UNPROCESSABLE_CONTENT: -32022, PRECONDITION_REQUIRED: -32028, TOO_MANY_REQUESTS: -32029, CLIENT_CLOSED_REQUEST: -32099 }; var TRPC_ERROR_CODES_BY_NUMBER = { [-32700]: "PARSE_ERROR", [-32600]: "BAD_REQUEST", [-32603]: "INTERNAL_SERVER_ERROR", [-32001]: "UNAUTHORIZED", [-32002]: "PAYMENT_REQUIRED", [-32003]: "FORBIDDEN", [-32004]: "NOT_FOUND", [-32005]: "METHOD_NOT_SUPPORTED", [-32008]: "TIMEOUT", [-32009]: "CONFLICT", [-32012]: "PRECONDITION_FAILED", [-32013]: "PAYLOAD_TOO_LARGE", [-32015]: "UNSUPPORTED_MEDIA_TYPE", [-32022]: "UNPROCESSABLE_CONTENT", [-32028]: "PRECONDITION_REQUIRED", [-32029]: "TOO_MANY_REQUESTS", [-32099]: "CLIENT_CLOSED_REQUEST" }; var retryableRpcCodes = [ TRPC_ERROR_CODES_BY_KEY.BAD_GATEWAY, TRPC_ERROR_CODES_BY_KEY.SERVICE_UNAVAILABLE, TRPC_ERROR_CODES_BY_KEY.GATEWAY_TIMEOUT, TRPC_ERROR_CODES_BY_KEY.INTERNAL_SERVER_ERROR ]; // ../../node_modules/@trpc/server/dist/getErrorShape-vC8mUXJD.mjs var __create2 = Object.create; var __defProp2 = Object.defineProperty; var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor; var __getOwnPropNames2 = Object.getOwnPropertyNames; var __getProtoOf2 = Object.getPrototypeOf; var __hasOwnProp2 = Object.prototype.hasOwnProperty; var __commonJS2 = /* @__PURE__ */ __name((cb, mod) => function() { return mod || (0, cb[__getOwnPropNames2(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports; }, "__commonJS"); var __copyProps2 = /* @__PURE__ */ __name((to, from, except2, desc2) => { if (from && typeof from === "object" || typeof from === "function") for (var keys = __getOwnPropNames2(from), i = 0, n = keys.length, key; i < n; i++) { key = keys[i]; if (!__hasOwnProp2.call(to, key) && key !== except2) __defProp2(to, key, { get: ((k) => from[k]).bind(null, key), enumerable: !(desc2 = __getOwnPropDesc2(from, key)) || desc2.enumerable }); } return to; }, "__copyProps"); var __toESM2 = /* @__PURE__ */ __name((mod, isNodeMode, target2) => (target2 = mod != null ? __create2(__getProtoOf2(mod)) : {}, __copyProps2(isNodeMode || !mod || !mod.__esModule ? __defProp2(target2, "default", { value: mod, enumerable: true }) : target2, mod)), "__toESM"); var noop = /* @__PURE__ */ __name(() => { }, "noop"); var freezeIfAvailable = /* @__PURE__ */ __name((obj) => { if (Object.freeze) Object.freeze(obj); }, "freezeIfAvailable"); function createInnerProxy(callback, path3, memo2) { var _memo$cacheKey; const cacheKey = path3.join("."); (_memo$cacheKey = memo2[cacheKey]) !== null && _memo$cacheKey !== void 0 || (memo2[cacheKey] = new Proxy(noop, { get(_obj, key) { if (typeof key !== "string" || key === "then") return void 0; return createInnerProxy(callback, [...path3, key], memo2); }, apply(_1, _2, args) { const lastOfPath = path3[path3.length - 1]; let opts = { args, path: path3 }; if (lastOfPath === "call") opts = { args: args.length >= 2 ? [args[1]] : [], path: path3.slice(0, -1) }; else if (lastOfPath === "apply") opts = { args: args.length >= 2 ? args[1] : [], path: path3.slice(0, -1) }; freezeIfAvailable(opts.args); freezeIfAvailable(opts.path); return callback(opts); } })); return memo2[cacheKey]; } __name(createInnerProxy, "createInnerProxy"); var createRecursiveProxy = /* @__PURE__ */ __name((callback) => createInnerProxy(callback, [], emptyObject()), "createRecursiveProxy"); var JSONRPC2_TO_HTTP_CODE = { PARSE_ERROR: 400, BAD_REQUEST: 400, UNAUTHORIZED: 401, PAYMENT_REQUIRED: 402, FORBIDDEN: 403, NOT_FOUND: 404, METHOD_NOT_SUPPORTED: 405, TIMEOUT: 408, CONFLICT: 409, PRECONDITION_FAILED: 412, PAYLOAD_TOO_LARGE: 413, UNSUPPORTED_MEDIA_TYPE: 415, UNPROCESSABLE_CONTENT: 422, PRECONDITION_REQUIRED: 428, TOO_MANY_REQUESTS: 429, CLIENT_CLOSED_REQUEST: 499, INTERNAL_SERVER_ERROR: 500, NOT_IMPLEMENTED: 501, BAD_GATEWAY: 502, SERVICE_UNAVAILABLE: 503, GATEWAY_TIMEOUT: 504 }; function getStatusCodeFromKey(code) { var _JSONRPC2_TO_HTTP_COD; return (_JSONRPC2_TO_HTTP_COD = JSONRPC2_TO_HTTP_CODE[code]) !== null && _JSONRPC2_TO_HTTP_COD !== void 0 ? _JSONRPC2_TO_HTTP_COD : 500; } __name(getStatusCodeFromKey, "getStatusCodeFromKey"); function getHTTPStatusCode(json2) { const arr = Array.isArray(json2) ? json2 : [json2]; const httpStatuses = new Set(arr.map((res) => { if ("error" in res && isObject(res.error.data)) { var _res$error$data; if (typeof ((_res$error$data = res.error.data) === null || _res$error$data === void 0 ? void 0 : _res$error$data["httpStatus"]) === "number") return res.error.data["httpStatus"]; const code = TRPC_ERROR_CODES_BY_NUMBER[res.error.code]; return getStatusCodeFromKey(code); } return 200; })); if (httpStatuses.size !== 1) return 207; const httpStatus = httpStatuses.values().next().value; return httpStatus; } __name(getHTTPStatusCode, "getHTTPStatusCode"); function getHTTPStatusCodeFromError(error50) { return getStatusCodeFromKey(error50.code); } __name(getHTTPStatusCodeFromError, "getHTTPStatusCodeFromError"); var require_typeof = __commonJS2({ "../../node_modules/.pnpm/@oxc-project+runtime@0.72.2/node_modules/@oxc-project/runtime/src/helpers/typeof.js"(exports, module2) { function _typeof$2(o) { "@babel/helpers - typeof"; return module2.exports = _typeof$2 = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(o$1) { return typeof o$1; } : function(o$1) { return o$1 && "function" == typeof Symbol && o$1.constructor === Symbol && o$1 !== Symbol.prototype ? "symbol" : typeof o$1; }, module2.exports.__esModule = true, module2.exports["default"] = module2.exports, _typeof$2(o); } __name(_typeof$2, "_typeof$2"); module2.exports = _typeof$2, module2.exports.__esModule = true, module2.exports["default"] = module2.exports; } }); var require_toPrimitive = __commonJS2({ "../../node_modules/.pnpm/@oxc-project+runtime@0.72.2/node_modules/@oxc-project/runtime/src/helpers/toPrimitive.js"(exports, module2) { var _typeof$1 = require_typeof()["default"]; function toPrimitive$1(t8, r) { if ("object" != _typeof$1(t8) || !t8) return t8; var e = t8[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t8, r || "default"); if ("object" != _typeof$1(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t8); } __name(toPrimitive$1, "toPrimitive$1"); module2.exports = toPrimitive$1, module2.exports.__esModule = true, module2.exports["default"] = module2.exports; } }); var require_toPropertyKey = __commonJS2({ "../../node_modules/.pnpm/@oxc-project+runtime@0.72.2/node_modules/@oxc-project/runtime/src/helpers/toPropertyKey.js"(exports, module2) { var _typeof = require_typeof()["default"]; var toPrimitive = require_toPrimitive(); function toPropertyKey$1(t8) { var i = toPrimitive(t8, "string"); return "symbol" == _typeof(i) ? i : i + ""; } __name(toPropertyKey$1, "toPropertyKey$1"); module2.exports = toPropertyKey$1, module2.exports.__esModule = true, module2.exports["default"] = module2.exports; } }); var require_defineProperty = __commonJS2({ "../../node_modules/.pnpm/@oxc-project+runtime@0.72.2/node_modules/@oxc-project/runtime/src/helpers/defineProperty.js"(exports, module2) { var toPropertyKey = require_toPropertyKey(); function _defineProperty(e, r, t8) { return (r = toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t8, enumerable: true, configurable: true, writable: true }) : e[r] = t8, e; } __name(_defineProperty, "_defineProperty"); module2.exports = _defineProperty, module2.exports.__esModule = true, module2.exports["default"] = module2.exports; } }); var require_objectSpread2 = __commonJS2({ "../../node_modules/.pnpm/@oxc-project+runtime@0.72.2/node_modules/@oxc-project/runtime/src/helpers/objectSpread2.js"(exports, module2) { var defineProperty = require_defineProperty(); function ownKeys(e, r) { var t8 = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function(r$1) { return Object.getOwnPropertyDescriptor(e, r$1).enumerable; })), t8.push.apply(t8, o); } return t8; } __name(ownKeys, "ownKeys"); function _objectSpread2(e) { for (var r = 1; r < arguments.length; r++) { var t8 = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t8), true).forEach(function(r$1) { defineProperty(e, r$1, t8[r$1]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t8)) : ownKeys(Object(t8)).forEach(function(r$1) { Object.defineProperty(e, r$1, Object.getOwnPropertyDescriptor(t8, r$1)); }); } return e; } __name(_objectSpread2, "_objectSpread2"); module2.exports = _objectSpread2, module2.exports.__esModule = true, module2.exports["default"] = module2.exports; } }); var import_objectSpread2 = __toESM2(require_objectSpread2(), 1); function getErrorShape(opts) { const { path: path3, error: error50, config: config3 } = opts; const { code } = opts.error; const shape = { message: error50.message, code: TRPC_ERROR_CODES_BY_KEY[code], data: { code, httpStatus: getHTTPStatusCodeFromError(error50) } }; if (config3.isDev && typeof opts.error.stack === "string") shape.data.stack = opts.error.stack; if (typeof path3 === "string") shape.data.path = path3; return config3.errorFormatter((0, import_objectSpread2.default)((0, import_objectSpread2.default)({}, opts), {}, { shape })); } __name(getErrorShape, "getErrorShape"); // ../../node_modules/@trpc/server/dist/tracked-Bjtgv3wJ.mjs init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var defaultFormatter = /* @__PURE__ */ __name(({ shape }) => { return shape; }, "defaultFormatter"); var import_defineProperty = __toESM2(require_defineProperty(), 1); var UnknownCauseError = class extends Error { static { __name(this, "UnknownCauseError"); } }; function getCauseFromUnknown(cause) { if (cause instanceof Error) return cause; const type = typeof cause; if (type === "undefined" || type === "function" || cause === null) return void 0; if (type !== "object") return new Error(String(cause)); if (isObject(cause)) return Object.assign(new UnknownCauseError(), cause); return void 0; } __name(getCauseFromUnknown, "getCauseFromUnknown"); function getTRPCErrorFromUnknown(cause) { if (cause instanceof TRPCError) return cause; if (cause instanceof Error && cause.name === "TRPCError") return cause; const trpcError = new TRPCError({ code: "INTERNAL_SERVER_ERROR", cause }); if (cause instanceof Error && cause.stack) trpcError.stack = cause.stack; return trpcError; } __name(getTRPCErrorFromUnknown, "getTRPCErrorFromUnknown"); var TRPCError = class extends Error { static { __name(this, "TRPCError"); } constructor(opts) { var _ref, _opts$message, _this$cause; const cause = getCauseFromUnknown(opts.cause); const message2 = (_ref = (_opts$message = opts.message) !== null && _opts$message !== void 0 ? _opts$message : cause === null || cause === void 0 ? void 0 : cause.message) !== null && _ref !== void 0 ? _ref : opts.code; super(message2, { cause }); (0, import_defineProperty.default)(this, "cause", void 0); (0, import_defineProperty.default)(this, "code", void 0); this.code = opts.code; this.name = "TRPCError"; (_this$cause = this.cause) !== null && _this$cause !== void 0 || (this.cause = cause); } }; var import_objectSpread2$1 = __toESM2(require_objectSpread2(), 1); function getDataTransformer(transformer) { if ("input" in transformer) return transformer; return { input: transformer, output: transformer }; } __name(getDataTransformer, "getDataTransformer"); var defaultTransformer = { input: { serialize: /* @__PURE__ */ __name((obj) => obj, "serialize"), deserialize: /* @__PURE__ */ __name((obj) => obj, "deserialize") }, output: { serialize: /* @__PURE__ */ __name((obj) => obj, "serialize"), deserialize: /* @__PURE__ */ __name((obj) => obj, "deserialize") } }; function transformTRPCResponseItem(config3, item) { if ("error" in item) return (0, import_objectSpread2$1.default)((0, import_objectSpread2$1.default)({}, item), {}, { error: config3.transformer.output.serialize(item.error) }); if ("data" in item.result) return (0, import_objectSpread2$1.default)((0, import_objectSpread2$1.default)({}, item), {}, { result: (0, import_objectSpread2$1.default)((0, import_objectSpread2$1.default)({}, item.result), {}, { data: config3.transformer.output.serialize(item.result.data) }) }); return item; } __name(transformTRPCResponseItem, "transformTRPCResponseItem"); function transformTRPCResponse(config3, itemOrItems) { return Array.isArray(itemOrItems) ? itemOrItems.map((item) => transformTRPCResponseItem(config3, item)) : transformTRPCResponseItem(config3, itemOrItems); } __name(transformTRPCResponse, "transformTRPCResponse"); var import_objectSpread22 = __toESM2(require_objectSpread2(), 1); var lazyMarker = "lazyMarker"; function once2(fn) { const uncalled = /* @__PURE__ */ Symbol(); let result = uncalled; return () => { if (result === uncalled) result = fn(); return result; }; } __name(once2, "once"); function isLazy(input) { return typeof input === "function" && lazyMarker in input; } __name(isLazy, "isLazy"); function isRouter(value) { return isObject(value) && isObject(value["_def"]) && "router" in value["_def"]; } __name(isRouter, "isRouter"); var emptyRouter = { _ctx: null, _errorShape: null, _meta: null, queries: {}, mutations: {}, subscriptions: {}, errorFormatter: defaultFormatter, transformer: defaultTransformer }; var reservedWords = [ "then", "call", "apply" ]; function createRouterFactory(config3) { function createRouterInner(input) { const reservedWordsUsed = new Set(Object.keys(input).filter((v2) => reservedWords.includes(v2))); if (reservedWordsUsed.size > 0) throw new Error("Reserved words used in `router({})` call: " + Array.from(reservedWordsUsed).join(", ")); const procedures = emptyObject(); const lazy$1 = emptyObject(); function createLazyLoader(opts) { return { ref: opts.ref, load: once2(async () => { const router$1 = await opts.ref(); const lazyPath = [...opts.path, opts.key]; const lazyKey = lazyPath.join("."); opts.aggregate[opts.key] = step(router$1._def.record, lazyPath); delete lazy$1[lazyKey]; for (const [nestedKey, nestedItem] of Object.entries(router$1._def.lazy)) { const nestedRouterKey = [...lazyPath, nestedKey].join("."); lazy$1[nestedRouterKey] = createLazyLoader({ ref: nestedItem.ref, path: lazyPath, key: nestedKey, aggregate: opts.aggregate[opts.key] }); } }) }; } __name(createLazyLoader, "createLazyLoader"); function step(from, path3 = []) { const aggregate = emptyObject(); for (const [key, item] of Object.entries(from !== null && from !== void 0 ? from : {})) { if (isLazy(item)) { lazy$1[[...path3, key].join(".")] = createLazyLoader({ path: path3, ref: item, key, aggregate }); continue; } if (isRouter(item)) { aggregate[key] = step(item._def.record, [...path3, key]); continue; } if (!isProcedure(item)) { aggregate[key] = step(item, [...path3, key]); continue; } const newPath = [...path3, key].join("."); if (procedures[newPath]) throw new Error(`Duplicate key: ${newPath}`); procedures[newPath] = item; aggregate[key] = item; } return aggregate; } __name(step, "step"); const record2 = step(input); const _def = (0, import_objectSpread22.default)((0, import_objectSpread22.default)({ _config: config3, router: true, procedures, lazy: lazy$1 }, emptyRouter), {}, { record: record2 }); const router8 = (0, import_objectSpread22.default)((0, import_objectSpread22.default)({}, record2), {}, { _def, createCaller: createCallerFactory()({ _def }) }); return router8; } __name(createRouterInner, "createRouterInner"); return createRouterInner; } __name(createRouterFactory, "createRouterFactory"); function isProcedure(procedureOrRouter) { return typeof procedureOrRouter === "function"; } __name(isProcedure, "isProcedure"); async function getProcedureAtPath(router8, path3) { const { _def } = router8; let procedure = _def.procedures[path3]; while (!procedure) { const key = Object.keys(_def.lazy).find((key$1) => path3.startsWith(key$1)); if (!key) return null; const lazyRouter = _def.lazy[key]; await lazyRouter.load(); procedure = _def.procedures[path3]; } return procedure; } __name(getProcedureAtPath, "getProcedureAtPath"); function createCallerFactory() { return /* @__PURE__ */ __name(function createCallerInner(router8) { const { _def } = router8; return /* @__PURE__ */ __name(function createCaller(ctxOrCallback, opts) { return createRecursiveProxy(async (innerOpts) => { const { path: path3, args } = innerOpts; const fullPath = path3.join("."); if (path3.length === 1 && path3[0] === "_def") return _def; const procedure = await getProcedureAtPath(router8, fullPath); let ctx = void 0; try { if (!procedure) throw new TRPCError({ code: "NOT_FOUND", message: `No procedure found on path "${path3}"` }); ctx = isFunction(ctxOrCallback) ? await Promise.resolve(ctxOrCallback()) : ctxOrCallback; return await procedure({ path: fullPath, getRawInput: /* @__PURE__ */ __name(async () => args[0], "getRawInput"), ctx, type: procedure._def.type, signal: opts === null || opts === void 0 ? void 0 : opts.signal, batchIndex: 0 }); } catch (cause) { var _opts$onError, _procedure$_def$type; opts === null || opts === void 0 || (_opts$onError = opts.onError) === null || _opts$onError === void 0 || _opts$onError.call(opts, { ctx, error: getTRPCErrorFromUnknown(cause), input: args[0], path: fullPath, type: (_procedure$_def$type = procedure === null || procedure === void 0 ? void 0 : procedure._def.type) !== null && _procedure$_def$type !== void 0 ? _procedure$_def$type : "unknown" }); throw cause; } }); }, "createCaller"); }, "createCallerInner"); } __name(createCallerFactory, "createCallerFactory"); function mergeRouters(...routerList) { var _routerList$, _routerList$2; const record2 = mergeWithoutOverrides({}, ...routerList.map((r) => r._def.record)); const errorFormatter = routerList.reduce((currentErrorFormatter, nextRouter) => { if (nextRouter._def._config.errorFormatter && nextRouter._def._config.errorFormatter !== defaultFormatter) { if (currentErrorFormatter !== defaultFormatter && currentErrorFormatter !== nextRouter._def._config.errorFormatter) throw new Error("You seem to have several error formatters"); return nextRouter._def._config.errorFormatter; } return currentErrorFormatter; }, defaultFormatter); const transformer = routerList.reduce((prev, current) => { if (current._def._config.transformer && current._def._config.transformer !== defaultTransformer) { if (prev !== defaultTransformer && prev !== current._def._config.transformer) throw new Error("You seem to have several transformers"); return current._def._config.transformer; } return prev; }, defaultTransformer); const router8 = createRouterFactory({ errorFormatter, transformer, isDev: routerList.every((r) => r._def._config.isDev), allowOutsideOfServer: routerList.every((r) => r._def._config.allowOutsideOfServer), isServer: routerList.every((r) => r._def._config.isServer), $types: (_routerList$ = routerList[0]) === null || _routerList$ === void 0 ? void 0 : _routerList$._def._config.$types, sse: (_routerList$2 = routerList[0]) === null || _routerList$2 === void 0 ? void 0 : _routerList$2._def._config.sse })(record2); return router8; } __name(mergeRouters, "mergeRouters"); var trackedSymbol = /* @__PURE__ */ Symbol(); function isTrackedEnvelope(value) { return Array.isArray(value) && value[2] === trackedSymbol; } __name(isTrackedEnvelope, "isTrackedEnvelope"); // ../../node_modules/@trpc/server/dist/resolveResponse-CHqBlAgR.mjs init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/@trpc/server/dist/observable-UMO3vUa_.mjs init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); function isObservable(x) { return typeof x === "object" && x !== null && "subscribe" in x; } __name(isObservable, "isObservable"); function observableToReadableStream(observable$1, signal) { let unsub = null; const onAbort = /* @__PURE__ */ __name(() => { unsub === null || unsub === void 0 || unsub.unsubscribe(); unsub = null; signal.removeEventListener("abort", onAbort); }, "onAbort"); return new ReadableStream({ start(controller) { unsub = observable$1.subscribe({ next(data) { controller.enqueue({ ok: true, value: data }); }, error(error50) { controller.enqueue({ ok: false, error: error50 }); controller.close(); }, complete() { controller.close(); } }); if (signal.aborted) onAbort(); else signal.addEventListener("abort", onAbort, { once: true }); }, cancel() { onAbort(); } }); } __name(observableToReadableStream, "observableToReadableStream"); function observableToAsyncIterable(observable$1, signal) { const stream = observableToReadableStream(observable$1, signal); const reader = stream.getReader(); const iterator2 = { async next() { const value = await reader.read(); if (value.done) return { value: void 0, done: true }; const { value: result } = value; if (!result.ok) throw result.error; return { value: result.value, done: false }; }, async return() { await reader.cancel(); return { value: void 0, done: true }; } }; return { [Symbol.asyncIterator]() { return iterator2; } }; } __name(observableToAsyncIterable, "observableToAsyncIterable"); // ../../node_modules/@trpc/server/dist/resolveResponse-CHqBlAgR.mjs function parseConnectionParamsFromUnknown(parsed) { try { if (parsed === null) return null; if (!isObject(parsed)) throw new Error("Expected object"); const nonStringValues = Object.entries(parsed).filter(([_key2, value]) => typeof value !== "string"); if (nonStringValues.length > 0) throw new Error(`Expected connectionParams to be string values. Got ${nonStringValues.map(([key, value]) => `${key}: ${typeof value}`).join(", ")}`); return parsed; } catch (cause) { throw new TRPCError({ code: "PARSE_ERROR", message: "Invalid connection params shape", cause }); } } __name(parseConnectionParamsFromUnknown, "parseConnectionParamsFromUnknown"); function parseConnectionParamsFromString(str) { let parsed; try { parsed = JSON.parse(str); } catch (cause) { throw new TRPCError({ code: "PARSE_ERROR", message: "Not JSON-parsable query params", cause }); } return parseConnectionParamsFromUnknown(parsed); } __name(parseConnectionParamsFromString, "parseConnectionParamsFromString"); var import_objectSpread2$12 = __toESM2(require_objectSpread2(), 1); function getAcceptHeader(headers) { var _ref, _headers$get; return (_ref = headers.get("trpc-accept")) !== null && _ref !== void 0 ? _ref : ((_headers$get = headers.get("accept")) === null || _headers$get === void 0 ? void 0 : _headers$get.split(",").some((t8) => t8.trim() === "application/jsonl")) ? "application/jsonl" : null; } __name(getAcceptHeader, "getAcceptHeader"); function memo(fn) { let promise2 = null; const sym = /* @__PURE__ */ Symbol.for("@trpc/server/http/memo"); let value = sym; return { read: /* @__PURE__ */ __name(async () => { var _promise2; if (value !== sym) return value; (_promise2 = promise2) !== null && _promise2 !== void 0 || (promise2 = fn().catch((cause) => { if (cause instanceof TRPCError) throw cause; throw new TRPCError({ code: "BAD_REQUEST", message: cause instanceof Error ? cause.message : "Invalid input", cause }); })); value = await promise2; promise2 = null; return value; }, "read"), result: /* @__PURE__ */ __name(() => { return value !== sym ? value : void 0; }, "result") }; } __name(memo, "memo"); var jsonContentTypeHandler = { isMatch(req) { var _req$headers$get; return !!((_req$headers$get = req.headers.get("content-type")) === null || _req$headers$get === void 0 ? void 0 : _req$headers$get.startsWith("application/json")); }, async parse(opts) { var _types$values$next$va; const { req } = opts; const isBatchCall = opts.searchParams.get("batch") === "1"; const paths = isBatchCall ? opts.path.split(",") : [opts.path]; const getInputs = memo(async () => { let inputs = void 0; if (req.method === "GET") { const queryInput = opts.searchParams.get("input"); if (queryInput) inputs = JSON.parse(queryInput); } else inputs = await req.json(); if (inputs === void 0) return emptyObject(); if (!isBatchCall) { const result = emptyObject(); result[0] = opts.router._def._config.transformer.input.deserialize(inputs); return result; } if (!isObject(inputs)) throw new TRPCError({ code: "BAD_REQUEST", message: '"input" needs to be an object when doing a batch call' }); const acc = emptyObject(); for (const index of paths.keys()) { const input = inputs[index]; if (input !== void 0) acc[index] = opts.router._def._config.transformer.input.deserialize(input); } return acc; }); const calls = await Promise.all(paths.map(async (path3, index) => { const procedure = await getProcedureAtPath(opts.router, path3); return { batchIndex: index, path: path3, procedure, getRawInput: /* @__PURE__ */ __name(async () => { const inputs = await getInputs.read(); let input = inputs[index]; if ((procedure === null || procedure === void 0 ? void 0 : procedure._def.type) === "subscription") { var _ref2, _opts$headers$get; const lastEventId = (_ref2 = (_opts$headers$get = opts.headers.get("last-event-id")) !== null && _opts$headers$get !== void 0 ? _opts$headers$get : opts.searchParams.get("lastEventId")) !== null && _ref2 !== void 0 ? _ref2 : opts.searchParams.get("Last-Event-Id"); if (lastEventId) if (isObject(input)) input = (0, import_objectSpread2$12.default)((0, import_objectSpread2$12.default)({}, input), {}, { lastEventId }); else { var _input; (_input = input) !== null && _input !== void 0 || (input = { lastEventId }); } } return input; }, "getRawInput"), result: /* @__PURE__ */ __name(() => { var _getInputs$result; return (_getInputs$result = getInputs.result()) === null || _getInputs$result === void 0 ? void 0 : _getInputs$result[index]; }, "result") }; })); const types = new Set(calls.map((call) => { var _call$procedure; return (_call$procedure = call.procedure) === null || _call$procedure === void 0 ? void 0 : _call$procedure._def.type; }).filter(Boolean)); if (types.size > 1) throw new TRPCError({ code: "BAD_REQUEST", message: `Cannot mix procedure types in call: ${Array.from(types).join(", ")}` }); const type = (_types$values$next$va = types.values().next().value) !== null && _types$values$next$va !== void 0 ? _types$values$next$va : "unknown"; const connectionParamsStr = opts.searchParams.get("connectionParams"); const info3 = { isBatchCall, accept: getAcceptHeader(req.headers), calls, type, connectionParams: connectionParamsStr === null ? null : parseConnectionParamsFromString(connectionParamsStr), signal: req.signal, url: opts.url }; return info3; } }; var formDataContentTypeHandler = { isMatch(req) { var _req$headers$get2; return !!((_req$headers$get2 = req.headers.get("content-type")) === null || _req$headers$get2 === void 0 ? void 0 : _req$headers$get2.startsWith("multipart/form-data")); }, async parse(opts) { const { req } = opts; if (req.method !== "POST") throw new TRPCError({ code: "METHOD_NOT_SUPPORTED", message: "Only POST requests are supported for multipart/form-data requests" }); const getInputs = memo(async () => { const fd = await req.formData(); return fd; }); const procedure = await getProcedureAtPath(opts.router, opts.path); return { accept: null, calls: [{ batchIndex: 0, path: opts.path, getRawInput: getInputs.read, result: getInputs.result, procedure }], isBatchCall: false, type: "mutation", connectionParams: null, signal: req.signal, url: opts.url }; } }; var octetStreamContentTypeHandler = { isMatch(req) { var _req$headers$get3; return !!((_req$headers$get3 = req.headers.get("content-type")) === null || _req$headers$get3 === void 0 ? void 0 : _req$headers$get3.startsWith("application/octet-stream")); }, async parse(opts) { const { req } = opts; if (req.method !== "POST") throw new TRPCError({ code: "METHOD_NOT_SUPPORTED", message: "Only POST requests are supported for application/octet-stream requests" }); const getInputs = memo(async () => { return req.body; }); return { calls: [{ batchIndex: 0, path: opts.path, getRawInput: getInputs.read, result: getInputs.result, procedure: await getProcedureAtPath(opts.router, opts.path) }], isBatchCall: false, accept: null, type: "mutation", connectionParams: null, signal: req.signal, url: opts.url }; } }; var handlers = [ jsonContentTypeHandler, formDataContentTypeHandler, octetStreamContentTypeHandler ]; function getContentTypeHandler(req) { const handler = handlers.find((handler$1) => handler$1.isMatch(req)); if (handler) return handler; if (!handler && req.method === "GET") return jsonContentTypeHandler; throw new TRPCError({ code: "UNSUPPORTED_MEDIA_TYPE", message: req.headers.has("content-type") ? `Unsupported content-type "${req.headers.get("content-type")}` : "Missing content-type header" }); } __name(getContentTypeHandler, "getContentTypeHandler"); async function getRequestInfo(opts) { const handler = getContentTypeHandler(opts.req); return await handler.parse(opts); } __name(getRequestInfo, "getRequestInfo"); function isAbortError(error50) { return isObject(error50) && error50["name"] === "AbortError"; } __name(isAbortError, "isAbortError"); function throwAbortError(message2 = "AbortError") { throw new DOMException(message2, "AbortError"); } __name(throwAbortError, "throwAbortError"); function isObject$1(o) { return Object.prototype.toString.call(o) === "[object Object]"; } __name(isObject$1, "isObject$1"); function isPlainObject(o) { var ctor, prot; if (isObject$1(o) === false) return false; ctor = o.constructor; if (ctor === void 0) return true; prot = ctor.prototype; if (isObject$1(prot) === false) return false; if (prot.hasOwnProperty("isPrototypeOf") === false) return false; return true; } __name(isPlainObject, "isPlainObject"); var import_defineProperty2 = __toESM2(require_defineProperty(), 1); var _Symbol$toStringTag; var subscribableCache = /* @__PURE__ */ new WeakMap(); var NOOP = /* @__PURE__ */ __name(() => { }, "NOOP"); _Symbol$toStringTag = Symbol.toStringTag; var Unpromise = class Unpromise2 { static { __name(this, "Unpromise"); } constructor(arg) { (0, import_defineProperty2.default)(this, "promise", void 0); (0, import_defineProperty2.default)(this, "subscribers", []); (0, import_defineProperty2.default)(this, "settlement", null); (0, import_defineProperty2.default)(this, _Symbol$toStringTag, "Unpromise"); if (typeof arg === "function") this.promise = new Promise(arg); else this.promise = arg; const thenReturn = this.promise.then((value) => { const { subscribers } = this; this.subscribers = null; this.settlement = { status: "fulfilled", value }; subscribers === null || subscribers === void 0 || subscribers.forEach(({ resolve }) => { resolve(value); }); }); if ("catch" in thenReturn) thenReturn.catch((reason) => { const { subscribers } = this; this.subscribers = null; this.settlement = { status: "rejected", reason }; subscribers === null || subscribers === void 0 || subscribers.forEach(({ reject }) => { reject(reason); }); }); } /** Create a promise that mitigates uncontrolled subscription to a long-lived * Promise via .then() and .catch() - otherwise a source of memory leaks. * * The returned promise has an `unsubscribe()` method which can be called when * the Promise is no longer being tracked by application logic, and which * ensures that there is no reference chain from the original promise to the * new one, and therefore no memory leak. * * If original promise has not yet settled, this adds a new unique promise * that listens to then/catch events, along with an `unsubscribe()` method to * detach it. * * If original promise has settled, then creates a new Promise.resolve() or * Promise.reject() and provided unsubscribe is a noop. * * If you call `unsubscribe()` before the returned Promise has settled, it * will never settle. */ subscribe() { let promise2; let unsubscribe; const { settlement } = this; if (settlement === null) { if (this.subscribers === null) throw new Error("Unpromise settled but still has subscribers"); const subscriber = withResolvers(); this.subscribers = listWithMember(this.subscribers, subscriber); promise2 = subscriber.promise; unsubscribe = /* @__PURE__ */ __name(() => { if (this.subscribers !== null) this.subscribers = listWithoutMember(this.subscribers, subscriber); }, "unsubscribe"); } else { const { status } = settlement; if (status === "fulfilled") promise2 = Promise.resolve(settlement.value); else promise2 = Promise.reject(settlement.reason); unsubscribe = NOOP; } return Object.assign(promise2, { unsubscribe }); } /** STANDARD PROMISE METHODS (but returning a SubscribedPromise) */ then(onfulfilled, onrejected) { const subscribed = this.subscribe(); const { unsubscribe } = subscribed; return Object.assign(subscribed.then(onfulfilled, onrejected), { unsubscribe }); } catch(onrejected) { const subscribed = this.subscribe(); const { unsubscribe } = subscribed; return Object.assign(subscribed.catch(onrejected), { unsubscribe }); } finally(onfinally) { const subscribed = this.subscribe(); const { unsubscribe } = subscribed; return Object.assign(subscribed.finally(onfinally), { unsubscribe }); } /** Unpromise STATIC METHODS */ /** Create or Retrieve the proxy Unpromise (a re-used Unpromise for the VM lifetime * of the provided Promise reference) */ static proxy(promise2) { const cached2 = Unpromise2.getSubscribablePromise(promise2); return typeof cached2 !== "undefined" ? cached2 : Unpromise2.createSubscribablePromise(promise2); } /** Create and store an Unpromise keyed by an original Promise. */ static createSubscribablePromise(promise2) { const created = new Unpromise2(promise2); subscribableCache.set(promise2, created); subscribableCache.set(created, created); return created; } /** Retrieve a previously-created Unpromise keyed by an original Promise. */ static getSubscribablePromise(promise2) { return subscribableCache.get(promise2); } /** Promise STATIC METHODS */ /** Lookup the Unpromise for this promise, and derive a SubscribedPromise from * it (that can be later unsubscribed to eliminate Memory leaks) */ static resolve(value) { const promise2 = typeof value === "object" && value !== null && "then" in value && typeof value.then === "function" ? value : Promise.resolve(value); return Unpromise2.proxy(promise2).subscribe(); } static async any(values) { const valuesArray = Array.isArray(values) ? values : [...values]; const subscribedPromises = valuesArray.map(Unpromise2.resolve); try { return await Promise.any(subscribedPromises); } finally { subscribedPromises.forEach(({ unsubscribe }) => { unsubscribe(); }); } } static async race(values) { const valuesArray = Array.isArray(values) ? values : [...values]; const subscribedPromises = valuesArray.map(Unpromise2.resolve); try { return await Promise.race(subscribedPromises); } finally { subscribedPromises.forEach(({ unsubscribe }) => { unsubscribe(); }); } } /** Create a race of SubscribedPromises that will fulfil to a single winning * Promise (in a 1-Tuple). Eliminates memory leaks from long-lived promises * accumulating .then() and .catch() subscribers. Allows simple logic to * consume the result, like... * ```ts * const [ winner ] = await Unpromise.race([ promiseA, promiseB ]); * if(winner === promiseB){ * const result = await promiseB; * // do the thing * } * ``` * */ static async raceReferences(promises) { const selfPromises = promises.map(resolveSelfTuple); try { return await Promise.race(selfPromises); } finally { for (const promise2 of selfPromises) promise2.unsubscribe(); } } }; function resolveSelfTuple(promise2) { return Unpromise.proxy(promise2).then(() => [promise2]); } __name(resolveSelfTuple, "resolveSelfTuple"); function withResolvers() { let resolve; let reject; const promise2 = new Promise((_resolve, _reject) => { resolve = _resolve; reject = _reject; }); return { promise: promise2, resolve, reject }; } __name(withResolvers, "withResolvers"); function listWithMember(arr, member2) { return [...arr, member2]; } __name(listWithMember, "listWithMember"); function listWithoutIndex(arr, index) { return [...arr.slice(0, index), ...arr.slice(index + 1)]; } __name(listWithoutIndex, "listWithoutIndex"); function listWithoutMember(arr, member2) { const index = arr.indexOf(member2); if (index !== -1) return listWithoutIndex(arr, index); return arr; } __name(listWithoutMember, "listWithoutMember"); var _Symbol; var _Symbol$dispose; var _Symbol2; var _Symbol2$asyncDispose; (_Symbol$dispose = (_Symbol = Symbol).dispose) !== null && _Symbol$dispose !== void 0 || (_Symbol.dispose = /* @__PURE__ */ Symbol()); (_Symbol2$asyncDispose = (_Symbol2 = Symbol).asyncDispose) !== null && _Symbol2$asyncDispose !== void 0 || (_Symbol2.asyncDispose = /* @__PURE__ */ Symbol()); function makeResource(thing, dispose) { const it = thing; const existing = it[Symbol.dispose]; it[Symbol.dispose] = () => { dispose(); existing === null || existing === void 0 || existing(); }; return it; } __name(makeResource, "makeResource"); function makeAsyncResource(thing, dispose) { const it = thing; const existing = it[Symbol.asyncDispose]; it[Symbol.asyncDispose] = async () => { await dispose(); await (existing === null || existing === void 0 ? void 0 : existing()); }; return it; } __name(makeAsyncResource, "makeAsyncResource"); var disposablePromiseTimerResult = /* @__PURE__ */ Symbol(); function timerResource(ms) { let timer = null; return makeResource({ start() { if (timer) throw new Error("Timer already started"); const promise2 = new Promise((resolve) => { timer = setTimeout(() => resolve(disposablePromiseTimerResult), ms); }); return promise2; } }, () => { if (timer) clearTimeout(timer); }); } __name(timerResource, "timerResource"); var require_usingCtx = __commonJS2({ "../../node_modules/.pnpm/@oxc-project+runtime@0.72.2/node_modules/@oxc-project/runtime/src/helpers/usingCtx.js"(exports, module2) { function _usingCtx() { var r = "function" == typeof SuppressedError ? SuppressedError : function(r$1, e$1) { var n$1 = Error(); return n$1.name = "SuppressedError", n$1.error = r$1, n$1.suppressed = e$1, n$1; }, e = {}, n = []; function using(r$1, e$1) { if (null != e$1) { if (Object(e$1) !== e$1) throw new TypeError("using declarations can only be used with objects, functions, null, or undefined."); if (r$1) var o = e$1[Symbol.asyncDispose || Symbol["for"]("Symbol.asyncDispose")]; if (void 0 === o && (o = e$1[Symbol.dispose || Symbol["for"]("Symbol.dispose")], r$1)) var t8 = o; if ("function" != typeof o) throw new TypeError("Object is not disposable."); t8 && (o = /* @__PURE__ */ __name(function o$1() { try { t8.call(e$1); } catch (r$2) { return Promise.reject(r$2); } }, "o$1")), n.push({ v: e$1, d: o, a: r$1 }); } else r$1 && n.push({ d: e$1, a: r$1 }); return e$1; } __name(using, "using"); return { e, u: using.bind(null, false), a: using.bind(null, true), d: /* @__PURE__ */ __name(function d() { var o, t8 = this.e, s = 0; function next() { for (; o = n.pop(); ) try { if (!o.a && 1 === s) return s = 0, n.push(o), Promise.resolve().then(next); if (o.d) { var r$1 = o.d.call(o.v); if (o.a) return s |= 2, Promise.resolve(r$1).then(next, err); } else s |= 1; } catch (r$2) { return err(r$2); } if (1 === s) return t8 !== e ? Promise.reject(t8) : Promise.resolve(); if (t8 !== e) throw t8; } __name(next, "next"); function err(n$1) { return t8 = t8 !== e ? new r(n$1, t8) : n$1, next(); } __name(err, "err"); return next(); }, "d") }; } __name(_usingCtx, "_usingCtx"); module2.exports = _usingCtx, module2.exports.__esModule = true, module2.exports["default"] = module2.exports; } }); var require_OverloadYield = __commonJS2({ "../../node_modules/.pnpm/@oxc-project+runtime@0.72.2/node_modules/@oxc-project/runtime/src/helpers/OverloadYield.js"(exports, module2) { function _OverloadYield(e, d) { this.v = e, this.k = d; } __name(_OverloadYield, "_OverloadYield"); module2.exports = _OverloadYield, module2.exports.__esModule = true, module2.exports["default"] = module2.exports; } }); var require_awaitAsyncGenerator = __commonJS2({ "../../node_modules/.pnpm/@oxc-project+runtime@0.72.2/node_modules/@oxc-project/runtime/src/helpers/awaitAsyncGenerator.js"(exports, module2) { var OverloadYield$2 = require_OverloadYield(); function _awaitAsyncGenerator$5(e) { return new OverloadYield$2(e, 0); } __name(_awaitAsyncGenerator$5, "_awaitAsyncGenerator$5"); module2.exports = _awaitAsyncGenerator$5, module2.exports.__esModule = true, module2.exports["default"] = module2.exports; } }); var require_wrapAsyncGenerator = __commonJS2({ "../../node_modules/.pnpm/@oxc-project+runtime@0.72.2/node_modules/@oxc-project/runtime/src/helpers/wrapAsyncGenerator.js"(exports, module2) { var OverloadYield$1 = require_OverloadYield(); function _wrapAsyncGenerator$6(e) { return function() { return new AsyncGenerator(e.apply(this, arguments)); }; } __name(_wrapAsyncGenerator$6, "_wrapAsyncGenerator$6"); function AsyncGenerator(e) { var r, t8; function resume(r$1, t$1) { try { var n = e[r$1](t$1), o = n.value, u4 = o instanceof OverloadYield$1; Promise.resolve(u4 ? o.v : o).then(function(t$2) { if (u4) { var i = "return" === r$1 ? "return" : "next"; if (!o.k || t$2.done) return resume(i, t$2); t$2 = e[i](t$2).value; } settle2(n.done ? "return" : "normal", t$2); }, function(e$1) { resume("throw", e$1); }); } catch (e$1) { settle2("throw", e$1); } } __name(resume, "resume"); function settle2(e$1, n) { switch (e$1) { case "return": r.resolve({ value: n, done: true }); break; case "throw": r.reject(n); break; default: r.resolve({ value: n, done: false }); } (r = r.next) ? resume(r.key, r.arg) : t8 = null; } __name(settle2, "settle"); this._invoke = function(e$1, n) { return new Promise(function(o, u4) { var i = { key: e$1, arg: n, resolve: o, reject: u4, next: null }; t8 ? t8 = t8.next = i : (r = t8 = i, resume(e$1, n)); }); }, "function" != typeof e["return"] && (this["return"] = void 0); } __name(AsyncGenerator, "AsyncGenerator"); AsyncGenerator.prototype["function" == typeof Symbol && Symbol.asyncIterator || "@@asyncIterator"] = function() { return this; }, AsyncGenerator.prototype.next = function(e) { return this._invoke("next", e); }, AsyncGenerator.prototype["throw"] = function(e) { return this._invoke("throw", e); }, AsyncGenerator.prototype["return"] = function(e) { return this._invoke("return", e); }; module2.exports = _wrapAsyncGenerator$6, module2.exports.__esModule = true, module2.exports["default"] = module2.exports; } }); var import_usingCtx$4 = __toESM2(require_usingCtx(), 1); var import_awaitAsyncGenerator$4 = __toESM2(require_awaitAsyncGenerator(), 1); var import_wrapAsyncGenerator$5 = __toESM2(require_wrapAsyncGenerator(), 1); function iteratorResource(iterable) { const iterator2 = iterable[Symbol.asyncIterator](); if (iterator2[Symbol.asyncDispose]) return iterator2; return makeAsyncResource(iterator2, async () => { var _iterator$return; await ((_iterator$return = iterator2.return) === null || _iterator$return === void 0 ? void 0 : _iterator$return.call(iterator2)); }); } __name(iteratorResource, "iteratorResource"); function takeWithGrace(_x2, _x22) { return _takeWithGrace.apply(this, arguments); } __name(takeWithGrace, "takeWithGrace"); function _takeWithGrace() { _takeWithGrace = (0, import_wrapAsyncGenerator$5.default)(function* (iterable, opts) { try { var _usingCtx$1 = (0, import_usingCtx$4.default)(); const iterator2 = _usingCtx$1.a(iteratorResource(iterable)); let result; const timer = _usingCtx$1.u(timerResource(opts.gracePeriodMs)); let count4 = opts.count; let timerPromise = new Promise(() => { }); while (true) { result = yield (0, import_awaitAsyncGenerator$4.default)(Unpromise.race([iterator2.next(), timerPromise])); if (result === disposablePromiseTimerResult) throwAbortError(); if (result.done) return result.value; yield result.value; if (--count4 === 0) timerPromise = timer.start(); result = null; } } catch (_) { _usingCtx$1.e = _; } finally { yield (0, import_awaitAsyncGenerator$4.default)(_usingCtx$1.d()); } }); return _takeWithGrace.apply(this, arguments); } __name(_takeWithGrace, "_takeWithGrace"); function createDeferred() { let resolve; let reject; const promise2 = new Promise((res, rej) => { resolve = res; reject = rej; }); return { promise: promise2, resolve, reject }; } __name(createDeferred, "createDeferred"); var import_usingCtx$3 = __toESM2(require_usingCtx(), 1); var import_awaitAsyncGenerator$3 = __toESM2(require_awaitAsyncGenerator(), 1); var import_wrapAsyncGenerator$4 = __toESM2(require_wrapAsyncGenerator(), 1); function createManagedIterator(iterable, onResult) { const iterator2 = iterable[Symbol.asyncIterator](); let state = "idle"; function cleanup() { state = "done"; onResult = /* @__PURE__ */ __name(() => { }, "onResult"); } __name(cleanup, "cleanup"); function pull() { if (state !== "idle") return; state = "pending"; const next = iterator2.next(); next.then((result) => { if (result.done) { state = "done"; onResult({ status: "return", value: result.value }); cleanup(); return; } state = "idle"; onResult({ status: "yield", value: result.value }); }).catch((cause) => { onResult({ status: "error", error: cause }); cleanup(); }); } __name(pull, "pull"); return { pull, destroy: /* @__PURE__ */ __name(async () => { var _iterator$return; cleanup(); await ((_iterator$return = iterator2.return) === null || _iterator$return === void 0 ? void 0 : _iterator$return.call(iterator2)); }, "destroy") }; } __name(createManagedIterator, "createManagedIterator"); function mergeAsyncIterables() { let state = "idle"; let flushSignal = createDeferred(); const iterables = []; const iterators = /* @__PURE__ */ new Set(); const buffer = []; function initIterable(iterable) { if (state !== "pending") return; const iterator2 = createManagedIterator(iterable, (result) => { if (state !== "pending") return; switch (result.status) { case "yield": buffer.push([iterator2, result]); break; case "return": iterators.delete(iterator2); break; case "error": buffer.push([iterator2, result]); iterators.delete(iterator2); break; } flushSignal.resolve(); }); iterators.add(iterator2); iterator2.pull(); } __name(initIterable, "initIterable"); return { add(iterable) { switch (state) { case "idle": iterables.push(iterable); break; case "pending": initIterable(iterable); break; case "done": break; } }, [Symbol.asyncIterator]() { return (0, import_wrapAsyncGenerator$4.default)(function* () { try { var _usingCtx$1 = (0, import_usingCtx$3.default)(); if (state !== "idle") throw new Error("Cannot iterate twice"); state = "pending"; const _finally = _usingCtx$1.a(makeAsyncResource({}, async () => { state = "done"; const errors2 = []; await Promise.all(Array.from(iterators.values()).map(async (it) => { try { await it.destroy(); } catch (cause) { errors2.push(cause); } })); buffer.length = 0; iterators.clear(); flushSignal.resolve(); if (errors2.length > 0) throw new AggregateError(errors2); })); while (iterables.length > 0) initIterable(iterables.shift()); while (iterators.size > 0) { yield (0, import_awaitAsyncGenerator$3.default)(flushSignal.promise); while (buffer.length > 0) { const [iterator2, result] = buffer.shift(); switch (result.status) { case "yield": yield result.value; iterator2.pull(); break; case "error": throw result.error; } } flushSignal = createDeferred(); } } catch (_) { _usingCtx$1.e = _; } finally { yield (0, import_awaitAsyncGenerator$3.default)(_usingCtx$1.d()); } })(); } }; } __name(mergeAsyncIterables, "mergeAsyncIterables"); function readableStreamFrom(iterable) { const iterator2 = iterable[Symbol.asyncIterator](); return new ReadableStream({ async cancel() { var _iterator$return; await ((_iterator$return = iterator2.return) === null || _iterator$return === void 0 ? void 0 : _iterator$return.call(iterator2)); }, async pull(controller) { const result = await iterator2.next(); if (result.done) { controller.close(); return; } controller.enqueue(result.value); } }); } __name(readableStreamFrom, "readableStreamFrom"); var import_usingCtx$2 = __toESM2(require_usingCtx(), 1); var import_awaitAsyncGenerator$2 = __toESM2(require_awaitAsyncGenerator(), 1); var import_wrapAsyncGenerator$3 = __toESM2(require_wrapAsyncGenerator(), 1); var PING_SYM = /* @__PURE__ */ Symbol("ping"); function withPing(_x2, _x22) { return _withPing.apply(this, arguments); } __name(withPing, "withPing"); function _withPing() { _withPing = (0, import_wrapAsyncGenerator$3.default)(function* (iterable, pingIntervalMs) { try { var _usingCtx$1 = (0, import_usingCtx$2.default)(); const iterator2 = _usingCtx$1.a(iteratorResource(iterable)); let result; let nextPromise = iterator2.next(); while (true) try { var _usingCtx3 = (0, import_usingCtx$2.default)(); const pingPromise = _usingCtx3.u(timerResource(pingIntervalMs)); result = yield (0, import_awaitAsyncGenerator$2.default)(Unpromise.race([nextPromise, pingPromise.start()])); if (result === disposablePromiseTimerResult) { yield PING_SYM; continue; } if (result.done) return result.value; nextPromise = iterator2.next(); yield result.value; result = null; } catch (_) { _usingCtx3.e = _; } finally { _usingCtx3.d(); } } catch (_) { _usingCtx$1.e = _; } finally { yield (0, import_awaitAsyncGenerator$2.default)(_usingCtx$1.d()); } }); return _withPing.apply(this, arguments); } __name(_withPing, "_withPing"); var require_asyncIterator = __commonJS2({ "../../node_modules/.pnpm/@oxc-project+runtime@0.72.2/node_modules/@oxc-project/runtime/src/helpers/asyncIterator.js"(exports, module2) { function _asyncIterator$2(r) { var n, t8, o, e = 2; for ("undefined" != typeof Symbol && (t8 = Symbol.asyncIterator, o = Symbol.iterator); e--; ) { if (t8 && null != (n = r[t8])) return n.call(r); if (o && null != (n = r[o])) return new AsyncFromSyncIterator(n.call(r)); t8 = "@@asyncIterator", o = "@@iterator"; } throw new TypeError("Object is not async iterable"); } __name(_asyncIterator$2, "_asyncIterator$2"); function AsyncFromSyncIterator(r) { function AsyncFromSyncIteratorContinuation(r$1) { if (Object(r$1) !== r$1) return Promise.reject(new TypeError(r$1 + " is not an object.")); var n = r$1.done; return Promise.resolve(r$1.value).then(function(r$2) { return { value: r$2, done: n }; }); } __name(AsyncFromSyncIteratorContinuation, "AsyncFromSyncIteratorContinuation"); return AsyncFromSyncIterator = /* @__PURE__ */ __name(function AsyncFromSyncIterator$1(r$1) { this.s = r$1, this.n = r$1.next; }, "AsyncFromSyncIterator$1"), AsyncFromSyncIterator.prototype = { s: null, n: null, next: /* @__PURE__ */ __name(function next() { return AsyncFromSyncIteratorContinuation(this.n.apply(this.s, arguments)); }, "next"), "return": /* @__PURE__ */ __name(function _return(r$1) { var n = this.s["return"]; return void 0 === n ? Promise.resolve({ value: r$1, done: true }) : AsyncFromSyncIteratorContinuation(n.apply(this.s, arguments)); }, "_return"), "throw": /* @__PURE__ */ __name(function _throw(r$1) { var n = this.s["return"]; return void 0 === n ? Promise.reject(r$1) : AsyncFromSyncIteratorContinuation(n.apply(this.s, arguments)); }, "_throw") }, new AsyncFromSyncIterator(r); } __name(AsyncFromSyncIterator, "AsyncFromSyncIterator"); module2.exports = _asyncIterator$2, module2.exports.__esModule = true, module2.exports["default"] = module2.exports; } }); var import_awaitAsyncGenerator$1 = __toESM2(require_awaitAsyncGenerator(), 1); var import_wrapAsyncGenerator$2 = __toESM2(require_wrapAsyncGenerator(), 1); var import_usingCtx$1 = __toESM2(require_usingCtx(), 1); var import_asyncIterator$1 = __toESM2(require_asyncIterator(), 1); var CHUNK_VALUE_TYPE_PROMISE = 0; var CHUNK_VALUE_TYPE_ASYNC_ITERABLE = 1; var PROMISE_STATUS_FULFILLED = 0; var PROMISE_STATUS_REJECTED = 1; var ASYNC_ITERABLE_STATUS_RETURN = 0; var ASYNC_ITERABLE_STATUS_YIELD = 1; var ASYNC_ITERABLE_STATUS_ERROR = 2; function isPromise(value) { return (isObject(value) || isFunction(value)) && typeof (value === null || value === void 0 ? void 0 : value["then"]) === "function" && typeof (value === null || value === void 0 ? void 0 : value["catch"]) === "function"; } __name(isPromise, "isPromise"); var MaxDepthError = class extends Error { static { __name(this, "MaxDepthError"); } constructor(path3) { super("Max depth reached at path: " + path3.join(".")); this.path = path3; } }; function createBatchStreamProducer(_x3) { return _createBatchStreamProducer.apply(this, arguments); } __name(createBatchStreamProducer, "createBatchStreamProducer"); function _createBatchStreamProducer() { _createBatchStreamProducer = (0, import_wrapAsyncGenerator$2.default)(function* (opts) { const { data } = opts; let counter = 0; const placeholder = 0; const mergedIterables = mergeAsyncIterables(); function registerAsync(callback) { const idx = counter++; const iterable$1 = callback(idx); mergedIterables.add(iterable$1); return idx; } __name(registerAsync, "registerAsync"); function encodePromise(promise2, path3) { return registerAsync(/* @__PURE__ */ (function() { var _ref = (0, import_wrapAsyncGenerator$2.default)(function* (idx) { const error50 = checkMaxDepth(path3); if (error50) { promise2.catch((cause) => { var _opts$onError; (_opts$onError = opts.onError) === null || _opts$onError === void 0 || _opts$onError.call(opts, { error: cause, path: path3 }); }); promise2 = Promise.reject(error50); } try { const next = yield (0, import_awaitAsyncGenerator$1.default)(promise2); yield [ idx, PROMISE_STATUS_FULFILLED, encode8(next, path3) ]; } catch (cause) { var _opts$onError2, _opts$formatError; (_opts$onError2 = opts.onError) === null || _opts$onError2 === void 0 || _opts$onError2.call(opts, { error: cause, path: path3 }); yield [ idx, PROMISE_STATUS_REJECTED, (_opts$formatError = opts.formatError) === null || _opts$formatError === void 0 ? void 0 : _opts$formatError.call(opts, { error: cause, path: path3 }) ]; } }); return function(_x2) { return _ref.apply(this, arguments); }; })()); } __name(encodePromise, "encodePromise"); function encodeAsyncIterable(iterable$1, path3) { return registerAsync(/* @__PURE__ */ (function() { var _ref2 = (0, import_wrapAsyncGenerator$2.default)(function* (idx) { try { var _usingCtx$1 = (0, import_usingCtx$1.default)(); const error50 = checkMaxDepth(path3); if (error50) throw error50; const iterator2 = _usingCtx$1.a(iteratorResource(iterable$1)); try { while (true) { const next = yield (0, import_awaitAsyncGenerator$1.default)(iterator2.next()); if (next.done) { yield [ idx, ASYNC_ITERABLE_STATUS_RETURN, encode8(next.value, path3) ]; break; } yield [ idx, ASYNC_ITERABLE_STATUS_YIELD, encode8(next.value, path3) ]; } } catch (cause) { var _opts$onError3, _opts$formatError2; (_opts$onError3 = opts.onError) === null || _opts$onError3 === void 0 || _opts$onError3.call(opts, { error: cause, path: path3 }); yield [ idx, ASYNC_ITERABLE_STATUS_ERROR, (_opts$formatError2 = opts.formatError) === null || _opts$formatError2 === void 0 ? void 0 : _opts$formatError2.call(opts, { error: cause, path: path3 }) ]; } } catch (_) { _usingCtx$1.e = _; } finally { yield (0, import_awaitAsyncGenerator$1.default)(_usingCtx$1.d()); } }); return function(_x2) { return _ref2.apply(this, arguments); }; })()); } __name(encodeAsyncIterable, "encodeAsyncIterable"); function checkMaxDepth(path3) { if (opts.maxDepth && path3.length > opts.maxDepth) return new MaxDepthError(path3); return null; } __name(checkMaxDepth, "checkMaxDepth"); function encodeAsync3(value, path3) { if (isPromise(value)) return [CHUNK_VALUE_TYPE_PROMISE, encodePromise(value, path3)]; if (isAsyncIterable(value)) { if (opts.maxDepth && path3.length >= opts.maxDepth) throw new Error("Max depth reached"); return [CHUNK_VALUE_TYPE_ASYNC_ITERABLE, encodeAsyncIterable(value, path3)]; } return null; } __name(encodeAsync3, "encodeAsync"); function encode8(value, path3) { if (value === void 0) return [[]]; const reg = encodeAsync3(value, path3); if (reg) return [[placeholder], [null, ...reg]]; if (!isPlainObject(value)) return [[value]]; const newObj = emptyObject(); const asyncValues = []; for (const [key, item] of Object.entries(value)) { const transformed = encodeAsync3(item, [...path3, key]); if (!transformed) { newObj[key] = item; continue; } newObj[key] = placeholder; asyncValues.push([key, ...transformed]); } return [[newObj], ...asyncValues]; } __name(encode8, "encode"); const newHead = emptyObject(); for (const [key, item] of Object.entries(data)) newHead[key] = encode8(item, [key]); yield newHead; let iterable = mergedIterables; if (opts.pingMs) iterable = withPing(mergedIterables, opts.pingMs); var _iteratorAbruptCompletion = false; var _didIteratorError = false; var _iteratorError; try { for (var _iterator = (0, import_asyncIterator$1.default)(iterable), _step; _iteratorAbruptCompletion = !(_step = yield (0, import_awaitAsyncGenerator$1.default)(_iterator.next())).done; _iteratorAbruptCompletion = false) { const value = _step.value; yield value; } } catch (err) { _didIteratorError = true; _iteratorError = err; } finally { try { if (_iteratorAbruptCompletion && _iterator.return != null) yield (0, import_awaitAsyncGenerator$1.default)(_iterator.return()); } finally { if (_didIteratorError) throw _iteratorError; } } }); return _createBatchStreamProducer.apply(this, arguments); } __name(_createBatchStreamProducer, "_createBatchStreamProducer"); function jsonlStreamProducer(opts) { let stream = readableStreamFrom(createBatchStreamProducer(opts)); const { serialize } = opts; if (serialize) stream = stream.pipeThrough(new TransformStream({ transform(chunk, controller) { if (chunk === PING_SYM) controller.enqueue(PING_SYM); else controller.enqueue(serialize(chunk)); } })); return stream.pipeThrough(new TransformStream({ transform(chunk, controller) { if (chunk === PING_SYM) controller.enqueue(" "); else controller.enqueue(JSON.stringify(chunk) + "\n"); } })).pipeThrough(new TextEncoderStream()); } __name(jsonlStreamProducer, "jsonlStreamProducer"); var require_asyncGeneratorDelegate = __commonJS2({ "../../node_modules/.pnpm/@oxc-project+runtime@0.72.2/node_modules/@oxc-project/runtime/src/helpers/asyncGeneratorDelegate.js"(exports, module2) { var OverloadYield = require_OverloadYield(); function _asyncGeneratorDelegate$1(t8) { var e = {}, n = false; function pump(e$1, r) { return n = true, r = new Promise(function(n$1) { n$1(t8[e$1](r)); }), { done: false, value: new OverloadYield(r, 1) }; } __name(pump, "pump"); return e["undefined" != typeof Symbol && Symbol.iterator || "@@iterator"] = function() { return this; }, e.next = function(t$1) { return n ? (n = false, t$1) : pump("next", t$1); }, "function" == typeof t8["throw"] && (e["throw"] = function(t$1) { if (n) throw n = false, t$1; return pump("throw", t$1); }), "function" == typeof t8["return"] && (e["return"] = function(t$1) { return n ? (n = false, t$1) : pump("return", t$1); }), e; } __name(_asyncGeneratorDelegate$1, "_asyncGeneratorDelegate$1"); module2.exports = _asyncGeneratorDelegate$1, module2.exports.__esModule = true, module2.exports["default"] = module2.exports; } }); var import_asyncIterator = __toESM2(require_asyncIterator(), 1); var import_awaitAsyncGenerator = __toESM2(require_awaitAsyncGenerator(), 1); var import_wrapAsyncGenerator$1 = __toESM2(require_wrapAsyncGenerator(), 1); var import_asyncGeneratorDelegate = __toESM2(require_asyncGeneratorDelegate(), 1); var import_usingCtx = __toESM2(require_usingCtx(), 1); var PING_EVENT = "ping"; var SERIALIZED_ERROR_EVENT = "serialized-error"; var CONNECTED_EVENT = "connected"; var RETURN_EVENT = "return"; function sseStreamProducer(opts) { var _opts$ping$enabled, _opts$ping, _opts$ping$intervalMs, _opts$ping2, _opts$client; const { serialize = identity } = opts; const ping = { enabled: (_opts$ping$enabled = (_opts$ping = opts.ping) === null || _opts$ping === void 0 ? void 0 : _opts$ping.enabled) !== null && _opts$ping$enabled !== void 0 ? _opts$ping$enabled : false, intervalMs: (_opts$ping$intervalMs = (_opts$ping2 = opts.ping) === null || _opts$ping2 === void 0 ? void 0 : _opts$ping2.intervalMs) !== null && _opts$ping$intervalMs !== void 0 ? _opts$ping$intervalMs : 1e3 }; const client = (_opts$client = opts.client) !== null && _opts$client !== void 0 ? _opts$client : {}; if (ping.enabled && client.reconnectAfterInactivityMs && ping.intervalMs > client.reconnectAfterInactivityMs) throw new Error(`Ping interval must be less than client reconnect interval to prevent unnecessary reconnection - ping.intervalMs: ${ping.intervalMs} client.reconnectAfterInactivityMs: ${client.reconnectAfterInactivityMs}`); function generator() { return _generator.apply(this, arguments); } __name(generator, "generator"); function _generator() { _generator = (0, import_wrapAsyncGenerator$1.default)(function* () { yield { event: CONNECTED_EVENT, data: JSON.stringify(client) }; let iterable = opts.data; if (opts.emitAndEndImmediately) iterable = takeWithGrace(iterable, { count: 1, gracePeriodMs: 1 }); if (ping.enabled && ping.intervalMs !== Infinity && ping.intervalMs > 0) iterable = withPing(iterable, ping.intervalMs); let value; let chunk; var _iteratorAbruptCompletion = false; var _didIteratorError = false; var _iteratorError; try { for (var _iterator = (0, import_asyncIterator.default)(iterable), _step; _iteratorAbruptCompletion = !(_step = yield (0, import_awaitAsyncGenerator.default)(_iterator.next())).done; _iteratorAbruptCompletion = false) { value = _step.value; { if (value === PING_SYM) { yield { event: PING_EVENT, data: "" }; continue; } chunk = isTrackedEnvelope(value) ? { id: value[0], data: value[1] } : { data: value }; chunk.data = JSON.stringify(serialize(chunk.data)); yield chunk; value = null; chunk = null; } } } catch (err) { _didIteratorError = true; _iteratorError = err; } finally { try { if (_iteratorAbruptCompletion && _iterator.return != null) yield (0, import_awaitAsyncGenerator.default)(_iterator.return()); } finally { if (_didIteratorError) throw _iteratorError; } } }); return _generator.apply(this, arguments); } __name(_generator, "_generator"); function generatorWithErrorHandling() { return _generatorWithErrorHandling.apply(this, arguments); } __name(generatorWithErrorHandling, "generatorWithErrorHandling"); function _generatorWithErrorHandling() { _generatorWithErrorHandling = (0, import_wrapAsyncGenerator$1.default)(function* () { try { yield* (0, import_asyncGeneratorDelegate.default)((0, import_asyncIterator.default)(generator())); yield { event: RETURN_EVENT, data: "" }; } catch (cause) { var _opts$formatError, _opts$formatError2; if (isAbortError(cause)) return; const error50 = getTRPCErrorFromUnknown(cause); const data = (_opts$formatError = (_opts$formatError2 = opts.formatError) === null || _opts$formatError2 === void 0 ? void 0 : _opts$formatError2.call(opts, { error: error50 })) !== null && _opts$formatError !== void 0 ? _opts$formatError : null; yield { event: SERIALIZED_ERROR_EVENT, data: JSON.stringify(serialize(data)) }; } }); return _generatorWithErrorHandling.apply(this, arguments); } __name(_generatorWithErrorHandling, "_generatorWithErrorHandling"); const stream = readableStreamFrom(generatorWithErrorHandling()); return stream.pipeThrough(new TransformStream({ transform(chunk, controller) { if ("event" in chunk) controller.enqueue(`event: ${chunk.event} `); if ("data" in chunk) controller.enqueue(`data: ${chunk.data} `); if ("id" in chunk) controller.enqueue(`id: ${chunk.id} `); if ("comment" in chunk) controller.enqueue(`: ${chunk.comment} `); controller.enqueue("\n\n"); } })).pipeThrough(new TextEncoderStream()); } __name(sseStreamProducer, "sseStreamProducer"); var sseHeaders = { "Content-Type": "text/event-stream", "Cache-Control": "no-cache, no-transform", "X-Accel-Buffering": "no", Connection: "keep-alive" }; var import_wrapAsyncGenerator = __toESM2(require_wrapAsyncGenerator(), 1); var import_objectSpread23 = __toESM2(require_objectSpread2(), 1); function errorToAsyncIterable(err) { return run((0, import_wrapAsyncGenerator.default)(function* () { throw err; })); } __name(errorToAsyncIterable, "errorToAsyncIterable"); function combinedAbortController(signal) { const controller = new AbortController(); const combinedSignal = abortSignalsAnyPonyfill([signal, controller.signal]); return { signal: combinedSignal, controller }; } __name(combinedAbortController, "combinedAbortController"); var TYPE_ACCEPTED_METHOD_MAP = { mutation: ["POST"], query: ["GET"], subscription: ["GET"] }; var TYPE_ACCEPTED_METHOD_MAP_WITH_METHOD_OVERRIDE = { mutation: ["POST"], query: ["GET", "POST"], subscription: ["GET", "POST"] }; function initResponse(initOpts) { var _responseMeta, _info$calls$find$proc, _info$calls$find; const { ctx, info: info3, responseMeta, untransformedJSON, errors: errors2 = [], headers } = initOpts; let status = untransformedJSON ? getHTTPStatusCode(untransformedJSON) : 200; const eagerGeneration = !untransformedJSON; const data = eagerGeneration ? [] : Array.isArray(untransformedJSON) ? untransformedJSON : [untransformedJSON]; const meta3 = (_responseMeta = responseMeta === null || responseMeta === void 0 ? void 0 : responseMeta({ ctx, info: info3, paths: info3 === null || info3 === void 0 ? void 0 : info3.calls.map((call) => call.path), data, errors: errors2, eagerGeneration, type: (_info$calls$find$proc = info3 === null || info3 === void 0 || (_info$calls$find = info3.calls.find((call) => { var _call$procedure; return (_call$procedure = call.procedure) === null || _call$procedure === void 0 ? void 0 : _call$procedure._def.type; })) === null || _info$calls$find === void 0 || (_info$calls$find = _info$calls$find.procedure) === null || _info$calls$find === void 0 ? void 0 : _info$calls$find._def.type) !== null && _info$calls$find$proc !== void 0 ? _info$calls$find$proc : "unknown" })) !== null && _responseMeta !== void 0 ? _responseMeta : {}; if (meta3.headers) { if (meta3.headers instanceof Headers) for (const [key, value] of meta3.headers.entries()) headers.append(key, value); else for (const [key, value] of Object.entries(meta3.headers)) if (Array.isArray(value)) for (const v2 of value) headers.append(key, v2); else if (typeof value === "string") headers.set(key, value); } if (meta3.status) status = meta3.status; return { status }; } __name(initResponse, "initResponse"); function caughtErrorToData(cause, errorOpts) { const { router: router8, req, onError } = errorOpts.opts; const error50 = getTRPCErrorFromUnknown(cause); onError === null || onError === void 0 || onError({ error: error50, path: errorOpts.path, input: errorOpts.input, ctx: errorOpts.ctx, type: errorOpts.type, req }); const untransformedJSON = { error: getErrorShape({ config: router8._def._config, error: error50, type: errorOpts.type, path: errorOpts.path, input: errorOpts.input, ctx: errorOpts.ctx }) }; const transformedJSON = transformTRPCResponse(router8._def._config, untransformedJSON); const body = JSON.stringify(transformedJSON); return { error: error50, untransformedJSON, body }; } __name(caughtErrorToData, "caughtErrorToData"); function isDataStream(v2) { if (!isObject(v2)) return false; if (isAsyncIterable(v2)) return true; return Object.values(v2).some(isPromise) || Object.values(v2).some(isAsyncIterable); } __name(isDataStream, "isDataStream"); async function resolveResponse(opts) { var _ref, _opts$allowBatching, _opts$batching, _opts$allowMethodOver, _config$sse$enabled, _config$sse; const { router: router8, req } = opts; const headers = new Headers([["vary", "trpc-accept, accept"]]); const config3 = router8._def._config; const url2 = new URL(req.url); if (req.method === "HEAD") return new Response(null, { status: 204 }); const allowBatching = (_ref = (_opts$allowBatching = opts.allowBatching) !== null && _opts$allowBatching !== void 0 ? _opts$allowBatching : (_opts$batching = opts.batching) === null || _opts$batching === void 0 ? void 0 : _opts$batching.enabled) !== null && _ref !== void 0 ? _ref : true; const allowMethodOverride = ((_opts$allowMethodOver = opts.allowMethodOverride) !== null && _opts$allowMethodOver !== void 0 ? _opts$allowMethodOver : false) && req.method === "POST"; const infoTuple = await run(async () => { try { return [void 0, await getRequestInfo({ req, path: decodeURIComponent(opts.path), router: router8, searchParams: url2.searchParams, headers: opts.req.headers, url: url2 })]; } catch (cause) { return [getTRPCErrorFromUnknown(cause), void 0]; } }); const ctxManager = run(() => { let result = void 0; return { valueOrUndefined: /* @__PURE__ */ __name(() => { if (!result) return void 0; return result[1]; }, "valueOrUndefined"), value: /* @__PURE__ */ __name(() => { const [err, ctx] = result; if (err) throw err; return ctx; }, "value"), create: /* @__PURE__ */ __name(async (info3) => { if (result) throw new Error("This should only be called once - report a bug in tRPC"); try { const ctx = await opts.createContext({ info: info3 }); result = [void 0, ctx]; } catch (cause) { result = [getTRPCErrorFromUnknown(cause), void 0]; } }, "create") }; }); const methodMapper = allowMethodOverride ? TYPE_ACCEPTED_METHOD_MAP_WITH_METHOD_OVERRIDE : TYPE_ACCEPTED_METHOD_MAP; const isStreamCall = getAcceptHeader(req.headers) === "application/jsonl"; const experimentalSSE = (_config$sse$enabled = (_config$sse = config3.sse) === null || _config$sse === void 0 ? void 0 : _config$sse.enabled) !== null && _config$sse$enabled !== void 0 ? _config$sse$enabled : true; try { const [infoError, info3] = infoTuple; if (infoError) throw infoError; if (info3.isBatchCall && !allowBatching) throw new TRPCError({ code: "BAD_REQUEST", message: `Batching is not enabled on the server` }); if (isStreamCall && !info3.isBatchCall) throw new TRPCError({ message: `Streaming requests must be batched (you can do a batch of 1)`, code: "BAD_REQUEST" }); await ctxManager.create(info3); const rpcCalls = info3.calls.map(async (call) => { const proc = call.procedure; const combinedAbort = combinedAbortController(opts.req.signal); try { if (opts.error) throw opts.error; if (!proc) throw new TRPCError({ code: "NOT_FOUND", message: `No procedure found on path "${call.path}"` }); if (!methodMapper[proc._def.type].includes(req.method)) throw new TRPCError({ code: "METHOD_NOT_SUPPORTED", message: `Unsupported ${req.method}-request to ${proc._def.type} procedure at path "${call.path}"` }); if (proc._def.type === "subscription") { var _config$sse2; if (info3.isBatchCall) throw new TRPCError({ code: "BAD_REQUEST", message: `Cannot batch subscription calls` }); if ((_config$sse2 = config3.sse) === null || _config$sse2 === void 0 ? void 0 : _config$sse2.maxDurationMs) { let cleanup = function() { clearTimeout(timer); combinedAbort.signal.removeEventListener("abort", cleanup); combinedAbort.controller.abort(); }; __name(cleanup, "cleanup"); const timer = setTimeout(cleanup, config3.sse.maxDurationMs); combinedAbort.signal.addEventListener("abort", cleanup); } } const data = await proc({ path: call.path, getRawInput: call.getRawInput, ctx: ctxManager.value(), type: proc._def.type, signal: combinedAbort.signal, batchIndex: call.batchIndex }); return [void 0, { data, signal: proc._def.type === "subscription" ? combinedAbort.signal : void 0 }]; } catch (cause) { var _opts$onError, _call$procedure$_def$, _call$procedure2; const error50 = getTRPCErrorFromUnknown(cause); const input = call.result(); (_opts$onError = opts.onError) === null || _opts$onError === void 0 || _opts$onError.call(opts, { error: error50, path: call.path, input, ctx: ctxManager.valueOrUndefined(), type: (_call$procedure$_def$ = (_call$procedure2 = call.procedure) === null || _call$procedure2 === void 0 ? void 0 : _call$procedure2._def.type) !== null && _call$procedure$_def$ !== void 0 ? _call$procedure$_def$ : "unknown", req: opts.req }); return [error50, void 0]; } }); if (!info3.isBatchCall) { const [call] = info3.calls; const [error50, result] = await rpcCalls[0]; switch (info3.type) { case "unknown": case "mutation": case "query": { headers.set("content-type", "application/json"); if (isDataStream(result === null || result === void 0 ? void 0 : result.data)) throw new TRPCError({ code: "UNSUPPORTED_MEDIA_TYPE", message: "Cannot use stream-like response in non-streaming request - use httpBatchStreamLink" }); const res = error50 ? { error: getErrorShape({ config: config3, ctx: ctxManager.valueOrUndefined(), error: error50, input: call.result(), path: call.path, type: info3.type }) } : { result: { data: result.data } }; const headResponse$1 = initResponse({ ctx: ctxManager.valueOrUndefined(), info: info3, responseMeta: opts.responseMeta, errors: error50 ? [error50] : [], headers, untransformedJSON: [res] }); return new Response(JSON.stringify(transformTRPCResponse(config3, res)), { status: headResponse$1.status, headers }); } case "subscription": { const iterable = run(() => { if (error50) return errorToAsyncIterable(error50); if (!experimentalSSE) return errorToAsyncIterable(new TRPCError({ code: "METHOD_NOT_SUPPORTED", message: 'Missing experimental flag "sseSubscriptions"' })); if (!isObservable(result.data) && !isAsyncIterable(result.data)) return errorToAsyncIterable(new TRPCError({ message: `Subscription ${call.path} did not return an observable or a AsyncGenerator`, code: "INTERNAL_SERVER_ERROR" })); const dataAsIterable = isObservable(result.data) ? observableToAsyncIterable(result.data, opts.req.signal) : result.data; return dataAsIterable; }); const stream = sseStreamProducer((0, import_objectSpread23.default)((0, import_objectSpread23.default)({}, config3.sse), {}, { data: iterable, serialize: /* @__PURE__ */ __name((v2) => config3.transformer.output.serialize(v2), "serialize"), formatError(errorOpts) { var _call$procedure$_def$2, _call$procedure3, _opts$onError2; const error$1 = getTRPCErrorFromUnknown(errorOpts.error); const input = call === null || call === void 0 ? void 0 : call.result(); const path3 = call === null || call === void 0 ? void 0 : call.path; const type = (_call$procedure$_def$2 = call === null || call === void 0 || (_call$procedure3 = call.procedure) === null || _call$procedure3 === void 0 ? void 0 : _call$procedure3._def.type) !== null && _call$procedure$_def$2 !== void 0 ? _call$procedure$_def$2 : "unknown"; (_opts$onError2 = opts.onError) === null || _opts$onError2 === void 0 || _opts$onError2.call(opts, { error: error$1, path: path3, input, ctx: ctxManager.valueOrUndefined(), req: opts.req, type }); const shape = getErrorShape({ config: config3, ctx: ctxManager.valueOrUndefined(), error: error$1, input, path: path3, type }); return shape; } })); for (const [key, value] of Object.entries(sseHeaders)) headers.set(key, value); const headResponse$1 = initResponse({ ctx: ctxManager.valueOrUndefined(), info: info3, responseMeta: opts.responseMeta, errors: [], headers, untransformedJSON: null }); const abortSignal = result === null || result === void 0 ? void 0 : result.signal; let responseBody = stream; if (abortSignal) { const reader = stream.getReader(); const onAbort = /* @__PURE__ */ __name(() => void reader.cancel(), "onAbort"); if (abortSignal.aborted) onAbort(); else abortSignal.addEventListener("abort", onAbort, { once: true }); responseBody = new ReadableStream({ async pull(controller) { const chunk = await reader.read(); if (chunk.done) { abortSignal.removeEventListener("abort", onAbort); controller.close(); } else controller.enqueue(chunk.value); }, cancel() { abortSignal.removeEventListener("abort", onAbort); return reader.cancel(); } }); } return new Response(responseBody, { headers, status: headResponse$1.status }); } } } if (info3.accept === "application/jsonl") { headers.set("content-type", "application/json"); headers.set("transfer-encoding", "chunked"); const headResponse$1 = initResponse({ ctx: ctxManager.valueOrUndefined(), info: info3, responseMeta: opts.responseMeta, errors: [], headers, untransformedJSON: null }); const stream = jsonlStreamProducer((0, import_objectSpread23.default)((0, import_objectSpread23.default)({}, config3.jsonl), {}, { maxDepth: Infinity, data: rpcCalls.map(async (res) => { const [error50, result] = await res; const call = info3.calls[0]; if (error50) { var _procedure$_def$type, _procedure; return { error: getErrorShape({ config: config3, ctx: ctxManager.valueOrUndefined(), error: error50, input: call.result(), path: call.path, type: (_procedure$_def$type = (_procedure = call.procedure) === null || _procedure === void 0 ? void 0 : _procedure._def.type) !== null && _procedure$_def$type !== void 0 ? _procedure$_def$type : "unknown" }) }; } const iterable = isObservable(result.data) ? observableToAsyncIterable(result.data, opts.req.signal) : Promise.resolve(result.data); return { result: Promise.resolve({ data: iterable }) }; }), serialize: /* @__PURE__ */ __name((data) => config3.transformer.output.serialize(data), "serialize"), onError: /* @__PURE__ */ __name((cause) => { var _opts$onError3, _info$type; (_opts$onError3 = opts.onError) === null || _opts$onError3 === void 0 || _opts$onError3.call(opts, { error: getTRPCErrorFromUnknown(cause), path: void 0, input: void 0, ctx: ctxManager.valueOrUndefined(), req: opts.req, type: (_info$type = info3 === null || info3 === void 0 ? void 0 : info3.type) !== null && _info$type !== void 0 ? _info$type : "unknown" }); }, "onError"), formatError(errorOpts) { var _call$procedure$_def$3, _call$procedure4; const call = info3 === null || info3 === void 0 ? void 0 : info3.calls[errorOpts.path[0]]; const error50 = getTRPCErrorFromUnknown(errorOpts.error); const input = call === null || call === void 0 ? void 0 : call.result(); const path3 = call === null || call === void 0 ? void 0 : call.path; const type = (_call$procedure$_def$3 = call === null || call === void 0 || (_call$procedure4 = call.procedure) === null || _call$procedure4 === void 0 ? void 0 : _call$procedure4._def.type) !== null && _call$procedure$_def$3 !== void 0 ? _call$procedure$_def$3 : "unknown"; const shape = getErrorShape({ config: config3, ctx: ctxManager.valueOrUndefined(), error: error50, input, path: path3, type }); return shape; } })); return new Response(stream, { headers, status: headResponse$1.status }); } headers.set("content-type", "application/json"); const results = (await Promise.all(rpcCalls)).map((res) => { const [error50, result] = res; if (error50) return res; if (isDataStream(result.data)) return [new TRPCError({ code: "UNSUPPORTED_MEDIA_TYPE", message: "Cannot use stream-like response in non-streaming request - use httpBatchStreamLink" }), void 0]; return res; }); const resultAsRPCResponse = results.map(([error50, result], index) => { const call = info3.calls[index]; if (error50) { var _call$procedure$_def$4, _call$procedure5; return { error: getErrorShape({ config: config3, ctx: ctxManager.valueOrUndefined(), error: error50, input: call.result(), path: call.path, type: (_call$procedure$_def$4 = (_call$procedure5 = call.procedure) === null || _call$procedure5 === void 0 ? void 0 : _call$procedure5._def.type) !== null && _call$procedure$_def$4 !== void 0 ? _call$procedure$_def$4 : "unknown" }) }; } return { result: { data: result.data } }; }); const errors2 = results.map(([error50]) => error50).filter(Boolean); const headResponse = initResponse({ ctx: ctxManager.valueOrUndefined(), info: info3, responseMeta: opts.responseMeta, untransformedJSON: resultAsRPCResponse, errors: errors2, headers }); return new Response(JSON.stringify(transformTRPCResponse(config3, resultAsRPCResponse)), { status: headResponse.status, headers }); } catch (cause) { var _info$type2; const [_infoError, info3] = infoTuple; const ctx = ctxManager.valueOrUndefined(); const { error: error50, untransformedJSON, body } = caughtErrorToData(cause, { opts, ctx: ctxManager.valueOrUndefined(), type: (_info$type2 = info3 === null || info3 === void 0 ? void 0 : info3.type) !== null && _info$type2 !== void 0 ? _info$type2 : "unknown" }); const headResponse = initResponse({ ctx, info: info3, responseMeta: opts.responseMeta, untransformedJSON, errors: [error50], headers }); return new Response(body, { status: headResponse.status, headers }); } } __name(resolveResponse, "resolveResponse"); // ../../node_modules/@trpc/server/dist/adapters/fetch/index.mjs var import_objectSpread24 = __toESM2(require_objectSpread2(), 1); var trimSlashes = /* @__PURE__ */ __name((path3) => { path3 = path3.startsWith("/") ? path3.slice(1) : path3; path3 = path3.endsWith("/") ? path3.slice(0, -1) : path3; return path3; }, "trimSlashes"); async function fetchRequestHandler(opts) { const resHeaders = new Headers(); const createContext = /* @__PURE__ */ __name(async (innerOpts) => { var _opts$createContext; return (_opts$createContext = opts.createContext) === null || _opts$createContext === void 0 ? void 0 : _opts$createContext.call(opts, (0, import_objectSpread24.default)({ req: opts.req, resHeaders }, innerOpts)); }, "createContext"); const url2 = new URL(opts.req.url); const pathname = trimSlashes(url2.pathname); const endpoint = trimSlashes(opts.endpoint); const path3 = trimSlashes(pathname.slice(endpoint.length)); return await resolveResponse((0, import_objectSpread24.default)((0, import_objectSpread24.default)({}, opts), {}, { req: opts.req, createContext, path: path3, error: null, onError(o) { var _opts$onError; opts === null || opts === void 0 || (_opts$onError = opts.onError) === null || _opts$onError === void 0 || _opts$onError.call(opts, (0, import_objectSpread24.default)((0, import_objectSpread24.default)({}, o), {}, { req: opts.req })); }, responseMeta(data) { var _opts$responseMeta; const meta3 = (_opts$responseMeta = opts.responseMeta) === null || _opts$responseMeta === void 0 ? void 0 : _opts$responseMeta.call(opts, data); if (meta3 === null || meta3 === void 0 ? void 0 : meta3.headers) { if (meta3.headers instanceof Headers) for (const [key, value] of meta3.headers.entries()) resHeaders.append(key, value); else for (const [key, value] of Object.entries(meta3.headers)) if (Array.isArray(value)) for (const v2 of value) resHeaders.append(key, v2); else if (typeof value === "string") resHeaders.set(key, value); } return { headers: resHeaders, status: meta3 === null || meta3 === void 0 ? void 0 : meta3.status }; } })); } __name(fetchRequestHandler, "fetchRequestHandler"); // ../../node_modules/hono/dist/helper/route/index.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var matchedRoutes = /* @__PURE__ */ __name((c) => ( // @ts-expect-error c.req[GET_MATCH_RESULT] is not typed c.req[GET_MATCH_RESULT][0].map(([[, route]]) => route) ), "matchedRoutes"); var routePath = /* @__PURE__ */ __name((c, index) => matchedRoutes(c).at(index ?? c.req.routeIndex)?.path ?? "", "routePath"); // ../../node_modules/@hono/trpc-server/dist/index.js var trpcServer = /* @__PURE__ */ __name(({ endpoint, createContext, ...rest }) => { const bodyProps = /* @__PURE__ */ new Set([ "arrayBuffer", "blob", "formData", "json", "text" ]); return async (c) => { const canWithBody = c.req.method === "GET" || c.req.method === "HEAD"; let resolvedEndpoint = endpoint; if (!endpoint) { const path3 = routePath(c); if (path3) resolvedEndpoint = path3.replace(/\/\*+$/, "") || "/trpc"; else resolvedEndpoint = "/trpc"; } return await fetchRequestHandler({ ...rest, createContext: /* @__PURE__ */ __name(async (opts) => ({ ...createContext ? await createContext(opts, c) : {}, env: c.env }), "createContext"), endpoint: resolvedEndpoint, req: canWithBody ? c.req.raw : new Proxy(c.req.raw, { get(t8, p, _r) { if (bodyProps.has(p)) return () => c.req[p](); return Reflect.get(t8, p, t8); } }) }); }; }, "trpcServer"); // src/dbService.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // src/sqliteImporter.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../packages/db_helper_sqlite/index.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../packages/db_helper_sqlite/src/db/db_index.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/d1/driver.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_entity(); init_logger(); init_relations(); init_db(); init_dialect(); // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/d1/session.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_entity(); init_logger(); init_sql(); init_sqlite_core(); init_session(); init_utils2(); var SQLiteD1Session = class extends SQLiteSession { static { __name(this, "SQLiteD1Session"); } constructor(client, dialect, schema, options = {}) { super(dialect); this.client = client; this.schema = schema; this.options = options; this.logger = options.logger ?? new NoopLogger(); this.cache = options.cache ?? new NoopCache(); } static [entityKind] = "SQLiteD1Session"; logger; cache; prepareQuery(query, fields, executeMethod, isResponseInArrayMode, customResultMapper, queryMetadata, cacheConfig) { const stmt = this.client.prepare(query.sql); return new D1PreparedQuery( stmt, query, this.logger, this.cache, queryMetadata, cacheConfig, fields, executeMethod, isResponseInArrayMode, customResultMapper ); } async batch(queries) { const preparedQueries = []; const builtQueries = []; for (const query of queries) { const preparedQuery = query._prepare(); const builtQuery = preparedQuery.getQuery(); preparedQueries.push(preparedQuery); if (builtQuery.params.length > 0) { builtQueries.push(preparedQuery.stmt.bind(...builtQuery.params)); } else { const builtQuery2 = preparedQuery.getQuery(); builtQueries.push( this.client.prepare(builtQuery2.sql).bind(...builtQuery2.params) ); } } const batchResults = await this.client.batch(builtQueries); return batchResults.map((result, i) => preparedQueries[i].mapResult(result, true)); } extractRawAllValueFromBatchResult(result) { return result.results; } extractRawGetValueFromBatchResult(result) { return result.results[0]; } extractRawValuesValueFromBatchResult(result) { return d1ToRawMapping(result.results); } async transaction(transaction, config3) { const tx = new D1Transaction("async", this.dialect, this, this.schema); await this.run(sql.raw(`begin${config3?.behavior ? " " + config3.behavior : ""}`)); try { const result = await transaction(tx); await this.run(sql`commit`); return result; } catch (err) { await this.run(sql`rollback`); throw err; } } }; var D1Transaction = class _D1Transaction extends SQLiteTransaction { static { __name(this, "D1Transaction"); } static [entityKind] = "D1Transaction"; async transaction(transaction) { const savepointName = `sp${this.nestedIndex}`; const tx = new _D1Transaction("async", this.dialect, this.session, this.schema, this.nestedIndex + 1); await this.session.run(sql.raw(`savepoint ${savepointName}`)); try { const result = await transaction(tx); await this.session.run(sql.raw(`release savepoint ${savepointName}`)); return result; } catch (err) { await this.session.run(sql.raw(`rollback to savepoint ${savepointName}`)); throw err; } } }; function d1ToRawMapping(results) { const rows = []; for (const row of results) { const entry = Object.keys(row).map((k) => row[k]); rows.push(entry); } return rows; } __name(d1ToRawMapping, "d1ToRawMapping"); var D1PreparedQuery = class extends SQLitePreparedQuery { static { __name(this, "D1PreparedQuery"); } constructor(stmt, query, logger4, cache2, queryMetadata, cacheConfig, fields, executeMethod, _isResponseInArrayMode, customResultMapper) { super("async", executeMethod, query, cache2, queryMetadata, cacheConfig); this.logger = logger4; this._isResponseInArrayMode = _isResponseInArrayMode; this.customResultMapper = customResultMapper; this.fields = fields; this.stmt = stmt; } static [entityKind] = "D1PreparedQuery"; /** @internal */ customResultMapper; /** @internal */ fields; /** @internal */ stmt; async run(placeholderValues) { const params = fillPlaceholders(this.query.params, placeholderValues ?? {}); this.logger.logQuery(this.query.sql, params); return await this.queryWithCache(this.query.sql, params, async () => { return this.stmt.bind(...params).run(); }); } async all(placeholderValues) { const { fields, query, logger: logger4, stmt, customResultMapper } = this; if (!fields && !customResultMapper) { const params = fillPlaceholders(query.params, placeholderValues ?? {}); logger4.logQuery(query.sql, params); return await this.queryWithCache(query.sql, params, async () => { return stmt.bind(...params).all().then(({ results }) => this.mapAllResult(results)); }); } const rows = await this.values(placeholderValues); return this.mapAllResult(rows); } mapAllResult(rows, isFromBatch) { if (isFromBatch) { rows = d1ToRawMapping(rows.results); } if (!this.fields && !this.customResultMapper) { return rows; } if (this.customResultMapper) { return this.customResultMapper(rows); } return rows.map((row) => mapResultRow(this.fields, row, this.joinsNotNullableMap)); } async get(placeholderValues) { const { fields, joinsNotNullableMap, query, logger: logger4, stmt, customResultMapper } = this; if (!fields && !customResultMapper) { const params = fillPlaceholders(query.params, placeholderValues ?? {}); logger4.logQuery(query.sql, params); return await this.queryWithCache(query.sql, params, async () => { return stmt.bind(...params).all().then(({ results }) => results[0]); }); } const rows = await this.values(placeholderValues); if (!rows[0]) { return void 0; } if (customResultMapper) { return customResultMapper(rows); } return mapResultRow(fields, rows[0], joinsNotNullableMap); } mapGetResult(result, isFromBatch) { if (isFromBatch) { result = d1ToRawMapping(result.results)[0]; } if (!this.fields && !this.customResultMapper) { return result; } if (this.customResultMapper) { return this.customResultMapper([result]); } return mapResultRow(this.fields, result, this.joinsNotNullableMap); } async values(placeholderValues) { const params = fillPlaceholders(this.query.params, placeholderValues ?? {}); this.logger.logQuery(this.query.sql, params); return await this.queryWithCache(this.query.sql, params, async () => { return this.stmt.bind(...params).raw(); }); } /** @internal */ isResponseInArrayMode() { return this._isResponseInArrayMode; } }; // ../../packages/db_helper_sqlite/node_modules/drizzle-orm/d1/driver.js var DrizzleD1Database = class extends BaseSQLiteDatabase { static { __name(this, "DrizzleD1Database"); } static [entityKind] = "D1Database"; async batch(batch) { return this.session.batch(batch); } }; function drizzle(client, config3 = {}) { const dialect = new SQLiteAsyncDialect({ casing: config3.casing }); let logger4; if (config3.logger === true) { logger4 = new DefaultLogger(); } else if (config3.logger !== false) { logger4 = config3.logger; } let schema; if (config3.schema) { const tablesConfig = extractTablesRelationalConfig( config3.schema, createTableRelationsHelpers ); schema = { fullSchema: config3.schema, schema: tablesConfig.tables, tableNamesMap: tablesConfig.tableNamesMap }; } const session = new SQLiteD1Session(client, dialect, schema, { logger: logger4, cache: config3.cache }); const db3 = new DrizzleD1Database("async", dialect, session, schema); db3.$client = client; db3.$cache = config3.cache; if (db3.$cache) { db3.$cache["invalidate"] = config3.cache?.onMutate; } return db3; } __name(drizzle, "drizzle"); // ../../packages/db_helper_sqlite/src/db/db_index.ts init_schema(); var dbInstance = null; function initDb(database) { const base = drizzle(database, { schema: schema_exports }); dbInstance = Object.assign(base, { transaction: /* @__PURE__ */ __name(async (handler) => { return handler(base); }, "transaction") }); } __name(initDb, "initDb"); var db = new Proxy({}, { get(_target, prop) { if (!dbInstance) { throw new Error("D1 database not initialized. Call initDb(env.DB) before using db helpers."); } return dbInstance[prop]; } }); // ../../packages/db_helper_sqlite/index.ts init_schema(); init_schema(); // ../../packages/db_helper_sqlite/src/admin-apis/banner.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_schema(); init_drizzle_orm(); setTimeout(async () => { const res = await db.select().from(staffUsers); console.log(res); }, 5e3); async function getBanners() { const banners = await db.query.homeBanners.findMany({ orderBy: desc(homeBanners.createdAt) }); return banners.map((banner) => ({ id: banner.id, name: banner.name, imageUrl: banner.imageUrl, description: banner.description, productIds: banner.productIds || [], redirectUrl: banner.redirectUrl, serialNum: banner.serialNum, isActive: banner.isActive, createdAt: banner.createdAt, lastUpdated: banner.lastUpdated })); } __name(getBanners, "getBanners"); async function getBannerById(id) { const banner = await db.query.homeBanners.findFirst({ where: eq(homeBanners.id, id) }); if (!banner) return null; return { id: banner.id, name: banner.name, imageUrl: banner.imageUrl, description: banner.description, productIds: banner.productIds || [], redirectUrl: banner.redirectUrl, serialNum: banner.serialNum, isActive: banner.isActive, createdAt: banner.createdAt, lastUpdated: banner.lastUpdated }; } __name(getBannerById, "getBannerById"); async function createBanner(input) { const [banner] = await db.insert(homeBanners).values({ name: input.name, imageUrl: input.imageUrl, description: input.description, productIds: input.productIds || [], redirectUrl: input.redirectUrl, serialNum: input.serialNum, isActive: input.isActive }).returning(); return { id: banner.id, name: banner.name, imageUrl: banner.imageUrl, description: banner.description, productIds: banner.productIds || [], redirectUrl: banner.redirectUrl, serialNum: banner.serialNum, isActive: banner.isActive, createdAt: banner.createdAt, lastUpdated: banner.lastUpdated }; } __name(createBanner, "createBanner"); async function updateBanner(id, input) { const [banner] = await db.update(homeBanners).set({ ...input, lastUpdated: /* @__PURE__ */ new Date() }).where(eq(homeBanners.id, id)).returning(); return { id: banner.id, name: banner.name, imageUrl: banner.imageUrl, description: banner.description, productIds: banner.productIds || [], redirectUrl: banner.redirectUrl, serialNum: banner.serialNum, isActive: banner.isActive, createdAt: banner.createdAt, lastUpdated: banner.lastUpdated }; } __name(updateBanner, "updateBanner"); async function deleteBanner(id) { await db.delete(homeBanners).where(eq(homeBanners.id, id)); } __name(deleteBanner, "deleteBanner"); // ../../packages/db_helper_sqlite/src/admin-apis/complaint.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_schema(); init_drizzle_orm(); async function getComplaints(cursor, limit = 20) { const whereCondition = cursor ? lt(complaints.id, cursor) : void 0; const complaintsData = await db.select({ id: complaints.id, complaintBody: complaints.complaintBody, userId: complaints.userId, orderId: complaints.orderId, isResolved: complaints.isResolved, response: complaints.response, createdAt: complaints.createdAt, images: complaints.images, userName: users.name, userMobile: users.mobile }).from(complaints).leftJoin(users, eq(complaints.userId, users.id)).where(whereCondition).orderBy(desc(complaints.id)).limit(limit + 1); const hasMore = complaintsData.length > limit; const complaintsToReturn = hasMore ? complaintsData.slice(0, limit) : complaintsData; return { complaints: complaintsToReturn.map((c) => ({ id: c.id, complaintBody: c.complaintBody, userId: c.userId, orderId: c.orderId, isResolved: c.isResolved, response: c.response, createdAt: c.createdAt, images: c.images, userName: c.userName, userMobile: c.userMobile })), hasMore }; } __name(getComplaints, "getComplaints"); async function resolveComplaint(id, response) { await db.update(complaints).set({ isResolved: true, response }).where(eq(complaints.id, id)); } __name(resolveComplaint, "resolveComplaint"); // ../../packages/db_helper_sqlite/src/admin-apis/const.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_schema(); async function getAllConstants() { const constants = await db.select().from(keyValStore); return constants.map((c) => ({ key: c.key, value: c.value })); } __name(getAllConstants, "getAllConstants"); async function upsertConstants(constants) { await db.transaction(async (tx) => { for (const { key, value } of constants) { await tx.insert(keyValStore).values({ key, value }).onConflictDoUpdate({ target: keyValStore.key, set: { value } }); } }); } __name(upsertConstants, "upsertConstants"); // ../../packages/db_helper_sqlite/src/admin-apis/coupon.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_schema(); init_drizzle_orm(); async function getAllCoupons(cursor, limit = 50, search) { let whereCondition = void 0; const conditions = []; if (cursor) { conditions.push(lt(coupons.id, cursor)); } if (search && search.trim()) { conditions.push(like(coupons.couponCode, `%${search}%`)); } if (conditions.length > 0) { whereCondition = and(...conditions); } const result = await db.query.coupons.findMany({ where: whereCondition, with: { creator: true, applicableUsers: { with: { user: true } }, applicableProducts: { with: { product: true } } }, orderBy: desc(coupons.createdAt), limit: limit + 1 }); const hasMore = result.length > limit; const couponsList = hasMore ? result.slice(0, limit) : result; return { coupons: couponsList, hasMore }; } __name(getAllCoupons, "getAllCoupons"); async function getCouponById(id) { return await db.query.coupons.findFirst({ where: eq(coupons.id, id), with: { creator: true, applicableUsers: { with: { user: true } }, applicableProducts: { with: { product: true } } } }); } __name(getCouponById, "getCouponById"); async function createCouponWithRelations(input, applicableUsers, applicableProducts) { return await db.transaction(async (tx) => { const [coupon] = await tx.insert(coupons).values({ couponCode: input.couponCode, isUserBased: input.isUserBased, discountPercent: input.discountPercent, flatDiscount: input.flatDiscount, minOrder: input.minOrder, productIds: input.productIds, createdBy: input.createdBy, maxValue: input.maxValue, isApplyForAll: input.isApplyForAll, validTill: input.validTill, maxLimitForUser: input.maxLimitForUser, exclusiveApply: input.exclusiveApply }).returning(); if (applicableUsers && applicableUsers.length > 0) { await tx.insert(couponApplicableUsers).values( applicableUsers.map((userId) => ({ couponId: coupon.id, userId })) ); } if (applicableProducts && applicableProducts.length > 0) { await tx.insert(couponApplicableProducts).values( applicableProducts.map((productId) => ({ couponId: coupon.id, productId })) ); } return coupon; }); } __name(createCouponWithRelations, "createCouponWithRelations"); async function updateCouponWithRelations(id, input, applicableUsers, applicableProducts) { return await db.transaction(async (tx) => { const [coupon] = await tx.update(coupons).set({ ...input }).where(eq(coupons.id, id)).returning(); if (applicableUsers !== void 0) { await tx.delete(couponApplicableUsers).where(eq(couponApplicableUsers.couponId, id)); if (applicableUsers.length > 0) { await tx.insert(couponApplicableUsers).values( applicableUsers.map((userId) => ({ couponId: id, userId })) ); } } if (applicableProducts !== void 0) { await tx.delete(couponApplicableProducts).where(eq(couponApplicableProducts.couponId, id)); if (applicableProducts.length > 0) { await tx.insert(couponApplicableProducts).values( applicableProducts.map((productId) => ({ couponId: id, productId })) ); } } return coupon; }); } __name(updateCouponWithRelations, "updateCouponWithRelations"); async function invalidateCoupon(id) { const result = await db.update(coupons).set({ isInvalidated: true }).where(eq(coupons.id, id)).returning(); return result[0]; } __name(invalidateCoupon, "invalidateCoupon"); async function validateCoupon(code, userId, orderAmount) { const coupon = await db.query.coupons.findFirst({ where: and( eq(coupons.couponCode, code.toUpperCase()), eq(coupons.isInvalidated, false) ) }); if (!coupon) { return { valid: false, message: "Coupon not found or invalidated" }; } if (coupon.validTill && new Date(coupon.validTill) < /* @__PURE__ */ new Date()) { return { valid: false, message: "Coupon has expired" }; } if (!coupon.isApplyForAll && !coupon.isUserBased) { return { valid: false, message: "Coupon is not available for use" }; } const minOrderValue2 = coupon.minOrder ? parseFloat(coupon.minOrder) : 0; if (minOrderValue2 > 0 && orderAmount < minOrderValue2) { return { valid: false, message: `Minimum order amount is ${minOrderValue2}` }; } let discountAmount = 0; if (coupon.discountPercent) { const percent = parseFloat(coupon.discountPercent); discountAmount = orderAmount * percent / 100; } else if (coupon.flatDiscount) { discountAmount = parseFloat(coupon.flatDiscount); } const maxValueLimit = coupon.maxValue ? parseFloat(coupon.maxValue) : 0; if (maxValueLimit > 0 && discountAmount > maxValueLimit) { discountAmount = maxValueLimit; } return { valid: true, discountAmount, coupon: { id: coupon.id, discountPercent: coupon.discountPercent, flatDiscount: coupon.flatDiscount, maxValue: coupon.maxValue } }; } __name(validateCoupon, "validateCoupon"); async function getReservedCoupons(cursor, limit = 50, search) { let whereCondition = void 0; const conditions = []; if (cursor) { conditions.push(lt(reservedCoupons.id, cursor)); } if (search && search.trim()) { conditions.push(or( like(reservedCoupons.secretCode, `%${search}%`), like(reservedCoupons.couponCode, `%${search}%`) )); } if (conditions.length > 0) { whereCondition = and(...conditions); } const result = await db.query.reservedCoupons.findMany({ where: whereCondition, with: { redeemedUser: true, creator: true }, orderBy: desc(reservedCoupons.createdAt), limit: limit + 1 }); const hasMore = result.length > limit; const couponsList = hasMore ? result.slice(0, limit) : result; return { coupons: couponsList, hasMore }; } __name(getReservedCoupons, "getReservedCoupons"); async function createReservedCouponWithProducts(input, applicableProducts) { return await db.transaction(async (tx) => { const [coupon] = await tx.insert(reservedCoupons).values({ secretCode: input.secretCode, couponCode: input.couponCode, discountPercent: input.discountPercent, flatDiscount: input.flatDiscount, minOrder: input.minOrder, productIds: input.productIds, maxValue: input.maxValue, validTill: input.validTill, maxLimitForUser: input.maxLimitForUser, exclusiveApply: input.exclusiveApply, createdBy: input.createdBy }).returning(); if (applicableProducts && applicableProducts.length > 0) { await tx.insert(couponApplicableProducts).values( applicableProducts.map((productId) => ({ couponId: coupon.id, productId })) ); } return coupon; }); } __name(createReservedCouponWithProducts, "createReservedCouponWithProducts"); async function checkUsersExist(userIds) { const existingUsers = await db.query.users.findMany({ where: inArray(users.id, userIds), columns: { id: true } }); return existingUsers.length === userIds.length; } __name(checkUsersExist, "checkUsersExist"); async function checkCouponExists(couponCode) { const existing = await db.query.coupons.findFirst({ where: eq(coupons.couponCode, couponCode) }); return !!existing; } __name(checkCouponExists, "checkCouponExists"); async function checkReservedCouponExists(secretCode) { const existing = await db.query.reservedCoupons.findFirst({ where: eq(reservedCoupons.secretCode, secretCode) }); return !!existing; } __name(checkReservedCouponExists, "checkReservedCouponExists"); async function generateCancellationCoupon(orderId, staffUserId, userId, orderAmount, couponCode) { return await db.transaction(async (tx) => { const expiryDate = /* @__PURE__ */ new Date(); expiryDate.setDate(expiryDate.getDate() + 30); const [coupon] = await tx.insert(coupons).values({ couponCode, isUserBased: true, flatDiscount: orderAmount.toString(), minOrder: orderAmount.toString(), maxValue: orderAmount.toString(), validTill: expiryDate, maxLimitForUser: 1, createdBy: staffUserId, isApplyForAll: false }).returning(); await tx.insert(couponApplicableUsers).values({ couponId: coupon.id, userId }); await tx.update(orderStatus).set({ refundCouponId: coupon.id }).where(eq(orderStatus.orderId, orderId)); return coupon; }); } __name(generateCancellationCoupon, "generateCancellationCoupon"); async function getOrderWithUser(orderId) { return await db.query.orders.findFirst({ where: eq(orders.id, orderId), with: { user: true } }); } __name(getOrderWithUser, "getOrderWithUser"); async function createCouponForUser(mobile, couponCode, staffUserId) { return await db.transaction(async (tx) => { let user = await tx.query.users.findFirst({ where: eq(users.mobile, mobile) }); if (!user) { const [newUser] = await tx.insert(users).values({ name: null, email: null, mobile }).returning(); user = newUser; } const [coupon] = await tx.insert(coupons).values({ couponCode, isUserBased: true, discountPercent: "20", minOrder: "1000", maxValue: "500", maxLimitForUser: 1, isApplyForAll: false, exclusiveApply: false, createdBy: staffUserId, validTill: new Date(Date.now() + 90 * 24 * 60 * 60 * 1e3) }).returning(); await tx.insert(couponApplicableUsers).values({ couponId: coupon.id, userId: user.id }); return { coupon, user: { id: user.id, mobile: user.mobile, name: user.name } }; }); } __name(createCouponForUser, "createCouponForUser"); async function getUsersForCoupon(search, limit = 20, offset = 0) { let whereCondition = void 0; if (search && search.trim()) { whereCondition = or( like(users.name, `%${search}%`), like(users.mobile, `%${search}%`) ); } const userList = await db.query.users.findMany({ where: whereCondition, columns: { id: true, name: true, mobile: true }, limit, offset, orderBy: asc(users.name) }); return { users: userList.map((user) => ({ id: user.id, name: user.name || "Unknown", mobile: user.mobile })) }; } __name(getUsersForCoupon, "getUsersForCoupon"); // ../../packages/db_helper_sqlite/src/admin-apis/order.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_schema(); init_drizzle_orm(); var isPaymentStatus = /* @__PURE__ */ __name((value) => value === "pending" || value === "success" || value === "cod" || value === "failed", "isPaymentStatus"); var isRefundStatus = /* @__PURE__ */ __name((value) => value === "success" || value === "pending" || value === "failed" || value === "none" || value === "na" || value === "processed", "isRefundStatus"); var mapOrderStatusRecord = /* @__PURE__ */ __name((record2) => ({ id: record2.id, orderTime: record2.orderTime, userId: record2.userId, orderId: record2.orderId, isPackaged: record2.isPackaged, isDelivered: record2.isDelivered, isCancelled: record2.isCancelled, cancelReason: record2.cancelReason ?? null, isCancelledByAdmin: record2.isCancelledByAdmin ?? null, paymentStatus: isPaymentStatus(record2.paymentStatus) ? record2.paymentStatus : "pending", cancellationUserNotes: record2.cancellationUserNotes ?? null, cancellationAdminNotes: record2.cancellationAdminNotes ?? null, cancellationReviewed: record2.cancellationReviewed, cancellationReviewedAt: record2.cancellationReviewedAt ?? null, refundCouponId: record2.refundCouponId ?? null }), "mapOrderStatusRecord"); async function updateOrderNotes(orderId, adminNotes) { const [result] = await db.update(orders).set({ adminNotes }).where(eq(orders.id, orderId)).returning(); return result || null; } __name(updateOrderNotes, "updateOrderNotes"); async function updateOrderPackaged(orderId, isPackaged) { const orderIdNumber = parseInt(orderId); await db.update(orderItems).set({ is_packaged: isPackaged }).where(eq(orderItems.orderId, orderIdNumber)); if (!isPackaged) { await db.update(orderStatus).set({ isPackaged, isDelivered: false }).where(eq(orderStatus.orderId, orderIdNumber)); } else { await db.update(orderStatus).set({ isPackaged }).where(eq(orderStatus.orderId, orderIdNumber)); } const order = await db.query.orders.findFirst({ where: eq(orders.id, orderIdNumber) }); return { success: true, userId: order?.userId ?? null }; } __name(updateOrderPackaged, "updateOrderPackaged"); async function updateOrderDelivered(orderId, isDelivered) { const orderIdNumber = parseInt(orderId); await db.update(orderStatus).set({ isDelivered }).where(eq(orderStatus.orderId, orderIdNumber)); const order = await db.query.orders.findFirst({ where: eq(orders.id, orderIdNumber) }); return { success: true, userId: order?.userId ?? null }; } __name(updateOrderDelivered, "updateOrderDelivered"); async function getOrderDetails(orderId) { const orderData = await db.query.orders.findFirst({ where: eq(orders.id, orderId), with: { user: true, address: true, slot: true, orderItems: { with: { product: { with: { unit: true } } } }, payment: true, paymentInfo: true, orderStatus: true, refunds: true } }); if (!orderData) { return null; } const couponUsageData = await db.query.couponUsage.findMany({ where: eq(couponUsage.orderId, orderData.id), with: { coupon: true } }); let couponData = null; if (couponUsageData.length > 0) { let totalDiscountAmount = 0; const orderTotal = parseFloat((orderData.totalAmount ?? "0").toString()); for (const usage of couponUsageData) { let discountAmount = 0; if (usage.coupon.discountPercent) { discountAmount = orderTotal * parseFloat(usage.coupon.discountPercent.toString()) / 100; } else if (usage.coupon.flatDiscount) { discountAmount = parseFloat(usage.coupon.flatDiscount.toString()); } if (usage.coupon.maxValue && discountAmount > parseFloat(usage.coupon.maxValue.toString())) { discountAmount = parseFloat(usage.coupon.maxValue.toString()); } totalDiscountAmount += discountAmount; } couponData = { couponCode: couponUsageData.map((u4) => u4.coupon.couponCode).join(", "), couponDescription: `${couponUsageData.length} coupons applied`, discountAmount: totalDiscountAmount }; } const statusRecord = orderData.orderStatus?.[0]; const orderStatusRecord = statusRecord ? mapOrderStatusRecord(statusRecord) : null; let status = "pending"; if (orderStatusRecord?.isCancelled) { status = "cancelled"; } else if (orderStatusRecord?.isDelivered) { status = "delivered"; } const refund = orderData.refunds?.[0]; const refundStatus = refund?.refundStatus && isRefundStatus(refund.refundStatus) ? refund.refundStatus : null; const refundRecord = refund ? { id: refund.id, orderId: refund.orderId, refundAmount: refund.refundAmount, refundStatus, merchantRefundId: refund.merchantRefundId, refundProcessedAt: refund.refundProcessedAt, createdAt: refund.createdAt } : null; return { id: orderData.id, readableId: orderData.id, userId: orderData.user.id, customerName: `${orderData.user.name}`, customerEmail: orderData.user.email, customerMobile: orderData.user.mobile, address: { name: orderData.address.name, line1: orderData.address.addressLine1, line2: orderData.address.addressLine2, city: orderData.address.city, state: orderData.address.state, pincode: orderData.address.pincode, phone: orderData.address.phone }, slotInfo: orderData.slot ? { time: orderData.slot.deliveryTime.toISOString(), sequence: orderData.slot.deliverySequence } : null, isCod: orderData.isCod, isOnlinePayment: orderData.isOnlinePayment, totalAmount: parseFloat(orderData.totalAmount?.toString() || "0") - parseFloat(orderData.deliveryCharge?.toString() || "0"), deliveryCharge: parseFloat(orderData.deliveryCharge?.toString() || "0"), adminNotes: orderData.adminNotes, userNotes: orderData.userNotes, createdAt: orderData.createdAt, status, isPackaged: orderStatusRecord?.isPackaged || false, isDelivered: orderStatusRecord?.isDelivered || false, items: orderData.orderItems.map((item) => ({ id: item.id, name: item.product.name, quantity: item.quantity, productSize: item.product.productQuantity, price: item.price, unit: item.product.unit?.shortNotation, amount: parseFloat(item.price.toString()) * parseFloat(item.quantity || "0"), isPackaged: item.is_packaged, isPackageVerified: item.is_package_verified })), payment: orderData.payment ? { status: orderData.payment.status, gateway: orderData.payment.gateway, merchantOrderId: orderData.payment.merchantOrderId } : null, paymentInfo: orderData.paymentInfo ? { status: orderData.paymentInfo.status, gateway: orderData.paymentInfo.gateway, merchantOrderId: orderData.paymentInfo.merchantOrderId } : null, cancelReason: orderStatusRecord?.cancelReason || null, cancellationReviewed: orderStatusRecord?.cancellationReviewed || false, isRefundDone: refundStatus === "processed" || false, refundStatus, refundAmount: refund?.refundAmount ? parseFloat(refund.refundAmount.toString()) : null, couponData, couponCode: couponData?.couponCode || null, couponDescription: couponData?.couponDescription || null, discountAmount: couponData?.discountAmount || null, orderStatus: orderStatusRecord, refundRecord, isFlashDelivery: orderData.isFlashDelivery }; } __name(getOrderDetails, "getOrderDetails"); async function updateOrderItemPackaging(orderItemId, isPackaged, isPackageVerified) { const orderItem = await db.query.orderItems.findFirst({ where: eq(orderItems.id, orderItemId) }); if (!orderItem) { return { success: false, updated: false }; } const updateData2 = {}; if (isPackaged !== void 0) { updateData2.is_packaged = isPackaged; } if (isPackageVerified !== void 0) { updateData2.is_package_verified = isPackageVerified; } await db.update(orderItems).set(updateData2).where(eq(orderItems.id, orderItemId)); return { success: true, updated: true }; } __name(updateOrderItemPackaging, "updateOrderItemPackaging"); async function removeDeliveryCharge(orderId) { const order = await db.query.orders.findFirst({ where: eq(orders.id, orderId) }); if (!order) { return null; } const currentDeliveryCharge = parseFloat(order.deliveryCharge?.toString() || "0"); const currentTotalAmount = parseFloat(order.totalAmount?.toString() || "0"); const newTotalAmount = currentTotalAmount - currentDeliveryCharge; await db.update(orders).set({ deliveryCharge: "0", totalAmount: newTotalAmount.toString() }).where(eq(orders.id, orderId)); return { success: true, message: "Delivery charge removed" }; } __name(removeDeliveryCharge, "removeDeliveryCharge"); async function getSlotOrders(slotId) { const slotOrders = await db.query.orders.findMany({ where: eq(orders.slotId, parseInt(slotId)), with: { user: true, address: true, slot: true, orderItems: { with: { product: { with: { unit: true } } } }, orderStatus: true } }); const filteredOrders = slotOrders.filter((order) => { const statusRecord = order.orderStatus[0]; return order.isCod || statusRecord && statusRecord.paymentStatus === "success"; }); const formattedOrders = filteredOrders.map((order) => { const statusRecord = order.orderStatus[0]; let status = "pending"; if (statusRecord?.isCancelled) { status = "cancelled"; } else if (statusRecord?.isDelivered) { status = "delivered"; } const items = order.orderItems.map((item) => ({ id: item.id, name: item.product.name, quantity: parseFloat(item.quantity), price: parseFloat(item.price.toString()), amount: parseFloat(item.quantity) * parseFloat(item.price.toString()), unit: item.product.unit?.shortNotation || "", isPackaged: item.is_packaged, isPackageVerified: item.is_package_verified })); const paymentMode = order.isCod ? "COD" : "Online"; return { id: order.id, readableId: order.id, customerName: order.user.name || order.user.mobile + "", address: `${order.address.addressLine1}${order.address.addressLine2 ? `, ${order.address.addressLine2}` : ""}, ${order.address.city}, ${order.address.state} - ${order.address.pincode}, Phone: ${order.address.phone}`, addressId: order.addressId, latitude: order.address.adminLatitude ?? order.address.latitude, longitude: order.address.adminLongitude ?? order.address.longitude, totalAmount: parseFloat(order.totalAmount), items, deliveryTime: order.slot?.deliveryTime.toISOString() || null, status, isPackaged: order.orderItems.every((item) => item.is_packaged) || false, isDelivered: statusRecord?.isDelivered || false, isCod: order.isCod, paymentMode, paymentStatus: isPaymentStatus(statusRecord?.paymentStatus || "pending") ? statusRecord?.paymentStatus || "pending" : "pending", slotId: order.slotId, adminNotes: order.adminNotes, userNotes: order.userNotes }; }); return { success: true, data: formattedOrders }; } __name(getSlotOrders, "getSlotOrders"); async function updateAddressCoords(addressId, latitude, longitude) { const result = await db.update(addresses).set({ adminLatitude: latitude, adminLongitude: longitude }).where(eq(addresses.id, addressId)).returning(); return { success: result.length > 0 }; } __name(updateAddressCoords, "updateAddressCoords"); async function getAllOrders(input) { const { cursor, limit, slotId, packagedFilter, deliveredFilter, cancellationFilter, flashDeliveryFilter } = input; let whereCondition = eq(orders.id, orders.id); if (cursor) { whereCondition = and(whereCondition, lt(orders.id, cursor)); } if (slotId) { whereCondition = and(whereCondition, eq(orders.slotId, slotId)); } if (packagedFilter === "packaged") { whereCondition = and(whereCondition, eq(orderStatus.isPackaged, true)); } else if (packagedFilter === "not_packaged") { whereCondition = and(whereCondition, eq(orderStatus.isPackaged, false)); } if (deliveredFilter === "delivered") { whereCondition = and(whereCondition, eq(orderStatus.isDelivered, true)); } else if (deliveredFilter === "not_delivered") { whereCondition = and(whereCondition, eq(orderStatus.isDelivered, false)); } if (cancellationFilter === "cancelled") { whereCondition = and(whereCondition, eq(orderStatus.isCancelled, true)); } else if (cancellationFilter === "not_cancelled") { whereCondition = and(whereCondition, eq(orderStatus.isCancelled, false)); } if (flashDeliveryFilter === "flash") { whereCondition = and(whereCondition, eq(orders.isFlashDelivery, true)); } else if (flashDeliveryFilter === "regular") { whereCondition = and(whereCondition, eq(orders.isFlashDelivery, false)); } const allOrders = await db.query.orders.findMany({ where: whereCondition, orderBy: desc(orders.createdAt), limit: limit + 1, with: { user: true, address: true, slot: true, orderItems: { with: { product: { with: { unit: true } } } }, orderStatus: true } }); const hasMore = allOrders.length > limit; const ordersToReturn = hasMore ? allOrders.slice(0, limit) : allOrders; const filteredOrders = ordersToReturn.filter((order) => { const statusRecord = order.orderStatus[0]; return order.isCod || statusRecord && statusRecord.paymentStatus === "success"; }); const formattedOrders = filteredOrders.map((order) => { const statusRecord = order.orderStatus[0]; let status = "pending"; if (statusRecord?.isCancelled) { status = "cancelled"; } else if (statusRecord?.isDelivered) { status = "delivered"; } const items = order.orderItems.map((item) => ({ id: item.id, name: item.product.name, quantity: parseFloat(item.quantity), price: parseFloat(item.price.toString()), amount: parseFloat(item.quantity) * parseFloat(item.price.toString()), unit: item.product.unit?.shortNotation || "", productSize: item.product.productQuantity, isPackaged: item.is_packaged, isPackageVerified: item.is_package_verified })).sort((first, second) => first.id - second.id); return { id: order.id, orderId: order.id.toString(), readableId: order.id, customerName: order.user.name || order.user.mobile + "", customerMobile: order.user.mobile, address: `${order.address.addressLine1}${order.address.addressLine2 ? `, ${order.address.addressLine2}` : ""}, ${order.address.city}, ${order.address.state} - ${order.address.pincode}, Phone: ${order.address.phone}`, addressId: order.addressId, latitude: order.address.adminLatitude ?? order.address.latitude, longitude: order.address.adminLongitude ?? order.address.longitude, totalAmount: parseFloat(order.totalAmount), deliveryCharge: parseFloat(order.deliveryCharge || "0"), items, createdAt: order.createdAt, deliveryTime: order.slot?.deliveryTime.toISOString() || null, status, isPackaged: order.orderItems.every((item) => item.is_packaged) || false, isDelivered: statusRecord?.isDelivered || false, isCod: order.isCod, isFlashDelivery: order.isFlashDelivery, userNotes: order.userNotes, adminNotes: order.adminNotes, userNegativityScore: 0, userId: order.userId }; }); return { orders: formattedOrders, nextCursor: hasMore ? ordersToReturn[ordersToReturn.length - 1].id : void 0 }; } __name(getAllOrders, "getAllOrders"); async function rebalanceSlots(slotIds) { const ordersList = await db.query.orders.findMany({ where: inArray(orders.slotId, slotIds), with: { orderItems: { with: { product: true } }, couponUsages: { with: { coupon: true } } } }); const processedOrdersData = ordersList.map((order) => { let newTotal = order.orderItems.reduce((acc, item) => { const latestPrice = +item.product.price; const amount = latestPrice * Number(item.quantity); return acc + amount; }, 0); order.orderItems.forEach((item) => { item.price = item.product.price; item.discountedPrice = item.product.price; }); const coupon = order.couponUsages[0]?.coupon; let discount = 0; if (coupon && !coupon.isInvalidated && (!coupon.validTill || new Date(coupon.validTill) > /* @__PURE__ */ new Date())) { const proportion = Number(order.orderGroupProportion || 1); if (coupon.discountPercent) { const maxDiscount = Number(coupon.maxValue || Infinity) * proportion; discount = Math.min(newTotal * parseFloat(coupon.discountPercent) / 100, maxDiscount); } else { discount = Number(coupon.flatDiscount) * proportion; } } newTotal -= discount; const { couponUsages, orderItems: orderItemsRaw, ...rest } = order; const updatedOrderItems = orderItemsRaw.map((item) => { const { product, ...rawOrderItem } = item; return rawOrderItem; }); return { order: rest, updatedOrderItems, newTotal }; }); const updatedOrderIds = []; await db.transaction(async (tx) => { for (const { order, updatedOrderItems, newTotal } of processedOrdersData) { await tx.update(orders).set({ totalAmount: newTotal.toString() }).where(eq(orders.id, order.id)); updatedOrderIds.push(order.id); for (const item of updatedOrderItems) { await tx.update(orderItems).set({ price: item.price, discountedPrice: item.discountedPrice }).where(eq(orderItems.id, item.id)); } } }); return { success: true, updatedOrders: updatedOrderIds, message: `Rebalanced ${updatedOrderIds.length} orders.` }; } __name(rebalanceSlots, "rebalanceSlots"); async function cancelOrder(orderId, reason) { const order = await db.query.orders.findFirst({ where: eq(orders.id, orderId), with: { orderStatus: true } }); if (!order) { return { success: false, message: "Order not found", error: "order_not_found" }; } const status = order.orderStatus[0]; if (!status) { return { success: false, message: "Order status not found", error: "status_not_found" }; } if (status.isCancelled) { return { success: false, message: "Order is already cancelled", error: "already_cancelled" }; } if (status.isDelivered) { return { success: false, message: "Cannot cancel delivered order", error: "already_delivered" }; } const result = await db.transaction(async (tx) => { await tx.update(orderStatus).set({ isCancelled: true, isCancelledByAdmin: true, cancelReason: reason, cancellationAdminNotes: reason, cancellationReviewed: true, cancellationReviewedAt: /* @__PURE__ */ new Date() }).where(eq(orderStatus.id, status.id)); const refundStatus = order.isCod ? "na" : "pending"; await tx.insert(refunds).values({ orderId: order.id, refundStatus }); return { orderId: order.id, userId: order.userId }; }); return { success: true, message: "Order cancelled successfully", orderId: result.orderId, userId: result.userId }; } __name(cancelOrder, "cancelOrder"); // ../../packages/db_helper_sqlite/src/admin-apis/product.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_schema(); init_drizzle_orm(); var getStringArray = /* @__PURE__ */ __name((value) => { if (!Array.isArray(value)) return null; return value.map((item) => String(item)); }, "getStringArray"); var mapUnit = /* @__PURE__ */ __name((unit) => ({ id: unit.id, shortNotation: unit.shortNotation, fullName: unit.fullName }), "mapUnit"); var mapStore = /* @__PURE__ */ __name((store) => ({ id: store.id, name: store.name, description: store.description, imageUrl: store.imageUrl, owner: store.owner, createdAt: store.createdAt // updatedAt: store.createdAt, }), "mapStore"); var mapProduct = /* @__PURE__ */ __name((product) => ({ id: product.id, name: product.name, shortDescription: product.shortDescription ?? null, longDescription: product.longDescription ?? null, unitId: product.unitId, price: String(product.price ?? "0"), marketPrice: product.marketPrice ? String(product.marketPrice) : null, images: getStringArray(product.images), imageKeys: getStringArray(product.images), isOutOfStock: product.isOutOfStock, isSuspended: product.isSuspended, isFlashAvailable: product.isFlashAvailable, flashPrice: product.flashPrice ? String(product.flashPrice) : null, createdAt: product.createdAt, incrementStep: product.incrementStep, productQuantity: product.productQuantity, storeId: product.storeId }), "mapProduct"); var mapSpecialDeal = /* @__PURE__ */ __name((deal) => ({ id: deal.id, productId: deal.productId, quantity: String(deal.quantity ?? "0"), price: String(deal.price ?? "0"), validTill: deal.validTill }), "mapSpecialDeal"); var mapTagInfo = /* @__PURE__ */ __name((tag2) => ({ id: tag2.id, tagName: tag2.tagName, tagDescription: tag2.tagDescription ?? null, imageUrl: tag2.imageUrl ?? null, isDashboardTag: tag2.isDashboardTag, relatedStores: tag2.relatedStores, createdAt: tag2.createdAt }), "mapTagInfo"); async function getAllProducts() { const products = await db.query.productInfo.findMany({ orderBy: productInfo.name, with: { unit: true, store: true } }); return products.map((product) => ({ ...mapProduct(product), unit: mapUnit(product.unit), store: product.store ? mapStore(product.store) : null })); } __name(getAllProducts, "getAllProducts"); async function getProductById(id) { const product = await db.query.productInfo.findFirst({ where: eq(productInfo.id, id), with: { unit: true } }); if (!product) { return null; } const deals = await db.query.specialDeals.findMany({ where: eq(specialDeals.productId, id), orderBy: specialDeals.quantity }); const productTagsData = await db.query.productTags.findMany({ where: eq(productTags.productId, id), with: { tag: true } }); return { ...mapProduct(product), unit: mapUnit(product.unit), deals: deals.map(mapSpecialDeal), tags: productTagsData.map((tag2) => mapTagInfo(tag2.tag)) }; } __name(getProductById, "getProductById"); async function deleteProduct(id) { const [deletedProduct] = await db.delete(productInfo).where(eq(productInfo.id, id)).returning(); if (!deletedProduct) { return null; } return mapProduct(deletedProduct); } __name(deleteProduct, "deleteProduct"); async function createProduct(input) { const [product] = await db.insert(productInfo).values(input).returning(); return mapProduct(product); } __name(createProduct, "createProduct"); async function updateProduct(id, updates) { const [product] = await db.update(productInfo).set(updates).where(eq(productInfo.id, id)).returning(); if (!product) { return null; } return mapProduct(product); } __name(updateProduct, "updateProduct"); async function toggleProductOutOfStock(id) { const product = await db.query.productInfo.findFirst({ where: eq(productInfo.id, id) }); if (!product) { return null; } const [updatedProduct] = await db.update(productInfo).set({ isOutOfStock: !product.isOutOfStock }).where(eq(productInfo.id, id)).returning(); if (!updatedProduct) { return null; } return mapProduct(updatedProduct); } __name(toggleProductOutOfStock, "toggleProductOutOfStock"); async function updateSlotProducts(slotId, productIds) { const currentAssociations = await db.query.productSlots.findMany({ where: eq(productSlots.slotId, parseInt(slotId)), columns: { productId: true } }); const currentProductIds = currentAssociations.map((assoc) => assoc.productId); const newProductIds = productIds.map((id) => parseInt(id)); const productsToAdd = newProductIds.filter((id) => !currentProductIds.includes(id)); const productsToRemove = currentProductIds.filter((id) => !newProductIds.includes(id)); if (productsToRemove.length > 0) { await db.delete(productSlots).where( and( eq(productSlots.slotId, parseInt(slotId)), inArray(productSlots.productId, productsToRemove) ) ); } if (productsToAdd.length > 0) { const newAssociations = productsToAdd.map((productId) => ({ productId, slotId: parseInt(slotId) })); await db.insert(productSlots).values(newAssociations); } return { message: "Slot products updated successfully", added: productsToAdd.length, removed: productsToRemove.length }; } __name(updateSlotProducts, "updateSlotProducts"); async function getSlotProductIds(slotId) { const associations = await db.query.productSlots.findMany({ where: eq(productSlots.slotId, parseInt(slotId)), columns: { productId: true } }); return associations.map((assoc) => assoc.productId); } __name(getSlotProductIds, "getSlotProductIds"); async function getAllProductTags() { const tags = await db.query.productTagInfo.findMany({ with: { products: { with: { product: true } } } }); return tags.map((tag2) => ({ ...mapTagInfo(tag2), products: tag2.products.map((assignment) => ({ productId: assignment.productId, tagId: assignment.tagId, assignedAt: assignment.assignedAt, product: mapProduct(assignment.product) })) })); } __name(getAllProductTags, "getAllProductTags"); async function getAllProductTagInfos() { const tags = await db.query.productTagInfo.findMany({ orderBy: productTagInfo.tagName }); return tags.map(mapTagInfo); } __name(getAllProductTagInfos, "getAllProductTagInfos"); async function getProductTagInfoById(tagId) { const tag2 = await db.query.productTagInfo.findFirst({ where: eq(productTagInfo.id, tagId) }); if (!tag2) { return null; } return mapTagInfo(tag2); } __name(getProductTagInfoById, "getProductTagInfoById"); async function createProductTag(input) { const [tag2] = await db.insert(productTagInfo).values({ tagName: input.tagName, tagDescription: input.tagDescription || null, imageUrl: input.imageUrl || null, isDashboardTag: input.isDashboardTag || false, relatedStores: input.relatedStores || [] }).returning(); return { ...mapTagInfo(tag2), products: [] }; } __name(createProductTag, "createProductTag"); async function updateProductTag(tagId, input) { const [tag2] = await db.update(productTagInfo).set({ ...input.tagName !== void 0 && { tagName: input.tagName }, ...input.tagDescription !== void 0 && { tagDescription: input.tagDescription }, ...input.imageUrl !== void 0 && { imageUrl: input.imageUrl }, ...input.isDashboardTag !== void 0 && { isDashboardTag: input.isDashboardTag }, ...input.relatedStores !== void 0 && { relatedStores: input.relatedStores } }).where(eq(productTagInfo.id, tagId)).returning(); const fullTag = await db.query.productTagInfo.findFirst({ where: eq(productTagInfo.id, tagId), with: { products: { with: { product: true } } } }); return { ...mapTagInfo(tag2), products: fullTag?.products.map((assignment) => ({ productId: assignment.productId, tagId: assignment.tagId, assignedAt: assignment.assignedAt, product: mapProduct(assignment.product) })) || [] }; } __name(updateProductTag, "updateProductTag"); async function deleteProductTag(tagId) { await db.delete(productTagInfo).where(eq(productTagInfo.id, tagId)); } __name(deleteProductTag, "deleteProductTag"); async function checkProductTagExistsByName(tagName) { const tag2 = await db.query.productTagInfo.findFirst({ where: eq(productTagInfo.tagName, tagName) }); return !!tag2; } __name(checkProductTagExistsByName, "checkProductTagExistsByName"); async function getSlotsProductIds(slotIds) { if (slotIds.length === 0) { return {}; } const associations = await db.query.productSlots.findMany({ where: inArray(productSlots.slotId, slotIds), columns: { slotId: true, productId: true } }); const result = {}; for (const assoc of associations) { if (!result[assoc.slotId]) { result[assoc.slotId] = []; } result[assoc.slotId].push(assoc.productId); } slotIds.forEach((slotId) => { if (!result[slotId]) { result[slotId] = []; } }); return result; } __name(getSlotsProductIds, "getSlotsProductIds"); async function getProductReviews(productId, limit, offset) { const reviews = await db.select({ id: productReviews.id, reviewBody: productReviews.reviewBody, ratings: productReviews.ratings, imageUrls: productReviews.imageUrls, reviewTime: productReviews.reviewTime, adminResponse: productReviews.adminResponse, adminResponseImages: productReviews.adminResponseImages, userName: users.name }).from(productReviews).innerJoin(users, eq(productReviews.userId, users.id)).where(eq(productReviews.productId, productId)).orderBy(desc(productReviews.reviewTime)).limit(limit).offset(offset); const totalCountResult = await db.select({ count: sql`count(*)` }).from(productReviews).where(eq(productReviews.productId, productId)); const totalCount = Number(totalCountResult[0].count); const mappedReviews = reviews.map((review) => ({ id: review.id, reviewBody: review.reviewBody, ratings: review.ratings, imageUrls: review.imageUrls, reviewTime: review.reviewTime, adminResponse: review.adminResponse ?? null, adminResponseImages: review.adminResponseImages, userName: review.userName ?? null })); return { reviews: mappedReviews, totalCount }; } __name(getProductReviews, "getProductReviews"); async function respondToReview(reviewId, adminResponse, adminResponseImages) { const [updatedReview] = await db.update(productReviews).set({ adminResponse, adminResponseImages }).where(eq(productReviews.id, reviewId)).returning(); if (!updatedReview) { return null; } return { id: updatedReview.id, reviewBody: updatedReview.reviewBody, ratings: updatedReview.ratings, imageUrls: updatedReview.imageUrls, reviewTime: updatedReview.reviewTime, adminResponse: updatedReview.adminResponse ?? null, adminResponseImages: updatedReview.adminResponseImages, userName: null }; } __name(respondToReview, "respondToReview"); async function getAllProductGroups() { const groups = await db.query.productGroupInfo.findMany({ with: { memberships: { with: { product: true } } }, orderBy: desc(productGroupInfo.createdAt) }); return groups.map((group3) => ({ id: group3.id, groupName: group3.groupName, description: group3.description ?? null, createdAt: group3.createdAt, products: group3.memberships.map((membership) => mapProduct(membership.product)), productCount: group3.memberships.length, memberships: group3.memberships })); } __name(getAllProductGroups, "getAllProductGroups"); async function createProductGroup(groupName, description, productIds) { const [newGroup] = await db.insert(productGroupInfo).values({ groupName, description }).returning(); if (productIds.length > 0) { const memberships = productIds.map((productId) => ({ productId, groupId: newGroup.id })); await db.insert(productGroupMembership).values(memberships); } return { id: newGroup.id, groupName: newGroup.groupName, description: newGroup.description ?? null, createdAt: newGroup.createdAt }; } __name(createProductGroup, "createProductGroup"); async function updateProductGroup(id, groupName, description, productIds) { const updateData2 = {}; if (groupName !== void 0) updateData2.groupName = groupName; if (description !== void 0) updateData2.description = description; const [updatedGroup] = await db.update(productGroupInfo).set(updateData2).where(eq(productGroupInfo.id, id)).returning(); if (!updatedGroup) { return null; } if (productIds !== void 0) { await db.delete(productGroupMembership).where(eq(productGroupMembership.groupId, id)); if (productIds.length > 0) { const memberships = productIds.map((productId) => ({ productId, groupId: id })); await db.insert(productGroupMembership).values(memberships); } } return { id: updatedGroup.id, groupName: updatedGroup.groupName, description: updatedGroup.description ?? null, createdAt: updatedGroup.createdAt }; } __name(updateProductGroup, "updateProductGroup"); async function deleteProductGroup(id) { await db.delete(productGroupMembership).where(eq(productGroupMembership.groupId, id)); const [deletedGroup] = await db.delete(productGroupInfo).where(eq(productGroupInfo.id, id)).returning(); if (!deletedGroup) { return null; } return { id: deletedGroup.id, groupName: deletedGroup.groupName, description: deletedGroup.description ?? null, createdAt: deletedGroup.createdAt }; } __name(deleteProductGroup, "deleteProductGroup"); async function updateProductPrices(updates) { if (updates.length === 0) { return { updatedCount: 0, invalidIds: [] }; } const productIds = updates.map((update) => update.productId); const existingProducts = await db.query.productInfo.findMany({ where: inArray(productInfo.id, productIds), columns: { id: true } }); const existingIds = new Set(existingProducts.map((product) => product.id)); const invalidIds = productIds.filter((id) => !existingIds.has(id)); if (invalidIds.length > 0) { return { updatedCount: 0, invalidIds }; } const updatePromises = updates.map((update) => { const { productId, price, marketPrice, flashPrice, isFlashAvailable } = update; const updateData2 = {}; if (price !== void 0) updateData2.price = price.toString(); if (marketPrice !== void 0) updateData2.marketPrice = marketPrice === null ? null : marketPrice.toString(); if (flashPrice !== void 0) updateData2.flashPrice = flashPrice === null ? null : flashPrice.toString(); if (isFlashAvailable !== void 0) updateData2.isFlashAvailable = isFlashAvailable; return db.update(productInfo).set(updateData2).where(eq(productInfo.id, productId)); }); await Promise.all(updatePromises); return { updatedCount: updates.length, invalidIds: [] }; } __name(updateProductPrices, "updateProductPrices"); async function checkProductExistsByName(name) { const product = await db.query.productInfo.findFirst({ where: eq(productInfo.name, name), columns: { id: true } }); return !!product; } __name(checkProductExistsByName, "checkProductExistsByName"); async function checkUnitExists(unitId) { const unit = await db.query.units.findFirst({ where: eq(units.id, unitId), columns: { id: true } }); return !!unit; } __name(checkUnitExists, "checkUnitExists"); async function getProductImagesById(productId) { const product = await db.query.productInfo.findFirst({ where: eq(productInfo.id, productId), columns: { images: true } }); if (!product) { return null; } return getStringArray(product.images) || []; } __name(getProductImagesById, "getProductImagesById"); async function createSpecialDealsForProduct(productId, deals) { if (deals.length === 0) { return []; } const dealInserts = deals.map((deal) => ({ productId, quantity: deal.quantity.toString(), price: deal.price.toString(), validTill: new Date(deal.validTill) })); const createdDeals = await db.insert(specialDeals).values(dealInserts).returning(); return createdDeals.map(mapSpecialDeal); } __name(createSpecialDealsForProduct, "createSpecialDealsForProduct"); async function updateProductDeals(productId, deals) { if (deals.length === 0) { await db.delete(specialDeals).where(eq(specialDeals.productId, productId)); return; } const existingDeals = await db.query.specialDeals.findMany({ where: eq(specialDeals.productId, productId) }); const existingDealsMap = new Map( existingDeals.map((deal) => [`${deal.quantity}-${deal.price}`, deal]) ); const newDealsMap = new Map( deals.map((deal) => [`${deal.quantity}-${deal.price}`, deal]) ); const dealsToAdd = deals.filter((deal) => { const key = `${deal.quantity}-${deal.price}`; return !existingDealsMap.has(key); }); const dealsToRemove = existingDeals.filter((deal) => { const key = `${deal.quantity}-${deal.price}`; return !newDealsMap.has(key); }); const dealsToUpdate = deals.filter((deal) => { const key = `${deal.quantity}-${deal.price}`; const existing = existingDealsMap.get(key); const nextValidTill = deal.validTill instanceof Date ? deal.validTill.toISOString().split("T")[0] : String(deal.validTill); return existing && existing.validTill.toISOString().split("T")[0] !== nextValidTill; }); if (dealsToRemove.length > 0) { await db.delete(specialDeals).where( inArray(specialDeals.id, dealsToRemove.map((deal) => deal.id)) ); } if (dealsToAdd.length > 0) { const dealInserts = dealsToAdd.map((deal) => ({ productId, quantity: deal.quantity.toString(), price: deal.price.toString(), validTill: new Date(deal.validTill) })); await db.insert(specialDeals).values(dealInserts); } for (const deal of dealsToUpdate) { const key = `${deal.quantity}-${deal.price}`; const existingDeal = existingDealsMap.get(key); if (existingDeal) { await db.update(specialDeals).set({ validTill: new Date(deal.validTill) }).where(eq(specialDeals.id, existingDeal.id)); } } } __name(updateProductDeals, "updateProductDeals"); async function replaceProductTags(productId, tagIds) { await db.delete(productTags).where(eq(productTags.productId, productId)); if (tagIds.length === 0) { return; } const tagAssociations = tagIds.map((tagId) => ({ productId, tagId })); await db.insert(productTags).values(tagAssociations); } __name(replaceProductTags, "replaceProductTags"); // ../../packages/db_helper_sqlite/src/admin-apis/slots.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_schema(); init_drizzle_orm(); var getStringArray2 = /* @__PURE__ */ __name((value) => { if (!Array.isArray(value)) return null; return value.map((item) => String(item)); }, "getStringArray"); var getNumberArray = /* @__PURE__ */ __name((value) => { if (!Array.isArray(value)) return []; return value.map((item) => Number(item)); }, "getNumberArray"); var mapDeliverySlot = /* @__PURE__ */ __name((slot) => ({ id: slot.id, deliveryTime: slot.deliveryTime, freezeTime: slot.freezeTime, isActive: slot.isActive, isFlash: slot.isFlash, isCapacityFull: slot.isCapacityFull, deliverySequence: slot.deliverySequence, groupIds: slot.groupIds }), "mapDeliverySlot"); var mapSlotProductSummary = /* @__PURE__ */ __name((product) => ({ id: product.id, name: product.name, images: getStringArray2(product.images) }), "mapSlotProductSummary"); var mapVendorSnippet = /* @__PURE__ */ __name((snippet) => ({ id: snippet.id, snippetCode: snippet.snippetCode, slotId: snippet.slotId ?? null, productIds: snippet.productIds || [], isPermanent: snippet.isPermanent, validTill: snippet.validTill ?? null, createdAt: snippet.createdAt }), "mapVendorSnippet"); async function getActiveSlotsWithProducts() { const slots = await db.query.deliverySlotInfo.findMany({ where: eq(deliverySlotInfo.isActive, true), orderBy: desc(deliverySlotInfo.deliveryTime), with: { productSlots: { with: { product: { columns: { id: true, name: true, images: true } } } } } }); return slots.map((slot) => ({ ...mapDeliverySlot(slot), deliverySequence: getNumberArray(slot.deliverySequence), products: slot.productSlots.map((ps) => mapSlotProductSummary(ps.product)) })); } __name(getActiveSlotsWithProducts, "getActiveSlotsWithProducts"); async function getActiveSlots() { const slots = await db.query.deliverySlotInfo.findMany({ where: eq(deliverySlotInfo.isActive, true) }); return slots.map(mapDeliverySlot); } __name(getActiveSlots, "getActiveSlots"); async function getSlotsAfterDate(afterDate) { const slots = await db.query.deliverySlotInfo.findMany({ where: and( eq(deliverySlotInfo.isActive, true), gt(deliverySlotInfo.deliveryTime, afterDate) ), orderBy: asc(deliverySlotInfo.deliveryTime) }); return slots.map(mapDeliverySlot); } __name(getSlotsAfterDate, "getSlotsAfterDate"); async function getSlotByIdWithRelations(id) { const slot = await db.query.deliverySlotInfo.findFirst({ where: eq(deliverySlotInfo.id, id), with: { productSlots: { with: { product: { columns: { id: true, name: true, images: true } } } }, vendorSnippets: true } }); if (!slot) { return null; } return { ...mapDeliverySlot(slot), deliverySequence: getNumberArray(slot.deliverySequence), groupIds: getNumberArray(slot.groupIds), products: slot.productSlots.map((ps) => mapSlotProductSummary(ps.product)), vendorSnippets: slot.vendorSnippets.map(mapVendorSnippet) }; } __name(getSlotByIdWithRelations, "getSlotByIdWithRelations"); async function createSlotWithRelations(input) { const { deliveryTime, freezeTime, isActive, productIds, vendorSnippets: snippets, groupIds } = input; const result = await db.transaction(async (tx) => { const [newSlot] = await tx.insert(deliverySlotInfo).values({ deliveryTime: new Date(deliveryTime), freezeTime: new Date(freezeTime), isActive: isActive !== void 0 ? isActive : true, groupIds: groupIds !== void 0 ? groupIds : [] }).returning(); if (productIds && productIds.length > 0) { const associations = productIds.map((productId) => ({ productId, slotId: newSlot.id })); await tx.insert(productSlots).values(associations); } let createdSnippets = []; if (snippets && snippets.length > 0) { for (const snippet of snippets) { const products = await tx.query.productInfo.findMany({ where: inArray(productInfo.id, snippet.productIds) }); if (products.length !== snippet.productIds.length) { throw new Error(`One or more invalid product IDs in snippet "${snippet.name}"`); } const existingSnippet = await tx.query.vendorSnippets.findFirst({ where: eq(vendorSnippets.snippetCode, snippet.name) }); if (existingSnippet) { throw new Error(`Snippet name "${snippet.name}" already exists`); } const [createdSnippet] = await tx.insert(vendorSnippets).values({ snippetCode: snippet.name, slotId: newSlot.id, productIds: snippet.productIds, validTill: snippet.validTill ? new Date(snippet.validTill) : void 0 }).returning(); createdSnippets.push(mapVendorSnippet(createdSnippet)); } } return { slot: mapDeliverySlot(newSlot), createdSnippets, message: "Slot created successfully" }; }); return result; } __name(createSlotWithRelations, "createSlotWithRelations"); async function updateSlotWithRelations(input) { const { id, deliveryTime, freezeTime, isActive, productIds, vendorSnippets: snippets, groupIds } = input; let validGroupIds = groupIds; if (groupIds && groupIds.length > 0) { const existingGroups = await db.query.productGroupInfo.findMany({ where: inArray(productGroupInfo.id, groupIds), columns: { id: true } }); validGroupIds = existingGroups.map((group3) => group3.id); } const result = await db.transaction(async (tx) => { const [updatedSlot] = await tx.update(deliverySlotInfo).set({ deliveryTime: new Date(deliveryTime), freezeTime: new Date(freezeTime), isActive: isActive !== void 0 ? isActive : true, groupIds: validGroupIds !== void 0 ? validGroupIds : [] }).where(eq(deliverySlotInfo.id, id)).returning(); if (!updatedSlot) { return null; } if (productIds !== void 0) { await tx.delete(productSlots).where(eq(productSlots.slotId, id)); if (productIds.length > 0) { const associations = productIds.map((productId) => ({ productId, slotId: id })); await tx.insert(productSlots).values(associations); } } let createdSnippets = []; if (snippets && snippets.length > 0) { for (const snippet of snippets) { const products = await tx.query.productInfo.findMany({ where: inArray(productInfo.id, snippet.productIds) }); if (products.length !== snippet.productIds.length) { throw new Error(`One or more invalid product IDs in snippet "${snippet.name}"`); } const existingSnippet = await tx.query.vendorSnippets.findFirst({ where: eq(vendorSnippets.snippetCode, snippet.name) }); if (existingSnippet) { throw new Error(`Snippet name "${snippet.name}" already exists`); } const [createdSnippet] = await tx.insert(vendorSnippets).values({ snippetCode: snippet.name, slotId: id, productIds: snippet.productIds, validTill: snippet.validTill ? new Date(snippet.validTill) : void 0 }).returning(); createdSnippets.push(mapVendorSnippet(createdSnippet)); } } return { slot: mapDeliverySlot(updatedSlot), createdSnippets, message: "Slot updated successfully" }; }); return result; } __name(updateSlotWithRelations, "updateSlotWithRelations"); async function deleteSlotById(id) { const [deletedSlot] = await db.update(deliverySlotInfo).set({ isActive: false }).where(eq(deliverySlotInfo.id, id)).returning(); if (!deletedSlot) { return null; } return mapDeliverySlot(deletedSlot); } __name(deleteSlotById, "deleteSlotById"); async function getSlotDeliverySequence(slotId) { const slot = await db.query.deliverySlotInfo.findFirst({ where: eq(deliverySlotInfo.id, slotId) }); if (!slot) { return null; } return mapDeliverySlot(slot); } __name(getSlotDeliverySequence, "getSlotDeliverySequence"); async function updateSlotDeliverySequence(slotId, sequence) { const [updatedSlot] = await db.update(deliverySlotInfo).set({ deliverySequence: sequence }).where(eq(deliverySlotInfo.id, slotId)).returning({ id: deliverySlotInfo.id, deliverySequence: deliverySlotInfo.deliverySequence }); return updatedSlot || null; } __name(updateSlotDeliverySequence, "updateSlotDeliverySequence"); async function updateSlotCapacity(slotId, isCapacityFull) { const [updatedSlot] = await db.update(deliverySlotInfo).set({ isCapacityFull }).where(eq(deliverySlotInfo.id, slotId)).returning(); if (!updatedSlot) { return null; } return { success: true, slot: mapDeliverySlot(updatedSlot), message: `Slot ${isCapacityFull ? "marked as full capacity" : "capacity reset"}` }; } __name(updateSlotCapacity, "updateSlotCapacity"); // ../../packages/db_helper_sqlite/src/admin-apis/staff-user.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_schema(); init_drizzle_orm(); async function getStaffUserByName(name) { const staff = await db.query.staffUsers.findFirst({ where: eq(staffUsers.name, name) }); return staff || null; } __name(getStaffUserByName, "getStaffUserByName"); async function getStaffUserById(staffId) { const staff = await db.query.staffUsers.findFirst({ where: eq(staffUsers.id, staffId) }); return staff || null; } __name(getStaffUserById, "getStaffUserById"); async function getAllStaff() { const staff = await db.query.staffUsers.findMany({ columns: { id: true, name: true }, with: { role: { with: { rolePermissions: { with: { permission: true } } } } } }); return staff; } __name(getAllStaff, "getAllStaff"); async function getAllUsers(cursor, limit = 20, search) { let whereCondition = void 0; if (search) { whereCondition = or( like(users.name, `%${search}%`), like(users.email, `%${search}%`), like(users.mobile, `%${search}%`) ); } if (cursor) { const cursorCondition = lt(users.id, cursor); whereCondition = whereCondition ? and(whereCondition, cursorCondition) : cursorCondition; } const allUsers = await db.query.users.findMany({ where: whereCondition, with: { userDetails: true }, orderBy: desc(users.id), limit: limit + 1 }); const hasMore = allUsers.length > limit; const usersToReturn = hasMore ? allUsers.slice(0, limit) : allUsers; return { users: usersToReturn, hasMore }; } __name(getAllUsers, "getAllUsers"); async function getUserWithDetails(userId) { const user = await db.query.users.findFirst({ where: eq(users.id, userId), with: { userDetails: true, orders: { orderBy: desc(orders.createdAt), limit: 1 } } }); return user || null; } __name(getUserWithDetails, "getUserWithDetails"); async function checkStaffUserExists(name) { const existingUser = await db.query.staffUsers.findFirst({ where: eq(staffUsers.name, name) }); return !!existingUser; } __name(checkStaffUserExists, "checkStaffUserExists"); async function checkStaffRoleExists(roleId) { const role = await db.query.staffRoles.findFirst({ where: eq(staffRoles.id, roleId) }); return !!role; } __name(checkStaffRoleExists, "checkStaffRoleExists"); async function createStaffUser(name, password, roleId) { const [newUser] = await db.insert(staffUsers).values({ name: name.trim(), password, staffRoleId: roleId }).returning(); return { id: newUser.id, name: newUser.name, password: newUser.password, staffRoleId: newUser.staffRoleId, createdAt: newUser.createdAt }; } __name(createStaffUser, "createStaffUser"); async function getAllRoles() { const roles = await db.query.staffRoles.findMany({ columns: { id: true, roleName: true } }); return roles; } __name(getAllRoles, "getAllRoles"); // ../../packages/db_helper_sqlite/src/admin-apis/store.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_schema(); init_drizzle_orm(); async function getAllStores() { const stores = await db.query.storeInfo.findMany({ with: { owner: true } }); return stores; } __name(getAllStores, "getAllStores"); async function getStoreById(id) { const store = await db.query.storeInfo.findFirst({ where: eq(storeInfo.id, id), with: { owner: true } }); return store || null; } __name(getStoreById, "getStoreById"); async function createStore(input, products) { const [newStore] = await db.insert(storeInfo).values({ name: input.name, description: input.description, imageUrl: input.imageUrl, owner: input.owner }).returning(); if (products && products.length > 0) { await db.update(productInfo).set({ storeId: newStore.id }).where(inArray(productInfo.id, products)); } return { id: newStore.id, name: newStore.name, description: newStore.description, imageUrl: newStore.imageUrl, owner: newStore.owner, createdAt: newStore.createdAt // updatedAt: newStore.updatedAt, }; } __name(createStore, "createStore"); async function updateStore(id, input, products) { const [updatedStore] = await db.update(storeInfo).set({ ...input // updatedAt: new Date(), }).where(eq(storeInfo.id, id)).returning(); if (!updatedStore) { throw new Error("Store not found"); } if (products !== void 0) { await db.update(productInfo).set({ storeId: null }).where(eq(productInfo.storeId, id)); if (products.length > 0) { await db.update(productInfo).set({ storeId: id }).where(inArray(productInfo.id, products)); } } return { id: updatedStore.id, name: updatedStore.name, description: updatedStore.description, imageUrl: updatedStore.imageUrl, owner: updatedStore.owner, createdAt: updatedStore.createdAt // updatedAt: updatedStore.updatedAt, }; } __name(updateStore, "updateStore"); async function deleteStore(id) { return await db.transaction(async (tx) => { await tx.update(productInfo).set({ storeId: null }).where(eq(productInfo.storeId, id)); const [deletedStore] = await tx.delete(storeInfo).where(eq(storeInfo.id, id)).returning(); if (!deletedStore) { throw new Error("Store not found"); } return { message: "Store deleted successfully" }; }); } __name(deleteStore, "deleteStore"); // ../../packages/db_helper_sqlite/src/admin-apis/user.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_schema(); init_drizzle_orm(); async function createUserByMobile(mobile) { const [newUser] = await db.insert(users).values({ name: null, email: null, mobile }).returning(); return newUser; } __name(createUserByMobile, "createUserByMobile"); async function getUserByMobile(mobile) { const [existingUser] = await db.select().from(users).where(eq(users.mobile, mobile)).limit(1); return existingUser || null; } __name(getUserByMobile, "getUserByMobile"); async function getUnresolvedComplaintsCount() { const result = await db.select({ count: count3(complaints.id) }).from(complaints).where(eq(complaints.isResolved, false)); return result[0]?.count || 0; } __name(getUnresolvedComplaintsCount, "getUnresolvedComplaintsCount"); async function getAllUsersWithFilters(limit, cursor, search) { const whereConditions = []; if (search && search.trim()) { whereConditions.push(sql`${users.mobile} LIKE ${`%${search.trim()}%`}`); } if (cursor) { whereConditions.push(sql`${users.id} > ${cursor}`); } const usersList = await db.select({ id: users.id, name: users.name, mobile: users.mobile, createdAt: users.createdAt }).from(users).where(whereConditions.length > 0 ? sql.join(whereConditions, sql` AND `) : void 0).orderBy(asc(users.id)).limit(limit + 1); const hasMore = usersList.length > limit; const usersToReturn = hasMore ? usersList.slice(0, limit) : usersList; return { users: usersToReturn, hasMore }; } __name(getAllUsersWithFilters, "getAllUsersWithFilters"); async function getOrderCountsByUserIds(userIds) { if (userIds.length === 0) return []; return await db.select({ userId: orders.userId, totalOrders: count3(orders.id) }).from(orders).where(sql`${orders.userId} IN (${sql.join(userIds, sql`, `)})`).groupBy(orders.userId); } __name(getOrderCountsByUserIds, "getOrderCountsByUserIds"); async function getLastOrdersByUserIds(userIds) { if (userIds.length === 0) return []; return await db.select({ userId: orders.userId, lastOrderDate: max(orders.createdAt) }).from(orders).where(sql`${orders.userId} IN (${sql.join(userIds, sql`, `)})`).groupBy(orders.userId); } __name(getLastOrdersByUserIds, "getLastOrdersByUserIds"); async function getSuspensionStatusesByUserIds(userIds) { if (userIds.length === 0) return []; return await db.select({ userId: userDetails.userId, isSuspended: userDetails.isSuspended }).from(userDetails).where(sql`${userDetails.userId} IN (${sql.join(userIds, sql`, `)})`); } __name(getSuspensionStatusesByUserIds, "getSuspensionStatusesByUserIds"); async function getUserBasicInfo(userId) { const user = await db.select({ id: users.id, name: users.name, mobile: users.mobile, createdAt: users.createdAt }).from(users).where(eq(users.id, userId)).limit(1); return user[0] || null; } __name(getUserBasicInfo, "getUserBasicInfo"); async function getUserSuspensionStatus(userId) { const userDetail = await db.select({ isSuspended: userDetails.isSuspended }).from(userDetails).where(eq(userDetails.userId, userId)).limit(1); return userDetail[0]?.isSuspended ?? false; } __name(getUserSuspensionStatus, "getUserSuspensionStatus"); async function getUserOrders(userId) { return await db.select({ id: orders.id, readableId: orders.readableId, totalAmount: orders.totalAmount, createdAt: orders.createdAt, isFlashDelivery: orders.isFlashDelivery }).from(orders).where(eq(orders.userId, userId)).orderBy(desc(orders.createdAt)); } __name(getUserOrders, "getUserOrders"); async function getOrderStatusesByOrderIds(orderIds) { if (orderIds.length === 0) return []; return await db.select({ orderId: orderStatus.orderId, isDelivered: orderStatus.isDelivered, isCancelled: orderStatus.isCancelled }).from(orderStatus).where(sql`${orderStatus.orderId} IN (${sql.join(orderIds, sql`, `)})`); } __name(getOrderStatusesByOrderIds, "getOrderStatusesByOrderIds"); async function getItemCountsByOrderIds(orderIds) { if (orderIds.length === 0) return []; return await db.select({ orderId: orderItems.orderId, itemCount: count3(orderItems.id) }).from(orderItems).where(sql`${orderItems.orderId} IN (${sql.join(orderIds, sql`, `)})`).groupBy(orderItems.orderId); } __name(getItemCountsByOrderIds, "getItemCountsByOrderIds"); async function upsertUserSuspension(userId, isSuspended) { const existingDetail = await db.select({ id: userDetails.id }).from(userDetails).where(eq(userDetails.userId, userId)).limit(1); if (existingDetail.length > 0) { await db.update(userDetails).set({ isSuspended }).where(eq(userDetails.userId, userId)); } else { await db.insert(userDetails).values({ userId, isSuspended }); } } __name(upsertUserSuspension, "upsertUserSuspension"); async function searchUsers(search) { if (search && search.trim()) { return await db.select({ id: users.id, name: users.name, mobile: users.mobile }).from(users).where(sql`${users.mobile} LIKE ${`%${search.trim()}%`} OR ${users.name} LIKE ${`%${search.trim()}%`}`); } else { return await db.select({ id: users.id, name: users.name, mobile: users.mobile }).from(users); } } __name(searchUsers, "searchUsers"); async function getAllNotifCreds() { return await db.select({ userId: notifCreds.userId, token: notifCreds.token }).from(notifCreds); } __name(getAllNotifCreds, "getAllNotifCreds"); async function getAllUnloggedTokens() { return await db.select({ token: unloggedUserTokens.token }).from(unloggedUserTokens); } __name(getAllUnloggedTokens, "getAllUnloggedTokens"); async function getNotifTokensByUserIds(userIds) { return await db.select({ token: notifCreds.token }).from(notifCreds).where(inArray(notifCreds.userId, userIds)); } __name(getNotifTokensByUserIds, "getNotifTokensByUserIds"); async function getUserIncidentsWithRelations(userId) { return await db.query.userIncidents.findMany({ where: eq(userIncidents.userId, userId), with: { order: { with: { orderStatus: true } }, addedBy: true }, orderBy: desc(userIncidents.dateAdded) }); } __name(getUserIncidentsWithRelations, "getUserIncidentsWithRelations"); async function createUserIncident(userId, orderId, adminComment, adminUserId, negativityScore) { const [incident] = await db.insert(userIncidents).values({ userId, orderId, adminComment, addedBy: adminUserId, negativityScore }).returning(); return incident; } __name(createUserIncident, "createUserIncident"); // ../../packages/db_helper_sqlite/src/admin-apis/vendor-snippets.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_schema(); init_drizzle_orm(); var mapVendorSnippet2 = /* @__PURE__ */ __name((snippet) => ({ id: snippet.id, snippetCode: snippet.snippetCode, slotId: snippet.slotId ?? null, productIds: snippet.productIds || [], isPermanent: snippet.isPermanent, validTill: snippet.validTill ?? null, createdAt: snippet.createdAt }), "mapVendorSnippet"); var mapDeliverySlot2 = /* @__PURE__ */ __name((slot) => ({ id: slot.id, deliveryTime: slot.deliveryTime, freezeTime: slot.freezeTime, isActive: slot.isActive, isFlash: slot.isFlash, isCapacityFull: slot.isCapacityFull, deliverySequence: slot.deliverySequence, groupIds: slot.groupIds }), "mapDeliverySlot"); var mapProductSummary = /* @__PURE__ */ __name((product) => ({ id: product.id, name: product.name }), "mapProductSummary"); async function checkVendorSnippetExists(snippetCode) { const existingSnippet = await db.query.vendorSnippets.findFirst({ where: eq(vendorSnippets.snippetCode, snippetCode) }); return !!existingSnippet; } __name(checkVendorSnippetExists, "checkVendorSnippetExists"); async function getVendorSnippetById(id) { const snippet = await db.query.vendorSnippets.findFirst({ where: eq(vendorSnippets.id, id), with: { slot: true } }); if (!snippet) { return null; } return { ...mapVendorSnippet2(snippet), slot: snippet.slot ? mapDeliverySlot2(snippet.slot) : null }; } __name(getVendorSnippetById, "getVendorSnippetById"); async function getVendorSnippetByCode(snippetCode) { const snippet = await db.query.vendorSnippets.findFirst({ where: eq(vendorSnippets.snippetCode, snippetCode) }); return snippet ? mapVendorSnippet2(snippet) : null; } __name(getVendorSnippetByCode, "getVendorSnippetByCode"); async function getAllVendorSnippets() { const snippets = await db.query.vendorSnippets.findMany({ with: { slot: true }, orderBy: desc(vendorSnippets.createdAt) }); return snippets.map((snippet) => ({ ...mapVendorSnippet2(snippet), slot: snippet.slot ? mapDeliverySlot2(snippet.slot) : null })); } __name(getAllVendorSnippets, "getAllVendorSnippets"); async function createVendorSnippet(input) { const [result] = await db.insert(vendorSnippets).values({ snippetCode: input.snippetCode, slotId: input.slotId, productIds: input.productIds, isPermanent: input.isPermanent, validTill: input.validTill }).returning(); return mapVendorSnippet2(result); } __name(createVendorSnippet, "createVendorSnippet"); async function updateVendorSnippet(id, updates) { const [result] = await db.update(vendorSnippets).set(updates).where(eq(vendorSnippets.id, id)).returning(); return result ? mapVendorSnippet2(result) : null; } __name(updateVendorSnippet, "updateVendorSnippet"); async function deleteVendorSnippet(id) { const [result] = await db.delete(vendorSnippets).where(eq(vendorSnippets.id, id)).returning(); return result ? mapVendorSnippet2(result) : null; } __name(deleteVendorSnippet, "deleteVendorSnippet"); async function getProductsByIds(productIds) { const products = await db.query.productInfo.findMany({ where: inArray(productInfo.id, productIds), columns: { id: true, name: true } }); const prods = products.map(mapProductSummary); return prods; } __name(getProductsByIds, "getProductsByIds"); async function getVendorSlotById(slotId) { const slot = await db.query.deliverySlotInfo.findFirst({ where: eq(deliverySlotInfo.id, slotId) }); return slot ? mapDeliverySlot2(slot) : null; } __name(getVendorSlotById, "getVendorSlotById"); async function getVendorOrdersBySlotId(slotId) { return await db.query.orders.findMany({ where: eq(orders.slotId, slotId), with: { orderItems: { with: { product: { with: { unit: true } } } }, orderStatus: true, user: true, slot: true }, orderBy: desc(orders.createdAt) }); } __name(getVendorOrdersBySlotId, "getVendorOrdersBySlotId"); async function getVendorOrders() { return await db.query.orders.findMany({ with: { user: true, orderItems: { with: { product: { with: { unit: true } } } } }, orderBy: desc(orders.createdAt) }); } __name(getVendorOrders, "getVendorOrders"); async function updateVendorOrderItemPackaging(orderItemId, isPackaged) { const orderItem = await db.query.orderItems.findFirst({ where: eq(orderItems.id, orderItemId), with: { order: { with: { slot: true } } } }); if (!orderItem) { return { success: false, message: "Order item not found" }; } if (!orderItem.order.slotId) { return { success: false, message: "Order item not associated with a vendor slot" }; } const snippetExists = await db.query.vendorSnippets.findFirst({ where: eq(vendorSnippets.slotId, orderItem.order.slotId) }); if (!snippetExists) { return { success: false, message: "No vendor snippet found for this order's slot" }; } const [updatedItem] = await db.update(orderItems).set({ is_packaged: isPackaged }).where(eq(orderItems.id, orderItemId)).returning({ id: orderItems.id }); if (!updatedItem) { return { success: false, message: "Failed to update packaging status" }; } return { success: true, orderItemId, is_packaged: isPackaged }; } __name(updateVendorOrderItemPackaging, "updateVendorOrderItemPackaging"); // ../../packages/db_helper_sqlite/src/user-apis/address.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_schema(); init_drizzle_orm(); var mapUserAddress = /* @__PURE__ */ __name((address) => ({ id: address.id, userId: address.userId, name: address.name, phone: address.phone, addressLine1: address.addressLine1, addressLine2: address.addressLine2 ?? null, city: address.city, state: address.state, pincode: address.pincode, isDefault: address.isDefault, latitude: address.latitude ?? null, longitude: address.longitude ?? null, googleMapsUrl: address.googleMapsUrl ?? null, adminLatitude: address.adminLatitude ?? null, adminLongitude: address.adminLongitude ?? null, zoneId: address.zoneId ?? null, createdAt: address.createdAt }), "mapUserAddress"); async function getDefaultAddress(userId) { const [defaultAddress] = await db.select().from(addresses).where(and(eq(addresses.userId, userId), eq(addresses.isDefault, true))).limit(1); return defaultAddress ? mapUserAddress(defaultAddress) : null; } __name(getDefaultAddress, "getDefaultAddress"); async function getUserAddresses(userId) { const userAddresses = await db.select().from(addresses).where(eq(addresses.userId, userId)); return userAddresses.map(mapUserAddress); } __name(getUserAddresses, "getUserAddresses"); async function getUserAddressById(userId, addressId) { const [address] = await db.select().from(addresses).where(and(eq(addresses.id, addressId), eq(addresses.userId, userId))).limit(1); return address ? mapUserAddress(address) : null; } __name(getUserAddressById, "getUserAddressById"); async function clearDefaultAddress(userId) { await db.update(addresses).set({ isDefault: false }).where(eq(addresses.userId, userId)); } __name(clearDefaultAddress, "clearDefaultAddress"); async function createUserAddress(input) { const [newAddress] = await db.insert(addresses).values({ userId: input.userId, name: input.name, phone: input.phone, addressLine1: input.addressLine1, addressLine2: input.addressLine2, city: input.city, state: input.state, pincode: input.pincode, isDefault: input.isDefault, latitude: input.latitude, longitude: input.longitude, googleMapsUrl: input.googleMapsUrl }).returning(); return mapUserAddress(newAddress); } __name(createUserAddress, "createUserAddress"); async function updateUserAddress(input) { const [updatedAddress] = await db.update(addresses).set({ name: input.name, phone: input.phone, addressLine1: input.addressLine1, addressLine2: input.addressLine2, city: input.city, state: input.state, pincode: input.pincode, isDefault: input.isDefault, googleMapsUrl: input.googleMapsUrl, latitude: input.latitude, longitude: input.longitude }).where(and(eq(addresses.id, input.addressId), eq(addresses.userId, input.userId))).returning(); return updatedAddress ? mapUserAddress(updatedAddress) : null; } __name(updateUserAddress, "updateUserAddress"); async function deleteUserAddress(userId, addressId) { const [deleted] = await db.delete(addresses).where(and(eq(addresses.id, addressId), eq(addresses.userId, userId))).returning({ id: addresses.id }); return !!deleted; } __name(deleteUserAddress, "deleteUserAddress"); async function hasOngoingOrdersForAddress(addressId) { const ongoingOrders = await db.select({ orderId: orders.id }).from(orders).innerJoin(orderStatus, eq(orders.id, orderStatus.orderId)).innerJoin(deliverySlotInfo, eq(orders.slotId, deliverySlotInfo.id)).where(and( eq(orders.addressId, addressId), eq(orderStatus.isCancelled, false), gte(deliverySlotInfo.deliveryTime, /* @__PURE__ */ new Date()) )).limit(1); return ongoingOrders.length > 0; } __name(hasOngoingOrdersForAddress, "hasOngoingOrdersForAddress"); // ../../packages/db_helper_sqlite/src/user-apis/banners.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_schema(); init_drizzle_orm(); var mapBanner = /* @__PURE__ */ __name((banner) => ({ id: banner.id, name: banner.name, imageUrl: banner.imageUrl, description: banner.description ?? null, productIds: banner.productIds ?? null, redirectUrl: banner.redirectUrl ?? null, serialNum: banner.serialNum ?? null, isActive: banner.isActive, createdAt: banner.createdAt, lastUpdated: banner.lastUpdated }), "mapBanner"); async function getActiveBanners() { const banners = await db.query.homeBanners.findMany({ where: isNotNull(homeBanners.serialNum), orderBy: asc(homeBanners.serialNum) }); return banners.map(mapBanner); } __name(getActiveBanners, "getActiveBanners"); // ../../packages/db_helper_sqlite/src/user-apis/cart.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_schema(); init_drizzle_orm(); var getStringArray3 = /* @__PURE__ */ __name((value) => { if (!Array.isArray(value)) return []; return value.map((item) => String(item)); }, "getStringArray"); async function getCartItemsWithProducts(userId) { const cartItemsWithProducts = await db.select({ cartId: cartItems.id, productId: productInfo.id, productName: productInfo.name, productPrice: productInfo.price, productImages: productInfo.images, productQuantity: productInfo.productQuantity, isOutOfStock: productInfo.isOutOfStock, unitShortNotation: units.shortNotation, quantity: cartItems.quantity, addedAt: cartItems.addedAt }).from(cartItems).innerJoin(productInfo, eq(cartItems.productId, productInfo.id)).innerJoin(units, eq(productInfo.unitId, units.id)).where(eq(cartItems.userId, userId)); return cartItemsWithProducts.map((item) => { const priceValue = item.productPrice ?? "0"; const quantityValue = item.quantity ?? "0"; return { id: item.cartId, productId: item.productId, quantity: parseFloat(quantityValue), addedAt: item.addedAt, product: { id: item.productId, name: item.productName, price: priceValue.toString(), productQuantity: item.productQuantity, unit: item.unitShortNotation, isOutOfStock: item.isOutOfStock, images: getStringArray3(item.productImages) }, subtotal: parseFloat(priceValue.toString()) * parseFloat(quantityValue) }; }); } __name(getCartItemsWithProducts, "getCartItemsWithProducts"); async function getProductById2(productId) { return db.query.productInfo.findFirst({ where: eq(productInfo.id, productId) }); } __name(getProductById2, "getProductById"); async function getCartItemByUserProduct(userId, productId) { return db.query.cartItems.findFirst({ where: and(eq(cartItems.userId, userId), eq(cartItems.productId, productId)) }); } __name(getCartItemByUserProduct, "getCartItemByUserProduct"); async function incrementCartItemQuantity(itemId, quantity) { await db.update(cartItems).set({ quantity: sql`${cartItems.quantity} + ${quantity}` }).where(eq(cartItems.id, itemId)); } __name(incrementCartItemQuantity, "incrementCartItemQuantity"); async function insertCartItem(userId, productId, quantity) { await db.insert(cartItems).values({ userId, productId, quantity: quantity.toString() }); } __name(insertCartItem, "insertCartItem"); async function updateCartItemQuantity(userId, itemId, quantity) { const [updatedItem] = await db.update(cartItems).set({ quantity: quantity.toString() }).where(and(eq(cartItems.id, itemId), eq(cartItems.userId, userId))).returning({ id: cartItems.id }); return !!updatedItem; } __name(updateCartItemQuantity, "updateCartItemQuantity"); async function deleteCartItem(userId, itemId) { const [deletedItem] = await db.delete(cartItems).where(and(eq(cartItems.id, itemId), eq(cartItems.userId, userId))).returning({ id: cartItems.id }); return !!deletedItem; } __name(deleteCartItem, "deleteCartItem"); async function clearUserCart(userId) { await db.delete(cartItems).where(eq(cartItems.userId, userId)); } __name(clearUserCart, "clearUserCart"); // ../../packages/db_helper_sqlite/src/user-apis/complaint.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_schema(); init_drizzle_orm(); async function getUserComplaints(userId) { const userComplaints = await db.select({ id: complaints.id, complaintBody: complaints.complaintBody, response: complaints.response, isResolved: complaints.isResolved, createdAt: complaints.createdAt, orderId: complaints.orderId }).from(complaints).where(eq(complaints.userId, userId)).orderBy(asc(complaints.createdAt)); return userComplaints.map((complaint) => ({ id: complaint.id, complaintBody: complaint.complaintBody, response: complaint.response ?? null, isResolved: complaint.isResolved, createdAt: complaint.createdAt, orderId: complaint.orderId ?? null })); } __name(getUserComplaints, "getUserComplaints"); async function createComplaint(userId, orderId, complaintBody, images) { await db.insert(complaints).values({ userId, orderId, complaintBody, images: images || null }); } __name(createComplaint, "createComplaint"); // ../../packages/db_helper_sqlite/src/user-apis/stores.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_schema(); init_drizzle_orm(); var getStringArray4 = /* @__PURE__ */ __name((value) => { if (!Array.isArray(value)) return null; return value.map((item) => String(item)); }, "getStringArray"); async function getStoreSummaries() { const storesData = await db.select({ id: storeInfo.id, name: storeInfo.name, description: storeInfo.description, imageUrl: storeInfo.imageUrl, productCount: sql`count(${productInfo.id})`.as("productCount") }).from(storeInfo).leftJoin( productInfo, and(eq(productInfo.storeId, storeInfo.id), eq(productInfo.isSuspended, false)) ).groupBy(storeInfo.id); const storesWithDetails = await Promise.all( storesData.map(async (store) => { const sampleProducts = await db.select({ id: productInfo.id, name: productInfo.name, images: productInfo.images }).from(productInfo).where(and(eq(productInfo.storeId, store.id), eq(productInfo.isSuspended, false))).limit(3); return { id: store.id, name: store.name, description: store.description ?? null, imageUrl: store.imageUrl ?? null, productCount: store.productCount || 0, sampleProducts: sampleProducts.map((product) => ({ id: product.id, name: product.name, images: getStringArray4(product.images) })) }; }) ); return storesWithDetails; } __name(getStoreSummaries, "getStoreSummaries"); async function getStoreDetail(storeId) { const storeData = await db.query.storeInfo.findFirst({ where: eq(storeInfo.id, storeId), columns: { id: true, name: true, description: true, imageUrl: true } }); if (!storeData) { return null; } const productsData = await db.select({ id: productInfo.id, name: productInfo.name, shortDescription: productInfo.shortDescription, price: productInfo.price, marketPrice: productInfo.marketPrice, images: productInfo.images, isOutOfStock: productInfo.isOutOfStock, incrementStep: productInfo.incrementStep, unitShortNotation: units.shortNotation, productQuantity: productInfo.productQuantity }).from(productInfo).innerJoin(units, eq(productInfo.unitId, units.id)).where(and(eq(productInfo.storeId, storeId), eq(productInfo.isSuspended, false))); const products = productsData.map((product) => ({ id: product.id, name: product.name, shortDescription: product.shortDescription ?? null, price: String(product.price ?? "0"), marketPrice: product.marketPrice ? String(product.marketPrice) : null, incrementStep: product.incrementStep, unit: product.unitShortNotation, unitNotation: product.unitShortNotation, images: getStringArray4(product.images), isOutOfStock: product.isOutOfStock, productQuantity: product.productQuantity })); return { store: { id: storeData.id, name: storeData.name, description: storeData.description ?? null, imageUrl: storeData.imageUrl ?? null }, products }; } __name(getStoreDetail, "getStoreDetail"); async function getStoresSummary() { return db.query.storeInfo.findMany({ columns: { id: true, name: true, description: true } }); } __name(getStoresSummary, "getStoresSummary"); // ../../packages/db_helper_sqlite/src/user-apis/product.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_schema(); init_drizzle_orm(); var getStringArray5 = /* @__PURE__ */ __name((value) => { if (!Array.isArray(value)) return null; return value.map((item) => String(item)); }, "getStringArray"); async function getProductDetailById(productId) { const productData = await db.select({ id: productInfo.id, name: productInfo.name, shortDescription: productInfo.shortDescription, longDescription: productInfo.longDescription, price: productInfo.price, marketPrice: productInfo.marketPrice, images: productInfo.images, isOutOfStock: productInfo.isOutOfStock, storeId: productInfo.storeId, unitShortNotation: units.shortNotation, incrementStep: productInfo.incrementStep, productQuantity: productInfo.productQuantity, isFlashAvailable: productInfo.isFlashAvailable, flashPrice: productInfo.flashPrice }).from(productInfo).innerJoin(units, eq(productInfo.unitId, units.id)).where(eq(productInfo.id, productId)).limit(1); if (productData.length === 0) { return null; } const product = productData[0]; const storeData = product.storeId ? await db.query.storeInfo.findFirst({ where: eq(storeInfo.id, product.storeId), columns: { id: true, name: true, description: true } }) : null; const deliverySlotsData = await db.select({ id: deliverySlotInfo.id, deliveryTime: deliverySlotInfo.deliveryTime, freezeTime: deliverySlotInfo.freezeTime }).from(productSlots).innerJoin(deliverySlotInfo, eq(productSlots.slotId, deliverySlotInfo.id)).where( and( eq(productSlots.productId, productId), eq(deliverySlotInfo.isActive, true), eq(deliverySlotInfo.isCapacityFull, false), gt(deliverySlotInfo.deliveryTime, sql`CURRENT_TIMESTAMP`), gt(deliverySlotInfo.freezeTime, sql`CURRENT_TIMESTAMP`) ) ).orderBy(deliverySlotInfo.deliveryTime); const specialDealsData = await db.select({ quantity: specialDeals.quantity, price: specialDeals.price, validTill: specialDeals.validTill }).from(specialDeals).where( and( eq(specialDeals.productId, productId), gt(specialDeals.validTill, sql`CURRENT_TIMESTAMP`) ) ).orderBy(specialDeals.quantity); return { id: product.id, name: product.name, shortDescription: product.shortDescription ?? null, longDescription: product.longDescription ?? null, price: String(product.price ?? "0"), marketPrice: product.marketPrice ? String(product.marketPrice) : null, unitNotation: product.unitShortNotation, images: getStringArray5(product.images), isOutOfStock: product.isOutOfStock, store: storeData ? { id: storeData.id, name: storeData.name, description: storeData.description ?? null } : null, incrementStep: product.incrementStep, productQuantity: product.productQuantity, isFlashAvailable: product.isFlashAvailable, flashPrice: product.flashPrice?.toString() || null, deliverySlots: deliverySlotsData, specialDeals: specialDealsData.map((deal) => ({ quantity: String(deal.quantity ?? "0"), price: String(deal.price ?? "0"), validTill: deal.validTill })) }; } __name(getProductDetailById, "getProductDetailById"); async function getProductReviews2(productId, limit, offset) { const reviews = await db.select({ id: productReviews.id, reviewBody: productReviews.reviewBody, ratings: productReviews.ratings, imageUrls: productReviews.imageUrls, reviewTime: productReviews.reviewTime, userName: users.name }).from(productReviews).innerJoin(users, eq(productReviews.userId, users.id)).where(eq(productReviews.productId, productId)).orderBy(desc(productReviews.reviewTime)).limit(limit).offset(offset); const totalCountResult = await db.select({ count: sql`count(*)` }).from(productReviews).where(eq(productReviews.productId, productId)); const totalCount = Number(totalCountResult[0].count); const mappedReviews = reviews.map((review) => ({ id: review.id, reviewBody: review.reviewBody, ratings: review.ratings, imageUrls: getStringArray5(review.imageUrls), reviewTime: review.reviewTime, userName: review.userName ?? null })); return { reviews: mappedReviews, totalCount }; } __name(getProductReviews2, "getProductReviews"); async function getProductById3(productId) { return db.query.productInfo.findFirst({ where: eq(productInfo.id, productId) }); } __name(getProductById3, "getProductById"); async function createProductReview(userId, productId, reviewBody, ratings, imageUrls) { const [newReview] = await db.insert(productReviews).values({ userId, productId, reviewBody, ratings, imageUrls }).returning({ id: productReviews.id, reviewBody: productReviews.reviewBody, ratings: productReviews.ratings, imageUrls: productReviews.imageUrls, reviewTime: productReviews.reviewTime }); return { id: newReview.id, reviewBody: newReview.reviewBody, ratings: newReview.ratings, imageUrls: getStringArray5(newReview.imageUrls), reviewTime: newReview.reviewTime, userName: null }; } __name(createProductReview, "createProductReview"); async function getAllProductsWithUnits(tagId) { let productIds = null; if (tagId) { const taggedProducts = await db.select({ productId: productTags.productId }).from(productTags).where(eq(productTags.tagId, tagId)); productIds = taggedProducts.map((tp) => tp.productId); } let whereCondition = void 0; if (productIds && productIds.length > 0) { whereCondition = inArray(productInfo.id, productIds); } const results = await db.select({ id: productInfo.id, name: productInfo.name, shortDescription: productInfo.shortDescription, price: productInfo.price, marketPrice: productInfo.marketPrice, images: productInfo.images, isOutOfStock: productInfo.isOutOfStock, unitShortNotation: units.shortNotation, productQuantity: productInfo.productQuantity }).from(productInfo).innerJoin(units, eq(productInfo.unitId, units.id)).where(whereCondition); return results.map((product) => ({ ...product, price: String(product.price ?? "0"), marketPrice: product.marketPrice ? String(product.marketPrice) : null })); } __name(getAllProductsWithUnits, "getAllProductsWithUnits"); async function getSuspendedProductIds() { const suspendedProducts = await db.select({ id: productInfo.id }).from(productInfo).where(eq(productInfo.isSuspended, true)); return suspendedProducts.map((sp) => sp.id); } __name(getSuspendedProductIds, "getSuspendedProductIds"); async function getNextDeliveryDateWithCapacity(productId) { const result = await db.select({ deliveryTime: deliverySlotInfo.deliveryTime }).from(productSlots).innerJoin(deliverySlotInfo, eq(productSlots.slotId, deliverySlotInfo.id)).where( and( eq(productSlots.productId, productId), eq(deliverySlotInfo.isActive, true), eq(deliverySlotInfo.isCapacityFull, false), gt(deliverySlotInfo.deliveryTime, sql`CURRENT_TIMESTAMP`) ) ).orderBy(deliverySlotInfo.deliveryTime).limit(1); return result[0]?.deliveryTime || null; } __name(getNextDeliveryDateWithCapacity, "getNextDeliveryDateWithCapacity"); // ../../packages/db_helper_sqlite/src/user-apis/slots.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_schema(); init_drizzle_orm(); var mapSlot = /* @__PURE__ */ __name((slot) => ({ id: slot.id, deliveryTime: slot.deliveryTime, freezeTime: slot.freezeTime, isActive: slot.isActive, isFlash: slot.isFlash, isCapacityFull: slot.isCapacityFull, deliverySequence: slot.deliverySequence, groupIds: slot.groupIds }), "mapSlot"); async function getActiveSlotsList() { const slots = await db.query.deliverySlotInfo.findMany({ where: eq(deliverySlotInfo.isActive, true), orderBy: asc(deliverySlotInfo.deliveryTime) }); return slots.map(mapSlot); } __name(getActiveSlotsList, "getActiveSlotsList"); async function getProductAvailability() { const products = await db.select({ id: productInfo.id, name: productInfo.name, isOutOfStock: productInfo.isOutOfStock, isFlashAvailable: productInfo.isFlashAvailable }).from(productInfo).where(eq(productInfo.isSuspended, false)); return products.map((product) => ({ id: product.id, name: product.name, isOutOfStock: product.isOutOfStock, isFlashAvailable: product.isFlashAvailable })); } __name(getProductAvailability, "getProductAvailability"); // ../../packages/db_helper_sqlite/src/user-apis/payments.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_schema(); init_drizzle_orm(); async function getOrderById(orderId) { return db.query.orders.findFirst({ where: eq(orders.id, orderId) }); } __name(getOrderById, "getOrderById"); async function getPaymentByOrderId(orderId) { return db.query.payments.findFirst({ where: eq(payments.orderId, orderId) }); } __name(getPaymentByOrderId, "getPaymentByOrderId"); async function getPaymentByMerchantOrderId(merchantOrderId) { return db.query.payments.findFirst({ where: eq(payments.merchantOrderId, merchantOrderId) }); } __name(getPaymentByMerchantOrderId, "getPaymentByMerchantOrderId"); async function updatePaymentSuccess(merchantOrderId, payload) { const [updatedPayment] = await db.update(payments).set({ status: "success", payload }).where(eq(payments.merchantOrderId, merchantOrderId)).returning({ id: payments.id, orderId: payments.orderId }); return updatedPayment || null; } __name(updatePaymentSuccess, "updatePaymentSuccess"); async function updateOrderPaymentStatus(orderId, status) { await db.update(orderStatus).set({ paymentStatus: status }).where(eq(orderStatus.orderId, orderId)); } __name(updateOrderPaymentStatus, "updateOrderPaymentStatus"); async function markPaymentFailed(paymentId) { await db.update(payments).set({ status: "failed" }).where(eq(payments.id, paymentId)); } __name(markPaymentFailed, "markPaymentFailed"); // ../../packages/db_helper_sqlite/src/user-apis/auth.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_schema(); init_drizzle_orm(); async function getUserByEmail(email3) { const [user] = await db.select().from(users).where(eq(users.email, email3)).limit(1); return user || null; } __name(getUserByEmail, "getUserByEmail"); async function getUserByMobile2(mobile) { const [user] = await db.select().from(users).where(eq(users.mobile, mobile)).limit(1); return user || null; } __name(getUserByMobile2, "getUserByMobile"); async function getUserById(userId) { const [user] = await db.select().from(users).where(eq(users.id, userId)).limit(1); return user || null; } __name(getUserById, "getUserById"); async function getUserCreds(userId) { const [creds] = await db.select().from(userCreds).where(eq(userCreds.userId, userId)).limit(1); return creds || null; } __name(getUserCreds, "getUserCreds"); async function getUserDetails(userId) { const [details] = await db.select().from(userDetails).where(eq(userDetails.userId, userId)).limit(1); return details || null; } __name(getUserDetails, "getUserDetails"); async function isUserSuspended(userId) { const details = await getUserDetails(userId); return details?.isSuspended ?? false; } __name(isUserSuspended, "isUserSuspended"); async function createUserWithProfile(input) { return db.transaction(async (tx) => { const [user] = await tx.insert(users).values({ name: input.name, email: input.email, mobile: input.mobile }).returning(); await tx.insert(userCreds).values({ userId: user.id, userPassword: input.hashedPassword }); await tx.insert(userDetails).values({ userId: user.id, profileImage: input.profileImage || null }); return user; }); } __name(createUserWithProfile, "createUserWithProfile"); async function getUserDetailsByUserId(userId) { const [details] = await db.select().from(userDetails).where(eq(userDetails.userId, userId)).limit(1); return details || null; } __name(getUserDetailsByUserId, "getUserDetailsByUserId"); async function updateUserProfile(userId, data) { return db.transaction(async (tx) => { const userUpdate = {}; if (data.name !== void 0) userUpdate.name = data.name; if (data.email !== void 0) userUpdate.email = data.email; if (data.mobile !== void 0) userUpdate.mobile = data.mobile; if (Object.keys(userUpdate).length > 0) { await tx.update(users).set(userUpdate).where(eq(users.id, userId)); } if (data.hashedPassword) { await tx.update(userCreds).set({ userPassword: data.hashedPassword }).where(eq(userCreds.userId, userId)); } const detailsUpdate = {}; if (data.bio !== void 0) detailsUpdate.bio = data.bio; if (data.dateOfBirth !== void 0) detailsUpdate.dateOfBirth = data.dateOfBirth; if (data.gender !== void 0) detailsUpdate.gender = data.gender; if (data.occupation !== void 0) detailsUpdate.occupation = data.occupation; if (data.profileImage !== void 0) detailsUpdate.profileImage = data.profileImage; detailsUpdate.updatedAt = /* @__PURE__ */ new Date(); const [existingDetails] = await tx.select().from(userDetails).where(eq(userDetails.userId, userId)).limit(1); if (existingDetails) { await tx.update(userDetails).set(detailsUpdate).where(eq(userDetails.userId, userId)); } else { await tx.insert(userDetails).values({ userId, ...detailsUpdate, createdAt: /* @__PURE__ */ new Date() }); } const [user] = await tx.select().from(users).where(eq(users.id, userId)).limit(1); return user; }); } __name(updateUserProfile, "updateUserProfile"); async function createUserWithMobile(mobile) { const [user] = await db.insert(users).values({ name: null, email: null, mobile }).returning(); return user; } __name(createUserWithMobile, "createUserWithMobile"); async function upsertUserPassword(userId, hashedPassword) { try { await db.insert(userCreds).values({ userId, userPassword: hashedPassword }); return; } catch (error50) { if (error50.code === "23505") { await db.update(userCreds).set({ userPassword: hashedPassword }).where(eq(userCreds.userId, userId)); return; } throw error50; } } __name(upsertUserPassword, "upsertUserPassword"); async function deleteUserAccount(userId) { await db.transaction(async (tx) => { await tx.delete(notifCreds).where(eq(notifCreds.userId, userId)); await tx.delete(couponApplicableUsers).where(eq(couponApplicableUsers.userId, userId)); await tx.delete(couponUsage).where(eq(couponUsage.userId, userId)); await tx.delete(complaints).where(eq(complaints.userId, userId)); await tx.delete(cartItems).where(eq(cartItems.userId, userId)); await tx.delete(notifications).where(eq(notifications.userId, userId)); await tx.delete(productReviews).where(eq(productReviews.userId, userId)); await tx.update(reservedCoupons).set({ redeemedBy: null }).where(eq(reservedCoupons.redeemedBy, userId)); const userOrders = await tx.select({ id: orders.id }).from(orders).where(eq(orders.userId, userId)); for (const order of userOrders) { await tx.delete(orderItems).where(eq(orderItems.orderId, order.id)); await tx.delete(orderStatus).where(eq(orderStatus.orderId, order.id)); await tx.delete(payments).where(eq(payments.orderId, order.id)); await tx.delete(refunds).where(eq(refunds.orderId, order.id)); await tx.delete(couponUsage).where(eq(couponUsage.orderId, order.id)); await tx.delete(complaints).where(eq(complaints.orderId, order.id)); } await tx.delete(orders).where(eq(orders.userId, userId)); await tx.delete(addresses).where(eq(addresses.userId, userId)); await tx.delete(userDetails).where(eq(userDetails.userId, userId)); await tx.delete(userCreds).where(eq(userCreds.userId, userId)); await tx.delete(users).where(eq(users.id, userId)); }); } __name(deleteUserAccount, "deleteUserAccount"); // ../../packages/db_helper_sqlite/src/user-apis/coupon.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_schema(); init_drizzle_orm(); var mapCoupon = /* @__PURE__ */ __name((coupon) => ({ id: coupon.id, couponCode: coupon.couponCode, isUserBased: coupon.isUserBased, discountPercent: coupon.discountPercent ? coupon.discountPercent.toString() : null, flatDiscount: coupon.flatDiscount ? coupon.flatDiscount.toString() : null, minOrder: coupon.minOrder ? coupon.minOrder.toString() : null, productIds: coupon.productIds, maxValue: coupon.maxValue ? coupon.maxValue.toString() : null, isApplyForAll: coupon.isApplyForAll, validTill: coupon.validTill ?? null, maxLimitForUser: coupon.maxLimitForUser ?? null, isInvalidated: coupon.isInvalidated, exclusiveApply: coupon.exclusiveApply, createdAt: coupon.createdAt }), "mapCoupon"); var mapUsage = /* @__PURE__ */ __name((usage) => ({ id: usage.id, userId: usage.userId, couponId: usage.couponId, orderId: usage.orderId ?? null, orderItemId: usage.orderItemId ?? null, usedAt: usage.usedAt }), "mapUsage"); var mapApplicableUser = /* @__PURE__ */ __name((applicable) => ({ id: applicable.id, couponId: applicable.couponId, userId: applicable.userId }), "mapApplicableUser"); var mapApplicableProduct = /* @__PURE__ */ __name((applicable) => ({ id: applicable.id, couponId: applicable.couponId, productId: applicable.productId }), "mapApplicableProduct"); var mapCouponWithRelations = /* @__PURE__ */ __name((coupon) => ({ ...mapCoupon(coupon), usages: coupon.usages.map(mapUsage), applicableUsers: coupon.applicableUsers.map(mapApplicableUser), applicableProducts: coupon.applicableProducts.map(mapApplicableProduct) }), "mapCouponWithRelations"); async function getActiveCouponsWithRelations(userId) { const allCoupons = await db.query.coupons.findMany({ where: and( eq(coupons.isInvalidated, false), or( isNull(coupons.validTill), gt(coupons.validTill, /* @__PURE__ */ new Date()) ) ), with: { usages: { where: eq(couponUsage.userId, userId) }, applicableUsers: true, applicableProducts: true } }); return allCoupons.map(mapCouponWithRelations); } __name(getActiveCouponsWithRelations, "getActiveCouponsWithRelations"); async function getAllCouponsWithRelations(userId) { const allCoupons = await db.query.coupons.findMany({ with: { usages: { where: eq(couponUsage.userId, userId) }, applicableUsers: true, applicableProducts: true } }); return allCoupons.map(mapCouponWithRelations); } __name(getAllCouponsWithRelations, "getAllCouponsWithRelations"); async function getReservedCouponByCode(secretCode) { const reserved = await db.query.reservedCoupons.findFirst({ where: and( eq(reservedCoupons.secretCode, secretCode.toUpperCase()), eq(reservedCoupons.isRedeemed, false) ) }); return reserved || null; } __name(getReservedCouponByCode, "getReservedCouponByCode"); async function redeemReservedCoupon(userId, reservedCoupon) { const couponResult = await db.transaction(async (tx) => { const [coupon] = await tx.insert(coupons).values({ couponCode: reservedCoupon.couponCode, isUserBased: true, discountPercent: reservedCoupon.discountPercent, flatDiscount: reservedCoupon.flatDiscount, minOrder: reservedCoupon.minOrder, productIds: reservedCoupon.productIds, maxValue: reservedCoupon.maxValue, isApplyForAll: false, validTill: reservedCoupon.validTill, maxLimitForUser: reservedCoupon.maxLimitForUser, exclusiveApply: reservedCoupon.exclusiveApply, createdBy: reservedCoupon.createdBy }).returning(); await tx.insert(couponApplicableUsers).values({ couponId: coupon.id, userId }); await tx.update(reservedCoupons).set({ isRedeemed: true, redeemedBy: userId, redeemedAt: /* @__PURE__ */ new Date() }).where(eq(reservedCoupons.id, reservedCoupon.id)); return coupon; }); return mapCoupon(couponResult); } __name(redeemReservedCoupon, "redeemReservedCoupon"); // ../../packages/db_helper_sqlite/src/user-apis/user.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_schema(); init_drizzle_orm(); async function getUserById2(userId) { const [user] = await db.select().from(users).where(eq(users.id, userId)).limit(1); return user || null; } __name(getUserById2, "getUserById"); async function getUserDetailByUserId(userId) { const [detail] = await db.select().from(userDetails).where(eq(userDetails.userId, userId)).limit(1); return detail || null; } __name(getUserDetailByUserId, "getUserDetailByUserId"); async function getUserWithCreds(userId) { const result = await db.select().from(users).leftJoin(userCreds, eq(users.id, userCreds.userId)).where(eq(users.id, userId)).limit(1); if (result.length === 0) return null; return { user: result[0].users, creds: result[0].user_creds }; } __name(getUserWithCreds, "getUserWithCreds"); async function getNotifCred(userId, token) { return db.query.notifCreds.findFirst({ where: and(eq(notifCreds.userId, userId), eq(notifCreds.token, token)) }); } __name(getNotifCred, "getNotifCred"); async function upsertNotifCred(userId, token) { const existing = await getNotifCred(userId, token); if (existing) { await db.update(notifCreds).set({ lastVerified: /* @__PURE__ */ new Date() }).where(eq(notifCreds.id, existing.id)); return; } await db.insert(notifCreds).values({ userId, token, lastVerified: /* @__PURE__ */ new Date() }); } __name(upsertNotifCred, "upsertNotifCred"); async function deleteUnloggedToken(token) { await db.delete(unloggedUserTokens).where(eq(unloggedUserTokens.token, token)); } __name(deleteUnloggedToken, "deleteUnloggedToken"); async function getUnloggedToken(token) { return db.query.unloggedUserTokens.findFirst({ where: eq(unloggedUserTokens.token, token) }); } __name(getUnloggedToken, "getUnloggedToken"); async function upsertUnloggedToken(token) { const existing = await getUnloggedToken(token); if (existing) { await db.update(unloggedUserTokens).set({ lastVerified: /* @__PURE__ */ new Date() }).where(eq(unloggedUserTokens.id, existing.id)); return; } await db.insert(unloggedUserTokens).values({ token, lastVerified: /* @__PURE__ */ new Date() }); } __name(upsertUnloggedToken, "upsertUnloggedToken"); // ../../packages/db_helper_sqlite/src/user-apis/order.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_schema(); init_drizzle_orm(); async function validateAndGetCoupon(couponId, userId, totalAmount) { if (!couponId) return null; const coupon = await db.query.coupons.findFirst({ where: eq(coupons.id, couponId), with: { usages: { where: eq(couponUsage.userId, userId) } } }); if (!coupon) throw new Error("Invalid coupon"); if (coupon.isInvalidated) throw new Error("Coupon is no longer valid"); if (coupon.validTill && new Date(coupon.validTill) < /* @__PURE__ */ new Date()) throw new Error("Coupon has expired"); if (coupon.maxLimitForUser && coupon.usages.length >= coupon.maxLimitForUser) throw new Error("Coupon usage limit exceeded"); if (coupon.minOrder && parseFloat(coupon.minOrder.toString()) > totalAmount) throw new Error("Order amount does not meet coupon minimum requirement"); return coupon; } __name(validateAndGetCoupon, "validateAndGetCoupon"); function applyDiscountToOrder(orderTotal, appliedCoupon, proportion) { let finalOrderTotal = orderTotal; if (appliedCoupon) { if (appliedCoupon.discountPercent) { const discount = Math.min( orderTotal * parseFloat(appliedCoupon.discountPercent.toString()) / 100, appliedCoupon.maxValue ? parseFloat(appliedCoupon.maxValue.toString()) * proportion : Infinity ); finalOrderTotal -= discount; } else if (appliedCoupon.flatDiscount) { const discount = Math.min( parseFloat(appliedCoupon.flatDiscount.toString()) * proportion, appliedCoupon.maxValue ? parseFloat(appliedCoupon.maxValue.toString()) * proportion : finalOrderTotal ); finalOrderTotal -= discount; } } return { finalOrderTotal, orderGroupProportion: proportion }; } __name(applyDiscountToOrder, "applyDiscountToOrder"); async function getAddressByIdAndUser(addressId, userId) { return db.query.addresses.findFirst({ where: and(eq(addresses.userId, userId), eq(addresses.id, addressId)) }); } __name(getAddressByIdAndUser, "getAddressByIdAndUser"); async function getProductById4(productId) { return db.query.productInfo.findFirst({ where: eq(productInfo.id, productId) }); } __name(getProductById4, "getProductById"); async function checkUserSuspended(userId) { const userDetail = await db.query.userDetails.findFirst({ where: eq(userDetails.userId, userId) }); return userDetail?.isSuspended ?? false; } __name(checkUserSuspended, "checkUserSuspended"); async function getSlotCapacityStatus(slotId) { const slot = await db.query.deliverySlotInfo.findFirst({ where: eq(deliverySlotInfo.id, slotId), columns: { isCapacityFull: true } }); return slot?.isCapacityFull ?? false; } __name(getSlotCapacityStatus, "getSlotCapacityStatus"); async function placeOrderTransaction(params) { const { userId, ordersData, paymentMethod } = params; return db.transaction(async (tx) => { let sharedPaymentInfoId = null; if (paymentMethod === "online") { const [paymentInfo] = await tx.insert(paymentInfoTable).values({ status: "pending", gateway: "razorpay", merchantOrderId: `multi_order_${Date.now()}` }).returning(); sharedPaymentInfoId = paymentInfo.id; } const ordersToInsert = ordersData.map((od) => ({ ...od.order, paymentInfoId: sharedPaymentInfoId })); const insertedOrders = await tx.insert(orders).values(ordersToInsert).returning(); const allOrderItems = []; const allOrderStatuses = []; insertedOrders.forEach((order, index) => { const od = ordersData[index]; od.orderItems.forEach((item) => { allOrderItems.push({ ...item, orderId: order.id }); }); allOrderStatuses.push({ ...od.orderStatus, orderId: order.id }); }); await tx.insert(orderItems).values(allOrderItems); await tx.insert(orderStatus).values(allOrderStatuses); return insertedOrders; }); } __name(placeOrderTransaction, "placeOrderTransaction"); async function deleteCartItemsForOrder(userId, productIds) { await db.delete(cartItems).where( and( eq(cartItems.userId, userId), inArray(cartItems.productId, productIds) ) ); } __name(deleteCartItemsForOrder, "deleteCartItemsForOrder"); async function recordCouponUsage(userId, couponId, orderId) { await db.insert(couponUsage).values({ userId, couponId, orderId, orderItemId: null, usedAt: /* @__PURE__ */ new Date() }); } __name(recordCouponUsage, "recordCouponUsage"); async function getOrdersWithRelations(userId, offset, pageSize) { return db.query.orders.findMany({ where: eq(orders.userId, userId), with: { orderItems: { with: { product: { columns: { id: true, name: true, images: true } } } }, slot: { columns: { deliveryTime: true } }, paymentInfo: { columns: { id: true, status: true } }, orderStatus: { columns: { id: true, isCancelled: true, isDelivered: true, paymentStatus: true, cancelReason: true } }, refunds: { columns: { refundStatus: true, refundAmount: true } } }, orderBy: [desc(orders.createdAt)], limit: pageSize, offset }); } __name(getOrdersWithRelations, "getOrdersWithRelations"); async function getOrderCount(userId) { const result = await db.select({ count: sql`count(*)` }).from(orders).where(eq(orders.userId, userId)); return Number(result[0]?.count ?? 0); } __name(getOrderCount, "getOrderCount"); async function getOrderByIdWithRelations(orderId, userId) { const order = await db.query.orders.findFirst({ where: and(eq(orders.id, orderId), eq(orders.userId, userId)), with: { orderItems: { with: { product: { columns: { id: true, name: true, images: true } } } }, slot: { columns: { deliveryTime: true } }, paymentInfo: { columns: { id: true, status: true } }, orderStatus: { columns: { id: true, isCancelled: true, isDelivered: true, paymentStatus: true, cancelReason: true }, with: { refundCoupon: { columns: { id: true, couponCode: true } } } }, refunds: { columns: { refundStatus: true, refundAmount: true } } } }); return order; } __name(getOrderByIdWithRelations, "getOrderByIdWithRelations"); async function getCouponUsageForOrder(orderId) { return db.query.couponUsage.findMany({ where: eq(couponUsage.orderId, orderId), with: { coupon: { columns: { id: true, couponCode: true, discountPercent: true, flatDiscount: true, maxValue: true } } } }); } __name(getCouponUsageForOrder, "getCouponUsageForOrder"); async function getOrderBasic(orderId) { return db.query.orders.findFirst({ where: eq(orders.id, orderId), with: { orderStatus: { columns: { id: true, isCancelled: true, isDelivered: true } } } }); } __name(getOrderBasic, "getOrderBasic"); async function cancelOrderTransaction(orderId, statusId, reason, isCod) { await db.transaction(async (tx) => { await tx.update(orderStatus).set({ isCancelled: true, cancelReason: reason, cancellationUserNotes: reason, cancellationReviewed: false }).where(eq(orderStatus.id, statusId)); const refundStatus = isCod ? "na" : "pending"; await tx.insert(refunds).values({ orderId, refundStatus }); }); } __name(cancelOrderTransaction, "cancelOrderTransaction"); async function updateOrderNotes2(orderId, userNotes) { await db.update(orders).set({ userNotes: userNotes || null }).where(eq(orders.id, orderId)); } __name(updateOrderNotes2, "updateOrderNotes"); async function getRecentlyDeliveredOrderIds(userId, limit, since) { const recentOrders = await db.select({ id: orders.id }).from(orders).innerJoin(orderStatus, eq(orders.id, orderStatus.orderId)).where( and( eq(orders.userId, userId), eq(orderStatus.isDelivered, true), gte(orders.createdAt, since) ) ).orderBy(desc(orders.createdAt)).limit(limit); return recentOrders.map((order) => order.id); } __name(getRecentlyDeliveredOrderIds, "getRecentlyDeliveredOrderIds"); async function getProductIdsFromOrders(orderIds) { const orderItemsResult = await db.select({ productId: orderItems.productId }).from(orderItems).where(inArray(orderItems.orderId, orderIds)); return [...new Set(orderItemsResult.map((item) => item.productId))]; } __name(getProductIdsFromOrders, "getProductIdsFromOrders"); async function getProductsForRecentOrders(productIds, limit) { const results = await db.select({ id: productInfo.id, name: productInfo.name, shortDescription: productInfo.shortDescription, price: productInfo.price, images: productInfo.images, isOutOfStock: productInfo.isOutOfStock, unitShortNotation: units.shortNotation, incrementStep: productInfo.incrementStep }).from(productInfo).innerJoin(units, eq(productInfo.unitId, units.id)).where( and( inArray(productInfo.id, productIds), eq(productInfo.isSuspended, false) ) ).orderBy(desc(productInfo.createdAt)).limit(limit); return results.map((product) => ({ ...product, price: String(product.price ?? "0") })); } __name(getProductsForRecentOrders, "getProductsForRecentOrders"); // ../../packages/db_helper_sqlite/src/stores/store-helpers.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_schema(); init_drizzle_orm(); async function getAllBannersForCache() { return db.query.homeBanners.findMany({ where: isNotNull(homeBanners.serialNum), orderBy: asc(homeBanners.serialNum) }); } __name(getAllBannersForCache, "getAllBannersForCache"); async function getAllProductsForCache() { const results = await db.select({ id: productInfo.id, name: productInfo.name, shortDescription: productInfo.shortDescription, longDescription: productInfo.longDescription, price: productInfo.price, marketPrice: productInfo.marketPrice, images: productInfo.images, isOutOfStock: productInfo.isOutOfStock, storeId: productInfo.storeId, unitShortNotation: units.shortNotation, incrementStep: productInfo.incrementStep, productQuantity: productInfo.productQuantity, isFlashAvailable: productInfo.isFlashAvailable, flashPrice: productInfo.flashPrice }).from(productInfo).innerJoin(units, eq(productInfo.unitId, units.id)); return results.map((product) => ({ ...product, price: String(product.price ?? "0"), marketPrice: product.marketPrice ? String(product.marketPrice) : null, flashPrice: product.flashPrice ? String(product.flashPrice) : null })); } __name(getAllProductsForCache, "getAllProductsForCache"); async function getAllStoresForCache() { return db.query.storeInfo.findMany({ columns: { id: true, name: true, description: true } }); } __name(getAllStoresForCache, "getAllStoresForCache"); async function getAllDeliverySlotsForCache() { return db.select({ productId: productSlots.productId, id: deliverySlotInfo.id, deliveryTime: deliverySlotInfo.deliveryTime, freezeTime: deliverySlotInfo.freezeTime, isCapacityFull: deliverySlotInfo.isCapacityFull }).from(productSlots).innerJoin(deliverySlotInfo, eq(productSlots.slotId, deliverySlotInfo.id)).where( and( eq(deliverySlotInfo.isActive, true), eq(deliverySlotInfo.isCapacityFull, false), gt(deliverySlotInfo.deliveryTime, sql`CURRENT_TIMESTAMP`) ) ); } __name(getAllDeliverySlotsForCache, "getAllDeliverySlotsForCache"); async function getAllSpecialDealsForCache() { const results = await db.select({ productId: specialDeals.productId, quantity: specialDeals.quantity, price: specialDeals.price, validTill: specialDeals.validTill }).from(specialDeals).where(gt(specialDeals.validTill, sql`CURRENT_TIMESTAMP`)); return results.map((deal) => ({ ...deal, quantity: String(deal.quantity ?? "0"), price: String(deal.price ?? "0") })); } __name(getAllSpecialDealsForCache, "getAllSpecialDealsForCache"); async function getAllProductTagsForCache() { return db.select({ productId: productTags.productId, tagName: productTagInfo.tagName }).from(productTags).innerJoin(productTagInfo, eq(productTags.tagId, productTagInfo.id)); } __name(getAllProductTagsForCache, "getAllProductTagsForCache"); async function getAllTagsForCache() { return db.select({ id: productTagInfo.id, tagName: productTagInfo.tagName, tagDescription: productTagInfo.tagDescription, imageUrl: productTagInfo.imageUrl, isDashboardTag: productTagInfo.isDashboardTag, relatedStores: productTagInfo.relatedStores }).from(productTagInfo); } __name(getAllTagsForCache, "getAllTagsForCache"); async function getAllTagProductMappings() { return db.select({ tagId: productTags.tagId, productId: productTags.productId }).from(productTags); } __name(getAllTagProductMappings, "getAllTagProductMappings"); async function getAllSlotsWithProductsForCache() { const now = /* @__PURE__ */ new Date(); return db.query.deliverySlotInfo.findMany({ where: and( eq(deliverySlotInfo.isActive, true), gt(deliverySlotInfo.deliveryTime, now) ), with: { productSlots: { with: { product: { with: { unit: true, store: true } } } } }, orderBy: asc(deliverySlotInfo.deliveryTime) }); } __name(getAllSlotsWithProductsForCache, "getAllSlotsWithProductsForCache"); async function getUserNegativityScore(userId) { const [result] = await db.select({ totalNegativityScore: sql`sum(${userIncidents.negativityScore})` }).from(userIncidents).where(eq(userIncidents.userId, userId)).limit(1); return Number(result?.totalNegativityScore ?? 0); } __name(getUserNegativityScore, "getUserNegativityScore"); // ../../packages/db_helper_sqlite/src/lib/automated-jobs.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_schema(); async function getAllKeyValStore() { return db.select().from(keyValStore); } __name(getAllKeyValStore, "getAllKeyValStore"); // ../../packages/db_helper_sqlite/src/lib/health-check.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_schema(); async function healthCheck() { try { await db.select({ key: keyValStore.key }).from(keyValStore).limit(1); return { status: "ok" }; } catch { await db.select({ name: productInfo.name }).from(productInfo).limit(1); return { status: "ok" }; } } __name(healthCheck, "healthCheck"); // ../../packages/db_helper_sqlite/src/lib/delete-orders.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_schema(); // ../../packages/db_helper_sqlite/src/helper_methods/upload-url.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_drizzle_orm(); init_schema(); async function createUploadUrlStatus(key) { await db.insert(uploadUrlStatus).values({ key, status: "pending" }); } __name(createUploadUrlStatus, "createUploadUrlStatus"); async function claimUploadUrlStatus(key) { const result = await db.update(uploadUrlStatus).set({ status: "claimed" }).where(and(eq(uploadUrlStatus.key, key), eq(uploadUrlStatus.status, "pending"))).returning(); return result.length > 0; } __name(claimUploadUrlStatus, "claimUploadUrlStatus"); // ../../packages/db_helper_sqlite/src/lib/seed.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // src/main-router.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // src/v1-router.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // src/apis/admin-apis/apis/av-router.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // src/middleware/staff-auth.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/jose/dist/webapi/index.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/jose/dist/webapi/util/base64url.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/jose/dist/webapi/lib/buffer_utils.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var encoder = new TextEncoder(); var decoder = new TextDecoder(); var MAX_INT32 = 2 ** 32; function concat(...buffers) { const size = buffers.reduce((acc, { length }) => acc + length, 0); const buf = new Uint8Array(size); let i = 0; for (const buffer of buffers) { buf.set(buffer, i); i += buffer.length; } return buf; } __name(concat, "concat"); function encode(string4) { const bytes = new Uint8Array(string4.length); for (let i = 0; i < string4.length; i++) { const code = string4.charCodeAt(i); if (code > 127) { throw new TypeError("non-ASCII string encountered in encode()"); } bytes[i] = code; } return bytes; } __name(encode, "encode"); // ../../node_modules/jose/dist/webapi/lib/base64.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); function encodeBase64(input) { if (Uint8Array.prototype.toBase64) { return input.toBase64(); } const CHUNK_SIZE = 32768; const arr = []; for (let i = 0; i < input.length; i += CHUNK_SIZE) { arr.push(String.fromCharCode.apply(null, input.subarray(i, i + CHUNK_SIZE))); } return btoa(arr.join("")); } __name(encodeBase64, "encodeBase64"); function decodeBase64(encoded) { if (Uint8Array.fromBase64) { return Uint8Array.fromBase64(encoded); } const binary = atob(encoded); const bytes = new Uint8Array(binary.length); for (let i = 0; i < binary.length; i++) { bytes[i] = binary.charCodeAt(i); } return bytes; } __name(decodeBase64, "decodeBase64"); // ../../node_modules/jose/dist/webapi/util/base64url.js function decode(input) { if (Uint8Array.fromBase64) { return Uint8Array.fromBase64(typeof input === "string" ? input : decoder.decode(input), { alphabet: "base64url" }); } let encoded = input; if (encoded instanceof Uint8Array) { encoded = decoder.decode(encoded); } encoded = encoded.replace(/-/g, "+").replace(/_/g, "/"); try { return decodeBase64(encoded); } catch { throw new TypeError("The input to be decoded is not correctly encoded."); } } __name(decode, "decode"); function encode2(input) { let unencoded = input; if (typeof unencoded === "string") { unencoded = encoder.encode(unencoded); } if (Uint8Array.prototype.toBase64) { return unencoded.toBase64({ alphabet: "base64url", omitPadding: true }); } return encodeBase64(unencoded).replace(/=/g, "").replace(/\+/g, "-").replace(/\//g, "_"); } __name(encode2, "encode"); // ../../node_modules/jose/dist/webapi/lib/crypto_key.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var unusable = /* @__PURE__ */ __name((name, prop = "algorithm.name") => new TypeError(`CryptoKey does not support this operation, its ${prop} must be ${name}`), "unusable"); var isAlgorithm = /* @__PURE__ */ __name((algorithm, name) => algorithm.name === name, "isAlgorithm"); function getHashLength(hash3) { return parseInt(hash3.name.slice(4), 10); } __name(getHashLength, "getHashLength"); function checkHashLength(algorithm, expected) { const actual = getHashLength(algorithm.hash); if (actual !== expected) throw unusable(`SHA-${expected}`, "algorithm.hash"); } __name(checkHashLength, "checkHashLength"); function getNamedCurve(alg) { switch (alg) { case "ES256": return "P-256"; case "ES384": return "P-384"; case "ES512": return "P-521"; default: throw new Error("unreachable"); } } __name(getNamedCurve, "getNamedCurve"); function checkUsage(key, usage) { if (usage && !key.usages.includes(usage)) { throw new TypeError(`CryptoKey does not support this operation, its usages must include ${usage}.`); } } __name(checkUsage, "checkUsage"); function checkSigCryptoKey(key, alg, usage) { switch (alg) { case "HS256": case "HS384": case "HS512": { if (!isAlgorithm(key.algorithm, "HMAC")) throw unusable("HMAC"); checkHashLength(key.algorithm, parseInt(alg.slice(2), 10)); break; } case "RS256": case "RS384": case "RS512": { if (!isAlgorithm(key.algorithm, "RSASSA-PKCS1-v1_5")) throw unusable("RSASSA-PKCS1-v1_5"); checkHashLength(key.algorithm, parseInt(alg.slice(2), 10)); break; } case "PS256": case "PS384": case "PS512": { if (!isAlgorithm(key.algorithm, "RSA-PSS")) throw unusable("RSA-PSS"); checkHashLength(key.algorithm, parseInt(alg.slice(2), 10)); break; } case "Ed25519": case "EdDSA": { if (!isAlgorithm(key.algorithm, "Ed25519")) throw unusable("Ed25519"); break; } case "ML-DSA-44": case "ML-DSA-65": case "ML-DSA-87": { if (!isAlgorithm(key.algorithm, alg)) throw unusable(alg); break; } case "ES256": case "ES384": case "ES512": { if (!isAlgorithm(key.algorithm, "ECDSA")) throw unusable("ECDSA"); const expected = getNamedCurve(alg); const actual = key.algorithm.namedCurve; if (actual !== expected) throw unusable(expected, "algorithm.namedCurve"); break; } default: throw new TypeError("CryptoKey does not support this operation"); } checkUsage(key, usage); } __name(checkSigCryptoKey, "checkSigCryptoKey"); // ../../node_modules/jose/dist/webapi/lib/invalid_key_input.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); function message(msg, actual, ...types) { types = types.filter(Boolean); if (types.length > 2) { const last = types.pop(); msg += `one of type ${types.join(", ")}, or ${last}.`; } else if (types.length === 2) { msg += `one of type ${types[0]} or ${types[1]}.`; } else { msg += `of type ${types[0]}.`; } if (actual == null) { msg += ` Received ${actual}`; } else if (typeof actual === "function" && actual.name) { msg += ` Received function ${actual.name}`; } else if (typeof actual === "object" && actual != null) { if (actual.constructor?.name) { msg += ` Received an instance of ${actual.constructor.name}`; } } return msg; } __name(message, "message"); var invalidKeyInput = /* @__PURE__ */ __name((actual, ...types) => message("Key must be ", actual, ...types), "invalidKeyInput"); var withAlg = /* @__PURE__ */ __name((alg, actual, ...types) => message(`Key for the ${alg} algorithm must be `, actual, ...types), "withAlg"); // ../../node_modules/jose/dist/webapi/util/errors.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var JOSEError = class extends Error { static { __name(this, "JOSEError"); } static code = "ERR_JOSE_GENERIC"; code = "ERR_JOSE_GENERIC"; constructor(message2, options) { super(message2, options); this.name = this.constructor.name; Error.captureStackTrace?.(this, this.constructor); } }; var JWTClaimValidationFailed = class extends JOSEError { static { __name(this, "JWTClaimValidationFailed"); } static code = "ERR_JWT_CLAIM_VALIDATION_FAILED"; code = "ERR_JWT_CLAIM_VALIDATION_FAILED"; claim; reason; payload; constructor(message2, payload, claim = "unspecified", reason = "unspecified") { super(message2, { cause: { claim, reason, payload } }); this.claim = claim; this.reason = reason; this.payload = payload; } }; var JWTExpired = class extends JOSEError { static { __name(this, "JWTExpired"); } static code = "ERR_JWT_EXPIRED"; code = "ERR_JWT_EXPIRED"; claim; reason; payload; constructor(message2, payload, claim = "unspecified", reason = "unspecified") { super(message2, { cause: { claim, reason, payload } }); this.claim = claim; this.reason = reason; this.payload = payload; } }; var JOSEAlgNotAllowed = class extends JOSEError { static { __name(this, "JOSEAlgNotAllowed"); } static code = "ERR_JOSE_ALG_NOT_ALLOWED"; code = "ERR_JOSE_ALG_NOT_ALLOWED"; }; var JOSENotSupported = class extends JOSEError { static { __name(this, "JOSENotSupported"); } static code = "ERR_JOSE_NOT_SUPPORTED"; code = "ERR_JOSE_NOT_SUPPORTED"; }; var JWSInvalid = class extends JOSEError { static { __name(this, "JWSInvalid"); } static code = "ERR_JWS_INVALID"; code = "ERR_JWS_INVALID"; }; var JWTInvalid = class extends JOSEError { static { __name(this, "JWTInvalid"); } static code = "ERR_JWT_INVALID"; code = "ERR_JWT_INVALID"; }; var JWSSignatureVerificationFailed = class extends JOSEError { static { __name(this, "JWSSignatureVerificationFailed"); } static code = "ERR_JWS_SIGNATURE_VERIFICATION_FAILED"; code = "ERR_JWS_SIGNATURE_VERIFICATION_FAILED"; constructor(message2 = "signature verification failed", options) { super(message2, options); } }; // ../../node_modules/jose/dist/webapi/lib/is_key_like.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var isCryptoKey = /* @__PURE__ */ __name((key) => { if (key?.[Symbol.toStringTag] === "CryptoKey") return true; try { return key instanceof CryptoKey; } catch { return false; } }, "isCryptoKey"); var isKeyObject = /* @__PURE__ */ __name((key) => key?.[Symbol.toStringTag] === "KeyObject", "isKeyObject"); var isKeyLike = /* @__PURE__ */ __name((key) => isCryptoKey(key) || isKeyObject(key), "isKeyLike"); // ../../node_modules/jose/dist/webapi/lib/helpers.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); function assertNotSet(value, name) { if (value) { throw new TypeError(`${name} can only be called once`); } } __name(assertNotSet, "assertNotSet"); function decodeBase64url(value, label, ErrorClass) { try { return decode(value); } catch { throw new ErrorClass(`Failed to base64url decode the ${label}`); } } __name(decodeBase64url, "decodeBase64url"); // ../../node_modules/jose/dist/webapi/lib/type_checks.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var isObjectLike = /* @__PURE__ */ __name((value) => typeof value === "object" && value !== null, "isObjectLike"); function isObject2(input) { if (!isObjectLike(input) || Object.prototype.toString.call(input) !== "[object Object]") { return false; } if (Object.getPrototypeOf(input) === null) { return true; } let proto = input; while (Object.getPrototypeOf(proto) !== null) { proto = Object.getPrototypeOf(proto); } return Object.getPrototypeOf(input) === proto; } __name(isObject2, "isObject"); function isDisjoint(...headers) { const sources = headers.filter(Boolean); if (sources.length === 0 || sources.length === 1) { return true; } let acc; for (const header of sources) { const parameters = Object.keys(header); if (!acc || acc.size === 0) { acc = new Set(parameters); continue; } for (const parameter of parameters) { if (acc.has(parameter)) { return false; } acc.add(parameter); } } return true; } __name(isDisjoint, "isDisjoint"); var isJWK = /* @__PURE__ */ __name((key) => isObject2(key) && typeof key.kty === "string", "isJWK"); var isPrivateJWK = /* @__PURE__ */ __name((key) => key.kty !== "oct" && (key.kty === "AKP" && typeof key.priv === "string" || typeof key.d === "string"), "isPrivateJWK"); var isPublicJWK = /* @__PURE__ */ __name((key) => key.kty !== "oct" && key.d === void 0 && key.priv === void 0, "isPublicJWK"); var isSecretJWK = /* @__PURE__ */ __name((key) => key.kty === "oct" && typeof key.k === "string", "isSecretJWK"); // ../../node_modules/jose/dist/webapi/lib/signing.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); function checkKeyLength(alg, key) { if (alg.startsWith("RS") || alg.startsWith("PS")) { const { modulusLength } = key.algorithm; if (typeof modulusLength !== "number" || modulusLength < 2048) { throw new TypeError(`${alg} requires key modulusLength to be 2048 bits or larger`); } } } __name(checkKeyLength, "checkKeyLength"); function subtleAlgorithm(alg, algorithm) { const hash3 = `SHA-${alg.slice(-3)}`; switch (alg) { case "HS256": case "HS384": case "HS512": return { hash: hash3, name: "HMAC" }; case "PS256": case "PS384": case "PS512": return { hash: hash3, name: "RSA-PSS", saltLength: parseInt(alg.slice(-3), 10) >> 3 }; case "RS256": case "RS384": case "RS512": return { hash: hash3, name: "RSASSA-PKCS1-v1_5" }; case "ES256": case "ES384": case "ES512": return { hash: hash3, name: "ECDSA", namedCurve: algorithm.namedCurve }; case "Ed25519": case "EdDSA": return { name: "Ed25519" }; case "ML-DSA-44": case "ML-DSA-65": case "ML-DSA-87": return { name: alg }; default: throw new JOSENotSupported(`alg ${alg} is not supported either by JOSE or your javascript runtime`); } } __name(subtleAlgorithm, "subtleAlgorithm"); async function getSigKey(alg, key, usage) { if (key instanceof Uint8Array) { if (!alg.startsWith("HS")) { throw new TypeError(invalidKeyInput(key, "CryptoKey", "KeyObject", "JSON Web Key")); } return crypto.subtle.importKey("raw", key, { hash: `SHA-${alg.slice(-3)}`, name: "HMAC" }, false, [usage]); } checkSigCryptoKey(key, alg, usage); return key; } __name(getSigKey, "getSigKey"); async function sign(alg, key, data) { const cryptoKey = await getSigKey(alg, key, "sign"); checkKeyLength(alg, cryptoKey); const signature = await crypto.subtle.sign(subtleAlgorithm(alg, cryptoKey.algorithm), cryptoKey, data); return new Uint8Array(signature); } __name(sign, "sign"); async function verify(alg, key, signature, data) { const cryptoKey = await getSigKey(alg, key, "verify"); checkKeyLength(alg, cryptoKey); const algorithm = subtleAlgorithm(alg, cryptoKey.algorithm); try { return await crypto.subtle.verify(algorithm, cryptoKey, signature, data); } catch { return false; } } __name(verify, "verify"); // ../../node_modules/jose/dist/webapi/lib/normalize_key.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/jose/dist/webapi/lib/jwk_to_key.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var unsupportedAlg = 'Invalid or unsupported JWK "alg" (Algorithm) Parameter value'; function subtleMapping(jwk) { let algorithm; let keyUsages; switch (jwk.kty) { case "AKP": { switch (jwk.alg) { case "ML-DSA-44": case "ML-DSA-65": case "ML-DSA-87": algorithm = { name: jwk.alg }; keyUsages = jwk.priv ? ["sign"] : ["verify"]; break; default: throw new JOSENotSupported(unsupportedAlg); } break; } case "RSA": { switch (jwk.alg) { case "PS256": case "PS384": case "PS512": algorithm = { name: "RSA-PSS", hash: `SHA-${jwk.alg.slice(-3)}` }; keyUsages = jwk.d ? ["sign"] : ["verify"]; break; case "RS256": case "RS384": case "RS512": algorithm = { name: "RSASSA-PKCS1-v1_5", hash: `SHA-${jwk.alg.slice(-3)}` }; keyUsages = jwk.d ? ["sign"] : ["verify"]; break; case "RSA-OAEP": case "RSA-OAEP-256": case "RSA-OAEP-384": case "RSA-OAEP-512": algorithm = { name: "RSA-OAEP", hash: `SHA-${parseInt(jwk.alg.slice(-3), 10) || 1}` }; keyUsages = jwk.d ? ["decrypt", "unwrapKey"] : ["encrypt", "wrapKey"]; break; default: throw new JOSENotSupported(unsupportedAlg); } break; } case "EC": { switch (jwk.alg) { case "ES256": case "ES384": case "ES512": algorithm = { name: "ECDSA", namedCurve: { ES256: "P-256", ES384: "P-384", ES512: "P-521" }[jwk.alg] }; keyUsages = jwk.d ? ["sign"] : ["verify"]; break; case "ECDH-ES": case "ECDH-ES+A128KW": case "ECDH-ES+A192KW": case "ECDH-ES+A256KW": algorithm = { name: "ECDH", namedCurve: jwk.crv }; keyUsages = jwk.d ? ["deriveBits"] : []; break; default: throw new JOSENotSupported(unsupportedAlg); } break; } case "OKP": { switch (jwk.alg) { case "Ed25519": case "EdDSA": algorithm = { name: "Ed25519" }; keyUsages = jwk.d ? ["sign"] : ["verify"]; break; case "ECDH-ES": case "ECDH-ES+A128KW": case "ECDH-ES+A192KW": case "ECDH-ES+A256KW": algorithm = { name: jwk.crv }; keyUsages = jwk.d ? ["deriveBits"] : []; break; default: throw new JOSENotSupported(unsupportedAlg); } break; } default: throw new JOSENotSupported('Invalid or unsupported JWK "kty" (Key Type) Parameter value'); } return { algorithm, keyUsages }; } __name(subtleMapping, "subtleMapping"); async function jwkToKey(jwk) { if (!jwk.alg) { throw new TypeError('"alg" argument is required when "jwk.alg" is not present'); } const { algorithm, keyUsages } = subtleMapping(jwk); const keyData = { ...jwk }; if (keyData.kty !== "AKP") { delete keyData.alg; } delete keyData.use; return crypto.subtle.importKey("jwk", keyData, algorithm, jwk.ext ?? (jwk.d || jwk.priv ? false : true), jwk.key_ops ?? keyUsages); } __name(jwkToKey, "jwkToKey"); // ../../node_modules/jose/dist/webapi/lib/normalize_key.js var unusableForAlg = "given KeyObject instance cannot be used for this algorithm"; var cache; var handleJWK = /* @__PURE__ */ __name(async (key, jwk, alg, freeze = false) => { cache ||= /* @__PURE__ */ new WeakMap(); let cached2 = cache.get(key); if (cached2?.[alg]) { return cached2[alg]; } const cryptoKey = await jwkToKey({ ...jwk, alg }); if (freeze) Object.freeze(key); if (!cached2) { cache.set(key, { [alg]: cryptoKey }); } else { cached2[alg] = cryptoKey; } return cryptoKey; }, "handleJWK"); var handleKeyObject = /* @__PURE__ */ __name((keyObject, alg) => { cache ||= /* @__PURE__ */ new WeakMap(); let cached2 = cache.get(keyObject); if (cached2?.[alg]) { return cached2[alg]; } const isPublic = keyObject.type === "public"; const extractable = isPublic ? true : false; let cryptoKey; if (keyObject.asymmetricKeyType === "x25519") { switch (alg) { case "ECDH-ES": case "ECDH-ES+A128KW": case "ECDH-ES+A192KW": case "ECDH-ES+A256KW": break; default: throw new TypeError(unusableForAlg); } cryptoKey = keyObject.toCryptoKey(keyObject.asymmetricKeyType, extractable, isPublic ? [] : ["deriveBits"]); } if (keyObject.asymmetricKeyType === "ed25519") { if (alg !== "EdDSA" && alg !== "Ed25519") { throw new TypeError(unusableForAlg); } cryptoKey = keyObject.toCryptoKey(keyObject.asymmetricKeyType, extractable, [ isPublic ? "verify" : "sign" ]); } switch (keyObject.asymmetricKeyType) { case "ml-dsa-44": case "ml-dsa-65": case "ml-dsa-87": { if (alg !== keyObject.asymmetricKeyType.toUpperCase()) { throw new TypeError(unusableForAlg); } cryptoKey = keyObject.toCryptoKey(keyObject.asymmetricKeyType, extractable, [ isPublic ? "verify" : "sign" ]); } } if (keyObject.asymmetricKeyType === "rsa") { let hash3; switch (alg) { case "RSA-OAEP": hash3 = "SHA-1"; break; case "RS256": case "PS256": case "RSA-OAEP-256": hash3 = "SHA-256"; break; case "RS384": case "PS384": case "RSA-OAEP-384": hash3 = "SHA-384"; break; case "RS512": case "PS512": case "RSA-OAEP-512": hash3 = "SHA-512"; break; default: throw new TypeError(unusableForAlg); } if (alg.startsWith("RSA-OAEP")) { return keyObject.toCryptoKey({ name: "RSA-OAEP", hash: hash3 }, extractable, isPublic ? ["encrypt"] : ["decrypt"]); } cryptoKey = keyObject.toCryptoKey({ name: alg.startsWith("PS") ? "RSA-PSS" : "RSASSA-PKCS1-v1_5", hash: hash3 }, extractable, [isPublic ? "verify" : "sign"]); } if (keyObject.asymmetricKeyType === "ec") { const nist = /* @__PURE__ */ new Map([ ["prime256v1", "P-256"], ["secp384r1", "P-384"], ["secp521r1", "P-521"] ]); const namedCurve = nist.get(keyObject.asymmetricKeyDetails?.namedCurve); if (!namedCurve) { throw new TypeError(unusableForAlg); } const expectedCurve = { ES256: "P-256", ES384: "P-384", ES512: "P-521" }; if (expectedCurve[alg] && namedCurve === expectedCurve[alg]) { cryptoKey = keyObject.toCryptoKey({ name: "ECDSA", namedCurve }, extractable, [isPublic ? "verify" : "sign"]); } if (alg.startsWith("ECDH-ES")) { cryptoKey = keyObject.toCryptoKey({ name: "ECDH", namedCurve }, extractable, isPublic ? [] : ["deriveBits"]); } } if (!cryptoKey) { throw new TypeError(unusableForAlg); } if (!cached2) { cache.set(keyObject, { [alg]: cryptoKey }); } else { cached2[alg] = cryptoKey; } return cryptoKey; }, "handleKeyObject"); async function normalizeKey(key, alg) { if (key instanceof Uint8Array) { return key; } if (isCryptoKey(key)) { return key; } if (isKeyObject(key)) { if (key.type === "secret") { return key.export(); } if ("toCryptoKey" in key && typeof key.toCryptoKey === "function") { try { return handleKeyObject(key, alg); } catch (err) { if (err instanceof TypeError) { throw err; } } } let jwk = key.export({ format: "jwk" }); return handleJWK(key, jwk, alg); } if (isJWK(key)) { if (key.k) { return decode(key.k); } return handleJWK(key, key, alg, true); } throw new Error("unreachable"); } __name(normalizeKey, "normalizeKey"); // ../../node_modules/jose/dist/webapi/lib/validate_crit.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); function validateCrit(Err, recognizedDefault, recognizedOption, protectedHeader, joseHeader) { if (joseHeader.crit !== void 0 && protectedHeader?.crit === void 0) { throw new Err('"crit" (Critical) Header Parameter MUST be integrity protected'); } if (!protectedHeader || protectedHeader.crit === void 0) { return /* @__PURE__ */ new Set(); } if (!Array.isArray(protectedHeader.crit) || protectedHeader.crit.length === 0 || protectedHeader.crit.some((input) => typeof input !== "string" || input.length === 0)) { throw new Err('"crit" (Critical) Header Parameter MUST be an array of non-empty strings when present'); } let recognized; if (recognizedOption !== void 0) { recognized = new Map([...Object.entries(recognizedOption), ...recognizedDefault.entries()]); } else { recognized = recognizedDefault; } for (const parameter of protectedHeader.crit) { if (!recognized.has(parameter)) { throw new JOSENotSupported(`Extension Header Parameter "${parameter}" is not recognized`); } if (joseHeader[parameter] === void 0) { throw new Err(`Extension Header Parameter "${parameter}" is missing`); } if (recognized.get(parameter) && protectedHeader[parameter] === void 0) { throw new Err(`Extension Header Parameter "${parameter}" MUST be integrity protected`); } } return new Set(protectedHeader.crit); } __name(validateCrit, "validateCrit"); // ../../node_modules/jose/dist/webapi/lib/validate_algorithms.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); function validateAlgorithms(option, algorithms) { if (algorithms !== void 0 && (!Array.isArray(algorithms) || algorithms.some((s) => typeof s !== "string"))) { throw new TypeError(`"${option}" option must be an array of strings`); } if (!algorithms) { return void 0; } return new Set(algorithms); } __name(validateAlgorithms, "validateAlgorithms"); // ../../node_modules/jose/dist/webapi/lib/check_key_type.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var tag = /* @__PURE__ */ __name((key) => key?.[Symbol.toStringTag], "tag"); var jwkMatchesOp = /* @__PURE__ */ __name((alg, key, usage) => { if (key.use !== void 0) { let expected; switch (usage) { case "sign": case "verify": expected = "sig"; break; case "encrypt": case "decrypt": expected = "enc"; break; } if (key.use !== expected) { throw new TypeError(`Invalid key for this operation, its "use" must be "${expected}" when present`); } } if (key.alg !== void 0 && key.alg !== alg) { throw new TypeError(`Invalid key for this operation, its "alg" must be "${alg}" when present`); } if (Array.isArray(key.key_ops)) { let expectedKeyOp; switch (true) { case (usage === "sign" || usage === "verify"): case alg === "dir": case alg.includes("CBC-HS"): expectedKeyOp = usage; break; case alg.startsWith("PBES2"): expectedKeyOp = "deriveBits"; break; case /^A\d{3}(?:GCM)?(?:KW)?$/.test(alg): if (!alg.includes("GCM") && alg.endsWith("KW")) { expectedKeyOp = usage === "encrypt" ? "wrapKey" : "unwrapKey"; } else { expectedKeyOp = usage; } break; case (usage === "encrypt" && alg.startsWith("RSA")): expectedKeyOp = "wrapKey"; break; case usage === "decrypt": expectedKeyOp = alg.startsWith("RSA") ? "unwrapKey" : "deriveBits"; break; } if (expectedKeyOp && key.key_ops?.includes?.(expectedKeyOp) === false) { throw new TypeError(`Invalid key for this operation, its "key_ops" must include "${expectedKeyOp}" when present`); } } return true; }, "jwkMatchesOp"); var symmetricTypeCheck = /* @__PURE__ */ __name((alg, key, usage) => { if (key instanceof Uint8Array) return; if (isJWK(key)) { if (isSecretJWK(key) && jwkMatchesOp(alg, key, usage)) return; throw new TypeError(`JSON Web Key for symmetric algorithms must have JWK "kty" (Key Type) equal to "oct" and the JWK "k" (Key Value) present`); } if (!isKeyLike(key)) { throw new TypeError(withAlg(alg, key, "CryptoKey", "KeyObject", "JSON Web Key", "Uint8Array")); } if (key.type !== "secret") { throw new TypeError(`${tag(key)} instances for symmetric algorithms must be of type "secret"`); } }, "symmetricTypeCheck"); var asymmetricTypeCheck = /* @__PURE__ */ __name((alg, key, usage) => { if (isJWK(key)) { switch (usage) { case "decrypt": case "sign": if (isPrivateJWK(key) && jwkMatchesOp(alg, key, usage)) return; throw new TypeError(`JSON Web Key for this operation must be a private JWK`); case "encrypt": case "verify": if (isPublicJWK(key) && jwkMatchesOp(alg, key, usage)) return; throw new TypeError(`JSON Web Key for this operation must be a public JWK`); } } if (!isKeyLike(key)) { throw new TypeError(withAlg(alg, key, "CryptoKey", "KeyObject", "JSON Web Key")); } if (key.type === "secret") { throw new TypeError(`${tag(key)} instances for asymmetric algorithms must not be of type "secret"`); } if (key.type === "public") { switch (usage) { case "sign": throw new TypeError(`${tag(key)} instances for asymmetric algorithm signing must be of type "private"`); case "decrypt": throw new TypeError(`${tag(key)} instances for asymmetric algorithm decryption must be of type "private"`); } } if (key.type === "private") { switch (usage) { case "verify": throw new TypeError(`${tag(key)} instances for asymmetric algorithm verifying must be of type "public"`); case "encrypt": throw new TypeError(`${tag(key)} instances for asymmetric algorithm encryption must be of type "public"`); } } }, "asymmetricTypeCheck"); function checkKeyType(alg, key, usage) { switch (alg.substring(0, 2)) { case "A1": case "A2": case "di": case "HS": case "PB": symmetricTypeCheck(alg, key, usage); break; default: asymmetricTypeCheck(alg, key, usage); } } __name(checkKeyType, "checkKeyType"); // ../../node_modules/jose/dist/webapi/jws/compact/verify.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/jose/dist/webapi/jws/flattened/verify.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); async function flattenedVerify(jws, key, options) { if (!isObject2(jws)) { throw new JWSInvalid("Flattened JWS must be an object"); } if (jws.protected === void 0 && jws.header === void 0) { throw new JWSInvalid('Flattened JWS must have either of the "protected" or "header" members'); } if (jws.protected !== void 0 && typeof jws.protected !== "string") { throw new JWSInvalid("JWS Protected Header incorrect type"); } if (jws.payload === void 0) { throw new JWSInvalid("JWS Payload missing"); } if (typeof jws.signature !== "string") { throw new JWSInvalid("JWS Signature missing or incorrect type"); } if (jws.header !== void 0 && !isObject2(jws.header)) { throw new JWSInvalid("JWS Unprotected Header incorrect type"); } let parsedProt = {}; if (jws.protected) { try { const protectedHeader = decode(jws.protected); parsedProt = JSON.parse(decoder.decode(protectedHeader)); } catch { throw new JWSInvalid("JWS Protected Header is invalid"); } } if (!isDisjoint(parsedProt, jws.header)) { throw new JWSInvalid("JWS Protected and JWS Unprotected Header Parameter names must be disjoint"); } const joseHeader = { ...parsedProt, ...jws.header }; const extensions2 = validateCrit(JWSInvalid, /* @__PURE__ */ new Map([["b64", true]]), options?.crit, parsedProt, joseHeader); let b64 = true; if (extensions2.has("b64")) { b64 = parsedProt.b64; if (typeof b64 !== "boolean") { throw new JWSInvalid('The "b64" (base64url-encode payload) Header Parameter must be a boolean'); } } const { alg } = joseHeader; if (typeof alg !== "string" || !alg) { throw new JWSInvalid('JWS "alg" (Algorithm) Header Parameter missing or invalid'); } const algorithms = options && validateAlgorithms("algorithms", options.algorithms); if (algorithms && !algorithms.has(alg)) { throw new JOSEAlgNotAllowed('"alg" (Algorithm) Header Parameter value not allowed'); } if (b64) { if (typeof jws.payload !== "string") { throw new JWSInvalid("JWS Payload must be a string"); } } else if (typeof jws.payload !== "string" && !(jws.payload instanceof Uint8Array)) { throw new JWSInvalid("JWS Payload must be a string or an Uint8Array instance"); } let resolvedKey = false; if (typeof key === "function") { key = await key(parsedProt, jws); resolvedKey = true; } checkKeyType(alg, key, "verify"); const data = concat(jws.protected !== void 0 ? encode(jws.protected) : new Uint8Array(), encode("."), typeof jws.payload === "string" ? b64 ? encode(jws.payload) : encoder.encode(jws.payload) : jws.payload); const signature = decodeBase64url(jws.signature, "signature", JWSInvalid); const k = await normalizeKey(key, alg); const verified = await verify(alg, k, signature, data); if (!verified) { throw new JWSSignatureVerificationFailed(); } let payload; if (b64) { payload = decodeBase64url(jws.payload, "payload", JWSInvalid); } else if (typeof jws.payload === "string") { payload = encoder.encode(jws.payload); } else { payload = jws.payload; } const result = { payload }; if (jws.protected !== void 0) { result.protectedHeader = parsedProt; } if (jws.header !== void 0) { result.unprotectedHeader = jws.header; } if (resolvedKey) { return { ...result, key: k }; } return result; } __name(flattenedVerify, "flattenedVerify"); // ../../node_modules/jose/dist/webapi/jws/compact/verify.js async function compactVerify(jws, key, options) { if (jws instanceof Uint8Array) { jws = decoder.decode(jws); } if (typeof jws !== "string") { throw new JWSInvalid("Compact JWS must be a string or Uint8Array"); } const { 0: protectedHeader, 1: payload, 2: signature, length } = jws.split("."); if (length !== 3) { throw new JWSInvalid("Invalid Compact JWS"); } const verified = await flattenedVerify({ payload, protected: protectedHeader, signature }, key, options); const result = { payload: verified.payload, protectedHeader: verified.protectedHeader }; if (typeof key === "function") { return { ...result, key: verified.key }; } return result; } __name(compactVerify, "compactVerify"); // ../../node_modules/jose/dist/webapi/jwt/verify.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/jose/dist/webapi/lib/jwt_claims_set.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var epoch = /* @__PURE__ */ __name((date5) => Math.floor(date5.getTime() / 1e3), "epoch"); var minute = 60; var hour = minute * 60; var day = hour * 24; var week = day * 7; var year = day * 365.25; var REGEX = /^(\+|\-)? ?(\d+|\d+\.\d+) ?(seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)(?: (ago|from now))?$/i; function secs(str) { const matched = REGEX.exec(str); if (!matched || matched[4] && matched[1]) { throw new TypeError("Invalid time period format"); } const value = parseFloat(matched[2]); const unit = matched[3].toLowerCase(); let numericDate; switch (unit) { case "sec": case "secs": case "second": case "seconds": case "s": numericDate = Math.round(value); break; case "minute": case "minutes": case "min": case "mins": case "m": numericDate = Math.round(value * minute); break; case "hour": case "hours": case "hr": case "hrs": case "h": numericDate = Math.round(value * hour); break; case "day": case "days": case "d": numericDate = Math.round(value * day); break; case "week": case "weeks": case "w": numericDate = Math.round(value * week); break; default: numericDate = Math.round(value * year); break; } if (matched[1] === "-" || matched[4] === "ago") { return -numericDate; } return numericDate; } __name(secs, "secs"); function validateInput(label, input) { if (!Number.isFinite(input)) { throw new TypeError(`Invalid ${label} input`); } return input; } __name(validateInput, "validateInput"); var normalizeTyp = /* @__PURE__ */ __name((value) => { if (value.includes("/")) { return value.toLowerCase(); } return `application/${value.toLowerCase()}`; }, "normalizeTyp"); var checkAudiencePresence = /* @__PURE__ */ __name((audPayload, audOption) => { if (typeof audPayload === "string") { return audOption.includes(audPayload); } if (Array.isArray(audPayload)) { return audOption.some(Set.prototype.has.bind(new Set(audPayload))); } return false; }, "checkAudiencePresence"); function validateClaimsSet(protectedHeader, encodedPayload, options = {}) { let payload; try { payload = JSON.parse(decoder.decode(encodedPayload)); } catch { } if (!isObject2(payload)) { throw new JWTInvalid("JWT Claims Set must be a top-level JSON object"); } const { typ } = options; if (typ && (typeof protectedHeader.typ !== "string" || normalizeTyp(protectedHeader.typ) !== normalizeTyp(typ))) { throw new JWTClaimValidationFailed('unexpected "typ" JWT header value', payload, "typ", "check_failed"); } const { requiredClaims = [], issuer, subject, audience, maxTokenAge } = options; const presenceCheck = [...requiredClaims]; if (maxTokenAge !== void 0) presenceCheck.push("iat"); if (audience !== void 0) presenceCheck.push("aud"); if (subject !== void 0) presenceCheck.push("sub"); if (issuer !== void 0) presenceCheck.push("iss"); for (const claim of new Set(presenceCheck.reverse())) { if (!(claim in payload)) { throw new JWTClaimValidationFailed(`missing required "${claim}" claim`, payload, claim, "missing"); } } if (issuer && !(Array.isArray(issuer) ? issuer : [issuer]).includes(payload.iss)) { throw new JWTClaimValidationFailed('unexpected "iss" claim value', payload, "iss", "check_failed"); } if (subject && payload.sub !== subject) { throw new JWTClaimValidationFailed('unexpected "sub" claim value', payload, "sub", "check_failed"); } if (audience && !checkAudiencePresence(payload.aud, typeof audience === "string" ? [audience] : audience)) { throw new JWTClaimValidationFailed('unexpected "aud" claim value', payload, "aud", "check_failed"); } let tolerance; switch (typeof options.clockTolerance) { case "string": tolerance = secs(options.clockTolerance); break; case "number": tolerance = options.clockTolerance; break; case "undefined": tolerance = 0; break; default: throw new TypeError("Invalid clockTolerance option type"); } const { currentDate } = options; const now = epoch(currentDate || /* @__PURE__ */ new Date()); if ((payload.iat !== void 0 || maxTokenAge) && typeof payload.iat !== "number") { throw new JWTClaimValidationFailed('"iat" claim must be a number', payload, "iat", "invalid"); } if (payload.nbf !== void 0) { if (typeof payload.nbf !== "number") { throw new JWTClaimValidationFailed('"nbf" claim must be a number', payload, "nbf", "invalid"); } if (payload.nbf > now + tolerance) { throw new JWTClaimValidationFailed('"nbf" claim timestamp check failed', payload, "nbf", "check_failed"); } } if (payload.exp !== void 0) { if (typeof payload.exp !== "number") { throw new JWTClaimValidationFailed('"exp" claim must be a number', payload, "exp", "invalid"); } if (payload.exp <= now - tolerance) { throw new JWTExpired('"exp" claim timestamp check failed', payload, "exp", "check_failed"); } } if (maxTokenAge) { const age = now - payload.iat; const max2 = typeof maxTokenAge === "number" ? maxTokenAge : secs(maxTokenAge); if (age - tolerance > max2) { throw new JWTExpired('"iat" claim timestamp check failed (too far in the past)', payload, "iat", "check_failed"); } if (age < 0 - tolerance) { throw new JWTClaimValidationFailed('"iat" claim timestamp check failed (it should be in the past)', payload, "iat", "check_failed"); } } return payload; } __name(validateClaimsSet, "validateClaimsSet"); var JWTClaimsBuilder = class { static { __name(this, "JWTClaimsBuilder"); } #payload; constructor(payload) { if (!isObject2(payload)) { throw new TypeError("JWT Claims Set MUST be an object"); } this.#payload = structuredClone(payload); } data() { return encoder.encode(JSON.stringify(this.#payload)); } get iss() { return this.#payload.iss; } set iss(value) { this.#payload.iss = value; } get sub() { return this.#payload.sub; } set sub(value) { this.#payload.sub = value; } get aud() { return this.#payload.aud; } set aud(value) { this.#payload.aud = value; } set jti(value) { this.#payload.jti = value; } set nbf(value) { if (typeof value === "number") { this.#payload.nbf = validateInput("setNotBefore", value); } else if (value instanceof Date) { this.#payload.nbf = validateInput("setNotBefore", epoch(value)); } else { this.#payload.nbf = epoch(/* @__PURE__ */ new Date()) + secs(value); } } set exp(value) { if (typeof value === "number") { this.#payload.exp = validateInput("setExpirationTime", value); } else if (value instanceof Date) { this.#payload.exp = validateInput("setExpirationTime", epoch(value)); } else { this.#payload.exp = epoch(/* @__PURE__ */ new Date()) + secs(value); } } set iat(value) { if (value === void 0) { this.#payload.iat = epoch(/* @__PURE__ */ new Date()); } else if (value instanceof Date) { this.#payload.iat = validateInput("setIssuedAt", epoch(value)); } else if (typeof value === "string") { this.#payload.iat = validateInput("setIssuedAt", epoch(/* @__PURE__ */ new Date()) + secs(value)); } else { this.#payload.iat = validateInput("setIssuedAt", value); } } }; // ../../node_modules/jose/dist/webapi/jwt/verify.js async function jwtVerify(jwt2, key, options) { const verified = await compactVerify(jwt2, key, options); if (verified.protectedHeader.crit?.includes("b64") && verified.protectedHeader.b64 === false) { throw new JWTInvalid("JWTs MUST NOT use unencoded payload"); } const payload = validateClaimsSet(verified.protectedHeader, verified.payload, options); const result = { payload, protectedHeader: verified.protectedHeader }; if (typeof key === "function") { return { ...result, key: verified.key }; } return result; } __name(jwtVerify, "jwtVerify"); // ../../node_modules/jose/dist/webapi/jws/compact/sign.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/jose/dist/webapi/jws/flattened/sign.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var FlattenedSign = class { static { __name(this, "FlattenedSign"); } #payload; #protectedHeader; #unprotectedHeader; constructor(payload) { if (!(payload instanceof Uint8Array)) { throw new TypeError("payload must be an instance of Uint8Array"); } this.#payload = payload; } setProtectedHeader(protectedHeader) { assertNotSet(this.#protectedHeader, "setProtectedHeader"); this.#protectedHeader = protectedHeader; return this; } setUnprotectedHeader(unprotectedHeader) { assertNotSet(this.#unprotectedHeader, "setUnprotectedHeader"); this.#unprotectedHeader = unprotectedHeader; return this; } async sign(key, options) { if (!this.#protectedHeader && !this.#unprotectedHeader) { throw new JWSInvalid("either setProtectedHeader or setUnprotectedHeader must be called before #sign()"); } if (!isDisjoint(this.#protectedHeader, this.#unprotectedHeader)) { throw new JWSInvalid("JWS Protected and JWS Unprotected Header Parameter names must be disjoint"); } const joseHeader = { ...this.#protectedHeader, ...this.#unprotectedHeader }; const extensions2 = validateCrit(JWSInvalid, /* @__PURE__ */ new Map([["b64", true]]), options?.crit, this.#protectedHeader, joseHeader); let b64 = true; if (extensions2.has("b64")) { b64 = this.#protectedHeader.b64; if (typeof b64 !== "boolean") { throw new JWSInvalid('The "b64" (base64url-encode payload) Header Parameter must be a boolean'); } } const { alg } = joseHeader; if (typeof alg !== "string" || !alg) { throw new JWSInvalid('JWS "alg" (Algorithm) Header Parameter missing or invalid'); } checkKeyType(alg, key, "sign"); let payloadS; let payloadB; if (b64) { payloadS = encode2(this.#payload); payloadB = encode(payloadS); } else { payloadB = this.#payload; payloadS = ""; } let protectedHeaderString; let protectedHeaderBytes; if (this.#protectedHeader) { protectedHeaderString = encode2(JSON.stringify(this.#protectedHeader)); protectedHeaderBytes = encode(protectedHeaderString); } else { protectedHeaderString = ""; protectedHeaderBytes = new Uint8Array(); } const data = concat(protectedHeaderBytes, encode("."), payloadB); const k = await normalizeKey(key, alg); const signature = await sign(alg, k, data); const jws = { signature: encode2(signature), payload: payloadS }; if (this.#unprotectedHeader) { jws.header = this.#unprotectedHeader; } if (this.#protectedHeader) { jws.protected = protectedHeaderString; } return jws; } }; // ../../node_modules/jose/dist/webapi/jws/compact/sign.js var CompactSign = class { static { __name(this, "CompactSign"); } #flattened; constructor(payload) { this.#flattened = new FlattenedSign(payload); } setProtectedHeader(protectedHeader) { this.#flattened.setProtectedHeader(protectedHeader); return this; } async sign(key, options) { const jws = await this.#flattened.sign(key, options); if (jws.payload === void 0) { throw new TypeError("use the flattened module for creating JWS with b64: false"); } return `${jws.protected}.${jws.payload}.${jws.signature}`; } }; // ../../node_modules/jose/dist/webapi/jwt/sign.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var SignJWT = class { static { __name(this, "SignJWT"); } #protectedHeader; #jwt; constructor(payload = {}) { this.#jwt = new JWTClaimsBuilder(payload); } setIssuer(issuer) { this.#jwt.iss = issuer; return this; } setSubject(subject) { this.#jwt.sub = subject; return this; } setAudience(audience) { this.#jwt.aud = audience; return this; } setJti(jwtId) { this.#jwt.jti = jwtId; return this; } setNotBefore(input) { this.#jwt.nbf = input; return this; } setExpirationTime(input) { this.#jwt.exp = input; return this; } setIssuedAt(input) { this.#jwt.iat = input; return this; } setProtectedHeader(protectedHeader) { this.#protectedHeader = protectedHeader; return this; } async sign(key, options) { const sig = new CompactSign(this.#jwt.data()); sig.setProtectedHeader(this.#protectedHeader); if (Array.isArray(this.#protectedHeader?.crit) && this.#protectedHeader.crit.includes("b64") && this.#protectedHeader.b64 === false) { throw new JWTInvalid("JWTs MUST NOT use unencoded payload"); } return sig.sign(key, options); } }; // src/lib/api-error.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var ApiError = class _ApiError extends Error { static { __name(this, "ApiError"); } constructor(message2, statusCode = 500, details) { console.log(message2); super(message2); this.name = "ApiError"; this.statusCode = statusCode; this.details = details; Error.captureStackTrace?.(this, _ApiError); } }; // src/lib/env-exporter.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var runtimeEnv = globalThis.ENV || globalThis.process?.env || {}; var appUrl = runtimeEnv.APP_URL; var jwtSecret = runtimeEnv.JWT_SECRET; var encodedJwtSecret = new TextEncoder().encode(jwtSecret); var s3AccessKeyId = runtimeEnv.S3_ACCESS_KEY_ID; var s3SecretAccessKey = runtimeEnv.S3_SECRET_ACCESS_KEY; var s3BucketName = runtimeEnv.S3_BUCKET_NAME; var s3Region = runtimeEnv.S3_REGION; var assetsDomain = runtimeEnv.ASSETS_DOMAIN; var apiCacheKey = runtimeEnv.API_CACHE_KEY; var cloudflareApiToken = runtimeEnv.CLOUDFLARE_API_TOKEN; var cloudflareZoneId = runtimeEnv.CLOUDFLARE_ZONE_ID; var s3Url = runtimeEnv.S3_URL; var redisUrl = runtimeEnv.REDIS_URL; var expoAccessToken = runtimeEnv.EXPO_ACCESS_TOKEN; var phonePeBaseUrl = runtimeEnv.PHONE_PE_BASE_URL; var phonePeClientId = runtimeEnv.PHONE_PE_CLIENT_ID; var phonePeClientVersion = Number(runtimeEnv.PHONE_PE_CLIENT_VERSION); var phonePeClientSecret = runtimeEnv.PHONE_PE_CLIENT_SECRET; var phonePeMerchantId = runtimeEnv.PHONE_PE_MERCHANT_ID; var razorpayId = runtimeEnv.RAZORPAY_KEY; var razorpaySecret = runtimeEnv.RAZORPAY_SECRET; var otpSenderAuthToken = runtimeEnv.OTP_SENDER_AUTH_TOKEN; var minOrderValue = Number(runtimeEnv.MIN_ORDER_VALUE); var deliveryCharge = Number(runtimeEnv.DELIVERY_CHARGE); var telegramBotToken = runtimeEnv.TELEGRAM_BOT_TOKEN; var telegramChatIds = runtimeEnv.TELEGRAM_CHAT_IDS?.split(",").map((id) => id.trim()) || []; var isDevMode = runtimeEnv.ENV_MODE === "dev"; // src/middleware/staff-auth.ts var verifyStaffToken = /* @__PURE__ */ __name(async (token) => { try { const { payload } = await jwtVerify(token, encodedJwtSecret); return payload; } catch (error50) { throw new ApiError("Access denied. Invalid auth credentials", 401); } }, "verifyStaffToken"); var authenticateStaff = /* @__PURE__ */ __name(async (c, next) => { try { const authHeader = c.req.header("authorization"); if (!authHeader || !authHeader.startsWith("Bearer ")) { throw new ApiError("Staff authentication required", 401); } const token = authHeader.split(" ")[1]; if (!token) { throw new ApiError("Staff authentication token missing", 401); } const decoded = await verifyStaffToken(token); if (!decoded.staffId) { throw new ApiError("Invalid staff token format", 401); } const staff = await getStaffUserById(decoded.staffId); if (!staff) { throw new ApiError("Staff user not found", 401); } c.set("staffUser", { id: staff.id, name: staff.name }); await next(); } catch (error50) { throw error50; } }, "authenticateStaff"); // src/apis/admin-apis/apis/av-router.ts var router = new Hono2(); router.use("*", authenticateStaff); var avRouter = router; var av_router_default = avRouter; // src/apis/common-apis/apis/common.router.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // src/apis/common-apis/apis/common-product.router.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // src/apis/common-apis/apis/common-product.controller.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // src/lib/s3-client.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/@smithy/types/dist-es/middleware.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var SMITHY_CONTEXT_KEY = "__smithy_context"; // ../../node_modules/@smithy/protocol-http/dist-es/httpRequest.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var HttpRequest = class _HttpRequest { static { __name(this, "HttpRequest"); } method; protocol; hostname; port; path; query; headers; username; password; fragment; body; constructor(options) { this.method = options.method || "GET"; this.hostname = options.hostname || "localhost"; this.port = options.port; this.query = options.query || {}; this.headers = options.headers || {}; this.body = options.body; this.protocol = options.protocol ? options.protocol.slice(-1) !== ":" ? `${options.protocol}:` : options.protocol : "https:"; this.path = options.path ? options.path.charAt(0) !== "/" ? `/${options.path}` : options.path : "/"; this.username = options.username; this.password = options.password; this.fragment = options.fragment; } static clone(request) { const cloned = new _HttpRequest({ ...request, headers: { ...request.headers } }); if (cloned.query) { cloned.query = cloneQuery(cloned.query); } return cloned; } static isInstance(request) { if (!request) { return false; } const req = request; return "method" in req && "protocol" in req && "hostname" in req && "path" in req && typeof req["query"] === "object" && typeof req["headers"] === "object"; } clone() { return _HttpRequest.clone(this); } }; function cloneQuery(query) { return Object.keys(query).reduce((carry, paramName) => { const param = query[paramName]; return { ...carry, [paramName]: Array.isArray(param) ? [...param] : param }; }, {}); } __name(cloneQuery, "cloneQuery"); // ../../node_modules/@smithy/protocol-http/dist-es/httpResponse.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var HttpResponse = class { static { __name(this, "HttpResponse"); } statusCode; reason; headers; body; constructor(options) { this.statusCode = options.statusCode; this.reason = options.reason; this.headers = options.headers || {}; this.body = options.body; } static isInstance(response) { if (!response) return false; const resp = response; return typeof resp.statusCode === "number" && typeof resp.headers === "object"; } }; // ../../node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/constants.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var RequestChecksumCalculation = { WHEN_SUPPORTED: "WHEN_SUPPORTED", WHEN_REQUIRED: "WHEN_REQUIRED" }; var DEFAULT_REQUEST_CHECKSUM_CALCULATION = RequestChecksumCalculation.WHEN_SUPPORTED; var ResponseChecksumValidation = { WHEN_SUPPORTED: "WHEN_SUPPORTED", WHEN_REQUIRED: "WHEN_REQUIRED" }; var DEFAULT_RESPONSE_CHECKSUM_VALIDATION = RequestChecksumCalculation.WHEN_SUPPORTED; var ChecksumAlgorithm; (function(ChecksumAlgorithm2) { ChecksumAlgorithm2["MD5"] = "MD5"; ChecksumAlgorithm2["CRC32"] = "CRC32"; ChecksumAlgorithm2["CRC32C"] = "CRC32C"; ChecksumAlgorithm2["CRC64NVME"] = "CRC64NVME"; ChecksumAlgorithm2["SHA1"] = "SHA1"; ChecksumAlgorithm2["SHA256"] = "SHA256"; })(ChecksumAlgorithm || (ChecksumAlgorithm = {})); var ChecksumLocation; (function(ChecksumLocation2) { ChecksumLocation2["HEADER"] = "header"; ChecksumLocation2["TRAILER"] = "trailer"; })(ChecksumLocation || (ChecksumLocation = {})); var DEFAULT_CHECKSUM_ALGORITHM = ChecksumAlgorithm.CRC32; // ../../node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/flexibleChecksumsMiddleware.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/@aws-sdk/core/dist-es/submodules/client/setFeature.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); function setFeature(context2, feature2, value) { if (!context2.__aws_sdk_context) { context2.__aws_sdk_context = { features: {} }; } else if (!context2.__aws_sdk_context.features) { context2.__aws_sdk_context.features = {}; } context2.__aws_sdk_context.features[feature2] = value; } __name(setFeature, "setFeature"); // ../../node_modules/@smithy/util-middleware/dist-es/getSmithyContext.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var getSmithyContext = /* @__PURE__ */ __name((context2) => context2[SMITHY_CONTEXT_KEY] || (context2[SMITHY_CONTEXT_KEY] = {}), "getSmithyContext"); // ../../node_modules/@smithy/util-middleware/dist-es/normalizeProvider.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var normalizeProvider = /* @__PURE__ */ __name((input) => { if (typeof input === "function") return input; const promisified = Promise.resolve(input); return () => promisified; }, "normalizeProvider"); // ../../node_modules/@smithy/util-base64/dist-es/constants.browser.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var chars = `ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/`; var alphabetByEncoding = Object.entries(chars).reduce((acc, [i, c]) => { acc[c] = Number(i); return acc; }, {}); var alphabetByValue = chars.split(""); var bitsPerLetter = 6; var bitsPerByte = 8; var maxLetterValue = 63; // ../../node_modules/@smithy/util-base64/dist-es/toBase64.browser.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_dist_es(); function toBase64(_input) { let input; if (typeof _input === "string") { input = fromUtf8(_input); } else { input = _input; } const isArrayLike = typeof input === "object" && typeof input.length === "number"; const isUint8Array = typeof input === "object" && typeof input.byteOffset === "number" && typeof input.byteLength === "number"; if (!isArrayLike && !isUint8Array) { throw new Error("@smithy/util-base64: toBase64 encoder function only accepts string | Uint8Array."); } let str = ""; for (let i = 0; i < input.length; i += 3) { let bits = 0; let bitLength = 0; for (let j = i, limit = Math.min(i + 3, input.length); j < limit; j++) { bits |= input[j] << (limit - j - 1) * bitsPerByte; bitLength += bitsPerByte; } const bitClusterCount = Math.ceil(bitLength / bitsPerLetter); bits <<= bitClusterCount * bitsPerLetter - bitLength; for (let k = 1; k <= bitClusterCount; k++) { const offset = (bitClusterCount - k) * bitsPerLetter; str += alphabetByValue[(bits & maxLetterValue << offset) >> offset]; } str += "==".slice(0, 4 - bitClusterCount); } return str; } __name(toBase64, "toBase64"); // ../../node_modules/@smithy/util-stream/dist-es/checksum/ChecksumStream.browser.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var ReadableStreamRef = typeof ReadableStream === "function" ? ReadableStream : function() { }; var ChecksumStream = class extends ReadableStreamRef { static { __name(this, "ChecksumStream"); } }; // ../../node_modules/@smithy/util-stream/dist-es/checksum/createChecksumStream.browser.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/@smithy/util-stream/dist-es/stream-type-check.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var isReadableStream = /* @__PURE__ */ __name((stream) => typeof ReadableStream === "function" && (stream?.constructor?.name === ReadableStream.name || stream instanceof ReadableStream), "isReadableStream"); // ../../node_modules/@smithy/util-stream/dist-es/checksum/createChecksumStream.browser.js var createChecksumStream = /* @__PURE__ */ __name(({ expectedChecksum, checksum, source, checksumSourceLocation, base64Encoder }) => { if (!isReadableStream(source)) { throw new Error(`@smithy/util-stream: unsupported source type ${source?.constructor?.name ?? source} in ChecksumStream.`); } const encoder2 = base64Encoder ?? toBase64; if (typeof TransformStream !== "function") { throw new Error("@smithy/util-stream: unable to instantiate ChecksumStream because API unavailable: ReadableStream/TransformStream."); } const transform2 = new TransformStream({ start() { }, async transform(chunk, controller) { checksum.update(chunk); controller.enqueue(chunk); }, async flush(controller) { const digest = await checksum.digest(); const received = encoder2(digest); if (expectedChecksum !== received) { const error50 = new Error(`Checksum mismatch: expected "${expectedChecksum}" but received "${received}" in response header "${checksumSourceLocation}".`); controller.error(error50); } else { controller.terminate(); } } }); source.pipeThrough(transform2); const readable = transform2.readable; Object.setPrototypeOf(readable, ChecksumStream.prototype); return readable; }, "createChecksumStream"); // ../../node_modules/@smithy/util-stream/dist-es/createBufferedReadableStream.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/@smithy/util-stream/dist-es/ByteArrayCollector.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var ByteArrayCollector = class { static { __name(this, "ByteArrayCollector"); } allocByteArray; byteLength = 0; byteArrays = []; constructor(allocByteArray) { this.allocByteArray = allocByteArray; } push(byteArray) { this.byteArrays.push(byteArray); this.byteLength += byteArray.byteLength; } flush() { if (this.byteArrays.length === 1) { const bytes = this.byteArrays[0]; this.reset(); return bytes; } const aggregation = this.allocByteArray(this.byteLength); let cursor = 0; for (let i = 0; i < this.byteArrays.length; ++i) { const bytes = this.byteArrays[i]; aggregation.set(bytes, cursor); cursor += bytes.byteLength; } this.reset(); return aggregation; } reset() { this.byteArrays = []; this.byteLength = 0; } }; // ../../node_modules/@smithy/util-stream/dist-es/createBufferedReadableStream.js function createBufferedReadableStream(upstream, size, logger4) { const reader = upstream.getReader(); let streamBufferingLoggedWarning = false; let bytesSeen = 0; const buffers = ["", new ByteArrayCollector((size2) => new Uint8Array(size2))]; let mode = -1; const pull = /* @__PURE__ */ __name(async (controller) => { const { value, done } = await reader.read(); const chunk = value; if (done) { if (mode !== -1) { const remainder = flush(buffers, mode); if (sizeOf(remainder) > 0) { controller.enqueue(remainder); } } controller.close(); } else { const chunkMode = modeOf(chunk, false); if (mode !== chunkMode) { if (mode >= 0) { controller.enqueue(flush(buffers, mode)); } mode = chunkMode; } if (mode === -1) { controller.enqueue(chunk); return; } const chunkSize = sizeOf(chunk); bytesSeen += chunkSize; const bufferSize = sizeOf(buffers[mode]); if (chunkSize >= size && bufferSize === 0) { controller.enqueue(chunk); } else { const newSize = merge(buffers, mode, chunk); if (!streamBufferingLoggedWarning && bytesSeen > size * 2) { streamBufferingLoggedWarning = true; logger4?.warn(`@smithy/util-stream - stream chunk size ${chunkSize} is below threshold of ${size}, automatically buffering.`); } if (newSize >= size) { controller.enqueue(flush(buffers, mode)); } else { await pull(controller); } } } }, "pull"); return new ReadableStream({ pull }); } __name(createBufferedReadableStream, "createBufferedReadableStream"); var createBufferedReadable = createBufferedReadableStream; function merge(buffers, mode, chunk) { switch (mode) { case 0: buffers[0] += chunk; return sizeOf(buffers[0]); case 1: case 2: buffers[mode].push(chunk); return sizeOf(buffers[mode]); } } __name(merge, "merge"); function flush(buffers, mode) { switch (mode) { case 0: const s = buffers[0]; buffers[0] = ""; return s; case 1: case 2: return buffers[mode].flush(); } throw new Error(`@smithy/util-stream - invalid index ${mode} given to flush()`); } __name(flush, "flush"); function sizeOf(chunk) { return chunk?.byteLength ?? chunk?.length ?? 0; } __name(sizeOf, "sizeOf"); function modeOf(chunk, allowBuffer = true) { if (allowBuffer && typeof Buffer !== "undefined" && chunk instanceof Buffer) { return 2; } if (chunk instanceof Uint8Array) { return 1; } if (typeof chunk === "string") { return 0; } return -1; } __name(modeOf, "modeOf"); // ../../node_modules/@smithy/util-stream/dist-es/headStream.browser.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); async function headStream(stream, bytes) { let byteLengthCounter = 0; const chunks = []; const reader = stream.getReader(); let isDone = false; while (!isDone) { const { done, value } = await reader.read(); if (value) { chunks.push(value); byteLengthCounter += value?.byteLength ?? 0; } if (byteLengthCounter >= bytes) { break; } isDone = done; } reader.releaseLock(); const collected = new Uint8Array(Math.min(bytes, byteLengthCounter)); let offset = 0; for (const chunk of chunks) { if (chunk.byteLength > collected.byteLength - offset) { collected.set(chunk.subarray(0, collected.byteLength - offset), offset); break; } else { collected.set(chunk, offset); } offset += chunk.length; } return collected; } __name(headStream, "headStream"); // ../../node_modules/@smithy/querystring-builder/dist-es/index.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/@smithy/util-uri-escape/dist-es/escape-uri.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var escapeUri = /* @__PURE__ */ __name((uri) => encodeURIComponent(uri).replace(/[!'()*]/g, hexEncode), "escapeUri"); var hexEncode = /* @__PURE__ */ __name((c) => `%${c.charCodeAt(0).toString(16).toUpperCase()}`, "hexEncode"); // ../../node_modules/@smithy/querystring-builder/dist-es/index.js function buildQueryString(query) { const parts = []; for (let key of Object.keys(query).sort()) { const value = query[key]; key = escapeUri(key); if (Array.isArray(value)) { for (let i = 0, iLen = value.length; i < iLen; i++) { parts.push(`${key}=${escapeUri(value[i])}`); } } else { let qsEntry = key; if (value || typeof value === "string") { qsEntry += `=${escapeUri(value)}`; } parts.push(qsEntry); } } return parts.join("&"); } __name(buildQueryString, "buildQueryString"); // ../../node_modules/@smithy/util-hex-encoding/dist-es/index.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var SHORT_TO_HEX = {}; var HEX_TO_SHORT = {}; for (let i = 0; i < 256; i++) { let encodedByte = i.toString(16).toLowerCase(); if (encodedByte.length === 1) { encodedByte = `0${encodedByte}`; } SHORT_TO_HEX[i] = encodedByte; HEX_TO_SHORT[encodedByte] = i; } function fromHex(encoded) { if (encoded.length % 2 !== 0) { throw new Error("Hex encoded strings must have an even number length"); } const out = new Uint8Array(encoded.length / 2); for (let i = 0; i < encoded.length; i += 2) { const encodedByte = encoded.slice(i, i + 2).toLowerCase(); if (encodedByte in HEX_TO_SHORT) { out[i / 2] = HEX_TO_SHORT[encodedByte]; } else { throw new Error(`Cannot decode unrecognized sequence ${encodedByte} as hexadecimal`); } } return out; } __name(fromHex, "fromHex"); function toHex(bytes) { let out = ""; for (let i = 0; i < bytes.byteLength; i++) { out += SHORT_TO_HEX[bytes[i]]; } return out; } __name(toHex, "toHex"); // ../../node_modules/@smithy/util-stream/dist-es/splitStream.browser.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); async function splitStream(stream) { if (typeof stream.stream === "function") { stream = stream.stream(); } const readableStream = stream; return readableStream.tee(); } __name(splitStream, "splitStream"); // ../../node_modules/@smithy/core/dist-es/submodules/schema/deref.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var deref = /* @__PURE__ */ __name((schemaRef) => { if (typeof schemaRef === "function") { return schemaRef(); } return schemaRef; }, "deref"); // ../../node_modules/@smithy/url-parser/dist-es/index.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/@smithy/querystring-parser/dist-es/index.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); function parseQueryString(querystring) { const query = {}; querystring = querystring.replace(/^\?/, ""); if (querystring) { for (const pair of querystring.split("&")) { let [key, value = null] = pair.split("="); key = decodeURIComponent(key); if (value) { value = decodeURIComponent(value); } if (!(key in query)) { query[key] = value; } else if (Array.isArray(query[key])) { query[key].push(value); } else { query[key] = [query[key], value]; } } } return query; } __name(parseQueryString, "parseQueryString"); // ../../node_modules/@smithy/url-parser/dist-es/index.js var parseUrl = /* @__PURE__ */ __name((url2) => { if (typeof url2 === "string") { return parseUrl(new URL(url2)); } const { hostname: hostname3, pathname, port, protocol, search } = url2; let query; if (search) { query = parseQueryString(search); } return { hostname: hostname3, port: port ? parseInt(port) : void 0, protocol, path: pathname, query }; }, "parseUrl"); // ../../node_modules/@smithy/core/dist-es/submodules/schema/schemas/NormalizedSchema.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/@smithy/core/dist-es/submodules/schema/schemas/translateTraits.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var traitsCache = []; function translateTraits(indicator) { if (typeof indicator === "object") { return indicator; } indicator = indicator | 0; if (traitsCache[indicator]) { return traitsCache[indicator]; } const traits = {}; let i = 0; for (const trait of [ "httpLabel", "idempotent", "idempotencyToken", "sensitive", "httpPayload", "httpResponseCode", "httpQueryParams" ]) { if ((indicator >> i++ & 1) === 1) { traits[trait] = 1; } } return traitsCache[indicator] = traits; } __name(translateTraits, "translateTraits"); // ../../node_modules/@smithy/core/dist-es/submodules/schema/schemas/NormalizedSchema.js var anno = { it: /* @__PURE__ */ Symbol.for("@smithy/nor-struct-it"), ns: /* @__PURE__ */ Symbol.for("@smithy/ns") }; var simpleSchemaCacheN = []; var simpleSchemaCacheS = {}; var NormalizedSchema = class _NormalizedSchema { static { __name(this, "NormalizedSchema"); } ref; memberName; static symbol = /* @__PURE__ */ Symbol.for("@smithy/nor"); symbol = _NormalizedSchema.symbol; name; schema; _isMemberSchema; traits; memberTraits; normalizedTraits; constructor(ref2, memberName) { this.ref = ref2; this.memberName = memberName; const traitStack = []; let _ref = ref2; let schema = ref2; this._isMemberSchema = false; while (isMemberSchema(_ref)) { traitStack.push(_ref[1]); _ref = _ref[0]; schema = deref(_ref); this._isMemberSchema = true; } if (traitStack.length > 0) { this.memberTraits = {}; for (let i = traitStack.length - 1; i >= 0; --i) { const traitSet = traitStack[i]; Object.assign(this.memberTraits, translateTraits(traitSet)); } } else { this.memberTraits = 0; } if (schema instanceof _NormalizedSchema) { const computedMemberTraits = this.memberTraits; Object.assign(this, schema); this.memberTraits = Object.assign({}, computedMemberTraits, schema.getMemberTraits(), this.getMemberTraits()); this.normalizedTraits = void 0; this.memberName = memberName ?? schema.memberName; return; } this.schema = deref(schema); if (isStaticSchema(this.schema)) { this.name = `${this.schema[1]}#${this.schema[2]}`; this.traits = this.schema[3]; } else { this.name = this.memberName ?? String(schema); this.traits = 0; } if (this._isMemberSchema && !memberName) { throw new Error(`@smithy/core/schema - NormalizedSchema member init ${this.getName(true)} missing member name.`); } } static [Symbol.hasInstance](lhs) { const isPrototype = this.prototype.isPrototypeOf(lhs); if (!isPrototype && typeof lhs === "object" && lhs !== null) { const ns = lhs; return ns.symbol === this.symbol; } return isPrototype; } static of(ref2) { const keyAble = typeof ref2 === "function" || typeof ref2 === "object" && ref2 !== null; if (typeof ref2 === "number") { if (simpleSchemaCacheN[ref2]) { return simpleSchemaCacheN[ref2]; } } else if (typeof ref2 === "string") { if (simpleSchemaCacheS[ref2]) { return simpleSchemaCacheS[ref2]; } } else if (keyAble) { if (ref2[anno.ns]) { return ref2[anno.ns]; } } const sc = deref(ref2); if (sc instanceof _NormalizedSchema) { return sc; } if (isMemberSchema(sc)) { const [ns2, traits] = sc; if (ns2 instanceof _NormalizedSchema) { Object.assign(ns2.getMergedTraits(), translateTraits(traits)); return ns2; } throw new Error(`@smithy/core/schema - may not init unwrapped member schema=${JSON.stringify(ref2, null, 2)}.`); } const ns = new _NormalizedSchema(sc); if (keyAble) { return ref2[anno.ns] = ns; } if (typeof sc === "string") { return simpleSchemaCacheS[sc] = ns; } if (typeof sc === "number") { return simpleSchemaCacheN[sc] = ns; } return ns; } getSchema() { const sc = this.schema; if (Array.isArray(sc) && sc[0] === 0) { return sc[4]; } return sc; } getName(withNamespace = false) { const { name } = this; const short = !withNamespace && name && name.includes("#"); return short ? name.split("#")[1] : name || void 0; } getMemberName() { return this.memberName; } isMemberSchema() { return this._isMemberSchema; } isListSchema() { const sc = this.getSchema(); return typeof sc === "number" ? sc >= 64 && sc < 128 : sc[0] === 1; } isMapSchema() { const sc = this.getSchema(); return typeof sc === "number" ? sc >= 128 && sc <= 255 : sc[0] === 2; } isStructSchema() { const sc = this.getSchema(); if (typeof sc !== "object") { return false; } const id = sc[0]; return id === 3 || id === -3 || id === 4; } isUnionSchema() { const sc = this.getSchema(); if (typeof sc !== "object") { return false; } return sc[0] === 4; } isBlobSchema() { const sc = this.getSchema(); return sc === 21 || sc === 42; } isTimestampSchema() { const sc = this.getSchema(); return typeof sc === "number" && sc >= 4 && sc <= 7; } isUnitSchema() { return this.getSchema() === "unit"; } isDocumentSchema() { return this.getSchema() === 15; } isStringSchema() { return this.getSchema() === 0; } isBooleanSchema() { return this.getSchema() === 2; } isNumericSchema() { return this.getSchema() === 1; } isBigIntegerSchema() { return this.getSchema() === 17; } isBigDecimalSchema() { return this.getSchema() === 19; } isStreaming() { const { streaming } = this.getMergedTraits(); return !!streaming || this.getSchema() === 42; } isIdempotencyToken() { return !!this.getMergedTraits().idempotencyToken; } getMergedTraits() { return this.normalizedTraits ?? (this.normalizedTraits = { ...this.getOwnTraits(), ...this.getMemberTraits() }); } getMemberTraits() { return translateTraits(this.memberTraits); } getOwnTraits() { return translateTraits(this.traits); } getKeySchema() { const [isDoc, isMap] = [this.isDocumentSchema(), this.isMapSchema()]; if (!isDoc && !isMap) { throw new Error(`@smithy/core/schema - cannot get key for non-map: ${this.getName(true)}`); } const schema = this.getSchema(); const memberSchema = isDoc ? 15 : schema[4] ?? 0; return member([memberSchema, 0], "key"); } getValueSchema() { const sc = this.getSchema(); const [isDoc, isMap, isList] = [this.isDocumentSchema(), this.isMapSchema(), this.isListSchema()]; const memberSchema = typeof sc === "number" ? 63 & sc : sc && typeof sc === "object" && (isMap || isList) ? sc[3 + sc[0]] : isDoc ? 15 : void 0; if (memberSchema != null) { return member([memberSchema, 0], isMap ? "value" : "member"); } throw new Error(`@smithy/core/schema - ${this.getName(true)} has no value member.`); } getMemberSchema(memberName) { const struct = this.getSchema(); if (this.isStructSchema() && struct[4].includes(memberName)) { const i = struct[4].indexOf(memberName); const memberSchema = struct[5][i]; return member(isMemberSchema(memberSchema) ? memberSchema : [memberSchema, 0], memberName); } if (this.isDocumentSchema()) { return member([15, 0], memberName); } throw new Error(`@smithy/core/schema - ${this.getName(true)} has no member=${memberName}.`); } getMemberSchemas() { const buffer = {}; try { for (const [k, v2] of this.structIterator()) { buffer[k] = v2; } } catch (ignored) { } return buffer; } getEventStreamMember() { if (this.isStructSchema()) { for (const [memberName, memberSchema] of this.structIterator()) { if (memberSchema.isStreaming() && memberSchema.isStructSchema()) { return memberName; } } } return ""; } *structIterator() { if (this.isUnitSchema()) { return; } if (!this.isStructSchema()) { throw new Error("@smithy/core/schema - cannot iterate non-struct schema."); } const struct = this.getSchema(); const z2 = struct[4].length; let it = struct[anno.it]; if (it && z2 === it.length) { yield* it; return; } it = Array(z2); for (let i = 0; i < z2; ++i) { const k = struct[4][i]; const v2 = member([struct[5][i], 0], k); yield it[i] = [k, v2]; } struct[anno.it] = it; } }; function member(memberSchema, memberName) { if (memberSchema instanceof NormalizedSchema) { return Object.assign(memberSchema, { memberName, _isMemberSchema: true }); } const internalCtorAccess = NormalizedSchema; return new internalCtorAccess(memberSchema, memberName); } __name(member, "member"); var isMemberSchema = /* @__PURE__ */ __name((sc) => Array.isArray(sc) && sc.length === 2, "isMemberSchema"); var isStaticSchema = /* @__PURE__ */ __name((sc) => Array.isArray(sc) && sc.length >= 5, "isStaticSchema"); // ../../node_modules/@smithy/core/dist-es/submodules/schema/TypeRegistry.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var TypeRegistry = class _TypeRegistry { static { __name(this, "TypeRegistry"); } namespace; schemas; exceptions; static registries = /* @__PURE__ */ new Map(); constructor(namespace, schemas = /* @__PURE__ */ new Map(), exceptions = /* @__PURE__ */ new Map()) { this.namespace = namespace; this.schemas = schemas; this.exceptions = exceptions; } static for(namespace) { if (!_TypeRegistry.registries.has(namespace)) { _TypeRegistry.registries.set(namespace, new _TypeRegistry(namespace)); } return _TypeRegistry.registries.get(namespace); } copyFrom(other) { const { schemas, exceptions } = this; for (const [k, v2] of other.schemas) { if (!schemas.has(k)) { schemas.set(k, v2); } } for (const [k, v2] of other.exceptions) { if (!exceptions.has(k)) { exceptions.set(k, v2); } } } register(shapeId, schema) { const qualifiedName = this.normalizeShapeId(shapeId); for (const r of [this, _TypeRegistry.for(qualifiedName.split("#")[0])]) { r.schemas.set(qualifiedName, schema); } } getSchema(shapeId) { const id = this.normalizeShapeId(shapeId); if (!this.schemas.has(id)) { throw new Error(`@smithy/core/schema - schema not found for ${id}`); } return this.schemas.get(id); } registerError(es, ctor) { const $error = es; const ns = $error[1]; for (const r of [this, _TypeRegistry.for(ns)]) { r.schemas.set(ns + "#" + $error[2], $error); r.exceptions.set($error, ctor); } } getErrorCtor(es) { const $error = es; if (this.exceptions.has($error)) { return this.exceptions.get($error); } const registry2 = _TypeRegistry.for($error[1]); return registry2.exceptions.get($error); } getBaseException() { for (const exceptionKey of this.exceptions.keys()) { if (Array.isArray(exceptionKey)) { const [, ns, name] = exceptionKey; const id = ns + "#" + name; if (id.startsWith("smithy.ts.sdk.synthetic.") && id.endsWith("ServiceException")) { return exceptionKey; } } } return void 0; } find(predicate) { return [...this.schemas.values()].find(predicate); } clear() { this.schemas.clear(); this.exceptions.clear(); } normalizeShapeId(shapeId) { if (shapeId.includes("#")) { return shapeId; } return this.namespace + "#" + shapeId; } }; // ../../node_modules/@smithy/core/dist-es/submodules/serde/date-utils.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/@smithy/core/dist-es/submodules/serde/parse-utils.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var expectNumber = /* @__PURE__ */ __name((value) => { if (value === null || value === void 0) { return void 0; } if (typeof value === "string") { const parsed = parseFloat(value); if (!Number.isNaN(parsed)) { if (String(parsed) !== String(value)) { logger2.warn(stackTraceWarning(`Expected number but observed string: ${value}`)); } return parsed; } } if (typeof value === "number") { return value; } throw new TypeError(`Expected number, got ${typeof value}: ${value}`); }, "expectNumber"); var MAX_FLOAT = Math.ceil(2 ** 127 * (2 - 2 ** -23)); var expectFloat32 = /* @__PURE__ */ __name((value) => { const expected = expectNumber(value); if (expected !== void 0 && !Number.isNaN(expected) && expected !== Infinity && expected !== -Infinity) { if (Math.abs(expected) > MAX_FLOAT) { throw new TypeError(`Expected 32-bit float, got ${value}`); } } return expected; }, "expectFloat32"); var expectLong = /* @__PURE__ */ __name((value) => { if (value === null || value === void 0) { return void 0; } if (Number.isInteger(value) && !Number.isNaN(value)) { return value; } throw new TypeError(`Expected integer, got ${typeof value}: ${value}`); }, "expectLong"); var expectShort = /* @__PURE__ */ __name((value) => expectSizedInt(value, 16), "expectShort"); var expectByte = /* @__PURE__ */ __name((value) => expectSizedInt(value, 8), "expectByte"); var expectSizedInt = /* @__PURE__ */ __name((value, size) => { const expected = expectLong(value); if (expected !== void 0 && castInt(expected, size) !== expected) { throw new TypeError(`Expected ${size}-bit integer, got ${value}`); } return expected; }, "expectSizedInt"); var castInt = /* @__PURE__ */ __name((value, size) => { switch (size) { case 32: return Int32Array.of(value)[0]; case 16: return Int16Array.of(value)[0]; case 8: return Int8Array.of(value)[0]; } }, "castInt"); var strictParseFloat32 = /* @__PURE__ */ __name((value) => { if (typeof value == "string") { return expectFloat32(parseNumber(value)); } return expectFloat32(value); }, "strictParseFloat32"); var NUMBER_REGEX = /(-?(?:0|[1-9]\d*)(?:\.\d+)?(?:[eE][+-]?\d+)?)|(-?Infinity)|(NaN)/g; var parseNumber = /* @__PURE__ */ __name((value) => { const matches = value.match(NUMBER_REGEX); if (matches === null || matches[0].length !== value.length) { throw new TypeError(`Expected real number, got implicit NaN`); } return parseFloat(value); }, "parseNumber"); var strictParseShort = /* @__PURE__ */ __name((value) => { if (typeof value === "string") { return expectShort(parseNumber(value)); } return expectShort(value); }, "strictParseShort"); var strictParseByte = /* @__PURE__ */ __name((value) => { if (typeof value === "string") { return expectByte(parseNumber(value)); } return expectByte(value); }, "strictParseByte"); var stackTraceWarning = /* @__PURE__ */ __name((message2) => { return String(new TypeError(message2).stack || message2).split("\n").slice(0, 5).filter((s) => !s.includes("stackTraceWarning")).join("\n"); }, "stackTraceWarning"); var logger2 = { warn: console.warn }; // ../../node_modules/@smithy/core/dist-es/submodules/serde/date-utils.js var MONTHS = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]; var RFC3339 = new RegExp(/^(\d{4})-(\d{2})-(\d{2})[tT](\d{2}):(\d{2}):(\d{2})(?:\.(\d+))?[zZ]$/); var RFC3339_WITH_OFFSET = new RegExp(/^(\d{4})-(\d{2})-(\d{2})[tT](\d{2}):(\d{2}):(\d{2})(?:\.(\d+))?(([-+]\d{2}\:\d{2})|[zZ])$/); var IMF_FIXDATE = new RegExp(/^(?:Mon|Tue|Wed|Thu|Fri|Sat|Sun), (\d{2}) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) (\d{4}) (\d{1,2}):(\d{2}):(\d{2})(?:\.(\d+))? GMT$/); var RFC_850_DATE = new RegExp(/^(?:Monday|Tuesday|Wednesday|Thursday|Friday|Saturday|Sunday), (\d{2})-(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)-(\d{2}) (\d{1,2}):(\d{2}):(\d{2})(?:\.(\d+))? GMT$/); var ASC_TIME = new RegExp(/^(?:Mon|Tue|Wed|Thu|Fri|Sat|Sun) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) ( [1-9]|\d{2}) (\d{1,2}):(\d{2}):(\d{2})(?:\.(\d+))? (\d{4})$/); var parseRfc7231DateTime = /* @__PURE__ */ __name((value) => { if (value === null || value === void 0) { return void 0; } if (typeof value !== "string") { throw new TypeError("RFC-7231 date-times must be expressed as strings"); } let match2 = IMF_FIXDATE.exec(value); if (match2) { const [_, dayStr, monthStr, yearStr, hours, minutes, seconds, fractionalMilliseconds] = match2; return buildDate(strictParseShort(stripLeadingZeroes(yearStr)), parseMonthByShortName(monthStr), parseDateValue(dayStr, "day", 1, 31), { hours, minutes, seconds, fractionalMilliseconds }); } match2 = RFC_850_DATE.exec(value); if (match2) { const [_, dayStr, monthStr, yearStr, hours, minutes, seconds, fractionalMilliseconds] = match2; return adjustRfc850Year(buildDate(parseTwoDigitYear(yearStr), parseMonthByShortName(monthStr), parseDateValue(dayStr, "day", 1, 31), { hours, minutes, seconds, fractionalMilliseconds })); } match2 = ASC_TIME.exec(value); if (match2) { const [_, monthStr, dayStr, hours, minutes, seconds, fractionalMilliseconds, yearStr] = match2; return buildDate(strictParseShort(stripLeadingZeroes(yearStr)), parseMonthByShortName(monthStr), parseDateValue(dayStr.trimLeft(), "day", 1, 31), { hours, minutes, seconds, fractionalMilliseconds }); } throw new TypeError("Invalid RFC-7231 date-time value"); }, "parseRfc7231DateTime"); var buildDate = /* @__PURE__ */ __name((year2, month, day2, time6) => { const adjustedMonth = month - 1; validateDayOfMonth(year2, adjustedMonth, day2); return new Date(Date.UTC(year2, adjustedMonth, day2, parseDateValue(time6.hours, "hour", 0, 23), parseDateValue(time6.minutes, "minute", 0, 59), parseDateValue(time6.seconds, "seconds", 0, 60), parseMilliseconds(time6.fractionalMilliseconds))); }, "buildDate"); var parseTwoDigitYear = /* @__PURE__ */ __name((value) => { const thisYear = (/* @__PURE__ */ new Date()).getUTCFullYear(); const valueInThisCentury = Math.floor(thisYear / 100) * 100 + strictParseShort(stripLeadingZeroes(value)); if (valueInThisCentury < thisYear) { return valueInThisCentury + 100; } return valueInThisCentury; }, "parseTwoDigitYear"); var FIFTY_YEARS_IN_MILLIS = 50 * 365 * 24 * 60 * 60 * 1e3; var adjustRfc850Year = /* @__PURE__ */ __name((input) => { if (input.getTime() - (/* @__PURE__ */ new Date()).getTime() > FIFTY_YEARS_IN_MILLIS) { return new Date(Date.UTC(input.getUTCFullYear() - 100, input.getUTCMonth(), input.getUTCDate(), input.getUTCHours(), input.getUTCMinutes(), input.getUTCSeconds(), input.getUTCMilliseconds())); } return input; }, "adjustRfc850Year"); var parseMonthByShortName = /* @__PURE__ */ __name((value) => { const monthIdx = MONTHS.indexOf(value); if (monthIdx < 0) { throw new TypeError(`Invalid month: ${value}`); } return monthIdx + 1; }, "parseMonthByShortName"); var DAYS_IN_MONTH = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]; var validateDayOfMonth = /* @__PURE__ */ __name((year2, month, day2) => { let maxDays = DAYS_IN_MONTH[month]; if (month === 1 && isLeapYear(year2)) { maxDays = 29; } if (day2 > maxDays) { throw new TypeError(`Invalid day for ${MONTHS[month]} in ${year2}: ${day2}`); } }, "validateDayOfMonth"); var isLeapYear = /* @__PURE__ */ __name((year2) => { return year2 % 4 === 0 && (year2 % 100 !== 0 || year2 % 400 === 0); }, "isLeapYear"); var parseDateValue = /* @__PURE__ */ __name((value, type, lower, upper) => { const dateVal = strictParseByte(stripLeadingZeroes(value)); if (dateVal < lower || dateVal > upper) { throw new TypeError(`${type} must be between ${lower} and ${upper}, inclusive`); } return dateVal; }, "parseDateValue"); var parseMilliseconds = /* @__PURE__ */ __name((value) => { if (value === null || value === void 0) { return 0; } return strictParseFloat32("0." + value) * 1e3; }, "parseMilliseconds"); var stripLeadingZeroes = /* @__PURE__ */ __name((value) => { let idx = 0; while (idx < value.length - 1 && value.charAt(idx) === "0") { idx++; } if (idx === 0) { return value; } return value.slice(idx); }, "stripLeadingZeroes"); // ../../node_modules/@smithy/core/dist-es/setFeature.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); function setFeature2(context2, feature2, value) { if (!context2.__smithy_context) { context2.__smithy_context = { features: {} }; } else if (!context2.__smithy_context.features) { context2.__smithy_context.features = {}; } context2.__smithy_context.features[feature2] = value; } __name(setFeature2, "setFeature"); // ../../node_modules/@smithy/signature-v4/dist-es/SignatureV4.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_dist_es(); // ../../node_modules/@smithy/signature-v4/dist-es/constants.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var ALGORITHM_QUERY_PARAM = "X-Amz-Algorithm"; var CREDENTIAL_QUERY_PARAM = "X-Amz-Credential"; var AMZ_DATE_QUERY_PARAM = "X-Amz-Date"; var SIGNED_HEADERS_QUERY_PARAM = "X-Amz-SignedHeaders"; var EXPIRES_QUERY_PARAM = "X-Amz-Expires"; var SIGNATURE_QUERY_PARAM = "X-Amz-Signature"; var TOKEN_QUERY_PARAM = "X-Amz-Security-Token"; var AUTH_HEADER = "authorization"; var AMZ_DATE_HEADER = AMZ_DATE_QUERY_PARAM.toLowerCase(); var DATE_HEADER = "date"; var GENERATED_HEADERS = [AUTH_HEADER, AMZ_DATE_HEADER, DATE_HEADER]; var SIGNATURE_HEADER = SIGNATURE_QUERY_PARAM.toLowerCase(); var SHA256_HEADER = "x-amz-content-sha256"; var TOKEN_HEADER = TOKEN_QUERY_PARAM.toLowerCase(); var ALWAYS_UNSIGNABLE_HEADERS = { authorization: true, "cache-control": true, connection: true, expect: true, from: true, "keep-alive": true, "max-forwards": true, pragma: true, referer: true, te: true, trailer: true, "transfer-encoding": true, upgrade: true, "user-agent": true, "x-amzn-trace-id": true }; var PROXY_HEADER_PATTERN = /^proxy-/; var SEC_HEADER_PATTERN = /^sec-/; var ALGORITHM_IDENTIFIER = "AWS4-HMAC-SHA256"; var EVENT_ALGORITHM_IDENTIFIER = "AWS4-HMAC-SHA256-PAYLOAD"; var UNSIGNED_PAYLOAD = "UNSIGNED-PAYLOAD"; var MAX_CACHE_SIZE = 50; var KEY_TYPE_IDENTIFIER = "aws4_request"; var MAX_PRESIGNED_TTL = 60 * 60 * 24 * 7; // ../../node_modules/@smithy/signature-v4/dist-es/credentialDerivation.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_dist_es(); var signingKeyCache = {}; var cacheQueue = []; var createScope = /* @__PURE__ */ __name((shortDate, region, service) => `${shortDate}/${region}/${service}/${KEY_TYPE_IDENTIFIER}`, "createScope"); var getSigningKey = /* @__PURE__ */ __name(async (sha256Constructor, credentials, shortDate, region, service) => { const credsHash = await hmac(sha256Constructor, credentials.secretAccessKey, credentials.accessKeyId); const cacheKey = `${shortDate}:${region}:${service}:${toHex(credsHash)}:${credentials.sessionToken}`; if (cacheKey in signingKeyCache) { return signingKeyCache[cacheKey]; } cacheQueue.push(cacheKey); while (cacheQueue.length > MAX_CACHE_SIZE) { delete signingKeyCache[cacheQueue.shift()]; } let key = `AWS4${credentials.secretAccessKey}`; for (const signable of [shortDate, region, service, KEY_TYPE_IDENTIFIER]) { key = await hmac(sha256Constructor, key, signable); } return signingKeyCache[cacheKey] = key; }, "getSigningKey"); var hmac = /* @__PURE__ */ __name((ctor, secret, data) => { const hash3 = new ctor(secret); hash3.update(toUint8Array(data)); return hash3.digest(); }, "hmac"); // ../../node_modules/@smithy/signature-v4/dist-es/getCanonicalHeaders.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var getCanonicalHeaders = /* @__PURE__ */ __name(({ headers }, unsignableHeaders, signableHeaders) => { const canonical = {}; for (const headerName of Object.keys(headers).sort()) { if (headers[headerName] == void 0) { continue; } const canonicalHeaderName = headerName.toLowerCase(); if (canonicalHeaderName in ALWAYS_UNSIGNABLE_HEADERS || unsignableHeaders?.has(canonicalHeaderName) || PROXY_HEADER_PATTERN.test(canonicalHeaderName) || SEC_HEADER_PATTERN.test(canonicalHeaderName)) { if (!signableHeaders || signableHeaders && !signableHeaders.has(canonicalHeaderName)) { continue; } } canonical[canonicalHeaderName] = headers[headerName].trim().replace(/\s+/g, " "); } return canonical; }, "getCanonicalHeaders"); // ../../node_modules/@smithy/signature-v4/dist-es/getPayloadHash.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/@smithy/is-array-buffer/dist-es/index.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var isArrayBuffer = /* @__PURE__ */ __name((arg) => typeof ArrayBuffer === "function" && arg instanceof ArrayBuffer || Object.prototype.toString.call(arg) === "[object ArrayBuffer]", "isArrayBuffer"); // ../../node_modules/@smithy/signature-v4/dist-es/getPayloadHash.js init_dist_es(); var getPayloadHash = /* @__PURE__ */ __name(async ({ headers, body }, hashConstructor) => { for (const headerName of Object.keys(headers)) { if (headerName.toLowerCase() === SHA256_HEADER) { return headers[headerName]; } } if (body == void 0) { return "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"; } else if (typeof body === "string" || ArrayBuffer.isView(body) || isArrayBuffer(body)) { const hashCtor = new hashConstructor(); hashCtor.update(toUint8Array(body)); return toHex(await hashCtor.digest()); } return UNSIGNED_PAYLOAD; }, "getPayloadHash"); // ../../node_modules/@smithy/signature-v4/dist-es/HeaderFormatter.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_dist_es(); var HeaderFormatter = class { static { __name(this, "HeaderFormatter"); } format(headers) { const chunks = []; for (const headerName of Object.keys(headers)) { const bytes = fromUtf8(headerName); chunks.push(Uint8Array.from([bytes.byteLength]), bytes, this.formatHeaderValue(headers[headerName])); } const out = new Uint8Array(chunks.reduce((carry, bytes) => carry + bytes.byteLength, 0)); let position3 = 0; for (const chunk of chunks) { out.set(chunk, position3); position3 += chunk.byteLength; } return out; } formatHeaderValue(header) { switch (header.type) { case "boolean": return Uint8Array.from([header.value ? 0 : 1]); case "byte": return Uint8Array.from([2, header.value]); case "short": const shortView = new DataView(new ArrayBuffer(3)); shortView.setUint8(0, 3); shortView.setInt16(1, header.value, false); return new Uint8Array(shortView.buffer); case "integer": const intView = new DataView(new ArrayBuffer(5)); intView.setUint8(0, 4); intView.setInt32(1, header.value, false); return new Uint8Array(intView.buffer); case "long": const longBytes = new Uint8Array(9); longBytes[0] = 5; longBytes.set(header.value.bytes, 1); return longBytes; case "binary": const binView = new DataView(new ArrayBuffer(3 + header.value.byteLength)); binView.setUint8(0, 6); binView.setUint16(1, header.value.byteLength, false); const binBytes = new Uint8Array(binView.buffer); binBytes.set(header.value, 3); return binBytes; case "string": const utf8Bytes = fromUtf8(header.value); const strView = new DataView(new ArrayBuffer(3 + utf8Bytes.byteLength)); strView.setUint8(0, 7); strView.setUint16(1, utf8Bytes.byteLength, false); const strBytes = new Uint8Array(strView.buffer); strBytes.set(utf8Bytes, 3); return strBytes; case "timestamp": const tsBytes = new Uint8Array(9); tsBytes[0] = 8; tsBytes.set(Int64.fromNumber(header.value.valueOf()).bytes, 1); return tsBytes; case "uuid": if (!UUID_PATTERN.test(header.value)) { throw new Error(`Invalid UUID received: ${header.value}`); } const uuidBytes = new Uint8Array(17); uuidBytes[0] = 9; uuidBytes.set(fromHex(header.value.replace(/\-/g, "")), 1); return uuidBytes; } } }; var HEADER_VALUE_TYPE; (function(HEADER_VALUE_TYPE2) { HEADER_VALUE_TYPE2[HEADER_VALUE_TYPE2["boolTrue"] = 0] = "boolTrue"; HEADER_VALUE_TYPE2[HEADER_VALUE_TYPE2["boolFalse"] = 1] = "boolFalse"; HEADER_VALUE_TYPE2[HEADER_VALUE_TYPE2["byte"] = 2] = "byte"; HEADER_VALUE_TYPE2[HEADER_VALUE_TYPE2["short"] = 3] = "short"; HEADER_VALUE_TYPE2[HEADER_VALUE_TYPE2["integer"] = 4] = "integer"; HEADER_VALUE_TYPE2[HEADER_VALUE_TYPE2["long"] = 5] = "long"; HEADER_VALUE_TYPE2[HEADER_VALUE_TYPE2["byteArray"] = 6] = "byteArray"; HEADER_VALUE_TYPE2[HEADER_VALUE_TYPE2["string"] = 7] = "string"; HEADER_VALUE_TYPE2[HEADER_VALUE_TYPE2["timestamp"] = 8] = "timestamp"; HEADER_VALUE_TYPE2[HEADER_VALUE_TYPE2["uuid"] = 9] = "uuid"; })(HEADER_VALUE_TYPE || (HEADER_VALUE_TYPE = {})); var UUID_PATTERN = /^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$/; var Int64 = class _Int64 { static { __name(this, "Int64"); } bytes; constructor(bytes) { this.bytes = bytes; if (bytes.byteLength !== 8) { throw new Error("Int64 buffers must be exactly 8 bytes"); } } static fromNumber(number4) { if (number4 > 9223372036854776e3 || number4 < -9223372036854776e3) { throw new Error(`${number4} is too large (or, if negative, too small) to represent as an Int64`); } const bytes = new Uint8Array(8); for (let i = 7, remaining = Math.abs(Math.round(number4)); i > -1 && remaining > 0; i--, remaining /= 256) { bytes[i] = remaining; } if (number4 < 0) { negate(bytes); } return new _Int64(bytes); } valueOf() { const bytes = this.bytes.slice(0); const negative = bytes[0] & 128; if (negative) { negate(bytes); } return parseInt(toHex(bytes), 16) * (negative ? -1 : 1); } toString() { return String(this.valueOf()); } }; function negate(bytes) { for (let i = 0; i < 8; i++) { bytes[i] ^= 255; } for (let i = 7; i > -1; i--) { bytes[i]++; if (bytes[i] !== 0) break; } } __name(negate, "negate"); // ../../node_modules/@smithy/signature-v4/dist-es/headerUtil.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var hasHeader = /* @__PURE__ */ __name((soughtHeader, headers) => { soughtHeader = soughtHeader.toLowerCase(); for (const headerName of Object.keys(headers)) { if (soughtHeader === headerName.toLowerCase()) { return true; } } return false; }, "hasHeader"); // ../../node_modules/@smithy/signature-v4/dist-es/moveHeadersToQuery.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var moveHeadersToQuery = /* @__PURE__ */ __name((request, options = {}) => { const { headers, query = {} } = HttpRequest.clone(request); for (const name of Object.keys(headers)) { const lname = name.toLowerCase(); if (lname.slice(0, 6) === "x-amz-" && !options.unhoistableHeaders?.has(lname) || options.hoistableHeaders?.has(lname)) { query[name] = headers[name]; delete headers[name]; } } return { ...request, headers, query }; }, "moveHeadersToQuery"); // ../../node_modules/@smithy/signature-v4/dist-es/prepareRequest.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var prepareRequest = /* @__PURE__ */ __name((request) => { request = HttpRequest.clone(request); for (const headerName of Object.keys(request.headers)) { if (GENERATED_HEADERS.indexOf(headerName.toLowerCase()) > -1) { delete request.headers[headerName]; } } return request; }, "prepareRequest"); // ../../node_modules/@smithy/signature-v4/dist-es/SignatureV4Base.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_dist_es(); // ../../node_modules/@smithy/signature-v4/dist-es/getCanonicalQuery.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var getCanonicalQuery = /* @__PURE__ */ __name(({ query = {} }) => { const keys = []; const serialized = {}; for (const key of Object.keys(query)) { if (key.toLowerCase() === SIGNATURE_HEADER) { continue; } const encodedKey = escapeUri(key); keys.push(encodedKey); const value = query[key]; if (typeof value === "string") { serialized[encodedKey] = `${encodedKey}=${escapeUri(value)}`; } else if (Array.isArray(value)) { serialized[encodedKey] = value.slice(0).reduce((encoded, value2) => encoded.concat([`${encodedKey}=${escapeUri(value2)}`]), []).sort().join("&"); } } return keys.sort().map((key) => serialized[key]).filter((serialized2) => serialized2).join("&"); }, "getCanonicalQuery"); // ../../node_modules/@smithy/signature-v4/dist-es/utilDate.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var iso8601 = /* @__PURE__ */ __name((time6) => toDate(time6).toISOString().replace(/\.\d{3}Z$/, "Z"), "iso8601"); var toDate = /* @__PURE__ */ __name((time6) => { if (typeof time6 === "number") { return new Date(time6 * 1e3); } if (typeof time6 === "string") { if (Number(time6)) { return new Date(Number(time6) * 1e3); } return new Date(time6); } return time6; }, "toDate"); // ../../node_modules/@smithy/signature-v4/dist-es/SignatureV4Base.js var SignatureV4Base = class { static { __name(this, "SignatureV4Base"); } service; regionProvider; credentialProvider; sha256; uriEscapePath; applyChecksum; constructor({ applyChecksum, credentials, region, service, sha256, uriEscapePath = true }) { this.service = service; this.sha256 = sha256; this.uriEscapePath = uriEscapePath; this.applyChecksum = typeof applyChecksum === "boolean" ? applyChecksum : true; this.regionProvider = normalizeProvider(region); this.credentialProvider = normalizeProvider(credentials); } createCanonicalRequest(request, canonicalHeaders, payloadHash) { const sortedHeaders = Object.keys(canonicalHeaders).sort(); return `${request.method} ${this.getCanonicalPath(request)} ${getCanonicalQuery(request)} ${sortedHeaders.map((name) => `${name}:${canonicalHeaders[name]}`).join("\n")} ${sortedHeaders.join(";")} ${payloadHash}`; } async createStringToSign(longDate, credentialScope, canonicalRequest, algorithmIdentifier) { const hash3 = new this.sha256(); hash3.update(toUint8Array(canonicalRequest)); const hashedRequest = await hash3.digest(); return `${algorithmIdentifier} ${longDate} ${credentialScope} ${toHex(hashedRequest)}`; } getCanonicalPath({ path: path3 }) { if (this.uriEscapePath) { const normalizedPathSegments = []; for (const pathSegment of path3.split("/")) { if (pathSegment?.length === 0) continue; if (pathSegment === ".") continue; if (pathSegment === "..") { normalizedPathSegments.pop(); } else { normalizedPathSegments.push(pathSegment); } } const normalizedPath = `${path3?.startsWith("/") ? "/" : ""}${normalizedPathSegments.join("/")}${normalizedPathSegments.length > 0 && path3?.endsWith("/") ? "/" : ""}`; const doubleEncoded = escapeUri(normalizedPath); return doubleEncoded.replace(/%2F/g, "/"); } return path3; } validateResolvedCredentials(credentials) { if (typeof credentials !== "object" || typeof credentials.accessKeyId !== "string" || typeof credentials.secretAccessKey !== "string") { throw new Error("Resolved credential object is not valid"); } } formatDate(now) { const longDate = iso8601(now).replace(/[\-:]/g, ""); return { longDate, shortDate: longDate.slice(0, 8) }; } getCanonicalHeaderList(headers) { return Object.keys(headers).sort().join(";"); } }; // ../../node_modules/@smithy/signature-v4/dist-es/SignatureV4.js var SignatureV4 = class extends SignatureV4Base { static { __name(this, "SignatureV4"); } headerFormatter = new HeaderFormatter(); constructor({ applyChecksum, credentials, region, service, sha256, uriEscapePath = true }) { super({ applyChecksum, credentials, region, service, sha256, uriEscapePath }); } async presign(originalRequest, options = {}) { const { signingDate = /* @__PURE__ */ new Date(), expiresIn = 3600, unsignableHeaders, unhoistableHeaders, signableHeaders, hoistableHeaders, signingRegion, signingService } = options; const credentials = await this.credentialProvider(); this.validateResolvedCredentials(credentials); const region = signingRegion ?? await this.regionProvider(); const { longDate, shortDate } = this.formatDate(signingDate); if (expiresIn > MAX_PRESIGNED_TTL) { return Promise.reject("Signature version 4 presigned URLs must have an expiration date less than one week in the future"); } const scope = createScope(shortDate, region, signingService ?? this.service); const request = moveHeadersToQuery(prepareRequest(originalRequest), { unhoistableHeaders, hoistableHeaders }); if (credentials.sessionToken) { request.query[TOKEN_QUERY_PARAM] = credentials.sessionToken; } request.query[ALGORITHM_QUERY_PARAM] = ALGORITHM_IDENTIFIER; request.query[CREDENTIAL_QUERY_PARAM] = `${credentials.accessKeyId}/${scope}`; request.query[AMZ_DATE_QUERY_PARAM] = longDate; request.query[EXPIRES_QUERY_PARAM] = expiresIn.toString(10); const canonicalHeaders = getCanonicalHeaders(request, unsignableHeaders, signableHeaders); request.query[SIGNED_HEADERS_QUERY_PARAM] = this.getCanonicalHeaderList(canonicalHeaders); request.query[SIGNATURE_QUERY_PARAM] = await this.getSignature(longDate, scope, this.getSigningKey(credentials, region, shortDate, signingService), this.createCanonicalRequest(request, canonicalHeaders, await getPayloadHash(originalRequest, this.sha256))); return request; } async sign(toSign, options) { if (typeof toSign === "string") { return this.signString(toSign, options); } else if (toSign.headers && toSign.payload) { return this.signEvent(toSign, options); } else if (toSign.message) { return this.signMessage(toSign, options); } else { return this.signRequest(toSign, options); } } async signEvent({ headers, payload }, { signingDate = /* @__PURE__ */ new Date(), priorSignature, signingRegion, signingService }) { const region = signingRegion ?? await this.regionProvider(); const { shortDate, longDate } = this.formatDate(signingDate); const scope = createScope(shortDate, region, signingService ?? this.service); const hashedPayload = await getPayloadHash({ headers: {}, body: payload }, this.sha256); const hash3 = new this.sha256(); hash3.update(headers); const hashedHeaders = toHex(await hash3.digest()); const stringToSign = [ EVENT_ALGORITHM_IDENTIFIER, longDate, scope, priorSignature, hashedHeaders, hashedPayload ].join("\n"); return this.signString(stringToSign, { signingDate, signingRegion: region, signingService }); } async signMessage(signableMessage, { signingDate = /* @__PURE__ */ new Date(), signingRegion, signingService }) { const promise2 = this.signEvent({ headers: this.headerFormatter.format(signableMessage.message.headers), payload: signableMessage.message.body }, { signingDate, signingRegion, signingService, priorSignature: signableMessage.priorSignature }); return promise2.then((signature) => { return { message: signableMessage.message, signature }; }); } async signString(stringToSign, { signingDate = /* @__PURE__ */ new Date(), signingRegion, signingService } = {}) { const credentials = await this.credentialProvider(); this.validateResolvedCredentials(credentials); const region = signingRegion ?? await this.regionProvider(); const { shortDate } = this.formatDate(signingDate); const hash3 = new this.sha256(await this.getSigningKey(credentials, region, shortDate, signingService)); hash3.update(toUint8Array(stringToSign)); return toHex(await hash3.digest()); } async signRequest(requestToSign, { signingDate = /* @__PURE__ */ new Date(), signableHeaders, unsignableHeaders, signingRegion, signingService } = {}) { const credentials = await this.credentialProvider(); this.validateResolvedCredentials(credentials); const region = signingRegion ?? await this.regionProvider(); const request = prepareRequest(requestToSign); const { longDate, shortDate } = this.formatDate(signingDate); const scope = createScope(shortDate, region, signingService ?? this.service); request.headers[AMZ_DATE_HEADER] = longDate; if (credentials.sessionToken) { request.headers[TOKEN_HEADER] = credentials.sessionToken; } const payloadHash = await getPayloadHash(request, this.sha256); if (!hasHeader(SHA256_HEADER, request.headers) && this.applyChecksum) { request.headers[SHA256_HEADER] = payloadHash; } const canonicalHeaders = getCanonicalHeaders(request, unsignableHeaders, signableHeaders); const signature = await this.getSignature(longDate, scope, this.getSigningKey(credentials, region, shortDate, signingService), this.createCanonicalRequest(request, canonicalHeaders, payloadHash)); request.headers[AUTH_HEADER] = `${ALGORITHM_IDENTIFIER} Credential=${credentials.accessKeyId}/${scope}, SignedHeaders=${this.getCanonicalHeaderList(canonicalHeaders)}, Signature=${signature}`; return request; } async getSignature(longDate, credentialScope, keyPromise, canonicalRequest) { const stringToSign = await this.createStringToSign(longDate, credentialScope, canonicalRequest, ALGORITHM_IDENTIFIER); const hash3 = new this.sha256(await keyPromise); hash3.update(toUint8Array(stringToSign)); return toHex(await hash3.digest()); } getSigningKey(credentials, region, shortDate, service) { return getSigningKey(this.sha256, credentials, shortDate, region, service || this.service); } }; // ../../node_modules/@smithy/signature-v4/dist-es/signature-v4a-container.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var signatureV4aContainer = { SignatureV4a: null }; // ../../node_modules/@smithy/middleware-stack/dist-es/MiddlewareStack.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var getAllAliases = /* @__PURE__ */ __name((name, aliases) => { const _aliases = []; if (name) { _aliases.push(name); } if (aliases) { for (const alias of aliases) { _aliases.push(alias); } } return _aliases; }, "getAllAliases"); var getMiddlewareNameWithAliases = /* @__PURE__ */ __name((name, aliases) => { return `${name || "anonymous"}${aliases && aliases.length > 0 ? ` (a.k.a. ${aliases.join(",")})` : ""}`; }, "getMiddlewareNameWithAliases"); var constructStack = /* @__PURE__ */ __name(() => { let absoluteEntries = []; let relativeEntries = []; let identifyOnResolve = false; const entriesNameSet = /* @__PURE__ */ new Set(); const sort = /* @__PURE__ */ __name((entries) => entries.sort((a, b) => stepWeights[b.step] - stepWeights[a.step] || priorityWeights[b.priority || "normal"] - priorityWeights[a.priority || "normal"]), "sort"); const removeByName = /* @__PURE__ */ __name((toRemove) => { let isRemoved = false; const filterCb = /* @__PURE__ */ __name((entry) => { const aliases = getAllAliases(entry.name, entry.aliases); if (aliases.includes(toRemove)) { isRemoved = true; for (const alias of aliases) { entriesNameSet.delete(alias); } return false; } return true; }, "filterCb"); absoluteEntries = absoluteEntries.filter(filterCb); relativeEntries = relativeEntries.filter(filterCb); return isRemoved; }, "removeByName"); const removeByReference = /* @__PURE__ */ __name((toRemove) => { let isRemoved = false; const filterCb = /* @__PURE__ */ __name((entry) => { if (entry.middleware === toRemove) { isRemoved = true; for (const alias of getAllAliases(entry.name, entry.aliases)) { entriesNameSet.delete(alias); } return false; } return true; }, "filterCb"); absoluteEntries = absoluteEntries.filter(filterCb); relativeEntries = relativeEntries.filter(filterCb); return isRemoved; }, "removeByReference"); const cloneTo = /* @__PURE__ */ __name((toStack) => { absoluteEntries.forEach((entry) => { toStack.add(entry.middleware, { ...entry }); }); relativeEntries.forEach((entry) => { toStack.addRelativeTo(entry.middleware, { ...entry }); }); toStack.identifyOnResolve?.(stack.identifyOnResolve()); return toStack; }, "cloneTo"); const expandRelativeMiddlewareList = /* @__PURE__ */ __name((from) => { const expandedMiddlewareList = []; from.before.forEach((entry) => { if (entry.before.length === 0 && entry.after.length === 0) { expandedMiddlewareList.push(entry); } else { expandedMiddlewareList.push(...expandRelativeMiddlewareList(entry)); } }); expandedMiddlewareList.push(from); from.after.reverse().forEach((entry) => { if (entry.before.length === 0 && entry.after.length === 0) { expandedMiddlewareList.push(entry); } else { expandedMiddlewareList.push(...expandRelativeMiddlewareList(entry)); } }); return expandedMiddlewareList; }, "expandRelativeMiddlewareList"); const getMiddlewareList = /* @__PURE__ */ __name((debug3 = false) => { const normalizedAbsoluteEntries = []; const normalizedRelativeEntries = []; const normalizedEntriesNameMap = {}; absoluteEntries.forEach((entry) => { const normalizedEntry = { ...entry, before: [], after: [] }; for (const alias of getAllAliases(normalizedEntry.name, normalizedEntry.aliases)) { normalizedEntriesNameMap[alias] = normalizedEntry; } normalizedAbsoluteEntries.push(normalizedEntry); }); relativeEntries.forEach((entry) => { const normalizedEntry = { ...entry, before: [], after: [] }; for (const alias of getAllAliases(normalizedEntry.name, normalizedEntry.aliases)) { normalizedEntriesNameMap[alias] = normalizedEntry; } normalizedRelativeEntries.push(normalizedEntry); }); normalizedRelativeEntries.forEach((entry) => { if (entry.toMiddleware) { const toMiddleware = normalizedEntriesNameMap[entry.toMiddleware]; if (toMiddleware === void 0) { if (debug3) { return; } throw new Error(`${entry.toMiddleware} is not found when adding ${getMiddlewareNameWithAliases(entry.name, entry.aliases)} middleware ${entry.relation} ${entry.toMiddleware}`); } if (entry.relation === "after") { toMiddleware.after.push(entry); } if (entry.relation === "before") { toMiddleware.before.push(entry); } } }); const mainChain = sort(normalizedAbsoluteEntries).map(expandRelativeMiddlewareList).reduce((wholeList, expandedMiddlewareList) => { wholeList.push(...expandedMiddlewareList); return wholeList; }, []); return mainChain; }, "getMiddlewareList"); const stack = { add: /* @__PURE__ */ __name((middleware2, options = {}) => { const { name, override, aliases: _aliases } = options; const entry = { step: "initialize", priority: "normal", middleware: middleware2, ...options }; const aliases = getAllAliases(name, _aliases); if (aliases.length > 0) { if (aliases.some((alias) => entriesNameSet.has(alias))) { if (!override) throw new Error(`Duplicate middleware name '${getMiddlewareNameWithAliases(name, _aliases)}'`); for (const alias of aliases) { const toOverrideIndex = absoluteEntries.findIndex((entry2) => entry2.name === alias || entry2.aliases?.some((a) => a === alias)); if (toOverrideIndex === -1) { continue; } const toOverride = absoluteEntries[toOverrideIndex]; if (toOverride.step !== entry.step || entry.priority !== toOverride.priority) { throw new Error(`"${getMiddlewareNameWithAliases(toOverride.name, toOverride.aliases)}" middleware with ${toOverride.priority} priority in ${toOverride.step} step cannot be overridden by "${getMiddlewareNameWithAliases(name, _aliases)}" middleware with ${entry.priority} priority in ${entry.step} step.`); } absoluteEntries.splice(toOverrideIndex, 1); } } for (const alias of aliases) { entriesNameSet.add(alias); } } absoluteEntries.push(entry); }, "add"), addRelativeTo: /* @__PURE__ */ __name((middleware2, options) => { const { name, override, aliases: _aliases } = options; const entry = { middleware: middleware2, ...options }; const aliases = getAllAliases(name, _aliases); if (aliases.length > 0) { if (aliases.some((alias) => entriesNameSet.has(alias))) { if (!override) throw new Error(`Duplicate middleware name '${getMiddlewareNameWithAliases(name, _aliases)}'`); for (const alias of aliases) { const toOverrideIndex = relativeEntries.findIndex((entry2) => entry2.name === alias || entry2.aliases?.some((a) => a === alias)); if (toOverrideIndex === -1) { continue; } const toOverride = relativeEntries[toOverrideIndex]; if (toOverride.toMiddleware !== entry.toMiddleware || toOverride.relation !== entry.relation) { throw new Error(`"${getMiddlewareNameWithAliases(toOverride.name, toOverride.aliases)}" middleware ${toOverride.relation} "${toOverride.toMiddleware}" middleware cannot be overridden by "${getMiddlewareNameWithAliases(name, _aliases)}" middleware ${entry.relation} "${entry.toMiddleware}" middleware.`); } relativeEntries.splice(toOverrideIndex, 1); } } for (const alias of aliases) { entriesNameSet.add(alias); } } relativeEntries.push(entry); }, "addRelativeTo"), clone: /* @__PURE__ */ __name(() => cloneTo(constructStack()), "clone"), use: /* @__PURE__ */ __name((plugin) => { plugin.applyToStack(stack); }, "use"), remove: /* @__PURE__ */ __name((toRemove) => { if (typeof toRemove === "string") return removeByName(toRemove); else return removeByReference(toRemove); }, "remove"), removeByTag: /* @__PURE__ */ __name((toRemove) => { let isRemoved = false; const filterCb = /* @__PURE__ */ __name((entry) => { const { tags, name, aliases: _aliases } = entry; if (tags && tags.includes(toRemove)) { const aliases = getAllAliases(name, _aliases); for (const alias of aliases) { entriesNameSet.delete(alias); } isRemoved = true; return false; } return true; }, "filterCb"); absoluteEntries = absoluteEntries.filter(filterCb); relativeEntries = relativeEntries.filter(filterCb); return isRemoved; }, "removeByTag"), concat: /* @__PURE__ */ __name((from) => { const cloned = cloneTo(constructStack()); cloned.use(from); cloned.identifyOnResolve(identifyOnResolve || cloned.identifyOnResolve() || (from.identifyOnResolve?.() ?? false)); return cloned; }, "concat"), applyToStack: cloneTo, identify: /* @__PURE__ */ __name(() => { return getMiddlewareList(true).map((mw) => { const step = mw.step ?? mw.relation + " " + mw.toMiddleware; return getMiddlewareNameWithAliases(mw.name, mw.aliases) + " - " + step; }); }, "identify"), identifyOnResolve(toggle) { if (typeof toggle === "boolean") identifyOnResolve = toggle; return identifyOnResolve; }, resolve: /* @__PURE__ */ __name((handler, context2) => { for (const middleware2 of getMiddlewareList().map((entry) => entry.middleware).reverse()) { handler = middleware2(handler, context2); } if (identifyOnResolve) { console.log(stack.identify()); } return handler; }, "resolve") }; return stack; }, "constructStack"); var stepWeights = { initialize: 5, serialize: 4, build: 3, finalizeRequest: 2, deserialize: 1 }; var priorityWeights = { high: 3, normal: 2, low: 1 }; // ../../node_modules/@smithy/smithy-client/dist-es/command.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/@smithy/smithy-client/dist-es/schemaLogFilter.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var SENSITIVE_STRING = "***SensitiveInformation***"; function schemaLogFilter(schema, data) { if (data == null) { return data; } const ns = NormalizedSchema.of(schema); if (ns.getMergedTraits().sensitive) { return SENSITIVE_STRING; } if (ns.isListSchema()) { const isSensitive = !!ns.getValueSchema().getMergedTraits().sensitive; if (isSensitive) { return SENSITIVE_STRING; } } else if (ns.isMapSchema()) { const isSensitive = !!ns.getKeySchema().getMergedTraits().sensitive || !!ns.getValueSchema().getMergedTraits().sensitive; if (isSensitive) { return SENSITIVE_STRING; } } else if (ns.isStructSchema() && typeof data === "object") { const object2 = data; const newObject = {}; for (const [member2, memberNs] of ns.structIterator()) { if (object2[member2] != null) { newObject[member2] = schemaLogFilter(memberNs, object2[member2]); } } return newObject; } return data; } __name(schemaLogFilter, "schemaLogFilter"); // ../../node_modules/@smithy/smithy-client/dist-es/command.js var Command = class { static { __name(this, "Command"); } middlewareStack = constructStack(); schema; static classBuilder() { return new ClassBuilder(); } resolveMiddlewareWithContext(clientStack, configuration, options, { middlewareFn, clientName, commandName, inputFilterSensitiveLog, outputFilterSensitiveLog, smithyContext, additionalContext, CommandCtor }) { for (const mw of middlewareFn.bind(this)(CommandCtor, clientStack, configuration, options)) { this.middlewareStack.use(mw); } const stack = clientStack.concat(this.middlewareStack); const { logger: logger4 } = configuration; const handlerExecutionContext = { logger: logger4, clientName, commandName, inputFilterSensitiveLog, outputFilterSensitiveLog, [SMITHY_CONTEXT_KEY]: { commandInstance: this, ...smithyContext }, ...additionalContext }; const { requestHandler } = configuration; return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext); } }; var ClassBuilder = class { static { __name(this, "ClassBuilder"); } _init = /* @__PURE__ */ __name(() => { }, "_init"); _ep = {}; _middlewareFn = /* @__PURE__ */ __name(() => [], "_middlewareFn"); _commandName = ""; _clientName = ""; _additionalContext = {}; _smithyContext = {}; _inputFilterSensitiveLog = void 0; _outputFilterSensitiveLog = void 0; _serializer = null; _deserializer = null; _operationSchema; init(cb) { this._init = cb; } ep(endpointParameterInstructions) { this._ep = endpointParameterInstructions; return this; } m(middlewareSupplier) { this._middlewareFn = middlewareSupplier; return this; } s(service, operation, smithyContext = {}) { this._smithyContext = { service, operation, ...smithyContext }; return this; } c(additionalContext = {}) { this._additionalContext = additionalContext; return this; } n(clientName, commandName) { this._clientName = clientName; this._commandName = commandName; return this; } f(inputFilter = (_) => _, outputFilter = (_) => _) { this._inputFilterSensitiveLog = inputFilter; this._outputFilterSensitiveLog = outputFilter; return this; } ser(serializer) { this._serializer = serializer; return this; } de(deserializer) { this._deserializer = deserializer; return this; } sc(operation) { this._operationSchema = operation; this._smithyContext.operationSchema = operation; return this; } build() { const closure = this; let CommandRef; return CommandRef = class extends Command { static { __name(this, "CommandRef"); } input; static getEndpointParameterInstructions() { return closure._ep; } constructor(...[input]) { super(); this.input = input ?? {}; closure._init(this); this.schema = closure._operationSchema; } resolveMiddleware(stack, configuration, options) { const op = closure._operationSchema; const input = op?.[4] ?? op?.input; const output = op?.[5] ?? op?.output; return this.resolveMiddlewareWithContext(stack, configuration, options, { CommandCtor: CommandRef, middlewareFn: closure._middlewareFn, clientName: closure._clientName, commandName: closure._commandName, inputFilterSensitiveLog: closure._inputFilterSensitiveLog ?? (op ? schemaLogFilter.bind(null, input) : (_) => _), outputFilterSensitiveLog: closure._outputFilterSensitiveLog ?? (op ? schemaLogFilter.bind(null, output) : (_) => _), smithyContext: closure._smithyContext, additionalContext: closure._additionalContext }); } serialize = closure._serializer; deserialize = closure._deserializer; }; } }; // ../../node_modules/@smithy/smithy-client/dist-es/exceptions.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var ServiceException = class _ServiceException extends Error { static { __name(this, "ServiceException"); } $fault; $response; $retryable; $metadata; constructor(options) { super(options.message); Object.setPrototypeOf(this, Object.getPrototypeOf(this).constructor.prototype); this.name = options.name; this.$fault = options.$fault; this.$metadata = options.$metadata; } static isInstance(value) { if (!value) return false; const candidate = value; return _ServiceException.prototype.isPrototypeOf(candidate) || Boolean(candidate.$fault) && Boolean(candidate.$metadata) && (candidate.$fault === "client" || candidate.$fault === "server"); } static [Symbol.hasInstance](instance) { if (!instance) return false; const candidate = instance; if (this === _ServiceException) { return _ServiceException.isInstance(instance); } if (_ServiceException.isInstance(instance)) { if (candidate.name && this.name) { return this.prototype.isPrototypeOf(instance) || candidate.name === this.name; } return this.prototype.isPrototypeOf(instance); } return false; } }; // ../../node_modules/@smithy/smithy-client/dist-es/NoOpLogger.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var NoOpLogger = class { static { __name(this, "NoOpLogger"); } trace() { } debug() { } info() { } warn() { } error() { } }; // ../../node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/getChecksumAlgorithmForRequest.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var getChecksumAlgorithmForRequest = /* @__PURE__ */ __name((input, { requestChecksumRequired, requestAlgorithmMember, requestChecksumCalculation }) => { if (!requestAlgorithmMember) { return requestChecksumCalculation === RequestChecksumCalculation.WHEN_SUPPORTED || requestChecksumRequired ? DEFAULT_CHECKSUM_ALGORITHM : void 0; } if (!input[requestAlgorithmMember]) { return void 0; } const checksumAlgorithm = input[requestAlgorithmMember]; return checksumAlgorithm; }, "getChecksumAlgorithmForRequest"); // ../../node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/getChecksumLocationName.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var getChecksumLocationName = /* @__PURE__ */ __name((algorithm) => algorithm === ChecksumAlgorithm.MD5 ? "content-md5" : `x-amz-checksum-${algorithm.toLowerCase()}`, "getChecksumLocationName"); // ../../node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/hasHeader.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var hasHeader2 = /* @__PURE__ */ __name((header, headers) => { const soughtHeader = header.toLowerCase(); for (const headerName of Object.keys(headers)) { if (soughtHeader === headerName.toLowerCase()) { return true; } } return false; }, "hasHeader"); // ../../node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/hasHeaderWithPrefix.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var hasHeaderWithPrefix = /* @__PURE__ */ __name((headerPrefix, headers) => { const soughtHeaderPrefix = headerPrefix.toLowerCase(); for (const headerName of Object.keys(headers)) { if (headerName.toLowerCase().startsWith(soughtHeaderPrefix)) { return true; } } return false; }, "hasHeaderWithPrefix"); // ../../node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/isStreaming.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var isStreaming = /* @__PURE__ */ __name((body) => body !== void 0 && typeof body !== "string" && !ArrayBuffer.isView(body) && !isArrayBuffer(body), "isStreaming"); // ../../node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/selectChecksumAlgorithmFunction.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/@aws-crypto/crc32c/build/module/index.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/tslib/tslib.es6.mjs init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); function __rest(s, e) { var t8 = {}; for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t8[p] = s[p]; if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) { if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t8[p[i]] = s[p[i]]; } return t8; } __name(__rest, "__rest"); function __awaiter(thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function(resolve) { resolve(value); }); } __name(adopt, "adopt"); return new (P || (P = Promise))(function(resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } __name(fulfilled, "fulfilled"); function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } __name(rejected, "rejected"); function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } __name(step, "step"); step((generator = generator.apply(thisArg, _arguments || [])).next()); }); } __name(__awaiter, "__awaiter"); function __generator(thisArg, body) { var _ = { label: 0, sent: /* @__PURE__ */ __name(function() { if (t8[0] & 1) throw t8[1]; return t8[1]; }, "sent"), trys: [], ops: [] }, f, y, t8, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype); return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; function verb(n) { return function(v2) { return step([n, v2]); }; } __name(verb, "verb"); function step(op) { if (f) throw new TypeError("Generator is already executing."); while (g && (g = 0, op[0] && (_ = 0)), _) try { if (f = 1, y && (t8 = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t8 = y["return"]) && t8.call(y), 0) : y.next) && !(t8 = t8.call(y, op[1])).done) return t8; if (y = 0, t8) op = [op[0] & 2, t8.value]; switch (op[0]) { case 0: case 1: t8 = op; break; case 4: _.label++; return { value: op[1], done: false }; case 5: _.label++; y = op[1]; op = [0]; continue; case 7: op = _.ops.pop(); _.trys.pop(); continue; default: if (!(t8 = _.trys, t8 = t8.length > 0 && t8[t8.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } if (op[0] === 3 && (!t8 || op[1] > t8[0] && op[1] < t8[3])) { _.label = op[1]; break; } if (op[0] === 6 && _.label < t8[1]) { _.label = t8[1]; t8 = op; break; } if (t8 && _.label < t8[2]) { _.label = t8[2]; _.ops.push(op); break; } if (t8[2]) _.ops.pop(); _.trys.pop(); continue; } op = body.call(thisArg, _); } catch (e) { op = [6, e]; y = 0; } finally { f = t8 = 0; } if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; } __name(step, "step"); } __name(__generator, "__generator"); function __values(o) { var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0; if (m) return m.call(o); if (o && typeof o.length === "number") return { next: /* @__PURE__ */ __name(function() { if (o && i >= o.length) o = void 0; return { value: o && o[i++], done: !o }; }, "next") }; throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined."); } __name(__values, "__values"); // ../../node_modules/@aws-crypto/util/build/module/index.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/@aws-crypto/util/build/module/convertToBuffer.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/index.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/fromUtf8.browser.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var fromUtf82 = /* @__PURE__ */ __name((input) => new TextEncoder().encode(input), "fromUtf8"); // ../../node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/toUint8Array.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/toUtf8.browser.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/@aws-crypto/util/build/module/convertToBuffer.js var fromUtf83 = typeof Buffer !== "undefined" && Buffer.from ? function(input) { return Buffer.from(input, "utf8"); } : fromUtf82; function convertToBuffer(data) { if (data instanceof Uint8Array) return data; if (typeof data === "string") { return fromUtf83(data); } if (ArrayBuffer.isView(data)) { return new Uint8Array(data.buffer, data.byteOffset, data.byteLength / Uint8Array.BYTES_PER_ELEMENT); } return new Uint8Array(data); } __name(convertToBuffer, "convertToBuffer"); // ../../node_modules/@aws-crypto/util/build/module/isEmptyData.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); function isEmptyData(data) { if (typeof data === "string") { return data.length === 0; } return data.byteLength === 0; } __name(isEmptyData, "isEmptyData"); // ../../node_modules/@aws-crypto/util/build/module/numToUint8.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); function numToUint8(num) { return new Uint8Array([ (num & 4278190080) >> 24, (num & 16711680) >> 16, (num & 65280) >> 8, num & 255 ]); } __name(numToUint8, "numToUint8"); // ../../node_modules/@aws-crypto/util/build/module/uint32ArrayFrom.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); function uint32ArrayFrom(a_lookUpTable2) { if (!Uint32Array.from) { var return_array = new Uint32Array(a_lookUpTable2.length); var a_index = 0; while (a_index < a_lookUpTable2.length) { return_array[a_index] = a_lookUpTable2[a_index]; a_index += 1; } return return_array; } return Uint32Array.from(a_lookUpTable2); } __name(uint32ArrayFrom, "uint32ArrayFrom"); // ../../node_modules/@aws-crypto/crc32c/build/module/aws_crc32c.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var AwsCrc32c = ( /** @class */ (function() { function AwsCrc32c2() { this.crc32c = new Crc32c(); } __name(AwsCrc32c2, "AwsCrc32c"); AwsCrc32c2.prototype.update = function(toHash) { if (isEmptyData(toHash)) return; this.crc32c.update(convertToBuffer(toHash)); }; AwsCrc32c2.prototype.digest = function() { return __awaiter(this, void 0, void 0, function() { return __generator(this, function(_a2) { return [2, numToUint8(this.crc32c.digest())]; }); }); }; AwsCrc32c2.prototype.reset = function() { this.crc32c = new Crc32c(); }; return AwsCrc32c2; })() ); // ../../node_modules/@aws-crypto/crc32c/build/module/index.js var Crc32c = ( /** @class */ (function() { function Crc32c2() { this.checksum = 4294967295; } __name(Crc32c2, "Crc32c"); Crc32c2.prototype.update = function(data) { var e_1, _a2; try { for (var data_1 = __values(data), data_1_1 = data_1.next(); !data_1_1.done; data_1_1 = data_1.next()) { var byte = data_1_1.value; this.checksum = this.checksum >>> 8 ^ lookupTable[(this.checksum ^ byte) & 255]; } } catch (e_1_1) { e_1 = { error: e_1_1 }; } finally { try { if (data_1_1 && !data_1_1.done && (_a2 = data_1.return)) _a2.call(data_1); } finally { if (e_1) throw e_1.error; } } return this; }; Crc32c2.prototype.digest = function() { return (this.checksum ^ 4294967295) >>> 0; }; return Crc32c2; })() ); var a_lookupTable = [ 0, 4067132163, 3778769143, 324072436, 3348797215, 904991772, 648144872, 3570033899, 2329499855, 2024987596, 1809983544, 2575936315, 1296289744, 3207089363, 2893594407, 1578318884, 274646895, 3795141740, 4049975192, 51262619, 3619967088, 632279923, 922689671, 3298075524, 2592579488, 1760304291, 2075979607, 2312596564, 1562183871, 2943781820, 3156637768, 1313733451, 549293790, 3537243613, 3246849577, 871202090, 3878099393, 357341890, 102525238, 4101499445, 2858735121, 1477399826, 1264559846, 3107202533, 1845379342, 2677391885, 2361733625, 2125378298, 820201905, 3263744690, 3520608582, 598981189, 4151959214, 85089709, 373468761, 3827903834, 3124367742, 1213305469, 1526817161, 2842354314, 2107672161, 2412447074, 2627466902, 1861252501, 1098587580, 3004210879, 2688576843, 1378610760, 2262928035, 1955203488, 1742404180, 2511436119, 3416409459, 969524848, 714683780, 3639785095, 205050476, 4266873199, 3976438427, 526918040, 1361435347, 2739821008, 2954799652, 1114974503, 2529119692, 1691668175, 2005155131, 2247081528, 3690758684, 697762079, 986182379, 3366744552, 476452099, 3993867776, 4250756596, 255256311, 1640403810, 2477592673, 2164122517, 1922457750, 2791048317, 1412925310, 1197962378, 3037525897, 3944729517, 427051182, 170179418, 4165941337, 746937522, 3740196785, 3451792453, 1070968646, 1905808397, 2213795598, 2426610938, 1657317369, 3053634322, 1147748369, 1463399397, 2773627110, 4215344322, 153784257, 444234805, 3893493558, 1021025245, 3467647198, 3722505002, 797665321, 2197175160, 1889384571, 1674398607, 2443626636, 1164749927, 3070701412, 2757221520, 1446797203, 137323447, 4198817972, 3910406976, 461344835, 3484808360, 1037989803, 781091935, 3705997148, 2460548119, 1623424788, 1939049696, 2180517859, 1429367560, 2807687179, 3020495871, 1180866812, 410100952, 3927582683, 4182430767, 186734380, 3756733383, 763408580, 1053836080, 3434856499, 2722870694, 1344288421, 1131464017, 2971354706, 1708204729, 2545590714, 2229949006, 1988219213, 680717673, 3673779818, 3383336350, 1002577565, 4010310262, 493091189, 238226049, 4233660802, 2987750089, 1082061258, 1395524158, 2705686845, 1972364758, 2279892693, 2494862625, 1725896226, 952904198, 3399985413, 3656866545, 731699698, 4283874585, 222117402, 510512622, 3959836397, 3280807620, 837199303, 582374963, 3504198960, 68661723, 4135334616, 3844915500, 390545967, 1230274059, 3141532936, 2825850620, 1510247935, 2395924756, 2091215383, 1878366691, 2644384480, 3553878443, 565732008, 854102364, 3229815391, 340358836, 3861050807, 4117890627, 119113024, 1493875044, 2875275879, 3090270611, 1247431312, 2660249211, 1828433272, 2141937292, 2378227087, 3811616794, 291187481, 34330861, 4032846830, 615137029, 3603020806, 3314634738, 939183345, 1776939221, 2609017814, 2295496738, 2058945313, 2926798794, 1545135305, 1330124605, 3173225534, 4084100981, 17165430, 307568514, 3762199681, 888469610, 3332340585, 3587147933, 665062302, 2042050490, 2346497209, 2559330125, 1793573966, 3190661285, 1279665062, 1595330642, 2910671697 ]; var lookupTable = uint32ArrayFrom(a_lookupTable); // ../../node_modules/@aws-sdk/crc64-nvme/dist-es/index.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/@aws-sdk/crc64-nvme/dist-es/Crc64Nvme.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var generateCRC64NVMETable = /* @__PURE__ */ __name(() => { const sliceLength = 8; const tables = new Array(sliceLength); for (let slice = 0; slice < sliceLength; slice++) { const table3 = new Array(512); for (let i = 0; i < 256; i++) { let crc = BigInt(i); for (let j = 0; j < 8 * (slice + 1); j++) { if (crc & 1n) { crc = crc >> 1n ^ 0x9a6c9329ac4bc9b5n; } else { crc = crc >> 1n; } } table3[i * 2] = Number(crc >> 32n & 0xffffffffn); table3[i * 2 + 1] = Number(crc & 0xffffffffn); } tables[slice] = new Uint32Array(table3); } return tables; }, "generateCRC64NVMETable"); var CRC64_NVME_REVERSED_TABLE; var t0; var t1; var t2; var t3; var t4; var t5; var t6; var t7; var ensureTablesInitialized = /* @__PURE__ */ __name(() => { if (!CRC64_NVME_REVERSED_TABLE) { CRC64_NVME_REVERSED_TABLE = generateCRC64NVMETable(); [t0, t1, t2, t3, t4, t5, t6, t7] = CRC64_NVME_REVERSED_TABLE; } }, "ensureTablesInitialized"); var Crc64Nvme = class { static { __name(this, "Crc64Nvme"); } c1 = 0; c2 = 0; constructor() { ensureTablesInitialized(); this.reset(); } update(data) { const len = data.length; let i = 0; let crc1 = this.c1; let crc2 = this.c2; while (i + 8 <= len) { const idx0 = ((crc2 ^ data[i++]) & 255) << 1; const idx1 = ((crc2 >>> 8 ^ data[i++]) & 255) << 1; const idx2 = ((crc2 >>> 16 ^ data[i++]) & 255) << 1; const idx3 = ((crc2 >>> 24 ^ data[i++]) & 255) << 1; const idx4 = ((crc1 ^ data[i++]) & 255) << 1; const idx5 = ((crc1 >>> 8 ^ data[i++]) & 255) << 1; const idx6 = ((crc1 >>> 16 ^ data[i++]) & 255) << 1; const idx7 = ((crc1 >>> 24 ^ data[i++]) & 255) << 1; crc1 = t7[idx0] ^ t6[idx1] ^ t5[idx2] ^ t4[idx3] ^ t3[idx4] ^ t2[idx5] ^ t1[idx6] ^ t0[idx7]; crc2 = t7[idx0 + 1] ^ t6[idx1 + 1] ^ t5[idx2 + 1] ^ t4[idx3 + 1] ^ t3[idx4 + 1] ^ t2[idx5 + 1] ^ t1[idx6 + 1] ^ t0[idx7 + 1]; } while (i < len) { const idx = ((crc2 ^ data[i]) & 255) << 1; crc2 = (crc2 >>> 8 | (crc1 & 255) << 24) >>> 0; crc1 = crc1 >>> 8 ^ t0[idx]; crc2 ^= t0[idx + 1]; i++; } this.c1 = crc1; this.c2 = crc2; } async digest() { const c1 = this.c1 ^ 4294967295; const c2 = this.c2 ^ 4294967295; return new Uint8Array([ c1 >>> 24, c1 >>> 16 & 255, c1 >>> 8 & 255, c1 & 255, c2 >>> 24, c2 >>> 16 & 255, c2 >>> 8 & 255, c2 & 255 ]); } reset() { this.c1 = 4294967295; this.c2 = 4294967295; } }; // ../../node_modules/@aws-sdk/crc64-nvme/dist-es/crc64-nvme-crt-container.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var crc64NvmeCrtContainer = { CrtCrc64Nvme: null }; // ../../node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/getCrc32ChecksumAlgorithmFunction.browser.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/@aws-crypto/crc32/build/module/index.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/@aws-crypto/crc32/build/module/aws_crc32.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var AwsCrc32 = ( /** @class */ (function() { function AwsCrc322() { this.crc32 = new Crc32(); } __name(AwsCrc322, "AwsCrc32"); AwsCrc322.prototype.update = function(toHash) { if (isEmptyData(toHash)) return; this.crc32.update(convertToBuffer(toHash)); }; AwsCrc322.prototype.digest = function() { return __awaiter(this, void 0, void 0, function() { return __generator(this, function(_a2) { return [2, numToUint8(this.crc32.digest())]; }); }); }; AwsCrc322.prototype.reset = function() { this.crc32 = new Crc32(); }; return AwsCrc322; })() ); // ../../node_modules/@aws-crypto/crc32/build/module/index.js var Crc32 = ( /** @class */ (function() { function Crc322() { this.checksum = 4294967295; } __name(Crc322, "Crc32"); Crc322.prototype.update = function(data) { var e_1, _a2; try { for (var data_1 = __values(data), data_1_1 = data_1.next(); !data_1_1.done; data_1_1 = data_1.next()) { var byte = data_1_1.value; this.checksum = this.checksum >>> 8 ^ lookupTable2[(this.checksum ^ byte) & 255]; } } catch (e_1_1) { e_1 = { error: e_1_1 }; } finally { try { if (data_1_1 && !data_1_1.done && (_a2 = data_1.return)) _a2.call(data_1); } finally { if (e_1) throw e_1.error; } } return this; }; Crc322.prototype.digest = function() { return (this.checksum ^ 4294967295) >>> 0; }; return Crc322; })() ); var a_lookUpTable = [ 0, 1996959894, 3993919788, 2567524794, 124634137, 1886057615, 3915621685, 2657392035, 249268274, 2044508324, 3772115230, 2547177864, 162941995, 2125561021, 3887607047, 2428444049, 498536548, 1789927666, 4089016648, 2227061214, 450548861, 1843258603, 4107580753, 2211677639, 325883990, 1684777152, 4251122042, 2321926636, 335633487, 1661365465, 4195302755, 2366115317, 997073096, 1281953886, 3579855332, 2724688242, 1006888145, 1258607687, 3524101629, 2768942443, 901097722, 1119000684, 3686517206, 2898065728, 853044451, 1172266101, 3705015759, 2882616665, 651767980, 1373503546, 3369554304, 3218104598, 565507253, 1454621731, 3485111705, 3099436303, 671266974, 1594198024, 3322730930, 2970347812, 795835527, 1483230225, 3244367275, 3060149565, 1994146192, 31158534, 2563907772, 4023717930, 1907459465, 112637215, 2680153253, 3904427059, 2013776290, 251722036, 2517215374, 3775830040, 2137656763, 141376813, 2439277719, 3865271297, 1802195444, 476864866, 2238001368, 4066508878, 1812370925, 453092731, 2181625025, 4111451223, 1706088902, 314042704, 2344532202, 4240017532, 1658658271, 366619977, 2362670323, 4224994405, 1303535960, 984961486, 2747007092, 3569037538, 1256170817, 1037604311, 2765210733, 3554079995, 1131014506, 879679996, 2909243462, 3663771856, 1141124467, 855842277, 2852801631, 3708648649, 1342533948, 654459306, 3188396048, 3373015174, 1466479909, 544179635, 3110523913, 3462522015, 1591671054, 702138776, 2966460450, 3352799412, 1504918807, 783551873, 3082640443, 3233442989, 3988292384, 2596254646, 62317068, 1957810842, 3939845945, 2647816111, 81470997, 1943803523, 3814918930, 2489596804, 225274430, 2053790376, 3826175755, 2466906013, 167816743, 2097651377, 4027552580, 2265490386, 503444072, 1762050814, 4150417245, 2154129355, 426522225, 1852507879, 4275313526, 2312317920, 282753626, 1742555852, 4189708143, 2394877945, 397917763, 1622183637, 3604390888, 2714866558, 953729732, 1340076626, 3518719985, 2797360999, 1068828381, 1219638859, 3624741850, 2936675148, 906185462, 1090812512, 3747672003, 2825379669, 829329135, 1181335161, 3412177804, 3160834842, 628085408, 1382605366, 3423369109, 3138078467, 570562233, 1426400815, 3317316542, 2998733608, 733239954, 1555261956, 3268935591, 3050360625, 752459403, 1541320221, 2607071920, 3965973030, 1969922972, 40735498, 2617837225, 3943577151, 1913087877, 83908371, 2512341634, 3803740692, 2075208622, 213261112, 2463272603, 3855990285, 2094854071, 198958881, 2262029012, 4057260610, 1759359992, 534414190, 2176718541, 4139329115, 1873836001, 414664567, 2282248934, 4279200368, 1711684554, 285281116, 2405801727, 4167216745, 1634467795, 376229701, 2685067896, 3608007406, 1308918612, 956543938, 2808555105, 3495958263, 1231636301, 1047427035, 2932959818, 3654703836, 1088359270, 936918e3, 2847714899, 3736837829, 1202900863, 817233897, 3183342108, 3401237130, 1404277552, 615818150, 3134207493, 3453421203, 1423857449, 601450431, 3009837614, 3294710456, 1567103746, 711928724, 3020668471, 3272380065, 1510334235, 755167117 ]; var lookupTable2 = uint32ArrayFrom(a_lookUpTable); // ../../node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/getCrc32ChecksumAlgorithmFunction.browser.js var getCrc32ChecksumAlgorithmFunction = /* @__PURE__ */ __name(() => AwsCrc32, "getCrc32ChecksumAlgorithmFunction"); // ../../node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/types.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var CLIENT_SUPPORTED_ALGORITHMS = [ ChecksumAlgorithm.CRC32, ChecksumAlgorithm.CRC32C, ChecksumAlgorithm.CRC64NVME, ChecksumAlgorithm.SHA1, ChecksumAlgorithm.SHA256 ]; var PRIORITY_ORDER_ALGORITHMS = [ ChecksumAlgorithm.SHA256, ChecksumAlgorithm.SHA1, ChecksumAlgorithm.CRC32, ChecksumAlgorithm.CRC32C, ChecksumAlgorithm.CRC64NVME ]; // ../../node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/selectChecksumAlgorithmFunction.js var selectChecksumAlgorithmFunction = /* @__PURE__ */ __name((checksumAlgorithm, config3) => { const { checksumAlgorithms = {} } = config3; switch (checksumAlgorithm) { case ChecksumAlgorithm.MD5: return checksumAlgorithms?.MD5 ?? config3.md5; case ChecksumAlgorithm.CRC32: return checksumAlgorithms?.CRC32 ?? getCrc32ChecksumAlgorithmFunction(); case ChecksumAlgorithm.CRC32C: return checksumAlgorithms?.CRC32C ?? AwsCrc32c; case ChecksumAlgorithm.CRC64NVME: if (typeof crc64NvmeCrtContainer.CrtCrc64Nvme !== "function") { return checksumAlgorithms?.CRC64NVME ?? Crc64Nvme; } return checksumAlgorithms?.CRC64NVME ?? crc64NvmeCrtContainer.CrtCrc64Nvme; case ChecksumAlgorithm.SHA1: return checksumAlgorithms?.SHA1 ?? config3.sha1; case ChecksumAlgorithm.SHA256: return checksumAlgorithms?.SHA256 ?? config3.sha256; default: if (checksumAlgorithms?.[checksumAlgorithm]) { return checksumAlgorithms[checksumAlgorithm]; } throw new Error(`The checksum algorithm "${checksumAlgorithm}" is not supported by the client. Select one of ${CLIENT_SUPPORTED_ALGORITHMS}, or provide an implementation to the client constructor checksums field.`); } }, "selectChecksumAlgorithmFunction"); // ../../node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/stringHasher.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_dist_es(); var stringHasher = /* @__PURE__ */ __name((checksumAlgorithmFn, body) => { const hash3 = new checksumAlgorithmFn(); hash3.update(toUint8Array(body || "")); return hash3.digest(); }, "stringHasher"); // ../../node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/flexibleChecksumsMiddleware.js var flexibleChecksumsMiddlewareOptions = { name: "flexibleChecksumsMiddleware", step: "build", tags: ["BODY_CHECKSUM"], override: true }; var flexibleChecksumsMiddleware = /* @__PURE__ */ __name((config3, middlewareConfig) => (next, context2) => async (args) => { if (!HttpRequest.isInstance(args.request)) { return next(args); } if (hasHeaderWithPrefix("x-amz-checksum-", args.request.headers)) { return next(args); } const { request, input } = args; const { body: requestBody, headers } = request; const { base64Encoder, streamHasher } = config3; const { requestChecksumRequired, requestAlgorithmMember } = middlewareConfig; const requestChecksumCalculation = await config3.requestChecksumCalculation(); const requestAlgorithmMemberName = requestAlgorithmMember?.name; const requestAlgorithmMemberHttpHeader = requestAlgorithmMember?.httpHeader; if (requestAlgorithmMemberName && !input[requestAlgorithmMemberName]) { if (requestChecksumCalculation === RequestChecksumCalculation.WHEN_SUPPORTED || requestChecksumRequired) { input[requestAlgorithmMemberName] = DEFAULT_CHECKSUM_ALGORITHM; if (requestAlgorithmMemberHttpHeader) { headers[requestAlgorithmMemberHttpHeader] = DEFAULT_CHECKSUM_ALGORITHM; } } } const checksumAlgorithm = getChecksumAlgorithmForRequest(input, { requestChecksumRequired, requestAlgorithmMember: requestAlgorithmMember?.name, requestChecksumCalculation }); let updatedBody = requestBody; let updatedHeaders = headers; if (checksumAlgorithm) { switch (checksumAlgorithm) { case ChecksumAlgorithm.CRC32: setFeature(context2, "FLEXIBLE_CHECKSUMS_REQ_CRC32", "U"); break; case ChecksumAlgorithm.CRC32C: setFeature(context2, "FLEXIBLE_CHECKSUMS_REQ_CRC32C", "V"); break; case ChecksumAlgorithm.CRC64NVME: setFeature(context2, "FLEXIBLE_CHECKSUMS_REQ_CRC64", "W"); break; case ChecksumAlgorithm.SHA1: setFeature(context2, "FLEXIBLE_CHECKSUMS_REQ_SHA1", "X"); break; case ChecksumAlgorithm.SHA256: setFeature(context2, "FLEXIBLE_CHECKSUMS_REQ_SHA256", "Y"); break; } const checksumLocationName = getChecksumLocationName(checksumAlgorithm); const checksumAlgorithmFn = selectChecksumAlgorithmFunction(checksumAlgorithm, config3); if (isStreaming(requestBody)) { const { getAwsChunkedEncodingStream, bodyLengthChecker } = config3; updatedBody = getAwsChunkedEncodingStream(typeof config3.requestStreamBufferSize === "number" && config3.requestStreamBufferSize >= 8 * 1024 ? createBufferedReadable(requestBody, config3.requestStreamBufferSize, context2.logger) : requestBody, { base64Encoder, bodyLengthChecker, checksumLocationName, checksumAlgorithmFn, streamHasher }); updatedHeaders = { ...headers, "content-encoding": headers["content-encoding"] ? `${headers["content-encoding"]},aws-chunked` : "aws-chunked", "transfer-encoding": "chunked", "x-amz-decoded-content-length": headers["content-length"], "x-amz-content-sha256": "STREAMING-UNSIGNED-PAYLOAD-TRAILER", "x-amz-trailer": checksumLocationName }; delete updatedHeaders["content-length"]; } else if (!hasHeader2(checksumLocationName, headers)) { const rawChecksum = await stringHasher(checksumAlgorithmFn, requestBody); updatedHeaders = { ...headers, [checksumLocationName]: base64Encoder(rawChecksum) }; } } try { const result = await next({ ...args, request: { ...request, headers: updatedHeaders, body: updatedBody } }); return result; } catch (e) { if (e instanceof Error && e.name === "InvalidChunkSizeError") { try { if (!e.message.endsWith(".")) { e.message += "."; } e.message += " Set [requestStreamBufferSize=number e.g. 65_536] in client constructor to instruct AWS SDK to buffer your input stream."; } catch (ignored) { } } throw e; } }, "flexibleChecksumsMiddleware"); // ../../node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/getFlexibleChecksumsPlugin.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/flexibleChecksumsInputMiddleware.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var flexibleChecksumsInputMiddlewareOptions = { name: "flexibleChecksumsInputMiddleware", toMiddleware: "serializerMiddleware", relation: "before", tags: ["BODY_CHECKSUM"], override: true }; var flexibleChecksumsInputMiddleware = /* @__PURE__ */ __name((config3, middlewareConfig) => (next, context2) => async (args) => { const input = args.input; const { requestValidationModeMember } = middlewareConfig; const requestChecksumCalculation = await config3.requestChecksumCalculation(); const responseChecksumValidation = await config3.responseChecksumValidation(); switch (requestChecksumCalculation) { case RequestChecksumCalculation.WHEN_REQUIRED: setFeature(context2, "FLEXIBLE_CHECKSUMS_REQ_WHEN_REQUIRED", "a"); break; case RequestChecksumCalculation.WHEN_SUPPORTED: setFeature(context2, "FLEXIBLE_CHECKSUMS_REQ_WHEN_SUPPORTED", "Z"); break; } switch (responseChecksumValidation) { case ResponseChecksumValidation.WHEN_REQUIRED: setFeature(context2, "FLEXIBLE_CHECKSUMS_RES_WHEN_REQUIRED", "c"); break; case ResponseChecksumValidation.WHEN_SUPPORTED: setFeature(context2, "FLEXIBLE_CHECKSUMS_RES_WHEN_SUPPORTED", "b"); break; } if (requestValidationModeMember && !input[requestValidationModeMember]) { if (responseChecksumValidation === ResponseChecksumValidation.WHEN_SUPPORTED) { input[requestValidationModeMember] = "ENABLED"; } } return next(args); }, "flexibleChecksumsInputMiddleware"); // ../../node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/flexibleChecksumsResponseMiddleware.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/getChecksumAlgorithmListForResponse.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var getChecksumAlgorithmListForResponse = /* @__PURE__ */ __name((responseAlgorithms = []) => { const validChecksumAlgorithms = []; for (const algorithm of PRIORITY_ORDER_ALGORITHMS) { if (!responseAlgorithms.includes(algorithm) || !CLIENT_SUPPORTED_ALGORITHMS.includes(algorithm)) { continue; } validChecksumAlgorithms.push(algorithm); } return validChecksumAlgorithms; }, "getChecksumAlgorithmListForResponse"); // ../../node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/isChecksumWithPartNumber.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var isChecksumWithPartNumber = /* @__PURE__ */ __name((checksum) => { const lastHyphenIndex = checksum.lastIndexOf("-"); if (lastHyphenIndex !== -1) { const numberPart = checksum.slice(lastHyphenIndex + 1); if (!numberPart.startsWith("0")) { const number4 = parseInt(numberPart, 10); if (!isNaN(number4) && number4 >= 1 && number4 <= 1e4) { return true; } } } return false; }, "isChecksumWithPartNumber"); // ../../node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/validateChecksumFromResponse.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/getChecksum.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var getChecksum = /* @__PURE__ */ __name(async (body, { checksumAlgorithmFn, base64Encoder }) => base64Encoder(await stringHasher(checksumAlgorithmFn, body)), "getChecksum"); // ../../node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/validateChecksumFromResponse.js var validateChecksumFromResponse = /* @__PURE__ */ __name(async (response, { config: config3, responseAlgorithms, logger: logger4 }) => { const checksumAlgorithms = getChecksumAlgorithmListForResponse(responseAlgorithms); const { body: responseBody, headers: responseHeaders } = response; for (const algorithm of checksumAlgorithms) { const responseHeader = getChecksumLocationName(algorithm); const checksumFromResponse = responseHeaders[responseHeader]; if (checksumFromResponse) { let checksumAlgorithmFn; try { checksumAlgorithmFn = selectChecksumAlgorithmFunction(algorithm, config3); } catch (error50) { if (algorithm === ChecksumAlgorithm.CRC64NVME) { logger4?.warn(`Skipping ${ChecksumAlgorithm.CRC64NVME} checksum validation: ${error50.message}`); continue; } throw error50; } const { base64Encoder } = config3; if (isStreaming(responseBody)) { response.body = createChecksumStream({ expectedChecksum: checksumFromResponse, checksumSourceLocation: responseHeader, checksum: new checksumAlgorithmFn(), source: responseBody, base64Encoder }); return; } const checksum = await getChecksum(responseBody, { checksumAlgorithmFn, base64Encoder }); if (checksum === checksumFromResponse) { break; } throw new Error(`Checksum mismatch: expected "${checksum}" but received "${checksumFromResponse}" in response header "${responseHeader}".`); } } }, "validateChecksumFromResponse"); // ../../node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/flexibleChecksumsResponseMiddleware.js var flexibleChecksumsResponseMiddlewareOptions = { name: "flexibleChecksumsResponseMiddleware", toMiddleware: "deserializerMiddleware", relation: "after", tags: ["BODY_CHECKSUM"], override: true }; var flexibleChecksumsResponseMiddleware = /* @__PURE__ */ __name((config3, middlewareConfig) => (next, context2) => async (args) => { if (!HttpRequest.isInstance(args.request)) { return next(args); } const input = args.input; const result = await next(args); const response = result.response; const { requestValidationModeMember, responseAlgorithms } = middlewareConfig; if (requestValidationModeMember && input[requestValidationModeMember] === "ENABLED") { const { clientName, commandName } = context2; const isS3WholeObjectMultipartGetResponseChecksum = clientName === "S3Client" && commandName === "GetObjectCommand" && getChecksumAlgorithmListForResponse(responseAlgorithms).every((algorithm) => { const responseHeader = getChecksumLocationName(algorithm); const checksumFromResponse = response.headers[responseHeader]; return !checksumFromResponse || isChecksumWithPartNumber(checksumFromResponse); }); if (isS3WholeObjectMultipartGetResponseChecksum) { return result; } await validateChecksumFromResponse(response, { config: config3, responseAlgorithms, logger: context2.logger }); } return result; }, "flexibleChecksumsResponseMiddleware"); // ../../node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/getFlexibleChecksumsPlugin.js var getFlexibleChecksumsPlugin = /* @__PURE__ */ __name((config3, middlewareConfig) => ({ applyToStack: /* @__PURE__ */ __name((clientStack) => { clientStack.add(flexibleChecksumsMiddleware(config3, middlewareConfig), flexibleChecksumsMiddlewareOptions); clientStack.addRelativeTo(flexibleChecksumsInputMiddleware(config3, middlewareConfig), flexibleChecksumsInputMiddlewareOptions); clientStack.addRelativeTo(flexibleChecksumsResponseMiddleware(config3, middlewareConfig), flexibleChecksumsResponseMiddlewareOptions); }, "applyToStack") }), "getFlexibleChecksumsPlugin"); // ../../node_modules/@aws-sdk/middleware-sdk-s3/dist-es/check-content-length-header.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var CONTENT_LENGTH_HEADER = "content-length"; var DECODED_CONTENT_LENGTH_HEADER = "x-amz-decoded-content-length"; function checkContentLengthHeader() { return (next, context2) => async (args) => { const { request } = args; if (HttpRequest.isInstance(request)) { if (!(CONTENT_LENGTH_HEADER in request.headers) && !(DECODED_CONTENT_LENGTH_HEADER in request.headers)) { const message2 = `Are you using a Stream of unknown length as the Body of a PutObject request? Consider using Upload instead from @aws-sdk/lib-storage.`; if (typeof context2?.logger?.warn === "function" && !(context2.logger instanceof NoOpLogger)) { context2.logger.warn(message2); } else { console.warn(message2); } } } return next({ ...args }); }; } __name(checkContentLengthHeader, "checkContentLengthHeader"); var checkContentLengthHeaderMiddlewareOptions = { step: "finalizeRequest", tags: ["CHECK_CONTENT_LENGTH_HEADER"], name: "getCheckContentLengthHeaderPlugin", override: true }; var getCheckContentLengthHeaderPlugin = /* @__PURE__ */ __name((unused) => ({ applyToStack: /* @__PURE__ */ __name((clientStack) => { clientStack.add(checkContentLengthHeader(), checkContentLengthHeaderMiddlewareOptions); }, "applyToStack") }), "getCheckContentLengthHeaderPlugin"); // ../../node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-expires-middleware.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var s3ExpiresMiddleware = /* @__PURE__ */ __name((config3) => { return (next, context2) => async (args) => { const result = await next(args); const { response } = result; if (HttpResponse.isInstance(response)) { if (response.headers.expires) { response.headers.expiresstring = response.headers.expires; try { parseRfc7231DateTime(response.headers.expires); } catch (e) { context2.logger?.warn(`AWS SDK Warning for ${context2.clientName}::${context2.commandName} response parsing (${response.headers.expires}): ${e}`); delete response.headers.expires; } } } return result; }; }, "s3ExpiresMiddleware"); var s3ExpiresMiddlewareOptions = { tags: ["S3"], name: "s3ExpiresMiddleware", override: true, relation: "after", toMiddleware: "deserializerMiddleware" }; var getS3ExpiresMiddlewarePlugin = /* @__PURE__ */ __name((clientConfig) => ({ applyToStack: /* @__PURE__ */ __name((clientStack) => { clientStack.addRelativeTo(s3ExpiresMiddleware(clientConfig), s3ExpiresMiddlewareOptions); }, "applyToStack") }), "getS3ExpiresMiddlewarePlugin"); // ../../node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/index.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/classes/SignatureV4S3Express.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/constants.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var SESSION_TOKEN_QUERY_PARAM = "X-Amz-S3session-Token"; var SESSION_TOKEN_HEADER = SESSION_TOKEN_QUERY_PARAM.toLowerCase(); // ../../node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/classes/SignatureV4S3Express.js var SignatureV4S3Express = class extends SignatureV4 { static { __name(this, "SignatureV4S3Express"); } async signWithCredentials(requestToSign, credentials, options) { const credentialsWithoutSessionToken = getCredentialsWithoutSessionToken(credentials); requestToSign.headers[SESSION_TOKEN_HEADER] = credentials.sessionToken; const privateAccess = this; setSingleOverride(privateAccess, credentialsWithoutSessionToken); return privateAccess.signRequest(requestToSign, options ?? {}); } async presignWithCredentials(requestToSign, credentials, options) { const credentialsWithoutSessionToken = getCredentialsWithoutSessionToken(credentials); delete requestToSign.headers[SESSION_TOKEN_HEADER]; requestToSign.headers[SESSION_TOKEN_QUERY_PARAM] = credentials.sessionToken; requestToSign.query = requestToSign.query ?? {}; requestToSign.query[SESSION_TOKEN_QUERY_PARAM] = credentials.sessionToken; const privateAccess = this; setSingleOverride(privateAccess, credentialsWithoutSessionToken); return this.presign(requestToSign, options); } }; function getCredentialsWithoutSessionToken(credentials) { const credentialsWithoutSessionToken = { accessKeyId: credentials.accessKeyId, secretAccessKey: credentials.secretAccessKey, expiration: credentials.expiration }; return credentialsWithoutSessionToken; } __name(getCredentialsWithoutSessionToken, "getCredentialsWithoutSessionToken"); function setSingleOverride(privateAccess, credentialsWithoutSessionToken) { const id = setTimeout(() => { throw new Error("SignatureV4S3Express credential override was created but not called."); }, 10); const currentCredentialProvider = privateAccess.credentialProvider; const overrideCredentialsProviderOnce = /* @__PURE__ */ __name(() => { clearTimeout(id); privateAccess.credentialProvider = currentCredentialProvider; return Promise.resolve(credentialsWithoutSessionToken); }, "overrideCredentialsProviderOnce"); privateAccess.credentialProvider = overrideCredentialsProviderOnce; } __name(setSingleOverride, "setSingleOverride"); // ../../node_modules/@aws-sdk/middleware-sdk-s3/dist-es/throw-200-exceptions.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var THROW_IF_EMPTY_BODY = { CopyObjectCommand: true, UploadPartCopyCommand: true, CompleteMultipartUploadCommand: true }; var MAX_BYTES_TO_INSPECT = 3e3; var throw200ExceptionsMiddleware = /* @__PURE__ */ __name((config3) => (next, context2) => async (args) => { const result = await next(args); const { response } = result; if (!HttpResponse.isInstance(response)) { return result; } const { statusCode, body: sourceBody } = response; if (statusCode < 200 || statusCode >= 300) { return result; } const isSplittableStream = typeof sourceBody?.stream === "function" || typeof sourceBody?.pipe === "function" || typeof sourceBody?.tee === "function"; if (!isSplittableStream) { return result; } let bodyCopy = sourceBody; let body = sourceBody; if (sourceBody && typeof sourceBody === "object" && !(sourceBody instanceof Uint8Array)) { [bodyCopy, body] = await splitStream(sourceBody); } response.body = body; const bodyBytes = await collectBody(bodyCopy, { streamCollector: /* @__PURE__ */ __name(async (stream) => { return headStream(stream, MAX_BYTES_TO_INSPECT); }, "streamCollector") }); if (typeof bodyCopy?.destroy === "function") { bodyCopy.destroy(); } const bodyStringTail = config3.utf8Encoder(bodyBytes.subarray(bodyBytes.length - 16)); if (bodyBytes.length === 0 && THROW_IF_EMPTY_BODY[context2.commandName]) { const err = new Error("S3 aborted request"); err.name = "InternalError"; throw err; } if (bodyStringTail && bodyStringTail.endsWith("")) { response.statusCode = 400; } return result; }, "throw200ExceptionsMiddleware"); var collectBody = /* @__PURE__ */ __name((streamBody = new Uint8Array(), context2) => { if (streamBody instanceof Uint8Array) { return Promise.resolve(streamBody); } return context2.streamCollector(streamBody) || Promise.resolve(new Uint8Array()); }, "collectBody"); var throw200ExceptionsMiddlewareOptions = { relation: "after", toMiddleware: "deserializerMiddleware", tags: ["THROW_200_EXCEPTIONS", "S3"], name: "throw200ExceptionsMiddleware", override: true }; var getThrow200ExceptionsPlugin = /* @__PURE__ */ __name((config3) => ({ applyToStack: /* @__PURE__ */ __name((clientStack) => { clientStack.addRelativeTo(throw200ExceptionsMiddleware(config3), throw200ExceptionsMiddlewareOptions); }, "applyToStack") }), "getThrow200ExceptionsPlugin"); // ../../node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromInstructions.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/@smithy/middleware-endpoint/dist-es/service-customizations/s3.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var resolveParamsForS3 = /* @__PURE__ */ __name(async (endpointParams) => { const bucket = endpointParams?.Bucket || ""; if (typeof endpointParams.Bucket === "string") { endpointParams.Bucket = bucket.replace(/#/g, encodeURIComponent("#")).replace(/\?/g, encodeURIComponent("?")); } if (isArnBucketName(bucket)) { if (endpointParams.ForcePathStyle === true) { throw new Error("Path-style addressing cannot be used with ARN buckets"); } } else if (!isDnsCompatibleBucketName(bucket) || bucket.indexOf(".") !== -1 && !String(endpointParams.Endpoint).startsWith("http:") || bucket.toLowerCase() !== bucket || bucket.length < 3) { endpointParams.ForcePathStyle = true; } if (endpointParams.DisableMultiRegionAccessPoints) { endpointParams.disableMultiRegionAccessPoints = true; endpointParams.DisableMRAP = true; } return endpointParams; }, "resolveParamsForS3"); var DOMAIN_PATTERN = /^[a-z0-9][a-z0-9\.\-]{1,61}[a-z0-9]$/; var IP_ADDRESS_PATTERN = /(\d+\.){3}\d+/; var DOTS_PATTERN = /\.\./; var isDnsCompatibleBucketName = /* @__PURE__ */ __name((bucketName) => DOMAIN_PATTERN.test(bucketName) && !IP_ADDRESS_PATTERN.test(bucketName) && !DOTS_PATTERN.test(bucketName), "isDnsCompatibleBucketName"); var isArnBucketName = /* @__PURE__ */ __name((bucketName) => { const [arn, partition, service, , , bucket] = bucketName.split(":"); const isArn = arn === "arn" && bucketName.split(":").length >= 6; const isValidArn = Boolean(isArn && partition && service && bucket); if (isArn && !isValidArn) { throw new Error(`Invalid ARN: ${bucketName} was an invalid ARN.`); } return isValidArn; }, "isArnBucketName"); // ../../node_modules/@smithy/middleware-endpoint/dist-es/adaptors/createConfigValueProvider.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var createConfigValueProvider = /* @__PURE__ */ __name((configKey, canonicalEndpointParamKey, config3, isClientContextParam = false) => { const configProvider = /* @__PURE__ */ __name(async () => { let configValue; if (isClientContextParam) { const clientContextParams = config3.clientContextParams; const nestedValue = clientContextParams?.[configKey]; configValue = nestedValue ?? config3[configKey] ?? config3[canonicalEndpointParamKey]; } else { configValue = config3[configKey] ?? config3[canonicalEndpointParamKey]; } if (typeof configValue === "function") { return configValue(); } return configValue; }, "configProvider"); if (configKey === "credentialScope" || canonicalEndpointParamKey === "CredentialScope") { return async () => { const credentials = typeof config3.credentials === "function" ? await config3.credentials() : config3.credentials; const configValue = credentials?.credentialScope ?? credentials?.CredentialScope; return configValue; }; } if (configKey === "accountId" || canonicalEndpointParamKey === "AccountId") { return async () => { const credentials = typeof config3.credentials === "function" ? await config3.credentials() : config3.credentials; const configValue = credentials?.accountId ?? credentials?.AccountId; return configValue; }; } if (configKey === "endpoint" || canonicalEndpointParamKey === "endpoint") { return async () => { if (config3.isCustomEndpoint === false) { return void 0; } const endpoint = await configProvider(); if (endpoint && typeof endpoint === "object") { if ("url" in endpoint) { return endpoint.url.href; } if ("hostname" in endpoint) { const { protocol, hostname: hostname3, port, path: path3 } = endpoint; return `${protocol}//${hostname3}${port ? ":" + port : ""}${path3}`; } } return endpoint; }; } return configProvider; }, "createConfigValueProvider"); // ../../node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromConfig.browser.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var getEndpointFromConfig = /* @__PURE__ */ __name(async (serviceId) => void 0, "getEndpointFromConfig"); // ../../node_modules/@smithy/middleware-endpoint/dist-es/adaptors/toEndpointV1.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var toEndpointV1 = /* @__PURE__ */ __name((endpoint) => { if (typeof endpoint === "object") { if ("url" in endpoint) { const v1Endpoint = parseUrl(endpoint.url); if (endpoint.headers) { v1Endpoint.headers = {}; for (const [name, values] of Object.entries(endpoint.headers)) { v1Endpoint.headers[name.toLowerCase()] = values.join(", "); } } return v1Endpoint; } return endpoint; } return parseUrl(endpoint); }, "toEndpointV1"); // ../../node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromInstructions.js var getEndpointFromInstructions = /* @__PURE__ */ __name(async (commandInput, instructionsSupplier, clientConfig, context2) => { if (!clientConfig.isCustomEndpoint) { let endpointFromConfig; if (clientConfig.serviceConfiguredEndpoint) { endpointFromConfig = await clientConfig.serviceConfiguredEndpoint(); } else { endpointFromConfig = await getEndpointFromConfig(clientConfig.serviceId); } if (endpointFromConfig) { clientConfig.endpoint = () => Promise.resolve(toEndpointV1(endpointFromConfig)); clientConfig.isCustomEndpoint = true; } } const endpointParams = await resolveParams(commandInput, instructionsSupplier, clientConfig); if (typeof clientConfig.endpointProvider !== "function") { throw new Error("config.endpointProvider is not set."); } const endpoint = clientConfig.endpointProvider(endpointParams, context2); if (clientConfig.isCustomEndpoint && clientConfig.endpoint) { const customEndpoint = await clientConfig.endpoint(); if (customEndpoint?.headers) { endpoint.headers ??= {}; for (const [name, value] of Object.entries(customEndpoint.headers)) { endpoint.headers[name] = Array.isArray(value) ? value : [value]; } } } return endpoint; }, "getEndpointFromInstructions"); var resolveParams = /* @__PURE__ */ __name(async (commandInput, instructionsSupplier, clientConfig) => { const endpointParams = {}; const instructions = instructionsSupplier?.getEndpointParameterInstructions?.() || {}; for (const [name, instruction] of Object.entries(instructions)) { switch (instruction.type) { case "staticContextParams": endpointParams[name] = instruction.value; break; case "contextParams": endpointParams[name] = commandInput[instruction.name]; break; case "clientContextParams": case "builtInParams": endpointParams[name] = await createConfigValueProvider(instruction.name, name, clientConfig, instruction.type !== "builtInParams")(); break; case "operationContextParams": endpointParams[name] = instruction.get(commandInput); break; default: throw new Error("Unrecognized endpoint parameter instruction: " + JSON.stringify(instruction)); } } if (Object.keys(instructions).length === 0) { Object.assign(endpointParams, clientConfig); } if (String(clientConfig.serviceId).toLowerCase() === "s3") { await resolveParamsForS3(endpointParams); } return endpointParams; }, "resolveParams"); // ../../node_modules/@smithy/middleware-endpoint/dist-es/endpointMiddleware.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var endpointMiddleware = /* @__PURE__ */ __name(({ config: config3, instructions }) => { return (next, context2) => async (args) => { if (config3.isCustomEndpoint) { setFeature2(context2, "ENDPOINT_OVERRIDE", "N"); } const endpoint = await getEndpointFromInstructions(args.input, { getEndpointParameterInstructions() { return instructions; } }, { ...config3 }, context2); context2.endpointV2 = endpoint; context2.authSchemes = endpoint.properties?.authSchemes; const authScheme = context2.authSchemes?.[0]; if (authScheme) { context2["signing_region"] = authScheme.signingRegion; context2["signing_service"] = authScheme.signingName; const smithyContext = getSmithyContext(context2); const httpAuthOption = smithyContext?.selectedHttpAuthScheme?.httpAuthOption; if (httpAuthOption) { httpAuthOption.signingProperties = Object.assign(httpAuthOption.signingProperties || {}, { signing_region: authScheme.signingRegion, signingRegion: authScheme.signingRegion, signing_service: authScheme.signingName, signingName: authScheme.signingName, signingRegionSet: authScheme.signingRegionSet }, authScheme.properties); } } return next({ ...args }); }; }, "endpointMiddleware"); // ../../node_modules/@smithy/middleware-endpoint/dist-es/getEndpointPlugin.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/@smithy/middleware-serde/dist-es/serdePlugin.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var serializerMiddlewareOption = { name: "serializerMiddleware", step: "serialize", tags: ["SERIALIZER"], override: true }; // ../../node_modules/@smithy/middleware-endpoint/dist-es/getEndpointPlugin.js var endpointMiddlewareOptions = { step: "serialize", tags: ["ENDPOINT_PARAMETERS", "ENDPOINT_V2", "ENDPOINT"], name: "endpointV2Middleware", override: true, relation: "before", toMiddleware: serializerMiddlewareOption.name }; var getEndpointPlugin = /* @__PURE__ */ __name((config3, instructions) => ({ applyToStack: /* @__PURE__ */ __name((clientStack) => { clientStack.addRelativeTo(endpointMiddleware({ config: config3, instructions }), endpointMiddlewareOptions); }, "applyToStack") }), "getEndpointPlugin"); // ../../node_modules/@aws-sdk/signature-v4-multi-region/dist-es/SignatureV4MultiRegion.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/@aws-sdk/signature-v4-multi-region/dist-es/signature-v4-crt-container.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var signatureV4CrtContainer = { CrtSignerV4: null }; // ../../node_modules/@aws-sdk/signature-v4-multi-region/dist-es/SignatureV4MultiRegion.js var SignatureV4MultiRegion = class { static { __name(this, "SignatureV4MultiRegion"); } sigv4aSigner; sigv4Signer; signerOptions; static sigv4aDependency() { if (typeof signatureV4CrtContainer.CrtSignerV4 === "function") { return "crt"; } else if (typeof signatureV4aContainer.SignatureV4a === "function") { return "js"; } return "none"; } constructor(options) { this.sigv4Signer = new SignatureV4S3Express(options); this.signerOptions = options; } async sign(requestToSign, options = {}) { if (options.signingRegion === "*") { return this.getSigv4aSigner().sign(requestToSign, options); } return this.sigv4Signer.sign(requestToSign, options); } async signWithCredentials(requestToSign, credentials, options = {}) { if (options.signingRegion === "*") { const signer = this.getSigv4aSigner(); const CrtSignerV4 = signatureV4CrtContainer.CrtSignerV4; if (CrtSignerV4 && signer instanceof CrtSignerV4) { return signer.signWithCredentials(requestToSign, credentials, options); } else { throw new Error(`signWithCredentials with signingRegion '*' is only supported when using the CRT dependency @aws-sdk/signature-v4-crt. Please check whether you have installed the "@aws-sdk/signature-v4-crt" package explicitly. You must also register the package by calling [require("@aws-sdk/signature-v4-crt");] or an ESM equivalent such as [import "@aws-sdk/signature-v4-crt";]. For more information please go to https://github.com/aws/aws-sdk-js-v3#functionality-requiring-aws-common-runtime-crt`); } } return this.sigv4Signer.signWithCredentials(requestToSign, credentials, options); } async presign(originalRequest, options = {}) { if (options.signingRegion === "*") { const signer = this.getSigv4aSigner(); const CrtSignerV4 = signatureV4CrtContainer.CrtSignerV4; if (CrtSignerV4 && signer instanceof CrtSignerV4) { return signer.presign(originalRequest, options); } else { throw new Error(`presign with signingRegion '*' is only supported when using the CRT dependency @aws-sdk/signature-v4-crt. Please check whether you have installed the "@aws-sdk/signature-v4-crt" package explicitly. You must also register the package by calling [require("@aws-sdk/signature-v4-crt");] or an ESM equivalent such as [import "@aws-sdk/signature-v4-crt";]. For more information please go to https://github.com/aws/aws-sdk-js-v3#functionality-requiring-aws-common-runtime-crt`); } } return this.sigv4Signer.presign(originalRequest, options); } async presignWithCredentials(originalRequest, credentials, options = {}) { if (options.signingRegion === "*") { throw new Error("Method presignWithCredentials is not supported for [signingRegion=*]."); } return this.sigv4Signer.presignWithCredentials(originalRequest, credentials, options); } getSigv4aSigner() { if (!this.sigv4aSigner) { const CrtSignerV4 = signatureV4CrtContainer.CrtSignerV4; const JsSigV4aSigner = signatureV4aContainer.SignatureV4a; if (this.signerOptions.runtime === "node") { if (!CrtSignerV4 && !JsSigV4aSigner) { throw new Error("Neither CRT nor JS SigV4a implementation is available. Please load either @aws-sdk/signature-v4-crt or @aws-sdk/signature-v4a. For more information please go to https://github.com/aws/aws-sdk-js-v3#functionality-requiring-aws-common-runtime-crt"); } if (CrtSignerV4 && typeof CrtSignerV4 === "function") { this.sigv4aSigner = new CrtSignerV4({ ...this.signerOptions, signingAlgorithm: 1 }); } else if (JsSigV4aSigner && typeof JsSigV4aSigner === "function") { this.sigv4aSigner = new JsSigV4aSigner({ ...this.signerOptions }); } else { throw new Error("Available SigV4a implementation is not a valid constructor. Please ensure you've properly imported @aws-sdk/signature-v4-crt or @aws-sdk/signature-v4a.For more information please go to https://github.com/aws/aws-sdk-js-v3#functionality-requiring-aws-common-runtime-crt"); } } else { if (!JsSigV4aSigner || typeof JsSigV4aSigner !== "function") { throw new Error("JS SigV4a implementation is not available or not a valid constructor. Please check whether you have installed the @aws-sdk/signature-v4a package explicitly. The CRT implementation is not available for browsers. You must also register the package by calling [require('@aws-sdk/signature-v4a');] or an ESM equivalent such as [import '@aws-sdk/signature-v4a';]. For more information please go to https://github.com/aws/aws-sdk-js-v3#using-javascript-non-crt-implementation-of-sigv4a"); } this.sigv4aSigner = new JsSigV4aSigner({ ...this.signerOptions }); } } return this.sigv4aSigner; } }; // ../../node_modules/@aws-sdk/client-s3/dist-es/endpoint/EndpointParameters.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var commonParams = { ForcePathStyle: { type: "clientContextParams", name: "forcePathStyle" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, DisableMultiRegionAccessPoints: { type: "clientContextParams", name: "disableMultiregionAccessPoints" }, Accelerate: { type: "clientContextParams", name: "useAccelerateEndpoint" }, DisableS3ExpressSessionAuth: { type: "clientContextParams", name: "disableS3ExpressSessionAuth" }, UseGlobalEndpoint: { type: "builtInParams", name: "useGlobalEndpoint" }, UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" }, Endpoint: { type: "builtInParams", name: "endpoint" }, Region: { type: "builtInParams", name: "region" }, UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" } }; // ../../node_modules/@aws-sdk/client-s3/dist-es/schemas/schemas_0.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/@aws-sdk/client-s3/dist-es/models/errors.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/@aws-sdk/client-s3/dist-es/models/S3ServiceException.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var S3ServiceException = class _S3ServiceException extends ServiceException { static { __name(this, "S3ServiceException"); } constructor(options) { super(options); Object.setPrototypeOf(this, _S3ServiceException.prototype); } }; // ../../node_modules/@aws-sdk/client-s3/dist-es/models/errors.js var NoSuchUpload = class _NoSuchUpload extends S3ServiceException { static { __name(this, "NoSuchUpload"); } name = "NoSuchUpload"; $fault = "client"; constructor(opts) { super({ name: "NoSuchUpload", $fault: "client", ...opts }); Object.setPrototypeOf(this, _NoSuchUpload.prototype); } }; var AccessDenied = class _AccessDenied extends S3ServiceException { static { __name(this, "AccessDenied"); } name = "AccessDenied"; $fault = "client"; constructor(opts) { super({ name: "AccessDenied", $fault: "client", ...opts }); Object.setPrototypeOf(this, _AccessDenied.prototype); } }; var ObjectNotInActiveTierError = class _ObjectNotInActiveTierError extends S3ServiceException { static { __name(this, "ObjectNotInActiveTierError"); } name = "ObjectNotInActiveTierError"; $fault = "client"; constructor(opts) { super({ name: "ObjectNotInActiveTierError", $fault: "client", ...opts }); Object.setPrototypeOf(this, _ObjectNotInActiveTierError.prototype); } }; var BucketAlreadyExists = class _BucketAlreadyExists extends S3ServiceException { static { __name(this, "BucketAlreadyExists"); } name = "BucketAlreadyExists"; $fault = "client"; constructor(opts) { super({ name: "BucketAlreadyExists", $fault: "client", ...opts }); Object.setPrototypeOf(this, _BucketAlreadyExists.prototype); } }; var BucketAlreadyOwnedByYou = class _BucketAlreadyOwnedByYou extends S3ServiceException { static { __name(this, "BucketAlreadyOwnedByYou"); } name = "BucketAlreadyOwnedByYou"; $fault = "client"; constructor(opts) { super({ name: "BucketAlreadyOwnedByYou", $fault: "client", ...opts }); Object.setPrototypeOf(this, _BucketAlreadyOwnedByYou.prototype); } }; var NoSuchBucket = class _NoSuchBucket extends S3ServiceException { static { __name(this, "NoSuchBucket"); } name = "NoSuchBucket"; $fault = "client"; constructor(opts) { super({ name: "NoSuchBucket", $fault: "client", ...opts }); Object.setPrototypeOf(this, _NoSuchBucket.prototype); } }; var InvalidObjectState = class _InvalidObjectState extends S3ServiceException { static { __name(this, "InvalidObjectState"); } name = "InvalidObjectState"; $fault = "client"; StorageClass; AccessTier; constructor(opts) { super({ name: "InvalidObjectState", $fault: "client", ...opts }); Object.setPrototypeOf(this, _InvalidObjectState.prototype); this.StorageClass = opts.StorageClass; this.AccessTier = opts.AccessTier; } }; var NoSuchKey = class _NoSuchKey extends S3ServiceException { static { __name(this, "NoSuchKey"); } name = "NoSuchKey"; $fault = "client"; constructor(opts) { super({ name: "NoSuchKey", $fault: "client", ...opts }); Object.setPrototypeOf(this, _NoSuchKey.prototype); } }; var NotFound = class _NotFound extends S3ServiceException { static { __name(this, "NotFound"); } name = "NotFound"; $fault = "client"; constructor(opts) { super({ name: "NotFound", $fault: "client", ...opts }); Object.setPrototypeOf(this, _NotFound.prototype); } }; var EncryptionTypeMismatch = class _EncryptionTypeMismatch extends S3ServiceException { static { __name(this, "EncryptionTypeMismatch"); } name = "EncryptionTypeMismatch"; $fault = "client"; constructor(opts) { super({ name: "EncryptionTypeMismatch", $fault: "client", ...opts }); Object.setPrototypeOf(this, _EncryptionTypeMismatch.prototype); } }; var InvalidRequest = class _InvalidRequest extends S3ServiceException { static { __name(this, "InvalidRequest"); } name = "InvalidRequest"; $fault = "client"; constructor(opts) { super({ name: "InvalidRequest", $fault: "client", ...opts }); Object.setPrototypeOf(this, _InvalidRequest.prototype); } }; var InvalidWriteOffset = class _InvalidWriteOffset extends S3ServiceException { static { __name(this, "InvalidWriteOffset"); } name = "InvalidWriteOffset"; $fault = "client"; constructor(opts) { super({ name: "InvalidWriteOffset", $fault: "client", ...opts }); Object.setPrototypeOf(this, _InvalidWriteOffset.prototype); } }; var TooManyParts = class _TooManyParts extends S3ServiceException { static { __name(this, "TooManyParts"); } name = "TooManyParts"; $fault = "client"; constructor(opts) { super({ name: "TooManyParts", $fault: "client", ...opts }); Object.setPrototypeOf(this, _TooManyParts.prototype); } }; var IdempotencyParameterMismatch = class _IdempotencyParameterMismatch extends S3ServiceException { static { __name(this, "IdempotencyParameterMismatch"); } name = "IdempotencyParameterMismatch"; $fault = "client"; constructor(opts) { super({ name: "IdempotencyParameterMismatch", $fault: "client", ...opts }); Object.setPrototypeOf(this, _IdempotencyParameterMismatch.prototype); } }; var ObjectAlreadyInActiveTierError = class _ObjectAlreadyInActiveTierError extends S3ServiceException { static { __name(this, "ObjectAlreadyInActiveTierError"); } name = "ObjectAlreadyInActiveTierError"; $fault = "client"; constructor(opts) { super({ name: "ObjectAlreadyInActiveTierError", $fault: "client", ...opts }); Object.setPrototypeOf(this, _ObjectAlreadyInActiveTierError.prototype); } }; // ../../node_modules/@aws-sdk/client-s3/dist-es/schemas/schemas_0.js var _A = "Account"; var _AAO = "AnalyticsAndOperator"; var _AC = "AccelerateConfiguration"; var _ACL = "AccessControlList"; var _ACL_ = "ACL"; var _ACLn = "AnalyticsConfigurationList"; var _ACP = "AccessControlPolicy"; var _ACT = "AccessControlTranslation"; var _ACn = "AnalyticsConfiguration"; var _AD = "AccessDenied"; var _ADb = "AbortDate"; var _AED = "AnalyticsExportDestination"; var _AF = "AnalyticsFilter"; var _AH = "AllowedHeaders"; var _AHl = "AllowedHeader"; var _AI = "AccountId"; var _AIMU = "AbortIncompleteMultipartUpload"; var _AKI = "AccessKeyId"; var _AM = "AllowedMethods"; var _AMU = "AbortMultipartUpload"; var _AMUO = "AbortMultipartUploadOutput"; var _AMUR = "AbortMultipartUploadRequest"; var _AMl = "AllowedMethod"; var _AO = "AllowedOrigins"; var _AOl = "AllowedOrigin"; var _APA = "AccessPointAlias"; var _APAc = "AccessPointArn"; var _AQRD = "AllowQuotedRecordDelimiter"; var _AR = "AcceptRanges"; var _ARI = "AbortRuleId"; var _AS = "AbacStatus"; var _ASBD = "AnalyticsS3BucketDestination"; var _ASSEBD = "ApplyServerSideEncryptionByDefault"; var _ASr = "ArchiveStatus"; var _AT = "AccessTier"; var _An = "And"; var _B = "Bucket"; var _BA = "BucketArn"; var _BAE = "BucketAlreadyExists"; var _BAI = "BucketAccountId"; var _BAOBY = "BucketAlreadyOwnedByYou"; var _BET = "BlockedEncryptionTypes"; var _BGR = "BypassGovernanceRetention"; var _BI = "BucketInfo"; var _BKE = "BucketKeyEnabled"; var _BLC = "BucketLifecycleConfiguration"; var _BLN = "BucketLocationName"; var _BLS = "BucketLoggingStatus"; var _BLT = "BucketLocationType"; var _BN = "BucketNamespace"; var _BNu = "BucketName"; var _BP = "BytesProcessed"; var _BPA = "BlockPublicAcls"; var _BPP = "BlockPublicPolicy"; var _BR = "BucketRegion"; var _BRy = "BytesReturned"; var _BS = "BytesScanned"; var _Bo = "Body"; var _Bu = "Buckets"; var _C = "Checksum"; var _CA = "ChecksumAlgorithm"; var _CACL = "CannedACL"; var _CB = "CreateBucket"; var _CBC = "CreateBucketConfiguration"; var _CBMC = "CreateBucketMetadataConfiguration"; var _CBMCR = "CreateBucketMetadataConfigurationRequest"; var _CBMTC = "CreateBucketMetadataTableConfiguration"; var _CBMTCR = "CreateBucketMetadataTableConfigurationRequest"; var _CBO = "CreateBucketOutput"; var _CBR = "CreateBucketRequest"; var _CC = "CacheControl"; var _CCRC = "ChecksumCRC32"; var _CCRCC = "ChecksumCRC32C"; var _CCRCNVME = "ChecksumCRC64NVME"; var _CC_ = "Cache-Control"; var _CD = "CreationDate"; var _CD_ = "Content-Disposition"; var _CDo = "ContentDisposition"; var _CE = "ContinuationEvent"; var _CE_ = "Content-Encoding"; var _CEo = "ContentEncoding"; var _CF = "CloudFunction"; var _CFC = "CloudFunctionConfiguration"; var _CL = "ContentLanguage"; var _CL_ = "Content-Language"; var _CL__ = "Content-Length"; var _CLo = "ContentLength"; var _CM = "Content-MD5"; var _CMD = "ContentMD5"; var _CMU = "CompletedMultipartUpload"; var _CMUO = "CompleteMultipartUploadOutput"; var _CMUOr = "CreateMultipartUploadOutput"; var _CMUR = "CompleteMultipartUploadResult"; var _CMURo = "CompleteMultipartUploadRequest"; var _CMURr = "CreateMultipartUploadRequest"; var _CMUo = "CompleteMultipartUpload"; var _CMUr = "CreateMultipartUpload"; var _CMh = "ChecksumMode"; var _CO = "CopyObject"; var _COO = "CopyObjectOutput"; var _COR = "CopyObjectResult"; var _CORSC = "CORSConfiguration"; var _CORSR = "CORSRules"; var _CORSRu = "CORSRule"; var _CORo = "CopyObjectRequest"; var _CP = "CommonPrefix"; var _CPL = "CommonPrefixList"; var _CPLo = "CompletedPartList"; var _CPR = "CopyPartResult"; var _CPo = "CompletedPart"; var _CPom = "CommonPrefixes"; var _CR = "ContentRange"; var _CRSBA = "ConfirmRemoveSelfBucketAccess"; var _CR_ = "Content-Range"; var _CS = "CopySource"; var _CSHA = "ChecksumSHA1"; var _CSHAh = "ChecksumSHA256"; var _CSIM = "CopySourceIfMatch"; var _CSIMS = "CopySourceIfModifiedSince"; var _CSINM = "CopySourceIfNoneMatch"; var _CSIUS = "CopySourceIfUnmodifiedSince"; var _CSO = "CreateSessionOutput"; var _CSR = "CreateSessionResult"; var _CSRo = "CopySourceRange"; var _CSRr = "CreateSessionRequest"; var _CSSSECA = "CopySourceSSECustomerAlgorithm"; var _CSSSECK = "CopySourceSSECustomerKey"; var _CSSSECKMD = "CopySourceSSECustomerKeyMD5"; var _CSV = "CSV"; var _CSVI = "CopySourceVersionId"; var _CSVIn = "CSVInput"; var _CSVO = "CSVOutput"; var _CSo = "ConfigurationState"; var _CSr = "CreateSession"; var _CT = "ChecksumType"; var _CT_ = "Content-Type"; var _CTl = "ClientToken"; var _CTo = "ContentType"; var _CTom = "CompressionType"; var _CTon = "ContinuationToken"; var _Co = "Condition"; var _Cod = "Code"; var _Com = "Comments"; var _Con = "Contents"; var _Cont = "Cont"; var _Cr = "Credentials"; var _D = "Days"; var _DAI = "DaysAfterInitiation"; var _DB = "DeleteBucket"; var _DBAC = "DeleteBucketAnalyticsConfiguration"; var _DBACR = "DeleteBucketAnalyticsConfigurationRequest"; var _DBC = "DeleteBucketCors"; var _DBCR = "DeleteBucketCorsRequest"; var _DBE = "DeleteBucketEncryption"; var _DBER = "DeleteBucketEncryptionRequest"; var _DBIC = "DeleteBucketInventoryConfiguration"; var _DBICR = "DeleteBucketInventoryConfigurationRequest"; var _DBITC = "DeleteBucketIntelligentTieringConfiguration"; var _DBITCR = "DeleteBucketIntelligentTieringConfigurationRequest"; var _DBL = "DeleteBucketLifecycle"; var _DBLR = "DeleteBucketLifecycleRequest"; var _DBMC = "DeleteBucketMetadataConfiguration"; var _DBMCR = "DeleteBucketMetadataConfigurationRequest"; var _DBMCRe = "DeleteBucketMetricsConfigurationRequest"; var _DBMCe = "DeleteBucketMetricsConfiguration"; var _DBMTC = "DeleteBucketMetadataTableConfiguration"; var _DBMTCR = "DeleteBucketMetadataTableConfigurationRequest"; var _DBOC = "DeleteBucketOwnershipControls"; var _DBOCR = "DeleteBucketOwnershipControlsRequest"; var _DBP = "DeleteBucketPolicy"; var _DBPR = "DeleteBucketPolicyRequest"; var _DBR = "DeleteBucketRequest"; var _DBRR = "DeleteBucketReplicationRequest"; var _DBRe = "DeleteBucketReplication"; var _DBT = "DeleteBucketTagging"; var _DBTR = "DeleteBucketTaggingRequest"; var _DBW = "DeleteBucketWebsite"; var _DBWR = "DeleteBucketWebsiteRequest"; var _DE = "DataExport"; var _DIM = "DestinationIfMatch"; var _DIMS = "DestinationIfModifiedSince"; var _DINM = "DestinationIfNoneMatch"; var _DIUS = "DestinationIfUnmodifiedSince"; var _DM = "DeleteMarker"; var _DME = "DeleteMarkerEntry"; var _DMR = "DeleteMarkerReplication"; var _DMVI = "DeleteMarkerVersionId"; var _DMe = "DeleteMarkers"; var _DN = "DisplayName"; var _DO = "DeletedObject"; var _DOO = "DeleteObjectOutput"; var _DOOe = "DeleteObjectsOutput"; var _DOR = "DeleteObjectRequest"; var _DORe = "DeleteObjectsRequest"; var _DOT = "DeleteObjectTagging"; var _DOTO = "DeleteObjectTaggingOutput"; var _DOTR = "DeleteObjectTaggingRequest"; var _DOe = "DeletedObjects"; var _DOel = "DeleteObject"; var _DOele = "DeleteObjects"; var _DPAB = "DeletePublicAccessBlock"; var _DPABR = "DeletePublicAccessBlockRequest"; var _DR = "DataRedundancy"; var _DRe = "DefaultRetention"; var _DRel = "DeleteResult"; var _DRes = "DestinationResult"; var _Da = "Date"; var _De = "Delete"; var _Del = "Deleted"; var _Deli = "Delimiter"; var _Des = "Destination"; var _Desc = "Description"; var _Det = "Details"; var _E = "Expiration"; var _EA = "EmailAddress"; var _EBC = "EventBridgeConfiguration"; var _EBO = "ExpectedBucketOwner"; var _EC = "EncryptionConfiguration"; var _ECr = "ErrorCode"; var _ED = "ErrorDetails"; var _EDr = "ErrorDocument"; var _EE = "EndEvent"; var _EH = "ExposeHeaders"; var _EHx = "ExposeHeader"; var _EM = "ErrorMessage"; var _EODM = "ExpiredObjectDeleteMarker"; var _EOR = "ExistingObjectReplication"; var _ES = "ExpiresString"; var _ESBO = "ExpectedSourceBucketOwner"; var _ET = "EncryptionType"; var _ETL = "EncryptionTypeList"; var _ETM = "EncryptionTypeMismatch"; var _ETa = "ETag"; var _ETn = "EncodingType"; var _ETv = "EventThreshold"; var _ETx = "ExpressionType"; var _En = "Encryption"; var _Ena = "Enabled"; var _End = "End"; var _Er = "Errors"; var _Err = "Error"; var _Ev = "Events"; var _Eve = "Event"; var _Ex = "Expires"; var _Exp = "Expression"; var _F = "Filter"; var _FD = "FieldDelimiter"; var _FHI = "FileHeaderInfo"; var _FO = "FetchOwner"; var _FR = "FilterRule"; var _FRL = "FilterRuleList"; var _FRi = "FilterRules"; var _Fi = "Field"; var _Fo = "Format"; var _Fr = "Frequency"; var _G = "Grants"; var _GBA = "GetBucketAbac"; var _GBAC = "GetBucketAccelerateConfiguration"; var _GBACO = "GetBucketAccelerateConfigurationOutput"; var _GBACOe = "GetBucketAnalyticsConfigurationOutput"; var _GBACR = "GetBucketAccelerateConfigurationRequest"; var _GBACRe = "GetBucketAnalyticsConfigurationRequest"; var _GBACe = "GetBucketAnalyticsConfiguration"; var _GBAO = "GetBucketAbacOutput"; var _GBAOe = "GetBucketAclOutput"; var _GBAR = "GetBucketAbacRequest"; var _GBARe = "GetBucketAclRequest"; var _GBAe = "GetBucketAcl"; var _GBC = "GetBucketCors"; var _GBCO = "GetBucketCorsOutput"; var _GBCR = "GetBucketCorsRequest"; var _GBE = "GetBucketEncryption"; var _GBEO = "GetBucketEncryptionOutput"; var _GBER = "GetBucketEncryptionRequest"; var _GBIC = "GetBucketInventoryConfiguration"; var _GBICO = "GetBucketInventoryConfigurationOutput"; var _GBICR = "GetBucketInventoryConfigurationRequest"; var _GBITC = "GetBucketIntelligentTieringConfiguration"; var _GBITCO = "GetBucketIntelligentTieringConfigurationOutput"; var _GBITCR = "GetBucketIntelligentTieringConfigurationRequest"; var _GBL = "GetBucketLocation"; var _GBLC = "GetBucketLifecycleConfiguration"; var _GBLCO = "GetBucketLifecycleConfigurationOutput"; var _GBLCR = "GetBucketLifecycleConfigurationRequest"; var _GBLO = "GetBucketLocationOutput"; var _GBLOe = "GetBucketLoggingOutput"; var _GBLR = "GetBucketLocationRequest"; var _GBLRe = "GetBucketLoggingRequest"; var _GBLe = "GetBucketLogging"; var _GBMC = "GetBucketMetadataConfiguration"; var _GBMCO = "GetBucketMetadataConfigurationOutput"; var _GBMCOe = "GetBucketMetricsConfigurationOutput"; var _GBMCR = "GetBucketMetadataConfigurationResult"; var _GBMCRe = "GetBucketMetadataConfigurationRequest"; var _GBMCRet = "GetBucketMetricsConfigurationRequest"; var _GBMCe = "GetBucketMetricsConfiguration"; var _GBMTC = "GetBucketMetadataTableConfiguration"; var _GBMTCO = "GetBucketMetadataTableConfigurationOutput"; var _GBMTCR = "GetBucketMetadataTableConfigurationResult"; var _GBMTCRe = "GetBucketMetadataTableConfigurationRequest"; var _GBNC = "GetBucketNotificationConfiguration"; var _GBNCR = "GetBucketNotificationConfigurationRequest"; var _GBOC = "GetBucketOwnershipControls"; var _GBOCO = "GetBucketOwnershipControlsOutput"; var _GBOCR = "GetBucketOwnershipControlsRequest"; var _GBP = "GetBucketPolicy"; var _GBPO = "GetBucketPolicyOutput"; var _GBPR = "GetBucketPolicyRequest"; var _GBPS = "GetBucketPolicyStatus"; var _GBPSO = "GetBucketPolicyStatusOutput"; var _GBPSR = "GetBucketPolicyStatusRequest"; var _GBR = "GetBucketReplication"; var _GBRO = "GetBucketReplicationOutput"; var _GBRP = "GetBucketRequestPayment"; var _GBRPO = "GetBucketRequestPaymentOutput"; var _GBRPR = "GetBucketRequestPaymentRequest"; var _GBRR = "GetBucketReplicationRequest"; var _GBT = "GetBucketTagging"; var _GBTO = "GetBucketTaggingOutput"; var _GBTR = "GetBucketTaggingRequest"; var _GBV = "GetBucketVersioning"; var _GBVO = "GetBucketVersioningOutput"; var _GBVR = "GetBucketVersioningRequest"; var _GBW = "GetBucketWebsite"; var _GBWO = "GetBucketWebsiteOutput"; var _GBWR = "GetBucketWebsiteRequest"; var _GFC = "GrantFullControl"; var _GJP = "GlacierJobParameters"; var _GO = "GetObject"; var _GOA = "GetObjectAcl"; var _GOAO = "GetObjectAclOutput"; var _GOAOe = "GetObjectAttributesOutput"; var _GOAP = "GetObjectAttributesParts"; var _GOAR = "GetObjectAclRequest"; var _GOARe = "GetObjectAttributesResponse"; var _GOARet = "GetObjectAttributesRequest"; var _GOAe = "GetObjectAttributes"; var _GOLC = "GetObjectLockConfiguration"; var _GOLCO = "GetObjectLockConfigurationOutput"; var _GOLCR = "GetObjectLockConfigurationRequest"; var _GOLH = "GetObjectLegalHold"; var _GOLHO = "GetObjectLegalHoldOutput"; var _GOLHR = "GetObjectLegalHoldRequest"; var _GOO = "GetObjectOutput"; var _GOR = "GetObjectRequest"; var _GORO = "GetObjectRetentionOutput"; var _GORR = "GetObjectRetentionRequest"; var _GORe = "GetObjectRetention"; var _GOT = "GetObjectTagging"; var _GOTO = "GetObjectTaggingOutput"; var _GOTOe = "GetObjectTorrentOutput"; var _GOTR = "GetObjectTaggingRequest"; var _GOTRe = "GetObjectTorrentRequest"; var _GOTe = "GetObjectTorrent"; var _GPAB = "GetPublicAccessBlock"; var _GPABO = "GetPublicAccessBlockOutput"; var _GPABR = "GetPublicAccessBlockRequest"; var _GR = "GrantRead"; var _GRACP = "GrantReadACP"; var _GW = "GrantWrite"; var _GWACP = "GrantWriteACP"; var _Gr = "Grant"; var _Gra = "Grantee"; var _HB = "HeadBucket"; var _HBO = "HeadBucketOutput"; var _HBR = "HeadBucketRequest"; var _HECRE = "HttpErrorCodeReturnedEquals"; var _HN = "HostName"; var _HO = "HeadObject"; var _HOO = "HeadObjectOutput"; var _HOR = "HeadObjectRequest"; var _HRC = "HttpRedirectCode"; var _I = "Id"; var _IC = "InventoryConfiguration"; var _ICL = "InventoryConfigurationList"; var _ID = "ID"; var _IDn = "IndexDocument"; var _IDnv = "InventoryDestination"; var _IE = "IsEnabled"; var _IEn = "InventoryEncryption"; var _IF = "InventoryFilter"; var _IL = "IsLatest"; var _IM = "IfMatch"; var _IMIT = "IfMatchInitiatedTime"; var _IMLMT = "IfMatchLastModifiedTime"; var _IMS = "IfMatchSize"; var _IMS_ = "If-Modified-Since"; var _IMSf = "IfModifiedSince"; var _IMUR = "InitiateMultipartUploadResult"; var _IM_ = "If-Match"; var _INM = "IfNoneMatch"; var _INM_ = "If-None-Match"; var _IOF = "InventoryOptionalFields"; var _IOS = "InvalidObjectState"; var _IOV = "IncludedObjectVersions"; var _IP = "IsPublic"; var _IPA = "IgnorePublicAcls"; var _IPM = "IdempotencyParameterMismatch"; var _IR = "InvalidRequest"; var _IRIP = "IsRestoreInProgress"; var _IS = "InputSerialization"; var _ISBD = "InventoryS3BucketDestination"; var _ISn = "InventorySchedule"; var _IT = "IsTruncated"; var _ITAO = "IntelligentTieringAndOperator"; var _ITC = "IntelligentTieringConfiguration"; var _ITCL = "IntelligentTieringConfigurationList"; var _ITCR = "InventoryTableConfigurationResult"; var _ITCU = "InventoryTableConfigurationUpdates"; var _ITCn = "InventoryTableConfiguration"; var _ITF = "IntelligentTieringFilter"; var _IUS = "IfUnmodifiedSince"; var _IUS_ = "If-Unmodified-Since"; var _IWO = "InvalidWriteOffset"; var _In = "Initiator"; var _Ini = "Initiated"; var _JSON = "JSON"; var _JSONI = "JSONInput"; var _JSONO = "JSONOutput"; var _JTC = "JournalTableConfiguration"; var _JTCR = "JournalTableConfigurationResult"; var _JTCU = "JournalTableConfigurationUpdates"; var _K = "Key"; var _KC = "KeyCount"; var _KI = "KeyId"; var _KKA = "KmsKeyArn"; var _KM = "KeyMarker"; var _KMSC = "KMSContext"; var _KMSKA = "KMSKeyArn"; var _KMSKI = "KMSKeyId"; var _KMSMKID = "KMSMasterKeyID"; var _KPE = "KeyPrefixEquals"; var _L = "Location"; var _LAMBR = "ListAllMyBucketsResult"; var _LAMDBR = "ListAllMyDirectoryBucketsResult"; var _LB = "ListBuckets"; var _LBAC = "ListBucketAnalyticsConfigurations"; var _LBACO = "ListBucketAnalyticsConfigurationsOutput"; var _LBACR = "ListBucketAnalyticsConfigurationResult"; var _LBACRi = "ListBucketAnalyticsConfigurationsRequest"; var _LBIC = "ListBucketInventoryConfigurations"; var _LBICO = "ListBucketInventoryConfigurationsOutput"; var _LBICR = "ListBucketInventoryConfigurationsRequest"; var _LBITC = "ListBucketIntelligentTieringConfigurations"; var _LBITCO = "ListBucketIntelligentTieringConfigurationsOutput"; var _LBITCR = "ListBucketIntelligentTieringConfigurationsRequest"; var _LBMC = "ListBucketMetricsConfigurations"; var _LBMCO = "ListBucketMetricsConfigurationsOutput"; var _LBMCR = "ListBucketMetricsConfigurationsRequest"; var _LBO = "ListBucketsOutput"; var _LBR = "ListBucketsRequest"; var _LBRi = "ListBucketResult"; var _LC = "LocationConstraint"; var _LCi = "LifecycleConfiguration"; var _LDB = "ListDirectoryBuckets"; var _LDBO = "ListDirectoryBucketsOutput"; var _LDBR = "ListDirectoryBucketsRequest"; var _LE = "LoggingEnabled"; var _LEi = "LifecycleExpiration"; var _LFA = "LambdaFunctionArn"; var _LFC = "LambdaFunctionConfiguration"; var _LFCL = "LambdaFunctionConfigurationList"; var _LFCa = "LambdaFunctionConfigurations"; var _LH = "LegalHold"; var _LI = "LocationInfo"; var _LICR = "ListInventoryConfigurationsResult"; var _LM = "LastModified"; var _LMCR = "ListMetricsConfigurationsResult"; var _LMT = "LastModifiedTime"; var _LMU = "ListMultipartUploads"; var _LMUO = "ListMultipartUploadsOutput"; var _LMUR = "ListMultipartUploadsResult"; var _LMURi = "ListMultipartUploadsRequest"; var _LM_ = "Last-Modified"; var _LO = "ListObjects"; var _LOO = "ListObjectsOutput"; var _LOR = "ListObjectsRequest"; var _LOV = "ListObjectsV2"; var _LOVO = "ListObjectsV2Output"; var _LOVOi = "ListObjectVersionsOutput"; var _LOVR = "ListObjectsV2Request"; var _LOVRi = "ListObjectVersionsRequest"; var _LOVi = "ListObjectVersions"; var _LP = "ListParts"; var _LPO = "ListPartsOutput"; var _LPR = "ListPartsResult"; var _LPRi = "ListPartsRequest"; var _LR = "LifecycleRule"; var _LRAO = "LifecycleRuleAndOperator"; var _LRF = "LifecycleRuleFilter"; var _LRi = "LifecycleRules"; var _LVR = "ListVersionsResult"; var _M = "Metadata"; var _MAO = "MetricsAndOperator"; var _MAS = "MaxAgeSeconds"; var _MB = "MaxBuckets"; var _MC = "MetadataConfiguration"; var _MCL = "MetricsConfigurationList"; var _MCR = "MetadataConfigurationResult"; var _MCe = "MetricsConfiguration"; var _MD = "MetadataDirective"; var _MDB = "MaxDirectoryBuckets"; var _MDf = "MfaDelete"; var _ME = "MetadataEntry"; var _MF = "MetricsFilter"; var _MFA = "MFA"; var _MFAD = "MFADelete"; var _MK = "MaxKeys"; var _MM = "MissingMeta"; var _MOS = "MpuObjectSize"; var _MP = "MaxParts"; var _MTC = "MetadataTableConfiguration"; var _MTCR = "MetadataTableConfigurationResult"; var _MTEC = "MetadataTableEncryptionConfiguration"; var _MU = "MultipartUpload"; var _MUL = "MultipartUploadList"; var _MUa = "MaxUploads"; var _Ma = "Marker"; var _Me = "Metrics"; var _Mes = "Message"; var _Mi = "Minutes"; var _Mo = "Mode"; var _N = "Name"; var _NC = "NotificationConfiguration"; var _NCF = "NotificationConfigurationFilter"; var _NCT = "NextContinuationToken"; var _ND = "NoncurrentDays"; var _NEKKAS = "NonEmptyKmsKeyArnString"; var _NF = "NotFound"; var _NKM = "NextKeyMarker"; var _NM = "NextMarker"; var _NNV = "NewerNoncurrentVersions"; var _NPNM = "NextPartNumberMarker"; var _NSB = "NoSuchBucket"; var _NSK = "NoSuchKey"; var _NSU = "NoSuchUpload"; var _NUIM = "NextUploadIdMarker"; var _NVE = "NoncurrentVersionExpiration"; var _NVIM = "NextVersionIdMarker"; var _NVT = "NoncurrentVersionTransitions"; var _NVTL = "NoncurrentVersionTransitionList"; var _NVTo = "NoncurrentVersionTransition"; var _O = "Owner"; var _OA = "ObjectAttributes"; var _OAIATE = "ObjectAlreadyInActiveTierError"; var _OC = "OwnershipControls"; var _OCR = "OwnershipControlsRule"; var _OCRw = "OwnershipControlsRules"; var _OE = "ObjectEncryption"; var _OF = "OptionalFields"; var _OI = "ObjectIdentifier"; var _OIL = "ObjectIdentifierList"; var _OL = "OutputLocation"; var _OLC = "ObjectLockConfiguration"; var _OLE = "ObjectLockEnabled"; var _OLEFB = "ObjectLockEnabledForBucket"; var _OLLH = "ObjectLockLegalHold"; var _OLLHS = "ObjectLockLegalHoldStatus"; var _OLM = "ObjectLockMode"; var _OLR = "ObjectLockRetention"; var _OLRUD = "ObjectLockRetainUntilDate"; var _OLRb = "ObjectLockRule"; var _OLb = "ObjectList"; var _ONIATE = "ObjectNotInActiveTierError"; var _OO = "ObjectOwnership"; var _OOA = "OptionalObjectAttributes"; var _OP = "ObjectParts"; var _OPb = "ObjectPart"; var _OS = "ObjectSize"; var _OSGT = "ObjectSizeGreaterThan"; var _OSLT = "ObjectSizeLessThan"; var _OSV = "OutputSchemaVersion"; var _OSu = "OutputSerialization"; var _OV = "ObjectVersion"; var _OVL = "ObjectVersionList"; var _Ob = "Objects"; var _Obj = "Object"; var _P = "Prefix"; var _PABC = "PublicAccessBlockConfiguration"; var _PBA = "PutBucketAbac"; var _PBAC = "PutBucketAccelerateConfiguration"; var _PBACR = "PutBucketAccelerateConfigurationRequest"; var _PBACRu = "PutBucketAnalyticsConfigurationRequest"; var _PBACu = "PutBucketAnalyticsConfiguration"; var _PBAR = "PutBucketAbacRequest"; var _PBARu = "PutBucketAclRequest"; var _PBAu = "PutBucketAcl"; var _PBC = "PutBucketCors"; var _PBCR = "PutBucketCorsRequest"; var _PBE = "PutBucketEncryption"; var _PBER = "PutBucketEncryptionRequest"; var _PBIC = "PutBucketInventoryConfiguration"; var _PBICR = "PutBucketInventoryConfigurationRequest"; var _PBITC = "PutBucketIntelligentTieringConfiguration"; var _PBITCR = "PutBucketIntelligentTieringConfigurationRequest"; var _PBL = "PutBucketLogging"; var _PBLC = "PutBucketLifecycleConfiguration"; var _PBLCO = "PutBucketLifecycleConfigurationOutput"; var _PBLCR = "PutBucketLifecycleConfigurationRequest"; var _PBLR = "PutBucketLoggingRequest"; var _PBMC = "PutBucketMetricsConfiguration"; var _PBMCR = "PutBucketMetricsConfigurationRequest"; var _PBNC = "PutBucketNotificationConfiguration"; var _PBNCR = "PutBucketNotificationConfigurationRequest"; var _PBOC = "PutBucketOwnershipControls"; var _PBOCR = "PutBucketOwnershipControlsRequest"; var _PBP = "PutBucketPolicy"; var _PBPR = "PutBucketPolicyRequest"; var _PBR = "PutBucketReplication"; var _PBRP = "PutBucketRequestPayment"; var _PBRPR = "PutBucketRequestPaymentRequest"; var _PBRR = "PutBucketReplicationRequest"; var _PBT = "PutBucketTagging"; var _PBTR = "PutBucketTaggingRequest"; var _PBV = "PutBucketVersioning"; var _PBVR = "PutBucketVersioningRequest"; var _PBW = "PutBucketWebsite"; var _PBWR = "PutBucketWebsiteRequest"; var _PC = "PartsCount"; var _PDS = "PartitionDateSource"; var _PE = "ProgressEvent"; var _PI = "ParquetInput"; var _PL = "PartsList"; var _PN = "PartNumber"; var _PNM = "PartNumberMarker"; var _PO = "PutObject"; var _POA = "PutObjectAcl"; var _POAO = "PutObjectAclOutput"; var _POAR = "PutObjectAclRequest"; var _POLC = "PutObjectLockConfiguration"; var _POLCO = "PutObjectLockConfigurationOutput"; var _POLCR = "PutObjectLockConfigurationRequest"; var _POLH = "PutObjectLegalHold"; var _POLHO = "PutObjectLegalHoldOutput"; var _POLHR = "PutObjectLegalHoldRequest"; var _POO = "PutObjectOutput"; var _POR = "PutObjectRequest"; var _PORO = "PutObjectRetentionOutput"; var _PORR = "PutObjectRetentionRequest"; var _PORu = "PutObjectRetention"; var _POT = "PutObjectTagging"; var _POTO = "PutObjectTaggingOutput"; var _POTR = "PutObjectTaggingRequest"; var _PP = "PartitionedPrefix"; var _PPAB = "PutPublicAccessBlock"; var _PPABR = "PutPublicAccessBlockRequest"; var _PS = "PolicyStatus"; var _Pa = "Parts"; var _Par = "Part"; var _Parq = "Parquet"; var _Pay = "Payer"; var _Payl = "Payload"; var _Pe = "Permission"; var _Po = "Policy"; var _Pr = "Progress"; var _Pri = "Priority"; var _Pro = "Protocol"; var _Q = "Quiet"; var _QA = "QueueArn"; var _QC = "QuoteCharacter"; var _QCL = "QueueConfigurationList"; var _QCu = "QueueConfigurations"; var _QCue = "QueueConfiguration"; var _QEC = "QuoteEscapeCharacter"; var _QF = "QuoteFields"; var _Qu = "Queue"; var _R = "Rules"; var _RART = "RedirectAllRequestsTo"; var _RC = "RequestCharged"; var _RCC = "ResponseCacheControl"; var _RCD = "ResponseContentDisposition"; var _RCE = "ResponseContentEncoding"; var _RCL = "ResponseContentLanguage"; var _RCT = "ResponseContentType"; var _RCe = "ReplicationConfiguration"; var _RD = "RecordDelimiter"; var _RE = "ResponseExpires"; var _RED = "RestoreExpiryDate"; var _REe = "RecordExpiration"; var _REec = "RecordsEvent"; var _RKKID = "ReplicaKmsKeyID"; var _RKPW = "ReplaceKeyPrefixWith"; var _RKW = "ReplaceKeyWith"; var _RM = "ReplicaModifications"; var _RO = "RenameObject"; var _ROO = "RenameObjectOutput"; var _ROOe = "RestoreObjectOutput"; var _ROP = "RestoreOutputPath"; var _ROR = "RenameObjectRequest"; var _RORe = "RestoreObjectRequest"; var _ROe = "RestoreObject"; var _RP = "RequestPayer"; var _RPB = "RestrictPublicBuckets"; var _RPC = "RequestPaymentConfiguration"; var _RPe = "RequestProgress"; var _RR = "RoutingRules"; var _RRAO = "ReplicationRuleAndOperator"; var _RRF = "ReplicationRuleFilter"; var _RRe = "ReplicationRule"; var _RRep = "ReplicationRules"; var _RReq = "RequestRoute"; var _RRes = "RestoreRequest"; var _RRo = "RoutingRule"; var _RS = "ReplicationStatus"; var _RSe = "RestoreStatus"; var _RSen = "RenameSource"; var _RT = "ReplicationTime"; var _RTV = "ReplicationTimeValue"; var _RTe = "RequestToken"; var _RUD = "RetainUntilDate"; var _Ra = "Range"; var _Re = "Restore"; var _Rec = "Records"; var _Red = "Redirect"; var _Ret = "Retention"; var _Ro = "Role"; var _Ru = "Rule"; var _S = "Status"; var _SA = "StartAfter"; var _SAK = "SecretAccessKey"; var _SAs = "SseAlgorithm"; var _SB = "StreamingBlob"; var _SBD = "S3BucketDestination"; var _SC = "StorageClass"; var _SCA = "StorageClassAnalysis"; var _SCADE = "StorageClassAnalysisDataExport"; var _SCV = "SessionCredentialValue"; var _SCe = "SessionCredentials"; var _SCt = "StatusCode"; var _SDV = "SkipDestinationValidation"; var _SE = "StatsEvent"; var _SIM = "SourceIfMatch"; var _SIMS = "SourceIfModifiedSince"; var _SINM = "SourceIfNoneMatch"; var _SIUS = "SourceIfUnmodifiedSince"; var _SK = "SSE-KMS"; var _SKEO = "SseKmsEncryptedObjects"; var _SKF = "S3KeyFilter"; var _SKe = "S3Key"; var _SL = "S3Location"; var _SM = "SessionMode"; var _SOC = "SelectObjectContent"; var _SOCES = "SelectObjectContentEventStream"; var _SOCO = "SelectObjectContentOutput"; var _SOCR = "SelectObjectContentRequest"; var _SP = "SelectParameters"; var _SPi = "SimplePrefix"; var _SR = "ScanRange"; var _SS = "SSE-S3"; var _SSC = "SourceSelectionCriteria"; var _SSE = "ServerSideEncryption"; var _SSEA = "SSEAlgorithm"; var _SSEBD = "ServerSideEncryptionByDefault"; var _SSEC = "ServerSideEncryptionConfiguration"; var _SSECA = "SSECustomerAlgorithm"; var _SSECK = "SSECustomerKey"; var _SSECKMD = "SSECustomerKeyMD5"; var _SSEKMS = "SSEKMS"; var _SSEKMSE = "SSEKMSEncryption"; var _SSEKMSEC = "SSEKMSEncryptionContext"; var _SSEKMSKI = "SSEKMSKeyId"; var _SSER = "ServerSideEncryptionRule"; var _SSERe = "ServerSideEncryptionRules"; var _SSES = "SSES3"; var _ST = "SessionToken"; var _STD = "S3TablesDestination"; var _STDR = "S3TablesDestinationResult"; var _S_ = "S3"; var _Sc = "Schedule"; var _Si = "Size"; var _St = "Start"; var _Sta = "Stats"; var _Su = "Suffix"; var _T = "Tags"; var _TA = "TableArn"; var _TAo = "TopicArn"; var _TB = "TargetBucket"; var _TBA = "TableBucketArn"; var _TBT = "TableBucketType"; var _TC = "TagCount"; var _TCL = "TopicConfigurationList"; var _TCo = "TopicConfigurations"; var _TCop = "TopicConfiguration"; var _TD = "TaggingDirective"; var _TDMOS = "TransitionDefaultMinimumObjectSize"; var _TG = "TargetGrants"; var _TGa = "TargetGrant"; var _TL = "TieringList"; var _TLr = "TransitionList"; var _TMP = "TooManyParts"; var _TN = "TableNamespace"; var _TNa = "TableName"; var _TOKF = "TargetObjectKeyFormat"; var _TP = "TargetPrefix"; var _TPC = "TotalPartsCount"; var _TS = "TagSet"; var _TSa = "TableStatus"; var _Ta = "Tag"; var _Tag = "Tagging"; var _Ti = "Tier"; var _Tie = "Tierings"; var _Tier = "Tiering"; var _Tim = "Time"; var _To = "Token"; var _Top = "Topic"; var _Tr = "Transitions"; var _Tra = "Transition"; var _Ty = "Type"; var _U = "Uploads"; var _UBMITC = "UpdateBucketMetadataInventoryTableConfiguration"; var _UBMITCR = "UpdateBucketMetadataInventoryTableConfigurationRequest"; var _UBMJTC = "UpdateBucketMetadataJournalTableConfiguration"; var _UBMJTCR = "UpdateBucketMetadataJournalTableConfigurationRequest"; var _UI = "UploadId"; var _UIM = "UploadIdMarker"; var _UM = "UserMetadata"; var _UOE = "UpdateObjectEncryption"; var _UOER = "UpdateObjectEncryptionRequest"; var _UOERp = "UpdateObjectEncryptionResponse"; var _UP = "UploadPart"; var _UPC = "UploadPartCopy"; var _UPCO = "UploadPartCopyOutput"; var _UPCR = "UploadPartCopyRequest"; var _UPO = "UploadPartOutput"; var _UPR = "UploadPartRequest"; var _URI = "URI"; var _Up = "Upload"; var _V = "Value"; var _VC = "VersioningConfiguration"; var _VI = "VersionId"; var _VIM = "VersionIdMarker"; var _Ve = "Versions"; var _Ver = "Version"; var _WC = "WebsiteConfiguration"; var _WGOR = "WriteGetObjectResponse"; var _WGORR = "WriteGetObjectResponseRequest"; var _WOB = "WriteOffsetBytes"; var _WRL = "WebsiteRedirectLocation"; var _Y = "Years"; var _ar = "accept-ranges"; var _br = "bucket-region"; var _c = "client"; var _ct = "continuation-token"; var _d = "delimiter"; var _e = "error"; var _eP = "eventPayload"; var _en = "endpoint"; var _et = "encoding-type"; var _fo = "fetch-owner"; var _h = "http"; var _hC = "httpChecksum"; var _hE = "httpError"; var _hH = "httpHeader"; var _hL = "hostLabel"; var _hP = "httpPayload"; var _hPH = "httpPrefixHeaders"; var _hQ = "httpQuery"; var _hi = "http://www.w3.org/2001/XMLSchema-instance"; var _i = "id"; var _iT = "idempotencyToken"; var _km = "key-marker"; var _m = "marker"; var _mb = "max-buckets"; var _mdb = "max-directory-buckets"; var _mk = "max-keys"; var _mp = "max-parts"; var _mu = "max-uploads"; var _p = "prefix"; var _pN = "partNumber"; var _pnm = "part-number-marker"; var _rcc = "response-cache-control"; var _rcd = "response-content-disposition"; var _rce = "response-content-encoding"; var _rcl = "response-content-language"; var _rct = "response-content-type"; var _re = "response-expires"; var _s = "smithy.ts.sdk.synthetic.com.amazonaws.s3"; var _sa = "start-after"; var _st = "streaming"; var _uI = "uploadId"; var _uim = "upload-id-marker"; var _vI = "versionId"; var _vim = "version-id-marker"; var _x = "xsi"; var _xA = "xmlAttribute"; var _xF = "xmlFlattened"; var _xN = "xmlName"; var _xNm = "xmlNamespace"; var _xaa = "x-amz-acl"; var _xaad = "x-amz-abort-date"; var _xaapa = "x-amz-access-point-alias"; var _xaari = "x-amz-abort-rule-id"; var _xaas = "x-amz-archive-status"; var _xaba = "x-amz-bucket-arn"; var _xabgr = "x-amz-bypass-governance-retention"; var _xabln = "x-amz-bucket-location-name"; var _xablt = "x-amz-bucket-location-type"; var _xabn = "x-amz-bucket-namespace"; var _xabole = "x-amz-bucket-object-lock-enabled"; var _xabolt = "x-amz-bucket-object-lock-token"; var _xabr = "x-amz-bucket-region"; var _xaca = "x-amz-checksum-algorithm"; var _xacc = "x-amz-checksum-crc32"; var _xacc_ = "x-amz-checksum-crc32c"; var _xacc__ = "x-amz-checksum-crc64nvme"; var _xacm = "x-amz-checksum-mode"; var _xacrsba = "x-amz-confirm-remove-self-bucket-access"; var _xacs = "x-amz-checksum-sha1"; var _xacs_ = "x-amz-checksum-sha256"; var _xacs__ = "x-amz-copy-source"; var _xacsim = "x-amz-copy-source-if-match"; var _xacsims = "x-amz-copy-source-if-modified-since"; var _xacsinm = "x-amz-copy-source-if-none-match"; var _xacsius = "x-amz-copy-source-if-unmodified-since"; var _xacsm = "x-amz-create-session-mode"; var _xacsr = "x-amz-copy-source-range"; var _xacssseca = "x-amz-copy-source-server-side-encryption-customer-algorithm"; var _xacssseck = "x-amz-copy-source-server-side-encryption-customer-key"; var _xacssseckM = "x-amz-copy-source-server-side-encryption-customer-key-MD5"; var _xacsvi = "x-amz-copy-source-version-id"; var _xact = "x-amz-checksum-type"; var _xact_ = "x-amz-client-token"; var _xadm = "x-amz-delete-marker"; var _xae = "x-amz-expiration"; var _xaebo = "x-amz-expected-bucket-owner"; var _xafec = "x-amz-fwd-error-code"; var _xafem = "x-amz-fwd-error-message"; var _xafhCC = "x-amz-fwd-header-Cache-Control"; var _xafhCD = "x-amz-fwd-header-Content-Disposition"; var _xafhCE = "x-amz-fwd-header-Content-Encoding"; var _xafhCL = "x-amz-fwd-header-Content-Language"; var _xafhCR = "x-amz-fwd-header-Content-Range"; var _xafhCT = "x-amz-fwd-header-Content-Type"; var _xafhE = "x-amz-fwd-header-ETag"; var _xafhE_ = "x-amz-fwd-header-Expires"; var _xafhLM = "x-amz-fwd-header-Last-Modified"; var _xafhar = "x-amz-fwd-header-accept-ranges"; var _xafhxacc = "x-amz-fwd-header-x-amz-checksum-crc32"; var _xafhxacc_ = "x-amz-fwd-header-x-amz-checksum-crc32c"; var _xafhxacc__ = "x-amz-fwd-header-x-amz-checksum-crc64nvme"; var _xafhxacs = "x-amz-fwd-header-x-amz-checksum-sha1"; var _xafhxacs_ = "x-amz-fwd-header-x-amz-checksum-sha256"; var _xafhxadm = "x-amz-fwd-header-x-amz-delete-marker"; var _xafhxae = "x-amz-fwd-header-x-amz-expiration"; var _xafhxamm = "x-amz-fwd-header-x-amz-missing-meta"; var _xafhxampc = "x-amz-fwd-header-x-amz-mp-parts-count"; var _xafhxaollh = "x-amz-fwd-header-x-amz-object-lock-legal-hold"; var _xafhxaolm = "x-amz-fwd-header-x-amz-object-lock-mode"; var _xafhxaolrud = "x-amz-fwd-header-x-amz-object-lock-retain-until-date"; var _xafhxar = "x-amz-fwd-header-x-amz-restore"; var _xafhxarc = "x-amz-fwd-header-x-amz-request-charged"; var _xafhxars = "x-amz-fwd-header-x-amz-replication-status"; var _xafhxasc = "x-amz-fwd-header-x-amz-storage-class"; var _xafhxasse = "x-amz-fwd-header-x-amz-server-side-encryption"; var _xafhxasseakki = "x-amz-fwd-header-x-amz-server-side-encryption-aws-kms-key-id"; var _xafhxassebke = "x-amz-fwd-header-x-amz-server-side-encryption-bucket-key-enabled"; var _xafhxasseca = "x-amz-fwd-header-x-amz-server-side-encryption-customer-algorithm"; var _xafhxasseckM = "x-amz-fwd-header-x-amz-server-side-encryption-customer-key-MD5"; var _xafhxatc = "x-amz-fwd-header-x-amz-tagging-count"; var _xafhxavi = "x-amz-fwd-header-x-amz-version-id"; var _xafs = "x-amz-fwd-status"; var _xagfc = "x-amz-grant-full-control"; var _xagr = "x-amz-grant-read"; var _xagra = "x-amz-grant-read-acp"; var _xagw = "x-amz-grant-write"; var _xagwa = "x-amz-grant-write-acp"; var _xaimit = "x-amz-if-match-initiated-time"; var _xaimlmt = "x-amz-if-match-last-modified-time"; var _xaims = "x-amz-if-match-size"; var _xam = "x-amz-meta-"; var _xam_ = "x-amz-mfa"; var _xamd = "x-amz-metadata-directive"; var _xamm = "x-amz-missing-meta"; var _xamos = "x-amz-mp-object-size"; var _xamp = "x-amz-max-parts"; var _xampc = "x-amz-mp-parts-count"; var _xaoa = "x-amz-object-attributes"; var _xaollh = "x-amz-object-lock-legal-hold"; var _xaolm = "x-amz-object-lock-mode"; var _xaolrud = "x-amz-object-lock-retain-until-date"; var _xaoo = "x-amz-object-ownership"; var _xaooa = "x-amz-optional-object-attributes"; var _xaos = "x-amz-object-size"; var _xapnm = "x-amz-part-number-marker"; var _xar = "x-amz-restore"; var _xarc = "x-amz-request-charged"; var _xarop = "x-amz-restore-output-path"; var _xarp = "x-amz-request-payer"; var _xarr = "x-amz-request-route"; var _xars = "x-amz-replication-status"; var _xars_ = "x-amz-rename-source"; var _xarsim = "x-amz-rename-source-if-match"; var _xarsims = "x-amz-rename-source-if-modified-since"; var _xarsinm = "x-amz-rename-source-if-none-match"; var _xarsius = "x-amz-rename-source-if-unmodified-since"; var _xart = "x-amz-request-token"; var _xasc = "x-amz-storage-class"; var _xasca = "x-amz-sdk-checksum-algorithm"; var _xasdv = "x-amz-skip-destination-validation"; var _xasebo = "x-amz-source-expected-bucket-owner"; var _xasse = "x-amz-server-side-encryption"; var _xasseakki = "x-amz-server-side-encryption-aws-kms-key-id"; var _xassebke = "x-amz-server-side-encryption-bucket-key-enabled"; var _xassec = "x-amz-server-side-encryption-context"; var _xasseca = "x-amz-server-side-encryption-customer-algorithm"; var _xasseck = "x-amz-server-side-encryption-customer-key"; var _xasseckM = "x-amz-server-side-encryption-customer-key-MD5"; var _xat = "x-amz-tagging"; var _xatc = "x-amz-tagging-count"; var _xatd = "x-amz-tagging-directive"; var _xatdmos = "x-amz-transition-default-minimum-object-size"; var _xavi = "x-amz-version-id"; var _xawob = "x-amz-write-offset-bytes"; var _xawrl = "x-amz-website-redirect-location"; var _xs = "xsi:type"; var n0 = "com.amazonaws.s3"; var _s_registry = TypeRegistry.for(_s); var S3ServiceException$ = [-3, _s, "S3ServiceException", 0, [], []]; _s_registry.registerError(S3ServiceException$, S3ServiceException); var n0_registry = TypeRegistry.for(n0); var AccessDenied$ = [ -3, n0, _AD, { [_e]: _c, [_hE]: 403 }, [], [] ]; n0_registry.registerError(AccessDenied$, AccessDenied); var BucketAlreadyExists$ = [ -3, n0, _BAE, { [_e]: _c, [_hE]: 409 }, [], [] ]; n0_registry.registerError(BucketAlreadyExists$, BucketAlreadyExists); var BucketAlreadyOwnedByYou$ = [ -3, n0, _BAOBY, { [_e]: _c, [_hE]: 409 }, [], [] ]; n0_registry.registerError(BucketAlreadyOwnedByYou$, BucketAlreadyOwnedByYou); var EncryptionTypeMismatch$ = [ -3, n0, _ETM, { [_e]: _c, [_hE]: 400 }, [], [] ]; n0_registry.registerError(EncryptionTypeMismatch$, EncryptionTypeMismatch); var IdempotencyParameterMismatch$ = [ -3, n0, _IPM, { [_e]: _c, [_hE]: 400 }, [], [] ]; n0_registry.registerError(IdempotencyParameterMismatch$, IdempotencyParameterMismatch); var InvalidObjectState$ = [ -3, n0, _IOS, { [_e]: _c, [_hE]: 403 }, [_SC, _AT], [0, 0] ]; n0_registry.registerError(InvalidObjectState$, InvalidObjectState); var InvalidRequest$ = [ -3, n0, _IR, { [_e]: _c, [_hE]: 400 }, [], [] ]; n0_registry.registerError(InvalidRequest$, InvalidRequest); var InvalidWriteOffset$ = [ -3, n0, _IWO, { [_e]: _c, [_hE]: 400 }, [], [] ]; n0_registry.registerError(InvalidWriteOffset$, InvalidWriteOffset); var NoSuchBucket$ = [ -3, n0, _NSB, { [_e]: _c, [_hE]: 404 }, [], [] ]; n0_registry.registerError(NoSuchBucket$, NoSuchBucket); var NoSuchKey$ = [ -3, n0, _NSK, { [_e]: _c, [_hE]: 404 }, [], [] ]; n0_registry.registerError(NoSuchKey$, NoSuchKey); var NoSuchUpload$ = [ -3, n0, _NSU, { [_e]: _c, [_hE]: 404 }, [], [] ]; n0_registry.registerError(NoSuchUpload$, NoSuchUpload); var NotFound$ = [ -3, n0, _NF, { [_e]: _c }, [], [] ]; n0_registry.registerError(NotFound$, NotFound); var ObjectAlreadyInActiveTierError$ = [ -3, n0, _OAIATE, { [_e]: _c, [_hE]: 403 }, [], [] ]; n0_registry.registerError(ObjectAlreadyInActiveTierError$, ObjectAlreadyInActiveTierError); var ObjectNotInActiveTierError$ = [ -3, n0, _ONIATE, { [_e]: _c, [_hE]: 403 }, [], [] ]; n0_registry.registerError(ObjectNotInActiveTierError$, ObjectNotInActiveTierError); var TooManyParts$ = [ -3, n0, _TMP, { [_e]: _c, [_hE]: 400 }, [], [] ]; n0_registry.registerError(TooManyParts$, TooManyParts); var CopySourceSSECustomerKey = [0, n0, _CSSSECK, 8, 0]; var NonEmptyKmsKeyArnString = [0, n0, _NEKKAS, 8, 0]; var SessionCredentialValue = [0, n0, _SCV, 8, 0]; var SSECustomerKey = [0, n0, _SSECK, 8, 0]; var SSEKMSEncryptionContext = [0, n0, _SSEKMSEC, 8, 0]; var SSEKMSKeyId = [0, n0, _SSEKMSKI, 8, 0]; var StreamingBlob = [0, n0, _SB, { [_st]: 1 }, 42]; var AbacStatus$ = [ 3, n0, _AS, 0, [_S], [0] ]; var AbortIncompleteMultipartUpload$ = [ 3, n0, _AIMU, 0, [_DAI], [1] ]; var AbortMultipartUploadOutput$ = [ 3, n0, _AMUO, 0, [_RC], [[0, { [_hH]: _xarc }]] ]; var AbortMultipartUploadRequest$ = [ 3, n0, _AMUR, 0, [_B, _K, _UI, _RP, _EBO, _IMIT], [[0, 1], [0, 1], [0, { [_hQ]: _uI }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xaebo }], [6, { [_hH]: _xaimit }]], 3 ]; var AccelerateConfiguration$ = [ 3, n0, _AC, 0, [_S], [0] ]; var AccessControlPolicy$ = [ 3, n0, _ACP, 0, [_G, _O], [[() => Grants, { [_xN]: _ACL }], () => Owner$] ]; var AccessControlTranslation$ = [ 3, n0, _ACT, 0, [_O], [0], 1 ]; var AnalyticsAndOperator$ = [ 3, n0, _AAO, 0, [_P, _T], [0, [() => TagSet, { [_xF]: 1, [_xN]: _Ta }]] ]; var AnalyticsConfiguration$ = [ 3, n0, _ACn, 0, [_I, _SCA, _F], [0, () => StorageClassAnalysis$, [() => AnalyticsFilter$, 0]], 2 ]; var AnalyticsExportDestination$ = [ 3, n0, _AED, 0, [_SBD], [() => AnalyticsS3BucketDestination$], 1 ]; var AnalyticsS3BucketDestination$ = [ 3, n0, _ASBD, 0, [_Fo, _B, _BAI, _P], [0, 0, 0, 0], 2 ]; var BlockedEncryptionTypes$ = [ 3, n0, _BET, 0, [_ET], [[() => EncryptionTypeList, { [_xF]: 1 }]] ]; var Bucket$ = [ 3, n0, _B, 0, [_N, _CD, _BR, _BA], [0, 4, 0, 0] ]; var BucketInfo$ = [ 3, n0, _BI, 0, [_DR, _Ty], [0, 0] ]; var BucketLifecycleConfiguration$ = [ 3, n0, _BLC, 0, [_R], [[() => LifecycleRules, { [_xF]: 1, [_xN]: _Ru }]], 1 ]; var BucketLoggingStatus$ = [ 3, n0, _BLS, 0, [_LE], [[() => LoggingEnabled$, 0]] ]; var Checksum$ = [ 3, n0, _C, 0, [_CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh, _CT], [0, 0, 0, 0, 0, 0] ]; var CommonPrefix$ = [ 3, n0, _CP, 0, [_P], [0] ]; var CompletedMultipartUpload$ = [ 3, n0, _CMU, 0, [_Pa], [[() => CompletedPartList, { [_xF]: 1, [_xN]: _Par }]] ]; var CompletedPart$ = [ 3, n0, _CPo, 0, [_ETa, _CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh, _PN], [0, 0, 0, 0, 0, 0, 1] ]; var CompleteMultipartUploadOutput$ = [ 3, n0, _CMUO, { [_xN]: _CMUR }, [_L, _B, _K, _E, _ETa, _CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh, _CT, _SSE, _VI, _SSEKMSKI, _BKE, _RC], [0, 0, 0, [0, { [_hH]: _xae }], 0, 0, 0, 0, 0, 0, 0, [0, { [_hH]: _xasse }], [0, { [_hH]: _xavi }], [() => SSEKMSKeyId, { [_hH]: _xasseakki }], [2, { [_hH]: _xassebke }], [0, { [_hH]: _xarc }]] ]; var CompleteMultipartUploadRequest$ = [ 3, n0, _CMURo, 0, [_B, _K, _UI, _MU, _CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh, _CT, _MOS, _RP, _EBO, _IM, _INM, _SSECA, _SSECK, _SSECKMD], [[0, 1], [0, 1], [0, { [_hQ]: _uI }], [() => CompletedMultipartUpload$, { [_hP]: 1, [_xN]: _CMUo }], [0, { [_hH]: _xacc }], [0, { [_hH]: _xacc_ }], [0, { [_hH]: _xacc__ }], [0, { [_hH]: _xacs }], [0, { [_hH]: _xacs_ }], [0, { [_hH]: _xact }], [1, { [_hH]: _xamos }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _IM_ }], [0, { [_hH]: _INM_ }], [0, { [_hH]: _xasseca }], [() => SSECustomerKey, { [_hH]: _xasseck }], [0, { [_hH]: _xasseckM }]], 3 ]; var Condition$ = [ 3, n0, _Co, 0, [_HECRE, _KPE], [0, 0] ]; var ContinuationEvent$ = [ 3, n0, _CE, 0, [], [] ]; var CopyObjectOutput$ = [ 3, n0, _COO, 0, [_COR, _E, _CSVI, _VI, _SSE, _SSECA, _SSECKMD, _SSEKMSKI, _SSEKMSEC, _BKE, _RC], [[() => CopyObjectResult$, 16], [0, { [_hH]: _xae }], [0, { [_hH]: _xacsvi }], [0, { [_hH]: _xavi }], [0, { [_hH]: _xasse }], [0, { [_hH]: _xasseca }], [0, { [_hH]: _xasseckM }], [() => SSEKMSKeyId, { [_hH]: _xasseakki }], [() => SSEKMSEncryptionContext, { [_hH]: _xassec }], [2, { [_hH]: _xassebke }], [0, { [_hH]: _xarc }]] ]; var CopyObjectRequest$ = [ 3, n0, _CORo, 0, [_B, _CS, _K, _ACL_, _CC, _CA, _CDo, _CEo, _CL, _CTo, _CSIM, _CSIMS, _CSINM, _CSIUS, _Ex, _GFC, _GR, _GRACP, _GWACP, _IM, _INM, _M, _MD, _TD, _SSE, _SC, _WRL, _SSECA, _SSECK, _SSECKMD, _SSEKMSKI, _SSEKMSEC, _BKE, _CSSSECA, _CSSSECK, _CSSSECKMD, _RP, _Tag, _OLM, _OLRUD, _OLLHS, _EBO, _ESBO], [[0, 1], [0, { [_hH]: _xacs__ }], [0, 1], [0, { [_hH]: _xaa }], [0, { [_hH]: _CC_ }], [0, { [_hH]: _xaca }], [0, { [_hH]: _CD_ }], [0, { [_hH]: _CE_ }], [0, { [_hH]: _CL_ }], [0, { [_hH]: _CT_ }], [0, { [_hH]: _xacsim }], [4, { [_hH]: _xacsims }], [0, { [_hH]: _xacsinm }], [4, { [_hH]: _xacsius }], [4, { [_hH]: _Ex }], [0, { [_hH]: _xagfc }], [0, { [_hH]: _xagr }], [0, { [_hH]: _xagra }], [0, { [_hH]: _xagwa }], [0, { [_hH]: _IM_ }], [0, { [_hH]: _INM_ }], [128 | 0, { [_hPH]: _xam }], [0, { [_hH]: _xamd }], [0, { [_hH]: _xatd }], [0, { [_hH]: _xasse }], [0, { [_hH]: _xasc }], [0, { [_hH]: _xawrl }], [0, { [_hH]: _xasseca }], [() => SSECustomerKey, { [_hH]: _xasseck }], [0, { [_hH]: _xasseckM }], [() => SSEKMSKeyId, { [_hH]: _xasseakki }], [() => SSEKMSEncryptionContext, { [_hH]: _xassec }], [2, { [_hH]: _xassebke }], [0, { [_hH]: _xacssseca }], [() => CopySourceSSECustomerKey, { [_hH]: _xacssseck }], [0, { [_hH]: _xacssseckM }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xat }], [0, { [_hH]: _xaolm }], [5, { [_hH]: _xaolrud }], [0, { [_hH]: _xaollh }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xasebo }]], 3 ]; var CopyObjectResult$ = [ 3, n0, _COR, 0, [_ETa, _LM, _CT, _CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh], [0, 4, 0, 0, 0, 0, 0, 0] ]; var CopyPartResult$ = [ 3, n0, _CPR, 0, [_ETa, _LM, _CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh], [0, 4, 0, 0, 0, 0, 0] ]; var CORSConfiguration$ = [ 3, n0, _CORSC, 0, [_CORSR], [[() => CORSRules, { [_xF]: 1, [_xN]: _CORSRu }]], 1 ]; var CORSRule$ = [ 3, n0, _CORSRu, 0, [_AM, _AO, _ID, _AH, _EH, _MAS], [[64 | 0, { [_xF]: 1, [_xN]: _AMl }], [64 | 0, { [_xF]: 1, [_xN]: _AOl }], 0, [64 | 0, { [_xF]: 1, [_xN]: _AHl }], [64 | 0, { [_xF]: 1, [_xN]: _EHx }], 1], 2 ]; var CreateBucketConfiguration$ = [ 3, n0, _CBC, 0, [_LC, _L, _B, _T], [0, () => LocationInfo$, () => BucketInfo$, [() => TagSet, 0]] ]; var CreateBucketMetadataConfigurationRequest$ = [ 3, n0, _CBMCR, 0, [_B, _MC, _CMD, _CA, _EBO], [[0, 1], [() => MetadataConfiguration$, { [_hP]: 1, [_xN]: _MC }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2 ]; var CreateBucketMetadataTableConfigurationRequest$ = [ 3, n0, _CBMTCR, 0, [_B, _MTC, _CMD, _CA, _EBO], [[0, 1], [() => MetadataTableConfiguration$, { [_hP]: 1, [_xN]: _MTC }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2 ]; var CreateBucketOutput$ = [ 3, n0, _CBO, 0, [_L, _BA], [[0, { [_hH]: _L }], [0, { [_hH]: _xaba }]] ]; var CreateBucketRequest$ = [ 3, n0, _CBR, 0, [_B, _ACL_, _CBC, _GFC, _GR, _GRACP, _GW, _GWACP, _OLEFB, _OO, _BN], [[0, 1], [0, { [_hH]: _xaa }], [() => CreateBucketConfiguration$, { [_hP]: 1, [_xN]: _CBC }], [0, { [_hH]: _xagfc }], [0, { [_hH]: _xagr }], [0, { [_hH]: _xagra }], [0, { [_hH]: _xagw }], [0, { [_hH]: _xagwa }], [2, { [_hH]: _xabole }], [0, { [_hH]: _xaoo }], [0, { [_hH]: _xabn }]], 1 ]; var CreateMultipartUploadOutput$ = [ 3, n0, _CMUOr, { [_xN]: _IMUR }, [_ADb, _ARI, _B, _K, _UI, _SSE, _SSECA, _SSECKMD, _SSEKMSKI, _SSEKMSEC, _BKE, _RC, _CA, _CT], [[4, { [_hH]: _xaad }], [0, { [_hH]: _xaari }], [0, { [_xN]: _B }], 0, 0, [0, { [_hH]: _xasse }], [0, { [_hH]: _xasseca }], [0, { [_hH]: _xasseckM }], [() => SSEKMSKeyId, { [_hH]: _xasseakki }], [() => SSEKMSEncryptionContext, { [_hH]: _xassec }], [2, { [_hH]: _xassebke }], [0, { [_hH]: _xarc }], [0, { [_hH]: _xaca }], [0, { [_hH]: _xact }]] ]; var CreateMultipartUploadRequest$ = [ 3, n0, _CMURr, 0, [_B, _K, _ACL_, _CC, _CDo, _CEo, _CL, _CTo, _Ex, _GFC, _GR, _GRACP, _GWACP, _M, _SSE, _SC, _WRL, _SSECA, _SSECK, _SSECKMD, _SSEKMSKI, _SSEKMSEC, _BKE, _RP, _Tag, _OLM, _OLRUD, _OLLHS, _EBO, _CA, _CT], [[0, 1], [0, 1], [0, { [_hH]: _xaa }], [0, { [_hH]: _CC_ }], [0, { [_hH]: _CD_ }], [0, { [_hH]: _CE_ }], [0, { [_hH]: _CL_ }], [0, { [_hH]: _CT_ }], [4, { [_hH]: _Ex }], [0, { [_hH]: _xagfc }], [0, { [_hH]: _xagr }], [0, { [_hH]: _xagra }], [0, { [_hH]: _xagwa }], [128 | 0, { [_hPH]: _xam }], [0, { [_hH]: _xasse }], [0, { [_hH]: _xasc }], [0, { [_hH]: _xawrl }], [0, { [_hH]: _xasseca }], [() => SSECustomerKey, { [_hH]: _xasseck }], [0, { [_hH]: _xasseckM }], [() => SSEKMSKeyId, { [_hH]: _xasseakki }], [() => SSEKMSEncryptionContext, { [_hH]: _xassec }], [2, { [_hH]: _xassebke }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xat }], [0, { [_hH]: _xaolm }], [5, { [_hH]: _xaolrud }], [0, { [_hH]: _xaollh }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xaca }], [0, { [_hH]: _xact }]], 2 ]; var CreateSessionOutput$ = [ 3, n0, _CSO, { [_xN]: _CSR }, [_Cr, _SSE, _SSEKMSKI, _SSEKMSEC, _BKE], [[() => SessionCredentials$, { [_xN]: _Cr }], [0, { [_hH]: _xasse }], [() => SSEKMSKeyId, { [_hH]: _xasseakki }], [() => SSEKMSEncryptionContext, { [_hH]: _xassec }], [2, { [_hH]: _xassebke }]], 1 ]; var CreateSessionRequest$ = [ 3, n0, _CSRr, 0, [_B, _SM, _SSE, _SSEKMSKI, _SSEKMSEC, _BKE], [[0, 1], [0, { [_hH]: _xacsm }], [0, { [_hH]: _xasse }], [() => SSEKMSKeyId, { [_hH]: _xasseakki }], [() => SSEKMSEncryptionContext, { [_hH]: _xassec }], [2, { [_hH]: _xassebke }]], 1 ]; var CSVInput$ = [ 3, n0, _CSVIn, 0, [_FHI, _Com, _QEC, _RD, _FD, _QC, _AQRD], [0, 0, 0, 0, 0, 0, 2] ]; var CSVOutput$ = [ 3, n0, _CSVO, 0, [_QF, _QEC, _RD, _FD, _QC], [0, 0, 0, 0, 0] ]; var DefaultRetention$ = [ 3, n0, _DRe, 0, [_Mo, _D, _Y], [0, 1, 1] ]; var Delete$ = [ 3, n0, _De, 0, [_Ob, _Q], [[() => ObjectIdentifierList, { [_xF]: 1, [_xN]: _Obj }], 2], 1 ]; var DeleteBucketAnalyticsConfigurationRequest$ = [ 3, n0, _DBACR, 0, [_B, _I, _EBO], [[0, 1], [0, { [_hQ]: _i }], [0, { [_hH]: _xaebo }]], 2 ]; var DeleteBucketCorsRequest$ = [ 3, n0, _DBCR, 0, [_B, _EBO], [[0, 1], [0, { [_hH]: _xaebo }]], 1 ]; var DeleteBucketEncryptionRequest$ = [ 3, n0, _DBER, 0, [_B, _EBO], [[0, 1], [0, { [_hH]: _xaebo }]], 1 ]; var DeleteBucketIntelligentTieringConfigurationRequest$ = [ 3, n0, _DBITCR, 0, [_B, _I, _EBO], [[0, 1], [0, { [_hQ]: _i }], [0, { [_hH]: _xaebo }]], 2 ]; var DeleteBucketInventoryConfigurationRequest$ = [ 3, n0, _DBICR, 0, [_B, _I, _EBO], [[0, 1], [0, { [_hQ]: _i }], [0, { [_hH]: _xaebo }]], 2 ]; var DeleteBucketLifecycleRequest$ = [ 3, n0, _DBLR, 0, [_B, _EBO], [[0, 1], [0, { [_hH]: _xaebo }]], 1 ]; var DeleteBucketMetadataConfigurationRequest$ = [ 3, n0, _DBMCR, 0, [_B, _EBO], [[0, 1], [0, { [_hH]: _xaebo }]], 1 ]; var DeleteBucketMetadataTableConfigurationRequest$ = [ 3, n0, _DBMTCR, 0, [_B, _EBO], [[0, 1], [0, { [_hH]: _xaebo }]], 1 ]; var DeleteBucketMetricsConfigurationRequest$ = [ 3, n0, _DBMCRe, 0, [_B, _I, _EBO], [[0, 1], [0, { [_hQ]: _i }], [0, { [_hH]: _xaebo }]], 2 ]; var DeleteBucketOwnershipControlsRequest$ = [ 3, n0, _DBOCR, 0, [_B, _EBO], [[0, 1], [0, { [_hH]: _xaebo }]], 1 ]; var DeleteBucketPolicyRequest$ = [ 3, n0, _DBPR, 0, [_B, _EBO], [[0, 1], [0, { [_hH]: _xaebo }]], 1 ]; var DeleteBucketReplicationRequest$ = [ 3, n0, _DBRR, 0, [_B, _EBO], [[0, 1], [0, { [_hH]: _xaebo }]], 1 ]; var DeleteBucketRequest$ = [ 3, n0, _DBR, 0, [_B, _EBO], [[0, 1], [0, { [_hH]: _xaebo }]], 1 ]; var DeleteBucketTaggingRequest$ = [ 3, n0, _DBTR, 0, [_B, _EBO], [[0, 1], [0, { [_hH]: _xaebo }]], 1 ]; var DeleteBucketWebsiteRequest$ = [ 3, n0, _DBWR, 0, [_B, _EBO], [[0, 1], [0, { [_hH]: _xaebo }]], 1 ]; var DeletedObject$ = [ 3, n0, _DO, 0, [_K, _VI, _DM, _DMVI], [0, 0, 2, 0] ]; var DeleteMarkerEntry$ = [ 3, n0, _DME, 0, [_O, _K, _VI, _IL, _LM], [() => Owner$, 0, 0, 2, 4] ]; var DeleteMarkerReplication$ = [ 3, n0, _DMR, 0, [_S], [0] ]; var DeleteObjectOutput$ = [ 3, n0, _DOO, 0, [_DM, _VI, _RC], [[2, { [_hH]: _xadm }], [0, { [_hH]: _xavi }], [0, { [_hH]: _xarc }]] ]; var DeleteObjectRequest$ = [ 3, n0, _DOR, 0, [_B, _K, _MFA, _VI, _RP, _BGR, _EBO, _IM, _IMLMT, _IMS], [[0, 1], [0, 1], [0, { [_hH]: _xam_ }], [0, { [_hQ]: _vI }], [0, { [_hH]: _xarp }], [2, { [_hH]: _xabgr }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _IM_ }], [6, { [_hH]: _xaimlmt }], [1, { [_hH]: _xaims }]], 2 ]; var DeleteObjectsOutput$ = [ 3, n0, _DOOe, { [_xN]: _DRel }, [_Del, _RC, _Er], [[() => DeletedObjects, { [_xF]: 1 }], [0, { [_hH]: _xarc }], [() => Errors, { [_xF]: 1, [_xN]: _Err }]] ]; var DeleteObjectsRequest$ = [ 3, n0, _DORe, 0, [_B, _De, _MFA, _RP, _BGR, _EBO, _CA], [[0, 1], [() => Delete$, { [_hP]: 1, [_xN]: _De }], [0, { [_hH]: _xam_ }], [0, { [_hH]: _xarp }], [2, { [_hH]: _xabgr }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xasca }]], 2 ]; var DeleteObjectTaggingOutput$ = [ 3, n0, _DOTO, 0, [_VI], [[0, { [_hH]: _xavi }]] ]; var DeleteObjectTaggingRequest$ = [ 3, n0, _DOTR, 0, [_B, _K, _VI, _EBO], [[0, 1], [0, 1], [0, { [_hQ]: _vI }], [0, { [_hH]: _xaebo }]], 2 ]; var DeletePublicAccessBlockRequest$ = [ 3, n0, _DPABR, 0, [_B, _EBO], [[0, 1], [0, { [_hH]: _xaebo }]], 1 ]; var Destination$ = [ 3, n0, _Des, 0, [_B, _A, _SC, _ACT, _EC, _RT, _Me], [0, 0, 0, () => AccessControlTranslation$, () => EncryptionConfiguration$, () => ReplicationTime$, () => Metrics$], 1 ]; var DestinationResult$ = [ 3, n0, _DRes, 0, [_TBT, _TBA, _TN], [0, 0, 0] ]; var Encryption$ = [ 3, n0, _En, 0, [_ET, _KMSKI, _KMSC], [0, [() => SSEKMSKeyId, 0], 0], 1 ]; var EncryptionConfiguration$ = [ 3, n0, _EC, 0, [_RKKID], [0] ]; var EndEvent$ = [ 3, n0, _EE, 0, [], [] ]; var _Error$ = [ 3, n0, _Err, 0, [_K, _VI, _Cod, _Mes], [0, 0, 0, 0] ]; var ErrorDetails$ = [ 3, n0, _ED, 0, [_ECr, _EM], [0, 0] ]; var ErrorDocument$ = [ 3, n0, _EDr, 0, [_K], [0], 1 ]; var EventBridgeConfiguration$ = [ 3, n0, _EBC, 0, [], [] ]; var ExistingObjectReplication$ = [ 3, n0, _EOR, 0, [_S], [0], 1 ]; var FilterRule$ = [ 3, n0, _FR, 0, [_N, _V], [0, 0] ]; var GetBucketAbacOutput$ = [ 3, n0, _GBAO, 0, [_AS], [[() => AbacStatus$, 16]] ]; var GetBucketAbacRequest$ = [ 3, n0, _GBAR, 0, [_B, _EBO], [[0, 1], [0, { [_hH]: _xaebo }]], 1 ]; var GetBucketAccelerateConfigurationOutput$ = [ 3, n0, _GBACO, { [_xN]: _AC }, [_S, _RC], [0, [0, { [_hH]: _xarc }]] ]; var GetBucketAccelerateConfigurationRequest$ = [ 3, n0, _GBACR, 0, [_B, _EBO, _RP], [[0, 1], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xarp }]], 1 ]; var GetBucketAclOutput$ = [ 3, n0, _GBAOe, { [_xN]: _ACP }, [_O, _G], [() => Owner$, [() => Grants, { [_xN]: _ACL }]] ]; var GetBucketAclRequest$ = [ 3, n0, _GBARe, 0, [_B, _EBO], [[0, 1], [0, { [_hH]: _xaebo }]], 1 ]; var GetBucketAnalyticsConfigurationOutput$ = [ 3, n0, _GBACOe, 0, [_ACn], [[() => AnalyticsConfiguration$, 16]] ]; var GetBucketAnalyticsConfigurationRequest$ = [ 3, n0, _GBACRe, 0, [_B, _I, _EBO], [[0, 1], [0, { [_hQ]: _i }], [0, { [_hH]: _xaebo }]], 2 ]; var GetBucketCorsOutput$ = [ 3, n0, _GBCO, { [_xN]: _CORSC }, [_CORSR], [[() => CORSRules, { [_xF]: 1, [_xN]: _CORSRu }]] ]; var GetBucketCorsRequest$ = [ 3, n0, _GBCR, 0, [_B, _EBO], [[0, 1], [0, { [_hH]: _xaebo }]], 1 ]; var GetBucketEncryptionOutput$ = [ 3, n0, _GBEO, 0, [_SSEC], [[() => ServerSideEncryptionConfiguration$, 16]] ]; var GetBucketEncryptionRequest$ = [ 3, n0, _GBER, 0, [_B, _EBO], [[0, 1], [0, { [_hH]: _xaebo }]], 1 ]; var GetBucketIntelligentTieringConfigurationOutput$ = [ 3, n0, _GBITCO, 0, [_ITC], [[() => IntelligentTieringConfiguration$, 16]] ]; var GetBucketIntelligentTieringConfigurationRequest$ = [ 3, n0, _GBITCR, 0, [_B, _I, _EBO], [[0, 1], [0, { [_hQ]: _i }], [0, { [_hH]: _xaebo }]], 2 ]; var GetBucketInventoryConfigurationOutput$ = [ 3, n0, _GBICO, 0, [_IC], [[() => InventoryConfiguration$, 16]] ]; var GetBucketInventoryConfigurationRequest$ = [ 3, n0, _GBICR, 0, [_B, _I, _EBO], [[0, 1], [0, { [_hQ]: _i }], [0, { [_hH]: _xaebo }]], 2 ]; var GetBucketLifecycleConfigurationOutput$ = [ 3, n0, _GBLCO, { [_xN]: _LCi }, [_R, _TDMOS], [[() => LifecycleRules, { [_xF]: 1, [_xN]: _Ru }], [0, { [_hH]: _xatdmos }]] ]; var GetBucketLifecycleConfigurationRequest$ = [ 3, n0, _GBLCR, 0, [_B, _EBO], [[0, 1], [0, { [_hH]: _xaebo }]], 1 ]; var GetBucketLocationOutput$ = [ 3, n0, _GBLO, { [_xN]: _LC }, [_LC], [0] ]; var GetBucketLocationRequest$ = [ 3, n0, _GBLR, 0, [_B, _EBO], [[0, 1], [0, { [_hH]: _xaebo }]], 1 ]; var GetBucketLoggingOutput$ = [ 3, n0, _GBLOe, { [_xN]: _BLS }, [_LE], [[() => LoggingEnabled$, 0]] ]; var GetBucketLoggingRequest$ = [ 3, n0, _GBLRe, 0, [_B, _EBO], [[0, 1], [0, { [_hH]: _xaebo }]], 1 ]; var GetBucketMetadataConfigurationOutput$ = [ 3, n0, _GBMCO, 0, [_GBMCR], [[() => GetBucketMetadataConfigurationResult$, 16]] ]; var GetBucketMetadataConfigurationRequest$ = [ 3, n0, _GBMCRe, 0, [_B, _EBO], [[0, 1], [0, { [_hH]: _xaebo }]], 1 ]; var GetBucketMetadataConfigurationResult$ = [ 3, n0, _GBMCR, 0, [_MCR], [() => MetadataConfigurationResult$], 1 ]; var GetBucketMetadataTableConfigurationOutput$ = [ 3, n0, _GBMTCO, 0, [_GBMTCR], [[() => GetBucketMetadataTableConfigurationResult$, 16]] ]; var GetBucketMetadataTableConfigurationRequest$ = [ 3, n0, _GBMTCRe, 0, [_B, _EBO], [[0, 1], [0, { [_hH]: _xaebo }]], 1 ]; var GetBucketMetadataTableConfigurationResult$ = [ 3, n0, _GBMTCR, 0, [_MTCR, _S, _Err], [() => MetadataTableConfigurationResult$, 0, () => ErrorDetails$], 2 ]; var GetBucketMetricsConfigurationOutput$ = [ 3, n0, _GBMCOe, 0, [_MCe], [[() => MetricsConfiguration$, 16]] ]; var GetBucketMetricsConfigurationRequest$ = [ 3, n0, _GBMCRet, 0, [_B, _I, _EBO], [[0, 1], [0, { [_hQ]: _i }], [0, { [_hH]: _xaebo }]], 2 ]; var GetBucketNotificationConfigurationRequest$ = [ 3, n0, _GBNCR, 0, [_B, _EBO], [[0, 1], [0, { [_hH]: _xaebo }]], 1 ]; var GetBucketOwnershipControlsOutput$ = [ 3, n0, _GBOCO, 0, [_OC], [[() => OwnershipControls$, 16]] ]; var GetBucketOwnershipControlsRequest$ = [ 3, n0, _GBOCR, 0, [_B, _EBO], [[0, 1], [0, { [_hH]: _xaebo }]], 1 ]; var GetBucketPolicyOutput$ = [ 3, n0, _GBPO, 0, [_Po], [[0, 16]] ]; var GetBucketPolicyRequest$ = [ 3, n0, _GBPR, 0, [_B, _EBO], [[0, 1], [0, { [_hH]: _xaebo }]], 1 ]; var GetBucketPolicyStatusOutput$ = [ 3, n0, _GBPSO, 0, [_PS], [[() => PolicyStatus$, 16]] ]; var GetBucketPolicyStatusRequest$ = [ 3, n0, _GBPSR, 0, [_B, _EBO], [[0, 1], [0, { [_hH]: _xaebo }]], 1 ]; var GetBucketReplicationOutput$ = [ 3, n0, _GBRO, 0, [_RCe], [[() => ReplicationConfiguration$, 16]] ]; var GetBucketReplicationRequest$ = [ 3, n0, _GBRR, 0, [_B, _EBO], [[0, 1], [0, { [_hH]: _xaebo }]], 1 ]; var GetBucketRequestPaymentOutput$ = [ 3, n0, _GBRPO, { [_xN]: _RPC }, [_Pay], [0] ]; var GetBucketRequestPaymentRequest$ = [ 3, n0, _GBRPR, 0, [_B, _EBO], [[0, 1], [0, { [_hH]: _xaebo }]], 1 ]; var GetBucketTaggingOutput$ = [ 3, n0, _GBTO, { [_xN]: _Tag }, [_TS], [[() => TagSet, 0]], 1 ]; var GetBucketTaggingRequest$ = [ 3, n0, _GBTR, 0, [_B, _EBO], [[0, 1], [0, { [_hH]: _xaebo }]], 1 ]; var GetBucketVersioningOutput$ = [ 3, n0, _GBVO, { [_xN]: _VC }, [_S, _MFAD], [0, [0, { [_xN]: _MDf }]] ]; var GetBucketVersioningRequest$ = [ 3, n0, _GBVR, 0, [_B, _EBO], [[0, 1], [0, { [_hH]: _xaebo }]], 1 ]; var GetBucketWebsiteOutput$ = [ 3, n0, _GBWO, { [_xN]: _WC }, [_RART, _IDn, _EDr, _RR], [() => RedirectAllRequestsTo$, () => IndexDocument$, () => ErrorDocument$, [() => RoutingRules, 0]] ]; var GetBucketWebsiteRequest$ = [ 3, n0, _GBWR, 0, [_B, _EBO], [[0, 1], [0, { [_hH]: _xaebo }]], 1 ]; var GetObjectAclOutput$ = [ 3, n0, _GOAO, { [_xN]: _ACP }, [_O, _G, _RC], [() => Owner$, [() => Grants, { [_xN]: _ACL }], [0, { [_hH]: _xarc }]] ]; var GetObjectAclRequest$ = [ 3, n0, _GOAR, 0, [_B, _K, _VI, _RP, _EBO], [[0, 1], [0, 1], [0, { [_hQ]: _vI }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xaebo }]], 2 ]; var GetObjectAttributesOutput$ = [ 3, n0, _GOAOe, { [_xN]: _GOARe }, [_DM, _LM, _VI, _RC, _ETa, _C, _OP, _SC, _OS], [[2, { [_hH]: _xadm }], [4, { [_hH]: _LM_ }], [0, { [_hH]: _xavi }], [0, { [_hH]: _xarc }], 0, () => Checksum$, [() => GetObjectAttributesParts$, 0], 0, 1] ]; var GetObjectAttributesParts$ = [ 3, n0, _GOAP, 0, [_TPC, _PNM, _NPNM, _MP, _IT, _Pa], [[1, { [_xN]: _PC }], 0, 0, 1, 2, [() => PartsList, { [_xF]: 1, [_xN]: _Par }]] ]; var GetObjectAttributesRequest$ = [ 3, n0, _GOARet, 0, [_B, _K, _OA, _VI, _MP, _PNM, _SSECA, _SSECK, _SSECKMD, _RP, _EBO], [[0, 1], [0, 1], [64 | 0, { [_hH]: _xaoa }], [0, { [_hQ]: _vI }], [1, { [_hH]: _xamp }], [0, { [_hH]: _xapnm }], [0, { [_hH]: _xasseca }], [() => SSECustomerKey, { [_hH]: _xasseck }], [0, { [_hH]: _xasseckM }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xaebo }]], 3 ]; var GetObjectLegalHoldOutput$ = [ 3, n0, _GOLHO, 0, [_LH], [[() => ObjectLockLegalHold$, { [_hP]: 1, [_xN]: _LH }]] ]; var GetObjectLegalHoldRequest$ = [ 3, n0, _GOLHR, 0, [_B, _K, _VI, _RP, _EBO], [[0, 1], [0, 1], [0, { [_hQ]: _vI }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xaebo }]], 2 ]; var GetObjectLockConfigurationOutput$ = [ 3, n0, _GOLCO, 0, [_OLC], [[() => ObjectLockConfiguration$, 16]] ]; var GetObjectLockConfigurationRequest$ = [ 3, n0, _GOLCR, 0, [_B, _EBO], [[0, 1], [0, { [_hH]: _xaebo }]], 1 ]; var GetObjectOutput$ = [ 3, n0, _GOO, 0, [_Bo, _DM, _AR, _E, _Re, _LM, _CLo, _ETa, _CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh, _CT, _MM, _VI, _CC, _CDo, _CEo, _CL, _CR, _CTo, _Ex, _ES, _WRL, _SSE, _M, _SSECA, _SSECKMD, _SSEKMSKI, _BKE, _SC, _RC, _RS, _PC, _TC, _OLM, _OLRUD, _OLLHS], [[() => StreamingBlob, 16], [2, { [_hH]: _xadm }], [0, { [_hH]: _ar }], [0, { [_hH]: _xae }], [0, { [_hH]: _xar }], [4, { [_hH]: _LM_ }], [1, { [_hH]: _CL__ }], [0, { [_hH]: _ETa }], [0, { [_hH]: _xacc }], [0, { [_hH]: _xacc_ }], [0, { [_hH]: _xacc__ }], [0, { [_hH]: _xacs }], [0, { [_hH]: _xacs_ }], [0, { [_hH]: _xact }], [1, { [_hH]: _xamm }], [0, { [_hH]: _xavi }], [0, { [_hH]: _CC_ }], [0, { [_hH]: _CD_ }], [0, { [_hH]: _CE_ }], [0, { [_hH]: _CL_ }], [0, { [_hH]: _CR_ }], [0, { [_hH]: _CT_ }], [4, { [_hH]: _Ex }], [0, { [_hH]: _ES }], [0, { [_hH]: _xawrl }], [0, { [_hH]: _xasse }], [128 | 0, { [_hPH]: _xam }], [0, { [_hH]: _xasseca }], [0, { [_hH]: _xasseckM }], [() => SSEKMSKeyId, { [_hH]: _xasseakki }], [2, { [_hH]: _xassebke }], [0, { [_hH]: _xasc }], [0, { [_hH]: _xarc }], [0, { [_hH]: _xars }], [1, { [_hH]: _xampc }], [1, { [_hH]: _xatc }], [0, { [_hH]: _xaolm }], [5, { [_hH]: _xaolrud }], [0, { [_hH]: _xaollh }]] ]; var GetObjectRequest$ = [ 3, n0, _GOR, 0, [_B, _K, _IM, _IMSf, _INM, _IUS, _Ra, _RCC, _RCD, _RCE, _RCL, _RCT, _RE, _VI, _SSECA, _SSECK, _SSECKMD, _RP, _PN, _EBO, _CMh], [[0, 1], [0, 1], [0, { [_hH]: _IM_ }], [4, { [_hH]: _IMS_ }], [0, { [_hH]: _INM_ }], [4, { [_hH]: _IUS_ }], [0, { [_hH]: _Ra }], [0, { [_hQ]: _rcc }], [0, { [_hQ]: _rcd }], [0, { [_hQ]: _rce }], [0, { [_hQ]: _rcl }], [0, { [_hQ]: _rct }], [6, { [_hQ]: _re }], [0, { [_hQ]: _vI }], [0, { [_hH]: _xasseca }], [() => SSECustomerKey, { [_hH]: _xasseck }], [0, { [_hH]: _xasseckM }], [0, { [_hH]: _xarp }], [1, { [_hQ]: _pN }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xacm }]], 2 ]; var GetObjectRetentionOutput$ = [ 3, n0, _GORO, 0, [_Ret], [[() => ObjectLockRetention$, { [_hP]: 1, [_xN]: _Ret }]] ]; var GetObjectRetentionRequest$ = [ 3, n0, _GORR, 0, [_B, _K, _VI, _RP, _EBO], [[0, 1], [0, 1], [0, { [_hQ]: _vI }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xaebo }]], 2 ]; var GetObjectTaggingOutput$ = [ 3, n0, _GOTO, { [_xN]: _Tag }, [_TS, _VI], [[() => TagSet, 0], [0, { [_hH]: _xavi }]], 1 ]; var GetObjectTaggingRequest$ = [ 3, n0, _GOTR, 0, [_B, _K, _VI, _EBO, _RP], [[0, 1], [0, 1], [0, { [_hQ]: _vI }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xarp }]], 2 ]; var GetObjectTorrentOutput$ = [ 3, n0, _GOTOe, 0, [_Bo, _RC], [[() => StreamingBlob, 16], [0, { [_hH]: _xarc }]] ]; var GetObjectTorrentRequest$ = [ 3, n0, _GOTRe, 0, [_B, _K, _RP, _EBO], [[0, 1], [0, 1], [0, { [_hH]: _xarp }], [0, { [_hH]: _xaebo }]], 2 ]; var GetPublicAccessBlockOutput$ = [ 3, n0, _GPABO, 0, [_PABC], [[() => PublicAccessBlockConfiguration$, 16]] ]; var GetPublicAccessBlockRequest$ = [ 3, n0, _GPABR, 0, [_B, _EBO], [[0, 1], [0, { [_hH]: _xaebo }]], 1 ]; var GlacierJobParameters$ = [ 3, n0, _GJP, 0, [_Ti], [0], 1 ]; var Grant$ = [ 3, n0, _Gr, 0, [_Gra, _Pe], [[() => Grantee$, { [_xNm]: [_x, _hi] }], 0] ]; var Grantee$ = [ 3, n0, _Gra, 0, [_Ty, _DN, _EA, _ID, _URI], [[0, { [_xA]: 1, [_xN]: _xs }], 0, 0, 0, 0], 1 ]; var HeadBucketOutput$ = [ 3, n0, _HBO, 0, [_BA, _BLT, _BLN, _BR, _APA], [[0, { [_hH]: _xaba }], [0, { [_hH]: _xablt }], [0, { [_hH]: _xabln }], [0, { [_hH]: _xabr }], [2, { [_hH]: _xaapa }]] ]; var HeadBucketRequest$ = [ 3, n0, _HBR, 0, [_B, _EBO], [[0, 1], [0, { [_hH]: _xaebo }]], 1 ]; var HeadObjectOutput$ = [ 3, n0, _HOO, 0, [_DM, _AR, _E, _Re, _ASr, _LM, _CLo, _CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh, _CT, _ETa, _MM, _VI, _CC, _CDo, _CEo, _CL, _CTo, _CR, _Ex, _ES, _WRL, _SSE, _M, _SSECA, _SSECKMD, _SSEKMSKI, _BKE, _SC, _RC, _RS, _PC, _TC, _OLM, _OLRUD, _OLLHS], [[2, { [_hH]: _xadm }], [0, { [_hH]: _ar }], [0, { [_hH]: _xae }], [0, { [_hH]: _xar }], [0, { [_hH]: _xaas }], [4, { [_hH]: _LM_ }], [1, { [_hH]: _CL__ }], [0, { [_hH]: _xacc }], [0, { [_hH]: _xacc_ }], [0, { [_hH]: _xacc__ }], [0, { [_hH]: _xacs }], [0, { [_hH]: _xacs_ }], [0, { [_hH]: _xact }], [0, { [_hH]: _ETa }], [1, { [_hH]: _xamm }], [0, { [_hH]: _xavi }], [0, { [_hH]: _CC_ }], [0, { [_hH]: _CD_ }], [0, { [_hH]: _CE_ }], [0, { [_hH]: _CL_ }], [0, { [_hH]: _CT_ }], [0, { [_hH]: _CR_ }], [4, { [_hH]: _Ex }], [0, { [_hH]: _ES }], [0, { [_hH]: _xawrl }], [0, { [_hH]: _xasse }], [128 | 0, { [_hPH]: _xam }], [0, { [_hH]: _xasseca }], [0, { [_hH]: _xasseckM }], [() => SSEKMSKeyId, { [_hH]: _xasseakki }], [2, { [_hH]: _xassebke }], [0, { [_hH]: _xasc }], [0, { [_hH]: _xarc }], [0, { [_hH]: _xars }], [1, { [_hH]: _xampc }], [1, { [_hH]: _xatc }], [0, { [_hH]: _xaolm }], [5, { [_hH]: _xaolrud }], [0, { [_hH]: _xaollh }]] ]; var HeadObjectRequest$ = [ 3, n0, _HOR, 0, [_B, _K, _IM, _IMSf, _INM, _IUS, _Ra, _RCC, _RCD, _RCE, _RCL, _RCT, _RE, _VI, _SSECA, _SSECK, _SSECKMD, _RP, _PN, _EBO, _CMh], [[0, 1], [0, 1], [0, { [_hH]: _IM_ }], [4, { [_hH]: _IMS_ }], [0, { [_hH]: _INM_ }], [4, { [_hH]: _IUS_ }], [0, { [_hH]: _Ra }], [0, { [_hQ]: _rcc }], [0, { [_hQ]: _rcd }], [0, { [_hQ]: _rce }], [0, { [_hQ]: _rcl }], [0, { [_hQ]: _rct }], [6, { [_hQ]: _re }], [0, { [_hQ]: _vI }], [0, { [_hH]: _xasseca }], [() => SSECustomerKey, { [_hH]: _xasseck }], [0, { [_hH]: _xasseckM }], [0, { [_hH]: _xarp }], [1, { [_hQ]: _pN }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xacm }]], 2 ]; var IndexDocument$ = [ 3, n0, _IDn, 0, [_Su], [0], 1 ]; var Initiator$ = [ 3, n0, _In, 0, [_ID, _DN], [0, 0] ]; var InputSerialization$ = [ 3, n0, _IS, 0, [_CSV, _CTom, _JSON, _Parq], [() => CSVInput$, 0, () => JSONInput$, () => ParquetInput$] ]; var IntelligentTieringAndOperator$ = [ 3, n0, _ITAO, 0, [_P, _T], [0, [() => TagSet, { [_xF]: 1, [_xN]: _Ta }]] ]; var IntelligentTieringConfiguration$ = [ 3, n0, _ITC, 0, [_I, _S, _Tie, _F], [0, 0, [() => TieringList, { [_xF]: 1, [_xN]: _Tier }], [() => IntelligentTieringFilter$, 0]], 3 ]; var IntelligentTieringFilter$ = [ 3, n0, _ITF, 0, [_P, _Ta, _An], [0, () => Tag$, [() => IntelligentTieringAndOperator$, 0]] ]; var InventoryConfiguration$ = [ 3, n0, _IC, 0, [_Des, _IE, _I, _IOV, _Sc, _F, _OF], [[() => InventoryDestination$, 0], 2, 0, 0, () => InventorySchedule$, () => InventoryFilter$, [() => InventoryOptionalFields, 0]], 5 ]; var InventoryDestination$ = [ 3, n0, _IDnv, 0, [_SBD], [[() => InventoryS3BucketDestination$, 0]], 1 ]; var InventoryEncryption$ = [ 3, n0, _IEn, 0, [_SSES, _SSEKMS], [[() => SSES3$, { [_xN]: _SS }], [() => SSEKMS$, { [_xN]: _SK }]] ]; var InventoryFilter$ = [ 3, n0, _IF, 0, [_P], [0], 1 ]; var InventoryS3BucketDestination$ = [ 3, n0, _ISBD, 0, [_B, _Fo, _AI, _P, _En], [0, 0, 0, 0, [() => InventoryEncryption$, 0]], 2 ]; var InventorySchedule$ = [ 3, n0, _ISn, 0, [_Fr], [0], 1 ]; var InventoryTableConfiguration$ = [ 3, n0, _ITCn, 0, [_CSo, _EC], [0, () => MetadataTableEncryptionConfiguration$], 1 ]; var InventoryTableConfigurationResult$ = [ 3, n0, _ITCR, 0, [_CSo, _TSa, _Err, _TNa, _TA], [0, 0, () => ErrorDetails$, 0, 0], 1 ]; var InventoryTableConfigurationUpdates$ = [ 3, n0, _ITCU, 0, [_CSo, _EC], [0, () => MetadataTableEncryptionConfiguration$], 1 ]; var JournalTableConfiguration$ = [ 3, n0, _JTC, 0, [_REe, _EC], [() => RecordExpiration$, () => MetadataTableEncryptionConfiguration$], 1 ]; var JournalTableConfigurationResult$ = [ 3, n0, _JTCR, 0, [_TSa, _TNa, _REe, _Err, _TA], [0, 0, () => RecordExpiration$, () => ErrorDetails$, 0], 3 ]; var JournalTableConfigurationUpdates$ = [ 3, n0, _JTCU, 0, [_REe], [() => RecordExpiration$], 1 ]; var JSONInput$ = [ 3, n0, _JSONI, 0, [_Ty], [0] ]; var JSONOutput$ = [ 3, n0, _JSONO, 0, [_RD], [0] ]; var LambdaFunctionConfiguration$ = [ 3, n0, _LFC, 0, [_LFA, _Ev, _I, _F], [[0, { [_xN]: _CF }], [64 | 0, { [_xF]: 1, [_xN]: _Eve }], 0, [() => NotificationConfigurationFilter$, 0]], 2 ]; var LifecycleExpiration$ = [ 3, n0, _LEi, 0, [_Da, _D, _EODM], [5, 1, 2] ]; var LifecycleRule$ = [ 3, n0, _LR, 0, [_S, _E, _ID, _P, _F, _Tr, _NVT, _NVE, _AIMU], [0, () => LifecycleExpiration$, 0, 0, [() => LifecycleRuleFilter$, 0], [() => TransitionList, { [_xF]: 1, [_xN]: _Tra }], [() => NoncurrentVersionTransitionList, { [_xF]: 1, [_xN]: _NVTo }], () => NoncurrentVersionExpiration$, () => AbortIncompleteMultipartUpload$], 1 ]; var LifecycleRuleAndOperator$ = [ 3, n0, _LRAO, 0, [_P, _T, _OSGT, _OSLT], [0, [() => TagSet, { [_xF]: 1, [_xN]: _Ta }], 1, 1] ]; var LifecycleRuleFilter$ = [ 3, n0, _LRF, 0, [_P, _Ta, _OSGT, _OSLT, _An], [0, () => Tag$, 1, 1, [() => LifecycleRuleAndOperator$, 0]] ]; var ListBucketAnalyticsConfigurationsOutput$ = [ 3, n0, _LBACO, { [_xN]: _LBACR }, [_IT, _CTon, _NCT, _ACLn], [2, 0, 0, [() => AnalyticsConfigurationList, { [_xF]: 1, [_xN]: _ACn }]] ]; var ListBucketAnalyticsConfigurationsRequest$ = [ 3, n0, _LBACRi, 0, [_B, _CTon, _EBO], [[0, 1], [0, { [_hQ]: _ct }], [0, { [_hH]: _xaebo }]], 1 ]; var ListBucketIntelligentTieringConfigurationsOutput$ = [ 3, n0, _LBITCO, 0, [_IT, _CTon, _NCT, _ITCL], [2, 0, 0, [() => IntelligentTieringConfigurationList, { [_xF]: 1, [_xN]: _ITC }]] ]; var ListBucketIntelligentTieringConfigurationsRequest$ = [ 3, n0, _LBITCR, 0, [_B, _CTon, _EBO], [[0, 1], [0, { [_hQ]: _ct }], [0, { [_hH]: _xaebo }]], 1 ]; var ListBucketInventoryConfigurationsOutput$ = [ 3, n0, _LBICO, { [_xN]: _LICR }, [_CTon, _ICL, _IT, _NCT], [0, [() => InventoryConfigurationList, { [_xF]: 1, [_xN]: _IC }], 2, 0] ]; var ListBucketInventoryConfigurationsRequest$ = [ 3, n0, _LBICR, 0, [_B, _CTon, _EBO], [[0, 1], [0, { [_hQ]: _ct }], [0, { [_hH]: _xaebo }]], 1 ]; var ListBucketMetricsConfigurationsOutput$ = [ 3, n0, _LBMCO, { [_xN]: _LMCR }, [_IT, _CTon, _NCT, _MCL], [2, 0, 0, [() => MetricsConfigurationList, { [_xF]: 1, [_xN]: _MCe }]] ]; var ListBucketMetricsConfigurationsRequest$ = [ 3, n0, _LBMCR, 0, [_B, _CTon, _EBO], [[0, 1], [0, { [_hQ]: _ct }], [0, { [_hH]: _xaebo }]], 1 ]; var ListBucketsOutput$ = [ 3, n0, _LBO, { [_xN]: _LAMBR }, [_Bu, _O, _CTon, _P], [[() => Buckets, 0], () => Owner$, 0, 0] ]; var ListBucketsRequest$ = [ 3, n0, _LBR, 0, [_MB, _CTon, _P, _BR], [[1, { [_hQ]: _mb }], [0, { [_hQ]: _ct }], [0, { [_hQ]: _p }], [0, { [_hQ]: _br }]] ]; var ListDirectoryBucketsOutput$ = [ 3, n0, _LDBO, { [_xN]: _LAMDBR }, [_Bu, _CTon], [[() => Buckets, 0], 0] ]; var ListDirectoryBucketsRequest$ = [ 3, n0, _LDBR, 0, [_CTon, _MDB], [[0, { [_hQ]: _ct }], [1, { [_hQ]: _mdb }]] ]; var ListMultipartUploadsOutput$ = [ 3, n0, _LMUO, { [_xN]: _LMUR }, [_B, _KM, _UIM, _NKM, _P, _Deli, _NUIM, _MUa, _IT, _U, _CPom, _ETn, _RC], [0, 0, 0, 0, 0, 0, 0, 1, 2, [() => MultipartUploadList, { [_xF]: 1, [_xN]: _Up }], [() => CommonPrefixList, { [_xF]: 1 }], 0, [0, { [_hH]: _xarc }]] ]; var ListMultipartUploadsRequest$ = [ 3, n0, _LMURi, 0, [_B, _Deli, _ETn, _KM, _MUa, _P, _UIM, _EBO, _RP], [[0, 1], [0, { [_hQ]: _d }], [0, { [_hQ]: _et }], [0, { [_hQ]: _km }], [1, { [_hQ]: _mu }], [0, { [_hQ]: _p }], [0, { [_hQ]: _uim }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xarp }]], 1 ]; var ListObjectsOutput$ = [ 3, n0, _LOO, { [_xN]: _LBRi }, [_IT, _Ma, _NM, _Con, _N, _P, _Deli, _MK, _CPom, _ETn, _RC], [2, 0, 0, [() => ObjectList, { [_xF]: 1 }], 0, 0, 0, 1, [() => CommonPrefixList, { [_xF]: 1 }], 0, [0, { [_hH]: _xarc }]] ]; var ListObjectsRequest$ = [ 3, n0, _LOR, 0, [_B, _Deli, _ETn, _Ma, _MK, _P, _RP, _EBO, _OOA], [[0, 1], [0, { [_hQ]: _d }], [0, { [_hQ]: _et }], [0, { [_hQ]: _m }], [1, { [_hQ]: _mk }], [0, { [_hQ]: _p }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xaebo }], [64 | 0, { [_hH]: _xaooa }]], 1 ]; var ListObjectsV2Output$ = [ 3, n0, _LOVO, { [_xN]: _LBRi }, [_IT, _Con, _N, _P, _Deli, _MK, _CPom, _ETn, _KC, _CTon, _NCT, _SA, _RC], [2, [() => ObjectList, { [_xF]: 1 }], 0, 0, 0, 1, [() => CommonPrefixList, { [_xF]: 1 }], 0, 1, 0, 0, 0, [0, { [_hH]: _xarc }]] ]; var ListObjectsV2Request$ = [ 3, n0, _LOVR, 0, [_B, _Deli, _ETn, _MK, _P, _CTon, _FO, _SA, _RP, _EBO, _OOA], [[0, 1], [0, { [_hQ]: _d }], [0, { [_hQ]: _et }], [1, { [_hQ]: _mk }], [0, { [_hQ]: _p }], [0, { [_hQ]: _ct }], [2, { [_hQ]: _fo }], [0, { [_hQ]: _sa }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xaebo }], [64 | 0, { [_hH]: _xaooa }]], 1 ]; var ListObjectVersionsOutput$ = [ 3, n0, _LOVOi, { [_xN]: _LVR }, [_IT, _KM, _VIM, _NKM, _NVIM, _Ve, _DMe, _N, _P, _Deli, _MK, _CPom, _ETn, _RC], [2, 0, 0, 0, 0, [() => ObjectVersionList, { [_xF]: 1, [_xN]: _Ver }], [() => DeleteMarkers, { [_xF]: 1, [_xN]: _DM }], 0, 0, 0, 1, [() => CommonPrefixList, { [_xF]: 1 }], 0, [0, { [_hH]: _xarc }]] ]; var ListObjectVersionsRequest$ = [ 3, n0, _LOVRi, 0, [_B, _Deli, _ETn, _KM, _MK, _P, _VIM, _EBO, _RP, _OOA], [[0, 1], [0, { [_hQ]: _d }], [0, { [_hQ]: _et }], [0, { [_hQ]: _km }], [1, { [_hQ]: _mk }], [0, { [_hQ]: _p }], [0, { [_hQ]: _vim }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xarp }], [64 | 0, { [_hH]: _xaooa }]], 1 ]; var ListPartsOutput$ = [ 3, n0, _LPO, { [_xN]: _LPR }, [_ADb, _ARI, _B, _K, _UI, _PNM, _NPNM, _MP, _IT, _Pa, _In, _O, _SC, _RC, _CA, _CT], [[4, { [_hH]: _xaad }], [0, { [_hH]: _xaari }], 0, 0, 0, 0, 0, 1, 2, [() => Parts, { [_xF]: 1, [_xN]: _Par }], () => Initiator$, () => Owner$, 0, [0, { [_hH]: _xarc }], 0, 0] ]; var ListPartsRequest$ = [ 3, n0, _LPRi, 0, [_B, _K, _UI, _MP, _PNM, _RP, _EBO, _SSECA, _SSECK, _SSECKMD], [[0, 1], [0, 1], [0, { [_hQ]: _uI }], [1, { [_hQ]: _mp }], [0, { [_hQ]: _pnm }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xasseca }], [() => SSECustomerKey, { [_hH]: _xasseck }], [0, { [_hH]: _xasseckM }]], 3 ]; var LocationInfo$ = [ 3, n0, _LI, 0, [_Ty, _N], [0, 0] ]; var LoggingEnabled$ = [ 3, n0, _LE, 0, [_TB, _TP, _TG, _TOKF], [0, 0, [() => TargetGrants, 0], [() => TargetObjectKeyFormat$, 0]], 2 ]; var MetadataConfiguration$ = [ 3, n0, _MC, 0, [_JTC, _ITCn], [() => JournalTableConfiguration$, () => InventoryTableConfiguration$], 1 ]; var MetadataConfigurationResult$ = [ 3, n0, _MCR, 0, [_DRes, _JTCR, _ITCR], [() => DestinationResult$, () => JournalTableConfigurationResult$, () => InventoryTableConfigurationResult$], 1 ]; var MetadataEntry$ = [ 3, n0, _ME, 0, [_N, _V], [0, 0] ]; var MetadataTableConfiguration$ = [ 3, n0, _MTC, 0, [_STD], [() => S3TablesDestination$], 1 ]; var MetadataTableConfigurationResult$ = [ 3, n0, _MTCR, 0, [_STDR], [() => S3TablesDestinationResult$], 1 ]; var MetadataTableEncryptionConfiguration$ = [ 3, n0, _MTEC, 0, [_SAs, _KKA], [0, 0], 1 ]; var Metrics$ = [ 3, n0, _Me, 0, [_S, _ETv], [0, () => ReplicationTimeValue$], 1 ]; var MetricsAndOperator$ = [ 3, n0, _MAO, 0, [_P, _T, _APAc], [0, [() => TagSet, { [_xF]: 1, [_xN]: _Ta }], 0] ]; var MetricsConfiguration$ = [ 3, n0, _MCe, 0, [_I, _F], [0, [() => MetricsFilter$, 0]], 1 ]; var MultipartUpload$ = [ 3, n0, _MU, 0, [_UI, _K, _Ini, _SC, _O, _In, _CA, _CT], [0, 0, 4, 0, () => Owner$, () => Initiator$, 0, 0] ]; var NoncurrentVersionExpiration$ = [ 3, n0, _NVE, 0, [_ND, _NNV], [1, 1] ]; var NoncurrentVersionTransition$ = [ 3, n0, _NVTo, 0, [_ND, _SC, _NNV], [1, 0, 1] ]; var NotificationConfiguration$ = [ 3, n0, _NC, 0, [_TCo, _QCu, _LFCa, _EBC], [[() => TopicConfigurationList, { [_xF]: 1, [_xN]: _TCop }], [() => QueueConfigurationList, { [_xF]: 1, [_xN]: _QCue }], [() => LambdaFunctionConfigurationList, { [_xF]: 1, [_xN]: _CFC }], () => EventBridgeConfiguration$] ]; var NotificationConfigurationFilter$ = [ 3, n0, _NCF, 0, [_K], [[() => S3KeyFilter$, { [_xN]: _SKe }]] ]; var _Object$ = [ 3, n0, _Obj, 0, [_K, _LM, _ETa, _CA, _CT, _Si, _SC, _O, _RSe], [0, 4, 0, [64 | 0, { [_xF]: 1 }], 0, 1, 0, () => Owner$, () => RestoreStatus$] ]; var ObjectIdentifier$ = [ 3, n0, _OI, 0, [_K, _VI, _ETa, _LMT, _Si], [0, 0, 0, 6, 1], 1 ]; var ObjectLockConfiguration$ = [ 3, n0, _OLC, 0, [_OLE, _Ru], [0, () => ObjectLockRule$] ]; var ObjectLockLegalHold$ = [ 3, n0, _OLLH, 0, [_S], [0] ]; var ObjectLockRetention$ = [ 3, n0, _OLR, 0, [_Mo, _RUD], [0, 5] ]; var ObjectLockRule$ = [ 3, n0, _OLRb, 0, [_DRe], [() => DefaultRetention$] ]; var ObjectPart$ = [ 3, n0, _OPb, 0, [_PN, _Si, _CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh], [1, 1, 0, 0, 0, 0, 0] ]; var ObjectVersion$ = [ 3, n0, _OV, 0, [_ETa, _CA, _CT, _Si, _SC, _K, _VI, _IL, _LM, _O, _RSe], [0, [64 | 0, { [_xF]: 1 }], 0, 1, 0, 0, 0, 2, 4, () => Owner$, () => RestoreStatus$] ]; var OutputLocation$ = [ 3, n0, _OL, 0, [_S_], [[() => S3Location$, 0]] ]; var OutputSerialization$ = [ 3, n0, _OSu, 0, [_CSV, _JSON], [() => CSVOutput$, () => JSONOutput$] ]; var Owner$ = [ 3, n0, _O, 0, [_DN, _ID], [0, 0] ]; var OwnershipControls$ = [ 3, n0, _OC, 0, [_R], [[() => OwnershipControlsRules, { [_xF]: 1, [_xN]: _Ru }]], 1 ]; var OwnershipControlsRule$ = [ 3, n0, _OCR, 0, [_OO], [0], 1 ]; var ParquetInput$ = [ 3, n0, _PI, 0, [], [] ]; var Part$ = [ 3, n0, _Par, 0, [_PN, _LM, _ETa, _Si, _CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh], [1, 4, 0, 1, 0, 0, 0, 0, 0] ]; var PartitionedPrefix$ = [ 3, n0, _PP, { [_xN]: _PP }, [_PDS], [0] ]; var PolicyStatus$ = [ 3, n0, _PS, 0, [_IP], [[2, { [_xN]: _IP }]] ]; var Progress$ = [ 3, n0, _Pr, 0, [_BS, _BP, _BRy], [1, 1, 1] ]; var ProgressEvent$ = [ 3, n0, _PE, 0, [_Det], [[() => Progress$, { [_eP]: 1 }]] ]; var PublicAccessBlockConfiguration$ = [ 3, n0, _PABC, 0, [_BPA, _IPA, _BPP, _RPB], [[2, { [_xN]: _BPA }], [2, { [_xN]: _IPA }], [2, { [_xN]: _BPP }], [2, { [_xN]: _RPB }]] ]; var PutBucketAbacRequest$ = [ 3, n0, _PBAR, 0, [_B, _AS, _CMD, _CA, _EBO], [[0, 1], [() => AbacStatus$, { [_hP]: 1, [_xN]: _AS }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2 ]; var PutBucketAccelerateConfigurationRequest$ = [ 3, n0, _PBACR, 0, [_B, _AC, _EBO, _CA], [[0, 1], [() => AccelerateConfiguration$, { [_hP]: 1, [_xN]: _AC }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xasca }]], 2 ]; var PutBucketAclRequest$ = [ 3, n0, _PBARu, 0, [_B, _ACL_, _ACP, _CMD, _CA, _GFC, _GR, _GRACP, _GW, _GWACP, _EBO], [[0, 1], [0, { [_hH]: _xaa }], [() => AccessControlPolicy$, { [_hP]: 1, [_xN]: _ACP }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xagfc }], [0, { [_hH]: _xagr }], [0, { [_hH]: _xagra }], [0, { [_hH]: _xagw }], [0, { [_hH]: _xagwa }], [0, { [_hH]: _xaebo }]], 1 ]; var PutBucketAnalyticsConfigurationRequest$ = [ 3, n0, _PBACRu, 0, [_B, _I, _ACn, _EBO], [[0, 1], [0, { [_hQ]: _i }], [() => AnalyticsConfiguration$, { [_hP]: 1, [_xN]: _ACn }], [0, { [_hH]: _xaebo }]], 3 ]; var PutBucketCorsRequest$ = [ 3, n0, _PBCR, 0, [_B, _CORSC, _CMD, _CA, _EBO], [[0, 1], [() => CORSConfiguration$, { [_hP]: 1, [_xN]: _CORSC }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2 ]; var PutBucketEncryptionRequest$ = [ 3, n0, _PBER, 0, [_B, _SSEC, _CMD, _CA, _EBO], [[0, 1], [() => ServerSideEncryptionConfiguration$, { [_hP]: 1, [_xN]: _SSEC }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2 ]; var PutBucketIntelligentTieringConfigurationRequest$ = [ 3, n0, _PBITCR, 0, [_B, _I, _ITC, _EBO], [[0, 1], [0, { [_hQ]: _i }], [() => IntelligentTieringConfiguration$, { [_hP]: 1, [_xN]: _ITC }], [0, { [_hH]: _xaebo }]], 3 ]; var PutBucketInventoryConfigurationRequest$ = [ 3, n0, _PBICR, 0, [_B, _I, _IC, _EBO], [[0, 1], [0, { [_hQ]: _i }], [() => InventoryConfiguration$, { [_hP]: 1, [_xN]: _IC }], [0, { [_hH]: _xaebo }]], 3 ]; var PutBucketLifecycleConfigurationOutput$ = [ 3, n0, _PBLCO, 0, [_TDMOS], [[0, { [_hH]: _xatdmos }]] ]; var PutBucketLifecycleConfigurationRequest$ = [ 3, n0, _PBLCR, 0, [_B, _CA, _LCi, _EBO, _TDMOS], [[0, 1], [0, { [_hH]: _xasca }], [() => BucketLifecycleConfiguration$, { [_hP]: 1, [_xN]: _LCi }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xatdmos }]], 1 ]; var PutBucketLoggingRequest$ = [ 3, n0, _PBLR, 0, [_B, _BLS, _CMD, _CA, _EBO], [[0, 1], [() => BucketLoggingStatus$, { [_hP]: 1, [_xN]: _BLS }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2 ]; var PutBucketMetricsConfigurationRequest$ = [ 3, n0, _PBMCR, 0, [_B, _I, _MCe, _EBO], [[0, 1], [0, { [_hQ]: _i }], [() => MetricsConfiguration$, { [_hP]: 1, [_xN]: _MCe }], [0, { [_hH]: _xaebo }]], 3 ]; var PutBucketNotificationConfigurationRequest$ = [ 3, n0, _PBNCR, 0, [_B, _NC, _EBO, _SDV], [[0, 1], [() => NotificationConfiguration$, { [_hP]: 1, [_xN]: _NC }], [0, { [_hH]: _xaebo }], [2, { [_hH]: _xasdv }]], 2 ]; var PutBucketOwnershipControlsRequest$ = [ 3, n0, _PBOCR, 0, [_B, _OC, _CMD, _EBO, _CA], [[0, 1], [() => OwnershipControls$, { [_hP]: 1, [_xN]: _OC }], [0, { [_hH]: _CM }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xasca }]], 2 ]; var PutBucketPolicyRequest$ = [ 3, n0, _PBPR, 0, [_B, _Po, _CMD, _CA, _CRSBA, _EBO], [[0, 1], [0, 16], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [2, { [_hH]: _xacrsba }], [0, { [_hH]: _xaebo }]], 2 ]; var PutBucketReplicationRequest$ = [ 3, n0, _PBRR, 0, [_B, _RCe, _CMD, _CA, _To, _EBO], [[0, 1], [() => ReplicationConfiguration$, { [_hP]: 1, [_xN]: _RCe }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xabolt }], [0, { [_hH]: _xaebo }]], 2 ]; var PutBucketRequestPaymentRequest$ = [ 3, n0, _PBRPR, 0, [_B, _RPC, _CMD, _CA, _EBO], [[0, 1], [() => RequestPaymentConfiguration$, { [_hP]: 1, [_xN]: _RPC }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2 ]; var PutBucketTaggingRequest$ = [ 3, n0, _PBTR, 0, [_B, _Tag, _CMD, _CA, _EBO], [[0, 1], [() => Tagging$, { [_hP]: 1, [_xN]: _Tag }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2 ]; var PutBucketVersioningRequest$ = [ 3, n0, _PBVR, 0, [_B, _VC, _CMD, _CA, _MFA, _EBO], [[0, 1], [() => VersioningConfiguration$, { [_hP]: 1, [_xN]: _VC }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xam_ }], [0, { [_hH]: _xaebo }]], 2 ]; var PutBucketWebsiteRequest$ = [ 3, n0, _PBWR, 0, [_B, _WC, _CMD, _CA, _EBO], [[0, 1], [() => WebsiteConfiguration$, { [_hP]: 1, [_xN]: _WC }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2 ]; var PutObjectAclOutput$ = [ 3, n0, _POAO, 0, [_RC], [[0, { [_hH]: _xarc }]] ]; var PutObjectAclRequest$ = [ 3, n0, _POAR, 0, [_B, _K, _ACL_, _ACP, _CMD, _CA, _GFC, _GR, _GRACP, _GW, _GWACP, _RP, _VI, _EBO], [[0, 1], [0, 1], [0, { [_hH]: _xaa }], [() => AccessControlPolicy$, { [_hP]: 1, [_xN]: _ACP }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xagfc }], [0, { [_hH]: _xagr }], [0, { [_hH]: _xagra }], [0, { [_hH]: _xagw }], [0, { [_hH]: _xagwa }], [0, { [_hH]: _xarp }], [0, { [_hQ]: _vI }], [0, { [_hH]: _xaebo }]], 2 ]; var PutObjectLegalHoldOutput$ = [ 3, n0, _POLHO, 0, [_RC], [[0, { [_hH]: _xarc }]] ]; var PutObjectLegalHoldRequest$ = [ 3, n0, _POLHR, 0, [_B, _K, _LH, _RP, _VI, _CMD, _CA, _EBO], [[0, 1], [0, 1], [() => ObjectLockLegalHold$, { [_hP]: 1, [_xN]: _LH }], [0, { [_hH]: _xarp }], [0, { [_hQ]: _vI }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2 ]; var PutObjectLockConfigurationOutput$ = [ 3, n0, _POLCO, 0, [_RC], [[0, { [_hH]: _xarc }]] ]; var PutObjectLockConfigurationRequest$ = [ 3, n0, _POLCR, 0, [_B, _OLC, _RP, _To, _CMD, _CA, _EBO], [[0, 1], [() => ObjectLockConfiguration$, { [_hP]: 1, [_xN]: _OLC }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xabolt }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 1 ]; var PutObjectOutput$ = [ 3, n0, _POO, 0, [_E, _ETa, _CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh, _CT, _SSE, _VI, _SSECA, _SSECKMD, _SSEKMSKI, _SSEKMSEC, _BKE, _Si, _RC], [[0, { [_hH]: _xae }], [0, { [_hH]: _ETa }], [0, { [_hH]: _xacc }], [0, { [_hH]: _xacc_ }], [0, { [_hH]: _xacc__ }], [0, { [_hH]: _xacs }], [0, { [_hH]: _xacs_ }], [0, { [_hH]: _xact }], [0, { [_hH]: _xasse }], [0, { [_hH]: _xavi }], [0, { [_hH]: _xasseca }], [0, { [_hH]: _xasseckM }], [() => SSEKMSKeyId, { [_hH]: _xasseakki }], [() => SSEKMSEncryptionContext, { [_hH]: _xassec }], [2, { [_hH]: _xassebke }], [1, { [_hH]: _xaos }], [0, { [_hH]: _xarc }]] ]; var PutObjectRequest$ = [ 3, n0, _POR, 0, [_B, _K, _ACL_, _Bo, _CC, _CDo, _CEo, _CL, _CLo, _CMD, _CTo, _CA, _CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh, _Ex, _IM, _INM, _GFC, _GR, _GRACP, _GWACP, _WOB, _M, _SSE, _SC, _WRL, _SSECA, _SSECK, _SSECKMD, _SSEKMSKI, _SSEKMSEC, _BKE, _RP, _Tag, _OLM, _OLRUD, _OLLHS, _EBO], [[0, 1], [0, 1], [0, { [_hH]: _xaa }], [() => StreamingBlob, 16], [0, { [_hH]: _CC_ }], [0, { [_hH]: _CD_ }], [0, { [_hH]: _CE_ }], [0, { [_hH]: _CL_ }], [1, { [_hH]: _CL__ }], [0, { [_hH]: _CM }], [0, { [_hH]: _CT_ }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xacc }], [0, { [_hH]: _xacc_ }], [0, { [_hH]: _xacc__ }], [0, { [_hH]: _xacs }], [0, { [_hH]: _xacs_ }], [4, { [_hH]: _Ex }], [0, { [_hH]: _IM_ }], [0, { [_hH]: _INM_ }], [0, { [_hH]: _xagfc }], [0, { [_hH]: _xagr }], [0, { [_hH]: _xagra }], [0, { [_hH]: _xagwa }], [1, { [_hH]: _xawob }], [128 | 0, { [_hPH]: _xam }], [0, { [_hH]: _xasse }], [0, { [_hH]: _xasc }], [0, { [_hH]: _xawrl }], [0, { [_hH]: _xasseca }], [() => SSECustomerKey, { [_hH]: _xasseck }], [0, { [_hH]: _xasseckM }], [() => SSEKMSKeyId, { [_hH]: _xasseakki }], [() => SSEKMSEncryptionContext, { [_hH]: _xassec }], [2, { [_hH]: _xassebke }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xat }], [0, { [_hH]: _xaolm }], [5, { [_hH]: _xaolrud }], [0, { [_hH]: _xaollh }], [0, { [_hH]: _xaebo }]], 2 ]; var PutObjectRetentionOutput$ = [ 3, n0, _PORO, 0, [_RC], [[0, { [_hH]: _xarc }]] ]; var PutObjectRetentionRequest$ = [ 3, n0, _PORR, 0, [_B, _K, _Ret, _RP, _VI, _BGR, _CMD, _CA, _EBO], [[0, 1], [0, 1], [() => ObjectLockRetention$, { [_hP]: 1, [_xN]: _Ret }], [0, { [_hH]: _xarp }], [0, { [_hQ]: _vI }], [2, { [_hH]: _xabgr }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2 ]; var PutObjectTaggingOutput$ = [ 3, n0, _POTO, 0, [_VI], [[0, { [_hH]: _xavi }]] ]; var PutObjectTaggingRequest$ = [ 3, n0, _POTR, 0, [_B, _K, _Tag, _VI, _CMD, _CA, _EBO, _RP], [[0, 1], [0, 1], [() => Tagging$, { [_hP]: 1, [_xN]: _Tag }], [0, { [_hQ]: _vI }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xarp }]], 3 ]; var PutPublicAccessBlockRequest$ = [ 3, n0, _PPABR, 0, [_B, _PABC, _CMD, _CA, _EBO], [[0, 1], [() => PublicAccessBlockConfiguration$, { [_hP]: 1, [_xN]: _PABC }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2 ]; var QueueConfiguration$ = [ 3, n0, _QCue, 0, [_QA, _Ev, _I, _F], [[0, { [_xN]: _Qu }], [64 | 0, { [_xF]: 1, [_xN]: _Eve }], 0, [() => NotificationConfigurationFilter$, 0]], 2 ]; var RecordExpiration$ = [ 3, n0, _REe, 0, [_E, _D], [0, 1], 1 ]; var RecordsEvent$ = [ 3, n0, _REec, 0, [_Payl], [[21, { [_eP]: 1 }]] ]; var Redirect$ = [ 3, n0, _Red, 0, [_HN, _HRC, _Pro, _RKPW, _RKW], [0, 0, 0, 0, 0] ]; var RedirectAllRequestsTo$ = [ 3, n0, _RART, 0, [_HN, _Pro], [0, 0], 1 ]; var RenameObjectOutput$ = [ 3, n0, _ROO, 0, [], [] ]; var RenameObjectRequest$ = [ 3, n0, _ROR, 0, [_B, _K, _RSen, _DIM, _DINM, _DIMS, _DIUS, _SIM, _SINM, _SIMS, _SIUS, _CTl], [[0, 1], [0, 1], [0, { [_hH]: _xars_ }], [0, { [_hH]: _IM_ }], [0, { [_hH]: _INM_ }], [4, { [_hH]: _IMS_ }], [4, { [_hH]: _IUS_ }], [0, { [_hH]: _xarsim }], [0, { [_hH]: _xarsinm }], [6, { [_hH]: _xarsims }], [6, { [_hH]: _xarsius }], [0, { [_hH]: _xact_, [_iT]: 1 }]], 3 ]; var ReplicaModifications$ = [ 3, n0, _RM, 0, [_S], [0], 1 ]; var ReplicationConfiguration$ = [ 3, n0, _RCe, 0, [_Ro, _R], [0, [() => ReplicationRules, { [_xF]: 1, [_xN]: _Ru }]], 2 ]; var ReplicationRule$ = [ 3, n0, _RRe, 0, [_S, _Des, _ID, _Pri, _P, _F, _SSC, _EOR, _DMR], [0, () => Destination$, 0, 1, 0, [() => ReplicationRuleFilter$, 0], () => SourceSelectionCriteria$, () => ExistingObjectReplication$, () => DeleteMarkerReplication$], 2 ]; var ReplicationRuleAndOperator$ = [ 3, n0, _RRAO, 0, [_P, _T], [0, [() => TagSet, { [_xF]: 1, [_xN]: _Ta }]] ]; var ReplicationRuleFilter$ = [ 3, n0, _RRF, 0, [_P, _Ta, _An], [0, () => Tag$, [() => ReplicationRuleAndOperator$, 0]] ]; var ReplicationTime$ = [ 3, n0, _RT, 0, [_S, _Tim], [0, () => ReplicationTimeValue$], 2 ]; var ReplicationTimeValue$ = [ 3, n0, _RTV, 0, [_Mi], [1] ]; var RequestPaymentConfiguration$ = [ 3, n0, _RPC, 0, [_Pay], [0], 1 ]; var RequestProgress$ = [ 3, n0, _RPe, 0, [_Ena], [2] ]; var RestoreObjectOutput$ = [ 3, n0, _ROOe, 0, [_RC, _ROP], [[0, { [_hH]: _xarc }], [0, { [_hH]: _xarop }]] ]; var RestoreObjectRequest$ = [ 3, n0, _RORe, 0, [_B, _K, _VI, _RRes, _RP, _CA, _EBO], [[0, 1], [0, 1], [0, { [_hQ]: _vI }], [() => RestoreRequest$, { [_hP]: 1, [_xN]: _RRes }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2 ]; var RestoreRequest$ = [ 3, n0, _RRes, 0, [_D, _GJP, _Ty, _Ti, _Desc, _SP, _OL], [1, () => GlacierJobParameters$, 0, 0, 0, () => SelectParameters$, [() => OutputLocation$, 0]] ]; var RestoreStatus$ = [ 3, n0, _RSe, 0, [_IRIP, _RED], [2, 4] ]; var RoutingRule$ = [ 3, n0, _RRo, 0, [_Red, _Co], [() => Redirect$, () => Condition$], 1 ]; var S3KeyFilter$ = [ 3, n0, _SKF, 0, [_FRi], [[() => FilterRuleList, { [_xF]: 1, [_xN]: _FR }]] ]; var S3Location$ = [ 3, n0, _SL, 0, [_BNu, _P, _En, _CACL, _ACL, _Tag, _UM, _SC], [0, 0, [() => Encryption$, 0], 0, [() => Grants, 0], [() => Tagging$, 0], [() => UserMetadata, 0], 0], 2 ]; var S3TablesDestination$ = [ 3, n0, _STD, 0, [_TBA, _TNa], [0, 0], 2 ]; var S3TablesDestinationResult$ = [ 3, n0, _STDR, 0, [_TBA, _TNa, _TA, _TN], [0, 0, 0, 0], 4 ]; var ScanRange$ = [ 3, n0, _SR, 0, [_St, _End], [1, 1] ]; var SelectObjectContentOutput$ = [ 3, n0, _SOCO, 0, [_Payl], [[() => SelectObjectContentEventStream$, 16]] ]; var SelectObjectContentRequest$ = [ 3, n0, _SOCR, 0, [_B, _K, _Exp, _ETx, _IS, _OSu, _SSECA, _SSECK, _SSECKMD, _RPe, _SR, _EBO], [[0, 1], [0, 1], 0, 0, () => InputSerialization$, () => OutputSerialization$, [0, { [_hH]: _xasseca }], [() => SSECustomerKey, { [_hH]: _xasseck }], [0, { [_hH]: _xasseckM }], () => RequestProgress$, () => ScanRange$, [0, { [_hH]: _xaebo }]], 6 ]; var SelectParameters$ = [ 3, n0, _SP, 0, [_IS, _ETx, _Exp, _OSu], [() => InputSerialization$, 0, 0, () => OutputSerialization$], 4 ]; var ServerSideEncryptionByDefault$ = [ 3, n0, _SSEBD, 0, [_SSEA, _KMSMKID], [0, [() => SSEKMSKeyId, 0]], 1 ]; var ServerSideEncryptionConfiguration$ = [ 3, n0, _SSEC, 0, [_R], [[() => ServerSideEncryptionRules, { [_xF]: 1, [_xN]: _Ru }]], 1 ]; var ServerSideEncryptionRule$ = [ 3, n0, _SSER, 0, [_ASSEBD, _BKE, _BET], [[() => ServerSideEncryptionByDefault$, 0], 2, [() => BlockedEncryptionTypes$, 0]] ]; var SessionCredentials$ = [ 3, n0, _SCe, 0, [_AKI, _SAK, _ST, _E], [[0, { [_xN]: _AKI }], [() => SessionCredentialValue, { [_xN]: _SAK }], [() => SessionCredentialValue, { [_xN]: _ST }], [4, { [_xN]: _E }]], 4 ]; var SimplePrefix$ = [ 3, n0, _SPi, { [_xN]: _SPi }, [], [] ]; var SourceSelectionCriteria$ = [ 3, n0, _SSC, 0, [_SKEO, _RM], [() => SseKmsEncryptedObjects$, () => ReplicaModifications$] ]; var SSEKMS$ = [ 3, n0, _SSEKMS, { [_xN]: _SK }, [_KI], [[() => SSEKMSKeyId, 0]], 1 ]; var SseKmsEncryptedObjects$ = [ 3, n0, _SKEO, 0, [_S], [0], 1 ]; var SSEKMSEncryption$ = [ 3, n0, _SSEKMSE, { [_xN]: _SK }, [_KMSKA, _BKE], [[() => NonEmptyKmsKeyArnString, 0], 2], 1 ]; var SSES3$ = [ 3, n0, _SSES, { [_xN]: _SS }, [], [] ]; var Stats$ = [ 3, n0, _Sta, 0, [_BS, _BP, _BRy], [1, 1, 1] ]; var StatsEvent$ = [ 3, n0, _SE, 0, [_Det], [[() => Stats$, { [_eP]: 1 }]] ]; var StorageClassAnalysis$ = [ 3, n0, _SCA, 0, [_DE], [() => StorageClassAnalysisDataExport$] ]; var StorageClassAnalysisDataExport$ = [ 3, n0, _SCADE, 0, [_OSV, _Des], [0, () => AnalyticsExportDestination$], 2 ]; var Tag$ = [ 3, n0, _Ta, 0, [_K, _V], [0, 0], 2 ]; var Tagging$ = [ 3, n0, _Tag, 0, [_TS], [[() => TagSet, 0]], 1 ]; var TargetGrant$ = [ 3, n0, _TGa, 0, [_Gra, _Pe], [[() => Grantee$, { [_xNm]: [_x, _hi] }], 0] ]; var TargetObjectKeyFormat$ = [ 3, n0, _TOKF, 0, [_SPi, _PP], [[() => SimplePrefix$, { [_xN]: _SPi }], [() => PartitionedPrefix$, { [_xN]: _PP }]] ]; var Tiering$ = [ 3, n0, _Tier, 0, [_D, _AT], [1, 0], 2 ]; var TopicConfiguration$ = [ 3, n0, _TCop, 0, [_TAo, _Ev, _I, _F], [[0, { [_xN]: _Top }], [64 | 0, { [_xF]: 1, [_xN]: _Eve }], 0, [() => NotificationConfigurationFilter$, 0]], 2 ]; var Transition$ = [ 3, n0, _Tra, 0, [_Da, _D, _SC], [5, 1, 0] ]; var UpdateBucketMetadataInventoryTableConfigurationRequest$ = [ 3, n0, _UBMITCR, 0, [_B, _ITCn, _CMD, _CA, _EBO], [[0, 1], [() => InventoryTableConfigurationUpdates$, { [_hP]: 1, [_xN]: _ITCn }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2 ]; var UpdateBucketMetadataJournalTableConfigurationRequest$ = [ 3, n0, _UBMJTCR, 0, [_B, _JTC, _CMD, _CA, _EBO], [[0, 1], [() => JournalTableConfigurationUpdates$, { [_hP]: 1, [_xN]: _JTC }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2 ]; var UpdateObjectEncryptionRequest$ = [ 3, n0, _UOER, 0, [_B, _K, _OE, _VI, _RP, _EBO, _CMD, _CA], [[0, 1], [0, 1], [() => ObjectEncryption$, 16], [0, { [_hQ]: _vI }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }]], 3 ]; var UpdateObjectEncryptionResponse$ = [ 3, n0, _UOERp, 0, [_RC], [[0, { [_hH]: _xarc }]] ]; var UploadPartCopyOutput$ = [ 3, n0, _UPCO, 0, [_CSVI, _CPR, _SSE, _SSECA, _SSECKMD, _SSEKMSKI, _BKE, _RC], [[0, { [_hH]: _xacsvi }], [() => CopyPartResult$, 16], [0, { [_hH]: _xasse }], [0, { [_hH]: _xasseca }], [0, { [_hH]: _xasseckM }], [() => SSEKMSKeyId, { [_hH]: _xasseakki }], [2, { [_hH]: _xassebke }], [0, { [_hH]: _xarc }]] ]; var UploadPartCopyRequest$ = [ 3, n0, _UPCR, 0, [_B, _CS, _K, _PN, _UI, _CSIM, _CSIMS, _CSINM, _CSIUS, _CSRo, _SSECA, _SSECK, _SSECKMD, _CSSSECA, _CSSSECK, _CSSSECKMD, _RP, _EBO, _ESBO], [[0, 1], [0, { [_hH]: _xacs__ }], [0, 1], [1, { [_hQ]: _pN }], [0, { [_hQ]: _uI }], [0, { [_hH]: _xacsim }], [4, { [_hH]: _xacsims }], [0, { [_hH]: _xacsinm }], [4, { [_hH]: _xacsius }], [0, { [_hH]: _xacsr }], [0, { [_hH]: _xasseca }], [() => SSECustomerKey, { [_hH]: _xasseck }], [0, { [_hH]: _xasseckM }], [0, { [_hH]: _xacssseca }], [() => CopySourceSSECustomerKey, { [_hH]: _xacssseck }], [0, { [_hH]: _xacssseckM }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xasebo }]], 5 ]; var UploadPartOutput$ = [ 3, n0, _UPO, 0, [_SSE, _ETa, _CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh, _SSECA, _SSECKMD, _SSEKMSKI, _BKE, _RC], [[0, { [_hH]: _xasse }], [0, { [_hH]: _ETa }], [0, { [_hH]: _xacc }], [0, { [_hH]: _xacc_ }], [0, { [_hH]: _xacc__ }], [0, { [_hH]: _xacs }], [0, { [_hH]: _xacs_ }], [0, { [_hH]: _xasseca }], [0, { [_hH]: _xasseckM }], [() => SSEKMSKeyId, { [_hH]: _xasseakki }], [2, { [_hH]: _xassebke }], [0, { [_hH]: _xarc }]] ]; var UploadPartRequest$ = [ 3, n0, _UPR, 0, [_B, _K, _PN, _UI, _Bo, _CLo, _CMD, _CA, _CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh, _SSECA, _SSECK, _SSECKMD, _RP, _EBO], [[0, 1], [0, 1], [1, { [_hQ]: _pN }], [0, { [_hQ]: _uI }], [() => StreamingBlob, 16], [1, { [_hH]: _CL__ }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xacc }], [0, { [_hH]: _xacc_ }], [0, { [_hH]: _xacc__ }], [0, { [_hH]: _xacs }], [0, { [_hH]: _xacs_ }], [0, { [_hH]: _xasseca }], [() => SSECustomerKey, { [_hH]: _xasseck }], [0, { [_hH]: _xasseckM }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xaebo }]], 4 ]; var VersioningConfiguration$ = [ 3, n0, _VC, 0, [_MFAD, _S], [[0, { [_xN]: _MDf }], 0] ]; var WebsiteConfiguration$ = [ 3, n0, _WC, 0, [_EDr, _IDn, _RART, _RR], [() => ErrorDocument$, () => IndexDocument$, () => RedirectAllRequestsTo$, [() => RoutingRules, 0]] ]; var WriteGetObjectResponseRequest$ = [ 3, n0, _WGORR, 0, [_RReq, _RTe, _Bo, _SCt, _ECr, _EM, _AR, _CC, _CDo, _CEo, _CL, _CLo, _CR, _CTo, _CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh, _DM, _ETa, _Ex, _E, _LM, _MM, _M, _OLM, _OLLHS, _OLRUD, _PC, _RS, _RC, _Re, _SSE, _SSECA, _SSEKMSKI, _SSECKMD, _SC, _TC, _VI, _BKE], [[0, { [_hL]: 1, [_hH]: _xarr }], [0, { [_hH]: _xart }], [() => StreamingBlob, 16], [1, { [_hH]: _xafs }], [0, { [_hH]: _xafec }], [0, { [_hH]: _xafem }], [0, { [_hH]: _xafhar }], [0, { [_hH]: _xafhCC }], [0, { [_hH]: _xafhCD }], [0, { [_hH]: _xafhCE }], [0, { [_hH]: _xafhCL }], [1, { [_hH]: _CL__ }], [0, { [_hH]: _xafhCR }], [0, { [_hH]: _xafhCT }], [0, { [_hH]: _xafhxacc }], [0, { [_hH]: _xafhxacc_ }], [0, { [_hH]: _xafhxacc__ }], [0, { [_hH]: _xafhxacs }], [0, { [_hH]: _xafhxacs_ }], [2, { [_hH]: _xafhxadm }], [0, { [_hH]: _xafhE }], [4, { [_hH]: _xafhE_ }], [0, { [_hH]: _xafhxae }], [4, { [_hH]: _xafhLM }], [1, { [_hH]: _xafhxamm }], [128 | 0, { [_hPH]: _xam }], [0, { [_hH]: _xafhxaolm }], [0, { [_hH]: _xafhxaollh }], [5, { [_hH]: _xafhxaolrud }], [1, { [_hH]: _xafhxampc }], [0, { [_hH]: _xafhxars }], [0, { [_hH]: _xafhxarc }], [0, { [_hH]: _xafhxar }], [0, { [_hH]: _xafhxasse }], [0, { [_hH]: _xafhxasseca }], [() => SSEKMSKeyId, { [_hH]: _xafhxasseakki }], [0, { [_hH]: _xafhxasseckM }], [0, { [_hH]: _xafhxasc }], [1, { [_hH]: _xafhxatc }], [0, { [_hH]: _xafhxavi }], [2, { [_hH]: _xafhxassebke }]], 2 ]; var __Unit = "unit"; var AllowedHeaders = 64 | 0; var AllowedMethods = 64 | 0; var AllowedOrigins = 64 | 0; var AnalyticsConfigurationList = [ 1, n0, _ACLn, 0, [ () => AnalyticsConfiguration$, 0 ] ]; var Buckets = [ 1, n0, _Bu, 0, [ () => Bucket$, { [_xN]: _B } ] ]; var ChecksumAlgorithmList = 64 | 0; var CommonPrefixList = [ 1, n0, _CPL, 0, () => CommonPrefix$ ]; var CompletedPartList = [ 1, n0, _CPLo, 0, () => CompletedPart$ ]; var CORSRules = [ 1, n0, _CORSR, 0, [ () => CORSRule$, 0 ] ]; var DeletedObjects = [ 1, n0, _DOe, 0, () => DeletedObject$ ]; var DeleteMarkers = [ 1, n0, _DMe, 0, () => DeleteMarkerEntry$ ]; var EncryptionTypeList = [ 1, n0, _ETL, 0, [ 0, { [_xN]: _ET } ] ]; var Errors = [ 1, n0, _Er, 0, () => _Error$ ]; var EventList = 64 | 0; var ExposeHeaders = 64 | 0; var FilterRuleList = [ 1, n0, _FRL, 0, () => FilterRule$ ]; var Grants = [ 1, n0, _G, 0, [ () => Grant$, { [_xN]: _Gr } ] ]; var IntelligentTieringConfigurationList = [ 1, n0, _ITCL, 0, [ () => IntelligentTieringConfiguration$, 0 ] ]; var InventoryConfigurationList = [ 1, n0, _ICL, 0, [ () => InventoryConfiguration$, 0 ] ]; var InventoryOptionalFields = [ 1, n0, _IOF, 0, [ 0, { [_xN]: _Fi } ] ]; var LambdaFunctionConfigurationList = [ 1, n0, _LFCL, 0, [ () => LambdaFunctionConfiguration$, 0 ] ]; var LifecycleRules = [ 1, n0, _LRi, 0, [ () => LifecycleRule$, 0 ] ]; var MetricsConfigurationList = [ 1, n0, _MCL, 0, [ () => MetricsConfiguration$, 0 ] ]; var MultipartUploadList = [ 1, n0, _MUL, 0, () => MultipartUpload$ ]; var NoncurrentVersionTransitionList = [ 1, n0, _NVTL, 0, () => NoncurrentVersionTransition$ ]; var ObjectAttributesList = 64 | 0; var ObjectIdentifierList = [ 1, n0, _OIL, 0, () => ObjectIdentifier$ ]; var ObjectList = [ 1, n0, _OLb, 0, [ () => _Object$, 0 ] ]; var ObjectVersionList = [ 1, n0, _OVL, 0, [ () => ObjectVersion$, 0 ] ]; var OptionalObjectAttributesList = 64 | 0; var OwnershipControlsRules = [ 1, n0, _OCRw, 0, () => OwnershipControlsRule$ ]; var Parts = [ 1, n0, _Pa, 0, () => Part$ ]; var PartsList = [ 1, n0, _PL, 0, () => ObjectPart$ ]; var QueueConfigurationList = [ 1, n0, _QCL, 0, [ () => QueueConfiguration$, 0 ] ]; var ReplicationRules = [ 1, n0, _RRep, 0, [ () => ReplicationRule$, 0 ] ]; var RoutingRules = [ 1, n0, _RR, 0, [ () => RoutingRule$, { [_xN]: _RRo } ] ]; var ServerSideEncryptionRules = [ 1, n0, _SSERe, 0, [ () => ServerSideEncryptionRule$, 0 ] ]; var TagSet = [ 1, n0, _TS, 0, [ () => Tag$, { [_xN]: _Ta } ] ]; var TargetGrants = [ 1, n0, _TG, 0, [ () => TargetGrant$, { [_xN]: _Gr } ] ]; var TieringList = [ 1, n0, _TL, 0, () => Tiering$ ]; var TopicConfigurationList = [ 1, n0, _TCL, 0, [ () => TopicConfiguration$, 0 ] ]; var TransitionList = [ 1, n0, _TLr, 0, () => Transition$ ]; var UserMetadata = [ 1, n0, _UM, 0, [ () => MetadataEntry$, { [_xN]: _ME } ] ]; var Metadata = 128 | 0; var AnalyticsFilter$ = [ 4, n0, _AF, 0, [_P, _Ta, _An], [0, () => Tag$, [() => AnalyticsAndOperator$, 0]] ]; var MetricsFilter$ = [ 4, n0, _MF, 0, [_P, _Ta, _APAc, _An], [0, () => Tag$, 0, [() => MetricsAndOperator$, 0]] ]; var ObjectEncryption$ = [ 4, n0, _OE, 0, [_SSEKMS], [[() => SSEKMSEncryption$, { [_xN]: _SK }]] ]; var SelectObjectContentEventStream$ = [ 4, n0, _SOCES, { [_st]: 1 }, [_Rec, _Sta, _Pr, _Cont, _End], [[() => RecordsEvent$, 0], [() => StatsEvent$, 0], [() => ProgressEvent$, 0], () => ContinuationEvent$, () => EndEvent$] ]; var AbortMultipartUpload$ = [ 9, n0, _AMU, { [_h]: ["DELETE", "/{Key+}?x-id=AbortMultipartUpload", 204] }, () => AbortMultipartUploadRequest$, () => AbortMultipartUploadOutput$ ]; var CompleteMultipartUpload$ = [ 9, n0, _CMUo, { [_h]: ["POST", "/{Key+}", 200] }, () => CompleteMultipartUploadRequest$, () => CompleteMultipartUploadOutput$ ]; var CopyObject$ = [ 9, n0, _CO, { [_h]: ["PUT", "/{Key+}?x-id=CopyObject", 200] }, () => CopyObjectRequest$, () => CopyObjectOutput$ ]; var CreateBucket$ = [ 9, n0, _CB, { [_h]: ["PUT", "/", 200] }, () => CreateBucketRequest$, () => CreateBucketOutput$ ]; var CreateBucketMetadataConfiguration$ = [ 9, n0, _CBMC, { [_hC]: "-", [_h]: ["POST", "/?metadataConfiguration", 200] }, () => CreateBucketMetadataConfigurationRequest$, () => __Unit ]; var CreateBucketMetadataTableConfiguration$ = [ 9, n0, _CBMTC, { [_hC]: "-", [_h]: ["POST", "/?metadataTable", 200] }, () => CreateBucketMetadataTableConfigurationRequest$, () => __Unit ]; var CreateMultipartUpload$ = [ 9, n0, _CMUr, { [_h]: ["POST", "/{Key+}?uploads", 200] }, () => CreateMultipartUploadRequest$, () => CreateMultipartUploadOutput$ ]; var CreateSession$ = [ 9, n0, _CSr, { [_h]: ["GET", "/?session", 200] }, () => CreateSessionRequest$, () => CreateSessionOutput$ ]; var DeleteBucket$ = [ 9, n0, _DB, { [_h]: ["DELETE", "/", 204] }, () => DeleteBucketRequest$, () => __Unit ]; var DeleteBucketAnalyticsConfiguration$ = [ 9, n0, _DBAC, { [_h]: ["DELETE", "/?analytics", 204] }, () => DeleteBucketAnalyticsConfigurationRequest$, () => __Unit ]; var DeleteBucketCors$ = [ 9, n0, _DBC, { [_h]: ["DELETE", "/?cors", 204] }, () => DeleteBucketCorsRequest$, () => __Unit ]; var DeleteBucketEncryption$ = [ 9, n0, _DBE, { [_h]: ["DELETE", "/?encryption", 204] }, () => DeleteBucketEncryptionRequest$, () => __Unit ]; var DeleteBucketIntelligentTieringConfiguration$ = [ 9, n0, _DBITC, { [_h]: ["DELETE", "/?intelligent-tiering", 204] }, () => DeleteBucketIntelligentTieringConfigurationRequest$, () => __Unit ]; var DeleteBucketInventoryConfiguration$ = [ 9, n0, _DBIC, { [_h]: ["DELETE", "/?inventory", 204] }, () => DeleteBucketInventoryConfigurationRequest$, () => __Unit ]; var DeleteBucketLifecycle$ = [ 9, n0, _DBL, { [_h]: ["DELETE", "/?lifecycle", 204] }, () => DeleteBucketLifecycleRequest$, () => __Unit ]; var DeleteBucketMetadataConfiguration$ = [ 9, n0, _DBMC, { [_h]: ["DELETE", "/?metadataConfiguration", 204] }, () => DeleteBucketMetadataConfigurationRequest$, () => __Unit ]; var DeleteBucketMetadataTableConfiguration$ = [ 9, n0, _DBMTC, { [_h]: ["DELETE", "/?metadataTable", 204] }, () => DeleteBucketMetadataTableConfigurationRequest$, () => __Unit ]; var DeleteBucketMetricsConfiguration$ = [ 9, n0, _DBMCe, { [_h]: ["DELETE", "/?metrics", 204] }, () => DeleteBucketMetricsConfigurationRequest$, () => __Unit ]; var DeleteBucketOwnershipControls$ = [ 9, n0, _DBOC, { [_h]: ["DELETE", "/?ownershipControls", 204] }, () => DeleteBucketOwnershipControlsRequest$, () => __Unit ]; var DeleteBucketPolicy$ = [ 9, n0, _DBP, { [_h]: ["DELETE", "/?policy", 204] }, () => DeleteBucketPolicyRequest$, () => __Unit ]; var DeleteBucketReplication$ = [ 9, n0, _DBRe, { [_h]: ["DELETE", "/?replication", 204] }, () => DeleteBucketReplicationRequest$, () => __Unit ]; var DeleteBucketTagging$ = [ 9, n0, _DBT, { [_h]: ["DELETE", "/?tagging", 204] }, () => DeleteBucketTaggingRequest$, () => __Unit ]; var DeleteBucketWebsite$ = [ 9, n0, _DBW, { [_h]: ["DELETE", "/?website", 204] }, () => DeleteBucketWebsiteRequest$, () => __Unit ]; var DeleteObject$ = [ 9, n0, _DOel, { [_h]: ["DELETE", "/{Key+}?x-id=DeleteObject", 204] }, () => DeleteObjectRequest$, () => DeleteObjectOutput$ ]; var DeleteObjects$ = [ 9, n0, _DOele, { [_hC]: "-", [_h]: ["POST", "/?delete", 200] }, () => DeleteObjectsRequest$, () => DeleteObjectsOutput$ ]; var DeleteObjectTagging$ = [ 9, n0, _DOT, { [_h]: ["DELETE", "/{Key+}?tagging", 204] }, () => DeleteObjectTaggingRequest$, () => DeleteObjectTaggingOutput$ ]; var DeletePublicAccessBlock$ = [ 9, n0, _DPAB, { [_h]: ["DELETE", "/?publicAccessBlock", 204] }, () => DeletePublicAccessBlockRequest$, () => __Unit ]; var GetBucketAbac$ = [ 9, n0, _GBA, { [_h]: ["GET", "/?abac", 200] }, () => GetBucketAbacRequest$, () => GetBucketAbacOutput$ ]; var GetBucketAccelerateConfiguration$ = [ 9, n0, _GBAC, { [_h]: ["GET", "/?accelerate", 200] }, () => GetBucketAccelerateConfigurationRequest$, () => GetBucketAccelerateConfigurationOutput$ ]; var GetBucketAcl$ = [ 9, n0, _GBAe, { [_h]: ["GET", "/?acl", 200] }, () => GetBucketAclRequest$, () => GetBucketAclOutput$ ]; var GetBucketAnalyticsConfiguration$ = [ 9, n0, _GBACe, { [_h]: ["GET", "/?analytics&x-id=GetBucketAnalyticsConfiguration", 200] }, () => GetBucketAnalyticsConfigurationRequest$, () => GetBucketAnalyticsConfigurationOutput$ ]; var GetBucketCors$ = [ 9, n0, _GBC, { [_h]: ["GET", "/?cors", 200] }, () => GetBucketCorsRequest$, () => GetBucketCorsOutput$ ]; var GetBucketEncryption$ = [ 9, n0, _GBE, { [_h]: ["GET", "/?encryption", 200] }, () => GetBucketEncryptionRequest$, () => GetBucketEncryptionOutput$ ]; var GetBucketIntelligentTieringConfiguration$ = [ 9, n0, _GBITC, { [_h]: ["GET", "/?intelligent-tiering&x-id=GetBucketIntelligentTieringConfiguration", 200] }, () => GetBucketIntelligentTieringConfigurationRequest$, () => GetBucketIntelligentTieringConfigurationOutput$ ]; var GetBucketInventoryConfiguration$ = [ 9, n0, _GBIC, { [_h]: ["GET", "/?inventory&x-id=GetBucketInventoryConfiguration", 200] }, () => GetBucketInventoryConfigurationRequest$, () => GetBucketInventoryConfigurationOutput$ ]; var GetBucketLifecycleConfiguration$ = [ 9, n0, _GBLC, { [_h]: ["GET", "/?lifecycle", 200] }, () => GetBucketLifecycleConfigurationRequest$, () => GetBucketLifecycleConfigurationOutput$ ]; var GetBucketLocation$ = [ 9, n0, _GBL, { [_h]: ["GET", "/?location", 200] }, () => GetBucketLocationRequest$, () => GetBucketLocationOutput$ ]; var GetBucketLogging$ = [ 9, n0, _GBLe, { [_h]: ["GET", "/?logging", 200] }, () => GetBucketLoggingRequest$, () => GetBucketLoggingOutput$ ]; var GetBucketMetadataConfiguration$ = [ 9, n0, _GBMC, { [_h]: ["GET", "/?metadataConfiguration", 200] }, () => GetBucketMetadataConfigurationRequest$, () => GetBucketMetadataConfigurationOutput$ ]; var GetBucketMetadataTableConfiguration$ = [ 9, n0, _GBMTC, { [_h]: ["GET", "/?metadataTable", 200] }, () => GetBucketMetadataTableConfigurationRequest$, () => GetBucketMetadataTableConfigurationOutput$ ]; var GetBucketMetricsConfiguration$ = [ 9, n0, _GBMCe, { [_h]: ["GET", "/?metrics&x-id=GetBucketMetricsConfiguration", 200] }, () => GetBucketMetricsConfigurationRequest$, () => GetBucketMetricsConfigurationOutput$ ]; var GetBucketNotificationConfiguration$ = [ 9, n0, _GBNC, { [_h]: ["GET", "/?notification", 200] }, () => GetBucketNotificationConfigurationRequest$, () => NotificationConfiguration$ ]; var GetBucketOwnershipControls$ = [ 9, n0, _GBOC, { [_h]: ["GET", "/?ownershipControls", 200] }, () => GetBucketOwnershipControlsRequest$, () => GetBucketOwnershipControlsOutput$ ]; var GetBucketPolicy$ = [ 9, n0, _GBP, { [_h]: ["GET", "/?policy", 200] }, () => GetBucketPolicyRequest$, () => GetBucketPolicyOutput$ ]; var GetBucketPolicyStatus$ = [ 9, n0, _GBPS, { [_h]: ["GET", "/?policyStatus", 200] }, () => GetBucketPolicyStatusRequest$, () => GetBucketPolicyStatusOutput$ ]; var GetBucketReplication$ = [ 9, n0, _GBR, { [_h]: ["GET", "/?replication", 200] }, () => GetBucketReplicationRequest$, () => GetBucketReplicationOutput$ ]; var GetBucketRequestPayment$ = [ 9, n0, _GBRP, { [_h]: ["GET", "/?requestPayment", 200] }, () => GetBucketRequestPaymentRequest$, () => GetBucketRequestPaymentOutput$ ]; var GetBucketTagging$ = [ 9, n0, _GBT, { [_h]: ["GET", "/?tagging", 200] }, () => GetBucketTaggingRequest$, () => GetBucketTaggingOutput$ ]; var GetBucketVersioning$ = [ 9, n0, _GBV, { [_h]: ["GET", "/?versioning", 200] }, () => GetBucketVersioningRequest$, () => GetBucketVersioningOutput$ ]; var GetBucketWebsite$ = [ 9, n0, _GBW, { [_h]: ["GET", "/?website", 200] }, () => GetBucketWebsiteRequest$, () => GetBucketWebsiteOutput$ ]; var GetObject$ = [ 9, n0, _GO, { [_hC]: "-", [_h]: ["GET", "/{Key+}?x-id=GetObject", 200] }, () => GetObjectRequest$, () => GetObjectOutput$ ]; var GetObjectAcl$ = [ 9, n0, _GOA, { [_h]: ["GET", "/{Key+}?acl", 200] }, () => GetObjectAclRequest$, () => GetObjectAclOutput$ ]; var GetObjectAttributes$ = [ 9, n0, _GOAe, { [_h]: ["GET", "/{Key+}?attributes", 200] }, () => GetObjectAttributesRequest$, () => GetObjectAttributesOutput$ ]; var GetObjectLegalHold$ = [ 9, n0, _GOLH, { [_h]: ["GET", "/{Key+}?legal-hold", 200] }, () => GetObjectLegalHoldRequest$, () => GetObjectLegalHoldOutput$ ]; var GetObjectLockConfiguration$ = [ 9, n0, _GOLC, { [_h]: ["GET", "/?object-lock", 200] }, () => GetObjectLockConfigurationRequest$, () => GetObjectLockConfigurationOutput$ ]; var GetObjectRetention$ = [ 9, n0, _GORe, { [_h]: ["GET", "/{Key+}?retention", 200] }, () => GetObjectRetentionRequest$, () => GetObjectRetentionOutput$ ]; var GetObjectTagging$ = [ 9, n0, _GOT, { [_h]: ["GET", "/{Key+}?tagging", 200] }, () => GetObjectTaggingRequest$, () => GetObjectTaggingOutput$ ]; var GetObjectTorrent$ = [ 9, n0, _GOTe, { [_h]: ["GET", "/{Key+}?torrent", 200] }, () => GetObjectTorrentRequest$, () => GetObjectTorrentOutput$ ]; var GetPublicAccessBlock$ = [ 9, n0, _GPAB, { [_h]: ["GET", "/?publicAccessBlock", 200] }, () => GetPublicAccessBlockRequest$, () => GetPublicAccessBlockOutput$ ]; var HeadBucket$ = [ 9, n0, _HB, { [_h]: ["HEAD", "/", 200] }, () => HeadBucketRequest$, () => HeadBucketOutput$ ]; var HeadObject$ = [ 9, n0, _HO, { [_h]: ["HEAD", "/{Key+}", 200] }, () => HeadObjectRequest$, () => HeadObjectOutput$ ]; var ListBucketAnalyticsConfigurations$ = [ 9, n0, _LBAC, { [_h]: ["GET", "/?analytics&x-id=ListBucketAnalyticsConfigurations", 200] }, () => ListBucketAnalyticsConfigurationsRequest$, () => ListBucketAnalyticsConfigurationsOutput$ ]; var ListBucketIntelligentTieringConfigurations$ = [ 9, n0, _LBITC, { [_h]: ["GET", "/?intelligent-tiering&x-id=ListBucketIntelligentTieringConfigurations", 200] }, () => ListBucketIntelligentTieringConfigurationsRequest$, () => ListBucketIntelligentTieringConfigurationsOutput$ ]; var ListBucketInventoryConfigurations$ = [ 9, n0, _LBIC, { [_h]: ["GET", "/?inventory&x-id=ListBucketInventoryConfigurations", 200] }, () => ListBucketInventoryConfigurationsRequest$, () => ListBucketInventoryConfigurationsOutput$ ]; var ListBucketMetricsConfigurations$ = [ 9, n0, _LBMC, { [_h]: ["GET", "/?metrics&x-id=ListBucketMetricsConfigurations", 200] }, () => ListBucketMetricsConfigurationsRequest$, () => ListBucketMetricsConfigurationsOutput$ ]; var ListBuckets$ = [ 9, n0, _LB, { [_h]: ["GET", "/?x-id=ListBuckets", 200] }, () => ListBucketsRequest$, () => ListBucketsOutput$ ]; var ListDirectoryBuckets$ = [ 9, n0, _LDB, { [_h]: ["GET", "/?x-id=ListDirectoryBuckets", 200] }, () => ListDirectoryBucketsRequest$, () => ListDirectoryBucketsOutput$ ]; var ListMultipartUploads$ = [ 9, n0, _LMU, { [_h]: ["GET", "/?uploads", 200] }, () => ListMultipartUploadsRequest$, () => ListMultipartUploadsOutput$ ]; var ListObjects$ = [ 9, n0, _LO, { [_h]: ["GET", "/", 200] }, () => ListObjectsRequest$, () => ListObjectsOutput$ ]; var ListObjectsV2$ = [ 9, n0, _LOV, { [_h]: ["GET", "/?list-type=2", 200] }, () => ListObjectsV2Request$, () => ListObjectsV2Output$ ]; var ListObjectVersions$ = [ 9, n0, _LOVi, { [_h]: ["GET", "/?versions", 200] }, () => ListObjectVersionsRequest$, () => ListObjectVersionsOutput$ ]; var ListParts$ = [ 9, n0, _LP, { [_h]: ["GET", "/{Key+}?x-id=ListParts", 200] }, () => ListPartsRequest$, () => ListPartsOutput$ ]; var PutBucketAbac$ = [ 9, n0, _PBA, { [_hC]: "-", [_h]: ["PUT", "/?abac", 200] }, () => PutBucketAbacRequest$, () => __Unit ]; var PutBucketAccelerateConfiguration$ = [ 9, n0, _PBAC, { [_hC]: "-", [_h]: ["PUT", "/?accelerate", 200] }, () => PutBucketAccelerateConfigurationRequest$, () => __Unit ]; var PutBucketAcl$ = [ 9, n0, _PBAu, { [_hC]: "-", [_h]: ["PUT", "/?acl", 200] }, () => PutBucketAclRequest$, () => __Unit ]; var PutBucketAnalyticsConfiguration$ = [ 9, n0, _PBACu, { [_h]: ["PUT", "/?analytics", 200] }, () => PutBucketAnalyticsConfigurationRequest$, () => __Unit ]; var PutBucketCors$ = [ 9, n0, _PBC, { [_hC]: "-", [_h]: ["PUT", "/?cors", 200] }, () => PutBucketCorsRequest$, () => __Unit ]; var PutBucketEncryption$ = [ 9, n0, _PBE, { [_hC]: "-", [_h]: ["PUT", "/?encryption", 200] }, () => PutBucketEncryptionRequest$, () => __Unit ]; var PutBucketIntelligentTieringConfiguration$ = [ 9, n0, _PBITC, { [_h]: ["PUT", "/?intelligent-tiering", 200] }, () => PutBucketIntelligentTieringConfigurationRequest$, () => __Unit ]; var PutBucketInventoryConfiguration$ = [ 9, n0, _PBIC, { [_h]: ["PUT", "/?inventory", 200] }, () => PutBucketInventoryConfigurationRequest$, () => __Unit ]; var PutBucketLifecycleConfiguration$ = [ 9, n0, _PBLC, { [_hC]: "-", [_h]: ["PUT", "/?lifecycle", 200] }, () => PutBucketLifecycleConfigurationRequest$, () => PutBucketLifecycleConfigurationOutput$ ]; var PutBucketLogging$ = [ 9, n0, _PBL, { [_hC]: "-", [_h]: ["PUT", "/?logging", 200] }, () => PutBucketLoggingRequest$, () => __Unit ]; var PutBucketMetricsConfiguration$ = [ 9, n0, _PBMC, { [_h]: ["PUT", "/?metrics", 200] }, () => PutBucketMetricsConfigurationRequest$, () => __Unit ]; var PutBucketNotificationConfiguration$ = [ 9, n0, _PBNC, { [_h]: ["PUT", "/?notification", 200] }, () => PutBucketNotificationConfigurationRequest$, () => __Unit ]; var PutBucketOwnershipControls$ = [ 9, n0, _PBOC, { [_hC]: "-", [_h]: ["PUT", "/?ownershipControls", 200] }, () => PutBucketOwnershipControlsRequest$, () => __Unit ]; var PutBucketPolicy$ = [ 9, n0, _PBP, { [_hC]: "-", [_h]: ["PUT", "/?policy", 200] }, () => PutBucketPolicyRequest$, () => __Unit ]; var PutBucketReplication$ = [ 9, n0, _PBR, { [_hC]: "-", [_h]: ["PUT", "/?replication", 200] }, () => PutBucketReplicationRequest$, () => __Unit ]; var PutBucketRequestPayment$ = [ 9, n0, _PBRP, { [_hC]: "-", [_h]: ["PUT", "/?requestPayment", 200] }, () => PutBucketRequestPaymentRequest$, () => __Unit ]; var PutBucketTagging$ = [ 9, n0, _PBT, { [_hC]: "-", [_h]: ["PUT", "/?tagging", 200] }, () => PutBucketTaggingRequest$, () => __Unit ]; var PutBucketVersioning$ = [ 9, n0, _PBV, { [_hC]: "-", [_h]: ["PUT", "/?versioning", 200] }, () => PutBucketVersioningRequest$, () => __Unit ]; var PutBucketWebsite$ = [ 9, n0, _PBW, { [_hC]: "-", [_h]: ["PUT", "/?website", 200] }, () => PutBucketWebsiteRequest$, () => __Unit ]; var PutObject$ = [ 9, n0, _PO, { [_hC]: "-", [_h]: ["PUT", "/{Key+}?x-id=PutObject", 200] }, () => PutObjectRequest$, () => PutObjectOutput$ ]; var PutObjectAcl$ = [ 9, n0, _POA, { [_hC]: "-", [_h]: ["PUT", "/{Key+}?acl", 200] }, () => PutObjectAclRequest$, () => PutObjectAclOutput$ ]; var PutObjectLegalHold$ = [ 9, n0, _POLH, { [_hC]: "-", [_h]: ["PUT", "/{Key+}?legal-hold", 200] }, () => PutObjectLegalHoldRequest$, () => PutObjectLegalHoldOutput$ ]; var PutObjectLockConfiguration$ = [ 9, n0, _POLC, { [_hC]: "-", [_h]: ["PUT", "/?object-lock", 200] }, () => PutObjectLockConfigurationRequest$, () => PutObjectLockConfigurationOutput$ ]; var PutObjectRetention$ = [ 9, n0, _PORu, { [_hC]: "-", [_h]: ["PUT", "/{Key+}?retention", 200] }, () => PutObjectRetentionRequest$, () => PutObjectRetentionOutput$ ]; var PutObjectTagging$ = [ 9, n0, _POT, { [_hC]: "-", [_h]: ["PUT", "/{Key+}?tagging", 200] }, () => PutObjectTaggingRequest$, () => PutObjectTaggingOutput$ ]; var PutPublicAccessBlock$ = [ 9, n0, _PPAB, { [_hC]: "-", [_h]: ["PUT", "/?publicAccessBlock", 200] }, () => PutPublicAccessBlockRequest$, () => __Unit ]; var RenameObject$ = [ 9, n0, _RO, { [_h]: ["PUT", "/{Key+}?renameObject", 200] }, () => RenameObjectRequest$, () => RenameObjectOutput$ ]; var RestoreObject$ = [ 9, n0, _ROe, { [_hC]: "-", [_h]: ["POST", "/{Key+}?restore", 200] }, () => RestoreObjectRequest$, () => RestoreObjectOutput$ ]; var SelectObjectContent$ = [ 9, n0, _SOC, { [_h]: ["POST", "/{Key+}?select&select-type=2", 200] }, () => SelectObjectContentRequest$, () => SelectObjectContentOutput$ ]; var UpdateBucketMetadataInventoryTableConfiguration$ = [ 9, n0, _UBMITC, { [_hC]: "-", [_h]: ["PUT", "/?metadataInventoryTable", 200] }, () => UpdateBucketMetadataInventoryTableConfigurationRequest$, () => __Unit ]; var UpdateBucketMetadataJournalTableConfiguration$ = [ 9, n0, _UBMJTC, { [_hC]: "-", [_h]: ["PUT", "/?metadataJournalTable", 200] }, () => UpdateBucketMetadataJournalTableConfigurationRequest$, () => __Unit ]; var UpdateObjectEncryption$ = [ 9, n0, _UOE, { [_hC]: "-", [_h]: ["PUT", "/{Key+}?encryption", 200] }, () => UpdateObjectEncryptionRequest$, () => UpdateObjectEncryptionResponse$ ]; var UploadPart$ = [ 9, n0, _UP, { [_hC]: "-", [_h]: ["PUT", "/{Key+}?x-id=UploadPart", 200] }, () => UploadPartRequest$, () => UploadPartOutput$ ]; var UploadPartCopy$ = [ 9, n0, _UPC, { [_h]: ["PUT", "/{Key+}?x-id=UploadPartCopy", 200] }, () => UploadPartCopyRequest$, () => UploadPartCopyOutput$ ]; var WriteGetObjectResponse$ = [ 9, n0, _WGOR, { [_en]: ["{RequestRoute}."], [_h]: ["POST", "/WriteGetObjectResponse", 200] }, () => WriteGetObjectResponseRequest$, () => __Unit ]; // ../../node_modules/@aws-sdk/middleware-ssec/dist-es/index.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); function ssecMiddleware(options) { return (next) => async (args) => { const input = { ...args.input }; const properties = [ { target: "SSECustomerKey", hash: "SSECustomerKeyMD5" }, { target: "CopySourceSSECustomerKey", hash: "CopySourceSSECustomerKeyMD5" } ]; for (const prop of properties) { const value = input[prop.target]; if (value) { let valueForHash; if (typeof value === "string") { if (isValidBase64EncodedSSECustomerKey(value, options)) { valueForHash = options.base64Decoder(value); } else { valueForHash = options.utf8Decoder(value); input[prop.target] = options.base64Encoder(valueForHash); } } else { valueForHash = ArrayBuffer.isView(value) ? new Uint8Array(value.buffer, value.byteOffset, value.byteLength) : new Uint8Array(value); input[prop.target] = options.base64Encoder(valueForHash); } const hash3 = new options.md5(); hash3.update(valueForHash); input[prop.hash] = options.base64Encoder(await hash3.digest()); } } return next({ ...args, input }); }; } __name(ssecMiddleware, "ssecMiddleware"); var ssecMiddlewareOptions = { name: "ssecMiddleware", step: "initialize", tags: ["SSE"], override: true }; var getSsecPlugin = /* @__PURE__ */ __name((config3) => ({ applyToStack: /* @__PURE__ */ __name((clientStack) => { clientStack.add(ssecMiddleware(config3), ssecMiddlewareOptions); }, "applyToStack") }), "getSsecPlugin"); function isValidBase64EncodedSSECustomerKey(str, options) { const base64Regex = /^(?:[A-Za-z0-9+/]{4})*([A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$/; if (!base64Regex.test(str)) return false; try { const decodedBytes = options.base64Decoder(str); return decodedBytes.length === 32; } catch { return false; } } __name(isValidBase64EncodedSSECustomerKey, "isValidBase64EncodedSSECustomerKey"); // ../../node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectsCommand.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var DeleteObjectsCommand = class extends Command.classBuilder().ep({ ...commonParams, Bucket: { type: "contextParams", name: "Bucket" } }).m(function(Command2, cs, config3, o) { return [ getEndpointPlugin(config3, Command2.getEndpointParameterInstructions()), getFlexibleChecksumsPlugin(config3, { requestAlgorithmMember: { "httpHeader": "x-amz-sdk-checksum-algorithm", "name": "ChecksumAlgorithm" }, requestChecksumRequired: true }), getThrow200ExceptionsPlugin(config3) ]; }).s("AmazonS3", "DeleteObjects", {}).n("S3Client", "DeleteObjectsCommand").sc(DeleteObjects$).build() { static { __name(this, "DeleteObjectsCommand"); } }; // ../../node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectCommand.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var GetObjectCommand = class extends Command.classBuilder().ep({ ...commonParams, Bucket: { type: "contextParams", name: "Bucket" }, Key: { type: "contextParams", name: "Key" } }).m(function(Command2, cs, config3, o) { return [ getEndpointPlugin(config3, Command2.getEndpointParameterInstructions()), getFlexibleChecksumsPlugin(config3, { requestChecksumRequired: false, requestValidationModeMember: "ChecksumMode", "responseAlgorithms": ["CRC64NVME", "CRC32", "CRC32C", "SHA256", "SHA1"] }), getSsecPlugin(config3), getS3ExpiresMiddlewarePlugin(config3) ]; }).s("AmazonS3", "GetObject", {}).n("S3Client", "GetObjectCommand").sc(GetObject$).build() { static { __name(this, "GetObjectCommand"); } }; // ../../node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectCommand.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var PutObjectCommand = class extends Command.classBuilder().ep({ ...commonParams, Bucket: { type: "contextParams", name: "Bucket" }, Key: { type: "contextParams", name: "Key" } }).m(function(Command2, cs, config3, o) { return [ getEndpointPlugin(config3, Command2.getEndpointParameterInstructions()), getFlexibleChecksumsPlugin(config3, { requestAlgorithmMember: { "httpHeader": "x-amz-sdk-checksum-algorithm", "name": "ChecksumAlgorithm" }, requestChecksumRequired: false }), getCheckContentLengthHeaderPlugin(config3), getThrow200ExceptionsPlugin(config3), getSsecPlugin(config3) ]; }).s("AmazonS3", "PutObject", {}).n("S3Client", "PutObjectCommand").sc(PutObject$).build() { static { __name(this, "PutObjectCommand"); } }; // ../../node_modules/@aws-sdk/s3-request-presigner/dist-es/getSignedUrl.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/@aws-sdk/util-format-url/dist-es/index.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); function formatUrl(request) { const { port, query } = request; let { protocol, path: path3, hostname: hostname3 } = request; if (protocol && protocol.slice(-1) !== ":") { protocol += ":"; } if (port) { hostname3 += `:${port}`; } if (path3 && path3.charAt(0) !== "/") { path3 = `/${path3}`; } let queryString = query ? buildQueryString(query) : ""; if (queryString && queryString[0] !== "?") { queryString = `?${queryString}`; } let auth = ""; if (request.username != null || request.password != null) { const username = request.username ?? ""; const password = request.password ?? ""; auth = `${username}:${password}@`; } let fragment = ""; if (request.fragment) { fragment = `#${request.fragment}`; } return `${protocol}//${auth}${hostname3}${path3}${queryString}${fragment}`; } __name(formatUrl, "formatUrl"); // ../../node_modules/@aws-sdk/s3-request-presigner/dist-es/presigner.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/@aws-sdk/s3-request-presigner/dist-es/constants.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var UNSIGNED_PAYLOAD2 = "UNSIGNED-PAYLOAD"; var SHA256_HEADER2 = "X-Amz-Content-Sha256"; // ../../node_modules/@aws-sdk/s3-request-presigner/dist-es/presigner.js var S3RequestPresigner = class { static { __name(this, "S3RequestPresigner"); } signer; constructor(options) { const resolvedOptions = { service: options.signingName || options.service || "s3", uriEscapePath: options.uriEscapePath || false, applyChecksum: options.applyChecksum || false, ...options }; this.signer = new SignatureV4MultiRegion(resolvedOptions); } presign(requestToSign, { unsignableHeaders = /* @__PURE__ */ new Set(), hoistableHeaders = /* @__PURE__ */ new Set(), unhoistableHeaders = /* @__PURE__ */ new Set(), ...options } = {}) { this.prepareRequest(requestToSign, { unsignableHeaders, unhoistableHeaders, hoistableHeaders }); return this.signer.presign(requestToSign, { expiresIn: 900, unsignableHeaders, unhoistableHeaders, ...options }); } presignWithCredentials(requestToSign, credentials, { unsignableHeaders = /* @__PURE__ */ new Set(), hoistableHeaders = /* @__PURE__ */ new Set(), unhoistableHeaders = /* @__PURE__ */ new Set(), ...options } = {}) { this.prepareRequest(requestToSign, { unsignableHeaders, unhoistableHeaders, hoistableHeaders }); return this.signer.presignWithCredentials(requestToSign, credentials, { expiresIn: 900, unsignableHeaders, unhoistableHeaders, ...options }); } prepareRequest(requestToSign, { unsignableHeaders = /* @__PURE__ */ new Set(), unhoistableHeaders = /* @__PURE__ */ new Set(), hoistableHeaders = /* @__PURE__ */ new Set() } = {}) { unsignableHeaders.add("content-type"); Object.keys(requestToSign.headers).map((header) => header.toLowerCase()).filter((header) => header.startsWith("x-amz-server-side-encryption")).forEach((header) => { if (!hoistableHeaders.has(header)) { unhoistableHeaders.add(header); } }); requestToSign.headers[SHA256_HEADER2] = UNSIGNED_PAYLOAD2; const currentHostHeader = requestToSign.headers.host; const port = requestToSign.port; const expectedHostHeader = `${requestToSign.hostname}${requestToSign.port != null ? ":" + port : ""}`; if (!currentHostHeader || currentHostHeader === requestToSign.hostname && requestToSign.port != null) { requestToSign.headers.host = expectedHostHeader; } } }; // ../../node_modules/@aws-sdk/s3-request-presigner/dist-es/getSignedUrl.js var getSignedUrl = /* @__PURE__ */ __name(async (client, command, options = {}) => { let s3Presigner; let region; if (typeof client.config.endpointProvider === "function") { const endpointV2 = await getEndpointFromInstructions(command.input, command.constructor, client.config); const authScheme = endpointV2.properties?.authSchemes?.[0]; if (authScheme?.name === "sigv4a") { region = authScheme?.signingRegionSet?.join(","); } else { region = authScheme?.signingRegion; } s3Presigner = new S3RequestPresigner({ ...client.config, signingName: authScheme?.signingName, region: /* @__PURE__ */ __name(async () => region, "region") }); } else { s3Presigner = new S3RequestPresigner(client.config); } const presignInterceptMiddleware = /* @__PURE__ */ __name((next, context2) => async (args) => { const { request } = args; if (!HttpRequest.isInstance(request)) { throw new Error("Request to be presigned is not an valid HTTP request."); } delete request.headers["amz-sdk-invocation-id"]; delete request.headers["amz-sdk-request"]; delete request.headers["x-amz-user-agent"]; let presigned2; const presignerOptions = { ...options, signingRegion: options.signingRegion ?? context2["signing_region"] ?? region, signingService: options.signingService ?? context2["signing_service"] }; if (context2.s3ExpressIdentity) { presigned2 = await s3Presigner.presignWithCredentials(request, context2.s3ExpressIdentity, presignerOptions); } else { presigned2 = await s3Presigner.presign(request, presignerOptions); } return { response: {}, output: { $metadata: { httpStatusCode: 200 }, presigned: presigned2 } }; }, "presignInterceptMiddleware"); const middlewareName = "presignInterceptMiddleware"; const clientStack = client.middlewareStack.clone(); clientStack.addRelativeTo(presignInterceptMiddleware, { name: middlewareName, relation: "before", toMiddleware: "awsAuthMiddleware", override: true }); const handler = command.resolveMiddleware(clientStack, client.config, {}); const { output } = await handler({ input: command.input }); const { presigned } = output; return formatUrl(presigned); }, "getSignedUrl"); // src/lib/s3-client.ts var s3Client = null; var imageUploadS3 = /* @__PURE__ */ __name(async (body, type, key) => { const command = new PutObjectCommand({ Bucket: s3BucketName, Key: key, Body: body, ContentType: type }); const resp = await s3Client.send(command); const imageUrl = `${key}`; return imageUrl; }, "imageUploadS3"); async function deleteImageUtil({ bucket = s3BucketName, keys }) { if (keys.length === 0) { return true; } try { const deleteParams = { Bucket: bucket, Delete: { Objects: keys.map((key) => ({ Key: key })), Quiet: false } }; const deleteCommand = new DeleteObjectsCommand(deleteParams); await s3Client.send(deleteCommand); return true; } catch (error50) { console.error("Error deleting image:", error50); throw new Error("Failed to delete image"); return false; } } __name(deleteImageUtil, "deleteImageUtil"); function scaffoldAssetUrl(input) { if (Array.isArray(input)) { return input.map((key) => scaffoldAssetUrl(key)); } if (!input) { return ""; } const normalizedKey = input.replace(/^\/+/, ""); const domain3 = assetsDomain.endsWith("/") ? assetsDomain.slice(0, -1) : assetsDomain; return `${domain3}/${normalizedKey}`; } __name(scaffoldAssetUrl, "scaffoldAssetUrl"); async function generateSignedUrlFromS3Url(s3UrlRaw, expiresIn = 259200) { if (!s3UrlRaw) { return ""; } const s3Url2 = s3UrlRaw; try { const command = new GetObjectCommand({ Bucket: s3BucketName, Key: s3Url2 }); const signedUrl = await getSignedUrl(s3Client, command, { expiresIn }); return signedUrl; } catch (error50) { console.error("Error generating signed URL:", error50); throw new Error("Failed to generate signed URL"); } } __name(generateSignedUrlFromS3Url, "generateSignedUrlFromS3Url"); async function generateSignedUrlsFromS3Urls(s3Urls, expiresIn = 259200) { if (!s3Urls || !s3Urls.length) { return []; } try { const signedUrls = await Promise.all( s3Urls.map((url2) => generateSignedUrlFromS3Url(url2, expiresIn).catch(() => "")) ); return signedUrls; } catch (error50) { console.error("Error generating multiple signed URLs:", error50); return s3Urls.map(() => ""); } } __name(generateSignedUrlsFromS3Urls, "generateSignedUrlsFromS3Urls"); async function generateUploadUrl(key, mimeType, expiresIn = 180) { try { await createUploadUrlStatus(key); const command = new PutObjectCommand({ Bucket: s3BucketName, Key: key, ContentType: mimeType }); const signedUrl = await getSignedUrl(s3Client, command, { expiresIn }); return signedUrl; } catch (error50) { console.error("Error generating upload URL:", error50); throw new Error("Failed to generate upload URL"); } } __name(generateUploadUrl, "generateUploadUrl"); function extractKeyFromPresignedUrl(url2) { const u4 = new URL(url2); const rawKey = u4.pathname.replace(/^\/+/, ""); const decodedKey = decodeURIComponent(rawKey); const parts = decodedKey.split("/"); parts.shift(); return parts.join("/"); } __name(extractKeyFromPresignedUrl, "extractKeyFromPresignedUrl"); async function claimUploadUrl(url2) { try { const semiKey = extractKeyFromPresignedUrl(url2); const updated = await claimUploadUrlStatus(semiKey); if (!updated) { throw new Error("Upload URL not found or already claimed"); } } catch (error50) { console.error("Error claiming upload URL:", error50); throw new Error("Failed to claim upload URL"); } } __name(claimUploadUrl, "claimUploadUrl"); // src/trpc/apis/common-apis/common.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // src/trpc/trpc-index.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/@trpc/server/dist/index.mjs init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/@trpc/server/dist/initTRPC-RoZMIBeA.mjs init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var import_objectSpread2$2 = __toESM2(require_objectSpread2(), 1); var middlewareMarker = "middlewareMarker"; function createMiddlewareFactory() { function createMiddlewareInner(middlewares) { return { _middlewares: middlewares, unstable_pipe(middlewareBuilderOrFn) { const pipedMiddleware = "_middlewares" in middlewareBuilderOrFn ? middlewareBuilderOrFn._middlewares : [middlewareBuilderOrFn]; return createMiddlewareInner([...middlewares, ...pipedMiddleware]); } }; } __name(createMiddlewareInner, "createMiddlewareInner"); function createMiddleware(fn) { return createMiddlewareInner([fn]); } __name(createMiddleware, "createMiddleware"); return createMiddleware; } __name(createMiddlewareFactory, "createMiddlewareFactory"); function createInputMiddleware(parse3) { const inputMiddleware = /* @__PURE__ */ __name(async function inputValidatorMiddleware(opts) { let parsedInput; const rawInput = await opts.getRawInput(); try { parsedInput = await parse3(rawInput); } catch (cause) { throw new TRPCError({ code: "BAD_REQUEST", cause }); } const combinedInput = isObject(opts.input) && isObject(parsedInput) ? (0, import_objectSpread2$2.default)((0, import_objectSpread2$2.default)({}, opts.input), parsedInput) : parsedInput; return opts.next({ input: combinedInput }); }, "inputValidatorMiddleware"); inputMiddleware._type = "input"; return inputMiddleware; } __name(createInputMiddleware, "createInputMiddleware"); function createOutputMiddleware(parse3) { const outputMiddleware = /* @__PURE__ */ __name(async function outputValidatorMiddleware({ next }) { const result = await next(); if (!result.ok) return result; try { const data = await parse3(result.data); return (0, import_objectSpread2$2.default)((0, import_objectSpread2$2.default)({}, result), {}, { data }); } catch (cause) { throw new TRPCError({ message: "Output validation failed", code: "INTERNAL_SERVER_ERROR", cause }); } }, "outputValidatorMiddleware"); outputMiddleware._type = "output"; return outputMiddleware; } __name(createOutputMiddleware, "createOutputMiddleware"); var import_defineProperty3 = __toESM2(require_defineProperty(), 1); var StandardSchemaV1Error = class extends Error { static { __name(this, "StandardSchemaV1Error"); } /** * Creates a schema error with useful information. * * @param issues The schema issues. */ constructor(issues) { var _issues$; super((_issues$ = issues[0]) === null || _issues$ === void 0 ? void 0 : _issues$.message); (0, import_defineProperty3.default)(this, "issues", void 0); this.name = "SchemaError"; this.issues = issues; } }; function getParseFn(procedureParser) { const parser = procedureParser; const isStandardSchema = "~standard" in parser; if (typeof parser === "function" && typeof parser.assert === "function") return parser.assert.bind(parser); if (typeof parser === "function" && !isStandardSchema) return parser; if (typeof parser.parseAsync === "function") return parser.parseAsync.bind(parser); if (typeof parser.parse === "function") return parser.parse.bind(parser); if (typeof parser.validateSync === "function") return parser.validateSync.bind(parser); if (typeof parser.create === "function") return parser.create.bind(parser); if (typeof parser.assert === "function") return (value) => { parser.assert(value); return value; }; if (isStandardSchema) return async (value) => { const result = await parser["~standard"].validate(value); if (result.issues) throw new StandardSchemaV1Error(result.issues); return result.value; }; throw new Error("Could not find a validator fn"); } __name(getParseFn, "getParseFn"); var require_objectWithoutPropertiesLoose = __commonJS2({ "../../node_modules/.pnpm/@oxc-project+runtime@0.72.2/node_modules/@oxc-project/runtime/src/helpers/objectWithoutPropertiesLoose.js"(exports, module2) { function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t8 = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (e.includes(n)) continue; t8[n] = r[n]; } return t8; } __name(_objectWithoutPropertiesLoose, "_objectWithoutPropertiesLoose"); module2.exports = _objectWithoutPropertiesLoose, module2.exports.__esModule = true, module2.exports["default"] = module2.exports; } }); var require_objectWithoutProperties = __commonJS2({ "../../node_modules/.pnpm/@oxc-project+runtime@0.72.2/node_modules/@oxc-project/runtime/src/helpers/objectWithoutProperties.js"(exports, module2) { var objectWithoutPropertiesLoose = require_objectWithoutPropertiesLoose(); function _objectWithoutProperties$1(e, t8) { if (null == e) return {}; var o, r, i = objectWithoutPropertiesLoose(e, t8); if (Object.getOwnPropertySymbols) { var s = Object.getOwnPropertySymbols(e); for (r = 0; r < s.length; r++) o = s[r], t8.includes(o) || {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; } __name(_objectWithoutProperties$1, "_objectWithoutProperties$1"); module2.exports = _objectWithoutProperties$1, module2.exports.__esModule = true, module2.exports["default"] = module2.exports; } }); var import_objectWithoutProperties = __toESM2(require_objectWithoutProperties(), 1); var import_objectSpread2$13 = __toESM2(require_objectSpread2(), 1); var _excluded = [ "middlewares", "inputs", "meta" ]; function createNewBuilder(def1, def2) { const { middlewares = [], inputs, meta: meta3 } = def2, rest = (0, import_objectWithoutProperties.default)(def2, _excluded); return createBuilder((0, import_objectSpread2$13.default)((0, import_objectSpread2$13.default)({}, mergeWithoutOverrides(def1, rest)), {}, { inputs: [...def1.inputs, ...inputs !== null && inputs !== void 0 ? inputs : []], middlewares: [...def1.middlewares, ...middlewares], meta: def1.meta && meta3 ? (0, import_objectSpread2$13.default)((0, import_objectSpread2$13.default)({}, def1.meta), meta3) : meta3 !== null && meta3 !== void 0 ? meta3 : def1.meta })); } __name(createNewBuilder, "createNewBuilder"); function createBuilder(initDef = {}) { const _def = (0, import_objectSpread2$13.default)({ procedure: true, inputs: [], middlewares: [] }, initDef); const builder = { _def, input(input) { const parser = getParseFn(input); return createNewBuilder(_def, { inputs: [input], middlewares: [createInputMiddleware(parser)] }); }, output(output) { const parser = getParseFn(output); return createNewBuilder(_def, { output, middlewares: [createOutputMiddleware(parser)] }); }, meta(meta3) { return createNewBuilder(_def, { meta: meta3 }); }, use(middlewareBuilderOrFn) { const middlewares = "_middlewares" in middlewareBuilderOrFn ? middlewareBuilderOrFn._middlewares : [middlewareBuilderOrFn]; return createNewBuilder(_def, { middlewares }); }, unstable_concat(builder$1) { return createNewBuilder(_def, builder$1._def); }, concat(builder$1) { return createNewBuilder(_def, builder$1._def); }, query(resolver) { return createResolver((0, import_objectSpread2$13.default)((0, import_objectSpread2$13.default)({}, _def), {}, { type: "query" }), resolver); }, mutation(resolver) { return createResolver((0, import_objectSpread2$13.default)((0, import_objectSpread2$13.default)({}, _def), {}, { type: "mutation" }), resolver); }, subscription(resolver) { return createResolver((0, import_objectSpread2$13.default)((0, import_objectSpread2$13.default)({}, _def), {}, { type: "subscription" }), resolver); }, experimental_caller(caller) { return createNewBuilder(_def, { caller }); } }; return builder; } __name(createBuilder, "createBuilder"); function createResolver(_defIn, resolver) { const finalBuilder = createNewBuilder(_defIn, { resolver, middlewares: [/* @__PURE__ */ __name(async function resolveMiddleware(opts) { const data = await resolver(opts); return { marker: middlewareMarker, ok: true, data, ctx: opts.ctx }; }, "resolveMiddleware")] }); const _def = (0, import_objectSpread2$13.default)((0, import_objectSpread2$13.default)({}, finalBuilder._def), {}, { type: _defIn.type, experimental_caller: Boolean(finalBuilder._def.caller), meta: finalBuilder._def.meta, $types: null }); const invoke = createProcedureCaller(finalBuilder._def); const callerOverride = finalBuilder._def.caller; if (!callerOverride) return invoke; const callerWrapper = /* @__PURE__ */ __name(async (...args) => { return await callerOverride({ args, invoke, _def }); }, "callerWrapper"); callerWrapper._def = _def; return callerWrapper; } __name(createResolver, "createResolver"); var codeblock = ` This is a client-only function. If you want to call this function on the server, see https://trpc.io/docs/v11/server/server-side-calls `.trim(); async function callRecursive(index, _def, opts) { try { const middleware2 = _def.middlewares[index]; const result = await middleware2((0, import_objectSpread2$13.default)((0, import_objectSpread2$13.default)({}, opts), {}, { meta: _def.meta, input: opts.input, next(_nextOpts) { var _nextOpts$getRawInput; const nextOpts = _nextOpts; return callRecursive(index + 1, _def, (0, import_objectSpread2$13.default)((0, import_objectSpread2$13.default)({}, opts), {}, { ctx: (nextOpts === null || nextOpts === void 0 ? void 0 : nextOpts.ctx) ? (0, import_objectSpread2$13.default)((0, import_objectSpread2$13.default)({}, opts.ctx), nextOpts.ctx) : opts.ctx, input: nextOpts && "input" in nextOpts ? nextOpts.input : opts.input, getRawInput: (_nextOpts$getRawInput = nextOpts === null || nextOpts === void 0 ? void 0 : nextOpts.getRawInput) !== null && _nextOpts$getRawInput !== void 0 ? _nextOpts$getRawInput : opts.getRawInput })); } })); return result; } catch (cause) { return { ok: false, error: getTRPCErrorFromUnknown(cause), marker: middlewareMarker }; } } __name(callRecursive, "callRecursive"); function createProcedureCaller(_def) { async function procedure(opts) { if (!opts || !("getRawInput" in opts)) throw new Error(codeblock); const result = await callRecursive(0, _def, opts); if (!result) throw new TRPCError({ code: "INTERNAL_SERVER_ERROR", message: "No result from middlewares - did you forget to `return next()`?" }); if (!result.ok) throw result.error; return result.data; } __name(procedure, "procedure"); procedure._def = _def; procedure.procedure = true; procedure.meta = _def.meta; return procedure; } __name(createProcedureCaller, "createProcedureCaller"); var _globalThis$process; var _globalThis$process2; var _globalThis$process3; var isServerDefault = typeof window === "undefined" || "Deno" in window || ((_globalThis$process = globalThis.process) === null || _globalThis$process === void 0 || (_globalThis$process = _globalThis$process.env) === null || _globalThis$process === void 0 ? void 0 : _globalThis$process["NODE_ENV"]) === "test" || !!((_globalThis$process2 = globalThis.process) === null || _globalThis$process2 === void 0 || (_globalThis$process2 = _globalThis$process2.env) === null || _globalThis$process2 === void 0 ? void 0 : _globalThis$process2["JEST_WORKER_ID"]) || !!((_globalThis$process3 = globalThis.process) === null || _globalThis$process3 === void 0 || (_globalThis$process3 = _globalThis$process3.env) === null || _globalThis$process3 === void 0 ? void 0 : _globalThis$process3["VITEST_WORKER_ID"]); var import_objectSpread25 = __toESM2(require_objectSpread2(), 1); var TRPCBuilder = class TRPCBuilder2 { static { __name(this, "TRPCBuilder"); } /** * Add a context shape as a generic to the root object * @see https://trpc.io/docs/v11/server/context */ context() { return new TRPCBuilder2(); } /** * Add a meta shape as a generic to the root object * @see https://trpc.io/docs/v11/quickstart */ meta() { return new TRPCBuilder2(); } /** * Create the root object * @see https://trpc.io/docs/v11/server/routers#initialize-trpc */ create(opts) { var _opts$transformer, _opts$isDev, _globalThis$process$1, _opts$allowOutsideOfS, _opts$errorFormatter, _opts$isServer; const config3 = (0, import_objectSpread25.default)((0, import_objectSpread25.default)({}, opts), {}, { transformer: getDataTransformer((_opts$transformer = opts === null || opts === void 0 ? void 0 : opts.transformer) !== null && _opts$transformer !== void 0 ? _opts$transformer : defaultTransformer), isDev: (_opts$isDev = opts === null || opts === void 0 ? void 0 : opts.isDev) !== null && _opts$isDev !== void 0 ? _opts$isDev : ((_globalThis$process$1 = globalThis.process) === null || _globalThis$process$1 === void 0 ? void 0 : _globalThis$process$1.env["NODE_ENV"]) !== "production", allowOutsideOfServer: (_opts$allowOutsideOfS = opts === null || opts === void 0 ? void 0 : opts.allowOutsideOfServer) !== null && _opts$allowOutsideOfS !== void 0 ? _opts$allowOutsideOfS : false, errorFormatter: (_opts$errorFormatter = opts === null || opts === void 0 ? void 0 : opts.errorFormatter) !== null && _opts$errorFormatter !== void 0 ? _opts$errorFormatter : defaultFormatter, isServer: (_opts$isServer = opts === null || opts === void 0 ? void 0 : opts.isServer) !== null && _opts$isServer !== void 0 ? _opts$isServer : isServerDefault, $types: null }); { var _opts$isServer2; const isServer = (_opts$isServer2 = opts === null || opts === void 0 ? void 0 : opts.isServer) !== null && _opts$isServer2 !== void 0 ? _opts$isServer2 : isServerDefault; if (!isServer && (opts === null || opts === void 0 ? void 0 : opts.allowOutsideOfServer) !== true) throw new Error(`You're trying to use @trpc/server in a non-server environment. This is not supported by default.`); } return { _config: config3, procedure: createBuilder({ meta: opts === null || opts === void 0 ? void 0 : opts.defaultMeta }), middleware: createMiddlewareFactory(), router: createRouterFactory(config3), mergeRouters, createCallerFactory: createCallerFactory() }; } }; var initTRPC = new TRPCBuilder(); // src/trpc/trpc-index.ts var t = initTRPC.context().create(); var middleware = t.middleware; var router2 = t.router; var errorLoggerMiddleware = middleware(async ({ path: path3, type, next, ctx }) => { const start = Date.now(); try { const result = await next(); const duration3 = Date.now() - start; if (true) { console.log(`\u2705 ${type} ${path3} - ${duration3}ms`); } return result; } catch (error50) { const duration3 = Date.now() - start; const err = error50; console.error("\u{1F6A8} tRPC Error:", { timestamp: (/* @__PURE__ */ new Date()).toISOString(), path: path3, type, duration: `${duration3}ms`, userId: ctx?.user?.userId || ctx?.staffUser?.id || "anonymous", error: { name: err.name, message: err.message, code: err.code, stack: err.stack }, // Add SQL-specific details if available ...err.code && { sqlCode: err.code }, ...err.meta && { sqlMeta: err.meta }, ...err.sql && { sql: err.sql } }); throw error50; } }); var publicProcedure = t.procedure.use(errorLoggerMiddleware); var protectedProcedure = t.procedure.use(errorLoggerMiddleware).use( middleware(async ({ ctx, next }) => { if (!ctx.user && !ctx.staffUser) { throw new TRPCError({ code: "UNAUTHORIZED" }); } return next(); }) ); var createCallerFactory2 = t.createCallerFactory; var createTRPCRouter = t.router; // src/stores/product-store.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); async function initializeProducts() { try { console.log("Initializing product store in Redis..."); const productsData = await getAllProductsForCache(); const allStores = await getAllStoresForCache(); const storeMap = new Map(allStores.map((s) => [s.id, s])); const allDeliverySlots = await getAllDeliverySlotsForCache(); const deliverySlotsMap = /* @__PURE__ */ new Map(); for (const slot of allDeliverySlots) { if (!deliverySlotsMap.has(slot.productId)) deliverySlotsMap.set(slot.productId, []); deliverySlotsMap.get(slot.productId).push(slot); } const allSpecialDeals = await getAllSpecialDealsForCache(); const specialDealsMap = /* @__PURE__ */ new Map(); for (const deal of allSpecialDeals) { if (!specialDealsMap.has(deal.productId)) specialDealsMap.set(deal.productId, []); specialDealsMap.get(deal.productId).push(deal); } const allProductTags = await getAllProductTagsForCache(); const productTagsMap = /* @__PURE__ */ new Map(); for (const tag2 of allProductTags) { if (!productTagsMap.has(tag2.productId)) productTagsMap.set(tag2.productId, []); productTagsMap.get(tag2.productId).push(tag2.tagName); } console.log("Product store initialized successfully"); } catch (error50) { console.error("Error initializing product store:", error50); } } __name(initializeProducts, "initializeProducts"); async function getProductById5(id) { try { const product = await getProductById(id); if (!product) return null; const signedImages = scaffoldAssetUrl( product.images || [] ); const allStores = await getAllStoresForCache(); const store = product.storeId ? allStores.find((s) => s.id === product.storeId) || null : null; const allDeliverySlots = await getAllDeliverySlotsForCache(); const productSlots2 = allDeliverySlots.filter((s) => s.productId === id); const allSpecialDeals = await getAllSpecialDealsForCache(); const productDeals = allSpecialDeals.filter((d) => d.productId === id); const allProductTags = await getAllProductTagsForCache(); const productTagNames = allProductTags.filter((t8) => t8.productId === id).map((t8) => t8.tagName); return { id: product.id, name: product.name, shortDescription: product.shortDescription, longDescription: product.longDescription, price: product.price.toString(), marketPrice: product.marketPrice?.toString() || null, unitNotation: product.unit.shortNotation, images: signedImages, isOutOfStock: product.isOutOfStock, store: store ? { id: store.id, name: store.name, description: store.description } : null, incrementStep: product.incrementStep, productQuantity: product.productQuantity, isFlashAvailable: product.isFlashAvailable, flashPrice: product.flashPrice?.toString() || null, deliverySlots: productSlots2.map((s) => ({ id: s.id, deliveryTime: s.deliveryTime, freezeTime: s.freezeTime, isCapacityFull: s.isCapacityFull })), specialDeals: productDeals.map((d) => ({ quantity: d.quantity.toString(), price: d.price.toString(), validTill: d.validTill })), productTags: productTagNames }; } catch (error50) { console.error(`Error getting product ${id}:`, error50); return null; } } __name(getProductById5, "getProductById"); async function getAllProducts2() { try { const productsData = await getAllProductsForCache(); const allStores = await getAllStoresForCache(); const storeMap = new Map(allStores.map((s) => [s.id, s])); const allDeliverySlots = await getAllDeliverySlotsForCache(); const deliverySlotsMap = /* @__PURE__ */ new Map(); for (const slot of allDeliverySlots) { if (!deliverySlotsMap.has(slot.productId)) deliverySlotsMap.set(slot.productId, []); deliverySlotsMap.get(slot.productId).push(slot); } const allSpecialDeals = await getAllSpecialDealsForCache(); const specialDealsMap = /* @__PURE__ */ new Map(); for (const deal of allSpecialDeals) { if (!specialDealsMap.has(deal.productId)) specialDealsMap.set(deal.productId, []); specialDealsMap.get(deal.productId).push(deal); } const allProductTags = await getAllProductTagsForCache(); const productTagsMap = /* @__PURE__ */ new Map(); for (const tag2 of allProductTags) { if (!productTagsMap.has(tag2.productId)) productTagsMap.set(tag2.productId, []); productTagsMap.get(tag2.productId).push(tag2.tagName); } const products = []; for (const product of productsData) { const signedImages = scaffoldAssetUrl( product.images || [] ); const store = product.storeId ? storeMap.get(product.storeId) || null : null; const deliverySlots = deliverySlotsMap.get(product.id) || []; const specialDeals2 = specialDealsMap.get(product.id) || []; const productTags2 = productTagsMap.get(product.id) || []; products.push({ id: product.id, name: product.name, shortDescription: product.shortDescription, longDescription: product.longDescription, price: product.price.toString(), marketPrice: product.marketPrice?.toString() || null, unitNotation: product.unitShortNotation, images: signedImages, isOutOfStock: product.isOutOfStock, store: store ? { id: store.id, name: store.name, description: store.description } : null, incrementStep: product.incrementStep, productQuantity: product.productQuantity, isFlashAvailable: product.isFlashAvailable, flashPrice: product.flashPrice?.toString() || null, deliverySlots: deliverySlots.map((s) => ({ id: s.id, deliveryTime: s.deliveryTime, freezeTime: s.freezeTime, isCapacityFull: s.isCapacityFull })), specialDeals: specialDeals2.map((d) => ({ quantity: d.quantity.toString(), price: d.price.toString(), validTill: d.validTill })), productTags: productTags2 }); } return products; } catch (error50) { console.error("Error getting all products:", error50); return []; } } __name(getAllProducts2, "getAllProducts"); // src/stores/product-tag-store.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); async function transformTagToStoreTag(tag2) { const signedImageUrl = tag2.imageUrl ? await generateSignedUrlFromS3Url(tag2.imageUrl) : null; return { id: tag2.id, tagName: tag2.tagName, tagDescription: tag2.tagDescription, imageUrl: signedImageUrl, isDashboardTag: tag2.isDashboardTag, relatedStores: tag2.relatedStores || [], productIds: tag2.products ? tag2.products.map((p) => p.productId) : [] }; } __name(transformTagToStoreTag, "transformTagToStoreTag"); async function initializeProductTagStore() { try { console.log("Initializing product tag store in Redis..."); const tagsData = await getAllTagsForCache(); const productTagsData = await getAllTagProductMappings(); const productIdsByTag = /* @__PURE__ */ new Map(); for (const pt of productTagsData) { if (!productIdsByTag.has(pt.tagId)) { productIdsByTag.set(pt.tagId, []); } productIdsByTag.get(pt.tagId).push(pt.productId); } console.log("Product tag store initialized successfully"); } catch (error50) { console.error("Error initializing product tag store:", error50); } } __name(initializeProductTagStore, "initializeProductTagStore"); async function getDashboardTags() { try { const tags = await getAllProductTags(); const result = []; for (const tag2 of tags) { if (tag2.isDashboardTag) { result.push(await transformTagToStoreTag(tag2)); } } return result; } catch (error50) { console.error("Error getting dashboard tags:", error50); return []; } } __name(getDashboardTags, "getDashboardTags"); async function getTagsByStoreId(storeId) { try { const tags = await getAllProductTags(); const result = []; for (const tag2 of tags) { const relatedStores = tag2.relatedStores || []; if (relatedStores.includes(storeId)) { result.push(await transformTagToStoreTag(tag2)); } } return result; } catch (error50) { console.error(`Error getting tags for store ${storeId}:`, error50); return []; } } __name(getTagsByStoreId, "getTagsByStoreId"); // src/trpc/apis/common-apis/common.ts var getNextDeliveryDate = getNextDeliveryDateWithCapacity; async function scaffoldProducts() { let products = await getAllProducts2(); products = products.filter((item) => Boolean(item.id)); const suspendedProductIds = new Set(await getSuspendedProductIds()); products = products.filter((product) => !suspendedProductIds.has(product.id)); const formattedProducts = await Promise.all( products.map(async (product) => { const nextDeliveryDate = await getNextDeliveryDateWithCapacity(product.id); return { id: product.id, name: product.name, shortDescription: product.shortDescription, price: parseFloat(product.price), marketPrice: product.marketPrice ? parseFloat(product.marketPrice) : null, unit: product.unitNotation, unitNotation: product.unitNotation, incrementStep: product.incrementStep, productQuantity: product.productQuantity, storeId: product.store?.id || null, isOutOfStock: product.isOutOfStock, isFlashAvailable: product.isFlashAvailable, nextDeliveryDate: nextDeliveryDate ? nextDeliveryDate.toISOString() : null, images: product.images, flashPrice: product.flashPrice }; }) ); return { products: formattedProducts, count: formattedProducts.length }; } __name(scaffoldProducts, "scaffoldProducts"); var commonRouter = router2({ getDashboardTags: publicProcedure.query(async () => { const tags = await getDashboardTags(); return { tags }; }), getAllProductsSummary: publicProcedure.query(async () => { const response = await scaffoldProducts(); return response; }) /* // Old implementation - moved to common-trpc-index.ts: getStoresSummary: publicProcedure .query(async () => { const stores = await getStoresSummary(); return { stores }; }), healthCheck: publicProcedure .query(async () => { const result = await healthCheck(); return result; }), */ }); // src/apis/common-apis/apis/common-product.controller.ts var getAllProductsSummary = /* @__PURE__ */ __name(async (c) => { try { const tagId = c.req.query("tagId"); const tagIdNum = tagId ? parseInt(tagId) : void 0; if (tagIdNum) { const products = await getAllProductsWithUnits(tagIdNum); if (products.length === 0) { return c.json({ products: [], count: 0 }, 200); } } const productsWithUnits = await getAllProductsWithUnits(tagIdNum); const formattedProducts = await Promise.all( productsWithUnits.map(async (product) => { const nextDeliveryDate = await getNextDeliveryDate(product.id); return { id: product.id, name: product.name, shortDescription: product.shortDescription, price: product.price, marketPrice: product.marketPrice, unit: product.unitShortNotation, productQuantity: product.productQuantity, isOutOfStock: product.isOutOfStock, nextDeliveryDate: nextDeliveryDate ? nextDeliveryDate.toISOString() : null, images: scaffoldAssetUrl(product.images || []) }; }) ); return c.json({ products: formattedProducts, count: formattedProducts.length }, 200); } catch (error50) { console.error("Get products summary error:", error50); return c.json({ error: "Failed to fetch products summary" }, 500); } }, "getAllProductsSummary"); // src/apis/common-apis/apis/common-product.router.ts var router3 = new Hono2(); router3.get("/summary", getAllProductsSummary); var commonProductsRouter = router3; var common_product_router_default = commonProductsRouter; // src/apis/common-apis/apis/common.router.ts var router4 = new Hono2(); router4.route("/products", common_product_router_default); var commonRouter2 = router4; var common_router_default = commonRouter2; // src/v1-router.ts var router5 = new Hono2(); router5.route("/av", av_router_default); router5.route("/cm", common_router_default); var v1Router = router5; var v1_router_default = v1Router; // src/test-controller.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var router6 = new Hono2(); router6.get("/", (c) => { return c.json({ status: "ok", message: "Health check passed", timestamp: (/* @__PURE__ */ new Date()).toISOString() }); }); var test_controller_default = router6; // src/middleware/auth.middleware.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var authenticateUser = /* @__PURE__ */ __name(async (c, next) => { try { const authHeader = c.req.header("authorization"); if (!authHeader?.startsWith("Bearer ")) { throw new ApiError("Authorization token required", 401); } const token = authHeader.substring(7); console.log(c.req.header); const { payload } = await jwtVerify(token, encodedJwtSecret); const decoded = payload; if (decoded.staffId) { const staff = await getStaffUserById(decoded.staffId); if (!staff) { throw new ApiError("Invalid staff token", 401); } c.set("staffUser", { id: staff.id, name: staff.name }); } else { c.set("user", decoded); const suspended = await isUserSuspended(decoded.userId); if (suspended) { throw new ApiError("Account suspended", 403); } } await next(); } catch (error50) { throw error50; } }, "authenticateUser"); // src/main-router.ts var router7 = new Hono2(); router7.get("/health", (c) => { return c.json({ status: "OK", timestamp: (/* @__PURE__ */ new Date()).toISOString(), uptime: process.uptime(), message: "Hello world" }); }); router7.get("/seed", (c) => { return c.json({ status: "OK", timestamp: (/* @__PURE__ */ new Date()).toISOString(), uptime: process.uptime() }); }); router7.use("*", authenticateUser); router7.route("/v1", v1_router_default); router7.route("/test", test_controller_default); var mainRouter = router7; var main_router_default = mainRouter; // src/trpc/router.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/zod/index.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/zod/v4/classic/external.js var external_exports = {}; __export(external_exports, { $brand: () => $brand, $input: () => $input, $output: () => $output, NEVER: () => NEVER, TimePrecision: () => TimePrecision, ZodAny: () => ZodAny, ZodArray: () => ZodArray, ZodBase64: () => ZodBase64, ZodBase64URL: () => ZodBase64URL, ZodBigInt: () => ZodBigInt, ZodBigIntFormat: () => ZodBigIntFormat, ZodBoolean: () => ZodBoolean, ZodCIDRv4: () => ZodCIDRv4, ZodCIDRv6: () => ZodCIDRv6, ZodCUID: () => ZodCUID, ZodCUID2: () => ZodCUID2, ZodCatch: () => ZodCatch, ZodCodec: () => ZodCodec, ZodCustom: () => ZodCustom, ZodCustomStringFormat: () => ZodCustomStringFormat, ZodDate: () => ZodDate, ZodDefault: () => ZodDefault, ZodDiscriminatedUnion: () => ZodDiscriminatedUnion, ZodE164: () => ZodE164, ZodEmail: () => ZodEmail, ZodEmoji: () => ZodEmoji, ZodEnum: () => ZodEnum, ZodError: () => ZodError, ZodExactOptional: () => ZodExactOptional, ZodFile: () => ZodFile, ZodFirstPartyTypeKind: () => ZodFirstPartyTypeKind, ZodFunction: () => ZodFunction, ZodGUID: () => ZodGUID, ZodIPv4: () => ZodIPv4, ZodIPv6: () => ZodIPv6, ZodISODate: () => ZodISODate, ZodISODateTime: () => ZodISODateTime, ZodISODuration: () => ZodISODuration, ZodISOTime: () => ZodISOTime, ZodIntersection: () => ZodIntersection, ZodIssueCode: () => ZodIssueCode, ZodJWT: () => ZodJWT, ZodKSUID: () => ZodKSUID, ZodLazy: () => ZodLazy, ZodLiteral: () => ZodLiteral, ZodMAC: () => ZodMAC, ZodMap: () => ZodMap, ZodNaN: () => ZodNaN, ZodNanoID: () => ZodNanoID, ZodNever: () => ZodNever, ZodNonOptional: () => ZodNonOptional, ZodNull: () => ZodNull, ZodNullable: () => ZodNullable, ZodNumber: () => ZodNumber, ZodNumberFormat: () => ZodNumberFormat, ZodObject: () => ZodObject, ZodOptional: () => ZodOptional, ZodPipe: () => ZodPipe, ZodPrefault: () => ZodPrefault, ZodPromise: () => ZodPromise, ZodReadonly: () => ZodReadonly, ZodRealError: () => ZodRealError, ZodRecord: () => ZodRecord, ZodSet: () => ZodSet, ZodString: () => ZodString, ZodStringFormat: () => ZodStringFormat, ZodSuccess: () => ZodSuccess, ZodSymbol: () => ZodSymbol, ZodTemplateLiteral: () => ZodTemplateLiteral, ZodTransform: () => ZodTransform, ZodTuple: () => ZodTuple, ZodType: () => ZodType, ZodULID: () => ZodULID, ZodURL: () => ZodURL, ZodUUID: () => ZodUUID, ZodUndefined: () => ZodUndefined, ZodUnion: () => ZodUnion, ZodUnknown: () => ZodUnknown, ZodVoid: () => ZodVoid, ZodXID: () => ZodXID, ZodXor: () => ZodXor, _ZodString: () => _ZodString, _default: () => _default2, _function: () => _function, any: () => any, array: () => array, base64: () => base642, base64url: () => base64url2, bigint: () => bigint3, boolean: () => boolean2, catch: () => _catch2, check: () => check2, cidrv4: () => cidrv42, cidrv6: () => cidrv62, clone: () => clone, codec: () => codec, coerce: () => coerce_exports, config: () => config2, core: () => core_exports2, cuid: () => cuid3, cuid2: () => cuid22, custom: () => custom, date: () => date3, decode: () => decode3, decodeAsync: () => decodeAsync2, describe: () => describe2, discriminatedUnion: () => discriminatedUnion, e164: () => e1642, email: () => email2, emoji: () => emoji2, encode: () => encode4, encodeAsync: () => encodeAsync2, endsWith: () => _endsWith, enum: () => _enum2, exactOptional: () => exactOptional, file: () => file, flattenError: () => flattenError, float32: () => float32, float64: () => float64, formatError: () => formatError, fromJSONSchema: () => fromJSONSchema, function: () => _function, getErrorMap: () => getErrorMap, globalRegistry: () => globalRegistry, gt: () => _gt, gte: () => _gte, guid: () => guid2, hash: () => hash, hex: () => hex2, hostname: () => hostname2, httpUrl: () => httpUrl, includes: () => _includes, instanceof: () => _instanceof, int: () => int, int32: () => int32, int64: () => int64, intersection: () => intersection, ipv4: () => ipv42, ipv6: () => ipv62, iso: () => iso_exports, json: () => json, jwt: () => jwt, keyof: () => keyof, ksuid: () => ksuid2, lazy: () => lazy2, length: () => _length, literal: () => literal, locales: () => locales_exports, looseObject: () => looseObject, looseRecord: () => looseRecord, lowercase: () => _lowercase, lt: () => _lt, lte: () => _lte, mac: () => mac2, map: () => map, maxLength: () => _maxLength, maxSize: () => _maxSize, meta: () => meta2, mime: () => _mime, minLength: () => _minLength, minSize: () => _minSize, multipleOf: () => _multipleOf, nan: () => nan, nanoid: () => nanoid2, nativeEnum: () => nativeEnum, negative: () => _negative, never: () => never, nonnegative: () => _nonnegative, nonoptional: () => nonoptional, nonpositive: () => _nonpositive, normalize: () => _normalize, null: () => _null3, nullable: () => nullable, nullish: () => nullish2, number: () => number2, object: () => object, optional: () => optional, overwrite: () => _overwrite, parse: () => parse2, parseAsync: () => parseAsync2, partialRecord: () => partialRecord, pipe: () => pipe, positive: () => _positive, prefault: () => prefault, preprocess: () => preprocess, prettifyError: () => prettifyError, promise: () => promise, property: () => _property, readonly: () => readonly, record: () => record, refine: () => refine, regex: () => _regex, regexes: () => regexes_exports, registry: () => registry, safeDecode: () => safeDecode2, safeDecodeAsync: () => safeDecodeAsync2, safeEncode: () => safeEncode2, safeEncodeAsync: () => safeEncodeAsync2, safeParse: () => safeParse2, safeParseAsync: () => safeParseAsync2, set: () => set, setErrorMap: () => setErrorMap, size: () => _size, slugify: () => _slugify, startsWith: () => _startsWith, strictObject: () => strictObject, string: () => string2, stringFormat: () => stringFormat, stringbool: () => stringbool, success: () => success, superRefine: () => superRefine, symbol: () => symbol, templateLiteral: () => templateLiteral, toJSONSchema: () => toJSONSchema, toLowerCase: () => _toLowerCase, toUpperCase: () => _toUpperCase, transform: () => transform, treeifyError: () => treeifyError, trim: () => _trim, tuple: () => tuple, uint32: () => uint32, uint64: () => uint64, ulid: () => ulid2, undefined: () => _undefined3, union: () => union2, unknown: () => unknown, uppercase: () => _uppercase, url: () => url, util: () => util_exports, uuid: () => uuid2, uuidv4: () => uuidv4, uuidv6: () => uuidv6, uuidv7: () => uuidv7, void: () => _void2, xid: () => xid2, xor: () => xor }); init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/zod/v4/core/index.js var core_exports2 = {}; __export(core_exports2, { $ZodAny: () => $ZodAny, $ZodArray: () => $ZodArray, $ZodAsyncError: () => $ZodAsyncError, $ZodBase64: () => $ZodBase64, $ZodBase64URL: () => $ZodBase64URL, $ZodBigInt: () => $ZodBigInt, $ZodBigIntFormat: () => $ZodBigIntFormat, $ZodBoolean: () => $ZodBoolean, $ZodCIDRv4: () => $ZodCIDRv4, $ZodCIDRv6: () => $ZodCIDRv6, $ZodCUID: () => $ZodCUID, $ZodCUID2: () => $ZodCUID2, $ZodCatch: () => $ZodCatch, $ZodCheck: () => $ZodCheck, $ZodCheckBigIntFormat: () => $ZodCheckBigIntFormat, $ZodCheckEndsWith: () => $ZodCheckEndsWith, $ZodCheckGreaterThan: () => $ZodCheckGreaterThan, $ZodCheckIncludes: () => $ZodCheckIncludes, $ZodCheckLengthEquals: () => $ZodCheckLengthEquals, $ZodCheckLessThan: () => $ZodCheckLessThan, $ZodCheckLowerCase: () => $ZodCheckLowerCase, $ZodCheckMaxLength: () => $ZodCheckMaxLength, $ZodCheckMaxSize: () => $ZodCheckMaxSize, $ZodCheckMimeType: () => $ZodCheckMimeType, $ZodCheckMinLength: () => $ZodCheckMinLength, $ZodCheckMinSize: () => $ZodCheckMinSize, $ZodCheckMultipleOf: () => $ZodCheckMultipleOf, $ZodCheckNumberFormat: () => $ZodCheckNumberFormat, $ZodCheckOverwrite: () => $ZodCheckOverwrite, $ZodCheckProperty: () => $ZodCheckProperty, $ZodCheckRegex: () => $ZodCheckRegex, $ZodCheckSizeEquals: () => $ZodCheckSizeEquals, $ZodCheckStartsWith: () => $ZodCheckStartsWith, $ZodCheckStringFormat: () => $ZodCheckStringFormat, $ZodCheckUpperCase: () => $ZodCheckUpperCase, $ZodCodec: () => $ZodCodec, $ZodCustom: () => $ZodCustom, $ZodCustomStringFormat: () => $ZodCustomStringFormat, $ZodDate: () => $ZodDate, $ZodDefault: () => $ZodDefault, $ZodDiscriminatedUnion: () => $ZodDiscriminatedUnion, $ZodE164: () => $ZodE164, $ZodEmail: () => $ZodEmail, $ZodEmoji: () => $ZodEmoji, $ZodEncodeError: () => $ZodEncodeError, $ZodEnum: () => $ZodEnum, $ZodError: () => $ZodError, $ZodExactOptional: () => $ZodExactOptional, $ZodFile: () => $ZodFile, $ZodFunction: () => $ZodFunction, $ZodGUID: () => $ZodGUID, $ZodIPv4: () => $ZodIPv4, $ZodIPv6: () => $ZodIPv6, $ZodISODate: () => $ZodISODate, $ZodISODateTime: () => $ZodISODateTime, $ZodISODuration: () => $ZodISODuration, $ZodISOTime: () => $ZodISOTime, $ZodIntersection: () => $ZodIntersection, $ZodJWT: () => $ZodJWT, $ZodKSUID: () => $ZodKSUID, $ZodLazy: () => $ZodLazy, $ZodLiteral: () => $ZodLiteral, $ZodMAC: () => $ZodMAC, $ZodMap: () => $ZodMap, $ZodNaN: () => $ZodNaN, $ZodNanoID: () => $ZodNanoID, $ZodNever: () => $ZodNever, $ZodNonOptional: () => $ZodNonOptional, $ZodNull: () => $ZodNull, $ZodNullable: () => $ZodNullable, $ZodNumber: () => $ZodNumber, $ZodNumberFormat: () => $ZodNumberFormat, $ZodObject: () => $ZodObject, $ZodObjectJIT: () => $ZodObjectJIT, $ZodOptional: () => $ZodOptional, $ZodPipe: () => $ZodPipe, $ZodPrefault: () => $ZodPrefault, $ZodPromise: () => $ZodPromise, $ZodReadonly: () => $ZodReadonly, $ZodRealError: () => $ZodRealError, $ZodRecord: () => $ZodRecord, $ZodRegistry: () => $ZodRegistry, $ZodSet: () => $ZodSet, $ZodString: () => $ZodString, $ZodStringFormat: () => $ZodStringFormat, $ZodSuccess: () => $ZodSuccess, $ZodSymbol: () => $ZodSymbol, $ZodTemplateLiteral: () => $ZodTemplateLiteral, $ZodTransform: () => $ZodTransform, $ZodTuple: () => $ZodTuple, $ZodType: () => $ZodType, $ZodULID: () => $ZodULID, $ZodURL: () => $ZodURL, $ZodUUID: () => $ZodUUID, $ZodUndefined: () => $ZodUndefined, $ZodUnion: () => $ZodUnion, $ZodUnknown: () => $ZodUnknown, $ZodVoid: () => $ZodVoid, $ZodXID: () => $ZodXID, $ZodXor: () => $ZodXor, $brand: () => $brand, $constructor: () => $constructor, $input: () => $input, $output: () => $output, Doc: () => Doc, JSONSchema: () => json_schema_exports, JSONSchemaGenerator: () => JSONSchemaGenerator, NEVER: () => NEVER, TimePrecision: () => TimePrecision, _any: () => _any, _array: () => _array, _base64: () => _base64, _base64url: () => _base64url, _bigint: () => _bigint, _boolean: () => _boolean, _catch: () => _catch, _check: () => _check, _cidrv4: () => _cidrv4, _cidrv6: () => _cidrv6, _coercedBigint: () => _coercedBigint, _coercedBoolean: () => _coercedBoolean, _coercedDate: () => _coercedDate, _coercedNumber: () => _coercedNumber, _coercedString: () => _coercedString, _cuid: () => _cuid, _cuid2: () => _cuid2, _custom: () => _custom, _date: () => _date, _decode: () => _decode, _decodeAsync: () => _decodeAsync, _default: () => _default, _discriminatedUnion: () => _discriminatedUnion, _e164: () => _e164, _email: () => _email, _emoji: () => _emoji2, _encode: () => _encode, _encodeAsync: () => _encodeAsync, _endsWith: () => _endsWith, _enum: () => _enum, _file: () => _file, _float32: () => _float32, _float64: () => _float64, _gt: () => _gt, _gte: () => _gte, _guid: () => _guid, _includes: () => _includes, _int: () => _int, _int32: () => _int32, _int64: () => _int64, _intersection: () => _intersection, _ipv4: () => _ipv4, _ipv6: () => _ipv6, _isoDate: () => _isoDate, _isoDateTime: () => _isoDateTime, _isoDuration: () => _isoDuration, _isoTime: () => _isoTime, _jwt: () => _jwt, _ksuid: () => _ksuid, _lazy: () => _lazy, _length: () => _length, _literal: () => _literal, _lowercase: () => _lowercase, _lt: () => _lt, _lte: () => _lte, _mac: () => _mac, _map: () => _map, _max: () => _lte, _maxLength: () => _maxLength, _maxSize: () => _maxSize, _mime: () => _mime, _min: () => _gte, _minLength: () => _minLength, _minSize: () => _minSize, _multipleOf: () => _multipleOf, _nan: () => _nan, _nanoid: () => _nanoid, _nativeEnum: () => _nativeEnum, _negative: () => _negative, _never: () => _never, _nonnegative: () => _nonnegative, _nonoptional: () => _nonoptional, _nonpositive: () => _nonpositive, _normalize: () => _normalize, _null: () => _null2, _nullable: () => _nullable, _number: () => _number, _optional: () => _optional, _overwrite: () => _overwrite, _parse: () => _parse, _parseAsync: () => _parseAsync, _pipe: () => _pipe, _positive: () => _positive, _promise: () => _promise, _property: () => _property, _readonly: () => _readonly, _record: () => _record, _refine: () => _refine, _regex: () => _regex, _safeDecode: () => _safeDecode, _safeDecodeAsync: () => _safeDecodeAsync, _safeEncode: () => _safeEncode, _safeEncodeAsync: () => _safeEncodeAsync, _safeParse: () => _safeParse, _safeParseAsync: () => _safeParseAsync, _set: () => _set, _size: () => _size, _slugify: () => _slugify, _startsWith: () => _startsWith, _string: () => _string, _stringFormat: () => _stringFormat, _stringbool: () => _stringbool, _success: () => _success, _superRefine: () => _superRefine, _symbol: () => _symbol, _templateLiteral: () => _templateLiteral, _toLowerCase: () => _toLowerCase, _toUpperCase: () => _toUpperCase, _transform: () => _transform, _trim: () => _trim, _tuple: () => _tuple, _uint32: () => _uint32, _uint64: () => _uint64, _ulid: () => _ulid, _undefined: () => _undefined2, _union: () => _union, _unknown: () => _unknown, _uppercase: () => _uppercase, _url: () => _url, _uuid: () => _uuid, _uuidv4: () => _uuidv4, _uuidv6: () => _uuidv6, _uuidv7: () => _uuidv7, _void: () => _void, _xid: () => _xid, _xor: () => _xor, clone: () => clone, config: () => config2, createStandardJSONSchemaMethod: () => createStandardJSONSchemaMethod, createToJSONSchemaMethod: () => createToJSONSchemaMethod, decode: () => decode2, decodeAsync: () => decodeAsync, describe: () => describe, encode: () => encode3, encodeAsync: () => encodeAsync, extractDefs: () => extractDefs, finalize: () => finalize, flattenError: () => flattenError, formatError: () => formatError, globalConfig: () => globalConfig, globalRegistry: () => globalRegistry, initializeContext: () => initializeContext, isValidBase64: () => isValidBase64, isValidBase64URL: () => isValidBase64URL, isValidJWT: () => isValidJWT, locales: () => locales_exports, meta: () => meta, parse: () => parse, parseAsync: () => parseAsync, prettifyError: () => prettifyError, process: () => process2, regexes: () => regexes_exports, registry: () => registry, safeDecode: () => safeDecode, safeDecodeAsync: () => safeDecodeAsync, safeEncode: () => safeEncode, safeEncodeAsync: () => safeEncodeAsync, safeParse: () => safeParse, safeParseAsync: () => safeParseAsync, toDotPath: () => toDotPath, toJSONSchema: () => toJSONSchema, treeifyError: () => treeifyError, util: () => util_exports, version: () => version3 }); init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/zod/v4/core/core.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var NEVER = Object.freeze({ status: "aborted" }); // @__NO_SIDE_EFFECTS__ function $constructor(name, initializer3, params) { function init(inst, def) { if (!inst._zod) { Object.defineProperty(inst, "_zod", { value: { def, constr: _, traits: /* @__PURE__ */ new Set() }, enumerable: false }); } if (inst._zod.traits.has(name)) { return; } inst._zod.traits.add(name); initializer3(inst, def); const proto = _.prototype; const keys = Object.keys(proto); for (let i = 0; i < keys.length; i++) { const k = keys[i]; if (!(k in inst)) { inst[k] = proto[k].bind(inst); } } } __name(init, "init"); const Parent = params?.Parent ?? Object; class Definition extends Parent { static { __name(this, "Definition"); } } Object.defineProperty(Definition, "name", { value: name }); function _(def) { var _a2; const inst = params?.Parent ? new Definition() : this; init(inst, def); (_a2 = inst._zod).deferred ?? (_a2.deferred = []); for (const fn of inst._zod.deferred) { fn(); } return inst; } __name(_, "_"); Object.defineProperty(_, "init", { value: init }); Object.defineProperty(_, Symbol.hasInstance, { value: /* @__PURE__ */ __name((inst) => { if (params?.Parent && inst instanceof params.Parent) return true; return inst?._zod?.traits?.has(name); }, "value") }); Object.defineProperty(_, "name", { value: name }); return _; } __name($constructor, "$constructor"); var $brand = /* @__PURE__ */ Symbol("zod_brand"); var $ZodAsyncError = class extends Error { static { __name(this, "$ZodAsyncError"); } constructor() { super(`Encountered Promise during synchronous parse. Use .parseAsync() instead.`); } }; var $ZodEncodeError = class extends Error { static { __name(this, "$ZodEncodeError"); } constructor(name) { super(`Encountered unidirectional transform during encode: ${name}`); this.name = "ZodEncodeError"; } }; var globalConfig = {}; function config2(newConfig) { if (newConfig) Object.assign(globalConfig, newConfig); return globalConfig; } __name(config2, "config"); // ../../node_modules/zod/v4/core/parse.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/zod/v4/core/errors.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/zod/v4/core/util.js var util_exports = {}; __export(util_exports, { BIGINT_FORMAT_RANGES: () => BIGINT_FORMAT_RANGES, Class: () => Class, NUMBER_FORMAT_RANGES: () => NUMBER_FORMAT_RANGES, aborted: () => aborted, allowsEval: () => allowsEval, assert: () => assert3, assertEqual: () => assertEqual, assertIs: () => assertIs, assertNever: () => assertNever, assertNotEqual: () => assertNotEqual, assignProp: () => assignProp, base64ToUint8Array: () => base64ToUint8Array, base64urlToUint8Array: () => base64urlToUint8Array, cached: () => cached, captureStackTrace: () => captureStackTrace, cleanEnum: () => cleanEnum, cleanRegex: () => cleanRegex, clone: () => clone, cloneDef: () => cloneDef, createTransparentProxy: () => createTransparentProxy, defineLazy: () => defineLazy, esc: () => esc, escapeRegex: () => escapeRegex, extend: () => extend, finalizeIssue: () => finalizeIssue, floatSafeRemainder: () => floatSafeRemainder, getElementAtPath: () => getElementAtPath, getEnumValues: () => getEnumValues, getLengthableOrigin: () => getLengthableOrigin, getParsedType: () => getParsedType, getSizableOrigin: () => getSizableOrigin, hexToUint8Array: () => hexToUint8Array, isObject: () => isObject3, isPlainObject: () => isPlainObject2, issue: () => issue, joinValues: () => joinValues, jsonStringifyReplacer: () => jsonStringifyReplacer, merge: () => merge2, mergeDefs: () => mergeDefs, normalizeParams: () => normalizeParams, nullish: () => nullish, numKeys: () => numKeys, objectClone: () => objectClone, omit: () => omit, optionalKeys: () => optionalKeys, parsedType: () => parsedType, partial: () => partial, pick: () => pick, prefixIssues: () => prefixIssues, primitiveTypes: () => primitiveTypes, promiseAllObject: () => promiseAllObject, propertyKeyTypes: () => propertyKeyTypes, randomString: () => randomString, required: () => required, safeExtend: () => safeExtend, shallowClone: () => shallowClone, slugify: () => slugify, stringifyPrimitive: () => stringifyPrimitive, uint8ArrayToBase64: () => uint8ArrayToBase64, uint8ArrayToBase64url: () => uint8ArrayToBase64url, uint8ArrayToHex: () => uint8ArrayToHex, unwrapMessage: () => unwrapMessage }); init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); function assertEqual(val) { return val; } __name(assertEqual, "assertEqual"); function assertNotEqual(val) { return val; } __name(assertNotEqual, "assertNotEqual"); function assertIs(_arg) { } __name(assertIs, "assertIs"); function assertNever(_x2) { throw new Error("Unexpected value in exhaustive check"); } __name(assertNever, "assertNever"); function assert3(_) { } __name(assert3, "assert"); function getEnumValues(entries) { const numericValues = Object.values(entries).filter((v2) => typeof v2 === "number"); const values = Object.entries(entries).filter(([k, _]) => numericValues.indexOf(+k) === -1).map(([_, v2]) => v2); return values; } __name(getEnumValues, "getEnumValues"); function joinValues(array2, separator = "|") { return array2.map((val) => stringifyPrimitive(val)).join(separator); } __name(joinValues, "joinValues"); function jsonStringifyReplacer(_, value) { if (typeof value === "bigint") return value.toString(); return value; } __name(jsonStringifyReplacer, "jsonStringifyReplacer"); function cached(getter) { const set2 = false; return { get value() { if (!set2) { const value = getter(); Object.defineProperty(this, "value", { value }); return value; } throw new Error("cached value already set"); } }; } __name(cached, "cached"); function nullish(input) { return input === null || input === void 0; } __name(nullish, "nullish"); function cleanRegex(source) { const start = source.startsWith("^") ? 1 : 0; const end = source.endsWith("$") ? source.length - 1 : source.length; return source.slice(start, end); } __name(cleanRegex, "cleanRegex"); function floatSafeRemainder(val, step) { const valDecCount = (val.toString().split(".")[1] || "").length; const stepString = step.toString(); let stepDecCount = (stepString.split(".")[1] || "").length; if (stepDecCount === 0 && /\d?e-\d?/.test(stepString)) { const match2 = stepString.match(/\d?e-(\d?)/); if (match2?.[1]) { stepDecCount = Number.parseInt(match2[1]); } } const decCount = valDecCount > stepDecCount ? valDecCount : stepDecCount; const valInt = Number.parseInt(val.toFixed(decCount).replace(".", "")); const stepInt = Number.parseInt(step.toFixed(decCount).replace(".", "")); return valInt % stepInt / 10 ** decCount; } __name(floatSafeRemainder, "floatSafeRemainder"); var EVALUATING = /* @__PURE__ */ Symbol("evaluating"); function defineLazy(object2, key, getter) { let value = void 0; Object.defineProperty(object2, key, { get() { if (value === EVALUATING) { return void 0; } if (value === void 0) { value = EVALUATING; value = getter(); } return value; }, set(v2) { Object.defineProperty(object2, key, { value: v2 // configurable: true, }); }, configurable: true }); } __name(defineLazy, "defineLazy"); function objectClone(obj) { return Object.create(Object.getPrototypeOf(obj), Object.getOwnPropertyDescriptors(obj)); } __name(objectClone, "objectClone"); function assignProp(target2, prop, value) { Object.defineProperty(target2, prop, { value, writable: true, enumerable: true, configurable: true }); } __name(assignProp, "assignProp"); function mergeDefs(...defs) { const mergedDescriptors = {}; for (const def of defs) { const descriptors = Object.getOwnPropertyDescriptors(def); Object.assign(mergedDescriptors, descriptors); } return Object.defineProperties({}, mergedDescriptors); } __name(mergeDefs, "mergeDefs"); function cloneDef(schema) { return mergeDefs(schema._zod.def); } __name(cloneDef, "cloneDef"); function getElementAtPath(obj, path3) { if (!path3) return obj; return path3.reduce((acc, key) => acc?.[key], obj); } __name(getElementAtPath, "getElementAtPath"); function promiseAllObject(promisesObj) { const keys = Object.keys(promisesObj); const promises = keys.map((key) => promisesObj[key]); return Promise.all(promises).then((results) => { const resolvedObj = {}; for (let i = 0; i < keys.length; i++) { resolvedObj[keys[i]] = results[i]; } return resolvedObj; }); } __name(promiseAllObject, "promiseAllObject"); function randomString(length = 10) { const chars2 = "abcdefghijklmnopqrstuvwxyz"; let str = ""; for (let i = 0; i < length; i++) { str += chars2[Math.floor(Math.random() * chars2.length)]; } return str; } __name(randomString, "randomString"); function esc(str) { return JSON.stringify(str); } __name(esc, "esc"); function slugify(input) { return input.toLowerCase().trim().replace(/[^\w\s-]/g, "").replace(/[\s_-]+/g, "-").replace(/^-+|-+$/g, ""); } __name(slugify, "slugify"); var captureStackTrace = "captureStackTrace" in Error ? Error.captureStackTrace : (..._args) => { }; function isObject3(data) { return typeof data === "object" && data !== null && !Array.isArray(data); } __name(isObject3, "isObject"); var allowsEval = cached(() => { if (typeof navigator !== "undefined" && "Cloudflare-Workers"?.includes("Cloudflare")) { return false; } try { const F = Function; new F(""); return true; } catch (_) { return false; } }); function isPlainObject2(o) { if (isObject3(o) === false) return false; const ctor = o.constructor; if (ctor === void 0) return true; if (typeof ctor !== "function") return true; const prot = ctor.prototype; if (isObject3(prot) === false) return false; if (Object.prototype.hasOwnProperty.call(prot, "isPrototypeOf") === false) { return false; } return true; } __name(isPlainObject2, "isPlainObject"); function shallowClone(o) { if (isPlainObject2(o)) return { ...o }; if (Array.isArray(o)) return [...o]; return o; } __name(shallowClone, "shallowClone"); function numKeys(data) { let keyCount = 0; for (const key in data) { if (Object.prototype.hasOwnProperty.call(data, key)) { keyCount++; } } return keyCount; } __name(numKeys, "numKeys"); var getParsedType = /* @__PURE__ */ __name((data) => { const t8 = typeof data; switch (t8) { case "undefined": return "undefined"; case "string": return "string"; case "number": return Number.isNaN(data) ? "nan" : "number"; case "boolean": return "boolean"; case "function": return "function"; case "bigint": return "bigint"; case "symbol": return "symbol"; case "object": if (Array.isArray(data)) { return "array"; } if (data === null) { return "null"; } if (data.then && typeof data.then === "function" && data.catch && typeof data.catch === "function") { return "promise"; } if (typeof Map !== "undefined" && data instanceof Map) { return "map"; } if (typeof Set !== "undefined" && data instanceof Set) { return "set"; } if (typeof Date !== "undefined" && data instanceof Date) { return "date"; } if (typeof File !== "undefined" && data instanceof File) { return "file"; } return "object"; default: throw new Error(`Unknown data type: ${t8}`); } }, "getParsedType"); var propertyKeyTypes = /* @__PURE__ */ new Set(["string", "number", "symbol"]); var primitiveTypes = /* @__PURE__ */ new Set(["string", "number", "bigint", "boolean", "symbol", "undefined"]); function escapeRegex(str) { return str.replace(/[.*+?^${}()|[\]\\]/g, "\\$&"); } __name(escapeRegex, "escapeRegex"); function clone(inst, def, params) { const cl = new inst._zod.constr(def ?? inst._zod.def); if (!def || params?.parent) cl._zod.parent = inst; return cl; } __name(clone, "clone"); function normalizeParams(_params) { const params = _params; if (!params) return {}; if (typeof params === "string") return { error: /* @__PURE__ */ __name(() => params, "error") }; if (params?.message !== void 0) { if (params?.error !== void 0) throw new Error("Cannot specify both `message` and `error` params"); params.error = params.message; } delete params.message; if (typeof params.error === "string") return { ...params, error: /* @__PURE__ */ __name(() => params.error, "error") }; return params; } __name(normalizeParams, "normalizeParams"); function createTransparentProxy(getter) { let target2; return new Proxy({}, { get(_, prop, receiver) { target2 ?? (target2 = getter()); return Reflect.get(target2, prop, receiver); }, set(_, prop, value, receiver) { target2 ?? (target2 = getter()); return Reflect.set(target2, prop, value, receiver); }, has(_, prop) { target2 ?? (target2 = getter()); return Reflect.has(target2, prop); }, deleteProperty(_, prop) { target2 ?? (target2 = getter()); return Reflect.deleteProperty(target2, prop); }, ownKeys(_) { target2 ?? (target2 = getter()); return Reflect.ownKeys(target2); }, getOwnPropertyDescriptor(_, prop) { target2 ?? (target2 = getter()); return Reflect.getOwnPropertyDescriptor(target2, prop); }, defineProperty(_, prop, descriptor) { target2 ?? (target2 = getter()); return Reflect.defineProperty(target2, prop, descriptor); } }); } __name(createTransparentProxy, "createTransparentProxy"); function stringifyPrimitive(value) { if (typeof value === "bigint") return value.toString() + "n"; if (typeof value === "string") return `"${value}"`; return `${value}`; } __name(stringifyPrimitive, "stringifyPrimitive"); function optionalKeys(shape) { return Object.keys(shape).filter((k) => { return shape[k]._zod.optin === "optional" && shape[k]._zod.optout === "optional"; }); } __name(optionalKeys, "optionalKeys"); var NUMBER_FORMAT_RANGES = { safeint: [Number.MIN_SAFE_INTEGER, Number.MAX_SAFE_INTEGER], int32: [-2147483648, 2147483647], uint32: [0, 4294967295], float32: [-34028234663852886e22, 34028234663852886e22], float64: [-Number.MAX_VALUE, Number.MAX_VALUE] }; var BIGINT_FORMAT_RANGES = { int64: [/* @__PURE__ */ BigInt("-9223372036854775808"), /* @__PURE__ */ BigInt("9223372036854775807")], uint64: [/* @__PURE__ */ BigInt(0), /* @__PURE__ */ BigInt("18446744073709551615")] }; function pick(schema, mask) { const currDef = schema._zod.def; const checks = currDef.checks; const hasChecks = checks && checks.length > 0; if (hasChecks) { throw new Error(".pick() cannot be used on object schemas containing refinements"); } const def = mergeDefs(schema._zod.def, { get shape() { const newShape = {}; for (const key in mask) { if (!(key in currDef.shape)) { throw new Error(`Unrecognized key: "${key}"`); } if (!mask[key]) continue; newShape[key] = currDef.shape[key]; } assignProp(this, "shape", newShape); return newShape; }, checks: [] }); return clone(schema, def); } __name(pick, "pick"); function omit(schema, mask) { const currDef = schema._zod.def; const checks = currDef.checks; const hasChecks = checks && checks.length > 0; if (hasChecks) { throw new Error(".omit() cannot be used on object schemas containing refinements"); } const def = mergeDefs(schema._zod.def, { get shape() { const newShape = { ...schema._zod.def.shape }; for (const key in mask) { if (!(key in currDef.shape)) { throw new Error(`Unrecognized key: "${key}"`); } if (!mask[key]) continue; delete newShape[key]; } assignProp(this, "shape", newShape); return newShape; }, checks: [] }); return clone(schema, def); } __name(omit, "omit"); function extend(schema, shape) { if (!isPlainObject2(shape)) { throw new Error("Invalid input to extend: expected a plain object"); } const checks = schema._zod.def.checks; const hasChecks = checks && checks.length > 0; if (hasChecks) { const existingShape = schema._zod.def.shape; for (const key in shape) { if (Object.getOwnPropertyDescriptor(existingShape, key) !== void 0) { throw new Error("Cannot overwrite keys on object schemas containing refinements. Use `.safeExtend()` instead."); } } } const def = mergeDefs(schema._zod.def, { get shape() { const _shape = { ...schema._zod.def.shape, ...shape }; assignProp(this, "shape", _shape); return _shape; } }); return clone(schema, def); } __name(extend, "extend"); function safeExtend(schema, shape) { if (!isPlainObject2(shape)) { throw new Error("Invalid input to safeExtend: expected a plain object"); } const def = mergeDefs(schema._zod.def, { get shape() { const _shape = { ...schema._zod.def.shape, ...shape }; assignProp(this, "shape", _shape); return _shape; } }); return clone(schema, def); } __name(safeExtend, "safeExtend"); function merge2(a, b) { const def = mergeDefs(a._zod.def, { get shape() { const _shape = { ...a._zod.def.shape, ...b._zod.def.shape }; assignProp(this, "shape", _shape); return _shape; }, get catchall() { return b._zod.def.catchall; }, checks: [] // delete existing checks }); return clone(a, def); } __name(merge2, "merge"); function partial(Class2, schema, mask) { const currDef = schema._zod.def; const checks = currDef.checks; const hasChecks = checks && checks.length > 0; if (hasChecks) { throw new Error(".partial() cannot be used on object schemas containing refinements"); } const def = mergeDefs(schema._zod.def, { get shape() { const oldShape = schema._zod.def.shape; const shape = { ...oldShape }; if (mask) { for (const key in mask) { if (!(key in oldShape)) { throw new Error(`Unrecognized key: "${key}"`); } if (!mask[key]) continue; shape[key] = Class2 ? new Class2({ type: "optional", innerType: oldShape[key] }) : oldShape[key]; } } else { for (const key in oldShape) { shape[key] = Class2 ? new Class2({ type: "optional", innerType: oldShape[key] }) : oldShape[key]; } } assignProp(this, "shape", shape); return shape; }, checks: [] }); return clone(schema, def); } __name(partial, "partial"); function required(Class2, schema, mask) { const def = mergeDefs(schema._zod.def, { get shape() { const oldShape = schema._zod.def.shape; const shape = { ...oldShape }; if (mask) { for (const key in mask) { if (!(key in shape)) { throw new Error(`Unrecognized key: "${key}"`); } if (!mask[key]) continue; shape[key] = new Class2({ type: "nonoptional", innerType: oldShape[key] }); } } else { for (const key in oldShape) { shape[key] = new Class2({ type: "nonoptional", innerType: oldShape[key] }); } } assignProp(this, "shape", shape); return shape; } }); return clone(schema, def); } __name(required, "required"); function aborted(x, startIndex = 0) { if (x.aborted === true) return true; for (let i = startIndex; i < x.issues.length; i++) { if (x.issues[i]?.continue !== true) { return true; } } return false; } __name(aborted, "aborted"); function prefixIssues(path3, issues) { return issues.map((iss) => { var _a2; (_a2 = iss).path ?? (_a2.path = []); iss.path.unshift(path3); return iss; }); } __name(prefixIssues, "prefixIssues"); function unwrapMessage(message2) { return typeof message2 === "string" ? message2 : message2?.message; } __name(unwrapMessage, "unwrapMessage"); function finalizeIssue(iss, ctx, config3) { const full = { ...iss, path: iss.path ?? [] }; if (!iss.message) { const message2 = unwrapMessage(iss.inst?._zod.def?.error?.(iss)) ?? unwrapMessage(ctx?.error?.(iss)) ?? unwrapMessage(config3.customError?.(iss)) ?? unwrapMessage(config3.localeError?.(iss)) ?? "Invalid input"; full.message = message2; } delete full.inst; delete full.continue; if (!ctx?.reportInput) { delete full.input; } return full; } __name(finalizeIssue, "finalizeIssue"); function getSizableOrigin(input) { if (input instanceof Set) return "set"; if (input instanceof Map) return "map"; if (input instanceof File) return "file"; return "unknown"; } __name(getSizableOrigin, "getSizableOrigin"); function getLengthableOrigin(input) { if (Array.isArray(input)) return "array"; if (typeof input === "string") return "string"; return "unknown"; } __name(getLengthableOrigin, "getLengthableOrigin"); function parsedType(data) { const t8 = typeof data; switch (t8) { case "number": { return Number.isNaN(data) ? "nan" : "number"; } case "object": { if (data === null) { return "null"; } if (Array.isArray(data)) { return "array"; } const obj = data; if (obj && Object.getPrototypeOf(obj) !== Object.prototype && "constructor" in obj && obj.constructor) { return obj.constructor.name; } } } return t8; } __name(parsedType, "parsedType"); function issue(...args) { const [iss, input, inst] = args; if (typeof iss === "string") { return { message: iss, code: "custom", input, inst }; } return { ...iss }; } __name(issue, "issue"); function cleanEnum(obj) { return Object.entries(obj).filter(([k, _]) => { return Number.isNaN(Number.parseInt(k, 10)); }).map((el) => el[1]); } __name(cleanEnum, "cleanEnum"); function base64ToUint8Array(base643) { const binaryString = atob(base643); const bytes = new Uint8Array(binaryString.length); for (let i = 0; i < binaryString.length; i++) { bytes[i] = binaryString.charCodeAt(i); } return bytes; } __name(base64ToUint8Array, "base64ToUint8Array"); function uint8ArrayToBase64(bytes) { let binaryString = ""; for (let i = 0; i < bytes.length; i++) { binaryString += String.fromCharCode(bytes[i]); } return btoa(binaryString); } __name(uint8ArrayToBase64, "uint8ArrayToBase64"); function base64urlToUint8Array(base64url3) { const base643 = base64url3.replace(/-/g, "+").replace(/_/g, "/"); const padding = "=".repeat((4 - base643.length % 4) % 4); return base64ToUint8Array(base643 + padding); } __name(base64urlToUint8Array, "base64urlToUint8Array"); function uint8ArrayToBase64url(bytes) { return uint8ArrayToBase64(bytes).replace(/\+/g, "-").replace(/\//g, "_").replace(/=/g, ""); } __name(uint8ArrayToBase64url, "uint8ArrayToBase64url"); function hexToUint8Array(hex3) { const cleanHex = hex3.replace(/^0x/, ""); if (cleanHex.length % 2 !== 0) { throw new Error("Invalid hex string length"); } const bytes = new Uint8Array(cleanHex.length / 2); for (let i = 0; i < cleanHex.length; i += 2) { bytes[i / 2] = Number.parseInt(cleanHex.slice(i, i + 2), 16); } return bytes; } __name(hexToUint8Array, "hexToUint8Array"); function uint8ArrayToHex(bytes) { return Array.from(bytes).map((b) => b.toString(16).padStart(2, "0")).join(""); } __name(uint8ArrayToHex, "uint8ArrayToHex"); var Class = class { static { __name(this, "Class"); } constructor(..._args) { } }; // ../../node_modules/zod/v4/core/errors.js var initializer = /* @__PURE__ */ __name((inst, def) => { inst.name = "$ZodError"; Object.defineProperty(inst, "_zod", { value: inst._zod, enumerable: false }); Object.defineProperty(inst, "issues", { value: def, enumerable: false }); inst.message = JSON.stringify(def, jsonStringifyReplacer, 2); Object.defineProperty(inst, "toString", { value: /* @__PURE__ */ __name(() => inst.message, "value"), enumerable: false }); }, "initializer"); var $ZodError = $constructor("$ZodError", initializer); var $ZodRealError = $constructor("$ZodError", initializer, { Parent: Error }); function flattenError(error50, mapper = (issue2) => issue2.message) { const fieldErrors = {}; const formErrors = []; for (const sub of error50.issues) { if (sub.path.length > 0) { fieldErrors[sub.path[0]] = fieldErrors[sub.path[0]] || []; fieldErrors[sub.path[0]].push(mapper(sub)); } else { formErrors.push(mapper(sub)); } } return { formErrors, fieldErrors }; } __name(flattenError, "flattenError"); function formatError(error50, mapper = (issue2) => issue2.message) { const fieldErrors = { _errors: [] }; const processError = /* @__PURE__ */ __name((error51) => { for (const issue2 of error51.issues) { if (issue2.code === "invalid_union" && issue2.errors.length) { issue2.errors.map((issues) => processError({ issues })); } else if (issue2.code === "invalid_key") { processError({ issues: issue2.issues }); } else if (issue2.code === "invalid_element") { processError({ issues: issue2.issues }); } else if (issue2.path.length === 0) { fieldErrors._errors.push(mapper(issue2)); } else { let curr = fieldErrors; let i = 0; while (i < issue2.path.length) { const el = issue2.path[i]; const terminal = i === issue2.path.length - 1; if (!terminal) { curr[el] = curr[el] || { _errors: [] }; } else { curr[el] = curr[el] || { _errors: [] }; curr[el]._errors.push(mapper(issue2)); } curr = curr[el]; i++; } } } }, "processError"); processError(error50); return fieldErrors; } __name(formatError, "formatError"); function treeifyError(error50, mapper = (issue2) => issue2.message) { const result = { errors: [] }; const processError = /* @__PURE__ */ __name((error51, path3 = []) => { var _a2, _b; for (const issue2 of error51.issues) { if (issue2.code === "invalid_union" && issue2.errors.length) { issue2.errors.map((issues) => processError({ issues }, issue2.path)); } else if (issue2.code === "invalid_key") { processError({ issues: issue2.issues }, issue2.path); } else if (issue2.code === "invalid_element") { processError({ issues: issue2.issues }, issue2.path); } else { const fullpath = [...path3, ...issue2.path]; if (fullpath.length === 0) { result.errors.push(mapper(issue2)); continue; } let curr = result; let i = 0; while (i < fullpath.length) { const el = fullpath[i]; const terminal = i === fullpath.length - 1; if (typeof el === "string") { curr.properties ?? (curr.properties = {}); (_a2 = curr.properties)[el] ?? (_a2[el] = { errors: [] }); curr = curr.properties[el]; } else { curr.items ?? (curr.items = []); (_b = curr.items)[el] ?? (_b[el] = { errors: [] }); curr = curr.items[el]; } if (terminal) { curr.errors.push(mapper(issue2)); } i++; } } } }, "processError"); processError(error50); return result; } __name(treeifyError, "treeifyError"); function toDotPath(_path) { const segs = []; const path3 = _path.map((seg) => typeof seg === "object" ? seg.key : seg); for (const seg of path3) { if (typeof seg === "number") segs.push(`[${seg}]`); else if (typeof seg === "symbol") segs.push(`[${JSON.stringify(String(seg))}]`); else if (/[^\w$]/.test(seg)) segs.push(`[${JSON.stringify(seg)}]`); else { if (segs.length) segs.push("."); segs.push(seg); } } return segs.join(""); } __name(toDotPath, "toDotPath"); function prettifyError(error50) { const lines = []; const issues = [...error50.issues].sort((a, b) => (a.path ?? []).length - (b.path ?? []).length); for (const issue2 of issues) { lines.push(`\u2716 ${issue2.message}`); if (issue2.path?.length) lines.push(` \u2192 at ${toDotPath(issue2.path)}`); } return lines.join("\n"); } __name(prettifyError, "prettifyError"); // ../../node_modules/zod/v4/core/parse.js var _parse = /* @__PURE__ */ __name((_Err2) => (schema, value, _ctx, _params) => { const ctx = _ctx ? Object.assign(_ctx, { async: false }) : { async: false }; const result = schema._zod.run({ value, issues: [] }, ctx); if (result instanceof Promise) { throw new $ZodAsyncError(); } if (result.issues.length) { const e = new (_params?.Err ?? _Err2)(result.issues.map((iss) => finalizeIssue(iss, ctx, config2()))); captureStackTrace(e, _params?.callee); throw e; } return result.value; }, "_parse"); var parse = /* @__PURE__ */ _parse($ZodRealError); var _parseAsync = /* @__PURE__ */ __name((_Err2) => async (schema, value, _ctx, params) => { const ctx = _ctx ? Object.assign(_ctx, { async: true }) : { async: true }; let result = schema._zod.run({ value, issues: [] }, ctx); if (result instanceof Promise) result = await result; if (result.issues.length) { const e = new (params?.Err ?? _Err2)(result.issues.map((iss) => finalizeIssue(iss, ctx, config2()))); captureStackTrace(e, params?.callee); throw e; } return result.value; }, "_parseAsync"); var parseAsync = /* @__PURE__ */ _parseAsync($ZodRealError); var _safeParse = /* @__PURE__ */ __name((_Err2) => (schema, value, _ctx) => { const ctx = _ctx ? { ..._ctx, async: false } : { async: false }; const result = schema._zod.run({ value, issues: [] }, ctx); if (result instanceof Promise) { throw new $ZodAsyncError(); } return result.issues.length ? { success: false, error: new (_Err2 ?? $ZodError)(result.issues.map((iss) => finalizeIssue(iss, ctx, config2()))) } : { success: true, data: result.value }; }, "_safeParse"); var safeParse = /* @__PURE__ */ _safeParse($ZodRealError); var _safeParseAsync = /* @__PURE__ */ __name((_Err2) => async (schema, value, _ctx) => { const ctx = _ctx ? Object.assign(_ctx, { async: true }) : { async: true }; let result = schema._zod.run({ value, issues: [] }, ctx); if (result instanceof Promise) result = await result; return result.issues.length ? { success: false, error: new _Err2(result.issues.map((iss) => finalizeIssue(iss, ctx, config2()))) } : { success: true, data: result.value }; }, "_safeParseAsync"); var safeParseAsync = /* @__PURE__ */ _safeParseAsync($ZodRealError); var _encode = /* @__PURE__ */ __name((_Err2) => (schema, value, _ctx) => { const ctx = _ctx ? Object.assign(_ctx, { direction: "backward" }) : { direction: "backward" }; return _parse(_Err2)(schema, value, ctx); }, "_encode"); var encode3 = /* @__PURE__ */ _encode($ZodRealError); var _decode = /* @__PURE__ */ __name((_Err2) => (schema, value, _ctx) => { return _parse(_Err2)(schema, value, _ctx); }, "_decode"); var decode2 = /* @__PURE__ */ _decode($ZodRealError); var _encodeAsync = /* @__PURE__ */ __name((_Err2) => async (schema, value, _ctx) => { const ctx = _ctx ? Object.assign(_ctx, { direction: "backward" }) : { direction: "backward" }; return _parseAsync(_Err2)(schema, value, ctx); }, "_encodeAsync"); var encodeAsync = /* @__PURE__ */ _encodeAsync($ZodRealError); var _decodeAsync = /* @__PURE__ */ __name((_Err2) => async (schema, value, _ctx) => { return _parseAsync(_Err2)(schema, value, _ctx); }, "_decodeAsync"); var decodeAsync = /* @__PURE__ */ _decodeAsync($ZodRealError); var _safeEncode = /* @__PURE__ */ __name((_Err2) => (schema, value, _ctx) => { const ctx = _ctx ? Object.assign(_ctx, { direction: "backward" }) : { direction: "backward" }; return _safeParse(_Err2)(schema, value, ctx); }, "_safeEncode"); var safeEncode = /* @__PURE__ */ _safeEncode($ZodRealError); var _safeDecode = /* @__PURE__ */ __name((_Err2) => (schema, value, _ctx) => { return _safeParse(_Err2)(schema, value, _ctx); }, "_safeDecode"); var safeDecode = /* @__PURE__ */ _safeDecode($ZodRealError); var _safeEncodeAsync = /* @__PURE__ */ __name((_Err2) => async (schema, value, _ctx) => { const ctx = _ctx ? Object.assign(_ctx, { direction: "backward" }) : { direction: "backward" }; return _safeParseAsync(_Err2)(schema, value, ctx); }, "_safeEncodeAsync"); var safeEncodeAsync = /* @__PURE__ */ _safeEncodeAsync($ZodRealError); var _safeDecodeAsync = /* @__PURE__ */ __name((_Err2) => async (schema, value, _ctx) => { return _safeParseAsync(_Err2)(schema, value, _ctx); }, "_safeDecodeAsync"); var safeDecodeAsync = /* @__PURE__ */ _safeDecodeAsync($ZodRealError); // ../../node_modules/zod/v4/core/schemas.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/zod/v4/core/checks.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/zod/v4/core/regexes.js var regexes_exports = {}; __export(regexes_exports, { base64: () => base64, base64url: () => base64url, bigint: () => bigint2, boolean: () => boolean, browserEmail: () => browserEmail, cidrv4: () => cidrv4, cidrv6: () => cidrv6, cuid: () => cuid, cuid2: () => cuid2, date: () => date, datetime: () => datetime, domain: () => domain2, duration: () => duration, e164: () => e164, email: () => email, emoji: () => emoji, extendedDuration: () => extendedDuration, guid: () => guid, hex: () => hex, hostname: () => hostname, html5Email: () => html5Email, idnEmail: () => idnEmail, integer: () => integer2, ipv4: () => ipv4, ipv6: () => ipv6, ksuid: () => ksuid, lowercase: () => lowercase, mac: () => mac, md5_base64: () => md5_base64, md5_base64url: () => md5_base64url, md5_hex: () => md5_hex, nanoid: () => nanoid, null: () => _null, number: () => number, rfc5322Email: () => rfc5322Email, sha1_base64: () => sha1_base64, sha1_base64url: () => sha1_base64url, sha1_hex: () => sha1_hex, sha256_base64: () => sha256_base64, sha256_base64url: () => sha256_base64url, sha256_hex: () => sha256_hex, sha384_base64: () => sha384_base64, sha384_base64url: () => sha384_base64url, sha384_hex: () => sha384_hex, sha512_base64: () => sha512_base64, sha512_base64url: () => sha512_base64url, sha512_hex: () => sha512_hex, string: () => string, time: () => time4, ulid: () => ulid, undefined: () => _undefined, unicodeEmail: () => unicodeEmail, uppercase: () => uppercase, uuid: () => uuid, uuid4: () => uuid4, uuid6: () => uuid6, uuid7: () => uuid7, xid: () => xid }); init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var cuid = /^[cC][^\s-]{8,}$/; var cuid2 = /^[0-9a-z]+$/; var ulid = /^[0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{26}$/; var xid = /^[0-9a-vA-V]{20}$/; var ksuid = /^[A-Za-z0-9]{27}$/; var nanoid = /^[a-zA-Z0-9_-]{21}$/; var duration = /^P(?:(\d+W)|(?!.*W)(?=\d|T\d)(\d+Y)?(\d+M)?(\d+D)?(T(?=\d)(\d+H)?(\d+M)?(\d+([.,]\d+)?S)?)?)$/; var extendedDuration = /^[-+]?P(?!$)(?:(?:[-+]?\d+Y)|(?:[-+]?\d+[.,]\d+Y$))?(?:(?:[-+]?\d+M)|(?:[-+]?\d+[.,]\d+M$))?(?:(?:[-+]?\d+W)|(?:[-+]?\d+[.,]\d+W$))?(?:(?:[-+]?\d+D)|(?:[-+]?\d+[.,]\d+D$))?(?:T(?=[\d+-])(?:(?:[-+]?\d+H)|(?:[-+]?\d+[.,]\d+H$))?(?:(?:[-+]?\d+M)|(?:[-+]?\d+[.,]\d+M$))?(?:[-+]?\d+(?:[.,]\d+)?S)?)??$/; var guid = /^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12})$/; var uuid = /* @__PURE__ */ __name((version5) => { if (!version5) return /^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$/; return new RegExp(`^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-${version5}[0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12})$`); }, "uuid"); var uuid4 = /* @__PURE__ */ uuid(4); var uuid6 = /* @__PURE__ */ uuid(6); var uuid7 = /* @__PURE__ */ uuid(7); var email = /^(?!\.)(?!.*\.\.)([A-Za-z0-9_'+\-\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\-]*\.)+[A-Za-z]{2,}$/; var html5Email = /^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/; var rfc5322Email = /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/; var unicodeEmail = /^[^\s@"]{1,64}@[^\s@]{1,255}$/u; var idnEmail = unicodeEmail; var browserEmail = /^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/; var _emoji = `^(\\p{Extended_Pictographic}|\\p{Emoji_Component})+$`; function emoji() { return new RegExp(_emoji, "u"); } __name(emoji, "emoji"); var ipv4 = /^(?:(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\.){3}(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])$/; var ipv6 = /^(([0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:))$/; var mac = /* @__PURE__ */ __name((delimiter) => { const escapedDelim = escapeRegex(delimiter ?? ":"); return new RegExp(`^(?:[0-9A-F]{2}${escapedDelim}){5}[0-9A-F]{2}$|^(?:[0-9a-f]{2}${escapedDelim}){5}[0-9a-f]{2}$`); }, "mac"); var cidrv4 = /^((25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\.){3}(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\/([0-9]|[1-2][0-9]|3[0-2])$/; var cidrv6 = /^(([0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}|::|([0-9a-fA-F]{1,4})?::([0-9a-fA-F]{1,4}:?){0,6})\/(12[0-8]|1[01][0-9]|[1-9]?[0-9])$/; var base64 = /^$|^(?:[0-9a-zA-Z+/]{4})*(?:(?:[0-9a-zA-Z+/]{2}==)|(?:[0-9a-zA-Z+/]{3}=))?$/; var base64url = /^[A-Za-z0-9_-]*$/; var hostname = /^(?=.{1,253}\.?$)[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[-0-9a-zA-Z]{0,61}[0-9a-zA-Z])?)*\.?$/; var domain2 = /^([a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?\.)+[a-zA-Z]{2,}$/; var e164 = /^\+[1-9]\d{6,14}$/; var dateSource = `(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))`; var date = /* @__PURE__ */ new RegExp(`^${dateSource}$`); function timeSource(args) { const hhmm = `(?:[01]\\d|2[0-3]):[0-5]\\d`; const regex = typeof args.precision === "number" ? args.precision === -1 ? `${hhmm}` : args.precision === 0 ? `${hhmm}:[0-5]\\d` : `${hhmm}:[0-5]\\d\\.\\d{${args.precision}}` : `${hhmm}(?::[0-5]\\d(?:\\.\\d+)?)?`; return regex; } __name(timeSource, "timeSource"); function time4(args) { return new RegExp(`^${timeSource(args)}$`); } __name(time4, "time"); function datetime(args) { const time6 = timeSource({ precision: args.precision }); const opts = ["Z"]; if (args.local) opts.push(""); if (args.offset) opts.push(`([+-](?:[01]\\d|2[0-3]):[0-5]\\d)`); const timeRegex = `${time6}(?:${opts.join("|")})`; return new RegExp(`^${dateSource}T(?:${timeRegex})$`); } __name(datetime, "datetime"); var string = /* @__PURE__ */ __name((params) => { const regex = params ? `[\\s\\S]{${params?.minimum ?? 0},${params?.maximum ?? ""}}` : `[\\s\\S]*`; return new RegExp(`^${regex}$`); }, "string"); var bigint2 = /^-?\d+n?$/; var integer2 = /^-?\d+$/; var number = /^-?\d+(?:\.\d+)?$/; var boolean = /^(?:true|false)$/i; var _null = /^null$/i; var _undefined = /^undefined$/i; var lowercase = /^[^A-Z]*$/; var uppercase = /^[^a-z]*$/; var hex = /^[0-9a-fA-F]*$/; function fixedBase64(bodyLength, padding) { return new RegExp(`^[A-Za-z0-9+/]{${bodyLength}}${padding}$`); } __name(fixedBase64, "fixedBase64"); function fixedBase64url(length) { return new RegExp(`^[A-Za-z0-9_-]{${length}}$`); } __name(fixedBase64url, "fixedBase64url"); var md5_hex = /^[0-9a-fA-F]{32}$/; var md5_base64 = /* @__PURE__ */ fixedBase64(22, "=="); var md5_base64url = /* @__PURE__ */ fixedBase64url(22); var sha1_hex = /^[0-9a-fA-F]{40}$/; var sha1_base64 = /* @__PURE__ */ fixedBase64(27, "="); var sha1_base64url = /* @__PURE__ */ fixedBase64url(27); var sha256_hex = /^[0-9a-fA-F]{64}$/; var sha256_base64 = /* @__PURE__ */ fixedBase64(43, "="); var sha256_base64url = /* @__PURE__ */ fixedBase64url(43); var sha384_hex = /^[0-9a-fA-F]{96}$/; var sha384_base64 = /* @__PURE__ */ fixedBase64(64, ""); var sha384_base64url = /* @__PURE__ */ fixedBase64url(64); var sha512_hex = /^[0-9a-fA-F]{128}$/; var sha512_base64 = /* @__PURE__ */ fixedBase64(86, "=="); var sha512_base64url = /* @__PURE__ */ fixedBase64url(86); // ../../node_modules/zod/v4/core/checks.js var $ZodCheck = /* @__PURE__ */ $constructor("$ZodCheck", (inst, def) => { var _a2; inst._zod ?? (inst._zod = {}); inst._zod.def = def; (_a2 = inst._zod).onattach ?? (_a2.onattach = []); }); var numericOriginMap = { number: "number", bigint: "bigint", object: "date" }; var $ZodCheckLessThan = /* @__PURE__ */ $constructor("$ZodCheckLessThan", (inst, def) => { $ZodCheck.init(inst, def); const origin2 = numericOriginMap[typeof def.value]; inst._zod.onattach.push((inst2) => { const bag = inst2._zod.bag; const curr = (def.inclusive ? bag.maximum : bag.exclusiveMaximum) ?? Number.POSITIVE_INFINITY; if (def.value < curr) { if (def.inclusive) bag.maximum = def.value; else bag.exclusiveMaximum = def.value; } }); inst._zod.check = (payload) => { if (def.inclusive ? payload.value <= def.value : payload.value < def.value) { return; } payload.issues.push({ origin: origin2, code: "too_big", maximum: typeof def.value === "object" ? def.value.getTime() : def.value, input: payload.value, inclusive: def.inclusive, inst, continue: !def.abort }); }; }); var $ZodCheckGreaterThan = /* @__PURE__ */ $constructor("$ZodCheckGreaterThan", (inst, def) => { $ZodCheck.init(inst, def); const origin2 = numericOriginMap[typeof def.value]; inst._zod.onattach.push((inst2) => { const bag = inst2._zod.bag; const curr = (def.inclusive ? bag.minimum : bag.exclusiveMinimum) ?? Number.NEGATIVE_INFINITY; if (def.value > curr) { if (def.inclusive) bag.minimum = def.value; else bag.exclusiveMinimum = def.value; } }); inst._zod.check = (payload) => { if (def.inclusive ? payload.value >= def.value : payload.value > def.value) { return; } payload.issues.push({ origin: origin2, code: "too_small", minimum: typeof def.value === "object" ? def.value.getTime() : def.value, input: payload.value, inclusive: def.inclusive, inst, continue: !def.abort }); }; }); var $ZodCheckMultipleOf = /* @__PURE__ */ $constructor("$ZodCheckMultipleOf", (inst, def) => { $ZodCheck.init(inst, def); inst._zod.onattach.push((inst2) => { var _a2; (_a2 = inst2._zod.bag).multipleOf ?? (_a2.multipleOf = def.value); }); inst._zod.check = (payload) => { if (typeof payload.value !== typeof def.value) throw new Error("Cannot mix number and bigint in multiple_of check."); const isMultiple = typeof payload.value === "bigint" ? payload.value % def.value === BigInt(0) : floatSafeRemainder(payload.value, def.value) === 0; if (isMultiple) return; payload.issues.push({ origin: typeof payload.value, code: "not_multiple_of", divisor: def.value, input: payload.value, inst, continue: !def.abort }); }; }); var $ZodCheckNumberFormat = /* @__PURE__ */ $constructor("$ZodCheckNumberFormat", (inst, def) => { $ZodCheck.init(inst, def); def.format = def.format || "float64"; const isInt = def.format?.includes("int"); const origin2 = isInt ? "int" : "number"; const [minimum, maximum] = NUMBER_FORMAT_RANGES[def.format]; inst._zod.onattach.push((inst2) => { const bag = inst2._zod.bag; bag.format = def.format; bag.minimum = minimum; bag.maximum = maximum; if (isInt) bag.pattern = integer2; }); inst._zod.check = (payload) => { const input = payload.value; if (isInt) { if (!Number.isInteger(input)) { payload.issues.push({ expected: origin2, format: def.format, code: "invalid_type", continue: false, input, inst }); return; } if (!Number.isSafeInteger(input)) { if (input > 0) { payload.issues.push({ input, code: "too_big", maximum: Number.MAX_SAFE_INTEGER, note: "Integers must be within the safe integer range.", inst, origin: origin2, inclusive: true, continue: !def.abort }); } else { payload.issues.push({ input, code: "too_small", minimum: Number.MIN_SAFE_INTEGER, note: "Integers must be within the safe integer range.", inst, origin: origin2, inclusive: true, continue: !def.abort }); } return; } } if (input < minimum) { payload.issues.push({ origin: "number", input, code: "too_small", minimum, inclusive: true, inst, continue: !def.abort }); } if (input > maximum) { payload.issues.push({ origin: "number", input, code: "too_big", maximum, inclusive: true, inst, continue: !def.abort }); } }; }); var $ZodCheckBigIntFormat = /* @__PURE__ */ $constructor("$ZodCheckBigIntFormat", (inst, def) => { $ZodCheck.init(inst, def); const [minimum, maximum] = BIGINT_FORMAT_RANGES[def.format]; inst._zod.onattach.push((inst2) => { const bag = inst2._zod.bag; bag.format = def.format; bag.minimum = minimum; bag.maximum = maximum; }); inst._zod.check = (payload) => { const input = payload.value; if (input < minimum) { payload.issues.push({ origin: "bigint", input, code: "too_small", minimum, inclusive: true, inst, continue: !def.abort }); } if (input > maximum) { payload.issues.push({ origin: "bigint", input, code: "too_big", maximum, inclusive: true, inst, continue: !def.abort }); } }; }); var $ZodCheckMaxSize = /* @__PURE__ */ $constructor("$ZodCheckMaxSize", (inst, def) => { var _a2; $ZodCheck.init(inst, def); (_a2 = inst._zod.def).when ?? (_a2.when = (payload) => { const val = payload.value; return !nullish(val) && val.size !== void 0; }); inst._zod.onattach.push((inst2) => { const curr = inst2._zod.bag.maximum ?? Number.POSITIVE_INFINITY; if (def.maximum < curr) inst2._zod.bag.maximum = def.maximum; }); inst._zod.check = (payload) => { const input = payload.value; const size = input.size; if (size <= def.maximum) return; payload.issues.push({ origin: getSizableOrigin(input), code: "too_big", maximum: def.maximum, inclusive: true, input, inst, continue: !def.abort }); }; }); var $ZodCheckMinSize = /* @__PURE__ */ $constructor("$ZodCheckMinSize", (inst, def) => { var _a2; $ZodCheck.init(inst, def); (_a2 = inst._zod.def).when ?? (_a2.when = (payload) => { const val = payload.value; return !nullish(val) && val.size !== void 0; }); inst._zod.onattach.push((inst2) => { const curr = inst2._zod.bag.minimum ?? Number.NEGATIVE_INFINITY; if (def.minimum > curr) inst2._zod.bag.minimum = def.minimum; }); inst._zod.check = (payload) => { const input = payload.value; const size = input.size; if (size >= def.minimum) return; payload.issues.push({ origin: getSizableOrigin(input), code: "too_small", minimum: def.minimum, inclusive: true, input, inst, continue: !def.abort }); }; }); var $ZodCheckSizeEquals = /* @__PURE__ */ $constructor("$ZodCheckSizeEquals", (inst, def) => { var _a2; $ZodCheck.init(inst, def); (_a2 = inst._zod.def).when ?? (_a2.when = (payload) => { const val = payload.value; return !nullish(val) && val.size !== void 0; }); inst._zod.onattach.push((inst2) => { const bag = inst2._zod.bag; bag.minimum = def.size; bag.maximum = def.size; bag.size = def.size; }); inst._zod.check = (payload) => { const input = payload.value; const size = input.size; if (size === def.size) return; const tooBig = size > def.size; payload.issues.push({ origin: getSizableOrigin(input), ...tooBig ? { code: "too_big", maximum: def.size } : { code: "too_small", minimum: def.size }, inclusive: true, exact: true, input: payload.value, inst, continue: !def.abort }); }; }); var $ZodCheckMaxLength = /* @__PURE__ */ $constructor("$ZodCheckMaxLength", (inst, def) => { var _a2; $ZodCheck.init(inst, def); (_a2 = inst._zod.def).when ?? (_a2.when = (payload) => { const val = payload.value; return !nullish(val) && val.length !== void 0; }); inst._zod.onattach.push((inst2) => { const curr = inst2._zod.bag.maximum ?? Number.POSITIVE_INFINITY; if (def.maximum < curr) inst2._zod.bag.maximum = def.maximum; }); inst._zod.check = (payload) => { const input = payload.value; const length = input.length; if (length <= def.maximum) return; const origin2 = getLengthableOrigin(input); payload.issues.push({ origin: origin2, code: "too_big", maximum: def.maximum, inclusive: true, input, inst, continue: !def.abort }); }; }); var $ZodCheckMinLength = /* @__PURE__ */ $constructor("$ZodCheckMinLength", (inst, def) => { var _a2; $ZodCheck.init(inst, def); (_a2 = inst._zod.def).when ?? (_a2.when = (payload) => { const val = payload.value; return !nullish(val) && val.length !== void 0; }); inst._zod.onattach.push((inst2) => { const curr = inst2._zod.bag.minimum ?? Number.NEGATIVE_INFINITY; if (def.minimum > curr) inst2._zod.bag.minimum = def.minimum; }); inst._zod.check = (payload) => { const input = payload.value; const length = input.length; if (length >= def.minimum) return; const origin2 = getLengthableOrigin(input); payload.issues.push({ origin: origin2, code: "too_small", minimum: def.minimum, inclusive: true, input, inst, continue: !def.abort }); }; }); var $ZodCheckLengthEquals = /* @__PURE__ */ $constructor("$ZodCheckLengthEquals", (inst, def) => { var _a2; $ZodCheck.init(inst, def); (_a2 = inst._zod.def).when ?? (_a2.when = (payload) => { const val = payload.value; return !nullish(val) && val.length !== void 0; }); inst._zod.onattach.push((inst2) => { const bag = inst2._zod.bag; bag.minimum = def.length; bag.maximum = def.length; bag.length = def.length; }); inst._zod.check = (payload) => { const input = payload.value; const length = input.length; if (length === def.length) return; const origin2 = getLengthableOrigin(input); const tooBig = length > def.length; payload.issues.push({ origin: origin2, ...tooBig ? { code: "too_big", maximum: def.length } : { code: "too_small", minimum: def.length }, inclusive: true, exact: true, input: payload.value, inst, continue: !def.abort }); }; }); var $ZodCheckStringFormat = /* @__PURE__ */ $constructor("$ZodCheckStringFormat", (inst, def) => { var _a2, _b; $ZodCheck.init(inst, def); inst._zod.onattach.push((inst2) => { const bag = inst2._zod.bag; bag.format = def.format; if (def.pattern) { bag.patterns ?? (bag.patterns = /* @__PURE__ */ new Set()); bag.patterns.add(def.pattern); } }); if (def.pattern) (_a2 = inst._zod).check ?? (_a2.check = (payload) => { def.pattern.lastIndex = 0; if (def.pattern.test(payload.value)) return; payload.issues.push({ origin: "string", code: "invalid_format", format: def.format, input: payload.value, ...def.pattern ? { pattern: def.pattern.toString() } : {}, inst, continue: !def.abort }); }); else (_b = inst._zod).check ?? (_b.check = () => { }); }); var $ZodCheckRegex = /* @__PURE__ */ $constructor("$ZodCheckRegex", (inst, def) => { $ZodCheckStringFormat.init(inst, def); inst._zod.check = (payload) => { def.pattern.lastIndex = 0; if (def.pattern.test(payload.value)) return; payload.issues.push({ origin: "string", code: "invalid_format", format: "regex", input: payload.value, pattern: def.pattern.toString(), inst, continue: !def.abort }); }; }); var $ZodCheckLowerCase = /* @__PURE__ */ $constructor("$ZodCheckLowerCase", (inst, def) => { def.pattern ?? (def.pattern = lowercase); $ZodCheckStringFormat.init(inst, def); }); var $ZodCheckUpperCase = /* @__PURE__ */ $constructor("$ZodCheckUpperCase", (inst, def) => { def.pattern ?? (def.pattern = uppercase); $ZodCheckStringFormat.init(inst, def); }); var $ZodCheckIncludes = /* @__PURE__ */ $constructor("$ZodCheckIncludes", (inst, def) => { $ZodCheck.init(inst, def); const escapedRegex = escapeRegex(def.includes); const pattern = new RegExp(typeof def.position === "number" ? `^.{${def.position}}${escapedRegex}` : escapedRegex); def.pattern = pattern; inst._zod.onattach.push((inst2) => { const bag = inst2._zod.bag; bag.patterns ?? (bag.patterns = /* @__PURE__ */ new Set()); bag.patterns.add(pattern); }); inst._zod.check = (payload) => { if (payload.value.includes(def.includes, def.position)) return; payload.issues.push({ origin: "string", code: "invalid_format", format: "includes", includes: def.includes, input: payload.value, inst, continue: !def.abort }); }; }); var $ZodCheckStartsWith = /* @__PURE__ */ $constructor("$ZodCheckStartsWith", (inst, def) => { $ZodCheck.init(inst, def); const pattern = new RegExp(`^${escapeRegex(def.prefix)}.*`); def.pattern ?? (def.pattern = pattern); inst._zod.onattach.push((inst2) => { const bag = inst2._zod.bag; bag.patterns ?? (bag.patterns = /* @__PURE__ */ new Set()); bag.patterns.add(pattern); }); inst._zod.check = (payload) => { if (payload.value.startsWith(def.prefix)) return; payload.issues.push({ origin: "string", code: "invalid_format", format: "starts_with", prefix: def.prefix, input: payload.value, inst, continue: !def.abort }); }; }); var $ZodCheckEndsWith = /* @__PURE__ */ $constructor("$ZodCheckEndsWith", (inst, def) => { $ZodCheck.init(inst, def); const pattern = new RegExp(`.*${escapeRegex(def.suffix)}$`); def.pattern ?? (def.pattern = pattern); inst._zod.onattach.push((inst2) => { const bag = inst2._zod.bag; bag.patterns ?? (bag.patterns = /* @__PURE__ */ new Set()); bag.patterns.add(pattern); }); inst._zod.check = (payload) => { if (payload.value.endsWith(def.suffix)) return; payload.issues.push({ origin: "string", code: "invalid_format", format: "ends_with", suffix: def.suffix, input: payload.value, inst, continue: !def.abort }); }; }); function handleCheckPropertyResult(result, payload, property) { if (result.issues.length) { payload.issues.push(...prefixIssues(property, result.issues)); } } __name(handleCheckPropertyResult, "handleCheckPropertyResult"); var $ZodCheckProperty = /* @__PURE__ */ $constructor("$ZodCheckProperty", (inst, def) => { $ZodCheck.init(inst, def); inst._zod.check = (payload) => { const result = def.schema._zod.run({ value: payload.value[def.property], issues: [] }, {}); if (result instanceof Promise) { return result.then((result2) => handleCheckPropertyResult(result2, payload, def.property)); } handleCheckPropertyResult(result, payload, def.property); return; }; }); var $ZodCheckMimeType = /* @__PURE__ */ $constructor("$ZodCheckMimeType", (inst, def) => { $ZodCheck.init(inst, def); const mimeSet = new Set(def.mime); inst._zod.onattach.push((inst2) => { inst2._zod.bag.mime = def.mime; }); inst._zod.check = (payload) => { if (mimeSet.has(payload.value.type)) return; payload.issues.push({ code: "invalid_value", values: def.mime, input: payload.value.type, inst, continue: !def.abort }); }; }); var $ZodCheckOverwrite = /* @__PURE__ */ $constructor("$ZodCheckOverwrite", (inst, def) => { $ZodCheck.init(inst, def); inst._zod.check = (payload) => { payload.value = def.tx(payload.value); }; }); // ../../node_modules/zod/v4/core/doc.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var Doc = class { static { __name(this, "Doc"); } constructor(args = []) { this.content = []; this.indent = 0; if (this) this.args = args; } indented(fn) { this.indent += 1; fn(this); this.indent -= 1; } write(arg) { if (typeof arg === "function") { arg(this, { execution: "sync" }); arg(this, { execution: "async" }); return; } const content52 = arg; const lines = content52.split("\n").filter((x) => x); const minIndent = Math.min(...lines.map((x) => x.length - x.trimStart().length)); const dedented = lines.map((x) => x.slice(minIndent)).map((x) => " ".repeat(this.indent * 2) + x); for (const line of dedented) { this.content.push(line); } } compile() { const F = Function; const args = this?.args; const content52 = this?.content ?? [``]; const lines = [...content52.map((x) => ` ${x}`)]; return new F(...args, lines.join("\n")); } }; // ../../node_modules/zod/v4/core/versions.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var version3 = { major: 4, minor: 3, patch: 6 }; // ../../node_modules/zod/v4/core/schemas.js var $ZodType = /* @__PURE__ */ $constructor("$ZodType", (inst, def) => { var _a2; inst ?? (inst = {}); inst._zod.def = def; inst._zod.bag = inst._zod.bag || {}; inst._zod.version = version3; const checks = [...inst._zod.def.checks ?? []]; if (inst._zod.traits.has("$ZodCheck")) { checks.unshift(inst); } for (const ch of checks) { for (const fn of ch._zod.onattach) { fn(inst); } } if (checks.length === 0) { (_a2 = inst._zod).deferred ?? (_a2.deferred = []); inst._zod.deferred?.push(() => { inst._zod.run = inst._zod.parse; }); } else { const runChecks = /* @__PURE__ */ __name((payload, checks2, ctx) => { let isAborted = aborted(payload); let asyncResult; for (const ch of checks2) { if (ch._zod.def.when) { const shouldRun = ch._zod.def.when(payload); if (!shouldRun) continue; } else if (isAborted) { continue; } const currLen = payload.issues.length; const _ = ch._zod.check(payload); if (_ instanceof Promise && ctx?.async === false) { throw new $ZodAsyncError(); } if (asyncResult || _ instanceof Promise) { asyncResult = (asyncResult ?? Promise.resolve()).then(async () => { await _; const nextLen = payload.issues.length; if (nextLen === currLen) return; if (!isAborted) isAborted = aborted(payload, currLen); }); } else { const nextLen = payload.issues.length; if (nextLen === currLen) continue; if (!isAborted) isAborted = aborted(payload, currLen); } } if (asyncResult) { return asyncResult.then(() => { return payload; }); } return payload; }, "runChecks"); const handleCanaryResult = /* @__PURE__ */ __name((canary, payload, ctx) => { if (aborted(canary)) { canary.aborted = true; return canary; } const checkResult = runChecks(payload, checks, ctx); if (checkResult instanceof Promise) { if (ctx.async === false) throw new $ZodAsyncError(); return checkResult.then((checkResult2) => inst._zod.parse(checkResult2, ctx)); } return inst._zod.parse(checkResult, ctx); }, "handleCanaryResult"); inst._zod.run = (payload, ctx) => { if (ctx.skipChecks) { return inst._zod.parse(payload, ctx); } if (ctx.direction === "backward") { const canary = inst._zod.parse({ value: payload.value, issues: [] }, { ...ctx, skipChecks: true }); if (canary instanceof Promise) { return canary.then((canary2) => { return handleCanaryResult(canary2, payload, ctx); }); } return handleCanaryResult(canary, payload, ctx); } const result = inst._zod.parse(payload, ctx); if (result instanceof Promise) { if (ctx.async === false) throw new $ZodAsyncError(); return result.then((result2) => runChecks(result2, checks, ctx)); } return runChecks(result, checks, ctx); }; } defineLazy(inst, "~standard", () => ({ validate: /* @__PURE__ */ __name((value) => { try { const r = safeParse(inst, value); return r.success ? { value: r.data } : { issues: r.error?.issues }; } catch (_) { return safeParseAsync(inst, value).then((r) => r.success ? { value: r.data } : { issues: r.error?.issues }); } }, "validate"), vendor: "zod", version: 1 })); }); var $ZodString = /* @__PURE__ */ $constructor("$ZodString", (inst, def) => { $ZodType.init(inst, def); inst._zod.pattern = [...inst?._zod.bag?.patterns ?? []].pop() ?? string(inst._zod.bag); inst._zod.parse = (payload, _) => { if (def.coerce) try { payload.value = String(payload.value); } catch (_2) { } if (typeof payload.value === "string") return payload; payload.issues.push({ expected: "string", code: "invalid_type", input: payload.value, inst }); return payload; }; }); var $ZodStringFormat = /* @__PURE__ */ $constructor("$ZodStringFormat", (inst, def) => { $ZodCheckStringFormat.init(inst, def); $ZodString.init(inst, def); }); var $ZodGUID = /* @__PURE__ */ $constructor("$ZodGUID", (inst, def) => { def.pattern ?? (def.pattern = guid); $ZodStringFormat.init(inst, def); }); var $ZodUUID = /* @__PURE__ */ $constructor("$ZodUUID", (inst, def) => { if (def.version) { const versionMap = { v1: 1, v2: 2, v3: 3, v4: 4, v5: 5, v6: 6, v7: 7, v8: 8 }; const v2 = versionMap[def.version]; if (v2 === void 0) throw new Error(`Invalid UUID version: "${def.version}"`); def.pattern ?? (def.pattern = uuid(v2)); } else def.pattern ?? (def.pattern = uuid()); $ZodStringFormat.init(inst, def); }); var $ZodEmail = /* @__PURE__ */ $constructor("$ZodEmail", (inst, def) => { def.pattern ?? (def.pattern = email); $ZodStringFormat.init(inst, def); }); var $ZodURL = /* @__PURE__ */ $constructor("$ZodURL", (inst, def) => { $ZodStringFormat.init(inst, def); inst._zod.check = (payload) => { try { const trimmed = payload.value.trim(); const url2 = new URL(trimmed); if (def.hostname) { def.hostname.lastIndex = 0; if (!def.hostname.test(url2.hostname)) { payload.issues.push({ code: "invalid_format", format: "url", note: "Invalid hostname", pattern: def.hostname.source, input: payload.value, inst, continue: !def.abort }); } } if (def.protocol) { def.protocol.lastIndex = 0; if (!def.protocol.test(url2.protocol.endsWith(":") ? url2.protocol.slice(0, -1) : url2.protocol)) { payload.issues.push({ code: "invalid_format", format: "url", note: "Invalid protocol", pattern: def.protocol.source, input: payload.value, inst, continue: !def.abort }); } } if (def.normalize) { payload.value = url2.href; } else { payload.value = trimmed; } return; } catch (_) { payload.issues.push({ code: "invalid_format", format: "url", input: payload.value, inst, continue: !def.abort }); } }; }); var $ZodEmoji = /* @__PURE__ */ $constructor("$ZodEmoji", (inst, def) => { def.pattern ?? (def.pattern = emoji()); $ZodStringFormat.init(inst, def); }); var $ZodNanoID = /* @__PURE__ */ $constructor("$ZodNanoID", (inst, def) => { def.pattern ?? (def.pattern = nanoid); $ZodStringFormat.init(inst, def); }); var $ZodCUID = /* @__PURE__ */ $constructor("$ZodCUID", (inst, def) => { def.pattern ?? (def.pattern = cuid); $ZodStringFormat.init(inst, def); }); var $ZodCUID2 = /* @__PURE__ */ $constructor("$ZodCUID2", (inst, def) => { def.pattern ?? (def.pattern = cuid2); $ZodStringFormat.init(inst, def); }); var $ZodULID = /* @__PURE__ */ $constructor("$ZodULID", (inst, def) => { def.pattern ?? (def.pattern = ulid); $ZodStringFormat.init(inst, def); }); var $ZodXID = /* @__PURE__ */ $constructor("$ZodXID", (inst, def) => { def.pattern ?? (def.pattern = xid); $ZodStringFormat.init(inst, def); }); var $ZodKSUID = /* @__PURE__ */ $constructor("$ZodKSUID", (inst, def) => { def.pattern ?? (def.pattern = ksuid); $ZodStringFormat.init(inst, def); }); var $ZodISODateTime = /* @__PURE__ */ $constructor("$ZodISODateTime", (inst, def) => { def.pattern ?? (def.pattern = datetime(def)); $ZodStringFormat.init(inst, def); }); var $ZodISODate = /* @__PURE__ */ $constructor("$ZodISODate", (inst, def) => { def.pattern ?? (def.pattern = date); $ZodStringFormat.init(inst, def); }); var $ZodISOTime = /* @__PURE__ */ $constructor("$ZodISOTime", (inst, def) => { def.pattern ?? (def.pattern = time4(def)); $ZodStringFormat.init(inst, def); }); var $ZodISODuration = /* @__PURE__ */ $constructor("$ZodISODuration", (inst, def) => { def.pattern ?? (def.pattern = duration); $ZodStringFormat.init(inst, def); }); var $ZodIPv4 = /* @__PURE__ */ $constructor("$ZodIPv4", (inst, def) => { def.pattern ?? (def.pattern = ipv4); $ZodStringFormat.init(inst, def); inst._zod.bag.format = `ipv4`; }); var $ZodIPv6 = /* @__PURE__ */ $constructor("$ZodIPv6", (inst, def) => { def.pattern ?? (def.pattern = ipv6); $ZodStringFormat.init(inst, def); inst._zod.bag.format = `ipv6`; inst._zod.check = (payload) => { try { new URL(`http://[${payload.value}]`); } catch { payload.issues.push({ code: "invalid_format", format: "ipv6", input: payload.value, inst, continue: !def.abort }); } }; }); var $ZodMAC = /* @__PURE__ */ $constructor("$ZodMAC", (inst, def) => { def.pattern ?? (def.pattern = mac(def.delimiter)); $ZodStringFormat.init(inst, def); inst._zod.bag.format = `mac`; }); var $ZodCIDRv4 = /* @__PURE__ */ $constructor("$ZodCIDRv4", (inst, def) => { def.pattern ?? (def.pattern = cidrv4); $ZodStringFormat.init(inst, def); }); var $ZodCIDRv6 = /* @__PURE__ */ $constructor("$ZodCIDRv6", (inst, def) => { def.pattern ?? (def.pattern = cidrv6); $ZodStringFormat.init(inst, def); inst._zod.check = (payload) => { const parts = payload.value.split("/"); try { if (parts.length !== 2) throw new Error(); const [address, prefix] = parts; if (!prefix) throw new Error(); const prefixNum = Number(prefix); if (`${prefixNum}` !== prefix) throw new Error(); if (prefixNum < 0 || prefixNum > 128) throw new Error(); new URL(`http://[${address}]`); } catch { payload.issues.push({ code: "invalid_format", format: "cidrv6", input: payload.value, inst, continue: !def.abort }); } }; }); function isValidBase64(data) { if (data === "") return true; if (data.length % 4 !== 0) return false; try { atob(data); return true; } catch { return false; } } __name(isValidBase64, "isValidBase64"); var $ZodBase64 = /* @__PURE__ */ $constructor("$ZodBase64", (inst, def) => { def.pattern ?? (def.pattern = base64); $ZodStringFormat.init(inst, def); inst._zod.bag.contentEncoding = "base64"; inst._zod.check = (payload) => { if (isValidBase64(payload.value)) return; payload.issues.push({ code: "invalid_format", format: "base64", input: payload.value, inst, continue: !def.abort }); }; }); function isValidBase64URL(data) { if (!base64url.test(data)) return false; const base643 = data.replace(/[-_]/g, (c) => c === "-" ? "+" : "/"); const padded = base643.padEnd(Math.ceil(base643.length / 4) * 4, "="); return isValidBase64(padded); } __name(isValidBase64URL, "isValidBase64URL"); var $ZodBase64URL = /* @__PURE__ */ $constructor("$ZodBase64URL", (inst, def) => { def.pattern ?? (def.pattern = base64url); $ZodStringFormat.init(inst, def); inst._zod.bag.contentEncoding = "base64url"; inst._zod.check = (payload) => { if (isValidBase64URL(payload.value)) return; payload.issues.push({ code: "invalid_format", format: "base64url", input: payload.value, inst, continue: !def.abort }); }; }); var $ZodE164 = /* @__PURE__ */ $constructor("$ZodE164", (inst, def) => { def.pattern ?? (def.pattern = e164); $ZodStringFormat.init(inst, def); }); function isValidJWT(token, algorithm = null) { try { const tokensParts = token.split("."); if (tokensParts.length !== 3) return false; const [header] = tokensParts; if (!header) return false; const parsedHeader = JSON.parse(atob(header)); if ("typ" in parsedHeader && parsedHeader?.typ !== "JWT") return false; if (!parsedHeader.alg) return false; if (algorithm && (!("alg" in parsedHeader) || parsedHeader.alg !== algorithm)) return false; return true; } catch { return false; } } __name(isValidJWT, "isValidJWT"); var $ZodJWT = /* @__PURE__ */ $constructor("$ZodJWT", (inst, def) => { $ZodStringFormat.init(inst, def); inst._zod.check = (payload) => { if (isValidJWT(payload.value, def.alg)) return; payload.issues.push({ code: "invalid_format", format: "jwt", input: payload.value, inst, continue: !def.abort }); }; }); var $ZodCustomStringFormat = /* @__PURE__ */ $constructor("$ZodCustomStringFormat", (inst, def) => { $ZodStringFormat.init(inst, def); inst._zod.check = (payload) => { if (def.fn(payload.value)) return; payload.issues.push({ code: "invalid_format", format: def.format, input: payload.value, inst, continue: !def.abort }); }; }); var $ZodNumber = /* @__PURE__ */ $constructor("$ZodNumber", (inst, def) => { $ZodType.init(inst, def); inst._zod.pattern = inst._zod.bag.pattern ?? number; inst._zod.parse = (payload, _ctx) => { if (def.coerce) try { payload.value = Number(payload.value); } catch (_) { } const input = payload.value; if (typeof input === "number" && !Number.isNaN(input) && Number.isFinite(input)) { return payload; } const received = typeof input === "number" ? Number.isNaN(input) ? "NaN" : !Number.isFinite(input) ? "Infinity" : void 0 : void 0; payload.issues.push({ expected: "number", code: "invalid_type", input, inst, ...received ? { received } : {} }); return payload; }; }); var $ZodNumberFormat = /* @__PURE__ */ $constructor("$ZodNumberFormat", (inst, def) => { $ZodCheckNumberFormat.init(inst, def); $ZodNumber.init(inst, def); }); var $ZodBoolean = /* @__PURE__ */ $constructor("$ZodBoolean", (inst, def) => { $ZodType.init(inst, def); inst._zod.pattern = boolean; inst._zod.parse = (payload, _ctx) => { if (def.coerce) try { payload.value = Boolean(payload.value); } catch (_) { } const input = payload.value; if (typeof input === "boolean") return payload; payload.issues.push({ expected: "boolean", code: "invalid_type", input, inst }); return payload; }; }); var $ZodBigInt = /* @__PURE__ */ $constructor("$ZodBigInt", (inst, def) => { $ZodType.init(inst, def); inst._zod.pattern = bigint2; inst._zod.parse = (payload, _ctx) => { if (def.coerce) try { payload.value = BigInt(payload.value); } catch (_) { } if (typeof payload.value === "bigint") return payload; payload.issues.push({ expected: "bigint", code: "invalid_type", input: payload.value, inst }); return payload; }; }); var $ZodBigIntFormat = /* @__PURE__ */ $constructor("$ZodBigIntFormat", (inst, def) => { $ZodCheckBigIntFormat.init(inst, def); $ZodBigInt.init(inst, def); }); var $ZodSymbol = /* @__PURE__ */ $constructor("$ZodSymbol", (inst, def) => { $ZodType.init(inst, def); inst._zod.parse = (payload, _ctx) => { const input = payload.value; if (typeof input === "symbol") return payload; payload.issues.push({ expected: "symbol", code: "invalid_type", input, inst }); return payload; }; }); var $ZodUndefined = /* @__PURE__ */ $constructor("$ZodUndefined", (inst, def) => { $ZodType.init(inst, def); inst._zod.pattern = _undefined; inst._zod.values = /* @__PURE__ */ new Set([void 0]); inst._zod.optin = "optional"; inst._zod.optout = "optional"; inst._zod.parse = (payload, _ctx) => { const input = payload.value; if (typeof input === "undefined") return payload; payload.issues.push({ expected: "undefined", code: "invalid_type", input, inst }); return payload; }; }); var $ZodNull = /* @__PURE__ */ $constructor("$ZodNull", (inst, def) => { $ZodType.init(inst, def); inst._zod.pattern = _null; inst._zod.values = /* @__PURE__ */ new Set([null]); inst._zod.parse = (payload, _ctx) => { const input = payload.value; if (input === null) return payload; payload.issues.push({ expected: "null", code: "invalid_type", input, inst }); return payload; }; }); var $ZodAny = /* @__PURE__ */ $constructor("$ZodAny", (inst, def) => { $ZodType.init(inst, def); inst._zod.parse = (payload) => payload; }); var $ZodUnknown = /* @__PURE__ */ $constructor("$ZodUnknown", (inst, def) => { $ZodType.init(inst, def); inst._zod.parse = (payload) => payload; }); var $ZodNever = /* @__PURE__ */ $constructor("$ZodNever", (inst, def) => { $ZodType.init(inst, def); inst._zod.parse = (payload, _ctx) => { payload.issues.push({ expected: "never", code: "invalid_type", input: payload.value, inst }); return payload; }; }); var $ZodVoid = /* @__PURE__ */ $constructor("$ZodVoid", (inst, def) => { $ZodType.init(inst, def); inst._zod.parse = (payload, _ctx) => { const input = payload.value; if (typeof input === "undefined") return payload; payload.issues.push({ expected: "void", code: "invalid_type", input, inst }); return payload; }; }); var $ZodDate = /* @__PURE__ */ $constructor("$ZodDate", (inst, def) => { $ZodType.init(inst, def); inst._zod.parse = (payload, _ctx) => { if (def.coerce) { try { payload.value = new Date(payload.value); } catch (_err) { } } const input = payload.value; const isDate2 = input instanceof Date; const isValidDate = isDate2 && !Number.isNaN(input.getTime()); if (isValidDate) return payload; payload.issues.push({ expected: "date", code: "invalid_type", input, ...isDate2 ? { received: "Invalid Date" } : {}, inst }); return payload; }; }); function handleArrayResult(result, final, index) { if (result.issues.length) { final.issues.push(...prefixIssues(index, result.issues)); } final.value[index] = result.value; } __name(handleArrayResult, "handleArrayResult"); var $ZodArray = /* @__PURE__ */ $constructor("$ZodArray", (inst, def) => { $ZodType.init(inst, def); inst._zod.parse = (payload, ctx) => { const input = payload.value; if (!Array.isArray(input)) { payload.issues.push({ expected: "array", code: "invalid_type", input, inst }); return payload; } payload.value = Array(input.length); const proms = []; for (let i = 0; i < input.length; i++) { const item = input[i]; const result = def.element._zod.run({ value: item, issues: [] }, ctx); if (result instanceof Promise) { proms.push(result.then((result2) => handleArrayResult(result2, payload, i))); } else { handleArrayResult(result, payload, i); } } if (proms.length) { return Promise.all(proms).then(() => payload); } return payload; }; }); function handlePropertyResult(result, final, key, input, isOptionalOut) { if (result.issues.length) { if (isOptionalOut && !(key in input)) { return; } final.issues.push(...prefixIssues(key, result.issues)); } if (result.value === void 0) { if (key in input) { final.value[key] = void 0; } } else { final.value[key] = result.value; } } __name(handlePropertyResult, "handlePropertyResult"); function normalizeDef(def) { const keys = Object.keys(def.shape); for (const k of keys) { if (!def.shape?.[k]?._zod?.traits?.has("$ZodType")) { throw new Error(`Invalid element at key "${k}": expected a Zod schema`); } } const okeys = optionalKeys(def.shape); return { ...def, keys, keySet: new Set(keys), numKeys: keys.length, optionalKeys: new Set(okeys) }; } __name(normalizeDef, "normalizeDef"); function handleCatchall(proms, input, payload, ctx, def, inst) { const unrecognized = []; const keySet = def.keySet; const _catchall = def.catchall._zod; const t8 = _catchall.def.type; const isOptionalOut = _catchall.optout === "optional"; for (const key in input) { if (keySet.has(key)) continue; if (t8 === "never") { unrecognized.push(key); continue; } const r = _catchall.run({ value: input[key], issues: [] }, ctx); if (r instanceof Promise) { proms.push(r.then((r2) => handlePropertyResult(r2, payload, key, input, isOptionalOut))); } else { handlePropertyResult(r, payload, key, input, isOptionalOut); } } if (unrecognized.length) { payload.issues.push({ code: "unrecognized_keys", keys: unrecognized, input, inst }); } if (!proms.length) return payload; return Promise.all(proms).then(() => { return payload; }); } __name(handleCatchall, "handleCatchall"); var $ZodObject = /* @__PURE__ */ $constructor("$ZodObject", (inst, def) => { $ZodType.init(inst, def); const desc2 = Object.getOwnPropertyDescriptor(def, "shape"); if (!desc2?.get) { const sh = def.shape; Object.defineProperty(def, "shape", { get: /* @__PURE__ */ __name(() => { const newSh = { ...sh }; Object.defineProperty(def, "shape", { value: newSh }); return newSh; }, "get") }); } const _normalized = cached(() => normalizeDef(def)); defineLazy(inst._zod, "propValues", () => { const shape = def.shape; const propValues = {}; for (const key in shape) { const field = shape[key]._zod; if (field.values) { propValues[key] ?? (propValues[key] = /* @__PURE__ */ new Set()); for (const v2 of field.values) propValues[key].add(v2); } } return propValues; }); const isObject5 = isObject3; const catchall = def.catchall; let value; inst._zod.parse = (payload, ctx) => { value ?? (value = _normalized.value); const input = payload.value; if (!isObject5(input)) { payload.issues.push({ expected: "object", code: "invalid_type", input, inst }); return payload; } payload.value = {}; const proms = []; const shape = value.shape; for (const key of value.keys) { const el = shape[key]; const isOptionalOut = el._zod.optout === "optional"; const r = el._zod.run({ value: input[key], issues: [] }, ctx); if (r instanceof Promise) { proms.push(r.then((r2) => handlePropertyResult(r2, payload, key, input, isOptionalOut))); } else { handlePropertyResult(r, payload, key, input, isOptionalOut); } } if (!catchall) { return proms.length ? Promise.all(proms).then(() => payload) : payload; } return handleCatchall(proms, input, payload, ctx, _normalized.value, inst); }; }); var $ZodObjectJIT = /* @__PURE__ */ $constructor("$ZodObjectJIT", (inst, def) => { $ZodObject.init(inst, def); const superParse = inst._zod.parse; const _normalized = cached(() => normalizeDef(def)); const generateFastpass = /* @__PURE__ */ __name((shape) => { const doc = new Doc(["shape", "payload", "ctx"]); const normalized = _normalized.value; const parseStr = /* @__PURE__ */ __name((key) => { const k = esc(key); return `shape[${k}]._zod.run({ value: input[${k}], issues: [] }, ctx)`; }, "parseStr"); doc.write(`const input = payload.value;`); const ids = /* @__PURE__ */ Object.create(null); let counter = 0; for (const key of normalized.keys) { ids[key] = `key_${counter++}`; } doc.write(`const newResult = {};`); for (const key of normalized.keys) { const id = ids[key]; const k = esc(key); const schema = shape[key]; const isOptionalOut = schema?._zod?.optout === "optional"; doc.write(`const ${id} = ${parseStr(key)};`); if (isOptionalOut) { doc.write(` if (${id}.issues.length) { if (${k} in input) { payload.issues = payload.issues.concat(${id}.issues.map(iss => ({ ...iss, path: iss.path ? [${k}, ...iss.path] : [${k}] }))); } } if (${id}.value === undefined) { if (${k} in input) { newResult[${k}] = undefined; } } else { newResult[${k}] = ${id}.value; } `); } else { doc.write(` if (${id}.issues.length) { payload.issues = payload.issues.concat(${id}.issues.map(iss => ({ ...iss, path: iss.path ? [${k}, ...iss.path] : [${k}] }))); } if (${id}.value === undefined) { if (${k} in input) { newResult[${k}] = undefined; } } else { newResult[${k}] = ${id}.value; } `); } } doc.write(`payload.value = newResult;`); doc.write(`return payload;`); const fn = doc.compile(); return (payload, ctx) => fn(shape, payload, ctx); }, "generateFastpass"); let fastpass; const isObject5 = isObject3; const jit = !globalConfig.jitless; const allowsEval2 = allowsEval; const fastEnabled = jit && allowsEval2.value; const catchall = def.catchall; let value; inst._zod.parse = (payload, ctx) => { value ?? (value = _normalized.value); const input = payload.value; if (!isObject5(input)) { payload.issues.push({ expected: "object", code: "invalid_type", input, inst }); return payload; } if (jit && fastEnabled && ctx?.async === false && ctx.jitless !== true) { if (!fastpass) fastpass = generateFastpass(def.shape); payload = fastpass(payload, ctx); if (!catchall) return payload; return handleCatchall([], input, payload, ctx, value, inst); } return superParse(payload, ctx); }; }); function handleUnionResults(results, final, inst, ctx) { for (const result of results) { if (result.issues.length === 0) { final.value = result.value; return final; } } const nonaborted = results.filter((r) => !aborted(r)); if (nonaborted.length === 1) { final.value = nonaborted[0].value; return nonaborted[0]; } final.issues.push({ code: "invalid_union", input: final.value, inst, errors: results.map((result) => result.issues.map((iss) => finalizeIssue(iss, ctx, config2()))) }); return final; } __name(handleUnionResults, "handleUnionResults"); var $ZodUnion = /* @__PURE__ */ $constructor("$ZodUnion", (inst, def) => { $ZodType.init(inst, def); defineLazy(inst._zod, "optin", () => def.options.some((o) => o._zod.optin === "optional") ? "optional" : void 0); defineLazy(inst._zod, "optout", () => def.options.some((o) => o._zod.optout === "optional") ? "optional" : void 0); defineLazy(inst._zod, "values", () => { if (def.options.every((o) => o._zod.values)) { return new Set(def.options.flatMap((option) => Array.from(option._zod.values))); } return void 0; }); defineLazy(inst._zod, "pattern", () => { if (def.options.every((o) => o._zod.pattern)) { const patterns = def.options.map((o) => o._zod.pattern); return new RegExp(`^(${patterns.map((p) => cleanRegex(p.source)).join("|")})$`); } return void 0; }); const single = def.options.length === 1; const first = def.options[0]._zod.run; inst._zod.parse = (payload, ctx) => { if (single) { return first(payload, ctx); } let async = false; const results = []; for (const option of def.options) { const result = option._zod.run({ value: payload.value, issues: [] }, ctx); if (result instanceof Promise) { results.push(result); async = true; } else { if (result.issues.length === 0) return result; results.push(result); } } if (!async) return handleUnionResults(results, payload, inst, ctx); return Promise.all(results).then((results2) => { return handleUnionResults(results2, payload, inst, ctx); }); }; }); function handleExclusiveUnionResults(results, final, inst, ctx) { const successes = results.filter((r) => r.issues.length === 0); if (successes.length === 1) { final.value = successes[0].value; return final; } if (successes.length === 0) { final.issues.push({ code: "invalid_union", input: final.value, inst, errors: results.map((result) => result.issues.map((iss) => finalizeIssue(iss, ctx, config2()))) }); } else { final.issues.push({ code: "invalid_union", input: final.value, inst, errors: [], inclusive: false }); } return final; } __name(handleExclusiveUnionResults, "handleExclusiveUnionResults"); var $ZodXor = /* @__PURE__ */ $constructor("$ZodXor", (inst, def) => { $ZodUnion.init(inst, def); def.inclusive = false; const single = def.options.length === 1; const first = def.options[0]._zod.run; inst._zod.parse = (payload, ctx) => { if (single) { return first(payload, ctx); } let async = false; const results = []; for (const option of def.options) { const result = option._zod.run({ value: payload.value, issues: [] }, ctx); if (result instanceof Promise) { results.push(result); async = true; } else { results.push(result); } } if (!async) return handleExclusiveUnionResults(results, payload, inst, ctx); return Promise.all(results).then((results2) => { return handleExclusiveUnionResults(results2, payload, inst, ctx); }); }; }); var $ZodDiscriminatedUnion = /* @__PURE__ */ $constructor("$ZodDiscriminatedUnion", (inst, def) => { def.inclusive = false; $ZodUnion.init(inst, def); const _super = inst._zod.parse; defineLazy(inst._zod, "propValues", () => { const propValues = {}; for (const option of def.options) { const pv = option._zod.propValues; if (!pv || Object.keys(pv).length === 0) throw new Error(`Invalid discriminated union option at index "${def.options.indexOf(option)}"`); for (const [k, v2] of Object.entries(pv)) { if (!propValues[k]) propValues[k] = /* @__PURE__ */ new Set(); for (const val of v2) { propValues[k].add(val); } } } return propValues; }); const disc = cached(() => { const opts = def.options; const map2 = /* @__PURE__ */ new Map(); for (const o of opts) { const values = o._zod.propValues?.[def.discriminator]; if (!values || values.size === 0) throw new Error(`Invalid discriminated union option at index "${def.options.indexOf(o)}"`); for (const v2 of values) { if (map2.has(v2)) { throw new Error(`Duplicate discriminator value "${String(v2)}"`); } map2.set(v2, o); } } return map2; }); inst._zod.parse = (payload, ctx) => { const input = payload.value; if (!isObject3(input)) { payload.issues.push({ code: "invalid_type", expected: "object", input, inst }); return payload; } const opt = disc.value.get(input?.[def.discriminator]); if (opt) { return opt._zod.run(payload, ctx); } if (def.unionFallback) { return _super(payload, ctx); } payload.issues.push({ code: "invalid_union", errors: [], note: "No matching discriminator", discriminator: def.discriminator, input, path: [def.discriminator], inst }); return payload; }; }); var $ZodIntersection = /* @__PURE__ */ $constructor("$ZodIntersection", (inst, def) => { $ZodType.init(inst, def); inst._zod.parse = (payload, ctx) => { const input = payload.value; const left = def.left._zod.run({ value: input, issues: [] }, ctx); const right = def.right._zod.run({ value: input, issues: [] }, ctx); const async = left instanceof Promise || right instanceof Promise; if (async) { return Promise.all([left, right]).then(([left2, right2]) => { return handleIntersectionResults(payload, left2, right2); }); } return handleIntersectionResults(payload, left, right); }; }); function mergeValues(a, b) { if (a === b) { return { valid: true, data: a }; } if (a instanceof Date && b instanceof Date && +a === +b) { return { valid: true, data: a }; } if (isPlainObject2(a) && isPlainObject2(b)) { const bKeys = Object.keys(b); const sharedKeys = Object.keys(a).filter((key) => bKeys.indexOf(key) !== -1); const newObj = { ...a, ...b }; for (const key of sharedKeys) { const sharedValue = mergeValues(a[key], b[key]); if (!sharedValue.valid) { return { valid: false, mergeErrorPath: [key, ...sharedValue.mergeErrorPath] }; } newObj[key] = sharedValue.data; } return { valid: true, data: newObj }; } if (Array.isArray(a) && Array.isArray(b)) { if (a.length !== b.length) { return { valid: false, mergeErrorPath: [] }; } const newArray = []; for (let index = 0; index < a.length; index++) { const itemA = a[index]; const itemB = b[index]; const sharedValue = mergeValues(itemA, itemB); if (!sharedValue.valid) { return { valid: false, mergeErrorPath: [index, ...sharedValue.mergeErrorPath] }; } newArray.push(sharedValue.data); } return { valid: true, data: newArray }; } return { valid: false, mergeErrorPath: [] }; } __name(mergeValues, "mergeValues"); function handleIntersectionResults(result, left, right) { const unrecKeys = /* @__PURE__ */ new Map(); let unrecIssue; for (const iss of left.issues) { if (iss.code === "unrecognized_keys") { unrecIssue ?? (unrecIssue = iss); for (const k of iss.keys) { if (!unrecKeys.has(k)) unrecKeys.set(k, {}); unrecKeys.get(k).l = true; } } else { result.issues.push(iss); } } for (const iss of right.issues) { if (iss.code === "unrecognized_keys") { for (const k of iss.keys) { if (!unrecKeys.has(k)) unrecKeys.set(k, {}); unrecKeys.get(k).r = true; } } else { result.issues.push(iss); } } const bothKeys = [...unrecKeys].filter(([, f]) => f.l && f.r).map(([k]) => k); if (bothKeys.length && unrecIssue) { result.issues.push({ ...unrecIssue, keys: bothKeys }); } if (aborted(result)) return result; const merged = mergeValues(left.value, right.value); if (!merged.valid) { throw new Error(`Unmergable intersection. Error path: ${JSON.stringify(merged.mergeErrorPath)}`); } result.value = merged.data; return result; } __name(handleIntersectionResults, "handleIntersectionResults"); var $ZodTuple = /* @__PURE__ */ $constructor("$ZodTuple", (inst, def) => { $ZodType.init(inst, def); const items = def.items; inst._zod.parse = (payload, ctx) => { const input = payload.value; if (!Array.isArray(input)) { payload.issues.push({ input, inst, expected: "tuple", code: "invalid_type" }); return payload; } payload.value = []; const proms = []; const reversedIndex = [...items].reverse().findIndex((item) => item._zod.optin !== "optional"); const optStart = reversedIndex === -1 ? 0 : items.length - reversedIndex; if (!def.rest) { const tooBig = input.length > items.length; const tooSmall = input.length < optStart - 1; if (tooBig || tooSmall) { payload.issues.push({ ...tooBig ? { code: "too_big", maximum: items.length, inclusive: true } : { code: "too_small", minimum: items.length }, input, inst, origin: "array" }); return payload; } } let i = -1; for (const item of items) { i++; if (i >= input.length) { if (i >= optStart) continue; } const result = item._zod.run({ value: input[i], issues: [] }, ctx); if (result instanceof Promise) { proms.push(result.then((result2) => handleTupleResult(result2, payload, i))); } else { handleTupleResult(result, payload, i); } } if (def.rest) { const rest = input.slice(items.length); for (const el of rest) { i++; const result = def.rest._zod.run({ value: el, issues: [] }, ctx); if (result instanceof Promise) { proms.push(result.then((result2) => handleTupleResult(result2, payload, i))); } else { handleTupleResult(result, payload, i); } } } if (proms.length) return Promise.all(proms).then(() => payload); return payload; }; }); function handleTupleResult(result, final, index) { if (result.issues.length) { final.issues.push(...prefixIssues(index, result.issues)); } final.value[index] = result.value; } __name(handleTupleResult, "handleTupleResult"); var $ZodRecord = /* @__PURE__ */ $constructor("$ZodRecord", (inst, def) => { $ZodType.init(inst, def); inst._zod.parse = (payload, ctx) => { const input = payload.value; if (!isPlainObject2(input)) { payload.issues.push({ expected: "record", code: "invalid_type", input, inst }); return payload; } const proms = []; const values = def.keyType._zod.values; if (values) { payload.value = {}; const recordKeys = /* @__PURE__ */ new Set(); for (const key of values) { if (typeof key === "string" || typeof key === "number" || typeof key === "symbol") { recordKeys.add(typeof key === "number" ? key.toString() : key); const result = def.valueType._zod.run({ value: input[key], issues: [] }, ctx); if (result instanceof Promise) { proms.push(result.then((result2) => { if (result2.issues.length) { payload.issues.push(...prefixIssues(key, result2.issues)); } payload.value[key] = result2.value; })); } else { if (result.issues.length) { payload.issues.push(...prefixIssues(key, result.issues)); } payload.value[key] = result.value; } } } let unrecognized; for (const key in input) { if (!recordKeys.has(key)) { unrecognized = unrecognized ?? []; unrecognized.push(key); } } if (unrecognized && unrecognized.length > 0) { payload.issues.push({ code: "unrecognized_keys", input, inst, keys: unrecognized }); } } else { payload.value = {}; for (const key of Reflect.ownKeys(input)) { if (key === "__proto__") continue; let keyResult = def.keyType._zod.run({ value: key, issues: [] }, ctx); if (keyResult instanceof Promise) { throw new Error("Async schemas not supported in object keys currently"); } const checkNumericKey = typeof key === "string" && number.test(key) && keyResult.issues.length; if (checkNumericKey) { const retryResult = def.keyType._zod.run({ value: Number(key), issues: [] }, ctx); if (retryResult instanceof Promise) { throw new Error("Async schemas not supported in object keys currently"); } if (retryResult.issues.length === 0) { keyResult = retryResult; } } if (keyResult.issues.length) { if (def.mode === "loose") { payload.value[key] = input[key]; } else { payload.issues.push({ code: "invalid_key", origin: "record", issues: keyResult.issues.map((iss) => finalizeIssue(iss, ctx, config2())), input: key, path: [key], inst }); } continue; } const result = def.valueType._zod.run({ value: input[key], issues: [] }, ctx); if (result instanceof Promise) { proms.push(result.then((result2) => { if (result2.issues.length) { payload.issues.push(...prefixIssues(key, result2.issues)); } payload.value[keyResult.value] = result2.value; })); } else { if (result.issues.length) { payload.issues.push(...prefixIssues(key, result.issues)); } payload.value[keyResult.value] = result.value; } } } if (proms.length) { return Promise.all(proms).then(() => payload); } return payload; }; }); var $ZodMap = /* @__PURE__ */ $constructor("$ZodMap", (inst, def) => { $ZodType.init(inst, def); inst._zod.parse = (payload, ctx) => { const input = payload.value; if (!(input instanceof Map)) { payload.issues.push({ expected: "map", code: "invalid_type", input, inst }); return payload; } const proms = []; payload.value = /* @__PURE__ */ new Map(); for (const [key, value] of input) { const keyResult = def.keyType._zod.run({ value: key, issues: [] }, ctx); const valueResult = def.valueType._zod.run({ value, issues: [] }, ctx); if (keyResult instanceof Promise || valueResult instanceof Promise) { proms.push(Promise.all([keyResult, valueResult]).then(([keyResult2, valueResult2]) => { handleMapResult(keyResult2, valueResult2, payload, key, input, inst, ctx); })); } else { handleMapResult(keyResult, valueResult, payload, key, input, inst, ctx); } } if (proms.length) return Promise.all(proms).then(() => payload); return payload; }; }); function handleMapResult(keyResult, valueResult, final, key, input, inst, ctx) { if (keyResult.issues.length) { if (propertyKeyTypes.has(typeof key)) { final.issues.push(...prefixIssues(key, keyResult.issues)); } else { final.issues.push({ code: "invalid_key", origin: "map", input, inst, issues: keyResult.issues.map((iss) => finalizeIssue(iss, ctx, config2())) }); } } if (valueResult.issues.length) { if (propertyKeyTypes.has(typeof key)) { final.issues.push(...prefixIssues(key, valueResult.issues)); } else { final.issues.push({ origin: "map", code: "invalid_element", input, inst, key, issues: valueResult.issues.map((iss) => finalizeIssue(iss, ctx, config2())) }); } } final.value.set(keyResult.value, valueResult.value); } __name(handleMapResult, "handleMapResult"); var $ZodSet = /* @__PURE__ */ $constructor("$ZodSet", (inst, def) => { $ZodType.init(inst, def); inst._zod.parse = (payload, ctx) => { const input = payload.value; if (!(input instanceof Set)) { payload.issues.push({ input, inst, expected: "set", code: "invalid_type" }); return payload; } const proms = []; payload.value = /* @__PURE__ */ new Set(); for (const item of input) { const result = def.valueType._zod.run({ value: item, issues: [] }, ctx); if (result instanceof Promise) { proms.push(result.then((result2) => handleSetResult(result2, payload))); } else handleSetResult(result, payload); } if (proms.length) return Promise.all(proms).then(() => payload); return payload; }; }); function handleSetResult(result, final) { if (result.issues.length) { final.issues.push(...result.issues); } final.value.add(result.value); } __name(handleSetResult, "handleSetResult"); var $ZodEnum = /* @__PURE__ */ $constructor("$ZodEnum", (inst, def) => { $ZodType.init(inst, def); const values = getEnumValues(def.entries); const valuesSet = new Set(values); inst._zod.values = valuesSet; inst._zod.pattern = new RegExp(`^(${values.filter((k) => propertyKeyTypes.has(typeof k)).map((o) => typeof o === "string" ? escapeRegex(o) : o.toString()).join("|")})$`); inst._zod.parse = (payload, _ctx) => { const input = payload.value; if (valuesSet.has(input)) { return payload; } payload.issues.push({ code: "invalid_value", values, input, inst }); return payload; }; }); var $ZodLiteral = /* @__PURE__ */ $constructor("$ZodLiteral", (inst, def) => { $ZodType.init(inst, def); if (def.values.length === 0) { throw new Error("Cannot create literal schema with no valid values"); } const values = new Set(def.values); inst._zod.values = values; inst._zod.pattern = new RegExp(`^(${def.values.map((o) => typeof o === "string" ? escapeRegex(o) : o ? escapeRegex(o.toString()) : String(o)).join("|")})$`); inst._zod.parse = (payload, _ctx) => { const input = payload.value; if (values.has(input)) { return payload; } payload.issues.push({ code: "invalid_value", values: def.values, input, inst }); return payload; }; }); var $ZodFile = /* @__PURE__ */ $constructor("$ZodFile", (inst, def) => { $ZodType.init(inst, def); inst._zod.parse = (payload, _ctx) => { const input = payload.value; if (input instanceof File) return payload; payload.issues.push({ expected: "file", code: "invalid_type", input, inst }); return payload; }; }); var $ZodTransform = /* @__PURE__ */ $constructor("$ZodTransform", (inst, def) => { $ZodType.init(inst, def); inst._zod.parse = (payload, ctx) => { if (ctx.direction === "backward") { throw new $ZodEncodeError(inst.constructor.name); } const _out = def.transform(payload.value, payload); if (ctx.async) { const output = _out instanceof Promise ? _out : Promise.resolve(_out); return output.then((output2) => { payload.value = output2; return payload; }); } if (_out instanceof Promise) { throw new $ZodAsyncError(); } payload.value = _out; return payload; }; }); function handleOptionalResult(result, input) { if (result.issues.length && input === void 0) { return { issues: [], value: void 0 }; } return result; } __name(handleOptionalResult, "handleOptionalResult"); var $ZodOptional = /* @__PURE__ */ $constructor("$ZodOptional", (inst, def) => { $ZodType.init(inst, def); inst._zod.optin = "optional"; inst._zod.optout = "optional"; defineLazy(inst._zod, "values", () => { return def.innerType._zod.values ? /* @__PURE__ */ new Set([...def.innerType._zod.values, void 0]) : void 0; }); defineLazy(inst._zod, "pattern", () => { const pattern = def.innerType._zod.pattern; return pattern ? new RegExp(`^(${cleanRegex(pattern.source)})?$`) : void 0; }); inst._zod.parse = (payload, ctx) => { if (def.innerType._zod.optin === "optional") { const result = def.innerType._zod.run(payload, ctx); if (result instanceof Promise) return result.then((r) => handleOptionalResult(r, payload.value)); return handleOptionalResult(result, payload.value); } if (payload.value === void 0) { return payload; } return def.innerType._zod.run(payload, ctx); }; }); var $ZodExactOptional = /* @__PURE__ */ $constructor("$ZodExactOptional", (inst, def) => { $ZodOptional.init(inst, def); defineLazy(inst._zod, "values", () => def.innerType._zod.values); defineLazy(inst._zod, "pattern", () => def.innerType._zod.pattern); inst._zod.parse = (payload, ctx) => { return def.innerType._zod.run(payload, ctx); }; }); var $ZodNullable = /* @__PURE__ */ $constructor("$ZodNullable", (inst, def) => { $ZodType.init(inst, def); defineLazy(inst._zod, "optin", () => def.innerType._zod.optin); defineLazy(inst._zod, "optout", () => def.innerType._zod.optout); defineLazy(inst._zod, "pattern", () => { const pattern = def.innerType._zod.pattern; return pattern ? new RegExp(`^(${cleanRegex(pattern.source)}|null)$`) : void 0; }); defineLazy(inst._zod, "values", () => { return def.innerType._zod.values ? /* @__PURE__ */ new Set([...def.innerType._zod.values, null]) : void 0; }); inst._zod.parse = (payload, ctx) => { if (payload.value === null) return payload; return def.innerType._zod.run(payload, ctx); }; }); var $ZodDefault = /* @__PURE__ */ $constructor("$ZodDefault", (inst, def) => { $ZodType.init(inst, def); inst._zod.optin = "optional"; defineLazy(inst._zod, "values", () => def.innerType._zod.values); inst._zod.parse = (payload, ctx) => { if (ctx.direction === "backward") { return def.innerType._zod.run(payload, ctx); } if (payload.value === void 0) { payload.value = def.defaultValue; return payload; } const result = def.innerType._zod.run(payload, ctx); if (result instanceof Promise) { return result.then((result2) => handleDefaultResult(result2, def)); } return handleDefaultResult(result, def); }; }); function handleDefaultResult(payload, def) { if (payload.value === void 0) { payload.value = def.defaultValue; } return payload; } __name(handleDefaultResult, "handleDefaultResult"); var $ZodPrefault = /* @__PURE__ */ $constructor("$ZodPrefault", (inst, def) => { $ZodType.init(inst, def); inst._zod.optin = "optional"; defineLazy(inst._zod, "values", () => def.innerType._zod.values); inst._zod.parse = (payload, ctx) => { if (ctx.direction === "backward") { return def.innerType._zod.run(payload, ctx); } if (payload.value === void 0) { payload.value = def.defaultValue; } return def.innerType._zod.run(payload, ctx); }; }); var $ZodNonOptional = /* @__PURE__ */ $constructor("$ZodNonOptional", (inst, def) => { $ZodType.init(inst, def); defineLazy(inst._zod, "values", () => { const v2 = def.innerType._zod.values; return v2 ? new Set([...v2].filter((x) => x !== void 0)) : void 0; }); inst._zod.parse = (payload, ctx) => { const result = def.innerType._zod.run(payload, ctx); if (result instanceof Promise) { return result.then((result2) => handleNonOptionalResult(result2, inst)); } return handleNonOptionalResult(result, inst); }; }); function handleNonOptionalResult(payload, inst) { if (!payload.issues.length && payload.value === void 0) { payload.issues.push({ code: "invalid_type", expected: "nonoptional", input: payload.value, inst }); } return payload; } __name(handleNonOptionalResult, "handleNonOptionalResult"); var $ZodSuccess = /* @__PURE__ */ $constructor("$ZodSuccess", (inst, def) => { $ZodType.init(inst, def); inst._zod.parse = (payload, ctx) => { if (ctx.direction === "backward") { throw new $ZodEncodeError("ZodSuccess"); } const result = def.innerType._zod.run(payload, ctx); if (result instanceof Promise) { return result.then((result2) => { payload.value = result2.issues.length === 0; return payload; }); } payload.value = result.issues.length === 0; return payload; }; }); var $ZodCatch = /* @__PURE__ */ $constructor("$ZodCatch", (inst, def) => { $ZodType.init(inst, def); defineLazy(inst._zod, "optin", () => def.innerType._zod.optin); defineLazy(inst._zod, "optout", () => def.innerType._zod.optout); defineLazy(inst._zod, "values", () => def.innerType._zod.values); inst._zod.parse = (payload, ctx) => { if (ctx.direction === "backward") { return def.innerType._zod.run(payload, ctx); } const result = def.innerType._zod.run(payload, ctx); if (result instanceof Promise) { return result.then((result2) => { payload.value = result2.value; if (result2.issues.length) { payload.value = def.catchValue({ ...payload, error: { issues: result2.issues.map((iss) => finalizeIssue(iss, ctx, config2())) }, input: payload.value }); payload.issues = []; } return payload; }); } payload.value = result.value; if (result.issues.length) { payload.value = def.catchValue({ ...payload, error: { issues: result.issues.map((iss) => finalizeIssue(iss, ctx, config2())) }, input: payload.value }); payload.issues = []; } return payload; }; }); var $ZodNaN = /* @__PURE__ */ $constructor("$ZodNaN", (inst, def) => { $ZodType.init(inst, def); inst._zod.parse = (payload, _ctx) => { if (typeof payload.value !== "number" || !Number.isNaN(payload.value)) { payload.issues.push({ input: payload.value, inst, expected: "nan", code: "invalid_type" }); return payload; } return payload; }; }); var $ZodPipe = /* @__PURE__ */ $constructor("$ZodPipe", (inst, def) => { $ZodType.init(inst, def); defineLazy(inst._zod, "values", () => def.in._zod.values); defineLazy(inst._zod, "optin", () => def.in._zod.optin); defineLazy(inst._zod, "optout", () => def.out._zod.optout); defineLazy(inst._zod, "propValues", () => def.in._zod.propValues); inst._zod.parse = (payload, ctx) => { if (ctx.direction === "backward") { const right = def.out._zod.run(payload, ctx); if (right instanceof Promise) { return right.then((right2) => handlePipeResult(right2, def.in, ctx)); } return handlePipeResult(right, def.in, ctx); } const left = def.in._zod.run(payload, ctx); if (left instanceof Promise) { return left.then((left2) => handlePipeResult(left2, def.out, ctx)); } return handlePipeResult(left, def.out, ctx); }; }); function handlePipeResult(left, next, ctx) { if (left.issues.length) { left.aborted = true; return left; } return next._zod.run({ value: left.value, issues: left.issues }, ctx); } __name(handlePipeResult, "handlePipeResult"); var $ZodCodec = /* @__PURE__ */ $constructor("$ZodCodec", (inst, def) => { $ZodType.init(inst, def); defineLazy(inst._zod, "values", () => def.in._zod.values); defineLazy(inst._zod, "optin", () => def.in._zod.optin); defineLazy(inst._zod, "optout", () => def.out._zod.optout); defineLazy(inst._zod, "propValues", () => def.in._zod.propValues); inst._zod.parse = (payload, ctx) => { const direction = ctx.direction || "forward"; if (direction === "forward") { const left = def.in._zod.run(payload, ctx); if (left instanceof Promise) { return left.then((left2) => handleCodecAResult(left2, def, ctx)); } return handleCodecAResult(left, def, ctx); } else { const right = def.out._zod.run(payload, ctx); if (right instanceof Promise) { return right.then((right2) => handleCodecAResult(right2, def, ctx)); } return handleCodecAResult(right, def, ctx); } }; }); function handleCodecAResult(result, def, ctx) { if (result.issues.length) { result.aborted = true; return result; } const direction = ctx.direction || "forward"; if (direction === "forward") { const transformed = def.transform(result.value, result); if (transformed instanceof Promise) { return transformed.then((value) => handleCodecTxResult(result, value, def.out, ctx)); } return handleCodecTxResult(result, transformed, def.out, ctx); } else { const transformed = def.reverseTransform(result.value, result); if (transformed instanceof Promise) { return transformed.then((value) => handleCodecTxResult(result, value, def.in, ctx)); } return handleCodecTxResult(result, transformed, def.in, ctx); } } __name(handleCodecAResult, "handleCodecAResult"); function handleCodecTxResult(left, value, nextSchema, ctx) { if (left.issues.length) { left.aborted = true; return left; } return nextSchema._zod.run({ value, issues: left.issues }, ctx); } __name(handleCodecTxResult, "handleCodecTxResult"); var $ZodReadonly = /* @__PURE__ */ $constructor("$ZodReadonly", (inst, def) => { $ZodType.init(inst, def); defineLazy(inst._zod, "propValues", () => def.innerType._zod.propValues); defineLazy(inst._zod, "values", () => def.innerType._zod.values); defineLazy(inst._zod, "optin", () => def.innerType?._zod?.optin); defineLazy(inst._zod, "optout", () => def.innerType?._zod?.optout); inst._zod.parse = (payload, ctx) => { if (ctx.direction === "backward") { return def.innerType._zod.run(payload, ctx); } const result = def.innerType._zod.run(payload, ctx); if (result instanceof Promise) { return result.then(handleReadonlyResult); } return handleReadonlyResult(result); }; }); function handleReadonlyResult(payload) { payload.value = Object.freeze(payload.value); return payload; } __name(handleReadonlyResult, "handleReadonlyResult"); var $ZodTemplateLiteral = /* @__PURE__ */ $constructor("$ZodTemplateLiteral", (inst, def) => { $ZodType.init(inst, def); const regexParts = []; for (const part of def.parts) { if (typeof part === "object" && part !== null) { if (!part._zod.pattern) { throw new Error(`Invalid template literal part, no pattern found: ${[...part._zod.traits].shift()}`); } const source = part._zod.pattern instanceof RegExp ? part._zod.pattern.source : part._zod.pattern; if (!source) throw new Error(`Invalid template literal part: ${part._zod.traits}`); const start = source.startsWith("^") ? 1 : 0; const end = source.endsWith("$") ? source.length - 1 : source.length; regexParts.push(source.slice(start, end)); } else if (part === null || primitiveTypes.has(typeof part)) { regexParts.push(escapeRegex(`${part}`)); } else { throw new Error(`Invalid template literal part: ${part}`); } } inst._zod.pattern = new RegExp(`^${regexParts.join("")}$`); inst._zod.parse = (payload, _ctx) => { if (typeof payload.value !== "string") { payload.issues.push({ input: payload.value, inst, expected: "string", code: "invalid_type" }); return payload; } inst._zod.pattern.lastIndex = 0; if (!inst._zod.pattern.test(payload.value)) { payload.issues.push({ input: payload.value, inst, code: "invalid_format", format: def.format ?? "template_literal", pattern: inst._zod.pattern.source }); return payload; } return payload; }; }); var $ZodFunction = /* @__PURE__ */ $constructor("$ZodFunction", (inst, def) => { $ZodType.init(inst, def); inst._def = def; inst._zod.def = def; inst.implement = (func) => { if (typeof func !== "function") { throw new Error("implement() must be called with a function"); } return function(...args) { const parsedArgs = inst._def.input ? parse(inst._def.input, args) : args; const result = Reflect.apply(func, this, parsedArgs); if (inst._def.output) { return parse(inst._def.output, result); } return result; }; }; inst.implementAsync = (func) => { if (typeof func !== "function") { throw new Error("implementAsync() must be called with a function"); } return async function(...args) { const parsedArgs = inst._def.input ? await parseAsync(inst._def.input, args) : args; const result = await Reflect.apply(func, this, parsedArgs); if (inst._def.output) { return await parseAsync(inst._def.output, result); } return result; }; }; inst._zod.parse = (payload, _ctx) => { if (typeof payload.value !== "function") { payload.issues.push({ code: "invalid_type", expected: "function", input: payload.value, inst }); return payload; } const hasPromiseOutput = inst._def.output && inst._def.output._zod.def.type === "promise"; if (hasPromiseOutput) { payload.value = inst.implementAsync(payload.value); } else { payload.value = inst.implement(payload.value); } return payload; }; inst.input = (...args) => { const F = inst.constructor; if (Array.isArray(args[0])) { return new F({ type: "function", input: new $ZodTuple({ type: "tuple", items: args[0], rest: args[1] }), output: inst._def.output }); } return new F({ type: "function", input: args[0], output: inst._def.output }); }; inst.output = (output) => { const F = inst.constructor; return new F({ type: "function", input: inst._def.input, output }); }; return inst; }); var $ZodPromise = /* @__PURE__ */ $constructor("$ZodPromise", (inst, def) => { $ZodType.init(inst, def); inst._zod.parse = (payload, ctx) => { return Promise.resolve(payload.value).then((inner) => def.innerType._zod.run({ value: inner, issues: [] }, ctx)); }; }); var $ZodLazy = /* @__PURE__ */ $constructor("$ZodLazy", (inst, def) => { $ZodType.init(inst, def); defineLazy(inst._zod, "innerType", () => def.getter()); defineLazy(inst._zod, "pattern", () => inst._zod.innerType?._zod?.pattern); defineLazy(inst._zod, "propValues", () => inst._zod.innerType?._zod?.propValues); defineLazy(inst._zod, "optin", () => inst._zod.innerType?._zod?.optin ?? void 0); defineLazy(inst._zod, "optout", () => inst._zod.innerType?._zod?.optout ?? void 0); inst._zod.parse = (payload, ctx) => { const inner = inst._zod.innerType; return inner._zod.run(payload, ctx); }; }); var $ZodCustom = /* @__PURE__ */ $constructor("$ZodCustom", (inst, def) => { $ZodCheck.init(inst, def); $ZodType.init(inst, def); inst._zod.parse = (payload, _) => { return payload; }; inst._zod.check = (payload) => { const input = payload.value; const r = def.fn(input); if (r instanceof Promise) { return r.then((r2) => handleRefineResult(r2, payload, input, inst)); } handleRefineResult(r, payload, input, inst); return; }; }); function handleRefineResult(result, payload, input, inst) { if (!result) { const _iss = { code: "custom", input, inst, // incorporates params.error into issue reporting path: [...inst._zod.def.path ?? []], // incorporates params.error into issue reporting continue: !inst._zod.def.abort // params: inst._zod.def.params, }; if (inst._zod.def.params) _iss.params = inst._zod.def.params; payload.issues.push(issue(_iss)); } } __name(handleRefineResult, "handleRefineResult"); // ../../node_modules/zod/v4/locales/index.js var locales_exports = {}; __export(locales_exports, { ar: () => ar_default, az: () => az_default, be: () => be_default, bg: () => bg_default, ca: () => ca_default, cs: () => cs_default, da: () => da_default, de: () => de_default, en: () => en_default, eo: () => eo_default, es: () => es_default, fa: () => fa_default, fi: () => fi_default, fr: () => fr_default, frCA: () => fr_CA_default, he: () => he_default, hu: () => hu_default, hy: () => hy_default, id: () => id_default, is: () => is_default, it: () => it_default, ja: () => ja_default, ka: () => ka_default, kh: () => kh_default, km: () => km_default, ko: () => ko_default, lt: () => lt_default, mk: () => mk_default, ms: () => ms_default, nl: () => nl_default, no: () => no_default, ota: () => ota_default, pl: () => pl_default, ps: () => ps_default, pt: () => pt_default, ru: () => ru_default, sl: () => sl_default, sv: () => sv_default, ta: () => ta_default, th: () => th_default, tr: () => tr_default, ua: () => ua_default, uk: () => uk_default, ur: () => ur_default, uz: () => uz_default, vi: () => vi_default, yo: () => yo_default, zhCN: () => zh_CN_default, zhTW: () => zh_TW_default }); init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/zod/v4/locales/ar.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var error3 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: "\u062D\u0631\u0641", verb: "\u0623\u0646 \u064A\u062D\u0648\u064A" }, file: { unit: "\u0628\u0627\u064A\u062A", verb: "\u0623\u0646 \u064A\u062D\u0648\u064A" }, array: { unit: "\u0639\u0646\u0635\u0631", verb: "\u0623\u0646 \u064A\u062D\u0648\u064A" }, set: { unit: "\u0639\u0646\u0635\u0631", verb: "\u0623\u0646 \u064A\u062D\u0648\u064A" } }; function getSizing(origin2) { return Sizable[origin2] ?? null; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "\u0645\u062F\u062E\u0644", email: "\u0628\u0631\u064A\u062F \u0625\u0644\u0643\u062A\u0631\u0648\u0646\u064A", url: "\u0631\u0627\u0628\u0637", emoji: "\u0625\u064A\u0645\u0648\u062C\u064A", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "\u062A\u0627\u0631\u064A\u062E \u0648\u0648\u0642\u062A \u0628\u0645\u0639\u064A\u0627\u0631 ISO", date: "\u062A\u0627\u0631\u064A\u062E \u0628\u0645\u0639\u064A\u0627\u0631 ISO", time: "\u0648\u0642\u062A \u0628\u0645\u0639\u064A\u0627\u0631 ISO", duration: "\u0645\u062F\u0629 \u0628\u0645\u0639\u064A\u0627\u0631 ISO", ipv4: "\u0639\u0646\u0648\u0627\u0646 IPv4", ipv6: "\u0639\u0646\u0648\u0627\u0646 IPv6", cidrv4: "\u0645\u062F\u0649 \u0639\u0646\u0627\u0648\u064A\u0646 \u0628\u0635\u064A\u063A\u0629 IPv4", cidrv6: "\u0645\u062F\u0649 \u0639\u0646\u0627\u0648\u064A\u0646 \u0628\u0635\u064A\u063A\u0629 IPv6", base64: "\u0646\u064E\u0635 \u0628\u062A\u0631\u0645\u064A\u0632 base64-encoded", base64url: "\u0646\u064E\u0635 \u0628\u062A\u0631\u0645\u064A\u0632 base64url-encoded", json_string: "\u0646\u064E\u0635 \u0639\u0644\u0649 \u0647\u064A\u0626\u0629 JSON", e164: "\u0631\u0642\u0645 \u0647\u0627\u062A\u0641 \u0628\u0645\u0639\u064A\u0627\u0631 E.164", jwt: "JWT", template_literal: "\u0645\u062F\u062E\u0644" }; const TypeDictionary = { nan: "NaN" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `\u0645\u062F\u062E\u0644\u0627\u062A \u063A\u064A\u0631 \u0645\u0642\u0628\u0648\u0644\u0629: \u064A\u0641\u062A\u0631\u0636 \u0625\u062F\u062E\u0627\u0644 instanceof ${issue2.expected}\u060C \u0648\u0644\u0643\u0646 \u062A\u0645 \u0625\u062F\u062E\u0627\u0644 ${received}`; } return `\u0645\u062F\u062E\u0644\u0627\u062A \u063A\u064A\u0631 \u0645\u0642\u0628\u0648\u0644\u0629: \u064A\u0641\u062A\u0631\u0636 \u0625\u062F\u062E\u0627\u0644 ${expected}\u060C \u0648\u0644\u0643\u0646 \u062A\u0645 \u0625\u062F\u062E\u0627\u0644 ${received}`; } case "invalid_value": if (issue2.values.length === 1) return `\u0645\u062F\u062E\u0644\u0627\u062A \u063A\u064A\u0631 \u0645\u0642\u0628\u0648\u0644\u0629: \u064A\u0641\u062A\u0631\u0636 \u0625\u062F\u062E\u0627\u0644 ${stringifyPrimitive(issue2.values[0])}`; return `\u0627\u062E\u062A\u064A\u0627\u0631 \u063A\u064A\u0631 \u0645\u0642\u0628\u0648\u0644: \u064A\u062A\u0648\u0642\u0639 \u0627\u0646\u062A\u0642\u0627\u0621 \u0623\u062D\u062F \u0647\u0630\u0647 \u0627\u0644\u062E\u064A\u0627\u0631\u0627\u062A: ${joinValues(issue2.values, "|")}`; case "too_big": { const adj = issue2.inclusive ? "<=" : "<"; const sizing = getSizing(issue2.origin); if (sizing) return ` \u0623\u0643\u0628\u0631 \u0645\u0646 \u0627\u0644\u0644\u0627\u0632\u0645: \u064A\u0641\u062A\u0631\u0636 \u0623\u0646 \u062A\u0643\u0648\u0646 ${issue2.origin ?? "\u0627\u0644\u0642\u064A\u0645\u0629"} ${adj} ${issue2.maximum.toString()} ${sizing.unit ?? "\u0639\u0646\u0635\u0631"}`; return `\u0623\u0643\u0628\u0631 \u0645\u0646 \u0627\u0644\u0644\u0627\u0632\u0645: \u064A\u0641\u062A\u0631\u0636 \u0623\u0646 \u062A\u0643\u0648\u0646 ${issue2.origin ?? "\u0627\u0644\u0642\u064A\u0645\u0629"} ${adj} ${issue2.maximum.toString()}`; } case "too_small": { const adj = issue2.inclusive ? ">=" : ">"; const sizing = getSizing(issue2.origin); if (sizing) { return `\u0623\u0635\u063A\u0631 \u0645\u0646 \u0627\u0644\u0644\u0627\u0632\u0645: \u064A\u0641\u062A\u0631\u0636 \u0644\u0640 ${issue2.origin} \u0623\u0646 \u064A\u0643\u0648\u0646 ${adj} ${issue2.minimum.toString()} ${sizing.unit}`; } return `\u0623\u0635\u063A\u0631 \u0645\u0646 \u0627\u0644\u0644\u0627\u0632\u0645: \u064A\u0641\u062A\u0631\u0636 \u0644\u0640 ${issue2.origin} \u0623\u0646 \u064A\u0643\u0648\u0646 ${adj} ${issue2.minimum.toString()}`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") return `\u0646\u064E\u0635 \u063A\u064A\u0631 \u0645\u0642\u0628\u0648\u0644: \u064A\u062C\u0628 \u0623\u0646 \u064A\u0628\u062F\u0623 \u0628\u0640 "${issue2.prefix}"`; if (_issue.format === "ends_with") return `\u0646\u064E\u0635 \u063A\u064A\u0631 \u0645\u0642\u0628\u0648\u0644: \u064A\u062C\u0628 \u0623\u0646 \u064A\u0646\u062A\u0647\u064A \u0628\u0640 "${_issue.suffix}"`; if (_issue.format === "includes") return `\u0646\u064E\u0635 \u063A\u064A\u0631 \u0645\u0642\u0628\u0648\u0644: \u064A\u062C\u0628 \u0623\u0646 \u064A\u062A\u0636\u0645\u0651\u064E\u0646 "${_issue.includes}"`; if (_issue.format === "regex") return `\u0646\u064E\u0635 \u063A\u064A\u0631 \u0645\u0642\u0628\u0648\u0644: \u064A\u062C\u0628 \u0623\u0646 \u064A\u0637\u0627\u0628\u0642 \u0627\u0644\u0646\u0645\u0637 ${_issue.pattern}`; return `${FormatDictionary[_issue.format] ?? issue2.format} \u063A\u064A\u0631 \u0645\u0642\u0628\u0648\u0644`; } case "not_multiple_of": return `\u0631\u0642\u0645 \u063A\u064A\u0631 \u0645\u0642\u0628\u0648\u0644: \u064A\u062C\u0628 \u0623\u0646 \u064A\u0643\u0648\u0646 \u0645\u0646 \u0645\u0636\u0627\u0639\u0641\u0627\u062A ${issue2.divisor}`; case "unrecognized_keys": return `\u0645\u0639\u0631\u0641${issue2.keys.length > 1 ? "\u0627\u062A" : ""} \u063A\u0631\u064A\u0628${issue2.keys.length > 1 ? "\u0629" : ""}: ${joinValues(issue2.keys, "\u060C ")}`; case "invalid_key": return `\u0645\u0639\u0631\u0641 \u063A\u064A\u0631 \u0645\u0642\u0628\u0648\u0644 \u0641\u064A ${issue2.origin}`; case "invalid_union": return "\u0645\u062F\u062E\u0644 \u063A\u064A\u0631 \u0645\u0642\u0628\u0648\u0644"; case "invalid_element": return `\u0645\u062F\u062E\u0644 \u063A\u064A\u0631 \u0645\u0642\u0628\u0648\u0644 \u0641\u064A ${issue2.origin}`; default: return "\u0645\u062F\u062E\u0644 \u063A\u064A\u0631 \u0645\u0642\u0628\u0648\u0644"; } }; }, "error"); function ar_default() { return { localeError: error3() }; } __name(ar_default, "default"); // ../../node_modules/zod/v4/locales/az.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var error4 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: "simvol", verb: "olmal\u0131d\u0131r" }, file: { unit: "bayt", verb: "olmal\u0131d\u0131r" }, array: { unit: "element", verb: "olmal\u0131d\u0131r" }, set: { unit: "element", verb: "olmal\u0131d\u0131r" } }; function getSizing(origin2) { return Sizable[origin2] ?? null; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "input", email: "email address", url: "URL", emoji: "emoji", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "ISO datetime", date: "ISO date", time: "ISO time", duration: "ISO duration", ipv4: "IPv4 address", ipv6: "IPv6 address", cidrv4: "IPv4 range", cidrv6: "IPv6 range", base64: "base64-encoded string", base64url: "base64url-encoded string", json_string: "JSON string", e164: "E.164 number", jwt: "JWT", template_literal: "input" }; const TypeDictionary = { nan: "NaN" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `Yanl\u0131\u015F d\u0259y\u0259r: g\xF6zl\u0259nil\u0259n instanceof ${issue2.expected}, daxil olan ${received}`; } return `Yanl\u0131\u015F d\u0259y\u0259r: g\xF6zl\u0259nil\u0259n ${expected}, daxil olan ${received}`; } case "invalid_value": if (issue2.values.length === 1) return `Yanl\u0131\u015F d\u0259y\u0259r: g\xF6zl\u0259nil\u0259n ${stringifyPrimitive(issue2.values[0])}`; return `Yanl\u0131\u015F se\xE7im: a\u015Fa\u011F\u0131dak\u0131lardan biri olmal\u0131d\u0131r: ${joinValues(issue2.values, "|")}`; case "too_big": { const adj = issue2.inclusive ? "<=" : "<"; const sizing = getSizing(issue2.origin); if (sizing) return `\xC7ox b\xF6y\xFCk: g\xF6zl\u0259nil\u0259n ${issue2.origin ?? "d\u0259y\u0259r"} ${adj}${issue2.maximum.toString()} ${sizing.unit ?? "element"}`; return `\xC7ox b\xF6y\xFCk: g\xF6zl\u0259nil\u0259n ${issue2.origin ?? "d\u0259y\u0259r"} ${adj}${issue2.maximum.toString()}`; } case "too_small": { const adj = issue2.inclusive ? ">=" : ">"; const sizing = getSizing(issue2.origin); if (sizing) return `\xC7ox ki\xE7ik: g\xF6zl\u0259nil\u0259n ${issue2.origin} ${adj}${issue2.minimum.toString()} ${sizing.unit}`; return `\xC7ox ki\xE7ik: g\xF6zl\u0259nil\u0259n ${issue2.origin} ${adj}${issue2.minimum.toString()}`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") return `Yanl\u0131\u015F m\u0259tn: "${_issue.prefix}" il\u0259 ba\u015Flamal\u0131d\u0131r`; if (_issue.format === "ends_with") return `Yanl\u0131\u015F m\u0259tn: "${_issue.suffix}" il\u0259 bitm\u0259lidir`; if (_issue.format === "includes") return `Yanl\u0131\u015F m\u0259tn: "${_issue.includes}" daxil olmal\u0131d\u0131r`; if (_issue.format === "regex") return `Yanl\u0131\u015F m\u0259tn: ${_issue.pattern} \u015Fablonuna uy\u011Fun olmal\u0131d\u0131r`; return `Yanl\u0131\u015F ${FormatDictionary[_issue.format] ?? issue2.format}`; } case "not_multiple_of": return `Yanl\u0131\u015F \u0259d\u0259d: ${issue2.divisor} il\u0259 b\xF6l\xFCn\u0259 bil\u0259n olmal\u0131d\u0131r`; case "unrecognized_keys": return `Tan\u0131nmayan a\xE7ar${issue2.keys.length > 1 ? "lar" : ""}: ${joinValues(issue2.keys, ", ")}`; case "invalid_key": return `${issue2.origin} daxilind\u0259 yanl\u0131\u015F a\xE7ar`; case "invalid_union": return "Yanl\u0131\u015F d\u0259y\u0259r"; case "invalid_element": return `${issue2.origin} daxilind\u0259 yanl\u0131\u015F d\u0259y\u0259r`; default: return `Yanl\u0131\u015F d\u0259y\u0259r`; } }; }, "error"); function az_default() { return { localeError: error4() }; } __name(az_default, "default"); // ../../node_modules/zod/v4/locales/be.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); function getBelarusianPlural(count4, one, few, many) { const absCount = Math.abs(count4); const lastDigit = absCount % 10; const lastTwoDigits = absCount % 100; if (lastTwoDigits >= 11 && lastTwoDigits <= 19) { return many; } if (lastDigit === 1) { return one; } if (lastDigit >= 2 && lastDigit <= 4) { return few; } return many; } __name(getBelarusianPlural, "getBelarusianPlural"); var error5 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: { one: "\u0441\u0456\u043C\u0432\u0430\u043B", few: "\u0441\u0456\u043C\u0432\u0430\u043B\u044B", many: "\u0441\u0456\u043C\u0432\u0430\u043B\u0430\u045E" }, verb: "\u043C\u0435\u0446\u044C" }, array: { unit: { one: "\u044D\u043B\u0435\u043C\u0435\u043D\u0442", few: "\u044D\u043B\u0435\u043C\u0435\u043D\u0442\u044B", many: "\u044D\u043B\u0435\u043C\u0435\u043D\u0442\u0430\u045E" }, verb: "\u043C\u0435\u0446\u044C" }, set: { unit: { one: "\u044D\u043B\u0435\u043C\u0435\u043D\u0442", few: "\u044D\u043B\u0435\u043C\u0435\u043D\u0442\u044B", many: "\u044D\u043B\u0435\u043C\u0435\u043D\u0442\u0430\u045E" }, verb: "\u043C\u0435\u0446\u044C" }, file: { unit: { one: "\u0431\u0430\u0439\u0442", few: "\u0431\u0430\u0439\u0442\u044B", many: "\u0431\u0430\u0439\u0442\u0430\u045E" }, verb: "\u043C\u0435\u0446\u044C" } }; function getSizing(origin2) { return Sizable[origin2] ?? null; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "\u0443\u0432\u043E\u0434", email: "email \u0430\u0434\u0440\u0430\u0441", url: "URL", emoji: "\u044D\u043C\u043E\u0434\u0437\u0456", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "ISO \u0434\u0430\u0442\u0430 \u0456 \u0447\u0430\u0441", date: "ISO \u0434\u0430\u0442\u0430", time: "ISO \u0447\u0430\u0441", duration: "ISO \u043F\u0440\u0430\u0446\u044F\u0433\u043B\u0430\u0441\u0446\u044C", ipv4: "IPv4 \u0430\u0434\u0440\u0430\u0441", ipv6: "IPv6 \u0430\u0434\u0440\u0430\u0441", cidrv4: "IPv4 \u0434\u044B\u044F\u043F\u0430\u0437\u043E\u043D", cidrv6: "IPv6 \u0434\u044B\u044F\u043F\u0430\u0437\u043E\u043D", base64: "\u0440\u0430\u0434\u043E\u043A \u0443 \u0444\u0430\u0440\u043C\u0430\u0446\u0435 base64", base64url: "\u0440\u0430\u0434\u043E\u043A \u0443 \u0444\u0430\u0440\u043C\u0430\u0446\u0435 base64url", json_string: "JSON \u0440\u0430\u0434\u043E\u043A", e164: "\u043D\u0443\u043C\u0430\u0440 E.164", jwt: "JWT", template_literal: "\u0443\u0432\u043E\u0434" }; const TypeDictionary = { nan: "NaN", number: "\u043B\u0456\u043A", array: "\u043C\u0430\u0441\u0456\u045E" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `\u041D\u044F\u043F\u0440\u0430\u0432\u0456\u043B\u044C\u043D\u044B \u045E\u0432\u043E\u0434: \u0447\u0430\u043A\u0430\u045E\u0441\u044F instanceof ${issue2.expected}, \u0430\u0442\u0440\u044B\u043C\u0430\u043D\u0430 ${received}`; } return `\u041D\u044F\u043F\u0440\u0430\u0432\u0456\u043B\u044C\u043D\u044B \u045E\u0432\u043E\u0434: \u0447\u0430\u043A\u0430\u045E\u0441\u044F ${expected}, \u0430\u0442\u0440\u044B\u043C\u0430\u043D\u0430 ${received}`; } case "invalid_value": if (issue2.values.length === 1) return `\u041D\u044F\u043F\u0440\u0430\u0432\u0456\u043B\u044C\u043D\u044B \u045E\u0432\u043E\u0434: \u0447\u0430\u043A\u0430\u043B\u0430\u0441\u044F ${stringifyPrimitive(issue2.values[0])}`; return `\u041D\u044F\u043F\u0440\u0430\u0432\u0456\u043B\u044C\u043D\u044B \u0432\u0430\u0440\u044B\u044F\u043D\u0442: \u0447\u0430\u043A\u0430\u045E\u0441\u044F \u0430\u0434\u0437\u0456\u043D \u0437 ${joinValues(issue2.values, "|")}`; case "too_big": { const adj = issue2.inclusive ? "<=" : "<"; const sizing = getSizing(issue2.origin); if (sizing) { const maxValue = Number(issue2.maximum); const unit = getBelarusianPlural(maxValue, sizing.unit.one, sizing.unit.few, sizing.unit.many); return `\u0417\u0430\u043D\u0430\u0434\u0442\u0430 \u0432\u044F\u043B\u0456\u043A\u0456: \u0447\u0430\u043A\u0430\u043B\u0430\u0441\u044F, \u0448\u0442\u043E ${issue2.origin ?? "\u0437\u043D\u0430\u0447\u044D\u043D\u043D\u0435"} \u043F\u0430\u0432\u0456\u043D\u043D\u0430 ${sizing.verb} ${adj}${issue2.maximum.toString()} ${unit}`; } return `\u0417\u0430\u043D\u0430\u0434\u0442\u0430 \u0432\u044F\u043B\u0456\u043A\u0456: \u0447\u0430\u043A\u0430\u043B\u0430\u0441\u044F, \u0448\u0442\u043E ${issue2.origin ?? "\u0437\u043D\u0430\u0447\u044D\u043D\u043D\u0435"} \u043F\u0430\u0432\u0456\u043D\u043D\u0430 \u0431\u044B\u0446\u044C ${adj}${issue2.maximum.toString()}`; } case "too_small": { const adj = issue2.inclusive ? ">=" : ">"; const sizing = getSizing(issue2.origin); if (sizing) { const minValue = Number(issue2.minimum); const unit = getBelarusianPlural(minValue, sizing.unit.one, sizing.unit.few, sizing.unit.many); return `\u0417\u0430\u043D\u0430\u0434\u0442\u0430 \u043C\u0430\u043B\u044B: \u0447\u0430\u043A\u0430\u043B\u0430\u0441\u044F, \u0448\u0442\u043E ${issue2.origin} \u043F\u0430\u0432\u0456\u043D\u043D\u0430 ${sizing.verb} ${adj}${issue2.minimum.toString()} ${unit}`; } return `\u0417\u0430\u043D\u0430\u0434\u0442\u0430 \u043C\u0430\u043B\u044B: \u0447\u0430\u043A\u0430\u043B\u0430\u0441\u044F, \u0448\u0442\u043E ${issue2.origin} \u043F\u0430\u0432\u0456\u043D\u043D\u0430 \u0431\u044B\u0446\u044C ${adj}${issue2.minimum.toString()}`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") return `\u041D\u044F\u043F\u0440\u0430\u0432\u0456\u043B\u044C\u043D\u044B \u0440\u0430\u0434\u043E\u043A: \u043F\u0430\u0432\u0456\u043D\u0435\u043D \u043F\u0430\u0447\u044B\u043D\u0430\u0446\u0446\u0430 \u0437 "${_issue.prefix}"`; if (_issue.format === "ends_with") return `\u041D\u044F\u043F\u0440\u0430\u0432\u0456\u043B\u044C\u043D\u044B \u0440\u0430\u0434\u043E\u043A: \u043F\u0430\u0432\u0456\u043D\u0435\u043D \u0437\u0430\u043A\u0430\u043D\u0447\u0432\u0430\u0446\u0446\u0430 \u043D\u0430 "${_issue.suffix}"`; if (_issue.format === "includes") return `\u041D\u044F\u043F\u0440\u0430\u0432\u0456\u043B\u044C\u043D\u044B \u0440\u0430\u0434\u043E\u043A: \u043F\u0430\u0432\u0456\u043D\u0435\u043D \u0437\u043C\u044F\u0448\u0447\u0430\u0446\u044C "${_issue.includes}"`; if (_issue.format === "regex") return `\u041D\u044F\u043F\u0440\u0430\u0432\u0456\u043B\u044C\u043D\u044B \u0440\u0430\u0434\u043E\u043A: \u043F\u0430\u0432\u0456\u043D\u0435\u043D \u0430\u0434\u043F\u0430\u0432\u044F\u0434\u0430\u0446\u044C \u0448\u0430\u0431\u043B\u043E\u043D\u0443 ${_issue.pattern}`; return `\u041D\u044F\u043F\u0440\u0430\u0432\u0456\u043B\u044C\u043D\u044B ${FormatDictionary[_issue.format] ?? issue2.format}`; } case "not_multiple_of": return `\u041D\u044F\u043F\u0440\u0430\u0432\u0456\u043B\u044C\u043D\u044B \u043B\u0456\u043A: \u043F\u0430\u0432\u0456\u043D\u0435\u043D \u0431\u044B\u0446\u044C \u043A\u0440\u0430\u0442\u043D\u044B\u043C ${issue2.divisor}`; case "unrecognized_keys": return `\u041D\u0435\u0440\u0430\u0441\u043F\u0430\u0437\u043D\u0430\u043D\u044B ${issue2.keys.length > 1 ? "\u043A\u043B\u044E\u0447\u044B" : "\u043A\u043B\u044E\u0447"}: ${joinValues(issue2.keys, ", ")}`; case "invalid_key": return `\u041D\u044F\u043F\u0440\u0430\u0432\u0456\u043B\u044C\u043D\u044B \u043A\u043B\u044E\u0447 \u0443 ${issue2.origin}`; case "invalid_union": return "\u041D\u044F\u043F\u0440\u0430\u0432\u0456\u043B\u044C\u043D\u044B \u045E\u0432\u043E\u0434"; case "invalid_element": return `\u041D\u044F\u043F\u0440\u0430\u0432\u0456\u043B\u044C\u043D\u0430\u0435 \u0437\u043D\u0430\u0447\u044D\u043D\u043D\u0435 \u045E ${issue2.origin}`; default: return `\u041D\u044F\u043F\u0440\u0430\u0432\u0456\u043B\u044C\u043D\u044B \u045E\u0432\u043E\u0434`; } }; }, "error"); function be_default() { return { localeError: error5() }; } __name(be_default, "default"); // ../../node_modules/zod/v4/locales/bg.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var error6 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: "\u0441\u0438\u043C\u0432\u043E\u043B\u0430", verb: "\u0434\u0430 \u0441\u044A\u0434\u044A\u0440\u0436\u0430" }, file: { unit: "\u0431\u0430\u0439\u0442\u0430", verb: "\u0434\u0430 \u0441\u044A\u0434\u044A\u0440\u0436\u0430" }, array: { unit: "\u0435\u043B\u0435\u043C\u0435\u043D\u0442\u0430", verb: "\u0434\u0430 \u0441\u044A\u0434\u044A\u0440\u0436\u0430" }, set: { unit: "\u0435\u043B\u0435\u043C\u0435\u043D\u0442\u0430", verb: "\u0434\u0430 \u0441\u044A\u0434\u044A\u0440\u0436\u0430" } }; function getSizing(origin2) { return Sizable[origin2] ?? null; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "\u0432\u0445\u043E\u0434", email: "\u0438\u043C\u0435\u0439\u043B \u0430\u0434\u0440\u0435\u0441", url: "URL", emoji: "\u0435\u043C\u043E\u0434\u0436\u0438", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "ISO \u0432\u0440\u0435\u043C\u0435", date: "ISO \u0434\u0430\u0442\u0430", time: "ISO \u0432\u0440\u0435\u043C\u0435", duration: "ISO \u043F\u0440\u043E\u0434\u044A\u043B\u0436\u0438\u0442\u0435\u043B\u043D\u043E\u0441\u0442", ipv4: "IPv4 \u0430\u0434\u0440\u0435\u0441", ipv6: "IPv6 \u0430\u0434\u0440\u0435\u0441", cidrv4: "IPv4 \u0434\u0438\u0430\u043F\u0430\u0437\u043E\u043D", cidrv6: "IPv6 \u0434\u0438\u0430\u043F\u0430\u0437\u043E\u043D", base64: "base64-\u043A\u043E\u0434\u0438\u0440\u0430\u043D \u043D\u0438\u0437", base64url: "base64url-\u043A\u043E\u0434\u0438\u0440\u0430\u043D \u043D\u0438\u0437", json_string: "JSON \u043D\u0438\u0437", e164: "E.164 \u043D\u043E\u043C\u0435\u0440", jwt: "JWT", template_literal: "\u0432\u0445\u043E\u0434" }; const TypeDictionary = { nan: "NaN", number: "\u0447\u0438\u0441\u043B\u043E", array: "\u043C\u0430\u0441\u0438\u0432" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `\u041D\u0435\u0432\u0430\u043B\u0438\u0434\u0435\u043D \u0432\u0445\u043E\u0434: \u043E\u0447\u0430\u043A\u0432\u0430\u043D instanceof ${issue2.expected}, \u043F\u043E\u043B\u0443\u0447\u0435\u043D ${received}`; } return `\u041D\u0435\u0432\u0430\u043B\u0438\u0434\u0435\u043D \u0432\u0445\u043E\u0434: \u043E\u0447\u0430\u043A\u0432\u0430\u043D ${expected}, \u043F\u043E\u043B\u0443\u0447\u0435\u043D ${received}`; } case "invalid_value": if (issue2.values.length === 1) return `\u041D\u0435\u0432\u0430\u043B\u0438\u0434\u0435\u043D \u0432\u0445\u043E\u0434: \u043E\u0447\u0430\u043A\u0432\u0430\u043D ${stringifyPrimitive(issue2.values[0])}`; return `\u041D\u0435\u0432\u0430\u043B\u0438\u0434\u043D\u0430 \u043E\u043F\u0446\u0438\u044F: \u043E\u0447\u0430\u043A\u0432\u0430\u043D\u043E \u0435\u0434\u043D\u043E \u043E\u0442 ${joinValues(issue2.values, "|")}`; case "too_big": { const adj = issue2.inclusive ? "<=" : "<"; const sizing = getSizing(issue2.origin); if (sizing) return `\u0422\u0432\u044A\u0440\u0434\u0435 \u0433\u043E\u043B\u044F\u043C\u043E: \u043E\u0447\u0430\u043A\u0432\u0430 \u0441\u0435 ${issue2.origin ?? "\u0441\u0442\u043E\u0439\u043D\u043E\u0441\u0442"} \u0434\u0430 \u0441\u044A\u0434\u044A\u0440\u0436\u0430 ${adj}${issue2.maximum.toString()} ${sizing.unit ?? "\u0435\u043B\u0435\u043C\u0435\u043D\u0442\u0430"}`; return `\u0422\u0432\u044A\u0440\u0434\u0435 \u0433\u043E\u043B\u044F\u043C\u043E: \u043E\u0447\u0430\u043A\u0432\u0430 \u0441\u0435 ${issue2.origin ?? "\u0441\u0442\u043E\u0439\u043D\u043E\u0441\u0442"} \u0434\u0430 \u0431\u044A\u0434\u0435 ${adj}${issue2.maximum.toString()}`; } case "too_small": { const adj = issue2.inclusive ? ">=" : ">"; const sizing = getSizing(issue2.origin); if (sizing) { return `\u0422\u0432\u044A\u0440\u0434\u0435 \u043C\u0430\u043B\u043A\u043E: \u043E\u0447\u0430\u043A\u0432\u0430 \u0441\u0435 ${issue2.origin} \u0434\u0430 \u0441\u044A\u0434\u044A\u0440\u0436\u0430 ${adj}${issue2.minimum.toString()} ${sizing.unit}`; } return `\u0422\u0432\u044A\u0440\u0434\u0435 \u043C\u0430\u043B\u043A\u043E: \u043E\u0447\u0430\u043A\u0432\u0430 \u0441\u0435 ${issue2.origin} \u0434\u0430 \u0431\u044A\u0434\u0435 ${adj}${issue2.minimum.toString()}`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") { return `\u041D\u0435\u0432\u0430\u043B\u0438\u0434\u0435\u043D \u043D\u0438\u0437: \u0442\u0440\u044F\u0431\u0432\u0430 \u0434\u0430 \u0437\u0430\u043F\u043E\u0447\u0432\u0430 \u0441 "${_issue.prefix}"`; } if (_issue.format === "ends_with") return `\u041D\u0435\u0432\u0430\u043B\u0438\u0434\u0435\u043D \u043D\u0438\u0437: \u0442\u0440\u044F\u0431\u0432\u0430 \u0434\u0430 \u0437\u0430\u0432\u044A\u0440\u0448\u0432\u0430 \u0441 "${_issue.suffix}"`; if (_issue.format === "includes") return `\u041D\u0435\u0432\u0430\u043B\u0438\u0434\u0435\u043D \u043D\u0438\u0437: \u0442\u0440\u044F\u0431\u0432\u0430 \u0434\u0430 \u0432\u043A\u043B\u044E\u0447\u0432\u0430 "${_issue.includes}"`; if (_issue.format === "regex") return `\u041D\u0435\u0432\u0430\u043B\u0438\u0434\u0435\u043D \u043D\u0438\u0437: \u0442\u0440\u044F\u0431\u0432\u0430 \u0434\u0430 \u0441\u044A\u0432\u043F\u0430\u0434\u0430 \u0441 ${_issue.pattern}`; let invalid_adj = "\u041D\u0435\u0432\u0430\u043B\u0438\u0434\u0435\u043D"; if (_issue.format === "emoji") invalid_adj = "\u041D\u0435\u0432\u0430\u043B\u0438\u0434\u043D\u043E"; if (_issue.format === "datetime") invalid_adj = "\u041D\u0435\u0432\u0430\u043B\u0438\u0434\u043D\u043E"; if (_issue.format === "date") invalid_adj = "\u041D\u0435\u0432\u0430\u043B\u0438\u0434\u043D\u0430"; if (_issue.format === "time") invalid_adj = "\u041D\u0435\u0432\u0430\u043B\u0438\u0434\u043D\u043E"; if (_issue.format === "duration") invalid_adj = "\u041D\u0435\u0432\u0430\u043B\u0438\u0434\u043D\u0430"; return `${invalid_adj} ${FormatDictionary[_issue.format] ?? issue2.format}`; } case "not_multiple_of": return `\u041D\u0435\u0432\u0430\u043B\u0438\u0434\u043D\u043E \u0447\u0438\u0441\u043B\u043E: \u0442\u0440\u044F\u0431\u0432\u0430 \u0434\u0430 \u0431\u044A\u0434\u0435 \u043A\u0440\u0430\u0442\u043D\u043E \u043D\u0430 ${issue2.divisor}`; case "unrecognized_keys": return `\u041D\u0435\u0440\u0430\u0437\u043F\u043E\u0437\u043D\u0430\u0442${issue2.keys.length > 1 ? "\u0438" : ""} \u043A\u043B\u044E\u0447${issue2.keys.length > 1 ? "\u043E\u0432\u0435" : ""}: ${joinValues(issue2.keys, ", ")}`; case "invalid_key": return `\u041D\u0435\u0432\u0430\u043B\u0438\u0434\u0435\u043D \u043A\u043B\u044E\u0447 \u0432 ${issue2.origin}`; case "invalid_union": return "\u041D\u0435\u0432\u0430\u043B\u0438\u0434\u0435\u043D \u0432\u0445\u043E\u0434"; case "invalid_element": return `\u041D\u0435\u0432\u0430\u043B\u0438\u0434\u043D\u0430 \u0441\u0442\u043E\u0439\u043D\u043E\u0441\u0442 \u0432 ${issue2.origin}`; default: return `\u041D\u0435\u0432\u0430\u043B\u0438\u0434\u0435\u043D \u0432\u0445\u043E\u0434`; } }; }, "error"); function bg_default() { return { localeError: error6() }; } __name(bg_default, "default"); // ../../node_modules/zod/v4/locales/ca.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var error7 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: "car\xE0cters", verb: "contenir" }, file: { unit: "bytes", verb: "contenir" }, array: { unit: "elements", verb: "contenir" }, set: { unit: "elements", verb: "contenir" } }; function getSizing(origin2) { return Sizable[origin2] ?? null; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "entrada", email: "adre\xE7a electr\xF2nica", url: "URL", emoji: "emoji", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "data i hora ISO", date: "data ISO", time: "hora ISO", duration: "durada ISO", ipv4: "adre\xE7a IPv4", ipv6: "adre\xE7a IPv6", cidrv4: "rang IPv4", cidrv6: "rang IPv6", base64: "cadena codificada en base64", base64url: "cadena codificada en base64url", json_string: "cadena JSON", e164: "n\xFAmero E.164", jwt: "JWT", template_literal: "entrada" }; const TypeDictionary = { nan: "NaN" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `Tipus inv\xE0lid: s'esperava instanceof ${issue2.expected}, s'ha rebut ${received}`; } return `Tipus inv\xE0lid: s'esperava ${expected}, s'ha rebut ${received}`; } case "invalid_value": if (issue2.values.length === 1) return `Valor inv\xE0lid: s'esperava ${stringifyPrimitive(issue2.values[0])}`; return `Opci\xF3 inv\xE0lida: s'esperava una de ${joinValues(issue2.values, " o ")}`; case "too_big": { const adj = issue2.inclusive ? "com a m\xE0xim" : "menys de"; const sizing = getSizing(issue2.origin); if (sizing) return `Massa gran: s'esperava que ${issue2.origin ?? "el valor"} contingu\xE9s ${adj} ${issue2.maximum.toString()} ${sizing.unit ?? "elements"}`; return `Massa gran: s'esperava que ${issue2.origin ?? "el valor"} fos ${adj} ${issue2.maximum.toString()}`; } case "too_small": { const adj = issue2.inclusive ? "com a m\xEDnim" : "m\xE9s de"; const sizing = getSizing(issue2.origin); if (sizing) { return `Massa petit: s'esperava que ${issue2.origin} contingu\xE9s ${adj} ${issue2.minimum.toString()} ${sizing.unit}`; } return `Massa petit: s'esperava que ${issue2.origin} fos ${adj} ${issue2.minimum.toString()}`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") { return `Format inv\xE0lid: ha de comen\xE7ar amb "${_issue.prefix}"`; } if (_issue.format === "ends_with") return `Format inv\xE0lid: ha d'acabar amb "${_issue.suffix}"`; if (_issue.format === "includes") return `Format inv\xE0lid: ha d'incloure "${_issue.includes}"`; if (_issue.format === "regex") return `Format inv\xE0lid: ha de coincidir amb el patr\xF3 ${_issue.pattern}`; return `Format inv\xE0lid per a ${FormatDictionary[_issue.format] ?? issue2.format}`; } case "not_multiple_of": return `N\xFAmero inv\xE0lid: ha de ser m\xFAltiple de ${issue2.divisor}`; case "unrecognized_keys": return `Clau${issue2.keys.length > 1 ? "s" : ""} no reconeguda${issue2.keys.length > 1 ? "s" : ""}: ${joinValues(issue2.keys, ", ")}`; case "invalid_key": return `Clau inv\xE0lida a ${issue2.origin}`; case "invalid_union": return "Entrada inv\xE0lida"; // Could also be "Tipus d'unió invàlid" but "Entrada invàlida" is more general case "invalid_element": return `Element inv\xE0lid a ${issue2.origin}`; default: return `Entrada inv\xE0lida`; } }; }, "error"); function ca_default() { return { localeError: error7() }; } __name(ca_default, "default"); // ../../node_modules/zod/v4/locales/cs.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var error8 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: "znak\u016F", verb: "m\xEDt" }, file: { unit: "bajt\u016F", verb: "m\xEDt" }, array: { unit: "prvk\u016F", verb: "m\xEDt" }, set: { unit: "prvk\u016F", verb: "m\xEDt" } }; function getSizing(origin2) { return Sizable[origin2] ?? null; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "regul\xE1rn\xED v\xFDraz", email: "e-mailov\xE1 adresa", url: "URL", emoji: "emoji", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "datum a \u010Das ve form\xE1tu ISO", date: "datum ve form\xE1tu ISO", time: "\u010Das ve form\xE1tu ISO", duration: "doba trv\xE1n\xED ISO", ipv4: "IPv4 adresa", ipv6: "IPv6 adresa", cidrv4: "rozsah IPv4", cidrv6: "rozsah IPv6", base64: "\u0159et\u011Bzec zak\xF3dovan\xFD ve form\xE1tu base64", base64url: "\u0159et\u011Bzec zak\xF3dovan\xFD ve form\xE1tu base64url", json_string: "\u0159et\u011Bzec ve form\xE1tu JSON", e164: "\u010D\xEDslo E.164", jwt: "JWT", template_literal: "vstup" }; const TypeDictionary = { nan: "NaN", number: "\u010D\xEDslo", string: "\u0159et\u011Bzec", function: "funkce", array: "pole" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `Neplatn\xFD vstup: o\u010Dek\xE1v\xE1no instanceof ${issue2.expected}, obdr\u017Eeno ${received}`; } return `Neplatn\xFD vstup: o\u010Dek\xE1v\xE1no ${expected}, obdr\u017Eeno ${received}`; } case "invalid_value": if (issue2.values.length === 1) return `Neplatn\xFD vstup: o\u010Dek\xE1v\xE1no ${stringifyPrimitive(issue2.values[0])}`; return `Neplatn\xE1 mo\u017Enost: o\u010Dek\xE1v\xE1na jedna z hodnot ${joinValues(issue2.values, "|")}`; case "too_big": { const adj = issue2.inclusive ? "<=" : "<"; const sizing = getSizing(issue2.origin); if (sizing) { return `Hodnota je p\u0159\xEDli\u0161 velk\xE1: ${issue2.origin ?? "hodnota"} mus\xED m\xEDt ${adj}${issue2.maximum.toString()} ${sizing.unit ?? "prvk\u016F"}`; } return `Hodnota je p\u0159\xEDli\u0161 velk\xE1: ${issue2.origin ?? "hodnota"} mus\xED b\xFDt ${adj}${issue2.maximum.toString()}`; } case "too_small": { const adj = issue2.inclusive ? ">=" : ">"; const sizing = getSizing(issue2.origin); if (sizing) { return `Hodnota je p\u0159\xEDli\u0161 mal\xE1: ${issue2.origin ?? "hodnota"} mus\xED m\xEDt ${adj}${issue2.minimum.toString()} ${sizing.unit ?? "prvk\u016F"}`; } return `Hodnota je p\u0159\xEDli\u0161 mal\xE1: ${issue2.origin ?? "hodnota"} mus\xED b\xFDt ${adj}${issue2.minimum.toString()}`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") return `Neplatn\xFD \u0159et\u011Bzec: mus\xED za\u010D\xEDnat na "${_issue.prefix}"`; if (_issue.format === "ends_with") return `Neplatn\xFD \u0159et\u011Bzec: mus\xED kon\u010Dit na "${_issue.suffix}"`; if (_issue.format === "includes") return `Neplatn\xFD \u0159et\u011Bzec: mus\xED obsahovat "${_issue.includes}"`; if (_issue.format === "regex") return `Neplatn\xFD \u0159et\u011Bzec: mus\xED odpov\xEDdat vzoru ${_issue.pattern}`; return `Neplatn\xFD form\xE1t ${FormatDictionary[_issue.format] ?? issue2.format}`; } case "not_multiple_of": return `Neplatn\xE9 \u010D\xEDslo: mus\xED b\xFDt n\xE1sobkem ${issue2.divisor}`; case "unrecognized_keys": return `Nezn\xE1m\xE9 kl\xED\u010De: ${joinValues(issue2.keys, ", ")}`; case "invalid_key": return `Neplatn\xFD kl\xED\u010D v ${issue2.origin}`; case "invalid_union": return "Neplatn\xFD vstup"; case "invalid_element": return `Neplatn\xE1 hodnota v ${issue2.origin}`; default: return `Neplatn\xFD vstup`; } }; }, "error"); function cs_default() { return { localeError: error8() }; } __name(cs_default, "default"); // ../../node_modules/zod/v4/locales/da.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var error9 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: "tegn", verb: "havde" }, file: { unit: "bytes", verb: "havde" }, array: { unit: "elementer", verb: "indeholdt" }, set: { unit: "elementer", verb: "indeholdt" } }; function getSizing(origin2) { return Sizable[origin2] ?? null; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "input", email: "e-mailadresse", url: "URL", emoji: "emoji", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "ISO dato- og klokkesl\xE6t", date: "ISO-dato", time: "ISO-klokkesl\xE6t", duration: "ISO-varighed", ipv4: "IPv4-omr\xE5de", ipv6: "IPv6-omr\xE5de", cidrv4: "IPv4-spektrum", cidrv6: "IPv6-spektrum", base64: "base64-kodet streng", base64url: "base64url-kodet streng", json_string: "JSON-streng", e164: "E.164-nummer", jwt: "JWT", template_literal: "input" }; const TypeDictionary = { nan: "NaN", string: "streng", number: "tal", boolean: "boolean", array: "liste", object: "objekt", set: "s\xE6t", file: "fil" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `Ugyldigt input: forventede instanceof ${issue2.expected}, fik ${received}`; } return `Ugyldigt input: forventede ${expected}, fik ${received}`; } case "invalid_value": if (issue2.values.length === 1) return `Ugyldig v\xE6rdi: forventede ${stringifyPrimitive(issue2.values[0])}`; return `Ugyldigt valg: forventede en af f\xF8lgende ${joinValues(issue2.values, "|")}`; case "too_big": { const adj = issue2.inclusive ? "<=" : "<"; const sizing = getSizing(issue2.origin); const origin2 = TypeDictionary[issue2.origin] ?? issue2.origin; if (sizing) return `For stor: forventede ${origin2 ?? "value"} ${sizing.verb} ${adj} ${issue2.maximum.toString()} ${sizing.unit ?? "elementer"}`; return `For stor: forventede ${origin2 ?? "value"} havde ${adj} ${issue2.maximum.toString()}`; } case "too_small": { const adj = issue2.inclusive ? ">=" : ">"; const sizing = getSizing(issue2.origin); const origin2 = TypeDictionary[issue2.origin] ?? issue2.origin; if (sizing) { return `For lille: forventede ${origin2} ${sizing.verb} ${adj} ${issue2.minimum.toString()} ${sizing.unit}`; } return `For lille: forventede ${origin2} havde ${adj} ${issue2.minimum.toString()}`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") return `Ugyldig streng: skal starte med "${_issue.prefix}"`; if (_issue.format === "ends_with") return `Ugyldig streng: skal ende med "${_issue.suffix}"`; if (_issue.format === "includes") return `Ugyldig streng: skal indeholde "${_issue.includes}"`; if (_issue.format === "regex") return `Ugyldig streng: skal matche m\xF8nsteret ${_issue.pattern}`; return `Ugyldig ${FormatDictionary[_issue.format] ?? issue2.format}`; } case "not_multiple_of": return `Ugyldigt tal: skal v\xE6re deleligt med ${issue2.divisor}`; case "unrecognized_keys": return `${issue2.keys.length > 1 ? "Ukendte n\xF8gler" : "Ukendt n\xF8gle"}: ${joinValues(issue2.keys, ", ")}`; case "invalid_key": return `Ugyldig n\xF8gle i ${issue2.origin}`; case "invalid_union": return "Ugyldigt input: matcher ingen af de tilladte typer"; case "invalid_element": return `Ugyldig v\xE6rdi i ${issue2.origin}`; default: return `Ugyldigt input`; } }; }, "error"); function da_default() { return { localeError: error9() }; } __name(da_default, "default"); // ../../node_modules/zod/v4/locales/de.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var error10 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: "Zeichen", verb: "zu haben" }, file: { unit: "Bytes", verb: "zu haben" }, array: { unit: "Elemente", verb: "zu haben" }, set: { unit: "Elemente", verb: "zu haben" } }; function getSizing(origin2) { return Sizable[origin2] ?? null; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "Eingabe", email: "E-Mail-Adresse", url: "URL", emoji: "Emoji", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "ISO-Datum und -Uhrzeit", date: "ISO-Datum", time: "ISO-Uhrzeit", duration: "ISO-Dauer", ipv4: "IPv4-Adresse", ipv6: "IPv6-Adresse", cidrv4: "IPv4-Bereich", cidrv6: "IPv6-Bereich", base64: "Base64-codierter String", base64url: "Base64-URL-codierter String", json_string: "JSON-String", e164: "E.164-Nummer", jwt: "JWT", template_literal: "Eingabe" }; const TypeDictionary = { nan: "NaN", number: "Zahl", array: "Array" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `Ung\xFCltige Eingabe: erwartet instanceof ${issue2.expected}, erhalten ${received}`; } return `Ung\xFCltige Eingabe: erwartet ${expected}, erhalten ${received}`; } case "invalid_value": if (issue2.values.length === 1) return `Ung\xFCltige Eingabe: erwartet ${stringifyPrimitive(issue2.values[0])}`; return `Ung\xFCltige Option: erwartet eine von ${joinValues(issue2.values, "|")}`; case "too_big": { const adj = issue2.inclusive ? "<=" : "<"; const sizing = getSizing(issue2.origin); if (sizing) return `Zu gro\xDF: erwartet, dass ${issue2.origin ?? "Wert"} ${adj}${issue2.maximum.toString()} ${sizing.unit ?? "Elemente"} hat`; return `Zu gro\xDF: erwartet, dass ${issue2.origin ?? "Wert"} ${adj}${issue2.maximum.toString()} ist`; } case "too_small": { const adj = issue2.inclusive ? ">=" : ">"; const sizing = getSizing(issue2.origin); if (sizing) { return `Zu klein: erwartet, dass ${issue2.origin} ${adj}${issue2.minimum.toString()} ${sizing.unit} hat`; } return `Zu klein: erwartet, dass ${issue2.origin} ${adj}${issue2.minimum.toString()} ist`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") return `Ung\xFCltiger String: muss mit "${_issue.prefix}" beginnen`; if (_issue.format === "ends_with") return `Ung\xFCltiger String: muss mit "${_issue.suffix}" enden`; if (_issue.format === "includes") return `Ung\xFCltiger String: muss "${_issue.includes}" enthalten`; if (_issue.format === "regex") return `Ung\xFCltiger String: muss dem Muster ${_issue.pattern} entsprechen`; return `Ung\xFCltig: ${FormatDictionary[_issue.format] ?? issue2.format}`; } case "not_multiple_of": return `Ung\xFCltige Zahl: muss ein Vielfaches von ${issue2.divisor} sein`; case "unrecognized_keys": return `${issue2.keys.length > 1 ? "Unbekannte Schl\xFCssel" : "Unbekannter Schl\xFCssel"}: ${joinValues(issue2.keys, ", ")}`; case "invalid_key": return `Ung\xFCltiger Schl\xFCssel in ${issue2.origin}`; case "invalid_union": return "Ung\xFCltige Eingabe"; case "invalid_element": return `Ung\xFCltiger Wert in ${issue2.origin}`; default: return `Ung\xFCltige Eingabe`; } }; }, "error"); function de_default() { return { localeError: error10() }; } __name(de_default, "default"); // ../../node_modules/zod/v4/locales/en.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var error11 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: "characters", verb: "to have" }, file: { unit: "bytes", verb: "to have" }, array: { unit: "items", verb: "to have" }, set: { unit: "items", verb: "to have" }, map: { unit: "entries", verb: "to have" } }; function getSizing(origin2) { return Sizable[origin2] ?? null; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "input", email: "email address", url: "URL", emoji: "emoji", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "ISO datetime", date: "ISO date", time: "ISO time", duration: "ISO duration", ipv4: "IPv4 address", ipv6: "IPv6 address", mac: "MAC address", cidrv4: "IPv4 range", cidrv6: "IPv6 range", base64: "base64-encoded string", base64url: "base64url-encoded string", json_string: "JSON string", e164: "E.164 number", jwt: "JWT", template_literal: "input" }; const TypeDictionary = { // Compatibility: "nan" -> "NaN" for display nan: "NaN" // All other type names omitted - they fall back to raw values via ?? operator }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; return `Invalid input: expected ${expected}, received ${received}`; } case "invalid_value": if (issue2.values.length === 1) return `Invalid input: expected ${stringifyPrimitive(issue2.values[0])}`; return `Invalid option: expected one of ${joinValues(issue2.values, "|")}`; case "too_big": { const adj = issue2.inclusive ? "<=" : "<"; const sizing = getSizing(issue2.origin); if (sizing) return `Too big: expected ${issue2.origin ?? "value"} to have ${adj}${issue2.maximum.toString()} ${sizing.unit ?? "elements"}`; return `Too big: expected ${issue2.origin ?? "value"} to be ${adj}${issue2.maximum.toString()}`; } case "too_small": { const adj = issue2.inclusive ? ">=" : ">"; const sizing = getSizing(issue2.origin); if (sizing) { return `Too small: expected ${issue2.origin} to have ${adj}${issue2.minimum.toString()} ${sizing.unit}`; } return `Too small: expected ${issue2.origin} to be ${adj}${issue2.minimum.toString()}`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") { return `Invalid string: must start with "${_issue.prefix}"`; } if (_issue.format === "ends_with") return `Invalid string: must end with "${_issue.suffix}"`; if (_issue.format === "includes") return `Invalid string: must include "${_issue.includes}"`; if (_issue.format === "regex") return `Invalid string: must match pattern ${_issue.pattern}`; return `Invalid ${FormatDictionary[_issue.format] ?? issue2.format}`; } case "not_multiple_of": return `Invalid number: must be a multiple of ${issue2.divisor}`; case "unrecognized_keys": return `Unrecognized key${issue2.keys.length > 1 ? "s" : ""}: ${joinValues(issue2.keys, ", ")}`; case "invalid_key": return `Invalid key in ${issue2.origin}`; case "invalid_union": return "Invalid input"; case "invalid_element": return `Invalid value in ${issue2.origin}`; default: return `Invalid input`; } }; }, "error"); function en_default() { return { localeError: error11() }; } __name(en_default, "default"); // ../../node_modules/zod/v4/locales/eo.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var error12 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: "karaktrojn", verb: "havi" }, file: { unit: "bajtojn", verb: "havi" }, array: { unit: "elementojn", verb: "havi" }, set: { unit: "elementojn", verb: "havi" } }; function getSizing(origin2) { return Sizable[origin2] ?? null; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "enigo", email: "retadreso", url: "URL", emoji: "emo\u011Dio", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "ISO-datotempo", date: "ISO-dato", time: "ISO-tempo", duration: "ISO-da\u016Dro", ipv4: "IPv4-adreso", ipv6: "IPv6-adreso", cidrv4: "IPv4-rango", cidrv6: "IPv6-rango", base64: "64-ume kodita karaktraro", base64url: "URL-64-ume kodita karaktraro", json_string: "JSON-karaktraro", e164: "E.164-nombro", jwt: "JWT", template_literal: "enigo" }; const TypeDictionary = { nan: "NaN", number: "nombro", array: "tabelo", null: "senvalora" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `Nevalida enigo: atendi\u011Dis instanceof ${issue2.expected}, ricevi\u011Dis ${received}`; } return `Nevalida enigo: atendi\u011Dis ${expected}, ricevi\u011Dis ${received}`; } case "invalid_value": if (issue2.values.length === 1) return `Nevalida enigo: atendi\u011Dis ${stringifyPrimitive(issue2.values[0])}`; return `Nevalida opcio: atendi\u011Dis unu el ${joinValues(issue2.values, "|")}`; case "too_big": { const adj = issue2.inclusive ? "<=" : "<"; const sizing = getSizing(issue2.origin); if (sizing) return `Tro granda: atendi\u011Dis ke ${issue2.origin ?? "valoro"} havu ${adj}${issue2.maximum.toString()} ${sizing.unit ?? "elementojn"}`; return `Tro granda: atendi\u011Dis ke ${issue2.origin ?? "valoro"} havu ${adj}${issue2.maximum.toString()}`; } case "too_small": { const adj = issue2.inclusive ? ">=" : ">"; const sizing = getSizing(issue2.origin); if (sizing) { return `Tro malgranda: atendi\u011Dis ke ${issue2.origin} havu ${adj}${issue2.minimum.toString()} ${sizing.unit}`; } return `Tro malgranda: atendi\u011Dis ke ${issue2.origin} estu ${adj}${issue2.minimum.toString()}`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") return `Nevalida karaktraro: devas komenci\u011Di per "${_issue.prefix}"`; if (_issue.format === "ends_with") return `Nevalida karaktraro: devas fini\u011Di per "${_issue.suffix}"`; if (_issue.format === "includes") return `Nevalida karaktraro: devas inkluzivi "${_issue.includes}"`; if (_issue.format === "regex") return `Nevalida karaktraro: devas kongrui kun la modelo ${_issue.pattern}`; return `Nevalida ${FormatDictionary[_issue.format] ?? issue2.format}`; } case "not_multiple_of": return `Nevalida nombro: devas esti oblo de ${issue2.divisor}`; case "unrecognized_keys": return `Nekonata${issue2.keys.length > 1 ? "j" : ""} \u015Dlosilo${issue2.keys.length > 1 ? "j" : ""}: ${joinValues(issue2.keys, ", ")}`; case "invalid_key": return `Nevalida \u015Dlosilo en ${issue2.origin}`; case "invalid_union": return "Nevalida enigo"; case "invalid_element": return `Nevalida valoro en ${issue2.origin}`; default: return `Nevalida enigo`; } }; }, "error"); function eo_default() { return { localeError: error12() }; } __name(eo_default, "default"); // ../../node_modules/zod/v4/locales/es.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var error13 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: "caracteres", verb: "tener" }, file: { unit: "bytes", verb: "tener" }, array: { unit: "elementos", verb: "tener" }, set: { unit: "elementos", verb: "tener" } }; function getSizing(origin2) { return Sizable[origin2] ?? null; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "entrada", email: "direcci\xF3n de correo electr\xF3nico", url: "URL", emoji: "emoji", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "fecha y hora ISO", date: "fecha ISO", time: "hora ISO", duration: "duraci\xF3n ISO", ipv4: "direcci\xF3n IPv4", ipv6: "direcci\xF3n IPv6", cidrv4: "rango IPv4", cidrv6: "rango IPv6", base64: "cadena codificada en base64", base64url: "URL codificada en base64", json_string: "cadena JSON", e164: "n\xFAmero E.164", jwt: "JWT", template_literal: "entrada" }; const TypeDictionary = { nan: "NaN", string: "texto", number: "n\xFAmero", boolean: "booleano", array: "arreglo", object: "objeto", set: "conjunto", file: "archivo", date: "fecha", bigint: "n\xFAmero grande", symbol: "s\xEDmbolo", undefined: "indefinido", null: "nulo", function: "funci\xF3n", map: "mapa", record: "registro", tuple: "tupla", enum: "enumeraci\xF3n", union: "uni\xF3n", literal: "literal", promise: "promesa", void: "vac\xEDo", never: "nunca", unknown: "desconocido", any: "cualquiera" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `Entrada inv\xE1lida: se esperaba instanceof ${issue2.expected}, recibido ${received}`; } return `Entrada inv\xE1lida: se esperaba ${expected}, recibido ${received}`; } case "invalid_value": if (issue2.values.length === 1) return `Entrada inv\xE1lida: se esperaba ${stringifyPrimitive(issue2.values[0])}`; return `Opci\xF3n inv\xE1lida: se esperaba una de ${joinValues(issue2.values, "|")}`; case "too_big": { const adj = issue2.inclusive ? "<=" : "<"; const sizing = getSizing(issue2.origin); const origin2 = TypeDictionary[issue2.origin] ?? issue2.origin; if (sizing) return `Demasiado grande: se esperaba que ${origin2 ?? "valor"} tuviera ${adj}${issue2.maximum.toString()} ${sizing.unit ?? "elementos"}`; return `Demasiado grande: se esperaba que ${origin2 ?? "valor"} fuera ${adj}${issue2.maximum.toString()}`; } case "too_small": { const adj = issue2.inclusive ? ">=" : ">"; const sizing = getSizing(issue2.origin); const origin2 = TypeDictionary[issue2.origin] ?? issue2.origin; if (sizing) { return `Demasiado peque\xF1o: se esperaba que ${origin2} tuviera ${adj}${issue2.minimum.toString()} ${sizing.unit}`; } return `Demasiado peque\xF1o: se esperaba que ${origin2} fuera ${adj}${issue2.minimum.toString()}`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") return `Cadena inv\xE1lida: debe comenzar con "${_issue.prefix}"`; if (_issue.format === "ends_with") return `Cadena inv\xE1lida: debe terminar en "${_issue.suffix}"`; if (_issue.format === "includes") return `Cadena inv\xE1lida: debe incluir "${_issue.includes}"`; if (_issue.format === "regex") return `Cadena inv\xE1lida: debe coincidir con el patr\xF3n ${_issue.pattern}`; return `Inv\xE1lido ${FormatDictionary[_issue.format] ?? issue2.format}`; } case "not_multiple_of": return `N\xFAmero inv\xE1lido: debe ser m\xFAltiplo de ${issue2.divisor}`; case "unrecognized_keys": return `Llave${issue2.keys.length > 1 ? "s" : ""} desconocida${issue2.keys.length > 1 ? "s" : ""}: ${joinValues(issue2.keys, ", ")}`; case "invalid_key": return `Llave inv\xE1lida en ${TypeDictionary[issue2.origin] ?? issue2.origin}`; case "invalid_union": return "Entrada inv\xE1lida"; case "invalid_element": return `Valor inv\xE1lido en ${TypeDictionary[issue2.origin] ?? issue2.origin}`; default: return `Entrada inv\xE1lida`; } }; }, "error"); function es_default() { return { localeError: error13() }; } __name(es_default, "default"); // ../../node_modules/zod/v4/locales/fa.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var error14 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: "\u06A9\u0627\u0631\u0627\u06A9\u062A\u0631", verb: "\u062F\u0627\u0634\u062A\u0647 \u0628\u0627\u0634\u062F" }, file: { unit: "\u0628\u0627\u06CC\u062A", verb: "\u062F\u0627\u0634\u062A\u0647 \u0628\u0627\u0634\u062F" }, array: { unit: "\u0622\u06CC\u062A\u0645", verb: "\u062F\u0627\u0634\u062A\u0647 \u0628\u0627\u0634\u062F" }, set: { unit: "\u0622\u06CC\u062A\u0645", verb: "\u062F\u0627\u0634\u062A\u0647 \u0628\u0627\u0634\u062F" } }; function getSizing(origin2) { return Sizable[origin2] ?? null; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "\u0648\u0631\u0648\u062F\u06CC", email: "\u0622\u062F\u0631\u0633 \u0627\u06CC\u0645\u06CC\u0644", url: "URL", emoji: "\u0627\u06CC\u0645\u0648\u062C\u06CC", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "\u062A\u0627\u0631\u06CC\u062E \u0648 \u0632\u0645\u0627\u0646 \u0627\u06CC\u0632\u0648", date: "\u062A\u0627\u0631\u06CC\u062E \u0627\u06CC\u0632\u0648", time: "\u0632\u0645\u0627\u0646 \u0627\u06CC\u0632\u0648", duration: "\u0645\u062F\u062A \u0632\u0645\u0627\u0646 \u0627\u06CC\u0632\u0648", ipv4: "IPv4 \u0622\u062F\u0631\u0633", ipv6: "IPv6 \u0622\u062F\u0631\u0633", cidrv4: "IPv4 \u062F\u0627\u0645\u0646\u0647", cidrv6: "IPv6 \u062F\u0627\u0645\u0646\u0647", base64: "base64-encoded \u0631\u0634\u062A\u0647", base64url: "base64url-encoded \u0631\u0634\u062A\u0647", json_string: "JSON \u0631\u0634\u062A\u0647", e164: "E.164 \u0639\u062F\u062F", jwt: "JWT", template_literal: "\u0648\u0631\u0648\u062F\u06CC" }; const TypeDictionary = { nan: "NaN", number: "\u0639\u062F\u062F", array: "\u0622\u0631\u0627\u06CC\u0647" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `\u0648\u0631\u0648\u062F\u06CC \u0646\u0627\u0645\u0639\u062A\u0628\u0631: \u0645\u06CC\u200C\u0628\u0627\u06CC\u0633\u062A instanceof ${issue2.expected} \u0645\u06CC\u200C\u0628\u0648\u062F\u060C ${received} \u062F\u0631\u06CC\u0627\u0641\u062A \u0634\u062F`; } return `\u0648\u0631\u0648\u062F\u06CC \u0646\u0627\u0645\u0639\u062A\u0628\u0631: \u0645\u06CC\u200C\u0628\u0627\u06CC\u0633\u062A ${expected} \u0645\u06CC\u200C\u0628\u0648\u062F\u060C ${received} \u062F\u0631\u06CC\u0627\u0641\u062A \u0634\u062F`; } case "invalid_value": if (issue2.values.length === 1) { return `\u0648\u0631\u0648\u062F\u06CC \u0646\u0627\u0645\u0639\u062A\u0628\u0631: \u0645\u06CC\u200C\u0628\u0627\u06CC\u0633\u062A ${stringifyPrimitive(issue2.values[0])} \u0645\u06CC\u200C\u0628\u0648\u062F`; } return `\u06AF\u0632\u06CC\u0646\u0647 \u0646\u0627\u0645\u0639\u062A\u0628\u0631: \u0645\u06CC\u200C\u0628\u0627\u06CC\u0633\u062A \u06CC\u06A9\u06CC \u0627\u0632 ${joinValues(issue2.values, "|")} \u0645\u06CC\u200C\u0628\u0648\u062F`; case "too_big": { const adj = issue2.inclusive ? "<=" : "<"; const sizing = getSizing(issue2.origin); if (sizing) { return `\u062E\u06CC\u0644\u06CC \u0628\u0632\u0631\u06AF: ${issue2.origin ?? "\u0645\u0642\u062F\u0627\u0631"} \u0628\u0627\u06CC\u062F ${adj}${issue2.maximum.toString()} ${sizing.unit ?? "\u0639\u0646\u0635\u0631"} \u0628\u0627\u0634\u062F`; } return `\u062E\u06CC\u0644\u06CC \u0628\u0632\u0631\u06AF: ${issue2.origin ?? "\u0645\u0642\u062F\u0627\u0631"} \u0628\u0627\u06CC\u062F ${adj}${issue2.maximum.toString()} \u0628\u0627\u0634\u062F`; } case "too_small": { const adj = issue2.inclusive ? ">=" : ">"; const sizing = getSizing(issue2.origin); if (sizing) { return `\u062E\u06CC\u0644\u06CC \u06A9\u0648\u0686\u06A9: ${issue2.origin} \u0628\u0627\u06CC\u062F ${adj}${issue2.minimum.toString()} ${sizing.unit} \u0628\u0627\u0634\u062F`; } return `\u062E\u06CC\u0644\u06CC \u06A9\u0648\u0686\u06A9: ${issue2.origin} \u0628\u0627\u06CC\u062F ${adj}${issue2.minimum.toString()} \u0628\u0627\u0634\u062F`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") { return `\u0631\u0634\u062A\u0647 \u0646\u0627\u0645\u0639\u062A\u0628\u0631: \u0628\u0627\u06CC\u062F \u0628\u0627 "${_issue.prefix}" \u0634\u0631\u0648\u0639 \u0634\u0648\u062F`; } if (_issue.format === "ends_with") { return `\u0631\u0634\u062A\u0647 \u0646\u0627\u0645\u0639\u062A\u0628\u0631: \u0628\u0627\u06CC\u062F \u0628\u0627 "${_issue.suffix}" \u062A\u0645\u0627\u0645 \u0634\u0648\u062F`; } if (_issue.format === "includes") { return `\u0631\u0634\u062A\u0647 \u0646\u0627\u0645\u0639\u062A\u0628\u0631: \u0628\u0627\u06CC\u062F \u0634\u0627\u0645\u0644 "${_issue.includes}" \u0628\u0627\u0634\u062F`; } if (_issue.format === "regex") { return `\u0631\u0634\u062A\u0647 \u0646\u0627\u0645\u0639\u062A\u0628\u0631: \u0628\u0627\u06CC\u062F \u0628\u0627 \u0627\u0644\u06AF\u0648\u06CC ${_issue.pattern} \u0645\u0637\u0627\u0628\u0642\u062A \u062F\u0627\u0634\u062A\u0647 \u0628\u0627\u0634\u062F`; } return `${FormatDictionary[_issue.format] ?? issue2.format} \u0646\u0627\u0645\u0639\u062A\u0628\u0631`; } case "not_multiple_of": return `\u0639\u062F\u062F \u0646\u0627\u0645\u0639\u062A\u0628\u0631: \u0628\u0627\u06CC\u062F \u0645\u0636\u0631\u0628 ${issue2.divisor} \u0628\u0627\u0634\u062F`; case "unrecognized_keys": return `\u06A9\u0644\u06CC\u062F${issue2.keys.length > 1 ? "\u0647\u0627\u06CC" : ""} \u0646\u0627\u0634\u0646\u0627\u0633: ${joinValues(issue2.keys, ", ")}`; case "invalid_key": return `\u06A9\u0644\u06CC\u062F \u0646\u0627\u0634\u0646\u0627\u0633 \u062F\u0631 ${issue2.origin}`; case "invalid_union": return `\u0648\u0631\u0648\u062F\u06CC \u0646\u0627\u0645\u0639\u062A\u0628\u0631`; case "invalid_element": return `\u0645\u0642\u062F\u0627\u0631 \u0646\u0627\u0645\u0639\u062A\u0628\u0631 \u062F\u0631 ${issue2.origin}`; default: return `\u0648\u0631\u0648\u062F\u06CC \u0646\u0627\u0645\u0639\u062A\u0628\u0631`; } }; }, "error"); function fa_default() { return { localeError: error14() }; } __name(fa_default, "default"); // ../../node_modules/zod/v4/locales/fi.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var error15 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: "merkki\xE4", subject: "merkkijonon" }, file: { unit: "tavua", subject: "tiedoston" }, array: { unit: "alkiota", subject: "listan" }, set: { unit: "alkiota", subject: "joukon" }, number: { unit: "", subject: "luvun" }, bigint: { unit: "", subject: "suuren kokonaisluvun" }, int: { unit: "", subject: "kokonaisluvun" }, date: { unit: "", subject: "p\xE4iv\xE4m\xE4\xE4r\xE4n" } }; function getSizing(origin2) { return Sizable[origin2] ?? null; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "s\xE4\xE4nn\xF6llinen lauseke", email: "s\xE4hk\xF6postiosoite", url: "URL-osoite", emoji: "emoji", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "ISO-aikaleima", date: "ISO-p\xE4iv\xE4m\xE4\xE4r\xE4", time: "ISO-aika", duration: "ISO-kesto", ipv4: "IPv4-osoite", ipv6: "IPv6-osoite", cidrv4: "IPv4-alue", cidrv6: "IPv6-alue", base64: "base64-koodattu merkkijono", base64url: "base64url-koodattu merkkijono", json_string: "JSON-merkkijono", e164: "E.164-luku", jwt: "JWT", template_literal: "templaattimerkkijono" }; const TypeDictionary = { nan: "NaN" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `Virheellinen tyyppi: odotettiin instanceof ${issue2.expected}, oli ${received}`; } return `Virheellinen tyyppi: odotettiin ${expected}, oli ${received}`; } case "invalid_value": if (issue2.values.length === 1) return `Virheellinen sy\xF6te: t\xE4ytyy olla ${stringifyPrimitive(issue2.values[0])}`; return `Virheellinen valinta: t\xE4ytyy olla yksi seuraavista: ${joinValues(issue2.values, "|")}`; case "too_big": { const adj = issue2.inclusive ? "<=" : "<"; const sizing = getSizing(issue2.origin); if (sizing) { return `Liian suuri: ${sizing.subject} t\xE4ytyy olla ${adj}${issue2.maximum.toString()} ${sizing.unit}`.trim(); } return `Liian suuri: arvon t\xE4ytyy olla ${adj}${issue2.maximum.toString()}`; } case "too_small": { const adj = issue2.inclusive ? ">=" : ">"; const sizing = getSizing(issue2.origin); if (sizing) { return `Liian pieni: ${sizing.subject} t\xE4ytyy olla ${adj}${issue2.minimum.toString()} ${sizing.unit}`.trim(); } return `Liian pieni: arvon t\xE4ytyy olla ${adj}${issue2.minimum.toString()}`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") return `Virheellinen sy\xF6te: t\xE4ytyy alkaa "${_issue.prefix}"`; if (_issue.format === "ends_with") return `Virheellinen sy\xF6te: t\xE4ytyy loppua "${_issue.suffix}"`; if (_issue.format === "includes") return `Virheellinen sy\xF6te: t\xE4ytyy sis\xE4lt\xE4\xE4 "${_issue.includes}"`; if (_issue.format === "regex") { return `Virheellinen sy\xF6te: t\xE4ytyy vastata s\xE4\xE4nn\xF6llist\xE4 lauseketta ${_issue.pattern}`; } return `Virheellinen ${FormatDictionary[_issue.format] ?? issue2.format}`; } case "not_multiple_of": return `Virheellinen luku: t\xE4ytyy olla luvun ${issue2.divisor} monikerta`; case "unrecognized_keys": return `${issue2.keys.length > 1 ? "Tuntemattomat avaimet" : "Tuntematon avain"}: ${joinValues(issue2.keys, ", ")}`; case "invalid_key": return "Virheellinen avain tietueessa"; case "invalid_union": return "Virheellinen unioni"; case "invalid_element": return "Virheellinen arvo joukossa"; default: return `Virheellinen sy\xF6te`; } }; }, "error"); function fi_default() { return { localeError: error15() }; } __name(fi_default, "default"); // ../../node_modules/zod/v4/locales/fr.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var error16 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: "caract\xE8res", verb: "avoir" }, file: { unit: "octets", verb: "avoir" }, array: { unit: "\xE9l\xE9ments", verb: "avoir" }, set: { unit: "\xE9l\xE9ments", verb: "avoir" } }; function getSizing(origin2) { return Sizable[origin2] ?? null; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "entr\xE9e", email: "adresse e-mail", url: "URL", emoji: "emoji", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "date et heure ISO", date: "date ISO", time: "heure ISO", duration: "dur\xE9e ISO", ipv4: "adresse IPv4", ipv6: "adresse IPv6", cidrv4: "plage IPv4", cidrv6: "plage IPv6", base64: "cha\xEEne encod\xE9e en base64", base64url: "cha\xEEne encod\xE9e en base64url", json_string: "cha\xEEne JSON", e164: "num\xE9ro E.164", jwt: "JWT", template_literal: "entr\xE9e" }; const TypeDictionary = { nan: "NaN", number: "nombre", array: "tableau" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `Entr\xE9e invalide : instanceof ${issue2.expected} attendu, ${received} re\xE7u`; } return `Entr\xE9e invalide : ${expected} attendu, ${received} re\xE7u`; } case "invalid_value": if (issue2.values.length === 1) return `Entr\xE9e invalide : ${stringifyPrimitive(issue2.values[0])} attendu`; return `Option invalide : une valeur parmi ${joinValues(issue2.values, "|")} attendue`; case "too_big": { const adj = issue2.inclusive ? "<=" : "<"; const sizing = getSizing(issue2.origin); if (sizing) return `Trop grand : ${issue2.origin ?? "valeur"} doit ${sizing.verb} ${adj}${issue2.maximum.toString()} ${sizing.unit ?? "\xE9l\xE9ment(s)"}`; return `Trop grand : ${issue2.origin ?? "valeur"} doit \xEAtre ${adj}${issue2.maximum.toString()}`; } case "too_small": { const adj = issue2.inclusive ? ">=" : ">"; const sizing = getSizing(issue2.origin); if (sizing) { return `Trop petit : ${issue2.origin} doit ${sizing.verb} ${adj}${issue2.minimum.toString()} ${sizing.unit}`; } return `Trop petit : ${issue2.origin} doit \xEAtre ${adj}${issue2.minimum.toString()}`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") return `Cha\xEEne invalide : doit commencer par "${_issue.prefix}"`; if (_issue.format === "ends_with") return `Cha\xEEne invalide : doit se terminer par "${_issue.suffix}"`; if (_issue.format === "includes") return `Cha\xEEne invalide : doit inclure "${_issue.includes}"`; if (_issue.format === "regex") return `Cha\xEEne invalide : doit correspondre au mod\xE8le ${_issue.pattern}`; return `${FormatDictionary[_issue.format] ?? issue2.format} invalide`; } case "not_multiple_of": return `Nombre invalide : doit \xEAtre un multiple de ${issue2.divisor}`; case "unrecognized_keys": return `Cl\xE9${issue2.keys.length > 1 ? "s" : ""} non reconnue${issue2.keys.length > 1 ? "s" : ""} : ${joinValues(issue2.keys, ", ")}`; case "invalid_key": return `Cl\xE9 invalide dans ${issue2.origin}`; case "invalid_union": return "Entr\xE9e invalide"; case "invalid_element": return `Valeur invalide dans ${issue2.origin}`; default: return `Entr\xE9e invalide`; } }; }, "error"); function fr_default() { return { localeError: error16() }; } __name(fr_default, "default"); // ../../node_modules/zod/v4/locales/fr-CA.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var error17 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: "caract\xE8res", verb: "avoir" }, file: { unit: "octets", verb: "avoir" }, array: { unit: "\xE9l\xE9ments", verb: "avoir" }, set: { unit: "\xE9l\xE9ments", verb: "avoir" } }; function getSizing(origin2) { return Sizable[origin2] ?? null; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "entr\xE9e", email: "adresse courriel", url: "URL", emoji: "emoji", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "date-heure ISO", date: "date ISO", time: "heure ISO", duration: "dur\xE9e ISO", ipv4: "adresse IPv4", ipv6: "adresse IPv6", cidrv4: "plage IPv4", cidrv6: "plage IPv6", base64: "cha\xEEne encod\xE9e en base64", base64url: "cha\xEEne encod\xE9e en base64url", json_string: "cha\xEEne JSON", e164: "num\xE9ro E.164", jwt: "JWT", template_literal: "entr\xE9e" }; const TypeDictionary = { nan: "NaN" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `Entr\xE9e invalide : attendu instanceof ${issue2.expected}, re\xE7u ${received}`; } return `Entr\xE9e invalide : attendu ${expected}, re\xE7u ${received}`; } case "invalid_value": if (issue2.values.length === 1) return `Entr\xE9e invalide : attendu ${stringifyPrimitive(issue2.values[0])}`; return `Option invalide : attendu l'une des valeurs suivantes ${joinValues(issue2.values, "|")}`; case "too_big": { const adj = issue2.inclusive ? "\u2264" : "<"; const sizing = getSizing(issue2.origin); if (sizing) return `Trop grand : attendu que ${issue2.origin ?? "la valeur"} ait ${adj}${issue2.maximum.toString()} ${sizing.unit}`; return `Trop grand : attendu que ${issue2.origin ?? "la valeur"} soit ${adj}${issue2.maximum.toString()}`; } case "too_small": { const adj = issue2.inclusive ? "\u2265" : ">"; const sizing = getSizing(issue2.origin); if (sizing) { return `Trop petit : attendu que ${issue2.origin} ait ${adj}${issue2.minimum.toString()} ${sizing.unit}`; } return `Trop petit : attendu que ${issue2.origin} soit ${adj}${issue2.minimum.toString()}`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") { return `Cha\xEEne invalide : doit commencer par "${_issue.prefix}"`; } if (_issue.format === "ends_with") return `Cha\xEEne invalide : doit se terminer par "${_issue.suffix}"`; if (_issue.format === "includes") return `Cha\xEEne invalide : doit inclure "${_issue.includes}"`; if (_issue.format === "regex") return `Cha\xEEne invalide : doit correspondre au motif ${_issue.pattern}`; return `${FormatDictionary[_issue.format] ?? issue2.format} invalide`; } case "not_multiple_of": return `Nombre invalide : doit \xEAtre un multiple de ${issue2.divisor}`; case "unrecognized_keys": return `Cl\xE9${issue2.keys.length > 1 ? "s" : ""} non reconnue${issue2.keys.length > 1 ? "s" : ""} : ${joinValues(issue2.keys, ", ")}`; case "invalid_key": return `Cl\xE9 invalide dans ${issue2.origin}`; case "invalid_union": return "Entr\xE9e invalide"; case "invalid_element": return `Valeur invalide dans ${issue2.origin}`; default: return `Entr\xE9e invalide`; } }; }, "error"); function fr_CA_default() { return { localeError: error17() }; } __name(fr_CA_default, "default"); // ../../node_modules/zod/v4/locales/he.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var error18 = /* @__PURE__ */ __name(() => { const TypeNames = { string: { label: "\u05DE\u05D7\u05E8\u05D5\u05D6\u05EA", gender: "f" }, number: { label: "\u05DE\u05E1\u05E4\u05E8", gender: "m" }, boolean: { label: "\u05E2\u05E8\u05DA \u05D1\u05D5\u05DC\u05D9\u05D0\u05E0\u05D9", gender: "m" }, bigint: { label: "BigInt", gender: "m" }, date: { label: "\u05EA\u05D0\u05E8\u05D9\u05DA", gender: "m" }, array: { label: "\u05DE\u05E2\u05E8\u05DA", gender: "m" }, object: { label: "\u05D0\u05D5\u05D1\u05D9\u05D9\u05E7\u05D8", gender: "m" }, null: { label: "\u05E2\u05E8\u05DA \u05E8\u05D9\u05E7 (null)", gender: "m" }, undefined: { label: "\u05E2\u05E8\u05DA \u05DC\u05D0 \u05DE\u05D5\u05D2\u05D3\u05E8 (undefined)", gender: "m" }, symbol: { label: "\u05E1\u05D9\u05DE\u05D1\u05D5\u05DC (Symbol)", gender: "m" }, function: { label: "\u05E4\u05D5\u05E0\u05E7\u05E6\u05D9\u05D4", gender: "f" }, map: { label: "\u05DE\u05E4\u05D4 (Map)", gender: "f" }, set: { label: "\u05E7\u05D1\u05D5\u05E6\u05D4 (Set)", gender: "f" }, file: { label: "\u05E7\u05D5\u05D1\u05E5", gender: "m" }, promise: { label: "Promise", gender: "m" }, NaN: { label: "NaN", gender: "m" }, unknown: { label: "\u05E2\u05E8\u05DA \u05DC\u05D0 \u05D9\u05D3\u05D5\u05E2", gender: "m" }, value: { label: "\u05E2\u05E8\u05DA", gender: "m" } }; const Sizable = { string: { unit: "\u05EA\u05D5\u05D5\u05D9\u05DD", shortLabel: "\u05E7\u05E6\u05E8", longLabel: "\u05D0\u05E8\u05D5\u05DA" }, file: { unit: "\u05D1\u05D9\u05D9\u05D8\u05D9\u05DD", shortLabel: "\u05E7\u05D8\u05DF", longLabel: "\u05D2\u05D3\u05D5\u05DC" }, array: { unit: "\u05E4\u05E8\u05D9\u05D8\u05D9\u05DD", shortLabel: "\u05E7\u05D8\u05DF", longLabel: "\u05D2\u05D3\u05D5\u05DC" }, set: { unit: "\u05E4\u05E8\u05D9\u05D8\u05D9\u05DD", shortLabel: "\u05E7\u05D8\u05DF", longLabel: "\u05D2\u05D3\u05D5\u05DC" }, number: { unit: "", shortLabel: "\u05E7\u05D8\u05DF", longLabel: "\u05D2\u05D3\u05D5\u05DC" } // no unit }; const typeEntry = /* @__PURE__ */ __name((t8) => t8 ? TypeNames[t8] : void 0, "typeEntry"); const typeLabel = /* @__PURE__ */ __name((t8) => { const e = typeEntry(t8); if (e) return e.label; return t8 ?? TypeNames.unknown.label; }, "typeLabel"); const withDefinite = /* @__PURE__ */ __name((t8) => `\u05D4${typeLabel(t8)}`, "withDefinite"); const verbFor = /* @__PURE__ */ __name((t8) => { const e = typeEntry(t8); const gender = e?.gender ?? "m"; return gender === "f" ? "\u05E6\u05E8\u05D9\u05DB\u05D4 \u05DC\u05D4\u05D9\u05D5\u05EA" : "\u05E6\u05E8\u05D9\u05DA \u05DC\u05D4\u05D9\u05D5\u05EA"; }, "verbFor"); const getSizing = /* @__PURE__ */ __name((origin2) => { if (!origin2) return null; return Sizable[origin2] ?? null; }, "getSizing"); const FormatDictionary = { regex: { label: "\u05E7\u05DC\u05D8", gender: "m" }, email: { label: "\u05DB\u05EA\u05D5\u05D1\u05EA \u05D0\u05D9\u05DE\u05D9\u05D9\u05DC", gender: "f" }, url: { label: "\u05DB\u05EA\u05D5\u05D1\u05EA \u05E8\u05E9\u05EA", gender: "f" }, emoji: { label: "\u05D0\u05D9\u05DE\u05D5\u05D2'\u05D9", gender: "m" }, uuid: { label: "UUID", gender: "m" }, nanoid: { label: "nanoid", gender: "m" }, guid: { label: "GUID", gender: "m" }, cuid: { label: "cuid", gender: "m" }, cuid2: { label: "cuid2", gender: "m" }, ulid: { label: "ULID", gender: "m" }, xid: { label: "XID", gender: "m" }, ksuid: { label: "KSUID", gender: "m" }, datetime: { label: "\u05EA\u05D0\u05E8\u05D9\u05DA \u05D5\u05D6\u05DE\u05DF ISO", gender: "m" }, date: { label: "\u05EA\u05D0\u05E8\u05D9\u05DA ISO", gender: "m" }, time: { label: "\u05D6\u05DE\u05DF ISO", gender: "m" }, duration: { label: "\u05DE\u05E9\u05DA \u05D6\u05DE\u05DF ISO", gender: "m" }, ipv4: { label: "\u05DB\u05EA\u05D5\u05D1\u05EA IPv4", gender: "f" }, ipv6: { label: "\u05DB\u05EA\u05D5\u05D1\u05EA IPv6", gender: "f" }, cidrv4: { label: "\u05D8\u05D5\u05D5\u05D7 IPv4", gender: "m" }, cidrv6: { label: "\u05D8\u05D5\u05D5\u05D7 IPv6", gender: "m" }, base64: { label: "\u05DE\u05D7\u05E8\u05D5\u05D6\u05EA \u05D1\u05D1\u05E1\u05D9\u05E1 64", gender: "f" }, base64url: { label: "\u05DE\u05D7\u05E8\u05D5\u05D6\u05EA \u05D1\u05D1\u05E1\u05D9\u05E1 64 \u05DC\u05DB\u05EA\u05D5\u05D1\u05D5\u05EA \u05E8\u05E9\u05EA", gender: "f" }, json_string: { label: "\u05DE\u05D7\u05E8\u05D5\u05D6\u05EA JSON", gender: "f" }, e164: { label: "\u05DE\u05E1\u05E4\u05E8 E.164", gender: "m" }, jwt: { label: "JWT", gender: "m" }, ends_with: { label: "\u05E7\u05DC\u05D8", gender: "m" }, includes: { label: "\u05E7\u05DC\u05D8", gender: "m" }, lowercase: { label: "\u05E7\u05DC\u05D8", gender: "m" }, starts_with: { label: "\u05E7\u05DC\u05D8", gender: "m" }, uppercase: { label: "\u05E7\u05DC\u05D8", gender: "m" } }; const TypeDictionary = { nan: "NaN" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expectedKey = issue2.expected; const expected = TypeDictionary[expectedKey ?? ""] ?? typeLabel(expectedKey); const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? TypeNames[receivedType]?.label ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `\u05E7\u05DC\u05D8 \u05DC\u05D0 \u05EA\u05E7\u05D9\u05DF: \u05E6\u05E8\u05D9\u05DA \u05DC\u05D4\u05D9\u05D5\u05EA instanceof ${issue2.expected}, \u05D4\u05EA\u05E7\u05D1\u05DC ${received}`; } return `\u05E7\u05DC\u05D8 \u05DC\u05D0 \u05EA\u05E7\u05D9\u05DF: \u05E6\u05E8\u05D9\u05DA \u05DC\u05D4\u05D9\u05D5\u05EA ${expected}, \u05D4\u05EA\u05E7\u05D1\u05DC ${received}`; } case "invalid_value": { if (issue2.values.length === 1) { return `\u05E2\u05E8\u05DA \u05DC\u05D0 \u05EA\u05E7\u05D9\u05DF: \u05D4\u05E2\u05E8\u05DA \u05D7\u05D9\u05D9\u05D1 \u05DC\u05D4\u05D9\u05D5\u05EA ${stringifyPrimitive(issue2.values[0])}`; } const stringified = issue2.values.map((v2) => stringifyPrimitive(v2)); if (issue2.values.length === 2) { return `\u05E2\u05E8\u05DA \u05DC\u05D0 \u05EA\u05E7\u05D9\u05DF: \u05D4\u05D0\u05E4\u05E9\u05E8\u05D5\u05D9\u05D5\u05EA \u05D4\u05DE\u05EA\u05D0\u05D9\u05DE\u05D5\u05EA \u05D4\u05DF ${stringified[0]} \u05D0\u05D5 ${stringified[1]}`; } const lastValue = stringified[stringified.length - 1]; const restValues = stringified.slice(0, -1).join(", "); return `\u05E2\u05E8\u05DA \u05DC\u05D0 \u05EA\u05E7\u05D9\u05DF: \u05D4\u05D0\u05E4\u05E9\u05E8\u05D5\u05D9\u05D5\u05EA \u05D4\u05DE\u05EA\u05D0\u05D9\u05DE\u05D5\u05EA \u05D4\u05DF ${restValues} \u05D0\u05D5 ${lastValue}`; } case "too_big": { const sizing = getSizing(issue2.origin); const subject = withDefinite(issue2.origin ?? "value"); if (issue2.origin === "string") { return `${sizing?.longLabel ?? "\u05D0\u05E8\u05D5\u05DA"} \u05DE\u05D3\u05D9: ${subject} \u05E6\u05E8\u05D9\u05DB\u05D4 \u05DC\u05D4\u05DB\u05D9\u05DC ${issue2.maximum.toString()} ${sizing?.unit ?? ""} ${issue2.inclusive ? "\u05D0\u05D5 \u05E4\u05D7\u05D5\u05EA" : "\u05DC\u05DB\u05DC \u05D4\u05D9\u05D5\u05EA\u05E8"}`.trim(); } if (issue2.origin === "number") { const comparison = issue2.inclusive ? `\u05E7\u05D8\u05DF \u05D0\u05D5 \u05E9\u05D5\u05D5\u05D4 \u05DC-${issue2.maximum}` : `\u05E7\u05D8\u05DF \u05DE-${issue2.maximum}`; return `\u05D2\u05D3\u05D5\u05DC \u05DE\u05D3\u05D9: ${subject} \u05E6\u05E8\u05D9\u05DA \u05DC\u05D4\u05D9\u05D5\u05EA ${comparison}`; } if (issue2.origin === "array" || issue2.origin === "set") { const verb = issue2.origin === "set" ? "\u05E6\u05E8\u05D9\u05DB\u05D4" : "\u05E6\u05E8\u05D9\u05DA"; const comparison = issue2.inclusive ? `${issue2.maximum} ${sizing?.unit ?? ""} \u05D0\u05D5 \u05E4\u05D7\u05D5\u05EA` : `\u05E4\u05D7\u05D5\u05EA \u05DE-${issue2.maximum} ${sizing?.unit ?? ""}`; return `\u05D2\u05D3\u05D5\u05DC \u05DE\u05D3\u05D9: ${subject} ${verb} \u05DC\u05D4\u05DB\u05D9\u05DC ${comparison}`.trim(); } const adj = issue2.inclusive ? "<=" : "<"; const be = verbFor(issue2.origin ?? "value"); if (sizing?.unit) { return `${sizing.longLabel} \u05DE\u05D3\u05D9: ${subject} ${be} ${adj}${issue2.maximum.toString()} ${sizing.unit}`; } return `${sizing?.longLabel ?? "\u05D2\u05D3\u05D5\u05DC"} \u05DE\u05D3\u05D9: ${subject} ${be} ${adj}${issue2.maximum.toString()}`; } case "too_small": { const sizing = getSizing(issue2.origin); const subject = withDefinite(issue2.origin ?? "value"); if (issue2.origin === "string") { return `${sizing?.shortLabel ?? "\u05E7\u05E6\u05E8"} \u05DE\u05D3\u05D9: ${subject} \u05E6\u05E8\u05D9\u05DB\u05D4 \u05DC\u05D4\u05DB\u05D9\u05DC ${issue2.minimum.toString()} ${sizing?.unit ?? ""} ${issue2.inclusive ? "\u05D0\u05D5 \u05D9\u05D5\u05EA\u05E8" : "\u05DC\u05E4\u05D7\u05D5\u05EA"}`.trim(); } if (issue2.origin === "number") { const comparison = issue2.inclusive ? `\u05D2\u05D3\u05D5\u05DC \u05D0\u05D5 \u05E9\u05D5\u05D5\u05D4 \u05DC-${issue2.minimum}` : `\u05D2\u05D3\u05D5\u05DC \u05DE-${issue2.minimum}`; return `\u05E7\u05D8\u05DF \u05DE\u05D3\u05D9: ${subject} \u05E6\u05E8\u05D9\u05DA \u05DC\u05D4\u05D9\u05D5\u05EA ${comparison}`; } if (issue2.origin === "array" || issue2.origin === "set") { const verb = issue2.origin === "set" ? "\u05E6\u05E8\u05D9\u05DB\u05D4" : "\u05E6\u05E8\u05D9\u05DA"; if (issue2.minimum === 1 && issue2.inclusive) { const singularPhrase = issue2.origin === "set" ? "\u05DC\u05E4\u05D7\u05D5\u05EA \u05E4\u05E8\u05D9\u05D8 \u05D0\u05D7\u05D3" : "\u05DC\u05E4\u05D7\u05D5\u05EA \u05E4\u05E8\u05D9\u05D8 \u05D0\u05D7\u05D3"; return `\u05E7\u05D8\u05DF \u05DE\u05D3\u05D9: ${subject} ${verb} \u05DC\u05D4\u05DB\u05D9\u05DC ${singularPhrase}`; } const comparison = issue2.inclusive ? `${issue2.minimum} ${sizing?.unit ?? ""} \u05D0\u05D5 \u05D9\u05D5\u05EA\u05E8` : `\u05D9\u05D5\u05EA\u05E8 \u05DE-${issue2.minimum} ${sizing?.unit ?? ""}`; return `\u05E7\u05D8\u05DF \u05DE\u05D3\u05D9: ${subject} ${verb} \u05DC\u05D4\u05DB\u05D9\u05DC ${comparison}`.trim(); } const adj = issue2.inclusive ? ">=" : ">"; const be = verbFor(issue2.origin ?? "value"); if (sizing?.unit) { return `${sizing.shortLabel} \u05DE\u05D3\u05D9: ${subject} ${be} ${adj}${issue2.minimum.toString()} ${sizing.unit}`; } return `${sizing?.shortLabel ?? "\u05E7\u05D8\u05DF"} \u05DE\u05D3\u05D9: ${subject} ${be} ${adj}${issue2.minimum.toString()}`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") return `\u05D4\u05DE\u05D7\u05E8\u05D5\u05D6\u05EA \u05D7\u05D9\u05D9\u05D1\u05EA \u05DC\u05D4\u05EA\u05D7\u05D9\u05DC \u05D1 "${_issue.prefix}"`; if (_issue.format === "ends_with") return `\u05D4\u05DE\u05D7\u05E8\u05D5\u05D6\u05EA \u05D7\u05D9\u05D9\u05D1\u05EA \u05DC\u05D4\u05E1\u05EA\u05D9\u05D9\u05DD \u05D1 "${_issue.suffix}"`; if (_issue.format === "includes") return `\u05D4\u05DE\u05D7\u05E8\u05D5\u05D6\u05EA \u05D7\u05D9\u05D9\u05D1\u05EA \u05DC\u05DB\u05DC\u05D5\u05DC "${_issue.includes}"`; if (_issue.format === "regex") return `\u05D4\u05DE\u05D7\u05E8\u05D5\u05D6\u05EA \u05D7\u05D9\u05D9\u05D1\u05EA \u05DC\u05D4\u05EA\u05D0\u05D9\u05DD \u05DC\u05EA\u05D1\u05E0\u05D9\u05EA ${_issue.pattern}`; const nounEntry = FormatDictionary[_issue.format]; const noun = nounEntry?.label ?? _issue.format; const gender = nounEntry?.gender ?? "m"; const adjective = gender === "f" ? "\u05EA\u05E7\u05D9\u05E0\u05D4" : "\u05EA\u05E7\u05D9\u05DF"; return `${noun} \u05DC\u05D0 ${adjective}`; } case "not_multiple_of": return `\u05DE\u05E1\u05E4\u05E8 \u05DC\u05D0 \u05EA\u05E7\u05D9\u05DF: \u05D7\u05D9\u05D9\u05D1 \u05DC\u05D4\u05D9\u05D5\u05EA \u05DE\u05DB\u05E4\u05DC\u05D4 \u05E9\u05DC ${issue2.divisor}`; case "unrecognized_keys": return `\u05DE\u05E4\u05EA\u05D7${issue2.keys.length > 1 ? "\u05D5\u05EA" : ""} \u05DC\u05D0 \u05DE\u05D6\u05D5\u05D4${issue2.keys.length > 1 ? "\u05D9\u05DD" : "\u05D4"}: ${joinValues(issue2.keys, ", ")}`; case "invalid_key": { return `\u05E9\u05D3\u05D4 \u05DC\u05D0 \u05EA\u05E7\u05D9\u05DF \u05D1\u05D0\u05D5\u05D1\u05D9\u05D9\u05E7\u05D8`; } case "invalid_union": return "\u05E7\u05DC\u05D8 \u05DC\u05D0 \u05EA\u05E7\u05D9\u05DF"; case "invalid_element": { const place = withDefinite(issue2.origin ?? "array"); return `\u05E2\u05E8\u05DA \u05DC\u05D0 \u05EA\u05E7\u05D9\u05DF \u05D1${place}`; } default: return `\u05E7\u05DC\u05D8 \u05DC\u05D0 \u05EA\u05E7\u05D9\u05DF`; } }; }, "error"); function he_default() { return { localeError: error18() }; } __name(he_default, "default"); // ../../node_modules/zod/v4/locales/hu.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var error19 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: "karakter", verb: "legyen" }, file: { unit: "byte", verb: "legyen" }, array: { unit: "elem", verb: "legyen" }, set: { unit: "elem", verb: "legyen" } }; function getSizing(origin2) { return Sizable[origin2] ?? null; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "bemenet", email: "email c\xEDm", url: "URL", emoji: "emoji", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "ISO id\u0151b\xE9lyeg", date: "ISO d\xE1tum", time: "ISO id\u0151", duration: "ISO id\u0151intervallum", ipv4: "IPv4 c\xEDm", ipv6: "IPv6 c\xEDm", cidrv4: "IPv4 tartom\xE1ny", cidrv6: "IPv6 tartom\xE1ny", base64: "base64-k\xF3dolt string", base64url: "base64url-k\xF3dolt string", json_string: "JSON string", e164: "E.164 sz\xE1m", jwt: "JWT", template_literal: "bemenet" }; const TypeDictionary = { nan: "NaN", number: "sz\xE1m", array: "t\xF6mb" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `\xC9rv\xE9nytelen bemenet: a v\xE1rt \xE9rt\xE9k instanceof ${issue2.expected}, a kapott \xE9rt\xE9k ${received}`; } return `\xC9rv\xE9nytelen bemenet: a v\xE1rt \xE9rt\xE9k ${expected}, a kapott \xE9rt\xE9k ${received}`; } case "invalid_value": if (issue2.values.length === 1) return `\xC9rv\xE9nytelen bemenet: a v\xE1rt \xE9rt\xE9k ${stringifyPrimitive(issue2.values[0])}`; return `\xC9rv\xE9nytelen opci\xF3: valamelyik \xE9rt\xE9k v\xE1rt ${joinValues(issue2.values, "|")}`; case "too_big": { const adj = issue2.inclusive ? "<=" : "<"; const sizing = getSizing(issue2.origin); if (sizing) return `T\xFAl nagy: ${issue2.origin ?? "\xE9rt\xE9k"} m\xE9rete t\xFAl nagy ${adj}${issue2.maximum.toString()} ${sizing.unit ?? "elem"}`; return `T\xFAl nagy: a bemeneti \xE9rt\xE9k ${issue2.origin ?? "\xE9rt\xE9k"} t\xFAl nagy: ${adj}${issue2.maximum.toString()}`; } case "too_small": { const adj = issue2.inclusive ? ">=" : ">"; const sizing = getSizing(issue2.origin); if (sizing) { return `T\xFAl kicsi: a bemeneti \xE9rt\xE9k ${issue2.origin} m\xE9rete t\xFAl kicsi ${adj}${issue2.minimum.toString()} ${sizing.unit}`; } return `T\xFAl kicsi: a bemeneti \xE9rt\xE9k ${issue2.origin} t\xFAl kicsi ${adj}${issue2.minimum.toString()}`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") return `\xC9rv\xE9nytelen string: "${_issue.prefix}" \xE9rt\xE9kkel kell kezd\u0151dnie`; if (_issue.format === "ends_with") return `\xC9rv\xE9nytelen string: "${_issue.suffix}" \xE9rt\xE9kkel kell v\xE9gz\u0151dnie`; if (_issue.format === "includes") return `\xC9rv\xE9nytelen string: "${_issue.includes}" \xE9rt\xE9ket kell tartalmaznia`; if (_issue.format === "regex") return `\xC9rv\xE9nytelen string: ${_issue.pattern} mint\xE1nak kell megfelelnie`; return `\xC9rv\xE9nytelen ${FormatDictionary[_issue.format] ?? issue2.format}`; } case "not_multiple_of": return `\xC9rv\xE9nytelen sz\xE1m: ${issue2.divisor} t\xF6bbsz\xF6r\xF6s\xE9nek kell lennie`; case "unrecognized_keys": return `Ismeretlen kulcs${issue2.keys.length > 1 ? "s" : ""}: ${joinValues(issue2.keys, ", ")}`; case "invalid_key": return `\xC9rv\xE9nytelen kulcs ${issue2.origin}`; case "invalid_union": return "\xC9rv\xE9nytelen bemenet"; case "invalid_element": return `\xC9rv\xE9nytelen \xE9rt\xE9k: ${issue2.origin}`; default: return `\xC9rv\xE9nytelen bemenet`; } }; }, "error"); function hu_default() { return { localeError: error19() }; } __name(hu_default, "default"); // ../../node_modules/zod/v4/locales/hy.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); function getArmenianPlural(count4, one, many) { return Math.abs(count4) === 1 ? one : many; } __name(getArmenianPlural, "getArmenianPlural"); function withDefiniteArticle(word) { if (!word) return ""; const vowels = ["\u0561", "\u0565", "\u0568", "\u056B", "\u0578", "\u0578\u0582", "\u0585"]; const lastChar = word[word.length - 1]; return word + (vowels.includes(lastChar) ? "\u0576" : "\u0568"); } __name(withDefiniteArticle, "withDefiniteArticle"); var error20 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: { one: "\u0576\u0577\u0561\u0576", many: "\u0576\u0577\u0561\u0576\u0576\u0565\u0580" }, verb: "\u0578\u0582\u0576\u0565\u0576\u0561\u056C" }, file: { unit: { one: "\u0562\u0561\u0575\u0569", many: "\u0562\u0561\u0575\u0569\u0565\u0580" }, verb: "\u0578\u0582\u0576\u0565\u0576\u0561\u056C" }, array: { unit: { one: "\u057F\u0561\u0580\u0580", many: "\u057F\u0561\u0580\u0580\u0565\u0580" }, verb: "\u0578\u0582\u0576\u0565\u0576\u0561\u056C" }, set: { unit: { one: "\u057F\u0561\u0580\u0580", many: "\u057F\u0561\u0580\u0580\u0565\u0580" }, verb: "\u0578\u0582\u0576\u0565\u0576\u0561\u056C" } }; function getSizing(origin2) { return Sizable[origin2] ?? null; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "\u0574\u0578\u0582\u057F\u0584", email: "\u0567\u056C. \u0570\u0561\u057D\u0581\u0565", url: "URL", emoji: "\u0567\u0574\u0578\u057B\u056B", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "ISO \u0561\u0574\u057D\u0561\u0569\u056B\u057E \u0587 \u056A\u0561\u0574", date: "ISO \u0561\u0574\u057D\u0561\u0569\u056B\u057E", time: "ISO \u056A\u0561\u0574", duration: "ISO \u057F\u0587\u0578\u0572\u0578\u0582\u0569\u0575\u0578\u0582\u0576", ipv4: "IPv4 \u0570\u0561\u057D\u0581\u0565", ipv6: "IPv6 \u0570\u0561\u057D\u0581\u0565", cidrv4: "IPv4 \u0574\u056B\u057B\u0561\u056F\u0561\u0575\u0584", cidrv6: "IPv6 \u0574\u056B\u057B\u0561\u056F\u0561\u0575\u0584", base64: "base64 \u0571\u0587\u0561\u0579\u0561\u0583\u0578\u057E \u057F\u0578\u0572", base64url: "base64url \u0571\u0587\u0561\u0579\u0561\u0583\u0578\u057E \u057F\u0578\u0572", json_string: "JSON \u057F\u0578\u0572", e164: "E.164 \u0570\u0561\u0574\u0561\u0580", jwt: "JWT", template_literal: "\u0574\u0578\u0582\u057F\u0584" }; const TypeDictionary = { nan: "NaN", number: "\u0569\u056B\u057E", array: "\u0566\u0561\u0576\u0563\u057E\u0561\u056E" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `\u054D\u056D\u0561\u056C \u0574\u0578\u0582\u057F\u0584\u0561\u0563\u0580\u0578\u0582\u0574\u2024 \u057D\u057A\u0561\u057D\u057E\u0578\u0582\u0574 \u0567\u0580 instanceof ${issue2.expected}, \u057D\u057F\u0561\u0581\u057E\u0565\u056C \u0567 ${received}`; } return `\u054D\u056D\u0561\u056C \u0574\u0578\u0582\u057F\u0584\u0561\u0563\u0580\u0578\u0582\u0574\u2024 \u057D\u057A\u0561\u057D\u057E\u0578\u0582\u0574 \u0567\u0580 ${expected}, \u057D\u057F\u0561\u0581\u057E\u0565\u056C \u0567 ${received}`; } case "invalid_value": if (issue2.values.length === 1) return `\u054D\u056D\u0561\u056C \u0574\u0578\u0582\u057F\u0584\u0561\u0563\u0580\u0578\u0582\u0574\u2024 \u057D\u057A\u0561\u057D\u057E\u0578\u0582\u0574 \u0567\u0580 ${stringifyPrimitive(issue2.values[1])}`; return `\u054D\u056D\u0561\u056C \u057F\u0561\u0580\u0562\u0565\u0580\u0561\u056F\u2024 \u057D\u057A\u0561\u057D\u057E\u0578\u0582\u0574 \u0567\u0580 \u0570\u0565\u057F\u0587\u0575\u0561\u056C\u0576\u0565\u0580\u056B\u0581 \u0574\u0565\u056F\u0568\u055D ${joinValues(issue2.values, "|")}`; case "too_big": { const adj = issue2.inclusive ? "<=" : "<"; const sizing = getSizing(issue2.origin); if (sizing) { const maxValue = Number(issue2.maximum); const unit = getArmenianPlural(maxValue, sizing.unit.one, sizing.unit.many); return `\u0549\u0561\u0583\u0561\u0566\u0561\u0576\u0581 \u0574\u0565\u056E \u0561\u0580\u056A\u0565\u0584\u2024 \u057D\u057A\u0561\u057D\u057E\u0578\u0582\u0574 \u0567, \u0578\u0580 ${withDefiniteArticle(issue2.origin ?? "\u0561\u0580\u056A\u0565\u0584")} \u056F\u0578\u0582\u0576\u0565\u0576\u0561 ${adj}${issue2.maximum.toString()} ${unit}`; } return `\u0549\u0561\u0583\u0561\u0566\u0561\u0576\u0581 \u0574\u0565\u056E \u0561\u0580\u056A\u0565\u0584\u2024 \u057D\u057A\u0561\u057D\u057E\u0578\u0582\u0574 \u0567, \u0578\u0580 ${withDefiniteArticle(issue2.origin ?? "\u0561\u0580\u056A\u0565\u0584")} \u056C\u056B\u0576\u056B ${adj}${issue2.maximum.toString()}`; } case "too_small": { const adj = issue2.inclusive ? ">=" : ">"; const sizing = getSizing(issue2.origin); if (sizing) { const minValue = Number(issue2.minimum); const unit = getArmenianPlural(minValue, sizing.unit.one, sizing.unit.many); return `\u0549\u0561\u0583\u0561\u0566\u0561\u0576\u0581 \u0583\u0578\u0584\u0580 \u0561\u0580\u056A\u0565\u0584\u2024 \u057D\u057A\u0561\u057D\u057E\u0578\u0582\u0574 \u0567, \u0578\u0580 ${withDefiniteArticle(issue2.origin)} \u056F\u0578\u0582\u0576\u0565\u0576\u0561 ${adj}${issue2.minimum.toString()} ${unit}`; } return `\u0549\u0561\u0583\u0561\u0566\u0561\u0576\u0581 \u0583\u0578\u0584\u0580 \u0561\u0580\u056A\u0565\u0584\u2024 \u057D\u057A\u0561\u057D\u057E\u0578\u0582\u0574 \u0567, \u0578\u0580 ${withDefiniteArticle(issue2.origin)} \u056C\u056B\u0576\u056B ${adj}${issue2.minimum.toString()}`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") return `\u054D\u056D\u0561\u056C \u057F\u0578\u0572\u2024 \u057A\u0565\u057F\u0584 \u0567 \u057D\u056F\u057D\u057E\u056B "${_issue.prefix}"-\u0578\u057E`; if (_issue.format === "ends_with") return `\u054D\u056D\u0561\u056C \u057F\u0578\u0572\u2024 \u057A\u0565\u057F\u0584 \u0567 \u0561\u057E\u0561\u0580\u057F\u057E\u056B "${_issue.suffix}"-\u0578\u057E`; if (_issue.format === "includes") return `\u054D\u056D\u0561\u056C \u057F\u0578\u0572\u2024 \u057A\u0565\u057F\u0584 \u0567 \u057A\u0561\u0580\u0578\u0582\u0576\u0561\u056F\u056B "${_issue.includes}"`; if (_issue.format === "regex") return `\u054D\u056D\u0561\u056C \u057F\u0578\u0572\u2024 \u057A\u0565\u057F\u0584 \u0567 \u0570\u0561\u0574\u0561\u057A\u0561\u057F\u0561\u057D\u056D\u0561\u0576\u056B ${_issue.pattern} \u0571\u0587\u0561\u0579\u0561\u0583\u056B\u0576`; return `\u054D\u056D\u0561\u056C ${FormatDictionary[_issue.format] ?? issue2.format}`; } case "not_multiple_of": return `\u054D\u056D\u0561\u056C \u0569\u056B\u057E\u2024 \u057A\u0565\u057F\u0584 \u0567 \u0562\u0561\u0566\u0574\u0561\u057A\u0561\u057F\u056B\u056F \u056C\u056B\u0576\u056B ${issue2.divisor}-\u056B`; case "unrecognized_keys": return `\u0549\u0573\u0561\u0576\u0561\u0579\u057E\u0561\u056E \u0562\u0561\u0576\u0561\u056C\u056B${issue2.keys.length > 1 ? "\u0576\u0565\u0580" : ""}. ${joinValues(issue2.keys, ", ")}`; case "invalid_key": return `\u054D\u056D\u0561\u056C \u0562\u0561\u0576\u0561\u056C\u056B ${withDefiniteArticle(issue2.origin)}-\u0578\u0582\u0574`; case "invalid_union": return "\u054D\u056D\u0561\u056C \u0574\u0578\u0582\u057F\u0584\u0561\u0563\u0580\u0578\u0582\u0574"; case "invalid_element": return `\u054D\u056D\u0561\u056C \u0561\u0580\u056A\u0565\u0584 ${withDefiniteArticle(issue2.origin)}-\u0578\u0582\u0574`; default: return `\u054D\u056D\u0561\u056C \u0574\u0578\u0582\u057F\u0584\u0561\u0563\u0580\u0578\u0582\u0574`; } }; }, "error"); function hy_default() { return { localeError: error20() }; } __name(hy_default, "default"); // ../../node_modules/zod/v4/locales/id.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var error21 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: "karakter", verb: "memiliki" }, file: { unit: "byte", verb: "memiliki" }, array: { unit: "item", verb: "memiliki" }, set: { unit: "item", verb: "memiliki" } }; function getSizing(origin2) { return Sizable[origin2] ?? null; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "input", email: "alamat email", url: "URL", emoji: "emoji", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "tanggal dan waktu format ISO", date: "tanggal format ISO", time: "jam format ISO", duration: "durasi format ISO", ipv4: "alamat IPv4", ipv6: "alamat IPv6", cidrv4: "rentang alamat IPv4", cidrv6: "rentang alamat IPv6", base64: "string dengan enkode base64", base64url: "string dengan enkode base64url", json_string: "string JSON", e164: "angka E.164", jwt: "JWT", template_literal: "input" }; const TypeDictionary = { nan: "NaN" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `Input tidak valid: diharapkan instanceof ${issue2.expected}, diterima ${received}`; } return `Input tidak valid: diharapkan ${expected}, diterima ${received}`; } case "invalid_value": if (issue2.values.length === 1) return `Input tidak valid: diharapkan ${stringifyPrimitive(issue2.values[0])}`; return `Pilihan tidak valid: diharapkan salah satu dari ${joinValues(issue2.values, "|")}`; case "too_big": { const adj = issue2.inclusive ? "<=" : "<"; const sizing = getSizing(issue2.origin); if (sizing) return `Terlalu besar: diharapkan ${issue2.origin ?? "value"} memiliki ${adj}${issue2.maximum.toString()} ${sizing.unit ?? "elemen"}`; return `Terlalu besar: diharapkan ${issue2.origin ?? "value"} menjadi ${adj}${issue2.maximum.toString()}`; } case "too_small": { const adj = issue2.inclusive ? ">=" : ">"; const sizing = getSizing(issue2.origin); if (sizing) { return `Terlalu kecil: diharapkan ${issue2.origin} memiliki ${adj}${issue2.minimum.toString()} ${sizing.unit}`; } return `Terlalu kecil: diharapkan ${issue2.origin} menjadi ${adj}${issue2.minimum.toString()}`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") return `String tidak valid: harus dimulai dengan "${_issue.prefix}"`; if (_issue.format === "ends_with") return `String tidak valid: harus berakhir dengan "${_issue.suffix}"`; if (_issue.format === "includes") return `String tidak valid: harus menyertakan "${_issue.includes}"`; if (_issue.format === "regex") return `String tidak valid: harus sesuai pola ${_issue.pattern}`; return `${FormatDictionary[_issue.format] ?? issue2.format} tidak valid`; } case "not_multiple_of": return `Angka tidak valid: harus kelipatan dari ${issue2.divisor}`; case "unrecognized_keys": return `Kunci tidak dikenali ${issue2.keys.length > 1 ? "s" : ""}: ${joinValues(issue2.keys, ", ")}`; case "invalid_key": return `Kunci tidak valid di ${issue2.origin}`; case "invalid_union": return "Input tidak valid"; case "invalid_element": return `Nilai tidak valid di ${issue2.origin}`; default: return `Input tidak valid`; } }; }, "error"); function id_default() { return { localeError: error21() }; } __name(id_default, "default"); // ../../node_modules/zod/v4/locales/is.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var error22 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: "stafi", verb: "a\xF0 hafa" }, file: { unit: "b\xE6ti", verb: "a\xF0 hafa" }, array: { unit: "hluti", verb: "a\xF0 hafa" }, set: { unit: "hluti", verb: "a\xF0 hafa" } }; function getSizing(origin2) { return Sizable[origin2] ?? null; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "gildi", email: "netfang", url: "vefsl\xF3\xF0", emoji: "emoji", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "ISO dagsetning og t\xEDmi", date: "ISO dagsetning", time: "ISO t\xEDmi", duration: "ISO t\xEDmalengd", ipv4: "IPv4 address", ipv6: "IPv6 address", cidrv4: "IPv4 range", cidrv6: "IPv6 range", base64: "base64-encoded strengur", base64url: "base64url-encoded strengur", json_string: "JSON strengur", e164: "E.164 t\xF6lugildi", jwt: "JWT", template_literal: "gildi" }; const TypeDictionary = { nan: "NaN", number: "n\xFAmer", array: "fylki" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `Rangt gildi: \xDE\xFA sl\xF3st inn ${received} \xFEar sem \xE1 a\xF0 vera instanceof ${issue2.expected}`; } return `Rangt gildi: \xDE\xFA sl\xF3st inn ${received} \xFEar sem \xE1 a\xF0 vera ${expected}`; } case "invalid_value": if (issue2.values.length === 1) return `Rangt gildi: gert r\xE1\xF0 fyrir ${stringifyPrimitive(issue2.values[0])}`; return `\xD3gilt val: m\xE1 vera eitt af eftirfarandi ${joinValues(issue2.values, "|")}`; case "too_big": { const adj = issue2.inclusive ? "<=" : "<"; const sizing = getSizing(issue2.origin); if (sizing) return `Of st\xF3rt: gert er r\xE1\xF0 fyrir a\xF0 ${issue2.origin ?? "gildi"} hafi ${adj}${issue2.maximum.toString()} ${sizing.unit ?? "hluti"}`; return `Of st\xF3rt: gert er r\xE1\xF0 fyrir a\xF0 ${issue2.origin ?? "gildi"} s\xE9 ${adj}${issue2.maximum.toString()}`; } case "too_small": { const adj = issue2.inclusive ? ">=" : ">"; const sizing = getSizing(issue2.origin); if (sizing) { return `Of l\xEDti\xF0: gert er r\xE1\xF0 fyrir a\xF0 ${issue2.origin} hafi ${adj}${issue2.minimum.toString()} ${sizing.unit}`; } return `Of l\xEDti\xF0: gert er r\xE1\xF0 fyrir a\xF0 ${issue2.origin} s\xE9 ${adj}${issue2.minimum.toString()}`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") { return `\xD3gildur strengur: ver\xF0ur a\xF0 byrja \xE1 "${_issue.prefix}"`; } if (_issue.format === "ends_with") return `\xD3gildur strengur: ver\xF0ur a\xF0 enda \xE1 "${_issue.suffix}"`; if (_issue.format === "includes") return `\xD3gildur strengur: ver\xF0ur a\xF0 innihalda "${_issue.includes}"`; if (_issue.format === "regex") return `\xD3gildur strengur: ver\xF0ur a\xF0 fylgja mynstri ${_issue.pattern}`; return `Rangt ${FormatDictionary[_issue.format] ?? issue2.format}`; } case "not_multiple_of": return `R\xF6ng tala: ver\xF0ur a\xF0 vera margfeldi af ${issue2.divisor}`; case "unrecognized_keys": return `\xD3\xFEekkt ${issue2.keys.length > 1 ? "ir lyklar" : "ur lykill"}: ${joinValues(issue2.keys, ", ")}`; case "invalid_key": return `Rangur lykill \xED ${issue2.origin}`; case "invalid_union": return "Rangt gildi"; case "invalid_element": return `Rangt gildi \xED ${issue2.origin}`; default: return `Rangt gildi`; } }; }, "error"); function is_default() { return { localeError: error22() }; } __name(is_default, "default"); // ../../node_modules/zod/v4/locales/it.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var error23 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: "caratteri", verb: "avere" }, file: { unit: "byte", verb: "avere" }, array: { unit: "elementi", verb: "avere" }, set: { unit: "elementi", verb: "avere" } }; function getSizing(origin2) { return Sizable[origin2] ?? null; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "input", email: "indirizzo email", url: "URL", emoji: "emoji", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "data e ora ISO", date: "data ISO", time: "ora ISO", duration: "durata ISO", ipv4: "indirizzo IPv4", ipv6: "indirizzo IPv6", cidrv4: "intervallo IPv4", cidrv6: "intervallo IPv6", base64: "stringa codificata in base64", base64url: "URL codificata in base64", json_string: "stringa JSON", e164: "numero E.164", jwt: "JWT", template_literal: "input" }; const TypeDictionary = { nan: "NaN", number: "numero", array: "vettore" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `Input non valido: atteso instanceof ${issue2.expected}, ricevuto ${received}`; } return `Input non valido: atteso ${expected}, ricevuto ${received}`; } case "invalid_value": if (issue2.values.length === 1) return `Input non valido: atteso ${stringifyPrimitive(issue2.values[0])}`; return `Opzione non valida: atteso uno tra ${joinValues(issue2.values, "|")}`; case "too_big": { const adj = issue2.inclusive ? "<=" : "<"; const sizing = getSizing(issue2.origin); if (sizing) return `Troppo grande: ${issue2.origin ?? "valore"} deve avere ${adj}${issue2.maximum.toString()} ${sizing.unit ?? "elementi"}`; return `Troppo grande: ${issue2.origin ?? "valore"} deve essere ${adj}${issue2.maximum.toString()}`; } case "too_small": { const adj = issue2.inclusive ? ">=" : ">"; const sizing = getSizing(issue2.origin); if (sizing) { return `Troppo piccolo: ${issue2.origin} deve avere ${adj}${issue2.minimum.toString()} ${sizing.unit}`; } return `Troppo piccolo: ${issue2.origin} deve essere ${adj}${issue2.minimum.toString()}`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") return `Stringa non valida: deve iniziare con "${_issue.prefix}"`; if (_issue.format === "ends_with") return `Stringa non valida: deve terminare con "${_issue.suffix}"`; if (_issue.format === "includes") return `Stringa non valida: deve includere "${_issue.includes}"`; if (_issue.format === "regex") return `Stringa non valida: deve corrispondere al pattern ${_issue.pattern}`; return `Invalid ${FormatDictionary[_issue.format] ?? issue2.format}`; } case "not_multiple_of": return `Numero non valido: deve essere un multiplo di ${issue2.divisor}`; case "unrecognized_keys": return `Chiav${issue2.keys.length > 1 ? "i" : "e"} non riconosciut${issue2.keys.length > 1 ? "e" : "a"}: ${joinValues(issue2.keys, ", ")}`; case "invalid_key": return `Chiave non valida in ${issue2.origin}`; case "invalid_union": return "Input non valido"; case "invalid_element": return `Valore non valido in ${issue2.origin}`; default: return `Input non valido`; } }; }, "error"); function it_default() { return { localeError: error23() }; } __name(it_default, "default"); // ../../node_modules/zod/v4/locales/ja.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var error24 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: "\u6587\u5B57", verb: "\u3067\u3042\u308B" }, file: { unit: "\u30D0\u30A4\u30C8", verb: "\u3067\u3042\u308B" }, array: { unit: "\u8981\u7D20", verb: "\u3067\u3042\u308B" }, set: { unit: "\u8981\u7D20", verb: "\u3067\u3042\u308B" } }; function getSizing(origin2) { return Sizable[origin2] ?? null; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "\u5165\u529B\u5024", email: "\u30E1\u30FC\u30EB\u30A2\u30C9\u30EC\u30B9", url: "URL", emoji: "\u7D75\u6587\u5B57", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "ISO\u65E5\u6642", date: "ISO\u65E5\u4ED8", time: "ISO\u6642\u523B", duration: "ISO\u671F\u9593", ipv4: "IPv4\u30A2\u30C9\u30EC\u30B9", ipv6: "IPv6\u30A2\u30C9\u30EC\u30B9", cidrv4: "IPv4\u7BC4\u56F2", cidrv6: "IPv6\u7BC4\u56F2", base64: "base64\u30A8\u30F3\u30B3\u30FC\u30C9\u6587\u5B57\u5217", base64url: "base64url\u30A8\u30F3\u30B3\u30FC\u30C9\u6587\u5B57\u5217", json_string: "JSON\u6587\u5B57\u5217", e164: "E.164\u756A\u53F7", jwt: "JWT", template_literal: "\u5165\u529B\u5024" }; const TypeDictionary = { nan: "NaN", number: "\u6570\u5024", array: "\u914D\u5217" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `\u7121\u52B9\u306A\u5165\u529B: instanceof ${issue2.expected}\u304C\u671F\u5F85\u3055\u308C\u307E\u3057\u305F\u304C\u3001${received}\u304C\u5165\u529B\u3055\u308C\u307E\u3057\u305F`; } return `\u7121\u52B9\u306A\u5165\u529B: ${expected}\u304C\u671F\u5F85\u3055\u308C\u307E\u3057\u305F\u304C\u3001${received}\u304C\u5165\u529B\u3055\u308C\u307E\u3057\u305F`; } case "invalid_value": if (issue2.values.length === 1) return `\u7121\u52B9\u306A\u5165\u529B: ${stringifyPrimitive(issue2.values[0])}\u304C\u671F\u5F85\u3055\u308C\u307E\u3057\u305F`; return `\u7121\u52B9\u306A\u9078\u629E: ${joinValues(issue2.values, "\u3001")}\u306E\u3044\u305A\u308C\u304B\u3067\u3042\u308B\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059`; case "too_big": { const adj = issue2.inclusive ? "\u4EE5\u4E0B\u3067\u3042\u308B" : "\u3088\u308A\u5C0F\u3055\u3044"; const sizing = getSizing(issue2.origin); if (sizing) return `\u5927\u304D\u3059\u304E\u308B\u5024: ${issue2.origin ?? "\u5024"}\u306F${issue2.maximum.toString()}${sizing.unit ?? "\u8981\u7D20"}${adj}\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059`; return `\u5927\u304D\u3059\u304E\u308B\u5024: ${issue2.origin ?? "\u5024"}\u306F${issue2.maximum.toString()}${adj}\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059`; } case "too_small": { const adj = issue2.inclusive ? "\u4EE5\u4E0A\u3067\u3042\u308B" : "\u3088\u308A\u5927\u304D\u3044"; const sizing = getSizing(issue2.origin); if (sizing) return `\u5C0F\u3055\u3059\u304E\u308B\u5024: ${issue2.origin}\u306F${issue2.minimum.toString()}${sizing.unit}${adj}\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059`; return `\u5C0F\u3055\u3059\u304E\u308B\u5024: ${issue2.origin}\u306F${issue2.minimum.toString()}${adj}\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") return `\u7121\u52B9\u306A\u6587\u5B57\u5217: "${_issue.prefix}"\u3067\u59CB\u307E\u308B\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059`; if (_issue.format === "ends_with") return `\u7121\u52B9\u306A\u6587\u5B57\u5217: "${_issue.suffix}"\u3067\u7D42\u308F\u308B\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059`; if (_issue.format === "includes") return `\u7121\u52B9\u306A\u6587\u5B57\u5217: "${_issue.includes}"\u3092\u542B\u3080\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059`; if (_issue.format === "regex") return `\u7121\u52B9\u306A\u6587\u5B57\u5217: \u30D1\u30BF\u30FC\u30F3${_issue.pattern}\u306B\u4E00\u81F4\u3059\u308B\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059`; return `\u7121\u52B9\u306A${FormatDictionary[_issue.format] ?? issue2.format}`; } case "not_multiple_of": return `\u7121\u52B9\u306A\u6570\u5024: ${issue2.divisor}\u306E\u500D\u6570\u3067\u3042\u308B\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059`; case "unrecognized_keys": return `\u8A8D\u8B58\u3055\u308C\u3066\u3044\u306A\u3044\u30AD\u30FC${issue2.keys.length > 1 ? "\u7FA4" : ""}: ${joinValues(issue2.keys, "\u3001")}`; case "invalid_key": return `${issue2.origin}\u5185\u306E\u7121\u52B9\u306A\u30AD\u30FC`; case "invalid_union": return "\u7121\u52B9\u306A\u5165\u529B"; case "invalid_element": return `${issue2.origin}\u5185\u306E\u7121\u52B9\u306A\u5024`; default: return `\u7121\u52B9\u306A\u5165\u529B`; } }; }, "error"); function ja_default() { return { localeError: error24() }; } __name(ja_default, "default"); // ../../node_modules/zod/v4/locales/ka.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var error25 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: "\u10E1\u10D8\u10DB\u10D1\u10DD\u10DA\u10DD", verb: "\u10E3\u10DC\u10D3\u10D0 \u10E8\u10D4\u10D8\u10EA\u10D0\u10D5\u10D3\u10D4\u10E1" }, file: { unit: "\u10D1\u10D0\u10D8\u10E2\u10D8", verb: "\u10E3\u10DC\u10D3\u10D0 \u10E8\u10D4\u10D8\u10EA\u10D0\u10D5\u10D3\u10D4\u10E1" }, array: { unit: "\u10D4\u10DA\u10D4\u10DB\u10D4\u10DC\u10E2\u10D8", verb: "\u10E3\u10DC\u10D3\u10D0 \u10E8\u10D4\u10D8\u10EA\u10D0\u10D5\u10D3\u10D4\u10E1" }, set: { unit: "\u10D4\u10DA\u10D4\u10DB\u10D4\u10DC\u10E2\u10D8", verb: "\u10E3\u10DC\u10D3\u10D0 \u10E8\u10D4\u10D8\u10EA\u10D0\u10D5\u10D3\u10D4\u10E1" } }; function getSizing(origin2) { return Sizable[origin2] ?? null; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "\u10E8\u10D4\u10E7\u10D5\u10D0\u10DC\u10D0", email: "\u10D4\u10DA-\u10E4\u10DD\u10E1\u10E2\u10D8\u10E1 \u10DB\u10D8\u10E1\u10D0\u10DB\u10D0\u10E0\u10D7\u10D8", url: "URL", emoji: "\u10D4\u10DB\u10DD\u10EF\u10D8", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "\u10D7\u10D0\u10E0\u10D8\u10E6\u10D8-\u10D3\u10E0\u10DD", date: "\u10D7\u10D0\u10E0\u10D8\u10E6\u10D8", time: "\u10D3\u10E0\u10DD", duration: "\u10EE\u10D0\u10DC\u10D2\u10E0\u10EB\u10DA\u10D8\u10D5\u10DD\u10D1\u10D0", ipv4: "IPv4 \u10DB\u10D8\u10E1\u10D0\u10DB\u10D0\u10E0\u10D7\u10D8", ipv6: "IPv6 \u10DB\u10D8\u10E1\u10D0\u10DB\u10D0\u10E0\u10D7\u10D8", cidrv4: "IPv4 \u10D3\u10D8\u10D0\u10DE\u10D0\u10D6\u10DD\u10DC\u10D8", cidrv6: "IPv6 \u10D3\u10D8\u10D0\u10DE\u10D0\u10D6\u10DD\u10DC\u10D8", base64: "base64-\u10D9\u10DD\u10D3\u10D8\u10E0\u10D4\u10D1\u10E3\u10DA\u10D8 \u10E1\u10E2\u10E0\u10D8\u10DC\u10D2\u10D8", base64url: "base64url-\u10D9\u10DD\u10D3\u10D8\u10E0\u10D4\u10D1\u10E3\u10DA\u10D8 \u10E1\u10E2\u10E0\u10D8\u10DC\u10D2\u10D8", json_string: "JSON \u10E1\u10E2\u10E0\u10D8\u10DC\u10D2\u10D8", e164: "E.164 \u10DC\u10DD\u10DB\u10D4\u10E0\u10D8", jwt: "JWT", template_literal: "\u10E8\u10D4\u10E7\u10D5\u10D0\u10DC\u10D0" }; const TypeDictionary = { nan: "NaN", number: "\u10E0\u10D8\u10EA\u10EE\u10D5\u10D8", string: "\u10E1\u10E2\u10E0\u10D8\u10DC\u10D2\u10D8", boolean: "\u10D1\u10E3\u10DA\u10D4\u10D0\u10DC\u10D8", function: "\u10E4\u10E3\u10DC\u10E5\u10EA\u10D8\u10D0", array: "\u10DB\u10D0\u10E1\u10D8\u10D5\u10D8" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `\u10D0\u10E0\u10D0\u10E1\u10EC\u10DD\u10E0\u10D8 \u10E8\u10D4\u10E7\u10D5\u10D0\u10DC\u10D0: \u10DB\u10DD\u10E1\u10D0\u10DA\u10DD\u10D3\u10DC\u10D4\u10DA\u10D8 instanceof ${issue2.expected}, \u10DB\u10D8\u10E6\u10D4\u10D1\u10E3\u10DA\u10D8 ${received}`; } return `\u10D0\u10E0\u10D0\u10E1\u10EC\u10DD\u10E0\u10D8 \u10E8\u10D4\u10E7\u10D5\u10D0\u10DC\u10D0: \u10DB\u10DD\u10E1\u10D0\u10DA\u10DD\u10D3\u10DC\u10D4\u10DA\u10D8 ${expected}, \u10DB\u10D8\u10E6\u10D4\u10D1\u10E3\u10DA\u10D8 ${received}`; } case "invalid_value": if (issue2.values.length === 1) return `\u10D0\u10E0\u10D0\u10E1\u10EC\u10DD\u10E0\u10D8 \u10E8\u10D4\u10E7\u10D5\u10D0\u10DC\u10D0: \u10DB\u10DD\u10E1\u10D0\u10DA\u10DD\u10D3\u10DC\u10D4\u10DA\u10D8 ${stringifyPrimitive(issue2.values[0])}`; return `\u10D0\u10E0\u10D0\u10E1\u10EC\u10DD\u10E0\u10D8 \u10D5\u10D0\u10E0\u10D8\u10D0\u10DC\u10E2\u10D8: \u10DB\u10DD\u10E1\u10D0\u10DA\u10DD\u10D3\u10DC\u10D4\u10DA\u10D8\u10D0 \u10D4\u10E0\u10D7-\u10D4\u10E0\u10D7\u10D8 ${joinValues(issue2.values, "|")}-\u10D3\u10D0\u10DC`; case "too_big": { const adj = issue2.inclusive ? "<=" : "<"; const sizing = getSizing(issue2.origin); if (sizing) return `\u10D6\u10D4\u10D3\u10DB\u10D4\u10E2\u10D0\u10D3 \u10D3\u10D8\u10D3\u10D8: \u10DB\u10DD\u10E1\u10D0\u10DA\u10DD\u10D3\u10DC\u10D4\u10DA\u10D8 ${issue2.origin ?? "\u10DB\u10DC\u10D8\u10E8\u10D5\u10DC\u10D4\u10DA\u10DD\u10D1\u10D0"} ${sizing.verb} ${adj}${issue2.maximum.toString()} ${sizing.unit}`; return `\u10D6\u10D4\u10D3\u10DB\u10D4\u10E2\u10D0\u10D3 \u10D3\u10D8\u10D3\u10D8: \u10DB\u10DD\u10E1\u10D0\u10DA\u10DD\u10D3\u10DC\u10D4\u10DA\u10D8 ${issue2.origin ?? "\u10DB\u10DC\u10D8\u10E8\u10D5\u10DC\u10D4\u10DA\u10DD\u10D1\u10D0"} \u10D8\u10E7\u10DD\u10E1 ${adj}${issue2.maximum.toString()}`; } case "too_small": { const adj = issue2.inclusive ? ">=" : ">"; const sizing = getSizing(issue2.origin); if (sizing) { return `\u10D6\u10D4\u10D3\u10DB\u10D4\u10E2\u10D0\u10D3 \u10DE\u10D0\u10E2\u10D0\u10E0\u10D0: \u10DB\u10DD\u10E1\u10D0\u10DA\u10DD\u10D3\u10DC\u10D4\u10DA\u10D8 ${issue2.origin} ${sizing.verb} ${adj}${issue2.minimum.toString()} ${sizing.unit}`; } return `\u10D6\u10D4\u10D3\u10DB\u10D4\u10E2\u10D0\u10D3 \u10DE\u10D0\u10E2\u10D0\u10E0\u10D0: \u10DB\u10DD\u10E1\u10D0\u10DA\u10DD\u10D3\u10DC\u10D4\u10DA\u10D8 ${issue2.origin} \u10D8\u10E7\u10DD\u10E1 ${adj}${issue2.minimum.toString()}`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") { return `\u10D0\u10E0\u10D0\u10E1\u10EC\u10DD\u10E0\u10D8 \u10E1\u10E2\u10E0\u10D8\u10DC\u10D2\u10D8: \u10E3\u10DC\u10D3\u10D0 \u10D8\u10EC\u10E7\u10D4\u10D1\u10DD\u10D3\u10D4\u10E1 "${_issue.prefix}"-\u10D8\u10D7`; } if (_issue.format === "ends_with") return `\u10D0\u10E0\u10D0\u10E1\u10EC\u10DD\u10E0\u10D8 \u10E1\u10E2\u10E0\u10D8\u10DC\u10D2\u10D8: \u10E3\u10DC\u10D3\u10D0 \u10DB\u10D7\u10D0\u10D5\u10E0\u10D3\u10D4\u10D1\u10DD\u10D3\u10D4\u10E1 "${_issue.suffix}"-\u10D8\u10D7`; if (_issue.format === "includes") return `\u10D0\u10E0\u10D0\u10E1\u10EC\u10DD\u10E0\u10D8 \u10E1\u10E2\u10E0\u10D8\u10DC\u10D2\u10D8: \u10E3\u10DC\u10D3\u10D0 \u10E8\u10D4\u10D8\u10EA\u10D0\u10D5\u10D3\u10D4\u10E1 "${_issue.includes}"-\u10E1`; if (_issue.format === "regex") return `\u10D0\u10E0\u10D0\u10E1\u10EC\u10DD\u10E0\u10D8 \u10E1\u10E2\u10E0\u10D8\u10DC\u10D2\u10D8: \u10E3\u10DC\u10D3\u10D0 \u10E8\u10D4\u10D4\u10E1\u10D0\u10D1\u10D0\u10DB\u10D4\u10D1\u10DD\u10D3\u10D4\u10E1 \u10E8\u10D0\u10D1\u10DA\u10DD\u10DC\u10E1 ${_issue.pattern}`; return `\u10D0\u10E0\u10D0\u10E1\u10EC\u10DD\u10E0\u10D8 ${FormatDictionary[_issue.format] ?? issue2.format}`; } case "not_multiple_of": return `\u10D0\u10E0\u10D0\u10E1\u10EC\u10DD\u10E0\u10D8 \u10E0\u10D8\u10EA\u10EE\u10D5\u10D8: \u10E3\u10DC\u10D3\u10D0 \u10D8\u10E7\u10DD\u10E1 ${issue2.divisor}-\u10D8\u10E1 \u10EF\u10D4\u10E0\u10D0\u10D3\u10D8`; case "unrecognized_keys": return `\u10E3\u10EA\u10DC\u10DD\u10D1\u10D8 \u10D2\u10D0\u10E1\u10D0\u10E6\u10D4\u10D1${issue2.keys.length > 1 ? "\u10D4\u10D1\u10D8" : "\u10D8"}: ${joinValues(issue2.keys, ", ")}`; case "invalid_key": return `\u10D0\u10E0\u10D0\u10E1\u10EC\u10DD\u10E0\u10D8 \u10D2\u10D0\u10E1\u10D0\u10E6\u10D4\u10D1\u10D8 ${issue2.origin}-\u10E8\u10D8`; case "invalid_union": return "\u10D0\u10E0\u10D0\u10E1\u10EC\u10DD\u10E0\u10D8 \u10E8\u10D4\u10E7\u10D5\u10D0\u10DC\u10D0"; case "invalid_element": return `\u10D0\u10E0\u10D0\u10E1\u10EC\u10DD\u10E0\u10D8 \u10DB\u10DC\u10D8\u10E8\u10D5\u10DC\u10D4\u10DA\u10DD\u10D1\u10D0 ${issue2.origin}-\u10E8\u10D8`; default: return `\u10D0\u10E0\u10D0\u10E1\u10EC\u10DD\u10E0\u10D8 \u10E8\u10D4\u10E7\u10D5\u10D0\u10DC\u10D0`; } }; }, "error"); function ka_default() { return { localeError: error25() }; } __name(ka_default, "default"); // ../../node_modules/zod/v4/locales/kh.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/zod/v4/locales/km.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var error26 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: "\u178F\u17BD\u17A2\u1780\u17D2\u179F\u179A", verb: "\u1782\u17BD\u179A\u1798\u17B6\u1793" }, file: { unit: "\u1794\u17C3", verb: "\u1782\u17BD\u179A\u1798\u17B6\u1793" }, array: { unit: "\u1792\u17B6\u178F\u17BB", verb: "\u1782\u17BD\u179A\u1798\u17B6\u1793" }, set: { unit: "\u1792\u17B6\u178F\u17BB", verb: "\u1782\u17BD\u179A\u1798\u17B6\u1793" } }; function getSizing(origin2) { return Sizable[origin2] ?? null; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "\u1791\u17B7\u1793\u17D2\u1793\u1793\u17D0\u1799\u1794\u1789\u17D2\u1785\u17BC\u179B", email: "\u17A2\u17B6\u179F\u1799\u178A\u17D2\u178B\u17B6\u1793\u17A2\u17CA\u17B8\u1798\u17C2\u179B", url: "URL", emoji: "\u179F\u1789\u17D2\u1789\u17B6\u17A2\u17B6\u179A\u1798\u17D2\u1798\u178E\u17CD", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "\u1780\u17B6\u179B\u1794\u179A\u17B7\u1785\u17D2\u1786\u17C1\u1791 \u1793\u17B7\u1784\u1798\u17C9\u17C4\u1784 ISO", date: "\u1780\u17B6\u179B\u1794\u179A\u17B7\u1785\u17D2\u1786\u17C1\u1791 ISO", time: "\u1798\u17C9\u17C4\u1784 ISO", duration: "\u179A\u1799\u17C8\u1796\u17C1\u179B ISO", ipv4: "\u17A2\u17B6\u179F\u1799\u178A\u17D2\u178B\u17B6\u1793 IPv4", ipv6: "\u17A2\u17B6\u179F\u1799\u178A\u17D2\u178B\u17B6\u1793 IPv6", cidrv4: "\u178A\u17C2\u1793\u17A2\u17B6\u179F\u1799\u178A\u17D2\u178B\u17B6\u1793 IPv4", cidrv6: "\u178A\u17C2\u1793\u17A2\u17B6\u179F\u1799\u178A\u17D2\u178B\u17B6\u1793 IPv6", base64: "\u1781\u17D2\u179F\u17C2\u17A2\u1780\u17D2\u179F\u179A\u17A2\u17CA\u17B7\u1780\u17BC\u178A base64", base64url: "\u1781\u17D2\u179F\u17C2\u17A2\u1780\u17D2\u179F\u179A\u17A2\u17CA\u17B7\u1780\u17BC\u178A base64url", json_string: "\u1781\u17D2\u179F\u17C2\u17A2\u1780\u17D2\u179F\u179A JSON", e164: "\u179B\u17C1\u1781 E.164", jwt: "JWT", template_literal: "\u1791\u17B7\u1793\u17D2\u1793\u1793\u17D0\u1799\u1794\u1789\u17D2\u1785\u17BC\u179B" }; const TypeDictionary = { nan: "NaN", number: "\u179B\u17C1\u1781", array: "\u17A2\u17B6\u179A\u17C1 (Array)", null: "\u1782\u17D2\u1798\u17B6\u1793\u178F\u1798\u17D2\u179B\u17C3 (null)" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `\u1791\u17B7\u1793\u17D2\u1793\u1793\u17D0\u1799\u1794\u1789\u17D2\u1785\u17BC\u179B\u1798\u17B7\u1793\u178F\u17D2\u179A\u17B9\u1798\u178F\u17D2\u179A\u17BC\u179C\u17D6 \u178F\u17D2\u179A\u17BC\u179C\u1780\u17B6\u179A instanceof ${issue2.expected} \u1794\u17C9\u17BB\u1793\u17D2\u178F\u17C2\u1791\u1791\u17BD\u179B\u1794\u17B6\u1793 ${received}`; } return `\u1791\u17B7\u1793\u17D2\u1793\u1793\u17D0\u1799\u1794\u1789\u17D2\u1785\u17BC\u179B\u1798\u17B7\u1793\u178F\u17D2\u179A\u17B9\u1798\u178F\u17D2\u179A\u17BC\u179C\u17D6 \u178F\u17D2\u179A\u17BC\u179C\u1780\u17B6\u179A ${expected} \u1794\u17C9\u17BB\u1793\u17D2\u178F\u17C2\u1791\u1791\u17BD\u179B\u1794\u17B6\u1793 ${received}`; } case "invalid_value": if (issue2.values.length === 1) return `\u1791\u17B7\u1793\u17D2\u1793\u1793\u17D0\u1799\u1794\u1789\u17D2\u1785\u17BC\u179B\u1798\u17B7\u1793\u178F\u17D2\u179A\u17B9\u1798\u178F\u17D2\u179A\u17BC\u179C\u17D6 \u178F\u17D2\u179A\u17BC\u179C\u1780\u17B6\u179A ${stringifyPrimitive(issue2.values[0])}`; return `\u1787\u1798\u17D2\u179A\u17BE\u179F\u1798\u17B7\u1793\u178F\u17D2\u179A\u17B9\u1798\u178F\u17D2\u179A\u17BC\u179C\u17D6 \u178F\u17D2\u179A\u17BC\u179C\u1787\u17B6\u1798\u17BD\u1799\u1780\u17D2\u1793\u17BB\u1784\u1785\u17C6\u178E\u17C4\u1798 ${joinValues(issue2.values, "|")}`; case "too_big": { const adj = issue2.inclusive ? "<=" : "<"; const sizing = getSizing(issue2.origin); if (sizing) return `\u1792\u17C6\u1796\u17C1\u1780\u17D6 \u178F\u17D2\u179A\u17BC\u179C\u1780\u17B6\u179A ${issue2.origin ?? "\u178F\u1798\u17D2\u179B\u17C3"} ${adj} ${issue2.maximum.toString()} ${sizing.unit ?? "\u1792\u17B6\u178F\u17BB"}`; return `\u1792\u17C6\u1796\u17C1\u1780\u17D6 \u178F\u17D2\u179A\u17BC\u179C\u1780\u17B6\u179A ${issue2.origin ?? "\u178F\u1798\u17D2\u179B\u17C3"} ${adj} ${issue2.maximum.toString()}`; } case "too_small": { const adj = issue2.inclusive ? ">=" : ">"; const sizing = getSizing(issue2.origin); if (sizing) { return `\u178F\u17BC\u1785\u1796\u17C1\u1780\u17D6 \u178F\u17D2\u179A\u17BC\u179C\u1780\u17B6\u179A ${issue2.origin} ${adj} ${issue2.minimum.toString()} ${sizing.unit}`; } return `\u178F\u17BC\u1785\u1796\u17C1\u1780\u17D6 \u178F\u17D2\u179A\u17BC\u179C\u1780\u17B6\u179A ${issue2.origin} ${adj} ${issue2.minimum.toString()}`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") { return `\u1781\u17D2\u179F\u17C2\u17A2\u1780\u17D2\u179F\u179A\u1798\u17B7\u1793\u178F\u17D2\u179A\u17B9\u1798\u178F\u17D2\u179A\u17BC\u179C\u17D6 \u178F\u17D2\u179A\u17BC\u179C\u1785\u17B6\u1794\u17CB\u1795\u17D2\u178F\u17BE\u1798\u178A\u17C4\u1799 "${_issue.prefix}"`; } if (_issue.format === "ends_with") return `\u1781\u17D2\u179F\u17C2\u17A2\u1780\u17D2\u179F\u179A\u1798\u17B7\u1793\u178F\u17D2\u179A\u17B9\u1798\u178F\u17D2\u179A\u17BC\u179C\u17D6 \u178F\u17D2\u179A\u17BC\u179C\u1794\u1789\u17D2\u1785\u1794\u17CB\u178A\u17C4\u1799 "${_issue.suffix}"`; if (_issue.format === "includes") return `\u1781\u17D2\u179F\u17C2\u17A2\u1780\u17D2\u179F\u179A\u1798\u17B7\u1793\u178F\u17D2\u179A\u17B9\u1798\u178F\u17D2\u179A\u17BC\u179C\u17D6 \u178F\u17D2\u179A\u17BC\u179C\u1798\u17B6\u1793 "${_issue.includes}"`; if (_issue.format === "regex") return `\u1781\u17D2\u179F\u17C2\u17A2\u1780\u17D2\u179F\u179A\u1798\u17B7\u1793\u178F\u17D2\u179A\u17B9\u1798\u178F\u17D2\u179A\u17BC\u179C\u17D6 \u178F\u17D2\u179A\u17BC\u179C\u178F\u17C2\u1795\u17D2\u1782\u17BC\u1795\u17D2\u1782\u1784\u1793\u17B9\u1784\u1791\u1798\u17D2\u179A\u1784\u17CB\u178A\u17C2\u179B\u1794\u17B6\u1793\u1780\u17C6\u178E\u178F\u17CB ${_issue.pattern}`; return `\u1798\u17B7\u1793\u178F\u17D2\u179A\u17B9\u1798\u178F\u17D2\u179A\u17BC\u179C\u17D6 ${FormatDictionary[_issue.format] ?? issue2.format}`; } case "not_multiple_of": return `\u179B\u17C1\u1781\u1798\u17B7\u1793\u178F\u17D2\u179A\u17B9\u1798\u178F\u17D2\u179A\u17BC\u179C\u17D6 \u178F\u17D2\u179A\u17BC\u179C\u178F\u17C2\u1787\u17B6\u1796\u17A0\u17BB\u1782\u17BB\u178E\u1793\u17C3 ${issue2.divisor}`; case "unrecognized_keys": return `\u179A\u1780\u1783\u17BE\u1789\u179F\u17C4\u1798\u17B7\u1793\u179F\u17D2\u1782\u17B6\u179B\u17CB\u17D6 ${joinValues(issue2.keys, ", ")}`; case "invalid_key": return `\u179F\u17C4\u1798\u17B7\u1793\u178F\u17D2\u179A\u17B9\u1798\u178F\u17D2\u179A\u17BC\u179C\u1793\u17C5\u1780\u17D2\u1793\u17BB\u1784 ${issue2.origin}`; case "invalid_union": return `\u1791\u17B7\u1793\u17D2\u1793\u1793\u17D0\u1799\u1798\u17B7\u1793\u178F\u17D2\u179A\u17B9\u1798\u178F\u17D2\u179A\u17BC\u179C`; case "invalid_element": return `\u1791\u17B7\u1793\u17D2\u1793\u1793\u17D0\u1799\u1798\u17B7\u1793\u178F\u17D2\u179A\u17B9\u1798\u178F\u17D2\u179A\u17BC\u179C\u1793\u17C5\u1780\u17D2\u1793\u17BB\u1784 ${issue2.origin}`; default: return `\u1791\u17B7\u1793\u17D2\u1793\u1793\u17D0\u1799\u1798\u17B7\u1793\u178F\u17D2\u179A\u17B9\u1798\u178F\u17D2\u179A\u17BC\u179C`; } }; }, "error"); function km_default() { return { localeError: error26() }; } __name(km_default, "default"); // ../../node_modules/zod/v4/locales/kh.js function kh_default() { return km_default(); } __name(kh_default, "default"); // ../../node_modules/zod/v4/locales/ko.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var error27 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: "\uBB38\uC790", verb: "to have" }, file: { unit: "\uBC14\uC774\uD2B8", verb: "to have" }, array: { unit: "\uAC1C", verb: "to have" }, set: { unit: "\uAC1C", verb: "to have" } }; function getSizing(origin2) { return Sizable[origin2] ?? null; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "\uC785\uB825", email: "\uC774\uBA54\uC77C \uC8FC\uC18C", url: "URL", emoji: "\uC774\uBAA8\uC9C0", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "ISO \uB0A0\uC9DC\uC2DC\uAC04", date: "ISO \uB0A0\uC9DC", time: "ISO \uC2DC\uAC04", duration: "ISO \uAE30\uAC04", ipv4: "IPv4 \uC8FC\uC18C", ipv6: "IPv6 \uC8FC\uC18C", cidrv4: "IPv4 \uBC94\uC704", cidrv6: "IPv6 \uBC94\uC704", base64: "base64 \uC778\uCF54\uB529 \uBB38\uC790\uC5F4", base64url: "base64url \uC778\uCF54\uB529 \uBB38\uC790\uC5F4", json_string: "JSON \uBB38\uC790\uC5F4", e164: "E.164 \uBC88\uD638", jwt: "JWT", template_literal: "\uC785\uB825" }; const TypeDictionary = { nan: "NaN" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `\uC798\uBABB\uB41C \uC785\uB825: \uC608\uC0C1 \uD0C0\uC785\uC740 instanceof ${issue2.expected}, \uBC1B\uC740 \uD0C0\uC785\uC740 ${received}\uC785\uB2C8\uB2E4`; } return `\uC798\uBABB\uB41C \uC785\uB825: \uC608\uC0C1 \uD0C0\uC785\uC740 ${expected}, \uBC1B\uC740 \uD0C0\uC785\uC740 ${received}\uC785\uB2C8\uB2E4`; } case "invalid_value": if (issue2.values.length === 1) return `\uC798\uBABB\uB41C \uC785\uB825: \uAC12\uC740 ${stringifyPrimitive(issue2.values[0])} \uC774\uC5B4\uC57C \uD569\uB2C8\uB2E4`; return `\uC798\uBABB\uB41C \uC635\uC158: ${joinValues(issue2.values, "\uB610\uB294 ")} \uC911 \uD558\uB098\uC5EC\uC57C \uD569\uB2C8\uB2E4`; case "too_big": { const adj = issue2.inclusive ? "\uC774\uD558" : "\uBBF8\uB9CC"; const suffix = adj === "\uBBF8\uB9CC" ? "\uC774\uC5B4\uC57C \uD569\uB2C8\uB2E4" : "\uC5EC\uC57C \uD569\uB2C8\uB2E4"; const sizing = getSizing(issue2.origin); const unit = sizing?.unit ?? "\uC694\uC18C"; if (sizing) return `${issue2.origin ?? "\uAC12"}\uC774 \uB108\uBB34 \uD07D\uB2C8\uB2E4: ${issue2.maximum.toString()}${unit} ${adj}${suffix}`; return `${issue2.origin ?? "\uAC12"}\uC774 \uB108\uBB34 \uD07D\uB2C8\uB2E4: ${issue2.maximum.toString()} ${adj}${suffix}`; } case "too_small": { const adj = issue2.inclusive ? "\uC774\uC0C1" : "\uCD08\uACFC"; const suffix = adj === "\uC774\uC0C1" ? "\uC774\uC5B4\uC57C \uD569\uB2C8\uB2E4" : "\uC5EC\uC57C \uD569\uB2C8\uB2E4"; const sizing = getSizing(issue2.origin); const unit = sizing?.unit ?? "\uC694\uC18C"; if (sizing) { return `${issue2.origin ?? "\uAC12"}\uC774 \uB108\uBB34 \uC791\uC2B5\uB2C8\uB2E4: ${issue2.minimum.toString()}${unit} ${adj}${suffix}`; } return `${issue2.origin ?? "\uAC12"}\uC774 \uB108\uBB34 \uC791\uC2B5\uB2C8\uB2E4: ${issue2.minimum.toString()} ${adj}${suffix}`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") { return `\uC798\uBABB\uB41C \uBB38\uC790\uC5F4: "${_issue.prefix}"(\uC73C)\uB85C \uC2DC\uC791\uD574\uC57C \uD569\uB2C8\uB2E4`; } if (_issue.format === "ends_with") return `\uC798\uBABB\uB41C \uBB38\uC790\uC5F4: "${_issue.suffix}"(\uC73C)\uB85C \uB05D\uB098\uC57C \uD569\uB2C8\uB2E4`; if (_issue.format === "includes") return `\uC798\uBABB\uB41C \uBB38\uC790\uC5F4: "${_issue.includes}"\uC744(\uB97C) \uD3EC\uD568\uD574\uC57C \uD569\uB2C8\uB2E4`; if (_issue.format === "regex") return `\uC798\uBABB\uB41C \uBB38\uC790\uC5F4: \uC815\uADDC\uC2DD ${_issue.pattern} \uD328\uD134\uACFC \uC77C\uCE58\uD574\uC57C \uD569\uB2C8\uB2E4`; return `\uC798\uBABB\uB41C ${FormatDictionary[_issue.format] ?? issue2.format}`; } case "not_multiple_of": return `\uC798\uBABB\uB41C \uC22B\uC790: ${issue2.divisor}\uC758 \uBC30\uC218\uC5EC\uC57C \uD569\uB2C8\uB2E4`; case "unrecognized_keys": return `\uC778\uC2DD\uD560 \uC218 \uC5C6\uB294 \uD0A4: ${joinValues(issue2.keys, ", ")}`; case "invalid_key": return `\uC798\uBABB\uB41C \uD0A4: ${issue2.origin}`; case "invalid_union": return `\uC798\uBABB\uB41C \uC785\uB825`; case "invalid_element": return `\uC798\uBABB\uB41C \uAC12: ${issue2.origin}`; default: return `\uC798\uBABB\uB41C \uC785\uB825`; } }; }, "error"); function ko_default() { return { localeError: error27() }; } __name(ko_default, "default"); // ../../node_modules/zod/v4/locales/lt.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var capitalizeFirstCharacter = /* @__PURE__ */ __name((text2) => { return text2.charAt(0).toUpperCase() + text2.slice(1); }, "capitalizeFirstCharacter"); function getUnitTypeFromNumber(number4) { const abs = Math.abs(number4); const last = abs % 10; const last2 = abs % 100; if (last2 >= 11 && last2 <= 19 || last === 0) return "many"; if (last === 1) return "one"; return "few"; } __name(getUnitTypeFromNumber, "getUnitTypeFromNumber"); var error28 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: { one: "simbolis", few: "simboliai", many: "simboli\u0173" }, verb: { smaller: { inclusive: "turi b\u016Bti ne ilgesn\u0117 kaip", notInclusive: "turi b\u016Bti trumpesn\u0117 kaip" }, bigger: { inclusive: "turi b\u016Bti ne trumpesn\u0117 kaip", notInclusive: "turi b\u016Bti ilgesn\u0117 kaip" } } }, file: { unit: { one: "baitas", few: "baitai", many: "bait\u0173" }, verb: { smaller: { inclusive: "turi b\u016Bti ne didesnis kaip", notInclusive: "turi b\u016Bti ma\u017Eesnis kaip" }, bigger: { inclusive: "turi b\u016Bti ne ma\u017Eesnis kaip", notInclusive: "turi b\u016Bti didesnis kaip" } } }, array: { unit: { one: "element\u0105", few: "elementus", many: "element\u0173" }, verb: { smaller: { inclusive: "turi tur\u0117ti ne daugiau kaip", notInclusive: "turi tur\u0117ti ma\u017Eiau kaip" }, bigger: { inclusive: "turi tur\u0117ti ne ma\u017Eiau kaip", notInclusive: "turi tur\u0117ti daugiau kaip" } } }, set: { unit: { one: "element\u0105", few: "elementus", many: "element\u0173" }, verb: { smaller: { inclusive: "turi tur\u0117ti ne daugiau kaip", notInclusive: "turi tur\u0117ti ma\u017Eiau kaip" }, bigger: { inclusive: "turi tur\u0117ti ne ma\u017Eiau kaip", notInclusive: "turi tur\u0117ti daugiau kaip" } } } }; function getSizing(origin2, unitType, inclusive, targetShouldBe) { const result = Sizable[origin2] ?? null; if (result === null) return result; return { unit: result.unit[unitType], verb: result.verb[targetShouldBe][inclusive ? "inclusive" : "notInclusive"] }; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "\u012Fvestis", email: "el. pa\u0161to adresas", url: "URL", emoji: "jaustukas", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "ISO data ir laikas", date: "ISO data", time: "ISO laikas", duration: "ISO trukm\u0117", ipv4: "IPv4 adresas", ipv6: "IPv6 adresas", cidrv4: "IPv4 tinklo prefiksas (CIDR)", cidrv6: "IPv6 tinklo prefiksas (CIDR)", base64: "base64 u\u017Ekoduota eilut\u0117", base64url: "base64url u\u017Ekoduota eilut\u0117", json_string: "JSON eilut\u0117", e164: "E.164 numeris", jwt: "JWT", template_literal: "\u012Fvestis" }; const TypeDictionary = { nan: "NaN", number: "skai\u010Dius", bigint: "sveikasis skai\u010Dius", string: "eilut\u0117", boolean: "login\u0117 reik\u0161m\u0117", undefined: "neapibr\u0117\u017Eta reik\u0161m\u0117", function: "funkcija", symbol: "simbolis", array: "masyvas", object: "objektas", null: "nulin\u0117 reik\u0161m\u0117" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `Gautas tipas ${received}, o tik\u0117tasi - instanceof ${issue2.expected}`; } return `Gautas tipas ${received}, o tik\u0117tasi - ${expected}`; } case "invalid_value": if (issue2.values.length === 1) return `Privalo b\u016Bti ${stringifyPrimitive(issue2.values[0])}`; return `Privalo b\u016Bti vienas i\u0161 ${joinValues(issue2.values, "|")} pasirinkim\u0173`; case "too_big": { const origin2 = TypeDictionary[issue2.origin] ?? issue2.origin; const sizing = getSizing(issue2.origin, getUnitTypeFromNumber(Number(issue2.maximum)), issue2.inclusive ?? false, "smaller"); if (sizing?.verb) return `${capitalizeFirstCharacter(origin2 ?? issue2.origin ?? "reik\u0161m\u0117")} ${sizing.verb} ${issue2.maximum.toString()} ${sizing.unit ?? "element\u0173"}`; const adj = issue2.inclusive ? "ne didesnis kaip" : "ma\u017Eesnis kaip"; return `${capitalizeFirstCharacter(origin2 ?? issue2.origin ?? "reik\u0161m\u0117")} turi b\u016Bti ${adj} ${issue2.maximum.toString()} ${sizing?.unit}`; } case "too_small": { const origin2 = TypeDictionary[issue2.origin] ?? issue2.origin; const sizing = getSizing(issue2.origin, getUnitTypeFromNumber(Number(issue2.minimum)), issue2.inclusive ?? false, "bigger"); if (sizing?.verb) return `${capitalizeFirstCharacter(origin2 ?? issue2.origin ?? "reik\u0161m\u0117")} ${sizing.verb} ${issue2.minimum.toString()} ${sizing.unit ?? "element\u0173"}`; const adj = issue2.inclusive ? "ne ma\u017Eesnis kaip" : "didesnis kaip"; return `${capitalizeFirstCharacter(origin2 ?? issue2.origin ?? "reik\u0161m\u0117")} turi b\u016Bti ${adj} ${issue2.minimum.toString()} ${sizing?.unit}`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") { return `Eilut\u0117 privalo prasid\u0117ti "${_issue.prefix}"`; } if (_issue.format === "ends_with") return `Eilut\u0117 privalo pasibaigti "${_issue.suffix}"`; if (_issue.format === "includes") return `Eilut\u0117 privalo \u012Ftraukti "${_issue.includes}"`; if (_issue.format === "regex") return `Eilut\u0117 privalo atitikti ${_issue.pattern}`; return `Neteisingas ${FormatDictionary[_issue.format] ?? issue2.format}`; } case "not_multiple_of": return `Skai\u010Dius privalo b\u016Bti ${issue2.divisor} kartotinis.`; case "unrecognized_keys": return `Neatpa\u017Eint${issue2.keys.length > 1 ? "i" : "as"} rakt${issue2.keys.length > 1 ? "ai" : "as"}: ${joinValues(issue2.keys, ", ")}`; case "invalid_key": return "Rastas klaidingas raktas"; case "invalid_union": return "Klaidinga \u012Fvestis"; case "invalid_element": { const origin2 = TypeDictionary[issue2.origin] ?? issue2.origin; return `${capitalizeFirstCharacter(origin2 ?? issue2.origin ?? "reik\u0161m\u0117")} turi klaiding\u0105 \u012Fvest\u012F`; } default: return "Klaidinga \u012Fvestis"; } }; }, "error"); function lt_default() { return { localeError: error28() }; } __name(lt_default, "default"); // ../../node_modules/zod/v4/locales/mk.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var error29 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: "\u0437\u043D\u0430\u0446\u0438", verb: "\u0434\u0430 \u0438\u043C\u0430\u0430\u0442" }, file: { unit: "\u0431\u0430\u0458\u0442\u0438", verb: "\u0434\u0430 \u0438\u043C\u0430\u0430\u0442" }, array: { unit: "\u0441\u0442\u0430\u0432\u043A\u0438", verb: "\u0434\u0430 \u0438\u043C\u0430\u0430\u0442" }, set: { unit: "\u0441\u0442\u0430\u0432\u043A\u0438", verb: "\u0434\u0430 \u0438\u043C\u0430\u0430\u0442" } }; function getSizing(origin2) { return Sizable[origin2] ?? null; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "\u0432\u043D\u0435\u0441", email: "\u0430\u0434\u0440\u0435\u0441\u0430 \u043D\u0430 \u0435-\u043F\u043E\u0448\u0442\u0430", url: "URL", emoji: "\u0435\u043C\u043E\u045F\u0438", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "ISO \u0434\u0430\u0442\u0443\u043C \u0438 \u0432\u0440\u0435\u043C\u0435", date: "ISO \u0434\u0430\u0442\u0443\u043C", time: "ISO \u0432\u0440\u0435\u043C\u0435", duration: "ISO \u0432\u0440\u0435\u043C\u0435\u0442\u0440\u0430\u0435\u045A\u0435", ipv4: "IPv4 \u0430\u0434\u0440\u0435\u0441\u0430", ipv6: "IPv6 \u0430\u0434\u0440\u0435\u0441\u0430", cidrv4: "IPv4 \u043E\u043F\u0441\u0435\u0433", cidrv6: "IPv6 \u043E\u043F\u0441\u0435\u0433", base64: "base64-\u0435\u043D\u043A\u043E\u0434\u0438\u0440\u0430\u043D\u0430 \u043D\u0438\u0437\u0430", base64url: "base64url-\u0435\u043D\u043A\u043E\u0434\u0438\u0440\u0430\u043D\u0430 \u043D\u0438\u0437\u0430", json_string: "JSON \u043D\u0438\u0437\u0430", e164: "E.164 \u0431\u0440\u043E\u0458", jwt: "JWT", template_literal: "\u0432\u043D\u0435\u0441" }; const TypeDictionary = { nan: "NaN", number: "\u0431\u0440\u043E\u0458", array: "\u043D\u0438\u0437\u0430" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `\u0413\u0440\u0435\u0448\u0435\u043D \u0432\u043D\u0435\u0441: \u0441\u0435 \u043E\u0447\u0435\u043A\u0443\u0432\u0430 instanceof ${issue2.expected}, \u043F\u0440\u0438\u043C\u0435\u043D\u043E ${received}`; } return `\u0413\u0440\u0435\u0448\u0435\u043D \u0432\u043D\u0435\u0441: \u0441\u0435 \u043E\u0447\u0435\u043A\u0443\u0432\u0430 ${expected}, \u043F\u0440\u0438\u043C\u0435\u043D\u043E ${received}`; } case "invalid_value": if (issue2.values.length === 1) return `Invalid input: expected ${stringifyPrimitive(issue2.values[0])}`; return `\u0413\u0440\u0435\u0448\u0430\u043D\u0430 \u043E\u043F\u0446\u0438\u0458\u0430: \u0441\u0435 \u043E\u0447\u0435\u043A\u0443\u0432\u0430 \u0435\u0434\u043D\u0430 ${joinValues(issue2.values, "|")}`; case "too_big": { const adj = issue2.inclusive ? "<=" : "<"; const sizing = getSizing(issue2.origin); if (sizing) return `\u041F\u0440\u0435\u043C\u043D\u043E\u0433\u0443 \u0433\u043E\u043B\u0435\u043C: \u0441\u0435 \u043E\u0447\u0435\u043A\u0443\u0432\u0430 ${issue2.origin ?? "\u0432\u0440\u0435\u0434\u043D\u043E\u0441\u0442\u0430"} \u0434\u0430 \u0438\u043C\u0430 ${adj}${issue2.maximum.toString()} ${sizing.unit ?? "\u0435\u043B\u0435\u043C\u0435\u043D\u0442\u0438"}`; return `\u041F\u0440\u0435\u043C\u043D\u043E\u0433\u0443 \u0433\u043E\u043B\u0435\u043C: \u0441\u0435 \u043E\u0447\u0435\u043A\u0443\u0432\u0430 ${issue2.origin ?? "\u0432\u0440\u0435\u0434\u043D\u043E\u0441\u0442\u0430"} \u0434\u0430 \u0431\u0438\u0434\u0435 ${adj}${issue2.maximum.toString()}`; } case "too_small": { const adj = issue2.inclusive ? ">=" : ">"; const sizing = getSizing(issue2.origin); if (sizing) { return `\u041F\u0440\u0435\u043C\u043D\u043E\u0433\u0443 \u043C\u0430\u043B: \u0441\u0435 \u043E\u0447\u0435\u043A\u0443\u0432\u0430 ${issue2.origin} \u0434\u0430 \u0438\u043C\u0430 ${adj}${issue2.minimum.toString()} ${sizing.unit}`; } return `\u041F\u0440\u0435\u043C\u043D\u043E\u0433\u0443 \u043C\u0430\u043B: \u0441\u0435 \u043E\u0447\u0435\u043A\u0443\u0432\u0430 ${issue2.origin} \u0434\u0430 \u0431\u0438\u0434\u0435 ${adj}${issue2.minimum.toString()}`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") { return `\u041D\u0435\u0432\u0430\u0436\u0435\u0447\u043A\u0430 \u043D\u0438\u0437\u0430: \u043C\u043E\u0440\u0430 \u0434\u0430 \u0437\u0430\u043F\u043E\u0447\u043D\u0443\u0432\u0430 \u0441\u043E "${_issue.prefix}"`; } if (_issue.format === "ends_with") return `\u041D\u0435\u0432\u0430\u0436\u0435\u0447\u043A\u0430 \u043D\u0438\u0437\u0430: \u043C\u043E\u0440\u0430 \u0434\u0430 \u0437\u0430\u0432\u0440\u0448\u0443\u0432\u0430 \u0441\u043E "${_issue.suffix}"`; if (_issue.format === "includes") return `\u041D\u0435\u0432\u0430\u0436\u0435\u0447\u043A\u0430 \u043D\u0438\u0437\u0430: \u043C\u043E\u0440\u0430 \u0434\u0430 \u0432\u043A\u043B\u0443\u0447\u0443\u0432\u0430 "${_issue.includes}"`; if (_issue.format === "regex") return `\u041D\u0435\u0432\u0430\u0436\u0435\u0447\u043A\u0430 \u043D\u0438\u0437\u0430: \u043C\u043E\u0440\u0430 \u0434\u0430 \u043E\u0434\u0433\u043E\u0430\u0440\u0430 \u043D\u0430 \u043F\u0430\u0442\u0435\u0440\u043D\u043E\u0442 ${_issue.pattern}`; return `Invalid ${FormatDictionary[_issue.format] ?? issue2.format}`; } case "not_multiple_of": return `\u0413\u0440\u0435\u0448\u0435\u043D \u0431\u0440\u043E\u0458: \u043C\u043E\u0440\u0430 \u0434\u0430 \u0431\u0438\u0434\u0435 \u0434\u0435\u043B\u0438\u0432 \u0441\u043E ${issue2.divisor}`; case "unrecognized_keys": return `${issue2.keys.length > 1 ? "\u041D\u0435\u043F\u0440\u0435\u043F\u043E\u0437\u043D\u0430\u0435\u043D\u0438 \u043A\u043B\u0443\u0447\u0435\u0432\u0438" : "\u041D\u0435\u043F\u0440\u0435\u043F\u043E\u0437\u043D\u0430\u0435\u043D \u043A\u043B\u0443\u0447"}: ${joinValues(issue2.keys, ", ")}`; case "invalid_key": return `\u0413\u0440\u0435\u0448\u0435\u043D \u043A\u043B\u0443\u0447 \u0432\u043E ${issue2.origin}`; case "invalid_union": return "\u0413\u0440\u0435\u0448\u0435\u043D \u0432\u043D\u0435\u0441"; case "invalid_element": return `\u0413\u0440\u0435\u0448\u043D\u0430 \u0432\u0440\u0435\u0434\u043D\u043E\u0441\u0442 \u0432\u043E ${issue2.origin}`; default: return `\u0413\u0440\u0435\u0448\u0435\u043D \u0432\u043D\u0435\u0441`; } }; }, "error"); function mk_default() { return { localeError: error29() }; } __name(mk_default, "default"); // ../../node_modules/zod/v4/locales/ms.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var error30 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: "aksara", verb: "mempunyai" }, file: { unit: "bait", verb: "mempunyai" }, array: { unit: "elemen", verb: "mempunyai" }, set: { unit: "elemen", verb: "mempunyai" } }; function getSizing(origin2) { return Sizable[origin2] ?? null; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "input", email: "alamat e-mel", url: "URL", emoji: "emoji", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "tarikh masa ISO", date: "tarikh ISO", time: "masa ISO", duration: "tempoh ISO", ipv4: "alamat IPv4", ipv6: "alamat IPv6", cidrv4: "julat IPv4", cidrv6: "julat IPv6", base64: "string dikodkan base64", base64url: "string dikodkan base64url", json_string: "string JSON", e164: "nombor E.164", jwt: "JWT", template_literal: "input" }; const TypeDictionary = { nan: "NaN", number: "nombor" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `Input tidak sah: dijangka instanceof ${issue2.expected}, diterima ${received}`; } return `Input tidak sah: dijangka ${expected}, diterima ${received}`; } case "invalid_value": if (issue2.values.length === 1) return `Input tidak sah: dijangka ${stringifyPrimitive(issue2.values[0])}`; return `Pilihan tidak sah: dijangka salah satu daripada ${joinValues(issue2.values, "|")}`; case "too_big": { const adj = issue2.inclusive ? "<=" : "<"; const sizing = getSizing(issue2.origin); if (sizing) return `Terlalu besar: dijangka ${issue2.origin ?? "nilai"} ${sizing.verb} ${adj}${issue2.maximum.toString()} ${sizing.unit ?? "elemen"}`; return `Terlalu besar: dijangka ${issue2.origin ?? "nilai"} adalah ${adj}${issue2.maximum.toString()}`; } case "too_small": { const adj = issue2.inclusive ? ">=" : ">"; const sizing = getSizing(issue2.origin); if (sizing) { return `Terlalu kecil: dijangka ${issue2.origin} ${sizing.verb} ${adj}${issue2.minimum.toString()} ${sizing.unit}`; } return `Terlalu kecil: dijangka ${issue2.origin} adalah ${adj}${issue2.minimum.toString()}`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") return `String tidak sah: mesti bermula dengan "${_issue.prefix}"`; if (_issue.format === "ends_with") return `String tidak sah: mesti berakhir dengan "${_issue.suffix}"`; if (_issue.format === "includes") return `String tidak sah: mesti mengandungi "${_issue.includes}"`; if (_issue.format === "regex") return `String tidak sah: mesti sepadan dengan corak ${_issue.pattern}`; return `${FormatDictionary[_issue.format] ?? issue2.format} tidak sah`; } case "not_multiple_of": return `Nombor tidak sah: perlu gandaan ${issue2.divisor}`; case "unrecognized_keys": return `Kunci tidak dikenali: ${joinValues(issue2.keys, ", ")}`; case "invalid_key": return `Kunci tidak sah dalam ${issue2.origin}`; case "invalid_union": return "Input tidak sah"; case "invalid_element": return `Nilai tidak sah dalam ${issue2.origin}`; default: return `Input tidak sah`; } }; }, "error"); function ms_default() { return { localeError: error30() }; } __name(ms_default, "default"); // ../../node_modules/zod/v4/locales/nl.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var error31 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: "tekens", verb: "heeft" }, file: { unit: "bytes", verb: "heeft" }, array: { unit: "elementen", verb: "heeft" }, set: { unit: "elementen", verb: "heeft" } }; function getSizing(origin2) { return Sizable[origin2] ?? null; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "invoer", email: "emailadres", url: "URL", emoji: "emoji", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "ISO datum en tijd", date: "ISO datum", time: "ISO tijd", duration: "ISO duur", ipv4: "IPv4-adres", ipv6: "IPv6-adres", cidrv4: "IPv4-bereik", cidrv6: "IPv6-bereik", base64: "base64-gecodeerde tekst", base64url: "base64 URL-gecodeerde tekst", json_string: "JSON string", e164: "E.164-nummer", jwt: "JWT", template_literal: "invoer" }; const TypeDictionary = { nan: "NaN", number: "getal" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `Ongeldige invoer: verwacht instanceof ${issue2.expected}, ontving ${received}`; } return `Ongeldige invoer: verwacht ${expected}, ontving ${received}`; } case "invalid_value": if (issue2.values.length === 1) return `Ongeldige invoer: verwacht ${stringifyPrimitive(issue2.values[0])}`; return `Ongeldige optie: verwacht \xE9\xE9n van ${joinValues(issue2.values, "|")}`; case "too_big": { const adj = issue2.inclusive ? "<=" : "<"; const sizing = getSizing(issue2.origin); const longName = issue2.origin === "date" ? "laat" : issue2.origin === "string" ? "lang" : "groot"; if (sizing) return `Te ${longName}: verwacht dat ${issue2.origin ?? "waarde"} ${adj}${issue2.maximum.toString()} ${sizing.unit ?? "elementen"} ${sizing.verb}`; return `Te ${longName}: verwacht dat ${issue2.origin ?? "waarde"} ${adj}${issue2.maximum.toString()} is`; } case "too_small": { const adj = issue2.inclusive ? ">=" : ">"; const sizing = getSizing(issue2.origin); const shortName = issue2.origin === "date" ? "vroeg" : issue2.origin === "string" ? "kort" : "klein"; if (sizing) { return `Te ${shortName}: verwacht dat ${issue2.origin} ${adj}${issue2.minimum.toString()} ${sizing.unit} ${sizing.verb}`; } return `Te ${shortName}: verwacht dat ${issue2.origin} ${adj}${issue2.minimum.toString()} is`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") { return `Ongeldige tekst: moet met "${_issue.prefix}" beginnen`; } if (_issue.format === "ends_with") return `Ongeldige tekst: moet op "${_issue.suffix}" eindigen`; if (_issue.format === "includes") return `Ongeldige tekst: moet "${_issue.includes}" bevatten`; if (_issue.format === "regex") return `Ongeldige tekst: moet overeenkomen met patroon ${_issue.pattern}`; return `Ongeldig: ${FormatDictionary[_issue.format] ?? issue2.format}`; } case "not_multiple_of": return `Ongeldig getal: moet een veelvoud van ${issue2.divisor} zijn`; case "unrecognized_keys": return `Onbekende key${issue2.keys.length > 1 ? "s" : ""}: ${joinValues(issue2.keys, ", ")}`; case "invalid_key": return `Ongeldige key in ${issue2.origin}`; case "invalid_union": return "Ongeldige invoer"; case "invalid_element": return `Ongeldige waarde in ${issue2.origin}`; default: return `Ongeldige invoer`; } }; }, "error"); function nl_default() { return { localeError: error31() }; } __name(nl_default, "default"); // ../../node_modules/zod/v4/locales/no.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var error32 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: "tegn", verb: "\xE5 ha" }, file: { unit: "bytes", verb: "\xE5 ha" }, array: { unit: "elementer", verb: "\xE5 inneholde" }, set: { unit: "elementer", verb: "\xE5 inneholde" } }; function getSizing(origin2) { return Sizable[origin2] ?? null; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "input", email: "e-postadresse", url: "URL", emoji: "emoji", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "ISO dato- og klokkeslett", date: "ISO-dato", time: "ISO-klokkeslett", duration: "ISO-varighet", ipv4: "IPv4-omr\xE5de", ipv6: "IPv6-omr\xE5de", cidrv4: "IPv4-spekter", cidrv6: "IPv6-spekter", base64: "base64-enkodet streng", base64url: "base64url-enkodet streng", json_string: "JSON-streng", e164: "E.164-nummer", jwt: "JWT", template_literal: "input" }; const TypeDictionary = { nan: "NaN", number: "tall", array: "liste" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `Ugyldig input: forventet instanceof ${issue2.expected}, fikk ${received}`; } return `Ugyldig input: forventet ${expected}, fikk ${received}`; } case "invalid_value": if (issue2.values.length === 1) return `Ugyldig verdi: forventet ${stringifyPrimitive(issue2.values[0])}`; return `Ugyldig valg: forventet en av ${joinValues(issue2.values, "|")}`; case "too_big": { const adj = issue2.inclusive ? "<=" : "<"; const sizing = getSizing(issue2.origin); if (sizing) return `For stor(t): forventet ${issue2.origin ?? "value"} til \xE5 ha ${adj}${issue2.maximum.toString()} ${sizing.unit ?? "elementer"}`; return `For stor(t): forventet ${issue2.origin ?? "value"} til \xE5 ha ${adj}${issue2.maximum.toString()}`; } case "too_small": { const adj = issue2.inclusive ? ">=" : ">"; const sizing = getSizing(issue2.origin); if (sizing) { return `For lite(n): forventet ${issue2.origin} til \xE5 ha ${adj}${issue2.minimum.toString()} ${sizing.unit}`; } return `For lite(n): forventet ${issue2.origin} til \xE5 ha ${adj}${issue2.minimum.toString()}`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") return `Ugyldig streng: m\xE5 starte med "${_issue.prefix}"`; if (_issue.format === "ends_with") return `Ugyldig streng: m\xE5 ende med "${_issue.suffix}"`; if (_issue.format === "includes") return `Ugyldig streng: m\xE5 inneholde "${_issue.includes}"`; if (_issue.format === "regex") return `Ugyldig streng: m\xE5 matche m\xF8nsteret ${_issue.pattern}`; return `Ugyldig ${FormatDictionary[_issue.format] ?? issue2.format}`; } case "not_multiple_of": return `Ugyldig tall: m\xE5 v\xE6re et multiplum av ${issue2.divisor}`; case "unrecognized_keys": return `${issue2.keys.length > 1 ? "Ukjente n\xF8kler" : "Ukjent n\xF8kkel"}: ${joinValues(issue2.keys, ", ")}`; case "invalid_key": return `Ugyldig n\xF8kkel i ${issue2.origin}`; case "invalid_union": return "Ugyldig input"; case "invalid_element": return `Ugyldig verdi i ${issue2.origin}`; default: return `Ugyldig input`; } }; }, "error"); function no_default() { return { localeError: error32() }; } __name(no_default, "default"); // ../../node_modules/zod/v4/locales/ota.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var error33 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: "harf", verb: "olmal\u0131d\u0131r" }, file: { unit: "bayt", verb: "olmal\u0131d\u0131r" }, array: { unit: "unsur", verb: "olmal\u0131d\u0131r" }, set: { unit: "unsur", verb: "olmal\u0131d\u0131r" } }; function getSizing(origin2) { return Sizable[origin2] ?? null; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "giren", email: "epostag\xE2h", url: "URL", emoji: "emoji", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "ISO heng\xE2m\u0131", date: "ISO tarihi", time: "ISO zaman\u0131", duration: "ISO m\xFCddeti", ipv4: "IPv4 ni\u015F\xE2n\u0131", ipv6: "IPv6 ni\u015F\xE2n\u0131", cidrv4: "IPv4 menzili", cidrv6: "IPv6 menzili", base64: "base64-\u015Fifreli metin", base64url: "base64url-\u015Fifreli metin", json_string: "JSON metin", e164: "E.164 say\u0131s\u0131", jwt: "JWT", template_literal: "giren" }; const TypeDictionary = { nan: "NaN", number: "numara", array: "saf", null: "gayb" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `F\xE2sit giren: umulan instanceof ${issue2.expected}, al\u0131nan ${received}`; } return `F\xE2sit giren: umulan ${expected}, al\u0131nan ${received}`; } case "invalid_value": if (issue2.values.length === 1) return `F\xE2sit giren: umulan ${stringifyPrimitive(issue2.values[0])}`; return `F\xE2sit tercih: m\xFBteberler ${joinValues(issue2.values, "|")}`; case "too_big": { const adj = issue2.inclusive ? "<=" : "<"; const sizing = getSizing(issue2.origin); if (sizing) return `Fazla b\xFCy\xFCk: ${issue2.origin ?? "value"}, ${adj}${issue2.maximum.toString()} ${sizing.unit ?? "elements"} sahip olmal\u0131yd\u0131.`; return `Fazla b\xFCy\xFCk: ${issue2.origin ?? "value"}, ${adj}${issue2.maximum.toString()} olmal\u0131yd\u0131.`; } case "too_small": { const adj = issue2.inclusive ? ">=" : ">"; const sizing = getSizing(issue2.origin); if (sizing) { return `Fazla k\xFC\xE7\xFCk: ${issue2.origin}, ${adj}${issue2.minimum.toString()} ${sizing.unit} sahip olmal\u0131yd\u0131.`; } return `Fazla k\xFC\xE7\xFCk: ${issue2.origin}, ${adj}${issue2.minimum.toString()} olmal\u0131yd\u0131.`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") return `F\xE2sit metin: "${_issue.prefix}" ile ba\u015Flamal\u0131.`; if (_issue.format === "ends_with") return `F\xE2sit metin: "${_issue.suffix}" ile bitmeli.`; if (_issue.format === "includes") return `F\xE2sit metin: "${_issue.includes}" ihtiv\xE2 etmeli.`; if (_issue.format === "regex") return `F\xE2sit metin: ${_issue.pattern} nak\u015F\u0131na uymal\u0131.`; return `F\xE2sit ${FormatDictionary[_issue.format] ?? issue2.format}`; } case "not_multiple_of": return `F\xE2sit say\u0131: ${issue2.divisor} kat\u0131 olmal\u0131yd\u0131.`; case "unrecognized_keys": return `Tan\u0131nmayan anahtar ${issue2.keys.length > 1 ? "s" : ""}: ${joinValues(issue2.keys, ", ")}`; case "invalid_key": return `${issue2.origin} i\xE7in tan\u0131nmayan anahtar var.`; case "invalid_union": return "Giren tan\u0131namad\u0131."; case "invalid_element": return `${issue2.origin} i\xE7in tan\u0131nmayan k\u0131ymet var.`; default: return `K\u0131ymet tan\u0131namad\u0131.`; } }; }, "error"); function ota_default() { return { localeError: error33() }; } __name(ota_default, "default"); // ../../node_modules/zod/v4/locales/ps.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var error34 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: "\u062A\u0648\u06A9\u064A", verb: "\u0648\u0644\u0631\u064A" }, file: { unit: "\u0628\u0627\u06CC\u067C\u0633", verb: "\u0648\u0644\u0631\u064A" }, array: { unit: "\u062A\u0648\u06A9\u064A", verb: "\u0648\u0644\u0631\u064A" }, set: { unit: "\u062A\u0648\u06A9\u064A", verb: "\u0648\u0644\u0631\u064A" } }; function getSizing(origin2) { return Sizable[origin2] ?? null; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "\u0648\u0631\u0648\u062F\u064A", email: "\u0628\u0631\u06CC\u069A\u0646\u0627\u0644\u06CC\u06A9", url: "\u06CC\u0648 \u0622\u0631 \u0627\u0644", emoji: "\u0627\u06CC\u0645\u0648\u062C\u064A", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "\u0646\u06CC\u067C\u0647 \u0627\u0648 \u0648\u062E\u062A", date: "\u0646\u06D0\u067C\u0647", time: "\u0648\u062E\u062A", duration: "\u0645\u0648\u062F\u0647", ipv4: "\u062F IPv4 \u067E\u062A\u0647", ipv6: "\u062F IPv6 \u067E\u062A\u0647", cidrv4: "\u062F IPv4 \u0633\u0627\u062D\u0647", cidrv6: "\u062F IPv6 \u0633\u0627\u062D\u0647", base64: "base64-encoded \u0645\u062A\u0646", base64url: "base64url-encoded \u0645\u062A\u0646", json_string: "JSON \u0645\u062A\u0646", e164: "\u062F E.164 \u0634\u0645\u06D0\u0631\u0647", jwt: "JWT", template_literal: "\u0648\u0631\u0648\u062F\u064A" }; const TypeDictionary = { nan: "NaN", number: "\u0639\u062F\u062F", array: "\u0627\u0631\u06D0" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `\u0646\u0627\u0633\u0645 \u0648\u0631\u0648\u062F\u064A: \u0628\u0627\u06CC\u062F instanceof ${issue2.expected} \u0648\u0627\u06CC, \u0645\u06AB\u0631 ${received} \u062A\u0631\u0644\u0627\u0633\u0647 \u0634\u0648`; } return `\u0646\u0627\u0633\u0645 \u0648\u0631\u0648\u062F\u064A: \u0628\u0627\u06CC\u062F ${expected} \u0648\u0627\u06CC, \u0645\u06AB\u0631 ${received} \u062A\u0631\u0644\u0627\u0633\u0647 \u0634\u0648`; } case "invalid_value": if (issue2.values.length === 1) { return `\u0646\u0627\u0633\u0645 \u0648\u0631\u0648\u062F\u064A: \u0628\u0627\u06CC\u062F ${stringifyPrimitive(issue2.values[0])} \u0648\u0627\u06CC`; } return `\u0646\u0627\u0633\u0645 \u0627\u0646\u062A\u062E\u0627\u0628: \u0628\u0627\u06CC\u062F \u06CC\u0648 \u0644\u0647 ${joinValues(issue2.values, "|")} \u0685\u062E\u0647 \u0648\u0627\u06CC`; case "too_big": { const adj = issue2.inclusive ? "<=" : "<"; const sizing = getSizing(issue2.origin); if (sizing) { return `\u0689\u06CC\u0631 \u0644\u0648\u06CC: ${issue2.origin ?? "\u0627\u0631\u0632\u069A\u062A"} \u0628\u0627\u06CC\u062F ${adj}${issue2.maximum.toString()} ${sizing.unit ?? "\u0639\u0646\u0635\u0631\u0648\u0646\u0647"} \u0648\u0644\u0631\u064A`; } return `\u0689\u06CC\u0631 \u0644\u0648\u06CC: ${issue2.origin ?? "\u0627\u0631\u0632\u069A\u062A"} \u0628\u0627\u06CC\u062F ${adj}${issue2.maximum.toString()} \u0648\u064A`; } case "too_small": { const adj = issue2.inclusive ? ">=" : ">"; const sizing = getSizing(issue2.origin); if (sizing) { return `\u0689\u06CC\u0631 \u06A9\u0648\u0686\u0646\u06CC: ${issue2.origin} \u0628\u0627\u06CC\u062F ${adj}${issue2.minimum.toString()} ${sizing.unit} \u0648\u0644\u0631\u064A`; } return `\u0689\u06CC\u0631 \u06A9\u0648\u0686\u0646\u06CC: ${issue2.origin} \u0628\u0627\u06CC\u062F ${adj}${issue2.minimum.toString()} \u0648\u064A`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") { return `\u0646\u0627\u0633\u0645 \u0645\u062A\u0646: \u0628\u0627\u06CC\u062F \u062F "${_issue.prefix}" \u0633\u0631\u0647 \u067E\u06CC\u0644 \u0634\u064A`; } if (_issue.format === "ends_with") { return `\u0646\u0627\u0633\u0645 \u0645\u062A\u0646: \u0628\u0627\u06CC\u062F \u062F "${_issue.suffix}" \u0633\u0631\u0647 \u067E\u0627\u06CC \u062A\u0647 \u0648\u0631\u0633\u064A\u0696\u064A`; } if (_issue.format === "includes") { return `\u0646\u0627\u0633\u0645 \u0645\u062A\u0646: \u0628\u0627\u06CC\u062F "${_issue.includes}" \u0648\u0644\u0631\u064A`; } if (_issue.format === "regex") { return `\u0646\u0627\u0633\u0645 \u0645\u062A\u0646: \u0628\u0627\u06CC\u062F \u062F ${_issue.pattern} \u0633\u0631\u0647 \u0645\u0637\u0627\u0628\u0642\u062A \u0648\u0644\u0631\u064A`; } return `${FormatDictionary[_issue.format] ?? issue2.format} \u0646\u0627\u0633\u0645 \u062F\u06CC`; } case "not_multiple_of": return `\u0646\u0627\u0633\u0645 \u0639\u062F\u062F: \u0628\u0627\u06CC\u062F \u062F ${issue2.divisor} \u0645\u0636\u0631\u0628 \u0648\u064A`; case "unrecognized_keys": return `\u0646\u0627\u0633\u0645 ${issue2.keys.length > 1 ? "\u06A9\u0644\u06CC\u0689\u0648\u0646\u0647" : "\u06A9\u0644\u06CC\u0689"}: ${joinValues(issue2.keys, ", ")}`; case "invalid_key": return `\u0646\u0627\u0633\u0645 \u06A9\u0644\u06CC\u0689 \u067E\u0647 ${issue2.origin} \u06A9\u06D0`; case "invalid_union": return `\u0646\u0627\u0633\u0645\u0647 \u0648\u0631\u0648\u062F\u064A`; case "invalid_element": return `\u0646\u0627\u0633\u0645 \u0639\u0646\u0635\u0631 \u067E\u0647 ${issue2.origin} \u06A9\u06D0`; default: return `\u0646\u0627\u0633\u0645\u0647 \u0648\u0631\u0648\u062F\u064A`; } }; }, "error"); function ps_default() { return { localeError: error34() }; } __name(ps_default, "default"); // ../../node_modules/zod/v4/locales/pl.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var error35 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: "znak\xF3w", verb: "mie\u0107" }, file: { unit: "bajt\xF3w", verb: "mie\u0107" }, array: { unit: "element\xF3w", verb: "mie\u0107" }, set: { unit: "element\xF3w", verb: "mie\u0107" } }; function getSizing(origin2) { return Sizable[origin2] ?? null; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "wyra\u017Cenie", email: "adres email", url: "URL", emoji: "emoji", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "data i godzina w formacie ISO", date: "data w formacie ISO", time: "godzina w formacie ISO", duration: "czas trwania ISO", ipv4: "adres IPv4", ipv6: "adres IPv6", cidrv4: "zakres IPv4", cidrv6: "zakres IPv6", base64: "ci\u0105g znak\xF3w zakodowany w formacie base64", base64url: "ci\u0105g znak\xF3w zakodowany w formacie base64url", json_string: "ci\u0105g znak\xF3w w formacie JSON", e164: "liczba E.164", jwt: "JWT", template_literal: "wej\u015Bcie" }; const TypeDictionary = { nan: "NaN", number: "liczba", array: "tablica" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `Nieprawid\u0142owe dane wej\u015Bciowe: oczekiwano instanceof ${issue2.expected}, otrzymano ${received}`; } return `Nieprawid\u0142owe dane wej\u015Bciowe: oczekiwano ${expected}, otrzymano ${received}`; } case "invalid_value": if (issue2.values.length === 1) return `Nieprawid\u0142owe dane wej\u015Bciowe: oczekiwano ${stringifyPrimitive(issue2.values[0])}`; return `Nieprawid\u0142owa opcja: oczekiwano jednej z warto\u015Bci ${joinValues(issue2.values, "|")}`; case "too_big": { const adj = issue2.inclusive ? "<=" : "<"; const sizing = getSizing(issue2.origin); if (sizing) { return `Za du\u017Ca warto\u015B\u0107: oczekiwano, \u017Ce ${issue2.origin ?? "warto\u015B\u0107"} b\u0119dzie mie\u0107 ${adj}${issue2.maximum.toString()} ${sizing.unit ?? "element\xF3w"}`; } return `Zbyt du\u017C(y/a/e): oczekiwano, \u017Ce ${issue2.origin ?? "warto\u015B\u0107"} b\u0119dzie wynosi\u0107 ${adj}${issue2.maximum.toString()}`; } case "too_small": { const adj = issue2.inclusive ? ">=" : ">"; const sizing = getSizing(issue2.origin); if (sizing) { return `Za ma\u0142a warto\u015B\u0107: oczekiwano, \u017Ce ${issue2.origin ?? "warto\u015B\u0107"} b\u0119dzie mie\u0107 ${adj}${issue2.minimum.toString()} ${sizing.unit ?? "element\xF3w"}`; } return `Zbyt ma\u0142(y/a/e): oczekiwano, \u017Ce ${issue2.origin ?? "warto\u015B\u0107"} b\u0119dzie wynosi\u0107 ${adj}${issue2.minimum.toString()}`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") return `Nieprawid\u0142owy ci\u0105g znak\xF3w: musi zaczyna\u0107 si\u0119 od "${_issue.prefix}"`; if (_issue.format === "ends_with") return `Nieprawid\u0142owy ci\u0105g znak\xF3w: musi ko\u0144czy\u0107 si\u0119 na "${_issue.suffix}"`; if (_issue.format === "includes") return `Nieprawid\u0142owy ci\u0105g znak\xF3w: musi zawiera\u0107 "${_issue.includes}"`; if (_issue.format === "regex") return `Nieprawid\u0142owy ci\u0105g znak\xF3w: musi odpowiada\u0107 wzorcowi ${_issue.pattern}`; return `Nieprawid\u0142ow(y/a/e) ${FormatDictionary[_issue.format] ?? issue2.format}`; } case "not_multiple_of": return `Nieprawid\u0142owa liczba: musi by\u0107 wielokrotno\u015Bci\u0105 ${issue2.divisor}`; case "unrecognized_keys": return `Nierozpoznane klucze${issue2.keys.length > 1 ? "s" : ""}: ${joinValues(issue2.keys, ", ")}`; case "invalid_key": return `Nieprawid\u0142owy klucz w ${issue2.origin}`; case "invalid_union": return "Nieprawid\u0142owe dane wej\u015Bciowe"; case "invalid_element": return `Nieprawid\u0142owa warto\u015B\u0107 w ${issue2.origin}`; default: return `Nieprawid\u0142owe dane wej\u015Bciowe`; } }; }, "error"); function pl_default() { return { localeError: error35() }; } __name(pl_default, "default"); // ../../node_modules/zod/v4/locales/pt.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var error36 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: "caracteres", verb: "ter" }, file: { unit: "bytes", verb: "ter" }, array: { unit: "itens", verb: "ter" }, set: { unit: "itens", verb: "ter" } }; function getSizing(origin2) { return Sizable[origin2] ?? null; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "padr\xE3o", email: "endere\xE7o de e-mail", url: "URL", emoji: "emoji", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "data e hora ISO", date: "data ISO", time: "hora ISO", duration: "dura\xE7\xE3o ISO", ipv4: "endere\xE7o IPv4", ipv6: "endere\xE7o IPv6", cidrv4: "faixa de IPv4", cidrv6: "faixa de IPv6", base64: "texto codificado em base64", base64url: "URL codificada em base64", json_string: "texto JSON", e164: "n\xFAmero E.164", jwt: "JWT", template_literal: "entrada" }; const TypeDictionary = { nan: "NaN", number: "n\xFAmero", null: "nulo" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `Tipo inv\xE1lido: esperado instanceof ${issue2.expected}, recebido ${received}`; } return `Tipo inv\xE1lido: esperado ${expected}, recebido ${received}`; } case "invalid_value": if (issue2.values.length === 1) return `Entrada inv\xE1lida: esperado ${stringifyPrimitive(issue2.values[0])}`; return `Op\xE7\xE3o inv\xE1lida: esperada uma das ${joinValues(issue2.values, "|")}`; case "too_big": { const adj = issue2.inclusive ? "<=" : "<"; const sizing = getSizing(issue2.origin); if (sizing) return `Muito grande: esperado que ${issue2.origin ?? "valor"} tivesse ${adj}${issue2.maximum.toString()} ${sizing.unit ?? "elementos"}`; return `Muito grande: esperado que ${issue2.origin ?? "valor"} fosse ${adj}${issue2.maximum.toString()}`; } case "too_small": { const adj = issue2.inclusive ? ">=" : ">"; const sizing = getSizing(issue2.origin); if (sizing) { return `Muito pequeno: esperado que ${issue2.origin} tivesse ${adj}${issue2.minimum.toString()} ${sizing.unit}`; } return `Muito pequeno: esperado que ${issue2.origin} fosse ${adj}${issue2.minimum.toString()}`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") return `Texto inv\xE1lido: deve come\xE7ar com "${_issue.prefix}"`; if (_issue.format === "ends_with") return `Texto inv\xE1lido: deve terminar com "${_issue.suffix}"`; if (_issue.format === "includes") return `Texto inv\xE1lido: deve incluir "${_issue.includes}"`; if (_issue.format === "regex") return `Texto inv\xE1lido: deve corresponder ao padr\xE3o ${_issue.pattern}`; return `${FormatDictionary[_issue.format] ?? issue2.format} inv\xE1lido`; } case "not_multiple_of": return `N\xFAmero inv\xE1lido: deve ser m\xFAltiplo de ${issue2.divisor}`; case "unrecognized_keys": return `Chave${issue2.keys.length > 1 ? "s" : ""} desconhecida${issue2.keys.length > 1 ? "s" : ""}: ${joinValues(issue2.keys, ", ")}`; case "invalid_key": return `Chave inv\xE1lida em ${issue2.origin}`; case "invalid_union": return "Entrada inv\xE1lida"; case "invalid_element": return `Valor inv\xE1lido em ${issue2.origin}`; default: return `Campo inv\xE1lido`; } }; }, "error"); function pt_default() { return { localeError: error36() }; } __name(pt_default, "default"); // ../../node_modules/zod/v4/locales/ru.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); function getRussianPlural(count4, one, few, many) { const absCount = Math.abs(count4); const lastDigit = absCount % 10; const lastTwoDigits = absCount % 100; if (lastTwoDigits >= 11 && lastTwoDigits <= 19) { return many; } if (lastDigit === 1) { return one; } if (lastDigit >= 2 && lastDigit <= 4) { return few; } return many; } __name(getRussianPlural, "getRussianPlural"); var error37 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: { one: "\u0441\u0438\u043C\u0432\u043E\u043B", few: "\u0441\u0438\u043C\u0432\u043E\u043B\u0430", many: "\u0441\u0438\u043C\u0432\u043E\u043B\u043E\u0432" }, verb: "\u0438\u043C\u0435\u0442\u044C" }, file: { unit: { one: "\u0431\u0430\u0439\u0442", few: "\u0431\u0430\u0439\u0442\u0430", many: "\u0431\u0430\u0439\u0442" }, verb: "\u0438\u043C\u0435\u0442\u044C" }, array: { unit: { one: "\u044D\u043B\u0435\u043C\u0435\u043D\u0442", few: "\u044D\u043B\u0435\u043C\u0435\u043D\u0442\u0430", many: "\u044D\u043B\u0435\u043C\u0435\u043D\u0442\u043E\u0432" }, verb: "\u0438\u043C\u0435\u0442\u044C" }, set: { unit: { one: "\u044D\u043B\u0435\u043C\u0435\u043D\u0442", few: "\u044D\u043B\u0435\u043C\u0435\u043D\u0442\u0430", many: "\u044D\u043B\u0435\u043C\u0435\u043D\u0442\u043E\u0432" }, verb: "\u0438\u043C\u0435\u0442\u044C" } }; function getSizing(origin2) { return Sizable[origin2] ?? null; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "\u0432\u0432\u043E\u0434", email: "email \u0430\u0434\u0440\u0435\u0441", url: "URL", emoji: "\u044D\u043C\u043E\u0434\u0437\u0438", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "ISO \u0434\u0430\u0442\u0430 \u0438 \u0432\u0440\u0435\u043C\u044F", date: "ISO \u0434\u0430\u0442\u0430", time: "ISO \u0432\u0440\u0435\u043C\u044F", duration: "ISO \u0434\u043B\u0438\u0442\u0435\u043B\u044C\u043D\u043E\u0441\u0442\u044C", ipv4: "IPv4 \u0430\u0434\u0440\u0435\u0441", ipv6: "IPv6 \u0430\u0434\u0440\u0435\u0441", cidrv4: "IPv4 \u0434\u0438\u0430\u043F\u0430\u0437\u043E\u043D", cidrv6: "IPv6 \u0434\u0438\u0430\u043F\u0430\u0437\u043E\u043D", base64: "\u0441\u0442\u0440\u043E\u043A\u0430 \u0432 \u0444\u043E\u0440\u043C\u0430\u0442\u0435 base64", base64url: "\u0441\u0442\u0440\u043E\u043A\u0430 \u0432 \u0444\u043E\u0440\u043C\u0430\u0442\u0435 base64url", json_string: "JSON \u0441\u0442\u0440\u043E\u043A\u0430", e164: "\u043D\u043E\u043C\u0435\u0440 E.164", jwt: "JWT", template_literal: "\u0432\u0432\u043E\u0434" }; const TypeDictionary = { nan: "NaN", number: "\u0447\u0438\u0441\u043B\u043E", array: "\u043C\u0430\u0441\u0441\u0438\u0432" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `\u041D\u0435\u0432\u0435\u0440\u043D\u044B\u0439 \u0432\u0432\u043E\u0434: \u043E\u0436\u0438\u0434\u0430\u043B\u043E\u0441\u044C instanceof ${issue2.expected}, \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u043E ${received}`; } return `\u041D\u0435\u0432\u0435\u0440\u043D\u044B\u0439 \u0432\u0432\u043E\u0434: \u043E\u0436\u0438\u0434\u0430\u043B\u043E\u0441\u044C ${expected}, \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u043E ${received}`; } case "invalid_value": if (issue2.values.length === 1) return `\u041D\u0435\u0432\u0435\u0440\u043D\u044B\u0439 \u0432\u0432\u043E\u0434: \u043E\u0436\u0438\u0434\u0430\u043B\u043E\u0441\u044C ${stringifyPrimitive(issue2.values[0])}`; return `\u041D\u0435\u0432\u0435\u0440\u043D\u044B\u0439 \u0432\u0430\u0440\u0438\u0430\u043D\u0442: \u043E\u0436\u0438\u0434\u0430\u043B\u043E\u0441\u044C \u043E\u0434\u043D\u043E \u0438\u0437 ${joinValues(issue2.values, "|")}`; case "too_big": { const adj = issue2.inclusive ? "<=" : "<"; const sizing = getSizing(issue2.origin); if (sizing) { const maxValue = Number(issue2.maximum); const unit = getRussianPlural(maxValue, sizing.unit.one, sizing.unit.few, sizing.unit.many); return `\u0421\u043B\u0438\u0448\u043A\u043E\u043C \u0431\u043E\u043B\u044C\u0448\u043E\u0435 \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435: \u043E\u0436\u0438\u0434\u0430\u043B\u043E\u0441\u044C, \u0447\u0442\u043E ${issue2.origin ?? "\u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435"} \u0431\u0443\u0434\u0435\u0442 \u0438\u043C\u0435\u0442\u044C ${adj}${issue2.maximum.toString()} ${unit}`; } return `\u0421\u043B\u0438\u0448\u043A\u043E\u043C \u0431\u043E\u043B\u044C\u0448\u043E\u0435 \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435: \u043E\u0436\u0438\u0434\u0430\u043B\u043E\u0441\u044C, \u0447\u0442\u043E ${issue2.origin ?? "\u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435"} \u0431\u0443\u0434\u0435\u0442 ${adj}${issue2.maximum.toString()}`; } case "too_small": { const adj = issue2.inclusive ? ">=" : ">"; const sizing = getSizing(issue2.origin); if (sizing) { const minValue = Number(issue2.minimum); const unit = getRussianPlural(minValue, sizing.unit.one, sizing.unit.few, sizing.unit.many); return `\u0421\u043B\u0438\u0448\u043A\u043E\u043C \u043C\u0430\u043B\u0435\u043D\u044C\u043A\u043E\u0435 \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435: \u043E\u0436\u0438\u0434\u0430\u043B\u043E\u0441\u044C, \u0447\u0442\u043E ${issue2.origin} \u0431\u0443\u0434\u0435\u0442 \u0438\u043C\u0435\u0442\u044C ${adj}${issue2.minimum.toString()} ${unit}`; } return `\u0421\u043B\u0438\u0448\u043A\u043E\u043C \u043C\u0430\u043B\u0435\u043D\u044C\u043A\u043E\u0435 \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435: \u043E\u0436\u0438\u0434\u0430\u043B\u043E\u0441\u044C, \u0447\u0442\u043E ${issue2.origin} \u0431\u0443\u0434\u0435\u0442 ${adj}${issue2.minimum.toString()}`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") return `\u041D\u0435\u0432\u0435\u0440\u043D\u0430\u044F \u0441\u0442\u0440\u043E\u043A\u0430: \u0434\u043E\u043B\u0436\u043D\u0430 \u043D\u0430\u0447\u0438\u043D\u0430\u0442\u044C\u0441\u044F \u0441 "${_issue.prefix}"`; if (_issue.format === "ends_with") return `\u041D\u0435\u0432\u0435\u0440\u043D\u0430\u044F \u0441\u0442\u0440\u043E\u043A\u0430: \u0434\u043E\u043B\u0436\u043D\u0430 \u0437\u0430\u043A\u0430\u043D\u0447\u0438\u0432\u0430\u0442\u044C\u0441\u044F \u043D\u0430 "${_issue.suffix}"`; if (_issue.format === "includes") return `\u041D\u0435\u0432\u0435\u0440\u043D\u0430\u044F \u0441\u0442\u0440\u043E\u043A\u0430: \u0434\u043E\u043B\u0436\u043D\u0430 \u0441\u043E\u0434\u0435\u0440\u0436\u0430\u0442\u044C "${_issue.includes}"`; if (_issue.format === "regex") return `\u041D\u0435\u0432\u0435\u0440\u043D\u0430\u044F \u0441\u0442\u0440\u043E\u043A\u0430: \u0434\u043E\u043B\u0436\u043D\u0430 \u0441\u043E\u043E\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u043E\u0432\u0430\u0442\u044C \u0448\u0430\u0431\u043B\u043E\u043D\u0443 ${_issue.pattern}`; return `\u041D\u0435\u0432\u0435\u0440\u043D\u044B\u0439 ${FormatDictionary[_issue.format] ?? issue2.format}`; } case "not_multiple_of": return `\u041D\u0435\u0432\u0435\u0440\u043D\u043E\u0435 \u0447\u0438\u0441\u043B\u043E: \u0434\u043E\u043B\u0436\u043D\u043E \u0431\u044B\u0442\u044C \u043A\u0440\u0430\u0442\u043D\u044B\u043C ${issue2.divisor}`; case "unrecognized_keys": return `\u041D\u0435\u0440\u0430\u0441\u043F\u043E\u0437\u043D\u0430\u043D\u043D${issue2.keys.length > 1 ? "\u044B\u0435" : "\u044B\u0439"} \u043A\u043B\u044E\u0447${issue2.keys.length > 1 ? "\u0438" : ""}: ${joinValues(issue2.keys, ", ")}`; case "invalid_key": return `\u041D\u0435\u0432\u0435\u0440\u043D\u044B\u0439 \u043A\u043B\u044E\u0447 \u0432 ${issue2.origin}`; case "invalid_union": return "\u041D\u0435\u0432\u0435\u0440\u043D\u044B\u0435 \u0432\u0445\u043E\u0434\u043D\u044B\u0435 \u0434\u0430\u043D\u043D\u044B\u0435"; case "invalid_element": return `\u041D\u0435\u0432\u0435\u0440\u043D\u043E\u0435 \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435 \u0432 ${issue2.origin}`; default: return `\u041D\u0435\u0432\u0435\u0440\u043D\u044B\u0435 \u0432\u0445\u043E\u0434\u043D\u044B\u0435 \u0434\u0430\u043D\u043D\u044B\u0435`; } }; }, "error"); function ru_default() { return { localeError: error37() }; } __name(ru_default, "default"); // ../../node_modules/zod/v4/locales/sl.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var error38 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: "znakov", verb: "imeti" }, file: { unit: "bajtov", verb: "imeti" }, array: { unit: "elementov", verb: "imeti" }, set: { unit: "elementov", verb: "imeti" } }; function getSizing(origin2) { return Sizable[origin2] ?? null; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "vnos", email: "e-po\u0161tni naslov", url: "URL", emoji: "emoji", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "ISO datum in \u010Das", date: "ISO datum", time: "ISO \u010Das", duration: "ISO trajanje", ipv4: "IPv4 naslov", ipv6: "IPv6 naslov", cidrv4: "obseg IPv4", cidrv6: "obseg IPv6", base64: "base64 kodiran niz", base64url: "base64url kodiran niz", json_string: "JSON niz", e164: "E.164 \u0161tevilka", jwt: "JWT", template_literal: "vnos" }; const TypeDictionary = { nan: "NaN", number: "\u0161tevilo", array: "tabela" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `Neveljaven vnos: pri\u010Dakovano instanceof ${issue2.expected}, prejeto ${received}`; } return `Neveljaven vnos: pri\u010Dakovano ${expected}, prejeto ${received}`; } case "invalid_value": if (issue2.values.length === 1) return `Neveljaven vnos: pri\u010Dakovano ${stringifyPrimitive(issue2.values[0])}`; return `Neveljavna mo\u017Enost: pri\u010Dakovano eno izmed ${joinValues(issue2.values, "|")}`; case "too_big": { const adj = issue2.inclusive ? "<=" : "<"; const sizing = getSizing(issue2.origin); if (sizing) return `Preveliko: pri\u010Dakovano, da bo ${issue2.origin ?? "vrednost"} imelo ${adj}${issue2.maximum.toString()} ${sizing.unit ?? "elementov"}`; return `Preveliko: pri\u010Dakovano, da bo ${issue2.origin ?? "vrednost"} ${adj}${issue2.maximum.toString()}`; } case "too_small": { const adj = issue2.inclusive ? ">=" : ">"; const sizing = getSizing(issue2.origin); if (sizing) { return `Premajhno: pri\u010Dakovano, da bo ${issue2.origin} imelo ${adj}${issue2.minimum.toString()} ${sizing.unit}`; } return `Premajhno: pri\u010Dakovano, da bo ${issue2.origin} ${adj}${issue2.minimum.toString()}`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") { return `Neveljaven niz: mora se za\u010Deti z "${_issue.prefix}"`; } if (_issue.format === "ends_with") return `Neveljaven niz: mora se kon\u010Dati z "${_issue.suffix}"`; if (_issue.format === "includes") return `Neveljaven niz: mora vsebovati "${_issue.includes}"`; if (_issue.format === "regex") return `Neveljaven niz: mora ustrezati vzorcu ${_issue.pattern}`; return `Neveljaven ${FormatDictionary[_issue.format] ?? issue2.format}`; } case "not_multiple_of": return `Neveljavno \u0161tevilo: mora biti ve\u010Dkratnik ${issue2.divisor}`; case "unrecognized_keys": return `Neprepoznan${issue2.keys.length > 1 ? "i klju\u010Di" : " klju\u010D"}: ${joinValues(issue2.keys, ", ")}`; case "invalid_key": return `Neveljaven klju\u010D v ${issue2.origin}`; case "invalid_union": return "Neveljaven vnos"; case "invalid_element": return `Neveljavna vrednost v ${issue2.origin}`; default: return "Neveljaven vnos"; } }; }, "error"); function sl_default() { return { localeError: error38() }; } __name(sl_default, "default"); // ../../node_modules/zod/v4/locales/sv.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var error39 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: "tecken", verb: "att ha" }, file: { unit: "bytes", verb: "att ha" }, array: { unit: "objekt", verb: "att inneh\xE5lla" }, set: { unit: "objekt", verb: "att inneh\xE5lla" } }; function getSizing(origin2) { return Sizable[origin2] ?? null; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "regulj\xE4rt uttryck", email: "e-postadress", url: "URL", emoji: "emoji", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "ISO-datum och tid", date: "ISO-datum", time: "ISO-tid", duration: "ISO-varaktighet", ipv4: "IPv4-intervall", ipv6: "IPv6-intervall", cidrv4: "IPv4-spektrum", cidrv6: "IPv6-spektrum", base64: "base64-kodad str\xE4ng", base64url: "base64url-kodad str\xE4ng", json_string: "JSON-str\xE4ng", e164: "E.164-nummer", jwt: "JWT", template_literal: "mall-literal" }; const TypeDictionary = { nan: "NaN", number: "antal", array: "lista" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `Ogiltig inmatning: f\xF6rv\xE4ntat instanceof ${issue2.expected}, fick ${received}`; } return `Ogiltig inmatning: f\xF6rv\xE4ntat ${expected}, fick ${received}`; } case "invalid_value": if (issue2.values.length === 1) return `Ogiltig inmatning: f\xF6rv\xE4ntat ${stringifyPrimitive(issue2.values[0])}`; return `Ogiltigt val: f\xF6rv\xE4ntade en av ${joinValues(issue2.values, "|")}`; case "too_big": { const adj = issue2.inclusive ? "<=" : "<"; const sizing = getSizing(issue2.origin); if (sizing) { return `F\xF6r stor(t): f\xF6rv\xE4ntade ${issue2.origin ?? "v\xE4rdet"} att ha ${adj}${issue2.maximum.toString()} ${sizing.unit ?? "element"}`; } return `F\xF6r stor(t): f\xF6rv\xE4ntat ${issue2.origin ?? "v\xE4rdet"} att ha ${adj}${issue2.maximum.toString()}`; } case "too_small": { const adj = issue2.inclusive ? ">=" : ">"; const sizing = getSizing(issue2.origin); if (sizing) { return `F\xF6r lite(t): f\xF6rv\xE4ntade ${issue2.origin ?? "v\xE4rdet"} att ha ${adj}${issue2.minimum.toString()} ${sizing.unit}`; } return `F\xF6r lite(t): f\xF6rv\xE4ntade ${issue2.origin ?? "v\xE4rdet"} att ha ${adj}${issue2.minimum.toString()}`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") { return `Ogiltig str\xE4ng: m\xE5ste b\xF6rja med "${_issue.prefix}"`; } if (_issue.format === "ends_with") return `Ogiltig str\xE4ng: m\xE5ste sluta med "${_issue.suffix}"`; if (_issue.format === "includes") return `Ogiltig str\xE4ng: m\xE5ste inneh\xE5lla "${_issue.includes}"`; if (_issue.format === "regex") return `Ogiltig str\xE4ng: m\xE5ste matcha m\xF6nstret "${_issue.pattern}"`; return `Ogiltig(t) ${FormatDictionary[_issue.format] ?? issue2.format}`; } case "not_multiple_of": return `Ogiltigt tal: m\xE5ste vara en multipel av ${issue2.divisor}`; case "unrecognized_keys": return `${issue2.keys.length > 1 ? "Ok\xE4nda nycklar" : "Ok\xE4nd nyckel"}: ${joinValues(issue2.keys, ", ")}`; case "invalid_key": return `Ogiltig nyckel i ${issue2.origin ?? "v\xE4rdet"}`; case "invalid_union": return "Ogiltig input"; case "invalid_element": return `Ogiltigt v\xE4rde i ${issue2.origin ?? "v\xE4rdet"}`; default: return `Ogiltig input`; } }; }, "error"); function sv_default() { return { localeError: error39() }; } __name(sv_default, "default"); // ../../node_modules/zod/v4/locales/ta.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var error40 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: "\u0B8E\u0BB4\u0BC1\u0BA4\u0BCD\u0BA4\u0BC1\u0B95\u0BCD\u0B95\u0BB3\u0BCD", verb: "\u0B95\u0BCA\u0BA3\u0BCD\u0B9F\u0BBF\u0BB0\u0BC1\u0B95\u0BCD\u0B95 \u0BB5\u0BC7\u0BA3\u0BCD\u0B9F\u0BC1\u0BAE\u0BCD" }, file: { unit: "\u0BAA\u0BC8\u0B9F\u0BCD\u0B9F\u0BC1\u0B95\u0BB3\u0BCD", verb: "\u0B95\u0BCA\u0BA3\u0BCD\u0B9F\u0BBF\u0BB0\u0BC1\u0B95\u0BCD\u0B95 \u0BB5\u0BC7\u0BA3\u0BCD\u0B9F\u0BC1\u0BAE\u0BCD" }, array: { unit: "\u0B89\u0BB1\u0BC1\u0BAA\u0BCD\u0BAA\u0BC1\u0B95\u0BB3\u0BCD", verb: "\u0B95\u0BCA\u0BA3\u0BCD\u0B9F\u0BBF\u0BB0\u0BC1\u0B95\u0BCD\u0B95 \u0BB5\u0BC7\u0BA3\u0BCD\u0B9F\u0BC1\u0BAE\u0BCD" }, set: { unit: "\u0B89\u0BB1\u0BC1\u0BAA\u0BCD\u0BAA\u0BC1\u0B95\u0BB3\u0BCD", verb: "\u0B95\u0BCA\u0BA3\u0BCD\u0B9F\u0BBF\u0BB0\u0BC1\u0B95\u0BCD\u0B95 \u0BB5\u0BC7\u0BA3\u0BCD\u0B9F\u0BC1\u0BAE\u0BCD" } }; function getSizing(origin2) { return Sizable[origin2] ?? null; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "\u0B89\u0BB3\u0BCD\u0BB3\u0BC0\u0B9F\u0BC1", email: "\u0BAE\u0BBF\u0BA9\u0BCD\u0BA9\u0B9E\u0BCD\u0B9A\u0BB2\u0BCD \u0BAE\u0BC1\u0B95\u0BB5\u0BB0\u0BBF", url: "URL", emoji: "emoji", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "ISO \u0BA4\u0BC7\u0BA4\u0BBF \u0BA8\u0BC7\u0BB0\u0BAE\u0BCD", date: "ISO \u0BA4\u0BC7\u0BA4\u0BBF", time: "ISO \u0BA8\u0BC7\u0BB0\u0BAE\u0BCD", duration: "ISO \u0B95\u0BBE\u0BB2 \u0B85\u0BB3\u0BB5\u0BC1", ipv4: "IPv4 \u0BAE\u0BC1\u0B95\u0BB5\u0BB0\u0BBF", ipv6: "IPv6 \u0BAE\u0BC1\u0B95\u0BB5\u0BB0\u0BBF", cidrv4: "IPv4 \u0BB5\u0BB0\u0BAE\u0BCD\u0BAA\u0BC1", cidrv6: "IPv6 \u0BB5\u0BB0\u0BAE\u0BCD\u0BAA\u0BC1", base64: "base64-encoded \u0B9A\u0BB0\u0BAE\u0BCD", base64url: "base64url-encoded \u0B9A\u0BB0\u0BAE\u0BCD", json_string: "JSON \u0B9A\u0BB0\u0BAE\u0BCD", e164: "E.164 \u0B8E\u0BA3\u0BCD", jwt: "JWT", template_literal: "input" }; const TypeDictionary = { nan: "NaN", number: "\u0B8E\u0BA3\u0BCD", array: "\u0B85\u0BA3\u0BBF", null: "\u0BB5\u0BC6\u0BB1\u0BC1\u0BAE\u0BC8" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `\u0BA4\u0BB5\u0BB1\u0BBE\u0BA9 \u0B89\u0BB3\u0BCD\u0BB3\u0BC0\u0B9F\u0BC1: \u0B8E\u0BA4\u0BBF\u0BB0\u0BCD\u0BAA\u0BBE\u0BB0\u0BCD\u0B95\u0BCD\u0B95\u0BAA\u0BCD\u0BAA\u0B9F\u0BCD\u0B9F\u0BA4\u0BC1 instanceof ${issue2.expected}, \u0BAA\u0BC6\u0BB1\u0BAA\u0BCD\u0BAA\u0B9F\u0BCD\u0B9F\u0BA4\u0BC1 ${received}`; } return `\u0BA4\u0BB5\u0BB1\u0BBE\u0BA9 \u0B89\u0BB3\u0BCD\u0BB3\u0BC0\u0B9F\u0BC1: \u0B8E\u0BA4\u0BBF\u0BB0\u0BCD\u0BAA\u0BBE\u0BB0\u0BCD\u0B95\u0BCD\u0B95\u0BAA\u0BCD\u0BAA\u0B9F\u0BCD\u0B9F\u0BA4\u0BC1 ${expected}, \u0BAA\u0BC6\u0BB1\u0BAA\u0BCD\u0BAA\u0B9F\u0BCD\u0B9F\u0BA4\u0BC1 ${received}`; } case "invalid_value": if (issue2.values.length === 1) return `\u0BA4\u0BB5\u0BB1\u0BBE\u0BA9 \u0B89\u0BB3\u0BCD\u0BB3\u0BC0\u0B9F\u0BC1: \u0B8E\u0BA4\u0BBF\u0BB0\u0BCD\u0BAA\u0BBE\u0BB0\u0BCD\u0B95\u0BCD\u0B95\u0BAA\u0BCD\u0BAA\u0B9F\u0BCD\u0B9F\u0BA4\u0BC1 ${stringifyPrimitive(issue2.values[0])}`; return `\u0BA4\u0BB5\u0BB1\u0BBE\u0BA9 \u0BB5\u0BBF\u0BB0\u0BC1\u0BAA\u0BCD\u0BAA\u0BAE\u0BCD: \u0B8E\u0BA4\u0BBF\u0BB0\u0BCD\u0BAA\u0BBE\u0BB0\u0BCD\u0B95\u0BCD\u0B95\u0BAA\u0BCD\u0BAA\u0B9F\u0BCD\u0B9F\u0BA4\u0BC1 ${joinValues(issue2.values, "|")} \u0B87\u0BB2\u0BCD \u0B92\u0BA9\u0BCD\u0BB1\u0BC1`; case "too_big": { const adj = issue2.inclusive ? "<=" : "<"; const sizing = getSizing(issue2.origin); if (sizing) { return `\u0BAE\u0BBF\u0B95 \u0BAA\u0BC6\u0BB0\u0BBF\u0BAF\u0BA4\u0BC1: \u0B8E\u0BA4\u0BBF\u0BB0\u0BCD\u0BAA\u0BBE\u0BB0\u0BCD\u0B95\u0BCD\u0B95\u0BAA\u0BCD\u0BAA\u0B9F\u0BCD\u0B9F\u0BA4\u0BC1 ${issue2.origin ?? "\u0BAE\u0BA4\u0BBF\u0BAA\u0BCD\u0BAA\u0BC1"} ${adj}${issue2.maximum.toString()} ${sizing.unit ?? "\u0B89\u0BB1\u0BC1\u0BAA\u0BCD\u0BAA\u0BC1\u0B95\u0BB3\u0BCD"} \u0B86\u0B95 \u0B87\u0BB0\u0BC1\u0B95\u0BCD\u0B95 \u0BB5\u0BC7\u0BA3\u0BCD\u0B9F\u0BC1\u0BAE\u0BCD`; } return `\u0BAE\u0BBF\u0B95 \u0BAA\u0BC6\u0BB0\u0BBF\u0BAF\u0BA4\u0BC1: \u0B8E\u0BA4\u0BBF\u0BB0\u0BCD\u0BAA\u0BBE\u0BB0\u0BCD\u0B95\u0BCD\u0B95\u0BAA\u0BCD\u0BAA\u0B9F\u0BCD\u0B9F\u0BA4\u0BC1 ${issue2.origin ?? "\u0BAE\u0BA4\u0BBF\u0BAA\u0BCD\u0BAA\u0BC1"} ${adj}${issue2.maximum.toString()} \u0B86\u0B95 \u0B87\u0BB0\u0BC1\u0B95\u0BCD\u0B95 \u0BB5\u0BC7\u0BA3\u0BCD\u0B9F\u0BC1\u0BAE\u0BCD`; } case "too_small": { const adj = issue2.inclusive ? ">=" : ">"; const sizing = getSizing(issue2.origin); if (sizing) { return `\u0BAE\u0BBF\u0B95\u0B9A\u0BCD \u0B9A\u0BBF\u0BB1\u0BBF\u0BAF\u0BA4\u0BC1: \u0B8E\u0BA4\u0BBF\u0BB0\u0BCD\u0BAA\u0BBE\u0BB0\u0BCD\u0B95\u0BCD\u0B95\u0BAA\u0BCD\u0BAA\u0B9F\u0BCD\u0B9F\u0BA4\u0BC1 ${issue2.origin} ${adj}${issue2.minimum.toString()} ${sizing.unit} \u0B86\u0B95 \u0B87\u0BB0\u0BC1\u0B95\u0BCD\u0B95 \u0BB5\u0BC7\u0BA3\u0BCD\u0B9F\u0BC1\u0BAE\u0BCD`; } return `\u0BAE\u0BBF\u0B95\u0B9A\u0BCD \u0B9A\u0BBF\u0BB1\u0BBF\u0BAF\u0BA4\u0BC1: \u0B8E\u0BA4\u0BBF\u0BB0\u0BCD\u0BAA\u0BBE\u0BB0\u0BCD\u0B95\u0BCD\u0B95\u0BAA\u0BCD\u0BAA\u0B9F\u0BCD\u0B9F\u0BA4\u0BC1 ${issue2.origin} ${adj}${issue2.minimum.toString()} \u0B86\u0B95 \u0B87\u0BB0\u0BC1\u0B95\u0BCD\u0B95 \u0BB5\u0BC7\u0BA3\u0BCD\u0B9F\u0BC1\u0BAE\u0BCD`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") return `\u0BA4\u0BB5\u0BB1\u0BBE\u0BA9 \u0B9A\u0BB0\u0BAE\u0BCD: "${_issue.prefix}" \u0B87\u0BB2\u0BCD \u0BA4\u0BCA\u0B9F\u0B99\u0BCD\u0B95 \u0BB5\u0BC7\u0BA3\u0BCD\u0B9F\u0BC1\u0BAE\u0BCD`; if (_issue.format === "ends_with") return `\u0BA4\u0BB5\u0BB1\u0BBE\u0BA9 \u0B9A\u0BB0\u0BAE\u0BCD: "${_issue.suffix}" \u0B87\u0BB2\u0BCD \u0BAE\u0BC1\u0B9F\u0BBF\u0BB5\u0B9F\u0BC8\u0BAF \u0BB5\u0BC7\u0BA3\u0BCD\u0B9F\u0BC1\u0BAE\u0BCD`; if (_issue.format === "includes") return `\u0BA4\u0BB5\u0BB1\u0BBE\u0BA9 \u0B9A\u0BB0\u0BAE\u0BCD: "${_issue.includes}" \u0B90 \u0B89\u0BB3\u0BCD\u0BB3\u0B9F\u0B95\u0BCD\u0B95 \u0BB5\u0BC7\u0BA3\u0BCD\u0B9F\u0BC1\u0BAE\u0BCD`; if (_issue.format === "regex") return `\u0BA4\u0BB5\u0BB1\u0BBE\u0BA9 \u0B9A\u0BB0\u0BAE\u0BCD: ${_issue.pattern} \u0BAE\u0BC1\u0BB1\u0BC8\u0BAA\u0BBE\u0B9F\u0BCD\u0B9F\u0BC1\u0B9F\u0BA9\u0BCD \u0BAA\u0BCA\u0BB0\u0BC1\u0BA8\u0BCD\u0BA4 \u0BB5\u0BC7\u0BA3\u0BCD\u0B9F\u0BC1\u0BAE\u0BCD`; return `\u0BA4\u0BB5\u0BB1\u0BBE\u0BA9 ${FormatDictionary[_issue.format] ?? issue2.format}`; } case "not_multiple_of": return `\u0BA4\u0BB5\u0BB1\u0BBE\u0BA9 \u0B8E\u0BA3\u0BCD: ${issue2.divisor} \u0B87\u0BA9\u0BCD \u0BAA\u0BB2\u0BAE\u0BBE\u0B95 \u0B87\u0BB0\u0BC1\u0B95\u0BCD\u0B95 \u0BB5\u0BC7\u0BA3\u0BCD\u0B9F\u0BC1\u0BAE\u0BCD`; case "unrecognized_keys": return `\u0B85\u0B9F\u0BC8\u0BAF\u0BBE\u0BB3\u0BAE\u0BCD \u0BA4\u0BC6\u0BB0\u0BBF\u0BAF\u0BBE\u0BA4 \u0BB5\u0BBF\u0B9A\u0BC8${issue2.keys.length > 1 ? "\u0B95\u0BB3\u0BCD" : ""}: ${joinValues(issue2.keys, ", ")}`; case "invalid_key": return `${issue2.origin} \u0B87\u0BB2\u0BCD \u0BA4\u0BB5\u0BB1\u0BBE\u0BA9 \u0BB5\u0BBF\u0B9A\u0BC8`; case "invalid_union": return "\u0BA4\u0BB5\u0BB1\u0BBE\u0BA9 \u0B89\u0BB3\u0BCD\u0BB3\u0BC0\u0B9F\u0BC1"; case "invalid_element": return `${issue2.origin} \u0B87\u0BB2\u0BCD \u0BA4\u0BB5\u0BB1\u0BBE\u0BA9 \u0BAE\u0BA4\u0BBF\u0BAA\u0BCD\u0BAA\u0BC1`; default: return `\u0BA4\u0BB5\u0BB1\u0BBE\u0BA9 \u0B89\u0BB3\u0BCD\u0BB3\u0BC0\u0B9F\u0BC1`; } }; }, "error"); function ta_default() { return { localeError: error40() }; } __name(ta_default, "default"); // ../../node_modules/zod/v4/locales/th.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var error41 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: "\u0E15\u0E31\u0E27\u0E2D\u0E31\u0E01\u0E29\u0E23", verb: "\u0E04\u0E27\u0E23\u0E21\u0E35" }, file: { unit: "\u0E44\u0E1A\u0E15\u0E4C", verb: "\u0E04\u0E27\u0E23\u0E21\u0E35" }, array: { unit: "\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23", verb: "\u0E04\u0E27\u0E23\u0E21\u0E35" }, set: { unit: "\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23", verb: "\u0E04\u0E27\u0E23\u0E21\u0E35" } }; function getSizing(origin2) { return Sizable[origin2] ?? null; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E17\u0E35\u0E48\u0E1B\u0E49\u0E2D\u0E19", email: "\u0E17\u0E35\u0E48\u0E2D\u0E22\u0E39\u0E48\u0E2D\u0E35\u0E40\u0E21\u0E25", url: "URL", emoji: "\u0E2D\u0E34\u0E42\u0E21\u0E08\u0E34", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "\u0E27\u0E31\u0E19\u0E17\u0E35\u0E48\u0E40\u0E27\u0E25\u0E32\u0E41\u0E1A\u0E1A ISO", date: "\u0E27\u0E31\u0E19\u0E17\u0E35\u0E48\u0E41\u0E1A\u0E1A ISO", time: "\u0E40\u0E27\u0E25\u0E32\u0E41\u0E1A\u0E1A ISO", duration: "\u0E0A\u0E48\u0E27\u0E07\u0E40\u0E27\u0E25\u0E32\u0E41\u0E1A\u0E1A ISO", ipv4: "\u0E17\u0E35\u0E48\u0E2D\u0E22\u0E39\u0E48 IPv4", ipv6: "\u0E17\u0E35\u0E48\u0E2D\u0E22\u0E39\u0E48 IPv6", cidrv4: "\u0E0A\u0E48\u0E27\u0E07 IP \u0E41\u0E1A\u0E1A IPv4", cidrv6: "\u0E0A\u0E48\u0E27\u0E07 IP \u0E41\u0E1A\u0E1A IPv6", base64: "\u0E02\u0E49\u0E2D\u0E04\u0E27\u0E32\u0E21\u0E41\u0E1A\u0E1A Base64", base64url: "\u0E02\u0E49\u0E2D\u0E04\u0E27\u0E32\u0E21\u0E41\u0E1A\u0E1A Base64 \u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A URL", json_string: "\u0E02\u0E49\u0E2D\u0E04\u0E27\u0E32\u0E21\u0E41\u0E1A\u0E1A JSON", e164: "\u0E40\u0E1A\u0E2D\u0E23\u0E4C\u0E42\u0E17\u0E23\u0E28\u0E31\u0E1E\u0E17\u0E4C\u0E23\u0E30\u0E2B\u0E27\u0E48\u0E32\u0E07\u0E1B\u0E23\u0E30\u0E40\u0E17\u0E28 (E.164)", jwt: "\u0E42\u0E17\u0E40\u0E04\u0E19 JWT", template_literal: "\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E17\u0E35\u0E48\u0E1B\u0E49\u0E2D\u0E19" }; const TypeDictionary = { nan: "NaN", number: "\u0E15\u0E31\u0E27\u0E40\u0E25\u0E02", array: "\u0E2D\u0E32\u0E23\u0E4C\u0E40\u0E23\u0E22\u0E4C (Array)", null: "\u0E44\u0E21\u0E48\u0E21\u0E35\u0E04\u0E48\u0E32 (null)" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `\u0E1B\u0E23\u0E30\u0E40\u0E20\u0E17\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07: \u0E04\u0E27\u0E23\u0E40\u0E1B\u0E47\u0E19 instanceof ${issue2.expected} \u0E41\u0E15\u0E48\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A ${received}`; } return `\u0E1B\u0E23\u0E30\u0E40\u0E20\u0E17\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07: \u0E04\u0E27\u0E23\u0E40\u0E1B\u0E47\u0E19 ${expected} \u0E41\u0E15\u0E48\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A ${received}`; } case "invalid_value": if (issue2.values.length === 1) return `\u0E04\u0E48\u0E32\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07: \u0E04\u0E27\u0E23\u0E40\u0E1B\u0E47\u0E19 ${stringifyPrimitive(issue2.values[0])}`; return `\u0E15\u0E31\u0E27\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07: \u0E04\u0E27\u0E23\u0E40\u0E1B\u0E47\u0E19\u0E2B\u0E19\u0E36\u0E48\u0E07\u0E43\u0E19 ${joinValues(issue2.values, "|")}`; case "too_big": { const adj = issue2.inclusive ? "\u0E44\u0E21\u0E48\u0E40\u0E01\u0E34\u0E19" : "\u0E19\u0E49\u0E2D\u0E22\u0E01\u0E27\u0E48\u0E32"; const sizing = getSizing(issue2.origin); if (sizing) return `\u0E40\u0E01\u0E34\u0E19\u0E01\u0E33\u0E2B\u0E19\u0E14: ${issue2.origin ?? "\u0E04\u0E48\u0E32"} \u0E04\u0E27\u0E23\u0E21\u0E35${adj} ${issue2.maximum.toString()} ${sizing.unit ?? "\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23"}`; return `\u0E40\u0E01\u0E34\u0E19\u0E01\u0E33\u0E2B\u0E19\u0E14: ${issue2.origin ?? "\u0E04\u0E48\u0E32"} \u0E04\u0E27\u0E23\u0E21\u0E35${adj} ${issue2.maximum.toString()}`; } case "too_small": { const adj = issue2.inclusive ? "\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E19\u0E49\u0E2D\u0E22" : "\u0E21\u0E32\u0E01\u0E01\u0E27\u0E48\u0E32"; const sizing = getSizing(issue2.origin); if (sizing) { return `\u0E19\u0E49\u0E2D\u0E22\u0E01\u0E27\u0E48\u0E32\u0E01\u0E33\u0E2B\u0E19\u0E14: ${issue2.origin} \u0E04\u0E27\u0E23\u0E21\u0E35${adj} ${issue2.minimum.toString()} ${sizing.unit}`; } return `\u0E19\u0E49\u0E2D\u0E22\u0E01\u0E27\u0E48\u0E32\u0E01\u0E33\u0E2B\u0E19\u0E14: ${issue2.origin} \u0E04\u0E27\u0E23\u0E21\u0E35${adj} ${issue2.minimum.toString()}`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") { return `\u0E23\u0E39\u0E1B\u0E41\u0E1A\u0E1A\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07: \u0E02\u0E49\u0E2D\u0E04\u0E27\u0E32\u0E21\u0E15\u0E49\u0E2D\u0E07\u0E02\u0E36\u0E49\u0E19\u0E15\u0E49\u0E19\u0E14\u0E49\u0E27\u0E22 "${_issue.prefix}"`; } if (_issue.format === "ends_with") return `\u0E23\u0E39\u0E1B\u0E41\u0E1A\u0E1A\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07: \u0E02\u0E49\u0E2D\u0E04\u0E27\u0E32\u0E21\u0E15\u0E49\u0E2D\u0E07\u0E25\u0E07\u0E17\u0E49\u0E32\u0E22\u0E14\u0E49\u0E27\u0E22 "${_issue.suffix}"`; if (_issue.format === "includes") return `\u0E23\u0E39\u0E1B\u0E41\u0E1A\u0E1A\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07: \u0E02\u0E49\u0E2D\u0E04\u0E27\u0E32\u0E21\u0E15\u0E49\u0E2D\u0E07\u0E21\u0E35 "${_issue.includes}" \u0E2D\u0E22\u0E39\u0E48\u0E43\u0E19\u0E02\u0E49\u0E2D\u0E04\u0E27\u0E32\u0E21`; if (_issue.format === "regex") return `\u0E23\u0E39\u0E1B\u0E41\u0E1A\u0E1A\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07: \u0E15\u0E49\u0E2D\u0E07\u0E15\u0E23\u0E07\u0E01\u0E31\u0E1A\u0E23\u0E39\u0E1B\u0E41\u0E1A\u0E1A\u0E17\u0E35\u0E48\u0E01\u0E33\u0E2B\u0E19\u0E14 ${_issue.pattern}`; return `\u0E23\u0E39\u0E1B\u0E41\u0E1A\u0E1A\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07: ${FormatDictionary[_issue.format] ?? issue2.format}`; } case "not_multiple_of": return `\u0E15\u0E31\u0E27\u0E40\u0E25\u0E02\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07: \u0E15\u0E49\u0E2D\u0E07\u0E40\u0E1B\u0E47\u0E19\u0E08\u0E33\u0E19\u0E27\u0E19\u0E17\u0E35\u0E48\u0E2B\u0E32\u0E23\u0E14\u0E49\u0E27\u0E22 ${issue2.divisor} \u0E44\u0E14\u0E49\u0E25\u0E07\u0E15\u0E31\u0E27`; case "unrecognized_keys": return `\u0E1E\u0E1A\u0E04\u0E35\u0E22\u0E4C\u0E17\u0E35\u0E48\u0E44\u0E21\u0E48\u0E23\u0E39\u0E49\u0E08\u0E31\u0E01: ${joinValues(issue2.keys, ", ")}`; case "invalid_key": return `\u0E04\u0E35\u0E22\u0E4C\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07\u0E43\u0E19 ${issue2.origin}`; case "invalid_union": return "\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07: \u0E44\u0E21\u0E48\u0E15\u0E23\u0E07\u0E01\u0E31\u0E1A\u0E23\u0E39\u0E1B\u0E41\u0E1A\u0E1A\u0E22\u0E39\u0E40\u0E19\u0E35\u0E22\u0E19\u0E17\u0E35\u0E48\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E44\u0E27\u0E49"; case "invalid_element": return `\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07\u0E43\u0E19 ${issue2.origin}`; default: return `\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07`; } }; }, "error"); function th_default() { return { localeError: error41() }; } __name(th_default, "default"); // ../../node_modules/zod/v4/locales/tr.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var error42 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: "karakter", verb: "olmal\u0131" }, file: { unit: "bayt", verb: "olmal\u0131" }, array: { unit: "\xF6\u011Fe", verb: "olmal\u0131" }, set: { unit: "\xF6\u011Fe", verb: "olmal\u0131" } }; function getSizing(origin2) { return Sizable[origin2] ?? null; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "girdi", email: "e-posta adresi", url: "URL", emoji: "emoji", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "ISO tarih ve saat", date: "ISO tarih", time: "ISO saat", duration: "ISO s\xFCre", ipv4: "IPv4 adresi", ipv6: "IPv6 adresi", cidrv4: "IPv4 aral\u0131\u011F\u0131", cidrv6: "IPv6 aral\u0131\u011F\u0131", base64: "base64 ile \u015Fifrelenmi\u015F metin", base64url: "base64url ile \u015Fifrelenmi\u015F metin", json_string: "JSON dizesi", e164: "E.164 say\u0131s\u0131", jwt: "JWT", template_literal: "\u015Eablon dizesi" }; const TypeDictionary = { nan: "NaN" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `Ge\xE7ersiz de\u011Fer: beklenen instanceof ${issue2.expected}, al\u0131nan ${received}`; } return `Ge\xE7ersiz de\u011Fer: beklenen ${expected}, al\u0131nan ${received}`; } case "invalid_value": if (issue2.values.length === 1) return `Ge\xE7ersiz de\u011Fer: beklenen ${stringifyPrimitive(issue2.values[0])}`; return `Ge\xE7ersiz se\xE7enek: a\u015Fa\u011F\u0131dakilerden biri olmal\u0131: ${joinValues(issue2.values, "|")}`; case "too_big": { const adj = issue2.inclusive ? "<=" : "<"; const sizing = getSizing(issue2.origin); if (sizing) return `\xC7ok b\xFCy\xFCk: beklenen ${issue2.origin ?? "de\u011Fer"} ${adj}${issue2.maximum.toString()} ${sizing.unit ?? "\xF6\u011Fe"}`; return `\xC7ok b\xFCy\xFCk: beklenen ${issue2.origin ?? "de\u011Fer"} ${adj}${issue2.maximum.toString()}`; } case "too_small": { const adj = issue2.inclusive ? ">=" : ">"; const sizing = getSizing(issue2.origin); if (sizing) return `\xC7ok k\xFC\xE7\xFCk: beklenen ${issue2.origin} ${adj}${issue2.minimum.toString()} ${sizing.unit}`; return `\xC7ok k\xFC\xE7\xFCk: beklenen ${issue2.origin} ${adj}${issue2.minimum.toString()}`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") return `Ge\xE7ersiz metin: "${_issue.prefix}" ile ba\u015Flamal\u0131`; if (_issue.format === "ends_with") return `Ge\xE7ersiz metin: "${_issue.suffix}" ile bitmeli`; if (_issue.format === "includes") return `Ge\xE7ersiz metin: "${_issue.includes}" i\xE7ermeli`; if (_issue.format === "regex") return `Ge\xE7ersiz metin: ${_issue.pattern} desenine uymal\u0131`; return `Ge\xE7ersiz ${FormatDictionary[_issue.format] ?? issue2.format}`; } case "not_multiple_of": return `Ge\xE7ersiz say\u0131: ${issue2.divisor} ile tam b\xF6l\xFCnebilmeli`; case "unrecognized_keys": return `Tan\u0131nmayan anahtar${issue2.keys.length > 1 ? "lar" : ""}: ${joinValues(issue2.keys, ", ")}`; case "invalid_key": return `${issue2.origin} i\xE7inde ge\xE7ersiz anahtar`; case "invalid_union": return "Ge\xE7ersiz de\u011Fer"; case "invalid_element": return `${issue2.origin} i\xE7inde ge\xE7ersiz de\u011Fer`; default: return `Ge\xE7ersiz de\u011Fer`; } }; }, "error"); function tr_default() { return { localeError: error42() }; } __name(tr_default, "default"); // ../../node_modules/zod/v4/locales/ua.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/zod/v4/locales/uk.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var error43 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: "\u0441\u0438\u043C\u0432\u043E\u043B\u0456\u0432", verb: "\u043C\u0430\u0442\u0438\u043C\u0435" }, file: { unit: "\u0431\u0430\u0439\u0442\u0456\u0432", verb: "\u043C\u0430\u0442\u0438\u043C\u0435" }, array: { unit: "\u0435\u043B\u0435\u043C\u0435\u043D\u0442\u0456\u0432", verb: "\u043C\u0430\u0442\u0438\u043C\u0435" }, set: { unit: "\u0435\u043B\u0435\u043C\u0435\u043D\u0442\u0456\u0432", verb: "\u043C\u0430\u0442\u0438\u043C\u0435" } }; function getSizing(origin2) { return Sizable[origin2] ?? null; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "\u0432\u0445\u0456\u0434\u043D\u0456 \u0434\u0430\u043D\u0456", email: "\u0430\u0434\u0440\u0435\u0441\u0430 \u0435\u043B\u0435\u043A\u0442\u0440\u043E\u043D\u043D\u043E\u0457 \u043F\u043E\u0448\u0442\u0438", url: "URL", emoji: "\u0435\u043C\u043E\u0434\u0437\u0456", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "\u0434\u0430\u0442\u0430 \u0442\u0430 \u0447\u0430\u0441 ISO", date: "\u0434\u0430\u0442\u0430 ISO", time: "\u0447\u0430\u0441 ISO", duration: "\u0442\u0440\u0438\u0432\u0430\u043B\u0456\u0441\u0442\u044C ISO", ipv4: "\u0430\u0434\u0440\u0435\u0441\u0430 IPv4", ipv6: "\u0430\u0434\u0440\u0435\u0441\u0430 IPv6", cidrv4: "\u0434\u0456\u0430\u043F\u0430\u0437\u043E\u043D IPv4", cidrv6: "\u0434\u0456\u0430\u043F\u0430\u0437\u043E\u043D IPv6", base64: "\u0440\u044F\u0434\u043E\u043A \u0443 \u043A\u043E\u0434\u0443\u0432\u0430\u043D\u043D\u0456 base64", base64url: "\u0440\u044F\u0434\u043E\u043A \u0443 \u043A\u043E\u0434\u0443\u0432\u0430\u043D\u043D\u0456 base64url", json_string: "\u0440\u044F\u0434\u043E\u043A JSON", e164: "\u043D\u043E\u043C\u0435\u0440 E.164", jwt: "JWT", template_literal: "\u0432\u0445\u0456\u0434\u043D\u0456 \u0434\u0430\u043D\u0456" }; const TypeDictionary = { nan: "NaN", number: "\u0447\u0438\u0441\u043B\u043E", array: "\u043C\u0430\u0441\u0438\u0432" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `\u041D\u0435\u043F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u0456 \u0432\u0445\u0456\u0434\u043D\u0456 \u0434\u0430\u043D\u0456: \u043E\u0447\u0456\u043A\u0443\u0454\u0442\u044C\u0441\u044F instanceof ${issue2.expected}, \u043E\u0442\u0440\u0438\u043C\u0430\u043D\u043E ${received}`; } return `\u041D\u0435\u043F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u0456 \u0432\u0445\u0456\u0434\u043D\u0456 \u0434\u0430\u043D\u0456: \u043E\u0447\u0456\u043A\u0443\u0454\u0442\u044C\u0441\u044F ${expected}, \u043E\u0442\u0440\u0438\u043C\u0430\u043D\u043E ${received}`; } case "invalid_value": if (issue2.values.length === 1) return `\u041D\u0435\u043F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u0456 \u0432\u0445\u0456\u0434\u043D\u0456 \u0434\u0430\u043D\u0456: \u043E\u0447\u0456\u043A\u0443\u0454\u0442\u044C\u0441\u044F ${stringifyPrimitive(issue2.values[0])}`; return `\u041D\u0435\u043F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u0430 \u043E\u043F\u0446\u0456\u044F: \u043E\u0447\u0456\u043A\u0443\u0454\u0442\u044C\u0441\u044F \u043E\u0434\u043D\u0435 \u0437 ${joinValues(issue2.values, "|")}`; case "too_big": { const adj = issue2.inclusive ? "<=" : "<"; const sizing = getSizing(issue2.origin); if (sizing) return `\u0417\u0430\u043D\u0430\u0434\u0442\u043E \u0432\u0435\u043B\u0438\u043A\u0435: \u043E\u0447\u0456\u043A\u0443\u0454\u0442\u044C\u0441\u044F, \u0449\u043E ${issue2.origin ?? "\u0437\u043D\u0430\u0447\u0435\u043D\u043D\u044F"} ${sizing.verb} ${adj}${issue2.maximum.toString()} ${sizing.unit ?? "\u0435\u043B\u0435\u043C\u0435\u043D\u0442\u0456\u0432"}`; return `\u0417\u0430\u043D\u0430\u0434\u0442\u043E \u0432\u0435\u043B\u0438\u043A\u0435: \u043E\u0447\u0456\u043A\u0443\u0454\u0442\u044C\u0441\u044F, \u0449\u043E ${issue2.origin ?? "\u0437\u043D\u0430\u0447\u0435\u043D\u043D\u044F"} \u0431\u0443\u0434\u0435 ${adj}${issue2.maximum.toString()}`; } case "too_small": { const adj = issue2.inclusive ? ">=" : ">"; const sizing = getSizing(issue2.origin); if (sizing) { return `\u0417\u0430\u043D\u0430\u0434\u0442\u043E \u043C\u0430\u043B\u0435: \u043E\u0447\u0456\u043A\u0443\u0454\u0442\u044C\u0441\u044F, \u0449\u043E ${issue2.origin} ${sizing.verb} ${adj}${issue2.minimum.toString()} ${sizing.unit}`; } return `\u0417\u0430\u043D\u0430\u0434\u0442\u043E \u043C\u0430\u043B\u0435: \u043E\u0447\u0456\u043A\u0443\u0454\u0442\u044C\u0441\u044F, \u0449\u043E ${issue2.origin} \u0431\u0443\u0434\u0435 ${adj}${issue2.minimum.toString()}`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") return `\u041D\u0435\u043F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u0438\u0439 \u0440\u044F\u0434\u043E\u043A: \u043F\u043E\u0432\u0438\u043D\u0435\u043D \u043F\u043E\u0447\u0438\u043D\u0430\u0442\u0438\u0441\u044F \u0437 "${_issue.prefix}"`; if (_issue.format === "ends_with") return `\u041D\u0435\u043F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u0438\u0439 \u0440\u044F\u0434\u043E\u043A: \u043F\u043E\u0432\u0438\u043D\u0435\u043D \u0437\u0430\u043A\u0456\u043D\u0447\u0443\u0432\u0430\u0442\u0438\u0441\u044F \u043D\u0430 "${_issue.suffix}"`; if (_issue.format === "includes") return `\u041D\u0435\u043F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u0438\u0439 \u0440\u044F\u0434\u043E\u043A: \u043F\u043E\u0432\u0438\u043D\u0435\u043D \u043C\u0456\u0441\u0442\u0438\u0442\u0438 "${_issue.includes}"`; if (_issue.format === "regex") return `\u041D\u0435\u043F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u0438\u0439 \u0440\u044F\u0434\u043E\u043A: \u043F\u043E\u0432\u0438\u043D\u0435\u043D \u0432\u0456\u0434\u043F\u043E\u0432\u0456\u0434\u0430\u0442\u0438 \u0448\u0430\u0431\u043B\u043E\u043D\u0443 ${_issue.pattern}`; return `\u041D\u0435\u043F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u0438\u0439 ${FormatDictionary[_issue.format] ?? issue2.format}`; } case "not_multiple_of": return `\u041D\u0435\u043F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u0435 \u0447\u0438\u0441\u043B\u043E: \u043F\u043E\u0432\u0438\u043D\u043D\u043E \u0431\u0443\u0442\u0438 \u043A\u0440\u0430\u0442\u043D\u0438\u043C ${issue2.divisor}`; case "unrecognized_keys": return `\u041D\u0435\u0440\u043E\u0437\u043F\u0456\u0437\u043D\u0430\u043D\u0438\u0439 \u043A\u043B\u044E\u0447${issue2.keys.length > 1 ? "\u0456" : ""}: ${joinValues(issue2.keys, ", ")}`; case "invalid_key": return `\u041D\u0435\u043F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u0438\u0439 \u043A\u043B\u044E\u0447 \u0443 ${issue2.origin}`; case "invalid_union": return "\u041D\u0435\u043F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u0456 \u0432\u0445\u0456\u0434\u043D\u0456 \u0434\u0430\u043D\u0456"; case "invalid_element": return `\u041D\u0435\u043F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u0435 \u0437\u043D\u0430\u0447\u0435\u043D\u043D\u044F \u0443 ${issue2.origin}`; default: return `\u041D\u0435\u043F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u0456 \u0432\u0445\u0456\u0434\u043D\u0456 \u0434\u0430\u043D\u0456`; } }; }, "error"); function uk_default() { return { localeError: error43() }; } __name(uk_default, "default"); // ../../node_modules/zod/v4/locales/ua.js function ua_default() { return uk_default(); } __name(ua_default, "default"); // ../../node_modules/zod/v4/locales/ur.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var error44 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: "\u062D\u0631\u0648\u0641", verb: "\u06C1\u0648\u0646\u0627" }, file: { unit: "\u0628\u0627\u0626\u0679\u0633", verb: "\u06C1\u0648\u0646\u0627" }, array: { unit: "\u0622\u0626\u0679\u0645\u0632", verb: "\u06C1\u0648\u0646\u0627" }, set: { unit: "\u0622\u0626\u0679\u0645\u0632", verb: "\u06C1\u0648\u0646\u0627" } }; function getSizing(origin2) { return Sizable[origin2] ?? null; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "\u0627\u0646 \u067E\u0679", email: "\u0627\u06CC \u0645\u06CC\u0644 \u0627\u06CC\u0688\u0631\u06CC\u0633", url: "\u06CC\u0648 \u0622\u0631 \u0627\u06CC\u0644", emoji: "\u0627\u06CC\u0645\u0648\u062C\u06CC", uuid: "\u06CC\u0648 \u06CC\u0648 \u0622\u0626\u06CC \u0688\u06CC", uuidv4: "\u06CC\u0648 \u06CC\u0648 \u0622\u0626\u06CC \u0688\u06CC \u0648\u06CC 4", uuidv6: "\u06CC\u0648 \u06CC\u0648 \u0622\u0626\u06CC \u0688\u06CC \u0648\u06CC 6", nanoid: "\u0646\u06CC\u0646\u0648 \u0622\u0626\u06CC \u0688\u06CC", guid: "\u062C\u06CC \u06CC\u0648 \u0622\u0626\u06CC \u0688\u06CC", cuid: "\u0633\u06CC \u06CC\u0648 \u0622\u0626\u06CC \u0688\u06CC", cuid2: "\u0633\u06CC \u06CC\u0648 \u0622\u0626\u06CC \u0688\u06CC 2", ulid: "\u06CC\u0648 \u0627\u06CC\u0644 \u0622\u0626\u06CC \u0688\u06CC", xid: "\u0627\u06CC\u06A9\u0633 \u0622\u0626\u06CC \u0688\u06CC", ksuid: "\u06A9\u06D2 \u0627\u06CC\u0633 \u06CC\u0648 \u0622\u0626\u06CC \u0688\u06CC", datetime: "\u0622\u0626\u06CC \u0627\u06CC\u0633 \u0627\u0648 \u0688\u06CC\u0679 \u0679\u0627\u0626\u0645", date: "\u0622\u0626\u06CC \u0627\u06CC\u0633 \u0627\u0648 \u062A\u0627\u0631\u06CC\u062E", time: "\u0622\u0626\u06CC \u0627\u06CC\u0633 \u0627\u0648 \u0648\u0642\u062A", duration: "\u0622\u0626\u06CC \u0627\u06CC\u0633 \u0627\u0648 \u0645\u062F\u062A", ipv4: "\u0622\u0626\u06CC \u067E\u06CC \u0648\u06CC 4 \u0627\u06CC\u0688\u0631\u06CC\u0633", ipv6: "\u0622\u0626\u06CC \u067E\u06CC \u0648\u06CC 6 \u0627\u06CC\u0688\u0631\u06CC\u0633", cidrv4: "\u0622\u0626\u06CC \u067E\u06CC \u0648\u06CC 4 \u0631\u06CC\u0646\u062C", cidrv6: "\u0622\u0626\u06CC \u067E\u06CC \u0648\u06CC 6 \u0631\u06CC\u0646\u062C", base64: "\u0628\u06CC\u0633 64 \u0627\u0646 \u06A9\u0648\u0688\u0688 \u0633\u0679\u0631\u0646\u06AF", base64url: "\u0628\u06CC\u0633 64 \u06CC\u0648 \u0622\u0631 \u0627\u06CC\u0644 \u0627\u0646 \u06A9\u0648\u0688\u0688 \u0633\u0679\u0631\u0646\u06AF", json_string: "\u062C\u06D2 \u0627\u06CC\u0633 \u0627\u0648 \u0627\u06CC\u0646 \u0633\u0679\u0631\u0646\u06AF", e164: "\u0627\u06CC 164 \u0646\u0645\u0628\u0631", jwt: "\u062C\u06D2 \u0688\u0628\u0644\u06CC\u0648 \u0679\u06CC", template_literal: "\u0627\u0646 \u067E\u0679" }; const TypeDictionary = { nan: "NaN", number: "\u0646\u0645\u0628\u0631", array: "\u0622\u0631\u06D2", null: "\u0646\u0644" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `\u063A\u0644\u0637 \u0627\u0646 \u067E\u0679: instanceof ${issue2.expected} \u0645\u062A\u0648\u0642\u0639 \u062A\u06BE\u0627\u060C ${received} \u0645\u0648\u0635\u0648\u0644 \u06C1\u0648\u0627`; } return `\u063A\u0644\u0637 \u0627\u0646 \u067E\u0679: ${expected} \u0645\u062A\u0648\u0642\u0639 \u062A\u06BE\u0627\u060C ${received} \u0645\u0648\u0635\u0648\u0644 \u06C1\u0648\u0627`; } case "invalid_value": if (issue2.values.length === 1) return `\u063A\u0644\u0637 \u0627\u0646 \u067E\u0679: ${stringifyPrimitive(issue2.values[0])} \u0645\u062A\u0648\u0642\u0639 \u062A\u06BE\u0627`; return `\u063A\u0644\u0637 \u0622\u067E\u0634\u0646: ${joinValues(issue2.values, "|")} \u0645\u06CC\u06BA \u0633\u06D2 \u0627\u06CC\u06A9 \u0645\u062A\u0648\u0642\u0639 \u062A\u06BE\u0627`; case "too_big": { const adj = issue2.inclusive ? "<=" : "<"; const sizing = getSizing(issue2.origin); if (sizing) return `\u0628\u06C1\u062A \u0628\u0691\u0627: ${issue2.origin ?? "\u0648\u06CC\u0644\u06CC\u0648"} \u06A9\u06D2 ${adj}${issue2.maximum.toString()} ${sizing.unit ?? "\u0639\u0646\u0627\u0635\u0631"} \u06C1\u0648\u0646\u06D2 \u0645\u062A\u0648\u0642\u0639 \u062A\u06BE\u06D2`; return `\u0628\u06C1\u062A \u0628\u0691\u0627: ${issue2.origin ?? "\u0648\u06CC\u0644\u06CC\u0648"} \u06A9\u0627 ${adj}${issue2.maximum.toString()} \u06C1\u0648\u0646\u0627 \u0645\u062A\u0648\u0642\u0639 \u062A\u06BE\u0627`; } case "too_small": { const adj = issue2.inclusive ? ">=" : ">"; const sizing = getSizing(issue2.origin); if (sizing) { return `\u0628\u06C1\u062A \u0686\u06BE\u0648\u0679\u0627: ${issue2.origin} \u06A9\u06D2 ${adj}${issue2.minimum.toString()} ${sizing.unit} \u06C1\u0648\u0646\u06D2 \u0645\u062A\u0648\u0642\u0639 \u062A\u06BE\u06D2`; } return `\u0628\u06C1\u062A \u0686\u06BE\u0648\u0679\u0627: ${issue2.origin} \u06A9\u0627 ${adj}${issue2.minimum.toString()} \u06C1\u0648\u0646\u0627 \u0645\u062A\u0648\u0642\u0639 \u062A\u06BE\u0627`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") { return `\u063A\u0644\u0637 \u0633\u0679\u0631\u0646\u06AF: "${_issue.prefix}" \u0633\u06D2 \u0634\u0631\u0648\u0639 \u06C1\u0648\u0646\u0627 \u0686\u0627\u06C1\u06CC\u06D2`; } if (_issue.format === "ends_with") return `\u063A\u0644\u0637 \u0633\u0679\u0631\u0646\u06AF: "${_issue.suffix}" \u067E\u0631 \u062E\u062A\u0645 \u06C1\u0648\u0646\u0627 \u0686\u0627\u06C1\u06CC\u06D2`; if (_issue.format === "includes") return `\u063A\u0644\u0637 \u0633\u0679\u0631\u0646\u06AF: "${_issue.includes}" \u0634\u0627\u0645\u0644 \u06C1\u0648\u0646\u0627 \u0686\u0627\u06C1\u06CC\u06D2`; if (_issue.format === "regex") return `\u063A\u0644\u0637 \u0633\u0679\u0631\u0646\u06AF: \u067E\u06CC\u0679\u0631\u0646 ${_issue.pattern} \u0633\u06D2 \u0645\u06CC\u0686 \u06C1\u0648\u0646\u0627 \u0686\u0627\u06C1\u06CC\u06D2`; return `\u063A\u0644\u0637 ${FormatDictionary[_issue.format] ?? issue2.format}`; } case "not_multiple_of": return `\u063A\u0644\u0637 \u0646\u0645\u0628\u0631: ${issue2.divisor} \u06A9\u0627 \u0645\u0636\u0627\u0639\u0641 \u06C1\u0648\u0646\u0627 \u0686\u0627\u06C1\u06CC\u06D2`; case "unrecognized_keys": return `\u063A\u06CC\u0631 \u062A\u0633\u0644\u06CC\u0645 \u0634\u062F\u06C1 \u06A9\u06CC${issue2.keys.length > 1 ? "\u0632" : ""}: ${joinValues(issue2.keys, "\u060C ")}`; case "invalid_key": return `${issue2.origin} \u0645\u06CC\u06BA \u063A\u0644\u0637 \u06A9\u06CC`; case "invalid_union": return "\u063A\u0644\u0637 \u0627\u0646 \u067E\u0679"; case "invalid_element": return `${issue2.origin} \u0645\u06CC\u06BA \u063A\u0644\u0637 \u0648\u06CC\u0644\u06CC\u0648`; default: return `\u063A\u0644\u0637 \u0627\u0646 \u067E\u0679`; } }; }, "error"); function ur_default() { return { localeError: error44() }; } __name(ur_default, "default"); // ../../node_modules/zod/v4/locales/uz.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var error45 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: "belgi", verb: "bo\u2018lishi kerak" }, file: { unit: "bayt", verb: "bo\u2018lishi kerak" }, array: { unit: "element", verb: "bo\u2018lishi kerak" }, set: { unit: "element", verb: "bo\u2018lishi kerak" } }; function getSizing(origin2) { return Sizable[origin2] ?? null; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "kirish", email: "elektron pochta manzili", url: "URL", emoji: "emoji", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "ISO sana va vaqti", date: "ISO sana", time: "ISO vaqt", duration: "ISO davomiylik", ipv4: "IPv4 manzil", ipv6: "IPv6 manzil", mac: "MAC manzil", cidrv4: "IPv4 diapazon", cidrv6: "IPv6 diapazon", base64: "base64 kodlangan satr", base64url: "base64url kodlangan satr", json_string: "JSON satr", e164: "E.164 raqam", jwt: "JWT", template_literal: "kirish" }; const TypeDictionary = { nan: "NaN", number: "raqam", array: "massiv" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `Noto\u2018g\u2018ri kirish: kutilgan instanceof ${issue2.expected}, qabul qilingan ${received}`; } return `Noto\u2018g\u2018ri kirish: kutilgan ${expected}, qabul qilingan ${received}`; } case "invalid_value": if (issue2.values.length === 1) return `Noto\u2018g\u2018ri kirish: kutilgan ${stringifyPrimitive(issue2.values[0])}`; return `Noto\u2018g\u2018ri variant: quyidagilardan biri kutilgan ${joinValues(issue2.values, "|")}`; case "too_big": { const adj = issue2.inclusive ? "<=" : "<"; const sizing = getSizing(issue2.origin); if (sizing) return `Juda katta: kutilgan ${issue2.origin ?? "qiymat"} ${adj}${issue2.maximum.toString()} ${sizing.unit} ${sizing.verb}`; return `Juda katta: kutilgan ${issue2.origin ?? "qiymat"} ${adj}${issue2.maximum.toString()}`; } case "too_small": { const adj = issue2.inclusive ? ">=" : ">"; const sizing = getSizing(issue2.origin); if (sizing) { return `Juda kichik: kutilgan ${issue2.origin} ${adj}${issue2.minimum.toString()} ${sizing.unit} ${sizing.verb}`; } return `Juda kichik: kutilgan ${issue2.origin} ${adj}${issue2.minimum.toString()}`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") return `Noto\u2018g\u2018ri satr: "${_issue.prefix}" bilan boshlanishi kerak`; if (_issue.format === "ends_with") return `Noto\u2018g\u2018ri satr: "${_issue.suffix}" bilan tugashi kerak`; if (_issue.format === "includes") return `Noto\u2018g\u2018ri satr: "${_issue.includes}" ni o\u2018z ichiga olishi kerak`; if (_issue.format === "regex") return `Noto\u2018g\u2018ri satr: ${_issue.pattern} shabloniga mos kelishi kerak`; return `Noto\u2018g\u2018ri ${FormatDictionary[_issue.format] ?? issue2.format}`; } case "not_multiple_of": return `Noto\u2018g\u2018ri raqam: ${issue2.divisor} ning karralisi bo\u2018lishi kerak`; case "unrecognized_keys": return `Noma\u2019lum kalit${issue2.keys.length > 1 ? "lar" : ""}: ${joinValues(issue2.keys, ", ")}`; case "invalid_key": return `${issue2.origin} dagi kalit noto\u2018g\u2018ri`; case "invalid_union": return "Noto\u2018g\u2018ri kirish"; case "invalid_element": return `${issue2.origin} da noto\u2018g\u2018ri qiymat`; default: return `Noto\u2018g\u2018ri kirish`; } }; }, "error"); function uz_default() { return { localeError: error45() }; } __name(uz_default, "default"); // ../../node_modules/zod/v4/locales/vi.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var error46 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: "k\xFD t\u1EF1", verb: "c\xF3" }, file: { unit: "byte", verb: "c\xF3" }, array: { unit: "ph\u1EA7n t\u1EED", verb: "c\xF3" }, set: { unit: "ph\u1EA7n t\u1EED", verb: "c\xF3" } }; function getSizing(origin2) { return Sizable[origin2] ?? null; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "\u0111\u1EA7u v\xE0o", email: "\u0111\u1ECBa ch\u1EC9 email", url: "URL", emoji: "emoji", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "ng\xE0y gi\u1EDD ISO", date: "ng\xE0y ISO", time: "gi\u1EDD ISO", duration: "kho\u1EA3ng th\u1EDDi gian ISO", ipv4: "\u0111\u1ECBa ch\u1EC9 IPv4", ipv6: "\u0111\u1ECBa ch\u1EC9 IPv6", cidrv4: "d\u1EA3i IPv4", cidrv6: "d\u1EA3i IPv6", base64: "chu\u1ED7i m\xE3 h\xF3a base64", base64url: "chu\u1ED7i m\xE3 h\xF3a base64url", json_string: "chu\u1ED7i JSON", e164: "s\u1ED1 E.164", jwt: "JWT", template_literal: "\u0111\u1EA7u v\xE0o" }; const TypeDictionary = { nan: "NaN", number: "s\u1ED1", array: "m\u1EA3ng" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `\u0110\u1EA7u v\xE0o kh\xF4ng h\u1EE3p l\u1EC7: mong \u0111\u1EE3i instanceof ${issue2.expected}, nh\u1EADn \u0111\u01B0\u1EE3c ${received}`; } return `\u0110\u1EA7u v\xE0o kh\xF4ng h\u1EE3p l\u1EC7: mong \u0111\u1EE3i ${expected}, nh\u1EADn \u0111\u01B0\u1EE3c ${received}`; } case "invalid_value": if (issue2.values.length === 1) return `\u0110\u1EA7u v\xE0o kh\xF4ng h\u1EE3p l\u1EC7: mong \u0111\u1EE3i ${stringifyPrimitive(issue2.values[0])}`; return `T\xF9y ch\u1ECDn kh\xF4ng h\u1EE3p l\u1EC7: mong \u0111\u1EE3i m\u1ED9t trong c\xE1c gi\xE1 tr\u1ECB ${joinValues(issue2.values, "|")}`; case "too_big": { const adj = issue2.inclusive ? "<=" : "<"; const sizing = getSizing(issue2.origin); if (sizing) return `Qu\xE1 l\u1EDBn: mong \u0111\u1EE3i ${issue2.origin ?? "gi\xE1 tr\u1ECB"} ${sizing.verb} ${adj}${issue2.maximum.toString()} ${sizing.unit ?? "ph\u1EA7n t\u1EED"}`; return `Qu\xE1 l\u1EDBn: mong \u0111\u1EE3i ${issue2.origin ?? "gi\xE1 tr\u1ECB"} ${adj}${issue2.maximum.toString()}`; } case "too_small": { const adj = issue2.inclusive ? ">=" : ">"; const sizing = getSizing(issue2.origin); if (sizing) { return `Qu\xE1 nh\u1ECF: mong \u0111\u1EE3i ${issue2.origin} ${sizing.verb} ${adj}${issue2.minimum.toString()} ${sizing.unit}`; } return `Qu\xE1 nh\u1ECF: mong \u0111\u1EE3i ${issue2.origin} ${adj}${issue2.minimum.toString()}`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") return `Chu\u1ED7i kh\xF4ng h\u1EE3p l\u1EC7: ph\u1EA3i b\u1EAFt \u0111\u1EA7u b\u1EB1ng "${_issue.prefix}"`; if (_issue.format === "ends_with") return `Chu\u1ED7i kh\xF4ng h\u1EE3p l\u1EC7: ph\u1EA3i k\u1EBFt th\xFAc b\u1EB1ng "${_issue.suffix}"`; if (_issue.format === "includes") return `Chu\u1ED7i kh\xF4ng h\u1EE3p l\u1EC7: ph\u1EA3i bao g\u1ED3m "${_issue.includes}"`; if (_issue.format === "regex") return `Chu\u1ED7i kh\xF4ng h\u1EE3p l\u1EC7: ph\u1EA3i kh\u1EDBp v\u1EDBi m\u1EABu ${_issue.pattern}`; return `${FormatDictionary[_issue.format] ?? issue2.format} kh\xF4ng h\u1EE3p l\u1EC7`; } case "not_multiple_of": return `S\u1ED1 kh\xF4ng h\u1EE3p l\u1EC7: ph\u1EA3i l\xE0 b\u1ED9i s\u1ED1 c\u1EE7a ${issue2.divisor}`; case "unrecognized_keys": return `Kh\xF3a kh\xF4ng \u0111\u01B0\u1EE3c nh\u1EADn d\u1EA1ng: ${joinValues(issue2.keys, ", ")}`; case "invalid_key": return `Kh\xF3a kh\xF4ng h\u1EE3p l\u1EC7 trong ${issue2.origin}`; case "invalid_union": return "\u0110\u1EA7u v\xE0o kh\xF4ng h\u1EE3p l\u1EC7"; case "invalid_element": return `Gi\xE1 tr\u1ECB kh\xF4ng h\u1EE3p l\u1EC7 trong ${issue2.origin}`; default: return `\u0110\u1EA7u v\xE0o kh\xF4ng h\u1EE3p l\u1EC7`; } }; }, "error"); function vi_default() { return { localeError: error46() }; } __name(vi_default, "default"); // ../../node_modules/zod/v4/locales/zh-CN.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var error47 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: "\u5B57\u7B26", verb: "\u5305\u542B" }, file: { unit: "\u5B57\u8282", verb: "\u5305\u542B" }, array: { unit: "\u9879", verb: "\u5305\u542B" }, set: { unit: "\u9879", verb: "\u5305\u542B" } }; function getSizing(origin2) { return Sizable[origin2] ?? null; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "\u8F93\u5165", email: "\u7535\u5B50\u90AE\u4EF6", url: "URL", emoji: "\u8868\u60C5\u7B26\u53F7", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "ISO\u65E5\u671F\u65F6\u95F4", date: "ISO\u65E5\u671F", time: "ISO\u65F6\u95F4", duration: "ISO\u65F6\u957F", ipv4: "IPv4\u5730\u5740", ipv6: "IPv6\u5730\u5740", cidrv4: "IPv4\u7F51\u6BB5", cidrv6: "IPv6\u7F51\u6BB5", base64: "base64\u7F16\u7801\u5B57\u7B26\u4E32", base64url: "base64url\u7F16\u7801\u5B57\u7B26\u4E32", json_string: "JSON\u5B57\u7B26\u4E32", e164: "E.164\u53F7\u7801", jwt: "JWT", template_literal: "\u8F93\u5165" }; const TypeDictionary = { nan: "NaN", number: "\u6570\u5B57", array: "\u6570\u7EC4", null: "\u7A7A\u503C(null)" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `\u65E0\u6548\u8F93\u5165\uFF1A\u671F\u671B instanceof ${issue2.expected}\uFF0C\u5B9E\u9645\u63A5\u6536 ${received}`; } return `\u65E0\u6548\u8F93\u5165\uFF1A\u671F\u671B ${expected}\uFF0C\u5B9E\u9645\u63A5\u6536 ${received}`; } case "invalid_value": if (issue2.values.length === 1) return `\u65E0\u6548\u8F93\u5165\uFF1A\u671F\u671B ${stringifyPrimitive(issue2.values[0])}`; return `\u65E0\u6548\u9009\u9879\uFF1A\u671F\u671B\u4EE5\u4E0B\u4E4B\u4E00 ${joinValues(issue2.values, "|")}`; case "too_big": { const adj = issue2.inclusive ? "<=" : "<"; const sizing = getSizing(issue2.origin); if (sizing) return `\u6570\u503C\u8FC7\u5927\uFF1A\u671F\u671B ${issue2.origin ?? "\u503C"} ${adj}${issue2.maximum.toString()} ${sizing.unit ?? "\u4E2A\u5143\u7D20"}`; return `\u6570\u503C\u8FC7\u5927\uFF1A\u671F\u671B ${issue2.origin ?? "\u503C"} ${adj}${issue2.maximum.toString()}`; } case "too_small": { const adj = issue2.inclusive ? ">=" : ">"; const sizing = getSizing(issue2.origin); if (sizing) { return `\u6570\u503C\u8FC7\u5C0F\uFF1A\u671F\u671B ${issue2.origin} ${adj}${issue2.minimum.toString()} ${sizing.unit}`; } return `\u6570\u503C\u8FC7\u5C0F\uFF1A\u671F\u671B ${issue2.origin} ${adj}${issue2.minimum.toString()}`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") return `\u65E0\u6548\u5B57\u7B26\u4E32\uFF1A\u5FC5\u987B\u4EE5 "${_issue.prefix}" \u5F00\u5934`; if (_issue.format === "ends_with") return `\u65E0\u6548\u5B57\u7B26\u4E32\uFF1A\u5FC5\u987B\u4EE5 "${_issue.suffix}" \u7ED3\u5C3E`; if (_issue.format === "includes") return `\u65E0\u6548\u5B57\u7B26\u4E32\uFF1A\u5FC5\u987B\u5305\u542B "${_issue.includes}"`; if (_issue.format === "regex") return `\u65E0\u6548\u5B57\u7B26\u4E32\uFF1A\u5FC5\u987B\u6EE1\u8DB3\u6B63\u5219\u8868\u8FBE\u5F0F ${_issue.pattern}`; return `\u65E0\u6548${FormatDictionary[_issue.format] ?? issue2.format}`; } case "not_multiple_of": return `\u65E0\u6548\u6570\u5B57\uFF1A\u5FC5\u987B\u662F ${issue2.divisor} \u7684\u500D\u6570`; case "unrecognized_keys": return `\u51FA\u73B0\u672A\u77E5\u7684\u952E(key): ${joinValues(issue2.keys, ", ")}`; case "invalid_key": return `${issue2.origin} \u4E2D\u7684\u952E(key)\u65E0\u6548`; case "invalid_union": return "\u65E0\u6548\u8F93\u5165"; case "invalid_element": return `${issue2.origin} \u4E2D\u5305\u542B\u65E0\u6548\u503C(value)`; default: return `\u65E0\u6548\u8F93\u5165`; } }; }, "error"); function zh_CN_default() { return { localeError: error47() }; } __name(zh_CN_default, "default"); // ../../node_modules/zod/v4/locales/zh-TW.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var error48 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: "\u5B57\u5143", verb: "\u64C1\u6709" }, file: { unit: "\u4F4D\u5143\u7D44", verb: "\u64C1\u6709" }, array: { unit: "\u9805\u76EE", verb: "\u64C1\u6709" }, set: { unit: "\u9805\u76EE", verb: "\u64C1\u6709" } }; function getSizing(origin2) { return Sizable[origin2] ?? null; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "\u8F38\u5165", email: "\u90F5\u4EF6\u5730\u5740", url: "URL", emoji: "emoji", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "ISO \u65E5\u671F\u6642\u9593", date: "ISO \u65E5\u671F", time: "ISO \u6642\u9593", duration: "ISO \u671F\u9593", ipv4: "IPv4 \u4F4D\u5740", ipv6: "IPv6 \u4F4D\u5740", cidrv4: "IPv4 \u7BC4\u570D", cidrv6: "IPv6 \u7BC4\u570D", base64: "base64 \u7DE8\u78BC\u5B57\u4E32", base64url: "base64url \u7DE8\u78BC\u5B57\u4E32", json_string: "JSON \u5B57\u4E32", e164: "E.164 \u6578\u503C", jwt: "JWT", template_literal: "\u8F38\u5165" }; const TypeDictionary = { nan: "NaN" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `\u7121\u6548\u7684\u8F38\u5165\u503C\uFF1A\u9810\u671F\u70BA instanceof ${issue2.expected}\uFF0C\u4F46\u6536\u5230 ${received}`; } return `\u7121\u6548\u7684\u8F38\u5165\u503C\uFF1A\u9810\u671F\u70BA ${expected}\uFF0C\u4F46\u6536\u5230 ${received}`; } case "invalid_value": if (issue2.values.length === 1) return `\u7121\u6548\u7684\u8F38\u5165\u503C\uFF1A\u9810\u671F\u70BA ${stringifyPrimitive(issue2.values[0])}`; return `\u7121\u6548\u7684\u9078\u9805\uFF1A\u9810\u671F\u70BA\u4EE5\u4E0B\u5176\u4E2D\u4E4B\u4E00 ${joinValues(issue2.values, "|")}`; case "too_big": { const adj = issue2.inclusive ? "<=" : "<"; const sizing = getSizing(issue2.origin); if (sizing) return `\u6578\u503C\u904E\u5927\uFF1A\u9810\u671F ${issue2.origin ?? "\u503C"} \u61C9\u70BA ${adj}${issue2.maximum.toString()} ${sizing.unit ?? "\u500B\u5143\u7D20"}`; return `\u6578\u503C\u904E\u5927\uFF1A\u9810\u671F ${issue2.origin ?? "\u503C"} \u61C9\u70BA ${adj}${issue2.maximum.toString()}`; } case "too_small": { const adj = issue2.inclusive ? ">=" : ">"; const sizing = getSizing(issue2.origin); if (sizing) { return `\u6578\u503C\u904E\u5C0F\uFF1A\u9810\u671F ${issue2.origin} \u61C9\u70BA ${adj}${issue2.minimum.toString()} ${sizing.unit}`; } return `\u6578\u503C\u904E\u5C0F\uFF1A\u9810\u671F ${issue2.origin} \u61C9\u70BA ${adj}${issue2.minimum.toString()}`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") { return `\u7121\u6548\u7684\u5B57\u4E32\uFF1A\u5FC5\u9808\u4EE5 "${_issue.prefix}" \u958B\u982D`; } if (_issue.format === "ends_with") return `\u7121\u6548\u7684\u5B57\u4E32\uFF1A\u5FC5\u9808\u4EE5 "${_issue.suffix}" \u7D50\u5C3E`; if (_issue.format === "includes") return `\u7121\u6548\u7684\u5B57\u4E32\uFF1A\u5FC5\u9808\u5305\u542B "${_issue.includes}"`; if (_issue.format === "regex") return `\u7121\u6548\u7684\u5B57\u4E32\uFF1A\u5FC5\u9808\u7B26\u5408\u683C\u5F0F ${_issue.pattern}`; return `\u7121\u6548\u7684 ${FormatDictionary[_issue.format] ?? issue2.format}`; } case "not_multiple_of": return `\u7121\u6548\u7684\u6578\u5B57\uFF1A\u5FC5\u9808\u70BA ${issue2.divisor} \u7684\u500D\u6578`; case "unrecognized_keys": return `\u7121\u6CD5\u8B58\u5225\u7684\u9375\u503C${issue2.keys.length > 1 ? "\u5011" : ""}\uFF1A${joinValues(issue2.keys, "\u3001")}`; case "invalid_key": return `${issue2.origin} \u4E2D\u6709\u7121\u6548\u7684\u9375\u503C`; case "invalid_union": return "\u7121\u6548\u7684\u8F38\u5165\u503C"; case "invalid_element": return `${issue2.origin} \u4E2D\u6709\u7121\u6548\u7684\u503C`; default: return `\u7121\u6548\u7684\u8F38\u5165\u503C`; } }; }, "error"); function zh_TW_default() { return { localeError: error48() }; } __name(zh_TW_default, "default"); // ../../node_modules/zod/v4/locales/yo.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var error49 = /* @__PURE__ */ __name(() => { const Sizable = { string: { unit: "\xE0mi", verb: "n\xED" }, file: { unit: "bytes", verb: "n\xED" }, array: { unit: "nkan", verb: "n\xED" }, set: { unit: "nkan", verb: "n\xED" } }; function getSizing(origin2) { return Sizable[origin2] ?? null; } __name(getSizing, "getSizing"); const FormatDictionary = { regex: "\u1EB9\u0300r\u1ECD \xECb\xE1w\u1ECDl\xE9", email: "\xE0d\xEDr\u1EB9\u0301s\xEC \xECm\u1EB9\u0301l\xEC", url: "URL", emoji: "emoji", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "\xE0k\xF3k\xF2 ISO", date: "\u1ECDj\u1ECD\u0301 ISO", time: "\xE0k\xF3k\xF2 ISO", duration: "\xE0k\xF3k\xF2 t\xF3 p\xE9 ISO", ipv4: "\xE0d\xEDr\u1EB9\u0301s\xEC IPv4", ipv6: "\xE0d\xEDr\u1EB9\u0301s\xEC IPv6", cidrv4: "\xE0gb\xE8gb\xE8 IPv4", cidrv6: "\xE0gb\xE8gb\xE8 IPv6", base64: "\u1ECD\u0300r\u1ECD\u0300 t\xED a k\u1ECD\u0301 n\xED base64", base64url: "\u1ECD\u0300r\u1ECD\u0300 base64url", json_string: "\u1ECD\u0300r\u1ECD\u0300 JSON", e164: "n\u1ECD\u0301mb\xE0 E.164", jwt: "JWT", template_literal: "\u1EB9\u0300r\u1ECD \xECb\xE1w\u1ECDl\xE9" }; const TypeDictionary = { nan: "NaN", number: "n\u1ECD\u0301mb\xE0", array: "akop\u1ECD" }; return (issue2) => { switch (issue2.code) { case "invalid_type": { const expected = TypeDictionary[issue2.expected] ?? issue2.expected; const receivedType = parsedType(issue2.input); const received = TypeDictionary[receivedType] ?? receivedType; if (/^[A-Z]/.test(issue2.expected)) { return `\xCCb\xE1w\u1ECDl\xE9 a\u1E63\xEC\u1E63e: a n\xED l\xE1ti fi instanceof ${issue2.expected}, \xE0m\u1ECD\u0300 a r\xED ${received}`; } return `\xCCb\xE1w\u1ECDl\xE9 a\u1E63\xEC\u1E63e: a n\xED l\xE1ti fi ${expected}, \xE0m\u1ECD\u0300 a r\xED ${received}`; } case "invalid_value": if (issue2.values.length === 1) return `\xCCb\xE1w\u1ECDl\xE9 a\u1E63\xEC\u1E63e: a n\xED l\xE1ti fi ${stringifyPrimitive(issue2.values[0])}`; return `\xC0\u1E63\xE0y\xE0n a\u1E63\xEC\u1E63e: yan \u1ECD\u0300kan l\xE1ra ${joinValues(issue2.values, "|")}`; case "too_big": { const adj = issue2.inclusive ? "<=" : "<"; const sizing = getSizing(issue2.origin); if (sizing) return `T\xF3 p\u1ECD\u0300 j\xF9: a n\xED l\xE1ti j\u1EB9\u0301 p\xE9 ${issue2.origin ?? "iye"} ${sizing.verb} ${adj}${issue2.maximum} ${sizing.unit}`; return `T\xF3 p\u1ECD\u0300 j\xF9: a n\xED l\xE1ti j\u1EB9\u0301 ${adj}${issue2.maximum}`; } case "too_small": { const adj = issue2.inclusive ? ">=" : ">"; const sizing = getSizing(issue2.origin); if (sizing) return `K\xE9r\xE9 ju: a n\xED l\xE1ti j\u1EB9\u0301 p\xE9 ${issue2.origin} ${sizing.verb} ${adj}${issue2.minimum} ${sizing.unit}`; return `K\xE9r\xE9 ju: a n\xED l\xE1ti j\u1EB9\u0301 ${adj}${issue2.minimum}`; } case "invalid_format": { const _issue = issue2; if (_issue.format === "starts_with") return `\u1ECC\u0300r\u1ECD\u0300 a\u1E63\xEC\u1E63e: gb\u1ECD\u0301d\u1ECD\u0300 b\u1EB9\u0300r\u1EB9\u0300 p\u1EB9\u0300l\xFA "${_issue.prefix}"`; if (_issue.format === "ends_with") return `\u1ECC\u0300r\u1ECD\u0300 a\u1E63\xEC\u1E63e: gb\u1ECD\u0301d\u1ECD\u0300 par\xED p\u1EB9\u0300l\xFA "${_issue.suffix}"`; if (_issue.format === "includes") return `\u1ECC\u0300r\u1ECD\u0300 a\u1E63\xEC\u1E63e: gb\u1ECD\u0301d\u1ECD\u0300 n\xED "${_issue.includes}"`; if (_issue.format === "regex") return `\u1ECC\u0300r\u1ECD\u0300 a\u1E63\xEC\u1E63e: gb\u1ECD\u0301d\u1ECD\u0300 b\xE1 \xE0p\u1EB9\u1EB9r\u1EB9 mu ${_issue.pattern}`; return `A\u1E63\xEC\u1E63e: ${FormatDictionary[_issue.format] ?? issue2.format}`; } case "not_multiple_of": return `N\u1ECD\u0301mb\xE0 a\u1E63\xEC\u1E63e: gb\u1ECD\u0301d\u1ECD\u0300 j\u1EB9\u0301 \xE8y\xE0 p\xEDp\xEDn ti ${issue2.divisor}`; case "unrecognized_keys": return `B\u1ECDt\xECn\xEC \xE0\xECm\u1ECD\u0300: ${joinValues(issue2.keys, ", ")}`; case "invalid_key": return `B\u1ECDt\xECn\xEC a\u1E63\xEC\u1E63e n\xEDn\xFA ${issue2.origin}`; case "invalid_union": return "\xCCb\xE1w\u1ECDl\xE9 a\u1E63\xEC\u1E63e"; case "invalid_element": return `Iye a\u1E63\xEC\u1E63e n\xEDn\xFA ${issue2.origin}`; default: return "\xCCb\xE1w\u1ECDl\xE9 a\u1E63\xEC\u1E63e"; } }; }, "error"); function yo_default() { return { localeError: error49() }; } __name(yo_default, "default"); // ../../node_modules/zod/v4/core/registries.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var _a; var $output = /* @__PURE__ */ Symbol("ZodOutput"); var $input = /* @__PURE__ */ Symbol("ZodInput"); var $ZodRegistry = class { static { __name(this, "$ZodRegistry"); } constructor() { this._map = /* @__PURE__ */ new WeakMap(); this._idmap = /* @__PURE__ */ new Map(); } add(schema, ..._meta) { const meta3 = _meta[0]; this._map.set(schema, meta3); if (meta3 && typeof meta3 === "object" && "id" in meta3) { this._idmap.set(meta3.id, schema); } return this; } clear() { this._map = /* @__PURE__ */ new WeakMap(); this._idmap = /* @__PURE__ */ new Map(); return this; } remove(schema) { const meta3 = this._map.get(schema); if (meta3 && typeof meta3 === "object" && "id" in meta3) { this._idmap.delete(meta3.id); } this._map.delete(schema); return this; } get(schema) { const p = schema._zod.parent; if (p) { const pm = { ...this.get(p) ?? {} }; delete pm.id; const f = { ...pm, ...this._map.get(schema) }; return Object.keys(f).length ? f : void 0; } return this._map.get(schema); } has(schema) { return this._map.has(schema); } }; function registry() { return new $ZodRegistry(); } __name(registry, "registry"); (_a = globalThis).__zod_globalRegistry ?? (_a.__zod_globalRegistry = registry()); var globalRegistry = globalThis.__zod_globalRegistry; // ../../node_modules/zod/v4/core/api.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // @__NO_SIDE_EFFECTS__ function _string(Class2, params) { return new Class2({ type: "string", ...normalizeParams(params) }); } __name(_string, "_string"); // @__NO_SIDE_EFFECTS__ function _coercedString(Class2, params) { return new Class2({ type: "string", coerce: true, ...normalizeParams(params) }); } __name(_coercedString, "_coercedString"); // @__NO_SIDE_EFFECTS__ function _email(Class2, params) { return new Class2({ type: "string", format: "email", check: "string_format", abort: false, ...normalizeParams(params) }); } __name(_email, "_email"); // @__NO_SIDE_EFFECTS__ function _guid(Class2, params) { return new Class2({ type: "string", format: "guid", check: "string_format", abort: false, ...normalizeParams(params) }); } __name(_guid, "_guid"); // @__NO_SIDE_EFFECTS__ function _uuid(Class2, params) { return new Class2({ type: "string", format: "uuid", check: "string_format", abort: false, ...normalizeParams(params) }); } __name(_uuid, "_uuid"); // @__NO_SIDE_EFFECTS__ function _uuidv4(Class2, params) { return new Class2({ type: "string", format: "uuid", check: "string_format", abort: false, version: "v4", ...normalizeParams(params) }); } __name(_uuidv4, "_uuidv4"); // @__NO_SIDE_EFFECTS__ function _uuidv6(Class2, params) { return new Class2({ type: "string", format: "uuid", check: "string_format", abort: false, version: "v6", ...normalizeParams(params) }); } __name(_uuidv6, "_uuidv6"); // @__NO_SIDE_EFFECTS__ function _uuidv7(Class2, params) { return new Class2({ type: "string", format: "uuid", check: "string_format", abort: false, version: "v7", ...normalizeParams(params) }); } __name(_uuidv7, "_uuidv7"); // @__NO_SIDE_EFFECTS__ function _url(Class2, params) { return new Class2({ type: "string", format: "url", check: "string_format", abort: false, ...normalizeParams(params) }); } __name(_url, "_url"); // @__NO_SIDE_EFFECTS__ function _emoji2(Class2, params) { return new Class2({ type: "string", format: "emoji", check: "string_format", abort: false, ...normalizeParams(params) }); } __name(_emoji2, "_emoji"); // @__NO_SIDE_EFFECTS__ function _nanoid(Class2, params) { return new Class2({ type: "string", format: "nanoid", check: "string_format", abort: false, ...normalizeParams(params) }); } __name(_nanoid, "_nanoid"); // @__NO_SIDE_EFFECTS__ function _cuid(Class2, params) { return new Class2({ type: "string", format: "cuid", check: "string_format", abort: false, ...normalizeParams(params) }); } __name(_cuid, "_cuid"); // @__NO_SIDE_EFFECTS__ function _cuid2(Class2, params) { return new Class2({ type: "string", format: "cuid2", check: "string_format", abort: false, ...normalizeParams(params) }); } __name(_cuid2, "_cuid2"); // @__NO_SIDE_EFFECTS__ function _ulid(Class2, params) { return new Class2({ type: "string", format: "ulid", check: "string_format", abort: false, ...normalizeParams(params) }); } __name(_ulid, "_ulid"); // @__NO_SIDE_EFFECTS__ function _xid(Class2, params) { return new Class2({ type: "string", format: "xid", check: "string_format", abort: false, ...normalizeParams(params) }); } __name(_xid, "_xid"); // @__NO_SIDE_EFFECTS__ function _ksuid(Class2, params) { return new Class2({ type: "string", format: "ksuid", check: "string_format", abort: false, ...normalizeParams(params) }); } __name(_ksuid, "_ksuid"); // @__NO_SIDE_EFFECTS__ function _ipv4(Class2, params) { return new Class2({ type: "string", format: "ipv4", check: "string_format", abort: false, ...normalizeParams(params) }); } __name(_ipv4, "_ipv4"); // @__NO_SIDE_EFFECTS__ function _ipv6(Class2, params) { return new Class2({ type: "string", format: "ipv6", check: "string_format", abort: false, ...normalizeParams(params) }); } __name(_ipv6, "_ipv6"); // @__NO_SIDE_EFFECTS__ function _mac(Class2, params) { return new Class2({ type: "string", format: "mac", check: "string_format", abort: false, ...normalizeParams(params) }); } __name(_mac, "_mac"); // @__NO_SIDE_EFFECTS__ function _cidrv4(Class2, params) { return new Class2({ type: "string", format: "cidrv4", check: "string_format", abort: false, ...normalizeParams(params) }); } __name(_cidrv4, "_cidrv4"); // @__NO_SIDE_EFFECTS__ function _cidrv6(Class2, params) { return new Class2({ type: "string", format: "cidrv6", check: "string_format", abort: false, ...normalizeParams(params) }); } __name(_cidrv6, "_cidrv6"); // @__NO_SIDE_EFFECTS__ function _base64(Class2, params) { return new Class2({ type: "string", format: "base64", check: "string_format", abort: false, ...normalizeParams(params) }); } __name(_base64, "_base64"); // @__NO_SIDE_EFFECTS__ function _base64url(Class2, params) { return new Class2({ type: "string", format: "base64url", check: "string_format", abort: false, ...normalizeParams(params) }); } __name(_base64url, "_base64url"); // @__NO_SIDE_EFFECTS__ function _e164(Class2, params) { return new Class2({ type: "string", format: "e164", check: "string_format", abort: false, ...normalizeParams(params) }); } __name(_e164, "_e164"); // @__NO_SIDE_EFFECTS__ function _jwt(Class2, params) { return new Class2({ type: "string", format: "jwt", check: "string_format", abort: false, ...normalizeParams(params) }); } __name(_jwt, "_jwt"); var TimePrecision = { Any: null, Minute: -1, Second: 0, Millisecond: 3, Microsecond: 6 }; // @__NO_SIDE_EFFECTS__ function _isoDateTime(Class2, params) { return new Class2({ type: "string", format: "datetime", check: "string_format", offset: false, local: false, precision: null, ...normalizeParams(params) }); } __name(_isoDateTime, "_isoDateTime"); // @__NO_SIDE_EFFECTS__ function _isoDate(Class2, params) { return new Class2({ type: "string", format: "date", check: "string_format", ...normalizeParams(params) }); } __name(_isoDate, "_isoDate"); // @__NO_SIDE_EFFECTS__ function _isoTime(Class2, params) { return new Class2({ type: "string", format: "time", check: "string_format", precision: null, ...normalizeParams(params) }); } __name(_isoTime, "_isoTime"); // @__NO_SIDE_EFFECTS__ function _isoDuration(Class2, params) { return new Class2({ type: "string", format: "duration", check: "string_format", ...normalizeParams(params) }); } __name(_isoDuration, "_isoDuration"); // @__NO_SIDE_EFFECTS__ function _number(Class2, params) { return new Class2({ type: "number", checks: [], ...normalizeParams(params) }); } __name(_number, "_number"); // @__NO_SIDE_EFFECTS__ function _coercedNumber(Class2, params) { return new Class2({ type: "number", coerce: true, checks: [], ...normalizeParams(params) }); } __name(_coercedNumber, "_coercedNumber"); // @__NO_SIDE_EFFECTS__ function _int(Class2, params) { return new Class2({ type: "number", check: "number_format", abort: false, format: "safeint", ...normalizeParams(params) }); } __name(_int, "_int"); // @__NO_SIDE_EFFECTS__ function _float32(Class2, params) { return new Class2({ type: "number", check: "number_format", abort: false, format: "float32", ...normalizeParams(params) }); } __name(_float32, "_float32"); // @__NO_SIDE_EFFECTS__ function _float64(Class2, params) { return new Class2({ type: "number", check: "number_format", abort: false, format: "float64", ...normalizeParams(params) }); } __name(_float64, "_float64"); // @__NO_SIDE_EFFECTS__ function _int32(Class2, params) { return new Class2({ type: "number", check: "number_format", abort: false, format: "int32", ...normalizeParams(params) }); } __name(_int32, "_int32"); // @__NO_SIDE_EFFECTS__ function _uint32(Class2, params) { return new Class2({ type: "number", check: "number_format", abort: false, format: "uint32", ...normalizeParams(params) }); } __name(_uint32, "_uint32"); // @__NO_SIDE_EFFECTS__ function _boolean(Class2, params) { return new Class2({ type: "boolean", ...normalizeParams(params) }); } __name(_boolean, "_boolean"); // @__NO_SIDE_EFFECTS__ function _coercedBoolean(Class2, params) { return new Class2({ type: "boolean", coerce: true, ...normalizeParams(params) }); } __name(_coercedBoolean, "_coercedBoolean"); // @__NO_SIDE_EFFECTS__ function _bigint(Class2, params) { return new Class2({ type: "bigint", ...normalizeParams(params) }); } __name(_bigint, "_bigint"); // @__NO_SIDE_EFFECTS__ function _coercedBigint(Class2, params) { return new Class2({ type: "bigint", coerce: true, ...normalizeParams(params) }); } __name(_coercedBigint, "_coercedBigint"); // @__NO_SIDE_EFFECTS__ function _int64(Class2, params) { return new Class2({ type: "bigint", check: "bigint_format", abort: false, format: "int64", ...normalizeParams(params) }); } __name(_int64, "_int64"); // @__NO_SIDE_EFFECTS__ function _uint64(Class2, params) { return new Class2({ type: "bigint", check: "bigint_format", abort: false, format: "uint64", ...normalizeParams(params) }); } __name(_uint64, "_uint64"); // @__NO_SIDE_EFFECTS__ function _symbol(Class2, params) { return new Class2({ type: "symbol", ...normalizeParams(params) }); } __name(_symbol, "_symbol"); // @__NO_SIDE_EFFECTS__ function _undefined2(Class2, params) { return new Class2({ type: "undefined", ...normalizeParams(params) }); } __name(_undefined2, "_undefined"); // @__NO_SIDE_EFFECTS__ function _null2(Class2, params) { return new Class2({ type: "null", ...normalizeParams(params) }); } __name(_null2, "_null"); // @__NO_SIDE_EFFECTS__ function _any(Class2) { return new Class2({ type: "any" }); } __name(_any, "_any"); // @__NO_SIDE_EFFECTS__ function _unknown(Class2) { return new Class2({ type: "unknown" }); } __name(_unknown, "_unknown"); // @__NO_SIDE_EFFECTS__ function _never(Class2, params) { return new Class2({ type: "never", ...normalizeParams(params) }); } __name(_never, "_never"); // @__NO_SIDE_EFFECTS__ function _void(Class2, params) { return new Class2({ type: "void", ...normalizeParams(params) }); } __name(_void, "_void"); // @__NO_SIDE_EFFECTS__ function _date(Class2, params) { return new Class2({ type: "date", ...normalizeParams(params) }); } __name(_date, "_date"); // @__NO_SIDE_EFFECTS__ function _coercedDate(Class2, params) { return new Class2({ type: "date", coerce: true, ...normalizeParams(params) }); } __name(_coercedDate, "_coercedDate"); // @__NO_SIDE_EFFECTS__ function _nan(Class2, params) { return new Class2({ type: "nan", ...normalizeParams(params) }); } __name(_nan, "_nan"); // @__NO_SIDE_EFFECTS__ function _lt(value, params) { return new $ZodCheckLessThan({ check: "less_than", ...normalizeParams(params), value, inclusive: false }); } __name(_lt, "_lt"); // @__NO_SIDE_EFFECTS__ function _lte(value, params) { return new $ZodCheckLessThan({ check: "less_than", ...normalizeParams(params), value, inclusive: true }); } __name(_lte, "_lte"); // @__NO_SIDE_EFFECTS__ function _gt(value, params) { return new $ZodCheckGreaterThan({ check: "greater_than", ...normalizeParams(params), value, inclusive: false }); } __name(_gt, "_gt"); // @__NO_SIDE_EFFECTS__ function _gte(value, params) { return new $ZodCheckGreaterThan({ check: "greater_than", ...normalizeParams(params), value, inclusive: true }); } __name(_gte, "_gte"); // @__NO_SIDE_EFFECTS__ function _positive(params) { return /* @__PURE__ */ _gt(0, params); } __name(_positive, "_positive"); // @__NO_SIDE_EFFECTS__ function _negative(params) { return /* @__PURE__ */ _lt(0, params); } __name(_negative, "_negative"); // @__NO_SIDE_EFFECTS__ function _nonpositive(params) { return /* @__PURE__ */ _lte(0, params); } __name(_nonpositive, "_nonpositive"); // @__NO_SIDE_EFFECTS__ function _nonnegative(params) { return /* @__PURE__ */ _gte(0, params); } __name(_nonnegative, "_nonnegative"); // @__NO_SIDE_EFFECTS__ function _multipleOf(value, params) { return new $ZodCheckMultipleOf({ check: "multiple_of", ...normalizeParams(params), value }); } __name(_multipleOf, "_multipleOf"); // @__NO_SIDE_EFFECTS__ function _maxSize(maximum, params) { return new $ZodCheckMaxSize({ check: "max_size", ...normalizeParams(params), maximum }); } __name(_maxSize, "_maxSize"); // @__NO_SIDE_EFFECTS__ function _minSize(minimum, params) { return new $ZodCheckMinSize({ check: "min_size", ...normalizeParams(params), minimum }); } __name(_minSize, "_minSize"); // @__NO_SIDE_EFFECTS__ function _size(size, params) { return new $ZodCheckSizeEquals({ check: "size_equals", ...normalizeParams(params), size }); } __name(_size, "_size"); // @__NO_SIDE_EFFECTS__ function _maxLength(maximum, params) { const ch = new $ZodCheckMaxLength({ check: "max_length", ...normalizeParams(params), maximum }); return ch; } __name(_maxLength, "_maxLength"); // @__NO_SIDE_EFFECTS__ function _minLength(minimum, params) { return new $ZodCheckMinLength({ check: "min_length", ...normalizeParams(params), minimum }); } __name(_minLength, "_minLength"); // @__NO_SIDE_EFFECTS__ function _length(length, params) { return new $ZodCheckLengthEquals({ check: "length_equals", ...normalizeParams(params), length }); } __name(_length, "_length"); // @__NO_SIDE_EFFECTS__ function _regex(pattern, params) { return new $ZodCheckRegex({ check: "string_format", format: "regex", ...normalizeParams(params), pattern }); } __name(_regex, "_regex"); // @__NO_SIDE_EFFECTS__ function _lowercase(params) { return new $ZodCheckLowerCase({ check: "string_format", format: "lowercase", ...normalizeParams(params) }); } __name(_lowercase, "_lowercase"); // @__NO_SIDE_EFFECTS__ function _uppercase(params) { return new $ZodCheckUpperCase({ check: "string_format", format: "uppercase", ...normalizeParams(params) }); } __name(_uppercase, "_uppercase"); // @__NO_SIDE_EFFECTS__ function _includes(includes, params) { return new $ZodCheckIncludes({ check: "string_format", format: "includes", ...normalizeParams(params), includes }); } __name(_includes, "_includes"); // @__NO_SIDE_EFFECTS__ function _startsWith(prefix, params) { return new $ZodCheckStartsWith({ check: "string_format", format: "starts_with", ...normalizeParams(params), prefix }); } __name(_startsWith, "_startsWith"); // @__NO_SIDE_EFFECTS__ function _endsWith(suffix, params) { return new $ZodCheckEndsWith({ check: "string_format", format: "ends_with", ...normalizeParams(params), suffix }); } __name(_endsWith, "_endsWith"); // @__NO_SIDE_EFFECTS__ function _property(property, schema, params) { return new $ZodCheckProperty({ check: "property", property, schema, ...normalizeParams(params) }); } __name(_property, "_property"); // @__NO_SIDE_EFFECTS__ function _mime(types, params) { return new $ZodCheckMimeType({ check: "mime_type", mime: types, ...normalizeParams(params) }); } __name(_mime, "_mime"); // @__NO_SIDE_EFFECTS__ function _overwrite(tx) { return new $ZodCheckOverwrite({ check: "overwrite", tx }); } __name(_overwrite, "_overwrite"); // @__NO_SIDE_EFFECTS__ function _normalize(form) { return /* @__PURE__ */ _overwrite((input) => input.normalize(form)); } __name(_normalize, "_normalize"); // @__NO_SIDE_EFFECTS__ function _trim() { return /* @__PURE__ */ _overwrite((input) => input.trim()); } __name(_trim, "_trim"); // @__NO_SIDE_EFFECTS__ function _toLowerCase() { return /* @__PURE__ */ _overwrite((input) => input.toLowerCase()); } __name(_toLowerCase, "_toLowerCase"); // @__NO_SIDE_EFFECTS__ function _toUpperCase() { return /* @__PURE__ */ _overwrite((input) => input.toUpperCase()); } __name(_toUpperCase, "_toUpperCase"); // @__NO_SIDE_EFFECTS__ function _slugify() { return /* @__PURE__ */ _overwrite((input) => slugify(input)); } __name(_slugify, "_slugify"); // @__NO_SIDE_EFFECTS__ function _array(Class2, element, params) { return new Class2({ type: "array", element, // get element() { // return element; // }, ...normalizeParams(params) }); } __name(_array, "_array"); // @__NO_SIDE_EFFECTS__ function _union(Class2, options, params) { return new Class2({ type: "union", options, ...normalizeParams(params) }); } __name(_union, "_union"); function _xor(Class2, options, params) { return new Class2({ type: "union", options, inclusive: false, ...normalizeParams(params) }); } __name(_xor, "_xor"); // @__NO_SIDE_EFFECTS__ function _discriminatedUnion(Class2, discriminator, options, params) { return new Class2({ type: "union", options, discriminator, ...normalizeParams(params) }); } __name(_discriminatedUnion, "_discriminatedUnion"); // @__NO_SIDE_EFFECTS__ function _intersection(Class2, left, right) { return new Class2({ type: "intersection", left, right }); } __name(_intersection, "_intersection"); // @__NO_SIDE_EFFECTS__ function _tuple(Class2, items, _paramsOrRest, _params) { const hasRest = _paramsOrRest instanceof $ZodType; const params = hasRest ? _params : _paramsOrRest; const rest = hasRest ? _paramsOrRest : null; return new Class2({ type: "tuple", items, rest, ...normalizeParams(params) }); } __name(_tuple, "_tuple"); // @__NO_SIDE_EFFECTS__ function _record(Class2, keyType, valueType, params) { return new Class2({ type: "record", keyType, valueType, ...normalizeParams(params) }); } __name(_record, "_record"); // @__NO_SIDE_EFFECTS__ function _map(Class2, keyType, valueType, params) { return new Class2({ type: "map", keyType, valueType, ...normalizeParams(params) }); } __name(_map, "_map"); // @__NO_SIDE_EFFECTS__ function _set(Class2, valueType, params) { return new Class2({ type: "set", valueType, ...normalizeParams(params) }); } __name(_set, "_set"); // @__NO_SIDE_EFFECTS__ function _enum(Class2, values, params) { const entries = Array.isArray(values) ? Object.fromEntries(values.map((v2) => [v2, v2])) : values; return new Class2({ type: "enum", entries, ...normalizeParams(params) }); } __name(_enum, "_enum"); // @__NO_SIDE_EFFECTS__ function _nativeEnum(Class2, entries, params) { return new Class2({ type: "enum", entries, ...normalizeParams(params) }); } __name(_nativeEnum, "_nativeEnum"); // @__NO_SIDE_EFFECTS__ function _literal(Class2, value, params) { return new Class2({ type: "literal", values: Array.isArray(value) ? value : [value], ...normalizeParams(params) }); } __name(_literal, "_literal"); // @__NO_SIDE_EFFECTS__ function _file(Class2, params) { return new Class2({ type: "file", ...normalizeParams(params) }); } __name(_file, "_file"); // @__NO_SIDE_EFFECTS__ function _transform(Class2, fn) { return new Class2({ type: "transform", transform: fn }); } __name(_transform, "_transform"); // @__NO_SIDE_EFFECTS__ function _optional(Class2, innerType) { return new Class2({ type: "optional", innerType }); } __name(_optional, "_optional"); // @__NO_SIDE_EFFECTS__ function _nullable(Class2, innerType) { return new Class2({ type: "nullable", innerType }); } __name(_nullable, "_nullable"); // @__NO_SIDE_EFFECTS__ function _default(Class2, innerType, defaultValue) { return new Class2({ type: "default", innerType, get defaultValue() { return typeof defaultValue === "function" ? defaultValue() : shallowClone(defaultValue); } }); } __name(_default, "_default"); // @__NO_SIDE_EFFECTS__ function _nonoptional(Class2, innerType, params) { return new Class2({ type: "nonoptional", innerType, ...normalizeParams(params) }); } __name(_nonoptional, "_nonoptional"); // @__NO_SIDE_EFFECTS__ function _success(Class2, innerType) { return new Class2({ type: "success", innerType }); } __name(_success, "_success"); // @__NO_SIDE_EFFECTS__ function _catch(Class2, innerType, catchValue) { return new Class2({ type: "catch", innerType, catchValue: typeof catchValue === "function" ? catchValue : () => catchValue }); } __name(_catch, "_catch"); // @__NO_SIDE_EFFECTS__ function _pipe(Class2, in_, out) { return new Class2({ type: "pipe", in: in_, out }); } __name(_pipe, "_pipe"); // @__NO_SIDE_EFFECTS__ function _readonly(Class2, innerType) { return new Class2({ type: "readonly", innerType }); } __name(_readonly, "_readonly"); // @__NO_SIDE_EFFECTS__ function _templateLiteral(Class2, parts, params) { return new Class2({ type: "template_literal", parts, ...normalizeParams(params) }); } __name(_templateLiteral, "_templateLiteral"); // @__NO_SIDE_EFFECTS__ function _lazy(Class2, getter) { return new Class2({ type: "lazy", getter }); } __name(_lazy, "_lazy"); // @__NO_SIDE_EFFECTS__ function _promise(Class2, innerType) { return new Class2({ type: "promise", innerType }); } __name(_promise, "_promise"); // @__NO_SIDE_EFFECTS__ function _custom(Class2, fn, _params) { const norm = normalizeParams(_params); norm.abort ?? (norm.abort = true); const schema = new Class2({ type: "custom", check: "custom", fn, ...norm }); return schema; } __name(_custom, "_custom"); // @__NO_SIDE_EFFECTS__ function _refine(Class2, fn, _params) { const schema = new Class2({ type: "custom", check: "custom", fn, ...normalizeParams(_params) }); return schema; } __name(_refine, "_refine"); // @__NO_SIDE_EFFECTS__ function _superRefine(fn) { const ch = /* @__PURE__ */ _check((payload) => { payload.addIssue = (issue2) => { if (typeof issue2 === "string") { payload.issues.push(issue(issue2, payload.value, ch._zod.def)); } else { const _issue = issue2; if (_issue.fatal) _issue.continue = false; _issue.code ?? (_issue.code = "custom"); _issue.input ?? (_issue.input = payload.value); _issue.inst ?? (_issue.inst = ch); _issue.continue ?? (_issue.continue = !ch._zod.def.abort); payload.issues.push(issue(_issue)); } }; return fn(payload.value, payload); }); return ch; } __name(_superRefine, "_superRefine"); // @__NO_SIDE_EFFECTS__ function _check(fn, params) { const ch = new $ZodCheck({ check: "custom", ...normalizeParams(params) }); ch._zod.check = fn; return ch; } __name(_check, "_check"); // @__NO_SIDE_EFFECTS__ function describe(description) { const ch = new $ZodCheck({ check: "describe" }); ch._zod.onattach = [ (inst) => { const existing = globalRegistry.get(inst) ?? {}; globalRegistry.add(inst, { ...existing, description }); } ]; ch._zod.check = () => { }; return ch; } __name(describe, "describe"); // @__NO_SIDE_EFFECTS__ function meta(metadata) { const ch = new $ZodCheck({ check: "meta" }); ch._zod.onattach = [ (inst) => { const existing = globalRegistry.get(inst) ?? {}; globalRegistry.add(inst, { ...existing, ...metadata }); } ]; ch._zod.check = () => { }; return ch; } __name(meta, "meta"); // @__NO_SIDE_EFFECTS__ function _stringbool(Classes, _params) { const params = normalizeParams(_params); let truthyArray = params.truthy ?? ["true", "1", "yes", "on", "y", "enabled"]; let falsyArray = params.falsy ?? ["false", "0", "no", "off", "n", "disabled"]; if (params.case !== "sensitive") { truthyArray = truthyArray.map((v2) => typeof v2 === "string" ? v2.toLowerCase() : v2); falsyArray = falsyArray.map((v2) => typeof v2 === "string" ? v2.toLowerCase() : v2); } const truthySet = new Set(truthyArray); const falsySet = new Set(falsyArray); const _Codec = Classes.Codec ?? $ZodCodec; const _Boolean = Classes.Boolean ?? $ZodBoolean; const _String = Classes.String ?? $ZodString; const stringSchema = new _String({ type: "string", error: params.error }); const booleanSchema = new _Boolean({ type: "boolean", error: params.error }); const codec2 = new _Codec({ type: "pipe", in: stringSchema, out: booleanSchema, transform: /* @__PURE__ */ __name(((input, payload) => { let data = input; if (params.case !== "sensitive") data = data.toLowerCase(); if (truthySet.has(data)) { return true; } else if (falsySet.has(data)) { return false; } else { payload.issues.push({ code: "invalid_value", expected: "stringbool", values: [...truthySet, ...falsySet], input: payload.value, inst: codec2, continue: false }); return {}; } }), "transform"), reverseTransform: /* @__PURE__ */ __name(((input, _payload) => { if (input === true) { return truthyArray[0] || "true"; } else { return falsyArray[0] || "false"; } }), "reverseTransform"), error: params.error }); return codec2; } __name(_stringbool, "_stringbool"); // @__NO_SIDE_EFFECTS__ function _stringFormat(Class2, format, fnOrRegex, _params = {}) { const params = normalizeParams(_params); const def = { ...normalizeParams(_params), check: "string_format", type: "string", format, fn: typeof fnOrRegex === "function" ? fnOrRegex : (val) => fnOrRegex.test(val), ...params }; if (fnOrRegex instanceof RegExp) { def.pattern = fnOrRegex; } const inst = new Class2(def); return inst; } __name(_stringFormat, "_stringFormat"); // ../../node_modules/zod/v4/core/to-json-schema.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); function initializeContext(params) { let target2 = params?.target ?? "draft-2020-12"; if (target2 === "draft-4") target2 = "draft-04"; if (target2 === "draft-7") target2 = "draft-07"; return { processors: params.processors ?? {}, metadataRegistry: params?.metadata ?? globalRegistry, target: target2, unrepresentable: params?.unrepresentable ?? "throw", override: params?.override ?? (() => { }), io: params?.io ?? "output", counter: 0, seen: /* @__PURE__ */ new Map(), cycles: params?.cycles ?? "ref", reused: params?.reused ?? "inline", external: params?.external ?? void 0 }; } __name(initializeContext, "initializeContext"); function process2(schema, ctx, _params = { path: [], schemaPath: [] }) { var _a2; const def = schema._zod.def; const seen = ctx.seen.get(schema); if (seen) { seen.count++; const isCycle = _params.schemaPath.includes(schema); if (isCycle) { seen.cycle = _params.path; } return seen.schema; } const result = { schema: {}, count: 1, cycle: void 0, path: _params.path }; ctx.seen.set(schema, result); const overrideSchema = schema._zod.toJSONSchema?.(); if (overrideSchema) { result.schema = overrideSchema; } else { const params = { ..._params, schemaPath: [..._params.schemaPath, schema], path: _params.path }; if (schema._zod.processJSONSchema) { schema._zod.processJSONSchema(ctx, result.schema, params); } else { const _json = result.schema; const processor = ctx.processors[def.type]; if (!processor) { throw new Error(`[toJSONSchema]: Non-representable type encountered: ${def.type}`); } processor(schema, ctx, _json, params); } const parent = schema._zod.parent; if (parent) { if (!result.ref) result.ref = parent; process2(parent, ctx, params); ctx.seen.get(parent).isParent = true; } } const meta3 = ctx.metadataRegistry.get(schema); if (meta3) Object.assign(result.schema, meta3); if (ctx.io === "input" && isTransforming(schema)) { delete result.schema.examples; delete result.schema.default; } if (ctx.io === "input" && result.schema._prefault) (_a2 = result.schema).default ?? (_a2.default = result.schema._prefault); delete result.schema._prefault; const _result = ctx.seen.get(schema); return _result.schema; } __name(process2, "process"); function extractDefs(ctx, schema) { const root = ctx.seen.get(schema); if (!root) throw new Error("Unprocessed schema. This is a bug in Zod."); const idToSchema = /* @__PURE__ */ new Map(); for (const entry of ctx.seen.entries()) { const id = ctx.metadataRegistry.get(entry[0])?.id; if (id) { const existing = idToSchema.get(id); if (existing && existing !== entry[0]) { throw new Error(`Duplicate schema id "${id}" detected during JSON Schema conversion. Two different schemas cannot share the same id when converted together.`); } idToSchema.set(id, entry[0]); } } const makeURI = /* @__PURE__ */ __name((entry) => { const defsSegment = ctx.target === "draft-2020-12" ? "$defs" : "definitions"; if (ctx.external) { const externalId = ctx.external.registry.get(entry[0])?.id; const uriGenerator = ctx.external.uri ?? ((id2) => id2); if (externalId) { return { ref: uriGenerator(externalId) }; } const id = entry[1].defId ?? entry[1].schema.id ?? `schema${ctx.counter++}`; entry[1].defId = id; return { defId: id, ref: `${uriGenerator("__shared")}#/${defsSegment}/${id}` }; } if (entry[1] === root) { return { ref: "#" }; } const uriPrefix = `#`; const defUriPrefix = `${uriPrefix}/${defsSegment}/`; const defId = entry[1].schema.id ?? `__schema${ctx.counter++}`; return { defId, ref: defUriPrefix + defId }; }, "makeURI"); const extractToDef = /* @__PURE__ */ __name((entry) => { if (entry[1].schema.$ref) { return; } const seen = entry[1]; const { ref: ref2, defId } = makeURI(entry); seen.def = { ...seen.schema }; if (defId) seen.defId = defId; const schema2 = seen.schema; for (const key in schema2) { delete schema2[key]; } schema2.$ref = ref2; }, "extractToDef"); if (ctx.cycles === "throw") { for (const entry of ctx.seen.entries()) { const seen = entry[1]; if (seen.cycle) { throw new Error(`Cycle detected: #/${seen.cycle?.join("/")}/ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.`); } } } for (const entry of ctx.seen.entries()) { const seen = entry[1]; if (schema === entry[0]) { extractToDef(entry); continue; } if (ctx.external) { const ext = ctx.external.registry.get(entry[0])?.id; if (schema !== entry[0] && ext) { extractToDef(entry); continue; } } const id = ctx.metadataRegistry.get(entry[0])?.id; if (id) { extractToDef(entry); continue; } if (seen.cycle) { extractToDef(entry); continue; } if (seen.count > 1) { if (ctx.reused === "ref") { extractToDef(entry); continue; } } } } __name(extractDefs, "extractDefs"); function finalize(ctx, schema) { const root = ctx.seen.get(schema); if (!root) throw new Error("Unprocessed schema. This is a bug in Zod."); const flattenRef = /* @__PURE__ */ __name((zodSchema) => { const seen = ctx.seen.get(zodSchema); if (seen.ref === null) return; const schema2 = seen.def ?? seen.schema; const _cached = { ...schema2 }; const ref2 = seen.ref; seen.ref = null; if (ref2) { flattenRef(ref2); const refSeen = ctx.seen.get(ref2); const refSchema = refSeen.schema; if (refSchema.$ref && (ctx.target === "draft-07" || ctx.target === "draft-04" || ctx.target === "openapi-3.0")) { schema2.allOf = schema2.allOf ?? []; schema2.allOf.push(refSchema); } else { Object.assign(schema2, refSchema); } Object.assign(schema2, _cached); const isParentRef = zodSchema._zod.parent === ref2; if (isParentRef) { for (const key in schema2) { if (key === "$ref" || key === "allOf") continue; if (!(key in _cached)) { delete schema2[key]; } } } if (refSchema.$ref && refSeen.def) { for (const key in schema2) { if (key === "$ref" || key === "allOf") continue; if (key in refSeen.def && JSON.stringify(schema2[key]) === JSON.stringify(refSeen.def[key])) { delete schema2[key]; } } } } const parent = zodSchema._zod.parent; if (parent && parent !== ref2) { flattenRef(parent); const parentSeen = ctx.seen.get(parent); if (parentSeen?.schema.$ref) { schema2.$ref = parentSeen.schema.$ref; if (parentSeen.def) { for (const key in schema2) { if (key === "$ref" || key === "allOf") continue; if (key in parentSeen.def && JSON.stringify(schema2[key]) === JSON.stringify(parentSeen.def[key])) { delete schema2[key]; } } } } } ctx.override({ zodSchema, jsonSchema: schema2, path: seen.path ?? [] }); }, "flattenRef"); for (const entry of [...ctx.seen.entries()].reverse()) { flattenRef(entry[0]); } const result = {}; if (ctx.target === "draft-2020-12") { result.$schema = "https://json-schema.org/draft/2020-12/schema"; } else if (ctx.target === "draft-07") { result.$schema = "http://json-schema.org/draft-07/schema#"; } else if (ctx.target === "draft-04") { result.$schema = "http://json-schema.org/draft-04/schema#"; } else if (ctx.target === "openapi-3.0") { } else { } if (ctx.external?.uri) { const id = ctx.external.registry.get(schema)?.id; if (!id) throw new Error("Schema is missing an `id` property"); result.$id = ctx.external.uri(id); } Object.assign(result, root.def ?? root.schema); const defs = ctx.external?.defs ?? {}; for (const entry of ctx.seen.entries()) { const seen = entry[1]; if (seen.def && seen.defId) { defs[seen.defId] = seen.def; } } if (ctx.external) { } else { if (Object.keys(defs).length > 0) { if (ctx.target === "draft-2020-12") { result.$defs = defs; } else { result.definitions = defs; } } } try { const finalized = JSON.parse(JSON.stringify(result)); Object.defineProperty(finalized, "~standard", { value: { ...schema["~standard"], jsonSchema: { input: createStandardJSONSchemaMethod(schema, "input", ctx.processors), output: createStandardJSONSchemaMethod(schema, "output", ctx.processors) } }, enumerable: false, writable: false }); return finalized; } catch (_err) { throw new Error("Error converting schema to JSON."); } } __name(finalize, "finalize"); function isTransforming(_schema, _ctx) { const ctx = _ctx ?? { seen: /* @__PURE__ */ new Set() }; if (ctx.seen.has(_schema)) return false; ctx.seen.add(_schema); const def = _schema._zod.def; if (def.type === "transform") return true; if (def.type === "array") return isTransforming(def.element, ctx); if (def.type === "set") return isTransforming(def.valueType, ctx); if (def.type === "lazy") return isTransforming(def.getter(), ctx); if (def.type === "promise" || def.type === "optional" || def.type === "nonoptional" || def.type === "nullable" || def.type === "readonly" || def.type === "default" || def.type === "prefault") { return isTransforming(def.innerType, ctx); } if (def.type === "intersection") { return isTransforming(def.left, ctx) || isTransforming(def.right, ctx); } if (def.type === "record" || def.type === "map") { return isTransforming(def.keyType, ctx) || isTransforming(def.valueType, ctx); } if (def.type === "pipe") { return isTransforming(def.in, ctx) || isTransforming(def.out, ctx); } if (def.type === "object") { for (const key in def.shape) { if (isTransforming(def.shape[key], ctx)) return true; } return false; } if (def.type === "union") { for (const option of def.options) { if (isTransforming(option, ctx)) return true; } return false; } if (def.type === "tuple") { for (const item of def.items) { if (isTransforming(item, ctx)) return true; } if (def.rest && isTransforming(def.rest, ctx)) return true; return false; } return false; } __name(isTransforming, "isTransforming"); var createToJSONSchemaMethod = /* @__PURE__ */ __name((schema, processors = {}) => (params) => { const ctx = initializeContext({ ...params, processors }); process2(schema, ctx); extractDefs(ctx, schema); return finalize(ctx, schema); }, "createToJSONSchemaMethod"); var createStandardJSONSchemaMethod = /* @__PURE__ */ __name((schema, io, processors = {}) => (params) => { const { libraryOptions, target: target2 } = params ?? {}; const ctx = initializeContext({ ...libraryOptions ?? {}, target: target2, io, processors }); process2(schema, ctx); extractDefs(ctx, schema); return finalize(ctx, schema); }, "createStandardJSONSchemaMethod"); // ../../node_modules/zod/v4/core/json-schema-processors.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var formatMap = { guid: "uuid", url: "uri", datetime: "date-time", json_string: "json-string", regex: "" // do not set }; var stringProcessor = /* @__PURE__ */ __name((schema, ctx, _json, _params) => { const json2 = _json; json2.type = "string"; const { minimum, maximum, format, patterns, contentEncoding } = schema._zod.bag; if (typeof minimum === "number") json2.minLength = minimum; if (typeof maximum === "number") json2.maxLength = maximum; if (format) { json2.format = formatMap[format] ?? format; if (json2.format === "") delete json2.format; if (format === "time") { delete json2.format; } } if (contentEncoding) json2.contentEncoding = contentEncoding; if (patterns && patterns.size > 0) { const regexes = [...patterns]; if (regexes.length === 1) json2.pattern = regexes[0].source; else if (regexes.length > 1) { json2.allOf = [ ...regexes.map((regex) => ({ ...ctx.target === "draft-07" || ctx.target === "draft-04" || ctx.target === "openapi-3.0" ? { type: "string" } : {}, pattern: regex.source })) ]; } } }, "stringProcessor"); var numberProcessor = /* @__PURE__ */ __name((schema, ctx, _json, _params) => { const json2 = _json; const { minimum, maximum, format, multipleOf, exclusiveMaximum, exclusiveMinimum } = schema._zod.bag; if (typeof format === "string" && format.includes("int")) json2.type = "integer"; else json2.type = "number"; if (typeof exclusiveMinimum === "number") { if (ctx.target === "draft-04" || ctx.target === "openapi-3.0") { json2.minimum = exclusiveMinimum; json2.exclusiveMinimum = true; } else { json2.exclusiveMinimum = exclusiveMinimum; } } if (typeof minimum === "number") { json2.minimum = minimum; if (typeof exclusiveMinimum === "number" && ctx.target !== "draft-04") { if (exclusiveMinimum >= minimum) delete json2.minimum; else delete json2.exclusiveMinimum; } } if (typeof exclusiveMaximum === "number") { if (ctx.target === "draft-04" || ctx.target === "openapi-3.0") { json2.maximum = exclusiveMaximum; json2.exclusiveMaximum = true; } else { json2.exclusiveMaximum = exclusiveMaximum; } } if (typeof maximum === "number") { json2.maximum = maximum; if (typeof exclusiveMaximum === "number" && ctx.target !== "draft-04") { if (exclusiveMaximum <= maximum) delete json2.maximum; else delete json2.exclusiveMaximum; } } if (typeof multipleOf === "number") json2.multipleOf = multipleOf; }, "numberProcessor"); var booleanProcessor = /* @__PURE__ */ __name((_schema, _ctx, json2, _params) => { json2.type = "boolean"; }, "booleanProcessor"); var bigintProcessor = /* @__PURE__ */ __name((_schema, ctx, _json, _params) => { if (ctx.unrepresentable === "throw") { throw new Error("BigInt cannot be represented in JSON Schema"); } }, "bigintProcessor"); var symbolProcessor = /* @__PURE__ */ __name((_schema, ctx, _json, _params) => { if (ctx.unrepresentable === "throw") { throw new Error("Symbols cannot be represented in JSON Schema"); } }, "symbolProcessor"); var nullProcessor = /* @__PURE__ */ __name((_schema, ctx, json2, _params) => { if (ctx.target === "openapi-3.0") { json2.type = "string"; json2.nullable = true; json2.enum = [null]; } else { json2.type = "null"; } }, "nullProcessor"); var undefinedProcessor = /* @__PURE__ */ __name((_schema, ctx, _json, _params) => { if (ctx.unrepresentable === "throw") { throw new Error("Undefined cannot be represented in JSON Schema"); } }, "undefinedProcessor"); var voidProcessor = /* @__PURE__ */ __name((_schema, ctx, _json, _params) => { if (ctx.unrepresentable === "throw") { throw new Error("Void cannot be represented in JSON Schema"); } }, "voidProcessor"); var neverProcessor = /* @__PURE__ */ __name((_schema, _ctx, json2, _params) => { json2.not = {}; }, "neverProcessor"); var anyProcessor = /* @__PURE__ */ __name((_schema, _ctx, _json, _params) => { }, "anyProcessor"); var unknownProcessor = /* @__PURE__ */ __name((_schema, _ctx, _json, _params) => { }, "unknownProcessor"); var dateProcessor = /* @__PURE__ */ __name((_schema, ctx, _json, _params) => { if (ctx.unrepresentable === "throw") { throw new Error("Date cannot be represented in JSON Schema"); } }, "dateProcessor"); var enumProcessor = /* @__PURE__ */ __name((schema, _ctx, json2, _params) => { const def = schema._zod.def; const values = getEnumValues(def.entries); if (values.every((v2) => typeof v2 === "number")) json2.type = "number"; if (values.every((v2) => typeof v2 === "string")) json2.type = "string"; json2.enum = values; }, "enumProcessor"); var literalProcessor = /* @__PURE__ */ __name((schema, ctx, json2, _params) => { const def = schema._zod.def; const vals = []; for (const val of def.values) { if (val === void 0) { if (ctx.unrepresentable === "throw") { throw new Error("Literal `undefined` cannot be represented in JSON Schema"); } else { } } else if (typeof val === "bigint") { if (ctx.unrepresentable === "throw") { throw new Error("BigInt literals cannot be represented in JSON Schema"); } else { vals.push(Number(val)); } } else { vals.push(val); } } if (vals.length === 0) { } else if (vals.length === 1) { const val = vals[0]; json2.type = val === null ? "null" : typeof val; if (ctx.target === "draft-04" || ctx.target === "openapi-3.0") { json2.enum = [val]; } else { json2.const = val; } } else { if (vals.every((v2) => typeof v2 === "number")) json2.type = "number"; if (vals.every((v2) => typeof v2 === "string")) json2.type = "string"; if (vals.every((v2) => typeof v2 === "boolean")) json2.type = "boolean"; if (vals.every((v2) => v2 === null)) json2.type = "null"; json2.enum = vals; } }, "literalProcessor"); var nanProcessor = /* @__PURE__ */ __name((_schema, ctx, _json, _params) => { if (ctx.unrepresentable === "throw") { throw new Error("NaN cannot be represented in JSON Schema"); } }, "nanProcessor"); var templateLiteralProcessor = /* @__PURE__ */ __name((schema, _ctx, json2, _params) => { const _json = json2; const pattern = schema._zod.pattern; if (!pattern) throw new Error("Pattern not found in template literal"); _json.type = "string"; _json.pattern = pattern.source; }, "templateLiteralProcessor"); var fileProcessor = /* @__PURE__ */ __name((schema, _ctx, json2, _params) => { const _json = json2; const file2 = { type: "string", format: "binary", contentEncoding: "binary" }; const { minimum, maximum, mime } = schema._zod.bag; if (minimum !== void 0) file2.minLength = minimum; if (maximum !== void 0) file2.maxLength = maximum; if (mime) { if (mime.length === 1) { file2.contentMediaType = mime[0]; Object.assign(_json, file2); } else { Object.assign(_json, file2); _json.anyOf = mime.map((m) => ({ contentMediaType: m })); } } else { Object.assign(_json, file2); } }, "fileProcessor"); var successProcessor = /* @__PURE__ */ __name((_schema, _ctx, json2, _params) => { json2.type = "boolean"; }, "successProcessor"); var customProcessor = /* @__PURE__ */ __name((_schema, ctx, _json, _params) => { if (ctx.unrepresentable === "throw") { throw new Error("Custom types cannot be represented in JSON Schema"); } }, "customProcessor"); var functionProcessor = /* @__PURE__ */ __name((_schema, ctx, _json, _params) => { if (ctx.unrepresentable === "throw") { throw new Error("Function types cannot be represented in JSON Schema"); } }, "functionProcessor"); var transformProcessor = /* @__PURE__ */ __name((_schema, ctx, _json, _params) => { if (ctx.unrepresentable === "throw") { throw new Error("Transforms cannot be represented in JSON Schema"); } }, "transformProcessor"); var mapProcessor = /* @__PURE__ */ __name((_schema, ctx, _json, _params) => { if (ctx.unrepresentable === "throw") { throw new Error("Map cannot be represented in JSON Schema"); } }, "mapProcessor"); var setProcessor = /* @__PURE__ */ __name((_schema, ctx, _json, _params) => { if (ctx.unrepresentable === "throw") { throw new Error("Set cannot be represented in JSON Schema"); } }, "setProcessor"); var arrayProcessor = /* @__PURE__ */ __name((schema, ctx, _json, params) => { const json2 = _json; const def = schema._zod.def; const { minimum, maximum } = schema._zod.bag; if (typeof minimum === "number") json2.minItems = minimum; if (typeof maximum === "number") json2.maxItems = maximum; json2.type = "array"; json2.items = process2(def.element, ctx, { ...params, path: [...params.path, "items"] }); }, "arrayProcessor"); var objectProcessor = /* @__PURE__ */ __name((schema, ctx, _json, params) => { const json2 = _json; const def = schema._zod.def; json2.type = "object"; json2.properties = {}; const shape = def.shape; for (const key in shape) { json2.properties[key] = process2(shape[key], ctx, { ...params, path: [...params.path, "properties", key] }); } const allKeys = new Set(Object.keys(shape)); const requiredKeys = new Set([...allKeys].filter((key) => { const v2 = def.shape[key]._zod; if (ctx.io === "input") { return v2.optin === void 0; } else { return v2.optout === void 0; } })); if (requiredKeys.size > 0) { json2.required = Array.from(requiredKeys); } if (def.catchall?._zod.def.type === "never") { json2.additionalProperties = false; } else if (!def.catchall) { if (ctx.io === "output") json2.additionalProperties = false; } else if (def.catchall) { json2.additionalProperties = process2(def.catchall, ctx, { ...params, path: [...params.path, "additionalProperties"] }); } }, "objectProcessor"); var unionProcessor = /* @__PURE__ */ __name((schema, ctx, json2, params) => { const def = schema._zod.def; const isExclusive = def.inclusive === false; const options = def.options.map((x, i) => process2(x, ctx, { ...params, path: [...params.path, isExclusive ? "oneOf" : "anyOf", i] })); if (isExclusive) { json2.oneOf = options; } else { json2.anyOf = options; } }, "unionProcessor"); var intersectionProcessor = /* @__PURE__ */ __name((schema, ctx, json2, params) => { const def = schema._zod.def; const a = process2(def.left, ctx, { ...params, path: [...params.path, "allOf", 0] }); const b = process2(def.right, ctx, { ...params, path: [...params.path, "allOf", 1] }); const isSimpleIntersection = /* @__PURE__ */ __name((val) => "allOf" in val && Object.keys(val).length === 1, "isSimpleIntersection"); const allOf = [ ...isSimpleIntersection(a) ? a.allOf : [a], ...isSimpleIntersection(b) ? b.allOf : [b] ]; json2.allOf = allOf; }, "intersectionProcessor"); var tupleProcessor = /* @__PURE__ */ __name((schema, ctx, _json, params) => { const json2 = _json; const def = schema._zod.def; json2.type = "array"; const prefixPath = ctx.target === "draft-2020-12" ? "prefixItems" : "items"; const restPath = ctx.target === "draft-2020-12" ? "items" : ctx.target === "openapi-3.0" ? "items" : "additionalItems"; const prefixItems = def.items.map((x, i) => process2(x, ctx, { ...params, path: [...params.path, prefixPath, i] })); const rest = def.rest ? process2(def.rest, ctx, { ...params, path: [...params.path, restPath, ...ctx.target === "openapi-3.0" ? [def.items.length] : []] }) : null; if (ctx.target === "draft-2020-12") { json2.prefixItems = prefixItems; if (rest) { json2.items = rest; } } else if (ctx.target === "openapi-3.0") { json2.items = { anyOf: prefixItems }; if (rest) { json2.items.anyOf.push(rest); } json2.minItems = prefixItems.length; if (!rest) { json2.maxItems = prefixItems.length; } } else { json2.items = prefixItems; if (rest) { json2.additionalItems = rest; } } const { minimum, maximum } = schema._zod.bag; if (typeof minimum === "number") json2.minItems = minimum; if (typeof maximum === "number") json2.maxItems = maximum; }, "tupleProcessor"); var recordProcessor = /* @__PURE__ */ __name((schema, ctx, _json, params) => { const json2 = _json; const def = schema._zod.def; json2.type = "object"; const keyType = def.keyType; const keyBag = keyType._zod.bag; const patterns = keyBag?.patterns; if (def.mode === "loose" && patterns && patterns.size > 0) { const valueSchema = process2(def.valueType, ctx, { ...params, path: [...params.path, "patternProperties", "*"] }); json2.patternProperties = {}; for (const pattern of patterns) { json2.patternProperties[pattern.source] = valueSchema; } } else { if (ctx.target === "draft-07" || ctx.target === "draft-2020-12") { json2.propertyNames = process2(def.keyType, ctx, { ...params, path: [...params.path, "propertyNames"] }); } json2.additionalProperties = process2(def.valueType, ctx, { ...params, path: [...params.path, "additionalProperties"] }); } const keyValues = keyType._zod.values; if (keyValues) { const validKeyValues = [...keyValues].filter((v2) => typeof v2 === "string" || typeof v2 === "number"); if (validKeyValues.length > 0) { json2.required = validKeyValues; } } }, "recordProcessor"); var nullableProcessor = /* @__PURE__ */ __name((schema, ctx, json2, params) => { const def = schema._zod.def; const inner = process2(def.innerType, ctx, params); const seen = ctx.seen.get(schema); if (ctx.target === "openapi-3.0") { seen.ref = def.innerType; json2.nullable = true; } else { json2.anyOf = [inner, { type: "null" }]; } }, "nullableProcessor"); var nonoptionalProcessor = /* @__PURE__ */ __name((schema, ctx, _json, params) => { const def = schema._zod.def; process2(def.innerType, ctx, params); const seen = ctx.seen.get(schema); seen.ref = def.innerType; }, "nonoptionalProcessor"); var defaultProcessor = /* @__PURE__ */ __name((schema, ctx, json2, params) => { const def = schema._zod.def; process2(def.innerType, ctx, params); const seen = ctx.seen.get(schema); seen.ref = def.innerType; json2.default = JSON.parse(JSON.stringify(def.defaultValue)); }, "defaultProcessor"); var prefaultProcessor = /* @__PURE__ */ __name((schema, ctx, json2, params) => { const def = schema._zod.def; process2(def.innerType, ctx, params); const seen = ctx.seen.get(schema); seen.ref = def.innerType; if (ctx.io === "input") json2._prefault = JSON.parse(JSON.stringify(def.defaultValue)); }, "prefaultProcessor"); var catchProcessor = /* @__PURE__ */ __name((schema, ctx, json2, params) => { const def = schema._zod.def; process2(def.innerType, ctx, params); const seen = ctx.seen.get(schema); seen.ref = def.innerType; let catchValue; try { catchValue = def.catchValue(void 0); } catch { throw new Error("Dynamic catch values are not supported in JSON Schema"); } json2.default = catchValue; }, "catchProcessor"); var pipeProcessor = /* @__PURE__ */ __name((schema, ctx, _json, params) => { const def = schema._zod.def; const innerType = ctx.io === "input" ? def.in._zod.def.type === "transform" ? def.out : def.in : def.out; process2(innerType, ctx, params); const seen = ctx.seen.get(schema); seen.ref = innerType; }, "pipeProcessor"); var readonlyProcessor = /* @__PURE__ */ __name((schema, ctx, json2, params) => { const def = schema._zod.def; process2(def.innerType, ctx, params); const seen = ctx.seen.get(schema); seen.ref = def.innerType; json2.readOnly = true; }, "readonlyProcessor"); var promiseProcessor = /* @__PURE__ */ __name((schema, ctx, _json, params) => { const def = schema._zod.def; process2(def.innerType, ctx, params); const seen = ctx.seen.get(schema); seen.ref = def.innerType; }, "promiseProcessor"); var optionalProcessor = /* @__PURE__ */ __name((schema, ctx, _json, params) => { const def = schema._zod.def; process2(def.innerType, ctx, params); const seen = ctx.seen.get(schema); seen.ref = def.innerType; }, "optionalProcessor"); var lazyProcessor = /* @__PURE__ */ __name((schema, ctx, _json, params) => { const innerType = schema._zod.innerType; process2(innerType, ctx, params); const seen = ctx.seen.get(schema); seen.ref = innerType; }, "lazyProcessor"); var allProcessors = { string: stringProcessor, number: numberProcessor, boolean: booleanProcessor, bigint: bigintProcessor, symbol: symbolProcessor, null: nullProcessor, undefined: undefinedProcessor, void: voidProcessor, never: neverProcessor, any: anyProcessor, unknown: unknownProcessor, date: dateProcessor, enum: enumProcessor, literal: literalProcessor, nan: nanProcessor, template_literal: templateLiteralProcessor, file: fileProcessor, success: successProcessor, custom: customProcessor, function: functionProcessor, transform: transformProcessor, map: mapProcessor, set: setProcessor, array: arrayProcessor, object: objectProcessor, union: unionProcessor, intersection: intersectionProcessor, tuple: tupleProcessor, record: recordProcessor, nullable: nullableProcessor, nonoptional: nonoptionalProcessor, default: defaultProcessor, prefault: prefaultProcessor, catch: catchProcessor, pipe: pipeProcessor, readonly: readonlyProcessor, promise: promiseProcessor, optional: optionalProcessor, lazy: lazyProcessor }; function toJSONSchema(input, params) { if ("_idmap" in input) { const registry2 = input; const ctx2 = initializeContext({ ...params, processors: allProcessors }); const defs = {}; for (const entry of registry2._idmap.entries()) { const [_, schema] = entry; process2(schema, ctx2); } const schemas = {}; const external = { registry: registry2, uri: params?.uri, defs }; ctx2.external = external; for (const entry of registry2._idmap.entries()) { const [key, schema] = entry; extractDefs(ctx2, schema); schemas[key] = finalize(ctx2, schema); } if (Object.keys(defs).length > 0) { const defsSegment = ctx2.target === "draft-2020-12" ? "$defs" : "definitions"; schemas.__shared = { [defsSegment]: defs }; } return { schemas }; } const ctx = initializeContext({ ...params, processors: allProcessors }); process2(input, ctx); extractDefs(ctx, input); return finalize(ctx, input); } __name(toJSONSchema, "toJSONSchema"); // ../../node_modules/zod/v4/core/json-schema-generator.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var JSONSchemaGenerator = class { static { __name(this, "JSONSchemaGenerator"); } /** @deprecated Access via ctx instead */ get metadataRegistry() { return this.ctx.metadataRegistry; } /** @deprecated Access via ctx instead */ get target() { return this.ctx.target; } /** @deprecated Access via ctx instead */ get unrepresentable() { return this.ctx.unrepresentable; } /** @deprecated Access via ctx instead */ get override() { return this.ctx.override; } /** @deprecated Access via ctx instead */ get io() { return this.ctx.io; } /** @deprecated Access via ctx instead */ get counter() { return this.ctx.counter; } set counter(value) { this.ctx.counter = value; } /** @deprecated Access via ctx instead */ get seen() { return this.ctx.seen; } constructor(params) { let normalizedTarget = params?.target ?? "draft-2020-12"; if (normalizedTarget === "draft-4") normalizedTarget = "draft-04"; if (normalizedTarget === "draft-7") normalizedTarget = "draft-07"; this.ctx = initializeContext({ processors: allProcessors, target: normalizedTarget, ...params?.metadata && { metadata: params.metadata }, ...params?.unrepresentable && { unrepresentable: params.unrepresentable }, ...params?.override && { override: params.override }, ...params?.io && { io: params.io } }); } /** * Process a schema to prepare it for JSON Schema generation. * This must be called before emit(). */ process(schema, _params = { path: [], schemaPath: [] }) { return process2(schema, this.ctx, _params); } /** * Emit the final JSON Schema after processing. * Must call process() first. */ emit(schema, _params) { if (_params) { if (_params.cycles) this.ctx.cycles = _params.cycles; if (_params.reused) this.ctx.reused = _params.reused; if (_params.external) this.ctx.external = _params.external; } extractDefs(this.ctx, schema); const result = finalize(this.ctx, schema); const { "~standard": _, ...plainResult } = result; return plainResult; } }; // ../../node_modules/zod/v4/core/json-schema.js var json_schema_exports = {}; init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/zod/v4/classic/schemas.js var schemas_exports2 = {}; __export(schemas_exports2, { ZodAny: () => ZodAny, ZodArray: () => ZodArray, ZodBase64: () => ZodBase64, ZodBase64URL: () => ZodBase64URL, ZodBigInt: () => ZodBigInt, ZodBigIntFormat: () => ZodBigIntFormat, ZodBoolean: () => ZodBoolean, ZodCIDRv4: () => ZodCIDRv4, ZodCIDRv6: () => ZodCIDRv6, ZodCUID: () => ZodCUID, ZodCUID2: () => ZodCUID2, ZodCatch: () => ZodCatch, ZodCodec: () => ZodCodec, ZodCustom: () => ZodCustom, ZodCustomStringFormat: () => ZodCustomStringFormat, ZodDate: () => ZodDate, ZodDefault: () => ZodDefault, ZodDiscriminatedUnion: () => ZodDiscriminatedUnion, ZodE164: () => ZodE164, ZodEmail: () => ZodEmail, ZodEmoji: () => ZodEmoji, ZodEnum: () => ZodEnum, ZodExactOptional: () => ZodExactOptional, ZodFile: () => ZodFile, ZodFunction: () => ZodFunction, ZodGUID: () => ZodGUID, ZodIPv4: () => ZodIPv4, ZodIPv6: () => ZodIPv6, ZodIntersection: () => ZodIntersection, ZodJWT: () => ZodJWT, ZodKSUID: () => ZodKSUID, ZodLazy: () => ZodLazy, ZodLiteral: () => ZodLiteral, ZodMAC: () => ZodMAC, ZodMap: () => ZodMap, ZodNaN: () => ZodNaN, ZodNanoID: () => ZodNanoID, ZodNever: () => ZodNever, ZodNonOptional: () => ZodNonOptional, ZodNull: () => ZodNull, ZodNullable: () => ZodNullable, ZodNumber: () => ZodNumber, ZodNumberFormat: () => ZodNumberFormat, ZodObject: () => ZodObject, ZodOptional: () => ZodOptional, ZodPipe: () => ZodPipe, ZodPrefault: () => ZodPrefault, ZodPromise: () => ZodPromise, ZodReadonly: () => ZodReadonly, ZodRecord: () => ZodRecord, ZodSet: () => ZodSet, ZodString: () => ZodString, ZodStringFormat: () => ZodStringFormat, ZodSuccess: () => ZodSuccess, ZodSymbol: () => ZodSymbol, ZodTemplateLiteral: () => ZodTemplateLiteral, ZodTransform: () => ZodTransform, ZodTuple: () => ZodTuple, ZodType: () => ZodType, ZodULID: () => ZodULID, ZodURL: () => ZodURL, ZodUUID: () => ZodUUID, ZodUndefined: () => ZodUndefined, ZodUnion: () => ZodUnion, ZodUnknown: () => ZodUnknown, ZodVoid: () => ZodVoid, ZodXID: () => ZodXID, ZodXor: () => ZodXor, _ZodString: () => _ZodString, _default: () => _default2, _function: () => _function, any: () => any, array: () => array, base64: () => base642, base64url: () => base64url2, bigint: () => bigint3, boolean: () => boolean2, catch: () => _catch2, check: () => check2, cidrv4: () => cidrv42, cidrv6: () => cidrv62, codec: () => codec, cuid: () => cuid3, cuid2: () => cuid22, custom: () => custom, date: () => date3, describe: () => describe2, discriminatedUnion: () => discriminatedUnion, e164: () => e1642, email: () => email2, emoji: () => emoji2, enum: () => _enum2, exactOptional: () => exactOptional, file: () => file, float32: () => float32, float64: () => float64, function: () => _function, guid: () => guid2, hash: () => hash, hex: () => hex2, hostname: () => hostname2, httpUrl: () => httpUrl, instanceof: () => _instanceof, int: () => int, int32: () => int32, int64: () => int64, intersection: () => intersection, ipv4: () => ipv42, ipv6: () => ipv62, json: () => json, jwt: () => jwt, keyof: () => keyof, ksuid: () => ksuid2, lazy: () => lazy2, literal: () => literal, looseObject: () => looseObject, looseRecord: () => looseRecord, mac: () => mac2, map: () => map, meta: () => meta2, nan: () => nan, nanoid: () => nanoid2, nativeEnum: () => nativeEnum, never: () => never, nonoptional: () => nonoptional, null: () => _null3, nullable: () => nullable, nullish: () => nullish2, number: () => number2, object: () => object, optional: () => optional, partialRecord: () => partialRecord, pipe: () => pipe, prefault: () => prefault, preprocess: () => preprocess, promise: () => promise, readonly: () => readonly, record: () => record, refine: () => refine, set: () => set, strictObject: () => strictObject, string: () => string2, stringFormat: () => stringFormat, stringbool: () => stringbool, success: () => success, superRefine: () => superRefine, symbol: () => symbol, templateLiteral: () => templateLiteral, transform: () => transform, tuple: () => tuple, uint32: () => uint32, uint64: () => uint64, ulid: () => ulid2, undefined: () => _undefined3, union: () => union2, unknown: () => unknown, url: () => url, uuid: () => uuid2, uuidv4: () => uuidv4, uuidv6: () => uuidv6, uuidv7: () => uuidv7, void: () => _void2, xid: () => xid2, xor: () => xor }); init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/zod/v4/classic/checks.js var checks_exports2 = {}; __export(checks_exports2, { endsWith: () => _endsWith, gt: () => _gt, gte: () => _gte, includes: () => _includes, length: () => _length, lowercase: () => _lowercase, lt: () => _lt, lte: () => _lte, maxLength: () => _maxLength, maxSize: () => _maxSize, mime: () => _mime, minLength: () => _minLength, minSize: () => _minSize, multipleOf: () => _multipleOf, negative: () => _negative, nonnegative: () => _nonnegative, nonpositive: () => _nonpositive, normalize: () => _normalize, overwrite: () => _overwrite, positive: () => _positive, property: () => _property, regex: () => _regex, size: () => _size, slugify: () => _slugify, startsWith: () => _startsWith, toLowerCase: () => _toLowerCase, toUpperCase: () => _toUpperCase, trim: () => _trim, uppercase: () => _uppercase }); init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/zod/v4/classic/iso.js var iso_exports = {}; __export(iso_exports, { ZodISODate: () => ZodISODate, ZodISODateTime: () => ZodISODateTime, ZodISODuration: () => ZodISODuration, ZodISOTime: () => ZodISOTime, date: () => date2, datetime: () => datetime2, duration: () => duration2, time: () => time5 }); init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var ZodISODateTime = /* @__PURE__ */ $constructor("ZodISODateTime", (inst, def) => { $ZodISODateTime.init(inst, def); ZodStringFormat.init(inst, def); }); function datetime2(params) { return _isoDateTime(ZodISODateTime, params); } __name(datetime2, "datetime"); var ZodISODate = /* @__PURE__ */ $constructor("ZodISODate", (inst, def) => { $ZodISODate.init(inst, def); ZodStringFormat.init(inst, def); }); function date2(params) { return _isoDate(ZodISODate, params); } __name(date2, "date"); var ZodISOTime = /* @__PURE__ */ $constructor("ZodISOTime", (inst, def) => { $ZodISOTime.init(inst, def); ZodStringFormat.init(inst, def); }); function time5(params) { return _isoTime(ZodISOTime, params); } __name(time5, "time"); var ZodISODuration = /* @__PURE__ */ $constructor("ZodISODuration", (inst, def) => { $ZodISODuration.init(inst, def); ZodStringFormat.init(inst, def); }); function duration2(params) { return _isoDuration(ZodISODuration, params); } __name(duration2, "duration"); // ../../node_modules/zod/v4/classic/parse.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/zod/v4/classic/errors.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var initializer2 = /* @__PURE__ */ __name((inst, issues) => { $ZodError.init(inst, issues); inst.name = "ZodError"; Object.defineProperties(inst, { format: { value: /* @__PURE__ */ __name((mapper) => formatError(inst, mapper), "value") // enumerable: false, }, flatten: { value: /* @__PURE__ */ __name((mapper) => flattenError(inst, mapper), "value") // enumerable: false, }, addIssue: { value: /* @__PURE__ */ __name((issue2) => { inst.issues.push(issue2); inst.message = JSON.stringify(inst.issues, jsonStringifyReplacer, 2); }, "value") // enumerable: false, }, addIssues: { value: /* @__PURE__ */ __name((issues2) => { inst.issues.push(...issues2); inst.message = JSON.stringify(inst.issues, jsonStringifyReplacer, 2); }, "value") // enumerable: false, }, isEmpty: { get() { return inst.issues.length === 0; } // enumerable: false, } }); }, "initializer"); var ZodError = $constructor("ZodError", initializer2); var ZodRealError = $constructor("ZodError", initializer2, { Parent: Error }); // ../../node_modules/zod/v4/classic/parse.js var parse2 = /* @__PURE__ */ _parse(ZodRealError); var parseAsync2 = /* @__PURE__ */ _parseAsync(ZodRealError); var safeParse2 = /* @__PURE__ */ _safeParse(ZodRealError); var safeParseAsync2 = /* @__PURE__ */ _safeParseAsync(ZodRealError); var encode4 = /* @__PURE__ */ _encode(ZodRealError); var decode3 = /* @__PURE__ */ _decode(ZodRealError); var encodeAsync2 = /* @__PURE__ */ _encodeAsync(ZodRealError); var decodeAsync2 = /* @__PURE__ */ _decodeAsync(ZodRealError); var safeEncode2 = /* @__PURE__ */ _safeEncode(ZodRealError); var safeDecode2 = /* @__PURE__ */ _safeDecode(ZodRealError); var safeEncodeAsync2 = /* @__PURE__ */ _safeEncodeAsync(ZodRealError); var safeDecodeAsync2 = /* @__PURE__ */ _safeDecodeAsync(ZodRealError); // ../../node_modules/zod/v4/classic/schemas.js var ZodType = /* @__PURE__ */ $constructor("ZodType", (inst, def) => { $ZodType.init(inst, def); Object.assign(inst["~standard"], { jsonSchema: { input: createStandardJSONSchemaMethod(inst, "input"), output: createStandardJSONSchemaMethod(inst, "output") } }); inst.toJSONSchema = createToJSONSchemaMethod(inst, {}); inst.def = def; inst.type = def.type; Object.defineProperty(inst, "_def", { value: def }); inst.check = (...checks) => { return inst.clone(util_exports.mergeDefs(def, { checks: [ ...def.checks ?? [], ...checks.map((ch) => typeof ch === "function" ? { _zod: { check: ch, def: { check: "custom" }, onattach: [] } } : ch) ] }), { parent: true }); }; inst.with = inst.check; inst.clone = (def2, params) => clone(inst, def2, params); inst.brand = () => inst; inst.register = ((reg, meta3) => { reg.add(inst, meta3); return inst; }); inst.parse = (data, params) => parse2(inst, data, params, { callee: inst.parse }); inst.safeParse = (data, params) => safeParse2(inst, data, params); inst.parseAsync = async (data, params) => parseAsync2(inst, data, params, { callee: inst.parseAsync }); inst.safeParseAsync = async (data, params) => safeParseAsync2(inst, data, params); inst.spa = inst.safeParseAsync; inst.encode = (data, params) => encode4(inst, data, params); inst.decode = (data, params) => decode3(inst, data, params); inst.encodeAsync = async (data, params) => encodeAsync2(inst, data, params); inst.decodeAsync = async (data, params) => decodeAsync2(inst, data, params); inst.safeEncode = (data, params) => safeEncode2(inst, data, params); inst.safeDecode = (data, params) => safeDecode2(inst, data, params); inst.safeEncodeAsync = async (data, params) => safeEncodeAsync2(inst, data, params); inst.safeDecodeAsync = async (data, params) => safeDecodeAsync2(inst, data, params); inst.refine = (check3, params) => inst.check(refine(check3, params)); inst.superRefine = (refinement) => inst.check(superRefine(refinement)); inst.overwrite = (fn) => inst.check(_overwrite(fn)); inst.optional = () => optional(inst); inst.exactOptional = () => exactOptional(inst); inst.nullable = () => nullable(inst); inst.nullish = () => optional(nullable(inst)); inst.nonoptional = (params) => nonoptional(inst, params); inst.array = () => array(inst); inst.or = (arg) => union2([inst, arg]); inst.and = (arg) => intersection(inst, arg); inst.transform = (tx) => pipe(inst, transform(tx)); inst.default = (def2) => _default2(inst, def2); inst.prefault = (def2) => prefault(inst, def2); inst.catch = (params) => _catch2(inst, params); inst.pipe = (target2) => pipe(inst, target2); inst.readonly = () => readonly(inst); inst.describe = (description) => { const cl = inst.clone(); globalRegistry.add(cl, { description }); return cl; }; Object.defineProperty(inst, "description", { get() { return globalRegistry.get(inst)?.description; }, configurable: true }); inst.meta = (...args) => { if (args.length === 0) { return globalRegistry.get(inst); } const cl = inst.clone(); globalRegistry.add(cl, args[0]); return cl; }; inst.isOptional = () => inst.safeParse(void 0).success; inst.isNullable = () => inst.safeParse(null).success; inst.apply = (fn) => fn(inst); return inst; }); var _ZodString = /* @__PURE__ */ $constructor("_ZodString", (inst, def) => { $ZodString.init(inst, def); ZodType.init(inst, def); inst._zod.processJSONSchema = (ctx, json2, params) => stringProcessor(inst, ctx, json2, params); const bag = inst._zod.bag; inst.format = bag.format ?? null; inst.minLength = bag.minimum ?? null; inst.maxLength = bag.maximum ?? null; inst.regex = (...args) => inst.check(_regex(...args)); inst.includes = (...args) => inst.check(_includes(...args)); inst.startsWith = (...args) => inst.check(_startsWith(...args)); inst.endsWith = (...args) => inst.check(_endsWith(...args)); inst.min = (...args) => inst.check(_minLength(...args)); inst.max = (...args) => inst.check(_maxLength(...args)); inst.length = (...args) => inst.check(_length(...args)); inst.nonempty = (...args) => inst.check(_minLength(1, ...args)); inst.lowercase = (params) => inst.check(_lowercase(params)); inst.uppercase = (params) => inst.check(_uppercase(params)); inst.trim = () => inst.check(_trim()); inst.normalize = (...args) => inst.check(_normalize(...args)); inst.toLowerCase = () => inst.check(_toLowerCase()); inst.toUpperCase = () => inst.check(_toUpperCase()); inst.slugify = () => inst.check(_slugify()); }); var ZodString = /* @__PURE__ */ $constructor("ZodString", (inst, def) => { $ZodString.init(inst, def); _ZodString.init(inst, def); inst.email = (params) => inst.check(_email(ZodEmail, params)); inst.url = (params) => inst.check(_url(ZodURL, params)); inst.jwt = (params) => inst.check(_jwt(ZodJWT, params)); inst.emoji = (params) => inst.check(_emoji2(ZodEmoji, params)); inst.guid = (params) => inst.check(_guid(ZodGUID, params)); inst.uuid = (params) => inst.check(_uuid(ZodUUID, params)); inst.uuidv4 = (params) => inst.check(_uuidv4(ZodUUID, params)); inst.uuidv6 = (params) => inst.check(_uuidv6(ZodUUID, params)); inst.uuidv7 = (params) => inst.check(_uuidv7(ZodUUID, params)); inst.nanoid = (params) => inst.check(_nanoid(ZodNanoID, params)); inst.guid = (params) => inst.check(_guid(ZodGUID, params)); inst.cuid = (params) => inst.check(_cuid(ZodCUID, params)); inst.cuid2 = (params) => inst.check(_cuid2(ZodCUID2, params)); inst.ulid = (params) => inst.check(_ulid(ZodULID, params)); inst.base64 = (params) => inst.check(_base64(ZodBase64, params)); inst.base64url = (params) => inst.check(_base64url(ZodBase64URL, params)); inst.xid = (params) => inst.check(_xid(ZodXID, params)); inst.ksuid = (params) => inst.check(_ksuid(ZodKSUID, params)); inst.ipv4 = (params) => inst.check(_ipv4(ZodIPv4, params)); inst.ipv6 = (params) => inst.check(_ipv6(ZodIPv6, params)); inst.cidrv4 = (params) => inst.check(_cidrv4(ZodCIDRv4, params)); inst.cidrv6 = (params) => inst.check(_cidrv6(ZodCIDRv6, params)); inst.e164 = (params) => inst.check(_e164(ZodE164, params)); inst.datetime = (params) => inst.check(datetime2(params)); inst.date = (params) => inst.check(date2(params)); inst.time = (params) => inst.check(time5(params)); inst.duration = (params) => inst.check(duration2(params)); }); function string2(params) { return _string(ZodString, params); } __name(string2, "string"); var ZodStringFormat = /* @__PURE__ */ $constructor("ZodStringFormat", (inst, def) => { $ZodStringFormat.init(inst, def); _ZodString.init(inst, def); }); var ZodEmail = /* @__PURE__ */ $constructor("ZodEmail", (inst, def) => { $ZodEmail.init(inst, def); ZodStringFormat.init(inst, def); }); function email2(params) { return _email(ZodEmail, params); } __name(email2, "email"); var ZodGUID = /* @__PURE__ */ $constructor("ZodGUID", (inst, def) => { $ZodGUID.init(inst, def); ZodStringFormat.init(inst, def); }); function guid2(params) { return _guid(ZodGUID, params); } __name(guid2, "guid"); var ZodUUID = /* @__PURE__ */ $constructor("ZodUUID", (inst, def) => { $ZodUUID.init(inst, def); ZodStringFormat.init(inst, def); }); function uuid2(params) { return _uuid(ZodUUID, params); } __name(uuid2, "uuid"); function uuidv4(params) { return _uuidv4(ZodUUID, params); } __name(uuidv4, "uuidv4"); function uuidv6(params) { return _uuidv6(ZodUUID, params); } __name(uuidv6, "uuidv6"); function uuidv7(params) { return _uuidv7(ZodUUID, params); } __name(uuidv7, "uuidv7"); var ZodURL = /* @__PURE__ */ $constructor("ZodURL", (inst, def) => { $ZodURL.init(inst, def); ZodStringFormat.init(inst, def); }); function url(params) { return _url(ZodURL, params); } __name(url, "url"); function httpUrl(params) { return _url(ZodURL, { protocol: /^https?$/, hostname: regexes_exports.domain, ...util_exports.normalizeParams(params) }); } __name(httpUrl, "httpUrl"); var ZodEmoji = /* @__PURE__ */ $constructor("ZodEmoji", (inst, def) => { $ZodEmoji.init(inst, def); ZodStringFormat.init(inst, def); }); function emoji2(params) { return _emoji2(ZodEmoji, params); } __name(emoji2, "emoji"); var ZodNanoID = /* @__PURE__ */ $constructor("ZodNanoID", (inst, def) => { $ZodNanoID.init(inst, def); ZodStringFormat.init(inst, def); }); function nanoid2(params) { return _nanoid(ZodNanoID, params); } __name(nanoid2, "nanoid"); var ZodCUID = /* @__PURE__ */ $constructor("ZodCUID", (inst, def) => { $ZodCUID.init(inst, def); ZodStringFormat.init(inst, def); }); function cuid3(params) { return _cuid(ZodCUID, params); } __name(cuid3, "cuid"); var ZodCUID2 = /* @__PURE__ */ $constructor("ZodCUID2", (inst, def) => { $ZodCUID2.init(inst, def); ZodStringFormat.init(inst, def); }); function cuid22(params) { return _cuid2(ZodCUID2, params); } __name(cuid22, "cuid2"); var ZodULID = /* @__PURE__ */ $constructor("ZodULID", (inst, def) => { $ZodULID.init(inst, def); ZodStringFormat.init(inst, def); }); function ulid2(params) { return _ulid(ZodULID, params); } __name(ulid2, "ulid"); var ZodXID = /* @__PURE__ */ $constructor("ZodXID", (inst, def) => { $ZodXID.init(inst, def); ZodStringFormat.init(inst, def); }); function xid2(params) { return _xid(ZodXID, params); } __name(xid2, "xid"); var ZodKSUID = /* @__PURE__ */ $constructor("ZodKSUID", (inst, def) => { $ZodKSUID.init(inst, def); ZodStringFormat.init(inst, def); }); function ksuid2(params) { return _ksuid(ZodKSUID, params); } __name(ksuid2, "ksuid"); var ZodIPv4 = /* @__PURE__ */ $constructor("ZodIPv4", (inst, def) => { $ZodIPv4.init(inst, def); ZodStringFormat.init(inst, def); }); function ipv42(params) { return _ipv4(ZodIPv4, params); } __name(ipv42, "ipv4"); var ZodMAC = /* @__PURE__ */ $constructor("ZodMAC", (inst, def) => { $ZodMAC.init(inst, def); ZodStringFormat.init(inst, def); }); function mac2(params) { return _mac(ZodMAC, params); } __name(mac2, "mac"); var ZodIPv6 = /* @__PURE__ */ $constructor("ZodIPv6", (inst, def) => { $ZodIPv6.init(inst, def); ZodStringFormat.init(inst, def); }); function ipv62(params) { return _ipv6(ZodIPv6, params); } __name(ipv62, "ipv6"); var ZodCIDRv4 = /* @__PURE__ */ $constructor("ZodCIDRv4", (inst, def) => { $ZodCIDRv4.init(inst, def); ZodStringFormat.init(inst, def); }); function cidrv42(params) { return _cidrv4(ZodCIDRv4, params); } __name(cidrv42, "cidrv4"); var ZodCIDRv6 = /* @__PURE__ */ $constructor("ZodCIDRv6", (inst, def) => { $ZodCIDRv6.init(inst, def); ZodStringFormat.init(inst, def); }); function cidrv62(params) { return _cidrv6(ZodCIDRv6, params); } __name(cidrv62, "cidrv6"); var ZodBase64 = /* @__PURE__ */ $constructor("ZodBase64", (inst, def) => { $ZodBase64.init(inst, def); ZodStringFormat.init(inst, def); }); function base642(params) { return _base64(ZodBase64, params); } __name(base642, "base64"); var ZodBase64URL = /* @__PURE__ */ $constructor("ZodBase64URL", (inst, def) => { $ZodBase64URL.init(inst, def); ZodStringFormat.init(inst, def); }); function base64url2(params) { return _base64url(ZodBase64URL, params); } __name(base64url2, "base64url"); var ZodE164 = /* @__PURE__ */ $constructor("ZodE164", (inst, def) => { $ZodE164.init(inst, def); ZodStringFormat.init(inst, def); }); function e1642(params) { return _e164(ZodE164, params); } __name(e1642, "e164"); var ZodJWT = /* @__PURE__ */ $constructor("ZodJWT", (inst, def) => { $ZodJWT.init(inst, def); ZodStringFormat.init(inst, def); }); function jwt(params) { return _jwt(ZodJWT, params); } __name(jwt, "jwt"); var ZodCustomStringFormat = /* @__PURE__ */ $constructor("ZodCustomStringFormat", (inst, def) => { $ZodCustomStringFormat.init(inst, def); ZodStringFormat.init(inst, def); }); function stringFormat(format, fnOrRegex, _params = {}) { return _stringFormat(ZodCustomStringFormat, format, fnOrRegex, _params); } __name(stringFormat, "stringFormat"); function hostname2(_params) { return _stringFormat(ZodCustomStringFormat, "hostname", regexes_exports.hostname, _params); } __name(hostname2, "hostname"); function hex2(_params) { return _stringFormat(ZodCustomStringFormat, "hex", regexes_exports.hex, _params); } __name(hex2, "hex"); function hash(alg, params) { const enc = params?.enc ?? "hex"; const format = `${alg}_${enc}`; const regex = regexes_exports[format]; if (!regex) throw new Error(`Unrecognized hash format: ${format}`); return _stringFormat(ZodCustomStringFormat, format, regex, params); } __name(hash, "hash"); var ZodNumber = /* @__PURE__ */ $constructor("ZodNumber", (inst, def) => { $ZodNumber.init(inst, def); ZodType.init(inst, def); inst._zod.processJSONSchema = (ctx, json2, params) => numberProcessor(inst, ctx, json2, params); inst.gt = (value, params) => inst.check(_gt(value, params)); inst.gte = (value, params) => inst.check(_gte(value, params)); inst.min = (value, params) => inst.check(_gte(value, params)); inst.lt = (value, params) => inst.check(_lt(value, params)); inst.lte = (value, params) => inst.check(_lte(value, params)); inst.max = (value, params) => inst.check(_lte(value, params)); inst.int = (params) => inst.check(int(params)); inst.safe = (params) => inst.check(int(params)); inst.positive = (params) => inst.check(_gt(0, params)); inst.nonnegative = (params) => inst.check(_gte(0, params)); inst.negative = (params) => inst.check(_lt(0, params)); inst.nonpositive = (params) => inst.check(_lte(0, params)); inst.multipleOf = (value, params) => inst.check(_multipleOf(value, params)); inst.step = (value, params) => inst.check(_multipleOf(value, params)); inst.finite = () => inst; const bag = inst._zod.bag; inst.minValue = Math.max(bag.minimum ?? Number.NEGATIVE_INFINITY, bag.exclusiveMinimum ?? Number.NEGATIVE_INFINITY) ?? null; inst.maxValue = Math.min(bag.maximum ?? Number.POSITIVE_INFINITY, bag.exclusiveMaximum ?? Number.POSITIVE_INFINITY) ?? null; inst.isInt = (bag.format ?? "").includes("int") || Number.isSafeInteger(bag.multipleOf ?? 0.5); inst.isFinite = true; inst.format = bag.format ?? null; }); function number2(params) { return _number(ZodNumber, params); } __name(number2, "number"); var ZodNumberFormat = /* @__PURE__ */ $constructor("ZodNumberFormat", (inst, def) => { $ZodNumberFormat.init(inst, def); ZodNumber.init(inst, def); }); function int(params) { return _int(ZodNumberFormat, params); } __name(int, "int"); function float32(params) { return _float32(ZodNumberFormat, params); } __name(float32, "float32"); function float64(params) { return _float64(ZodNumberFormat, params); } __name(float64, "float64"); function int32(params) { return _int32(ZodNumberFormat, params); } __name(int32, "int32"); function uint32(params) { return _uint32(ZodNumberFormat, params); } __name(uint32, "uint32"); var ZodBoolean = /* @__PURE__ */ $constructor("ZodBoolean", (inst, def) => { $ZodBoolean.init(inst, def); ZodType.init(inst, def); inst._zod.processJSONSchema = (ctx, json2, params) => booleanProcessor(inst, ctx, json2, params); }); function boolean2(params) { return _boolean(ZodBoolean, params); } __name(boolean2, "boolean"); var ZodBigInt = /* @__PURE__ */ $constructor("ZodBigInt", (inst, def) => { $ZodBigInt.init(inst, def); ZodType.init(inst, def); inst._zod.processJSONSchema = (ctx, json2, params) => bigintProcessor(inst, ctx, json2, params); inst.gte = (value, params) => inst.check(_gte(value, params)); inst.min = (value, params) => inst.check(_gte(value, params)); inst.gt = (value, params) => inst.check(_gt(value, params)); inst.gte = (value, params) => inst.check(_gte(value, params)); inst.min = (value, params) => inst.check(_gte(value, params)); inst.lt = (value, params) => inst.check(_lt(value, params)); inst.lte = (value, params) => inst.check(_lte(value, params)); inst.max = (value, params) => inst.check(_lte(value, params)); inst.positive = (params) => inst.check(_gt(BigInt(0), params)); inst.negative = (params) => inst.check(_lt(BigInt(0), params)); inst.nonpositive = (params) => inst.check(_lte(BigInt(0), params)); inst.nonnegative = (params) => inst.check(_gte(BigInt(0), params)); inst.multipleOf = (value, params) => inst.check(_multipleOf(value, params)); const bag = inst._zod.bag; inst.minValue = bag.minimum ?? null; inst.maxValue = bag.maximum ?? null; inst.format = bag.format ?? null; }); function bigint3(params) { return _bigint(ZodBigInt, params); } __name(bigint3, "bigint"); var ZodBigIntFormat = /* @__PURE__ */ $constructor("ZodBigIntFormat", (inst, def) => { $ZodBigIntFormat.init(inst, def); ZodBigInt.init(inst, def); }); function int64(params) { return _int64(ZodBigIntFormat, params); } __name(int64, "int64"); function uint64(params) { return _uint64(ZodBigIntFormat, params); } __name(uint64, "uint64"); var ZodSymbol = /* @__PURE__ */ $constructor("ZodSymbol", (inst, def) => { $ZodSymbol.init(inst, def); ZodType.init(inst, def); inst._zod.processJSONSchema = (ctx, json2, params) => symbolProcessor(inst, ctx, json2, params); }); function symbol(params) { return _symbol(ZodSymbol, params); } __name(symbol, "symbol"); var ZodUndefined = /* @__PURE__ */ $constructor("ZodUndefined", (inst, def) => { $ZodUndefined.init(inst, def); ZodType.init(inst, def); inst._zod.processJSONSchema = (ctx, json2, params) => undefinedProcessor(inst, ctx, json2, params); }); function _undefined3(params) { return _undefined2(ZodUndefined, params); } __name(_undefined3, "_undefined"); var ZodNull = /* @__PURE__ */ $constructor("ZodNull", (inst, def) => { $ZodNull.init(inst, def); ZodType.init(inst, def); inst._zod.processJSONSchema = (ctx, json2, params) => nullProcessor(inst, ctx, json2, params); }); function _null3(params) { return _null2(ZodNull, params); } __name(_null3, "_null"); var ZodAny = /* @__PURE__ */ $constructor("ZodAny", (inst, def) => { $ZodAny.init(inst, def); ZodType.init(inst, def); inst._zod.processJSONSchema = (ctx, json2, params) => anyProcessor(inst, ctx, json2, params); }); function any() { return _any(ZodAny); } __name(any, "any"); var ZodUnknown = /* @__PURE__ */ $constructor("ZodUnknown", (inst, def) => { $ZodUnknown.init(inst, def); ZodType.init(inst, def); inst._zod.processJSONSchema = (ctx, json2, params) => unknownProcessor(inst, ctx, json2, params); }); function unknown() { return _unknown(ZodUnknown); } __name(unknown, "unknown"); var ZodNever = /* @__PURE__ */ $constructor("ZodNever", (inst, def) => { $ZodNever.init(inst, def); ZodType.init(inst, def); inst._zod.processJSONSchema = (ctx, json2, params) => neverProcessor(inst, ctx, json2, params); }); function never(params) { return _never(ZodNever, params); } __name(never, "never"); var ZodVoid = /* @__PURE__ */ $constructor("ZodVoid", (inst, def) => { $ZodVoid.init(inst, def); ZodType.init(inst, def); inst._zod.processJSONSchema = (ctx, json2, params) => voidProcessor(inst, ctx, json2, params); }); function _void2(params) { return _void(ZodVoid, params); } __name(_void2, "_void"); var ZodDate = /* @__PURE__ */ $constructor("ZodDate", (inst, def) => { $ZodDate.init(inst, def); ZodType.init(inst, def); inst._zod.processJSONSchema = (ctx, json2, params) => dateProcessor(inst, ctx, json2, params); inst.min = (value, params) => inst.check(_gte(value, params)); inst.max = (value, params) => inst.check(_lte(value, params)); const c = inst._zod.bag; inst.minDate = c.minimum ? new Date(c.minimum) : null; inst.maxDate = c.maximum ? new Date(c.maximum) : null; }); function date3(params) { return _date(ZodDate, params); } __name(date3, "date"); var ZodArray = /* @__PURE__ */ $constructor("ZodArray", (inst, def) => { $ZodArray.init(inst, def); ZodType.init(inst, def); inst._zod.processJSONSchema = (ctx, json2, params) => arrayProcessor(inst, ctx, json2, params); inst.element = def.element; inst.min = (minLength, params) => inst.check(_minLength(minLength, params)); inst.nonempty = (params) => inst.check(_minLength(1, params)); inst.max = (maxLength, params) => inst.check(_maxLength(maxLength, params)); inst.length = (len, params) => inst.check(_length(len, params)); inst.unwrap = () => inst.element; }); function array(element, params) { return _array(ZodArray, element, params); } __name(array, "array"); function keyof(schema) { const shape = schema._zod.def.shape; return _enum2(Object.keys(shape)); } __name(keyof, "keyof"); var ZodObject = /* @__PURE__ */ $constructor("ZodObject", (inst, def) => { $ZodObjectJIT.init(inst, def); ZodType.init(inst, def); inst._zod.processJSONSchema = (ctx, json2, params) => objectProcessor(inst, ctx, json2, params); util_exports.defineLazy(inst, "shape", () => { return def.shape; }); inst.keyof = () => _enum2(Object.keys(inst._zod.def.shape)); inst.catchall = (catchall) => inst.clone({ ...inst._zod.def, catchall }); inst.passthrough = () => inst.clone({ ...inst._zod.def, catchall: unknown() }); inst.loose = () => inst.clone({ ...inst._zod.def, catchall: unknown() }); inst.strict = () => inst.clone({ ...inst._zod.def, catchall: never() }); inst.strip = () => inst.clone({ ...inst._zod.def, catchall: void 0 }); inst.extend = (incoming) => { return util_exports.extend(inst, incoming); }; inst.safeExtend = (incoming) => { return util_exports.safeExtend(inst, incoming); }; inst.merge = (other) => util_exports.merge(inst, other); inst.pick = (mask) => util_exports.pick(inst, mask); inst.omit = (mask) => util_exports.omit(inst, mask); inst.partial = (...args) => util_exports.partial(ZodOptional, inst, args[0]); inst.required = (...args) => util_exports.required(ZodNonOptional, inst, args[0]); }); function object(shape, params) { const def = { type: "object", shape: shape ?? {}, ...util_exports.normalizeParams(params) }; return new ZodObject(def); } __name(object, "object"); function strictObject(shape, params) { return new ZodObject({ type: "object", shape, catchall: never(), ...util_exports.normalizeParams(params) }); } __name(strictObject, "strictObject"); function looseObject(shape, params) { return new ZodObject({ type: "object", shape, catchall: unknown(), ...util_exports.normalizeParams(params) }); } __name(looseObject, "looseObject"); var ZodUnion = /* @__PURE__ */ $constructor("ZodUnion", (inst, def) => { $ZodUnion.init(inst, def); ZodType.init(inst, def); inst._zod.processJSONSchema = (ctx, json2, params) => unionProcessor(inst, ctx, json2, params); inst.options = def.options; }); function union2(options, params) { return new ZodUnion({ type: "union", options, ...util_exports.normalizeParams(params) }); } __name(union2, "union"); var ZodXor = /* @__PURE__ */ $constructor("ZodXor", (inst, def) => { ZodUnion.init(inst, def); $ZodXor.init(inst, def); inst._zod.processJSONSchema = (ctx, json2, params) => unionProcessor(inst, ctx, json2, params); inst.options = def.options; }); function xor(options, params) { return new ZodXor({ type: "union", options, inclusive: false, ...util_exports.normalizeParams(params) }); } __name(xor, "xor"); var ZodDiscriminatedUnion = /* @__PURE__ */ $constructor("ZodDiscriminatedUnion", (inst, def) => { ZodUnion.init(inst, def); $ZodDiscriminatedUnion.init(inst, def); }); function discriminatedUnion(discriminator, options, params) { return new ZodDiscriminatedUnion({ type: "union", options, discriminator, ...util_exports.normalizeParams(params) }); } __name(discriminatedUnion, "discriminatedUnion"); var ZodIntersection = /* @__PURE__ */ $constructor("ZodIntersection", (inst, def) => { $ZodIntersection.init(inst, def); ZodType.init(inst, def); inst._zod.processJSONSchema = (ctx, json2, params) => intersectionProcessor(inst, ctx, json2, params); }); function intersection(left, right) { return new ZodIntersection({ type: "intersection", left, right }); } __name(intersection, "intersection"); var ZodTuple = /* @__PURE__ */ $constructor("ZodTuple", (inst, def) => { $ZodTuple.init(inst, def); ZodType.init(inst, def); inst._zod.processJSONSchema = (ctx, json2, params) => tupleProcessor(inst, ctx, json2, params); inst.rest = (rest) => inst.clone({ ...inst._zod.def, rest }); }); function tuple(items, _paramsOrRest, _params) { const hasRest = _paramsOrRest instanceof $ZodType; const params = hasRest ? _params : _paramsOrRest; const rest = hasRest ? _paramsOrRest : null; return new ZodTuple({ type: "tuple", items, rest, ...util_exports.normalizeParams(params) }); } __name(tuple, "tuple"); var ZodRecord = /* @__PURE__ */ $constructor("ZodRecord", (inst, def) => { $ZodRecord.init(inst, def); ZodType.init(inst, def); inst._zod.processJSONSchema = (ctx, json2, params) => recordProcessor(inst, ctx, json2, params); inst.keyType = def.keyType; inst.valueType = def.valueType; }); function record(keyType, valueType, params) { return new ZodRecord({ type: "record", keyType, valueType, ...util_exports.normalizeParams(params) }); } __name(record, "record"); function partialRecord(keyType, valueType, params) { const k = clone(keyType); k._zod.values = void 0; return new ZodRecord({ type: "record", keyType: k, valueType, ...util_exports.normalizeParams(params) }); } __name(partialRecord, "partialRecord"); function looseRecord(keyType, valueType, params) { return new ZodRecord({ type: "record", keyType, valueType, mode: "loose", ...util_exports.normalizeParams(params) }); } __name(looseRecord, "looseRecord"); var ZodMap = /* @__PURE__ */ $constructor("ZodMap", (inst, def) => { $ZodMap.init(inst, def); ZodType.init(inst, def); inst._zod.processJSONSchema = (ctx, json2, params) => mapProcessor(inst, ctx, json2, params); inst.keyType = def.keyType; inst.valueType = def.valueType; inst.min = (...args) => inst.check(_minSize(...args)); inst.nonempty = (params) => inst.check(_minSize(1, params)); inst.max = (...args) => inst.check(_maxSize(...args)); inst.size = (...args) => inst.check(_size(...args)); }); function map(keyType, valueType, params) { return new ZodMap({ type: "map", keyType, valueType, ...util_exports.normalizeParams(params) }); } __name(map, "map"); var ZodSet = /* @__PURE__ */ $constructor("ZodSet", (inst, def) => { $ZodSet.init(inst, def); ZodType.init(inst, def); inst._zod.processJSONSchema = (ctx, json2, params) => setProcessor(inst, ctx, json2, params); inst.min = (...args) => inst.check(_minSize(...args)); inst.nonempty = (params) => inst.check(_minSize(1, params)); inst.max = (...args) => inst.check(_maxSize(...args)); inst.size = (...args) => inst.check(_size(...args)); }); function set(valueType, params) { return new ZodSet({ type: "set", valueType, ...util_exports.normalizeParams(params) }); } __name(set, "set"); var ZodEnum = /* @__PURE__ */ $constructor("ZodEnum", (inst, def) => { $ZodEnum.init(inst, def); ZodType.init(inst, def); inst._zod.processJSONSchema = (ctx, json2, params) => enumProcessor(inst, ctx, json2, params); inst.enum = def.entries; inst.options = Object.values(def.entries); const keys = new Set(Object.keys(def.entries)); inst.extract = (values, params) => { const newEntries = {}; for (const value of values) { if (keys.has(value)) { newEntries[value] = def.entries[value]; } else throw new Error(`Key ${value} not found in enum`); } return new ZodEnum({ ...def, checks: [], ...util_exports.normalizeParams(params), entries: newEntries }); }; inst.exclude = (values, params) => { const newEntries = { ...def.entries }; for (const value of values) { if (keys.has(value)) { delete newEntries[value]; } else throw new Error(`Key ${value} not found in enum`); } return new ZodEnum({ ...def, checks: [], ...util_exports.normalizeParams(params), entries: newEntries }); }; }); function _enum2(values, params) { const entries = Array.isArray(values) ? Object.fromEntries(values.map((v2) => [v2, v2])) : values; return new ZodEnum({ type: "enum", entries, ...util_exports.normalizeParams(params) }); } __name(_enum2, "_enum"); function nativeEnum(entries, params) { return new ZodEnum({ type: "enum", entries, ...util_exports.normalizeParams(params) }); } __name(nativeEnum, "nativeEnum"); var ZodLiteral = /* @__PURE__ */ $constructor("ZodLiteral", (inst, def) => { $ZodLiteral.init(inst, def); ZodType.init(inst, def); inst._zod.processJSONSchema = (ctx, json2, params) => literalProcessor(inst, ctx, json2, params); inst.values = new Set(def.values); Object.defineProperty(inst, "value", { get() { if (def.values.length > 1) { throw new Error("This schema contains multiple valid literal values. Use `.values` instead."); } return def.values[0]; } }); }); function literal(value, params) { return new ZodLiteral({ type: "literal", values: Array.isArray(value) ? value : [value], ...util_exports.normalizeParams(params) }); } __name(literal, "literal"); var ZodFile = /* @__PURE__ */ $constructor("ZodFile", (inst, def) => { $ZodFile.init(inst, def); ZodType.init(inst, def); inst._zod.processJSONSchema = (ctx, json2, params) => fileProcessor(inst, ctx, json2, params); inst.min = (size, params) => inst.check(_minSize(size, params)); inst.max = (size, params) => inst.check(_maxSize(size, params)); inst.mime = (types, params) => inst.check(_mime(Array.isArray(types) ? types : [types], params)); }); function file(params) { return _file(ZodFile, params); } __name(file, "file"); var ZodTransform = /* @__PURE__ */ $constructor("ZodTransform", (inst, def) => { $ZodTransform.init(inst, def); ZodType.init(inst, def); inst._zod.processJSONSchema = (ctx, json2, params) => transformProcessor(inst, ctx, json2, params); inst._zod.parse = (payload, _ctx) => { if (_ctx.direction === "backward") { throw new $ZodEncodeError(inst.constructor.name); } payload.addIssue = (issue2) => { if (typeof issue2 === "string") { payload.issues.push(util_exports.issue(issue2, payload.value, def)); } else { const _issue = issue2; if (_issue.fatal) _issue.continue = false; _issue.code ?? (_issue.code = "custom"); _issue.input ?? (_issue.input = payload.value); _issue.inst ?? (_issue.inst = inst); payload.issues.push(util_exports.issue(_issue)); } }; const output = def.transform(payload.value, payload); if (output instanceof Promise) { return output.then((output2) => { payload.value = output2; return payload; }); } payload.value = output; return payload; }; }); function transform(fn) { return new ZodTransform({ type: "transform", transform: fn }); } __name(transform, "transform"); var ZodOptional = /* @__PURE__ */ $constructor("ZodOptional", (inst, def) => { $ZodOptional.init(inst, def); ZodType.init(inst, def); inst._zod.processJSONSchema = (ctx, json2, params) => optionalProcessor(inst, ctx, json2, params); inst.unwrap = () => inst._zod.def.innerType; }); function optional(innerType) { return new ZodOptional({ type: "optional", innerType }); } __name(optional, "optional"); var ZodExactOptional = /* @__PURE__ */ $constructor("ZodExactOptional", (inst, def) => { $ZodExactOptional.init(inst, def); ZodType.init(inst, def); inst._zod.processJSONSchema = (ctx, json2, params) => optionalProcessor(inst, ctx, json2, params); inst.unwrap = () => inst._zod.def.innerType; }); function exactOptional(innerType) { return new ZodExactOptional({ type: "optional", innerType }); } __name(exactOptional, "exactOptional"); var ZodNullable = /* @__PURE__ */ $constructor("ZodNullable", (inst, def) => { $ZodNullable.init(inst, def); ZodType.init(inst, def); inst._zod.processJSONSchema = (ctx, json2, params) => nullableProcessor(inst, ctx, json2, params); inst.unwrap = () => inst._zod.def.innerType; }); function nullable(innerType) { return new ZodNullable({ type: "nullable", innerType }); } __name(nullable, "nullable"); function nullish2(innerType) { return optional(nullable(innerType)); } __name(nullish2, "nullish"); var ZodDefault = /* @__PURE__ */ $constructor("ZodDefault", (inst, def) => { $ZodDefault.init(inst, def); ZodType.init(inst, def); inst._zod.processJSONSchema = (ctx, json2, params) => defaultProcessor(inst, ctx, json2, params); inst.unwrap = () => inst._zod.def.innerType; inst.removeDefault = inst.unwrap; }); function _default2(innerType, defaultValue) { return new ZodDefault({ type: "default", innerType, get defaultValue() { return typeof defaultValue === "function" ? defaultValue() : util_exports.shallowClone(defaultValue); } }); } __name(_default2, "_default"); var ZodPrefault = /* @__PURE__ */ $constructor("ZodPrefault", (inst, def) => { $ZodPrefault.init(inst, def); ZodType.init(inst, def); inst._zod.processJSONSchema = (ctx, json2, params) => prefaultProcessor(inst, ctx, json2, params); inst.unwrap = () => inst._zod.def.innerType; }); function prefault(innerType, defaultValue) { return new ZodPrefault({ type: "prefault", innerType, get defaultValue() { return typeof defaultValue === "function" ? defaultValue() : util_exports.shallowClone(defaultValue); } }); } __name(prefault, "prefault"); var ZodNonOptional = /* @__PURE__ */ $constructor("ZodNonOptional", (inst, def) => { $ZodNonOptional.init(inst, def); ZodType.init(inst, def); inst._zod.processJSONSchema = (ctx, json2, params) => nonoptionalProcessor(inst, ctx, json2, params); inst.unwrap = () => inst._zod.def.innerType; }); function nonoptional(innerType, params) { return new ZodNonOptional({ type: "nonoptional", innerType, ...util_exports.normalizeParams(params) }); } __name(nonoptional, "nonoptional"); var ZodSuccess = /* @__PURE__ */ $constructor("ZodSuccess", (inst, def) => { $ZodSuccess.init(inst, def); ZodType.init(inst, def); inst._zod.processJSONSchema = (ctx, json2, params) => successProcessor(inst, ctx, json2, params); inst.unwrap = () => inst._zod.def.innerType; }); function success(innerType) { return new ZodSuccess({ type: "success", innerType }); } __name(success, "success"); var ZodCatch = /* @__PURE__ */ $constructor("ZodCatch", (inst, def) => { $ZodCatch.init(inst, def); ZodType.init(inst, def); inst._zod.processJSONSchema = (ctx, json2, params) => catchProcessor(inst, ctx, json2, params); inst.unwrap = () => inst._zod.def.innerType; inst.removeCatch = inst.unwrap; }); function _catch2(innerType, catchValue) { return new ZodCatch({ type: "catch", innerType, catchValue: typeof catchValue === "function" ? catchValue : () => catchValue }); } __name(_catch2, "_catch"); var ZodNaN = /* @__PURE__ */ $constructor("ZodNaN", (inst, def) => { $ZodNaN.init(inst, def); ZodType.init(inst, def); inst._zod.processJSONSchema = (ctx, json2, params) => nanProcessor(inst, ctx, json2, params); }); function nan(params) { return _nan(ZodNaN, params); } __name(nan, "nan"); var ZodPipe = /* @__PURE__ */ $constructor("ZodPipe", (inst, def) => { $ZodPipe.init(inst, def); ZodType.init(inst, def); inst._zod.processJSONSchema = (ctx, json2, params) => pipeProcessor(inst, ctx, json2, params); inst.in = def.in; inst.out = def.out; }); function pipe(in_, out) { return new ZodPipe({ type: "pipe", in: in_, out // ...util.normalizeParams(params), }); } __name(pipe, "pipe"); var ZodCodec = /* @__PURE__ */ $constructor("ZodCodec", (inst, def) => { ZodPipe.init(inst, def); $ZodCodec.init(inst, def); }); function codec(in_, out, params) { return new ZodCodec({ type: "pipe", in: in_, out, transform: params.decode, reverseTransform: params.encode }); } __name(codec, "codec"); var ZodReadonly = /* @__PURE__ */ $constructor("ZodReadonly", (inst, def) => { $ZodReadonly.init(inst, def); ZodType.init(inst, def); inst._zod.processJSONSchema = (ctx, json2, params) => readonlyProcessor(inst, ctx, json2, params); inst.unwrap = () => inst._zod.def.innerType; }); function readonly(innerType) { return new ZodReadonly({ type: "readonly", innerType }); } __name(readonly, "readonly"); var ZodTemplateLiteral = /* @__PURE__ */ $constructor("ZodTemplateLiteral", (inst, def) => { $ZodTemplateLiteral.init(inst, def); ZodType.init(inst, def); inst._zod.processJSONSchema = (ctx, json2, params) => templateLiteralProcessor(inst, ctx, json2, params); }); function templateLiteral(parts, params) { return new ZodTemplateLiteral({ type: "template_literal", parts, ...util_exports.normalizeParams(params) }); } __name(templateLiteral, "templateLiteral"); var ZodLazy = /* @__PURE__ */ $constructor("ZodLazy", (inst, def) => { $ZodLazy.init(inst, def); ZodType.init(inst, def); inst._zod.processJSONSchema = (ctx, json2, params) => lazyProcessor(inst, ctx, json2, params); inst.unwrap = () => inst._zod.def.getter(); }); function lazy2(getter) { return new ZodLazy({ type: "lazy", getter }); } __name(lazy2, "lazy"); var ZodPromise = /* @__PURE__ */ $constructor("ZodPromise", (inst, def) => { $ZodPromise.init(inst, def); ZodType.init(inst, def); inst._zod.processJSONSchema = (ctx, json2, params) => promiseProcessor(inst, ctx, json2, params); inst.unwrap = () => inst._zod.def.innerType; }); function promise(innerType) { return new ZodPromise({ type: "promise", innerType }); } __name(promise, "promise"); var ZodFunction = /* @__PURE__ */ $constructor("ZodFunction", (inst, def) => { $ZodFunction.init(inst, def); ZodType.init(inst, def); inst._zod.processJSONSchema = (ctx, json2, params) => functionProcessor(inst, ctx, json2, params); }); function _function(params) { return new ZodFunction({ type: "function", input: Array.isArray(params?.input) ? tuple(params?.input) : params?.input ?? array(unknown()), output: params?.output ?? unknown() }); } __name(_function, "_function"); var ZodCustom = /* @__PURE__ */ $constructor("ZodCustom", (inst, def) => { $ZodCustom.init(inst, def); ZodType.init(inst, def); inst._zod.processJSONSchema = (ctx, json2, params) => customProcessor(inst, ctx, json2, params); }); function check2(fn) { const ch = new $ZodCheck({ check: "custom" // ...util.normalizeParams(params), }); ch._zod.check = fn; return ch; } __name(check2, "check"); function custom(fn, _params) { return _custom(ZodCustom, fn ?? (() => true), _params); } __name(custom, "custom"); function refine(fn, _params = {}) { return _refine(ZodCustom, fn, _params); } __name(refine, "refine"); function superRefine(fn) { return _superRefine(fn); } __name(superRefine, "superRefine"); var describe2 = describe; var meta2 = meta; function _instanceof(cls, params = {}) { const inst = new ZodCustom({ type: "custom", check: "custom", fn: /* @__PURE__ */ __name((data) => data instanceof cls, "fn"), abort: true, ...util_exports.normalizeParams(params) }); inst._zod.bag.Class = cls; inst._zod.check = (payload) => { if (!(payload.value instanceof cls)) { payload.issues.push({ code: "invalid_type", expected: cls.name, input: payload.value, inst, path: [...inst._zod.def.path ?? []] }); } }; return inst; } __name(_instanceof, "_instanceof"); var stringbool = /* @__PURE__ */ __name((...args) => _stringbool({ Codec: ZodCodec, Boolean: ZodBoolean, String: ZodString }, ...args), "stringbool"); function json(params) { const jsonSchema = lazy2(() => { return union2([string2(params), number2(), boolean2(), _null3(), array(jsonSchema), record(string2(), jsonSchema)]); }); return jsonSchema; } __name(json, "json"); function preprocess(fn, schema) { return pipe(transform(fn), schema); } __name(preprocess, "preprocess"); // ../../node_modules/zod/v4/classic/compat.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var ZodIssueCode = { invalid_type: "invalid_type", too_big: "too_big", too_small: "too_small", invalid_format: "invalid_format", not_multiple_of: "not_multiple_of", unrecognized_keys: "unrecognized_keys", invalid_union: "invalid_union", invalid_key: "invalid_key", invalid_element: "invalid_element", invalid_value: "invalid_value", custom: "custom" }; function setErrorMap(map2) { config2({ customError: map2 }); } __name(setErrorMap, "setErrorMap"); function getErrorMap() { return config2().customError; } __name(getErrorMap, "getErrorMap"); var ZodFirstPartyTypeKind; /* @__PURE__ */ (function(ZodFirstPartyTypeKind2) { })(ZodFirstPartyTypeKind || (ZodFirstPartyTypeKind = {})); // ../../node_modules/zod/v4/classic/from-json-schema.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var z = { ...schemas_exports2, ...checks_exports2, iso: iso_exports }; var RECOGNIZED_KEYS = /* @__PURE__ */ new Set([ // Schema identification "$schema", "$ref", "$defs", "definitions", // Core schema keywords "$id", "id", "$comment", "$anchor", "$vocabulary", "$dynamicRef", "$dynamicAnchor", // Type "type", "enum", "const", // Composition "anyOf", "oneOf", "allOf", "not", // Object "properties", "required", "additionalProperties", "patternProperties", "propertyNames", "minProperties", "maxProperties", // Array "items", "prefixItems", "additionalItems", "minItems", "maxItems", "uniqueItems", "contains", "minContains", "maxContains", // String "minLength", "maxLength", "pattern", "format", // Number "minimum", "maximum", "exclusiveMinimum", "exclusiveMaximum", "multipleOf", // Already handled metadata "description", "default", // Content "contentEncoding", "contentMediaType", "contentSchema", // Unsupported (error-throwing) "unevaluatedItems", "unevaluatedProperties", "if", "then", "else", "dependentSchemas", "dependentRequired", // OpenAPI "nullable", "readOnly" ]); function detectVersion(schema, defaultTarget) { const $schema = schema.$schema; if ($schema === "https://json-schema.org/draft/2020-12/schema") { return "draft-2020-12"; } if ($schema === "http://json-schema.org/draft-07/schema#") { return "draft-7"; } if ($schema === "http://json-schema.org/draft-04/schema#") { return "draft-4"; } return defaultTarget ?? "draft-2020-12"; } __name(detectVersion, "detectVersion"); function resolveRef(ref2, ctx) { if (!ref2.startsWith("#")) { throw new Error("External $ref is not supported, only local refs (#/...) are allowed"); } const path3 = ref2.slice(1).split("/").filter(Boolean); if (path3.length === 0) { return ctx.rootSchema; } const defsKey = ctx.version === "draft-2020-12" ? "$defs" : "definitions"; if (path3[0] === defsKey) { const key = path3[1]; if (!key || !ctx.defs[key]) { throw new Error(`Reference not found: ${ref2}`); } return ctx.defs[key]; } throw new Error(`Reference not found: ${ref2}`); } __name(resolveRef, "resolveRef"); function convertBaseSchema(schema, ctx) { if (schema.not !== void 0) { if (typeof schema.not === "object" && Object.keys(schema.not).length === 0) { return z.never(); } throw new Error("not is not supported in Zod (except { not: {} } for never)"); } if (schema.unevaluatedItems !== void 0) { throw new Error("unevaluatedItems is not supported"); } if (schema.unevaluatedProperties !== void 0) { throw new Error("unevaluatedProperties is not supported"); } if (schema.if !== void 0 || schema.then !== void 0 || schema.else !== void 0) { throw new Error("Conditional schemas (if/then/else) are not supported"); } if (schema.dependentSchemas !== void 0 || schema.dependentRequired !== void 0) { throw new Error("dependentSchemas and dependentRequired are not supported"); } if (schema.$ref) { const refPath = schema.$ref; if (ctx.refs.has(refPath)) { return ctx.refs.get(refPath); } if (ctx.processing.has(refPath)) { return z.lazy(() => { if (!ctx.refs.has(refPath)) { throw new Error(`Circular reference not resolved: ${refPath}`); } return ctx.refs.get(refPath); }); } ctx.processing.add(refPath); const resolved = resolveRef(refPath, ctx); const zodSchema2 = convertSchema(resolved, ctx); ctx.refs.set(refPath, zodSchema2); ctx.processing.delete(refPath); return zodSchema2; } if (schema.enum !== void 0) { const enumValues = schema.enum; if (ctx.version === "openapi-3.0" && schema.nullable === true && enumValues.length === 1 && enumValues[0] === null) { return z.null(); } if (enumValues.length === 0) { return z.never(); } if (enumValues.length === 1) { return z.literal(enumValues[0]); } if (enumValues.every((v2) => typeof v2 === "string")) { return z.enum(enumValues); } const literalSchemas = enumValues.map((v2) => z.literal(v2)); if (literalSchemas.length < 2) { return literalSchemas[0]; } return z.union([literalSchemas[0], literalSchemas[1], ...literalSchemas.slice(2)]); } if (schema.const !== void 0) { return z.literal(schema.const); } const type = schema.type; if (Array.isArray(type)) { const typeSchemas = type.map((t8) => { const typeSchema = { ...schema, type: t8 }; return convertBaseSchema(typeSchema, ctx); }); if (typeSchemas.length === 0) { return z.never(); } if (typeSchemas.length === 1) { return typeSchemas[0]; } return z.union(typeSchemas); } if (!type) { return z.any(); } let zodSchema; switch (type) { case "string": { let stringSchema = z.string(); if (schema.format) { const format = schema.format; if (format === "email") { stringSchema = stringSchema.check(z.email()); } else if (format === "uri" || format === "uri-reference") { stringSchema = stringSchema.check(z.url()); } else if (format === "uuid" || format === "guid") { stringSchema = stringSchema.check(z.uuid()); } else if (format === "date-time") { stringSchema = stringSchema.check(z.iso.datetime()); } else if (format === "date") { stringSchema = stringSchema.check(z.iso.date()); } else if (format === "time") { stringSchema = stringSchema.check(z.iso.time()); } else if (format === "duration") { stringSchema = stringSchema.check(z.iso.duration()); } else if (format === "ipv4") { stringSchema = stringSchema.check(z.ipv4()); } else if (format === "ipv6") { stringSchema = stringSchema.check(z.ipv6()); } else if (format === "mac") { stringSchema = stringSchema.check(z.mac()); } else if (format === "cidr") { stringSchema = stringSchema.check(z.cidrv4()); } else if (format === "cidr-v6") { stringSchema = stringSchema.check(z.cidrv6()); } else if (format === "base64") { stringSchema = stringSchema.check(z.base64()); } else if (format === "base64url") { stringSchema = stringSchema.check(z.base64url()); } else if (format === "e164") { stringSchema = stringSchema.check(z.e164()); } else if (format === "jwt") { stringSchema = stringSchema.check(z.jwt()); } else if (format === "emoji") { stringSchema = stringSchema.check(z.emoji()); } else if (format === "nanoid") { stringSchema = stringSchema.check(z.nanoid()); } else if (format === "cuid") { stringSchema = stringSchema.check(z.cuid()); } else if (format === "cuid2") { stringSchema = stringSchema.check(z.cuid2()); } else if (format === "ulid") { stringSchema = stringSchema.check(z.ulid()); } else if (format === "xid") { stringSchema = stringSchema.check(z.xid()); } else if (format === "ksuid") { stringSchema = stringSchema.check(z.ksuid()); } } if (typeof schema.minLength === "number") { stringSchema = stringSchema.min(schema.minLength); } if (typeof schema.maxLength === "number") { stringSchema = stringSchema.max(schema.maxLength); } if (schema.pattern) { stringSchema = stringSchema.regex(new RegExp(schema.pattern)); } zodSchema = stringSchema; break; } case "number": case "integer": { let numberSchema = type === "integer" ? z.number().int() : z.number(); if (typeof schema.minimum === "number") { numberSchema = numberSchema.min(schema.minimum); } if (typeof schema.maximum === "number") { numberSchema = numberSchema.max(schema.maximum); } if (typeof schema.exclusiveMinimum === "number") { numberSchema = numberSchema.gt(schema.exclusiveMinimum); } else if (schema.exclusiveMinimum === true && typeof schema.minimum === "number") { numberSchema = numberSchema.gt(schema.minimum); } if (typeof schema.exclusiveMaximum === "number") { numberSchema = numberSchema.lt(schema.exclusiveMaximum); } else if (schema.exclusiveMaximum === true && typeof schema.maximum === "number") { numberSchema = numberSchema.lt(schema.maximum); } if (typeof schema.multipleOf === "number") { numberSchema = numberSchema.multipleOf(schema.multipleOf); } zodSchema = numberSchema; break; } case "boolean": { zodSchema = z.boolean(); break; } case "null": { zodSchema = z.null(); break; } case "object": { const shape = {}; const properties = schema.properties || {}; const requiredSet = new Set(schema.required || []); for (const [key, propSchema] of Object.entries(properties)) { const propZodSchema = convertSchema(propSchema, ctx); shape[key] = requiredSet.has(key) ? propZodSchema : propZodSchema.optional(); } if (schema.propertyNames) { const keySchema = convertSchema(schema.propertyNames, ctx); const valueSchema = schema.additionalProperties && typeof schema.additionalProperties === "object" ? convertSchema(schema.additionalProperties, ctx) : z.any(); if (Object.keys(shape).length === 0) { zodSchema = z.record(keySchema, valueSchema); break; } const objectSchema2 = z.object(shape).passthrough(); const recordSchema = z.looseRecord(keySchema, valueSchema); zodSchema = z.intersection(objectSchema2, recordSchema); break; } if (schema.patternProperties) { const patternProps = schema.patternProperties; const patternKeys = Object.keys(patternProps); const looseRecords = []; for (const pattern of patternKeys) { const patternValue = convertSchema(patternProps[pattern], ctx); const keySchema = z.string().regex(new RegExp(pattern)); looseRecords.push(z.looseRecord(keySchema, patternValue)); } const schemasToIntersect = []; if (Object.keys(shape).length > 0) { schemasToIntersect.push(z.object(shape).passthrough()); } schemasToIntersect.push(...looseRecords); if (schemasToIntersect.length === 0) { zodSchema = z.object({}).passthrough(); } else if (schemasToIntersect.length === 1) { zodSchema = schemasToIntersect[0]; } else { let result = z.intersection(schemasToIntersect[0], schemasToIntersect[1]); for (let i = 2; i < schemasToIntersect.length; i++) { result = z.intersection(result, schemasToIntersect[i]); } zodSchema = result; } break; } const objectSchema = z.object(shape); if (schema.additionalProperties === false) { zodSchema = objectSchema.strict(); } else if (typeof schema.additionalProperties === "object") { zodSchema = objectSchema.catchall(convertSchema(schema.additionalProperties, ctx)); } else { zodSchema = objectSchema.passthrough(); } break; } case "array": { const prefixItems = schema.prefixItems; const items = schema.items; if (prefixItems && Array.isArray(prefixItems)) { const tupleItems = prefixItems.map((item) => convertSchema(item, ctx)); const rest = items && typeof items === "object" && !Array.isArray(items) ? convertSchema(items, ctx) : void 0; if (rest) { zodSchema = z.tuple(tupleItems).rest(rest); } else { zodSchema = z.tuple(tupleItems); } if (typeof schema.minItems === "number") { zodSchema = zodSchema.check(z.minLength(schema.minItems)); } if (typeof schema.maxItems === "number") { zodSchema = zodSchema.check(z.maxLength(schema.maxItems)); } } else if (Array.isArray(items)) { const tupleItems = items.map((item) => convertSchema(item, ctx)); const rest = schema.additionalItems && typeof schema.additionalItems === "object" ? convertSchema(schema.additionalItems, ctx) : void 0; if (rest) { zodSchema = z.tuple(tupleItems).rest(rest); } else { zodSchema = z.tuple(tupleItems); } if (typeof schema.minItems === "number") { zodSchema = zodSchema.check(z.minLength(schema.minItems)); } if (typeof schema.maxItems === "number") { zodSchema = zodSchema.check(z.maxLength(schema.maxItems)); } } else if (items !== void 0) { const element = convertSchema(items, ctx); let arraySchema = z.array(element); if (typeof schema.minItems === "number") { arraySchema = arraySchema.min(schema.minItems); } if (typeof schema.maxItems === "number") { arraySchema = arraySchema.max(schema.maxItems); } zodSchema = arraySchema; } else { zodSchema = z.array(z.any()); } break; } default: throw new Error(`Unsupported type: ${type}`); } if (schema.description) { zodSchema = zodSchema.describe(schema.description); } if (schema.default !== void 0) { zodSchema = zodSchema.default(schema.default); } return zodSchema; } __name(convertBaseSchema, "convertBaseSchema"); function convertSchema(schema, ctx) { if (typeof schema === "boolean") { return schema ? z.any() : z.never(); } let baseSchema = convertBaseSchema(schema, ctx); const hasExplicitType = schema.type || schema.enum !== void 0 || schema.const !== void 0; if (schema.anyOf && Array.isArray(schema.anyOf)) { const options = schema.anyOf.map((s) => convertSchema(s, ctx)); const anyOfUnion = z.union(options); baseSchema = hasExplicitType ? z.intersection(baseSchema, anyOfUnion) : anyOfUnion; } if (schema.oneOf && Array.isArray(schema.oneOf)) { const options = schema.oneOf.map((s) => convertSchema(s, ctx)); const oneOfUnion = z.xor(options); baseSchema = hasExplicitType ? z.intersection(baseSchema, oneOfUnion) : oneOfUnion; } if (schema.allOf && Array.isArray(schema.allOf)) { if (schema.allOf.length === 0) { baseSchema = hasExplicitType ? baseSchema : z.any(); } else { let result = hasExplicitType ? baseSchema : convertSchema(schema.allOf[0], ctx); const startIdx = hasExplicitType ? 0 : 1; for (let i = startIdx; i < schema.allOf.length; i++) { result = z.intersection(result, convertSchema(schema.allOf[i], ctx)); } baseSchema = result; } } if (schema.nullable === true && ctx.version === "openapi-3.0") { baseSchema = z.nullable(baseSchema); } if (schema.readOnly === true) { baseSchema = z.readonly(baseSchema); } const extraMeta = {}; const coreMetadataKeys = ["$id", "id", "$comment", "$anchor", "$vocabulary", "$dynamicRef", "$dynamicAnchor"]; for (const key of coreMetadataKeys) { if (key in schema) { extraMeta[key] = schema[key]; } } const contentMetadataKeys = ["contentEncoding", "contentMediaType", "contentSchema"]; for (const key of contentMetadataKeys) { if (key in schema) { extraMeta[key] = schema[key]; } } for (const key of Object.keys(schema)) { if (!RECOGNIZED_KEYS.has(key)) { extraMeta[key] = schema[key]; } } if (Object.keys(extraMeta).length > 0) { ctx.registry.add(baseSchema, extraMeta); } return baseSchema; } __name(convertSchema, "convertSchema"); function fromJSONSchema(schema, params) { if (typeof schema === "boolean") { return schema ? z.any() : z.never(); } const version5 = detectVersion(schema, params?.defaultTarget); const defs = schema.$defs || schema.definitions || {}; const ctx = { version: version5, defs, refs: /* @__PURE__ */ new Map(), processing: /* @__PURE__ */ new Set(), rootSchema: schema, registry: params?.registry ?? globalRegistry }; return convertSchema(schema, ctx); } __name(fromJSONSchema, "fromJSONSchema"); // ../../node_modules/zod/v4/classic/coerce.js var coerce_exports = {}; __export(coerce_exports, { bigint: () => bigint4, boolean: () => boolean3, date: () => date4, number: () => number3, string: () => string3 }); init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); function string3(params) { return _coercedString(ZodString, params); } __name(string3, "string"); function number3(params) { return _coercedNumber(ZodNumber, params); } __name(number3, "number"); function boolean3(params) { return _coercedBoolean(ZodBoolean, params); } __name(boolean3, "boolean"); function bigint4(params) { return _coercedBigint(ZodBigInt, params); } __name(bigint4, "bigint"); function date4(params) { return _coercedDate(ZodDate, params); } __name(date4, "date"); // ../../node_modules/zod/v4/classic/external.js config2(en_default()); // src/trpc/apis/admin-apis/apis/admin-trpc-index.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // src/trpc/apis/admin-apis/apis/complaint.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var complaintRouter = router2({ getAll: protectedProcedure.input(external_exports.object({ cursor: external_exports.number().optional(), limit: external_exports.number().default(20) })).query(async ({ input }) => { const { cursor, limit } = input; const { complaints: complaintsData, hasMore } = await getComplaints(cursor, limit); const complaintsToReturn = hasMore ? complaintsData.slice(0, limit) : complaintsData; const complaintsWithSignedImages = await Promise.all( complaintsToReturn.map(async (c) => { const signedImages = c.images ? await generateSignedUrlsFromS3Urls(c.images) : []; return { id: c.id, text: c.complaintBody, userId: c.userId, userName: c.userName, userMobile: c.userMobile, orderId: c.orderId, status: c.isResolved ? "resolved" : "pending", createdAt: c.createdAt, images: signedImages }; }) ); return { complaints: complaintsWithSignedImages, nextCursor: hasMore ? complaintsToReturn[complaintsToReturn.length - 1].id : void 0 }; }), resolve: protectedProcedure.input(external_exports.object({ id: external_exports.string(), response: external_exports.string().optional() })).mutation(async ({ input }) => { await resolveComplaint(parseInt(input.id), input.response); return { message: "Complaint resolved successfully" }; }) }); // src/trpc/apis/admin-apis/apis/coupon.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var import_dayjs = __toESM(require_dayjs_min()); var createCouponBodySchema = external_exports.object({ couponCode: external_exports.string().optional(), isUserBased: external_exports.boolean().optional(), discountPercent: external_exports.number().optional(), flatDiscount: external_exports.number().optional(), minOrder: external_exports.number().optional(), targetUser: external_exports.number().optional(), productIds: external_exports.array(external_exports.number()).optional().nullable(), applicableUsers: external_exports.array(external_exports.number()).optional(), applicableProducts: external_exports.array(external_exports.number()).optional(), maxValue: external_exports.number().optional(), isApplyForAll: external_exports.boolean().optional(), validTill: external_exports.string().optional(), maxLimitForUser: external_exports.number().optional(), exclusiveApply: external_exports.boolean().optional() }); var validateCouponBodySchema = external_exports.object({ code: external_exports.string(), userId: external_exports.number(), orderAmount: external_exports.number() }); var couponRouter = router2({ create: protectedProcedure.input(createCouponBodySchema).mutation(async ({ input, ctx }) => { const { couponCode, isUserBased, discountPercent, flatDiscount, minOrder, productIds, applicableUsers, applicableProducts, maxValue, isApplyForAll, validTill, maxLimitForUser, exclusiveApply } = input; if (!discountPercent && !flatDiscount || discountPercent && flatDiscount) { throw new Error("Either discountPercent or flatDiscount must be provided (but not both)"); } if (isUserBased && (!applicableUsers || applicableUsers.length === 0) && !isApplyForAll) { throw new Error("applicableUsers is required for user-based coupons (or set isApplyForAll to true)"); } if (isUserBased && isApplyForAll) { throw new Error("Cannot be both user-based and apply for all users"); } const staffUserId = ctx.staffUser?.id; if (!staffUserId) { throw new Error("Unauthorized"); } let finalCouponCode = couponCode; if (!finalCouponCode) { const timestamp = Date.now().toString().slice(-6); const random = Math.random().toString(36).substring(2, 8).toUpperCase(); finalCouponCode = `MF${timestamp}${random}`; } const codeExists = await checkCouponExists(finalCouponCode); if (codeExists) { throw new Error("Coupon code already exists"); } if (applicableUsers && applicableUsers.length > 0) { const usersExist = await checkUsersExist(applicableUsers); if (!usersExist) { throw new Error("Some applicable users not found"); } } const coupon = await createCouponWithRelations( { couponCode: finalCouponCode, isUserBased: isUserBased || false, discountPercent: discountPercent?.toString(), flatDiscount: flatDiscount?.toString(), minOrder: minOrder?.toString(), productIds: productIds || null, createdBy: staffUserId, maxValue: maxValue?.toString(), isApplyForAll: isApplyForAll || false, validTill: validTill ? (0, import_dayjs.default)(validTill).toDate() : void 0, maxLimitForUser, exclusiveApply: exclusiveApply || false }, applicableUsers, applicableProducts ); return coupon; }), getAll: protectedProcedure.input(external_exports.object({ cursor: external_exports.number().optional(), limit: external_exports.number().default(50), search: external_exports.string().optional() })).query(async ({ input }) => { const { cursor, limit, search } = input; const { coupons: couponsList, hasMore } = await getAllCoupons(cursor, limit, search); const nextCursor = hasMore ? couponsList[couponsList.length - 1].id : void 0; return { coupons: couponsList, nextCursor }; }), getById: protectedProcedure.input(external_exports.object({ id: external_exports.number() })).query(async ({ input }) => { const couponId = input.id; const result = await getCouponById(couponId); if (!result) { throw new Error("Coupon not found"); } return { ...result, productIds: result.productIds || void 0, applicableUsers: result.applicableUsers.map((au) => au.user), applicableProducts: result.applicableProducts.map((ap) => ap.product) }; }), update: protectedProcedure.input(external_exports.object({ id: external_exports.number(), updates: createCouponBodySchema.extend({ isInvalidated: external_exports.boolean().optional() }) })).mutation(async ({ input }) => { const { id, updates } = input; if (updates.discountPercent !== void 0 && updates.flatDiscount !== void 0) { if (updates.discountPercent && updates.flatDiscount) { throw new Error("Cannot have both discountPercent and flatDiscount"); } } const updateData2 = {}; if (updates.couponCode !== void 0) updateData2.couponCode = updates.couponCode; if (updates.isUserBased !== void 0) updateData2.isUserBased = updates.isUserBased; if (updates.discountPercent !== void 0) updateData2.discountPercent = updates.discountPercent?.toString(); if (updates.flatDiscount !== void 0) updateData2.flatDiscount = updates.flatDiscount?.toString(); if (updates.minOrder !== void 0) updateData2.minOrder = updates.minOrder?.toString(); if (updates.maxValue !== void 0) updateData2.maxValue = updates.maxValue?.toString(); if (updates.isApplyForAll !== void 0) updateData2.isApplyForAll = updates.isApplyForAll; if (updates.validTill !== void 0) updateData2.validTill = updates.validTill ? (0, import_dayjs.default)(updates.validTill).toDate() : null; if (updates.maxLimitForUser !== void 0) updateData2.maxLimitForUser = updates.maxLimitForUser; if (updates.exclusiveApply !== void 0) updateData2.exclusiveApply = updates.exclusiveApply; if (updates.isInvalidated !== void 0) updateData2.isInvalidated = updates.isInvalidated; if (updates.productIds !== void 0) updateData2.productIds = updates.productIds; const coupon = await updateCouponWithRelations( id, updateData2, updates.applicableUsers, updates.applicableProducts ); return coupon; }), delete: protectedProcedure.input(external_exports.object({ id: external_exports.number() })).mutation(async ({ input }) => { const { id } = input; await invalidateCoupon(id); return { message: "Coupon invalidated successfully" }; }), validate: protectedProcedure.input(validateCouponBodySchema).query(async ({ input }) => { const { code, userId, orderAmount } = input; if (!code || typeof code !== "string") { return { valid: false, message: "Invalid coupon code" }; } const result = await validateCoupon(code, userId, orderAmount); return result; }), generateCancellationCoupon: protectedProcedure.input( external_exports.object({ orderId: external_exports.number() }) ).mutation(async ({ input, ctx }) => { const { orderId } = input; const staffUserId = ctx.staffUser?.id; if (!staffUserId) { throw new Error("Unauthorized"); } const order = await getOrderWithUser(orderId); if (!order) { throw new Error("Order not found"); } if (!order.user) { throw new Error("User not found for this order"); } const userNamePrefix = (order.user.name || order.user.mobile || "USR").substring(0, 3).toUpperCase(); const couponCode = `${userNamePrefix}${orderId}`; const codeExists = await checkCouponExists(couponCode); if (codeExists) { throw new Error("Coupon code already exists"); } const orderAmount = parseFloat(order.totalAmount); const coupon = await generateCancellationCoupon( orderId, staffUserId, order.userId, orderAmount, couponCode ); return coupon; }), getReservedCoupons: protectedProcedure.input(external_exports.object({ cursor: external_exports.number().optional(), limit: external_exports.number().default(50), search: external_exports.string().optional() })).query(async ({ input }) => { const { cursor, limit, search } = input; const { coupons: result, hasMore } = await getReservedCoupons(cursor, limit, search); const nextCursor = hasMore ? result[result.length - 1].id : void 0; return { coupons: result, nextCursor }; }), createReservedCoupon: protectedProcedure.input(createCouponBodySchema).mutation(async ({ input, ctx }) => { const { couponCode, isUserBased, discountPercent, flatDiscount, minOrder, productIds, applicableProducts, maxValue, validTill, maxLimitForUser, exclusiveApply } = input; if (!discountPercent && !flatDiscount || discountPercent && flatDiscount) { throw new Error("Either discountPercent or flatDiscount must be provided (but not both)"); } const staffUserId = ctx.staffUser?.id; if (!staffUserId) { throw new Error("Unauthorized"); } let secretCode = couponCode || `SECRET${Date.now().toString().slice(-6)}${Math.random().toString(36).substring(2, 8).toUpperCase()}`; const codeExists = await checkReservedCouponExists(secretCode); if (codeExists) { throw new Error("Secret code already exists"); } const coupon = await createReservedCouponWithProducts( { secretCode, couponCode: couponCode || `RESERVED${Date.now().toString().slice(-6)}`, discountPercent: discountPercent?.toString(), flatDiscount: flatDiscount?.toString(), minOrder: minOrder?.toString(), productIds, maxValue: maxValue?.toString(), validTill: validTill ? (0, import_dayjs.default)(validTill).toDate() : void 0, maxLimitForUser, exclusiveApply: exclusiveApply || false, createdBy: staffUserId }, applicableProducts ); return coupon; }), getUsersMiniInfo: protectedProcedure.input(external_exports.object({ search: external_exports.string().optional(), limit: external_exports.number().min(1).max(50).default(20), offset: external_exports.number().min(0).default(0) })).query(async ({ input }) => { const { search, limit, offset } = input; const result = await getUsersForCoupon(search, limit, offset); return result; }), createCoupon: protectedProcedure.input(external_exports.object({ mobile: external_exports.string().min(1, "Mobile number is required") })).mutation(async ({ input, ctx }) => { const { mobile } = input; const staffUserId = ctx.staffUser?.id; if (!staffUserId) { throw new Error("Unauthorized"); } const cleanMobile = mobile.replace(/\D/g, ""); if (cleanMobile.length !== 10) { throw new Error("Mobile number must be exactly 10 digits"); } const timestamp = Date.now().toString().slice(-6); const random = Math.random().toString(36).substring(2, 6).toUpperCase(); const couponCode = `MF${cleanMobile.slice(-4)}${timestamp}${random}`; const codeExists = await checkCouponExists(couponCode); if (codeExists) { throw new Error("Generated coupon code already exists - please try again"); } const { coupon, user } = await createCouponForUser(cleanMobile, couponCode, staffUserId); return { success: true, coupon: { id: coupon.id, couponCode: coupon.couponCode, userId: user.id, userMobile: user.mobile, discountPercent: 20, minOrder: 1e3, maxValue: 500, maxLimitForUser: 1 } }; }) }); // src/trpc/apis/admin-apis/apis/order.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // src/lib/notif-job.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/index.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/classes/index.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/classes/async-fifo-queue.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var Node3 = class { static { __name(this, "Node"); } constructor(value) { this.value = void 0; this.next = null; this.value = value; } }; var LinkedList = class { static { __name(this, "LinkedList"); } constructor() { this.length = 0; this.head = null; this.tail = null; } push(value) { const newNode = new Node3(value); if (!this.length) { this.head = newNode; } else { this.tail.next = newNode; } this.tail = newNode; this.length += 1; return newNode; } shift() { if (!this.length) { return null; } else { const head = this.head; this.head = this.head.next; this.length -= 1; return head; } } }; var AsyncFifoQueue = class { static { __name(this, "AsyncFifoQueue"); } constructor(ignoreErrors = false) { this.ignoreErrors = ignoreErrors; this.queue = new LinkedList(); this.pending = /* @__PURE__ */ new Set(); this.newPromise(); } add(promise2) { this.pending.add(promise2); promise2.then((data) => { this.pending.delete(promise2); if (this.queue.length === 0) { this.resolvePromise(data); } this.queue.push(data); }).catch((err) => { if (this.ignoreErrors) { this.queue.push(void 0); } this.pending.delete(promise2); this.rejectPromise(err); }); } async waitAll() { await Promise.all(this.pending); } numTotal() { return this.pending.size + this.queue.length; } numPending() { return this.pending.size; } numQueued() { return this.queue.length; } resolvePromise(data) { this.resolve(data); this.newPromise(); } rejectPromise(err) { this.reject(err); this.newPromise(); } newPromise() { this.nextPromise = new Promise((resolve, reject) => { this.resolve = resolve; this.reject = reject; }); } async wait() { return this.nextPromise; } async fetch() { var _a2; if (this.pending.size === 0 && this.queue.length === 0) { return; } while (this.queue.length === 0) { try { await this.wait(); } catch (err) { if (!this.ignoreErrors) { console.error("Unexpected Error in AsyncFifoQueue", err); } } } return (_a2 = this.queue.shift()) === null || _a2 === void 0 ? void 0 : _a2.value; } }; // ../../node_modules/bullmq/dist/esm/classes/backoffs.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var Backoffs = class { static { __name(this, "Backoffs"); } static normalize(backoff) { if (Number.isFinite(backoff)) { return { type: "fixed", delay: backoff }; } else if (backoff) { return backoff; } } static calculate(backoff, attemptsMade, err, job, customStrategy) { if (backoff) { const strategy = lookupStrategy(backoff, customStrategy); return strategy(attemptsMade, backoff.type, err, job); } } }; Backoffs.builtinStrategies = { fixed: /* @__PURE__ */ __name(function(delay2, jitter = 0) { return function() { if (jitter > 0) { const minDelay = delay2 * (1 - jitter); return Math.floor(Math.random() * delay2 * jitter + minDelay); } else { return delay2; } }; }, "fixed"), exponential: /* @__PURE__ */ __name(function(delay2, jitter = 0) { return function(attemptsMade) { if (jitter > 0) { const maxDelay = Math.round(Math.pow(2, attemptsMade - 1) * delay2); const minDelay = maxDelay * (1 - jitter); return Math.floor(Math.random() * maxDelay * jitter + minDelay); } else { return Math.round(Math.pow(2, attemptsMade - 1) * delay2); } }; }, "exponential") }; function lookupStrategy(backoff, customStrategy) { if (backoff.type in Backoffs.builtinStrategies) { return Backoffs.builtinStrategies[backoff.type](backoff.delay, backoff.jitter); } else if (customStrategy) { return customStrategy; } else { throw new Error(`Unknown backoff strategy ${backoff.type}. If a custom backoff strategy is used, specify it when the queue is created.`); } } __name(lookupStrategy, "lookupStrategy"); // ../../node_modules/bullmq/dist/esm/classes/child.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/unenv/dist/runtime/node/child_process.mjs init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_utils(); var fork = /* @__PURE__ */ notImplemented("child_process.fork"); // ../../node_modules/bullmq/dist/esm/classes/child.js import { createServer } from "net"; // ../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/unenv/dist/runtime/node/worker_threads.mjs init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/unenv/dist/runtime/node/internal/worker_threads/worker.mjs init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); import { EventEmitter as EventEmitter2 } from "node:events"; import { Readable } from "node:stream"; var Worker = class extends EventEmitter2 { static { __name(this, "Worker"); } stdin = null; stdout = new Readable(); stderr = new Readable(); threadId = 0; performance = { eventLoopUtilization: /* @__PURE__ */ __name(() => ({ idle: 0, active: 0, utilization: 0 }), "eventLoopUtilization") }; postMessage(_value, _transferList) { } postMessageToThread(_threadId, _value, _transferList, _timeout) { return Promise.resolve(); } ref() { } unref() { } terminate() { return Promise.resolve(0); } getHeapSnapshot() { return Promise.resolve(new Readable()); } }; // ../../node_modules/bullmq/dist/esm/enums/index.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/enums/child-command.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var ChildCommand; (function(ChildCommand2) { ChildCommand2[ChildCommand2["Init"] = 0] = "Init"; ChildCommand2[ChildCommand2["Start"] = 1] = "Start"; ChildCommand2[ChildCommand2["Stop"] = 2] = "Stop"; ChildCommand2[ChildCommand2["GetChildrenValuesResponse"] = 3] = "GetChildrenValuesResponse"; ChildCommand2[ChildCommand2["GetIgnoredChildrenFailuresResponse"] = 4] = "GetIgnoredChildrenFailuresResponse"; ChildCommand2[ChildCommand2["MoveToWaitingChildrenResponse"] = 5] = "MoveToWaitingChildrenResponse"; ChildCommand2[ChildCommand2["Cancel"] = 6] = "Cancel"; })(ChildCommand || (ChildCommand = {})); // ../../node_modules/bullmq/dist/esm/enums/error-code.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var ErrorCode; (function(ErrorCode2) { ErrorCode2[ErrorCode2["JobNotExist"] = -1] = "JobNotExist"; ErrorCode2[ErrorCode2["JobLockNotExist"] = -2] = "JobLockNotExist"; ErrorCode2[ErrorCode2["JobNotInState"] = -3] = "JobNotInState"; ErrorCode2[ErrorCode2["JobPendingChildren"] = -4] = "JobPendingChildren"; ErrorCode2[ErrorCode2["ParentJobNotExist"] = -5] = "ParentJobNotExist"; ErrorCode2[ErrorCode2["JobLockMismatch"] = -6] = "JobLockMismatch"; ErrorCode2[ErrorCode2["ParentJobCannotBeReplaced"] = -7] = "ParentJobCannotBeReplaced"; ErrorCode2[ErrorCode2["JobBelongsToJobScheduler"] = -8] = "JobBelongsToJobScheduler"; ErrorCode2[ErrorCode2["JobHasFailedChildren"] = -9] = "JobHasFailedChildren"; ErrorCode2[ErrorCode2["SchedulerJobIdCollision"] = -10] = "SchedulerJobIdCollision"; ErrorCode2[ErrorCode2["SchedulerJobSlotsBusy"] = -11] = "SchedulerJobSlotsBusy"; })(ErrorCode || (ErrorCode = {})); // ../../node_modules/bullmq/dist/esm/enums/parent-command.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var ParentCommand; (function(ParentCommand2) { ParentCommand2[ParentCommand2["Completed"] = 0] = "Completed"; ParentCommand2[ParentCommand2["Error"] = 1] = "Error"; ParentCommand2[ParentCommand2["Failed"] = 2] = "Failed"; ParentCommand2[ParentCommand2["InitFailed"] = 3] = "InitFailed"; ParentCommand2[ParentCommand2["InitCompleted"] = 4] = "InitCompleted"; ParentCommand2[ParentCommand2["Log"] = 5] = "Log"; ParentCommand2[ParentCommand2["MoveToDelayed"] = 6] = "MoveToDelayed"; ParentCommand2[ParentCommand2["MoveToWait"] = 7] = "MoveToWait"; ParentCommand2[ParentCommand2["Progress"] = 8] = "Progress"; ParentCommand2[ParentCommand2["Update"] = 9] = "Update"; ParentCommand2[ParentCommand2["GetChildrenValues"] = 10] = "GetChildrenValues"; ParentCommand2[ParentCommand2["GetIgnoredChildrenFailures"] = 11] = "GetIgnoredChildrenFailures"; ParentCommand2[ParentCommand2["MoveToWaitingChildren"] = 12] = "MoveToWaitingChildren"; })(ParentCommand || (ParentCommand = {})); // ../../node_modules/bullmq/dist/esm/enums/metrics-time.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var MetricsTime; (function(MetricsTime2) { MetricsTime2[MetricsTime2["ONE_MINUTE"] = 1] = "ONE_MINUTE"; MetricsTime2[MetricsTime2["FIVE_MINUTES"] = 5] = "FIVE_MINUTES"; MetricsTime2[MetricsTime2["FIFTEEN_MINUTES"] = 15] = "FIFTEEN_MINUTES"; MetricsTime2[MetricsTime2["THIRTY_MINUTES"] = 30] = "THIRTY_MINUTES"; MetricsTime2[MetricsTime2["ONE_HOUR"] = 60] = "ONE_HOUR"; MetricsTime2[MetricsTime2["ONE_WEEK"] = 10080] = "ONE_WEEK"; MetricsTime2[MetricsTime2["TWO_WEEKS"] = 20160] = "TWO_WEEKS"; MetricsTime2[MetricsTime2["ONE_MONTH"] = 80640] = "ONE_MONTH"; })(MetricsTime || (MetricsTime = {})); // ../../node_modules/bullmq/dist/esm/enums/telemetry-attributes.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var TelemetryAttributes; (function(TelemetryAttributes2) { TelemetryAttributes2["QueueName"] = "bullmq.queue.name"; TelemetryAttributes2["QueueOperation"] = "bullmq.queue.operation"; TelemetryAttributes2["BulkCount"] = "bullmq.job.bulk.count"; TelemetryAttributes2["BulkNames"] = "bullmq.job.bulk.names"; TelemetryAttributes2["JobName"] = "bullmq.job.name"; TelemetryAttributes2["JobId"] = "bullmq.job.id"; TelemetryAttributes2["JobKey"] = "bullmq.job.key"; TelemetryAttributes2["JobIds"] = "bullmq.job.ids"; TelemetryAttributes2["JobAttemptsMade"] = "bullmq.job.attempts.made"; TelemetryAttributes2["DeduplicationKey"] = "bullmq.job.deduplication.key"; TelemetryAttributes2["JobOptions"] = "bullmq.job.options"; TelemetryAttributes2["JobProgress"] = "bullmq.job.progress"; TelemetryAttributes2["QueueDrainDelay"] = "bullmq.queue.drain.delay"; TelemetryAttributes2["QueueGrace"] = "bullmq.queue.grace"; TelemetryAttributes2["QueueCleanLimit"] = "bullmq.queue.clean.limit"; TelemetryAttributes2["QueueRateLimit"] = "bullmq.queue.rate.limit"; TelemetryAttributes2["JobType"] = "bullmq.job.type"; TelemetryAttributes2["QueueOptions"] = "bullmq.queue.options"; TelemetryAttributes2["QueueEventMaxLength"] = "bullmq.queue.event.max.length"; TelemetryAttributes2["QueueJobsState"] = "bullmq.queue.jobs.state"; TelemetryAttributes2["WorkerOptions"] = "bullmq.worker.options"; TelemetryAttributes2["WorkerName"] = "bullmq.worker.name"; TelemetryAttributes2["WorkerId"] = "bullmq.worker.id"; TelemetryAttributes2["WorkerRateLimit"] = "bullmq.worker.rate.limit"; TelemetryAttributes2["WorkerDoNotWaitActive"] = "bullmq.worker.do.not.wait.active"; TelemetryAttributes2["WorkerForceClose"] = "bullmq.worker.force.close"; TelemetryAttributes2["WorkerStalledJobs"] = "bullmq.worker.stalled.jobs"; TelemetryAttributes2["WorkerFailedJobs"] = "bullmq.worker.failed.jobs"; TelemetryAttributes2["WorkerJobsToExtendLocks"] = "bullmq.worker.jobs.to.extend.locks"; TelemetryAttributes2["JobFinishedTimestamp"] = "bullmq.job.finished.timestamp"; TelemetryAttributes2["JobAttemptFinishedTimestamp"] = "bullmq.job.attempt_finished_timestamp"; TelemetryAttributes2["JobProcessedTimestamp"] = "bullmq.job.processed.timestamp"; TelemetryAttributes2["JobResult"] = "bullmq.job.result"; TelemetryAttributes2["JobFailedReason"] = "bullmq.job.failed.reason"; TelemetryAttributes2["FlowName"] = "bullmq.flow.name"; TelemetryAttributes2["JobSchedulerId"] = "bullmq.job.scheduler.id"; TelemetryAttributes2["JobStatus"] = "bullmq.job.status"; })(TelemetryAttributes || (TelemetryAttributes = {})); var MetricNames; (function(MetricNames2) { MetricNames2["QueueJobsCount"] = "bullmq.queue.jobs"; MetricNames2["JobsCompleted"] = "bullmq.jobs.completed"; MetricNames2["JobsFailed"] = "bullmq.jobs.failed"; MetricNames2["JobsDelayed"] = "bullmq.jobs.delayed"; MetricNames2["JobsRetried"] = "bullmq.jobs.retried"; MetricNames2["JobsWaiting"] = "bullmq.jobs.waiting"; MetricNames2["JobsWaitingChildren"] = "bullmq.jobs.waiting_children"; MetricNames2["JobDuration"] = "bullmq.job.duration"; })(MetricNames || (MetricNames = {})); var SpanKind; (function(SpanKind2) { SpanKind2[SpanKind2["INTERNAL"] = 0] = "INTERNAL"; SpanKind2[SpanKind2["SERVER"] = 1] = "SERVER"; SpanKind2[SpanKind2["CLIENT"] = 2] = "CLIENT"; SpanKind2[SpanKind2["PRODUCER"] = 3] = "PRODUCER"; SpanKind2[SpanKind2["CONSUMER"] = 4] = "CONSUMER"; })(SpanKind || (SpanKind = {})); // ../../node_modules/bullmq/dist/esm/classes/child.js import { EventEmitter as EventEmitter3 } from "events"; var exitCodesErrors = { 1: "Uncaught Fatal Exception", 2: "Unused", 3: "Internal JavaScript Parse Error", 4: "Internal JavaScript Evaluation Failure", 5: "Fatal Error", 6: "Non-function Internal Exception Handler", 7: "Internal Exception Handler Run-Time Failure", 8: "Unused", 9: "Invalid Argument", 10: "Internal JavaScript Run-Time Failure", 12: "Invalid Debug Argument", 13: "Unfinished Top-Level Await" }; var Child = class extends EventEmitter3 { static { __name(this, "Child"); } constructor(mainFile, processFile, opts = { useWorkerThreads: false }) { super(); this.mainFile = mainFile; this.processFile = processFile; this.opts = opts; this._exitCode = null; this._signalCode = null; this._killed = false; } get pid() { if (this.childProcess) { return this.childProcess.pid; } else if (this.worker) { return Math.abs(this.worker.threadId); } else { throw new Error("No child process or worker thread"); } } get exitCode() { return this._exitCode; } get signalCode() { return this._signalCode; } get killed() { if (this.childProcess) { return this.childProcess.killed; } return this._killed; } async init() { const execArgv2 = await convertExecArgv(process.execArgv); let parent; if (this.opts.useWorkerThreads) { this.worker = parent = new Worker(this.mainFile, Object.assign({ execArgv: execArgv2, stdin: true, stdout: true, stderr: true }, this.opts.workerThreadsOptions ? this.opts.workerThreadsOptions : {})); } else { this.childProcess = parent = fork(this.mainFile, [], Object.assign({ execArgv: execArgv2, stdio: "pipe" }, this.opts.workerForkOptions ? this.opts.workerForkOptions : {})); } parent.on("exit", (exitCode2, signalCode) => { this._exitCode = exitCode2; signalCode = typeof signalCode === "undefined" ? null : signalCode; this._signalCode = signalCode; this._killed = true; this.emit("exit", exitCode2, signalCode); parent.removeAllListeners(); this.removeAllListeners(); }); parent.on("error", (...args) => this.emit("error", ...args)); parent.on("message", (...args) => this.emit("message", ...args)); parent.on("close", (...args) => this.emit("close", ...args)); parent.stdout.pipe(process.stdout); parent.stderr.pipe(process.stderr); await this.initChild(); } async send(msg) { return new Promise((resolve, reject) => { if (this.childProcess) { this.childProcess.send(msg, (err) => { if (err) { reject(err); } else { resolve(); } }); } else if (this.worker) { resolve(this.worker.postMessage(msg)); } else { resolve(); } }); } killProcess(signal = "SIGKILL") { if (this.childProcess) { this.childProcess.kill(signal); } else if (this.worker) { this.worker.terminate(); } } async kill(signal = "SIGKILL", timeoutMs) { if (this.hasProcessExited()) { return; } const onExit = onExitOnce(this.childProcess || this.worker); this.killProcess(signal); if (timeoutMs !== void 0 && (timeoutMs === 0 || isFinite(timeoutMs))) { const timeoutHandle = setTimeout(() => { if (!this.hasProcessExited()) { this.killProcess("SIGKILL"); } }, timeoutMs); await onExit; clearTimeout(timeoutHandle); } await onExit; } async initChild() { const onComplete = new Promise((resolve, reject) => { const onMessageHandler = /* @__PURE__ */ __name((msg) => { if (!Object.values(ParentCommand).includes(msg.cmd)) { return; } if (msg.cmd === ParentCommand.InitCompleted) { resolve(); } else if (msg.cmd === ParentCommand.InitFailed) { const err = new Error(); err.stack = msg.err.stack; err.message = msg.err.message; reject(err); } this.off("message", onMessageHandler); this.off("close", onCloseHandler); }, "onMessageHandler"); const onCloseHandler = /* @__PURE__ */ __name((code, signal) => { if (code > 128) { code -= 128; } const msg = exitCodesErrors[code] || `Unknown exit code ${code}`; reject(new Error(`Error initializing child: ${msg} and signal ${signal}`)); this.off("message", onMessageHandler); this.off("close", onCloseHandler); }, "onCloseHandler"); this.on("message", onMessageHandler); this.on("close", onCloseHandler); }); await this.send({ cmd: ChildCommand.Init, value: this.processFile }); await onComplete; } hasProcessExited() { return !!(this.exitCode !== null || this.signalCode); } }; function onExitOnce(child) { return new Promise((resolve) => { child.once("exit", () => resolve()); }); } __name(onExitOnce, "onExitOnce"); var getFreePort = /* @__PURE__ */ __name(async () => { return new Promise((resolve) => { const server = createServer(); server.listen(0, () => { const { port } = server.address(); server.close(() => resolve(port)); }); }); }, "getFreePort"); var convertExecArgv = /* @__PURE__ */ __name(async (execArgv2) => { const standard = []; const convertedArgs = []; for (let i = 0; i < execArgv2.length; i++) { const arg = execArgv2[i]; if (arg.indexOf("--inspect") === -1) { standard.push(arg); } else { const argName = arg.split("=")[0]; const port = await getFreePort(); convertedArgs.push(`${argName}=${port}`); } } return standard.concat(convertedArgs); }, "convertExecArgv"); // ../../node_modules/bullmq/dist/esm/classes/child-pool.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); import * as path from "path"; var CHILD_KILL_TIMEOUT = 3e4; var supportCJS = /* @__PURE__ */ __name(() => { return typeof __require === "function" && typeof module === "object" && typeof module.exports === "object"; }, "supportCJS"); var ChildPool = class { static { __name(this, "ChildPool"); } constructor({ mainFile = supportCJS() ? path.join(process.cwd(), "dist/cjs/classes/main.js") : path.join(process.cwd(), "dist/esm/classes/main.js"), useWorkerThreads, workerForkOptions, workerThreadsOptions }) { this.retained = {}; this.free = {}; this.opts = { mainFile, useWorkerThreads, workerForkOptions, workerThreadsOptions }; } async retain(processFile) { let child = this.getFree(processFile).pop(); if (child) { this.retained[child.pid] = child; return child; } child = new Child(this.opts.mainFile, processFile, { useWorkerThreads: this.opts.useWorkerThreads, workerForkOptions: this.opts.workerForkOptions, workerThreadsOptions: this.opts.workerThreadsOptions }); child.on("exit", this.remove.bind(this, child)); try { await child.init(); if (child.exitCode !== null || child.signalCode !== null) { throw new Error("Child exited before it could be retained"); } this.retained[child.pid] = child; return child; } catch (err) { console.error(err); this.release(child); throw err; } } release(child) { delete this.retained[child.pid]; this.getFree(child.processFile).push(child); } remove(child) { delete this.retained[child.pid]; const free = this.getFree(child.processFile); const childIndex = free.indexOf(child); if (childIndex > -1) { free.splice(childIndex, 1); } } async kill(child, signal = "SIGKILL") { this.remove(child); return child.kill(signal, CHILD_KILL_TIMEOUT); } async clean() { const children = Object.values(this.retained).concat(this.getAllFree()); this.retained = {}; this.free = {}; await Promise.all(children.map((c) => this.kill(c, "SIGTERM"))); } getFree(id) { return this.free[id] = this.free[id] || []; } getAllFree() { return Object.values(this.free).reduce((first, second) => first.concat(second), []); } }; // ../../node_modules/bullmq/dist/esm/classes/child-processor.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var import_node_abort_controller = __toESM(require_browser()); // ../../node_modules/bullmq/dist/esm/utils/index.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var import_ioredis = __toESM(require_built3()); var import_utils24 = __toESM(require_utils2()); var semver = __toESM(require_semver2()); var errorObject = { value: null }; function tryCatch(fn, ctx, args) { try { return fn.apply(ctx, args); } catch (e) { errorObject.value = e; return errorObject; } } __name(tryCatch, "tryCatch"); function lengthInUtf8Bytes(str) { return Buffer.byteLength(str, "utf8"); } __name(lengthInUtf8Bytes, "lengthInUtf8Bytes"); function isEmpty(obj) { for (const key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { return false; } } return true; } __name(isEmpty, "isEmpty"); function array2obj(arr) { const obj = {}; for (let i = 0; i < arr.length; i += 2) { obj[arr[i]] = arr[i + 1]; } return obj; } __name(array2obj, "array2obj"); function objectToFlatArray(obj) { const arr = []; for (const key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key) && obj[key] !== void 0) { arr[arr.length] = key; arr[arr.length] = obj[key]; } } return arr; } __name(objectToFlatArray, "objectToFlatArray"); function delay(ms, abortController) { return new Promise((resolve) => { let timeout; const callback = /* @__PURE__ */ __name(() => { abortController === null || abortController === void 0 ? void 0 : abortController.signal.removeEventListener("abort", callback); clearTimeout(timeout); resolve(); }, "callback"); timeout = setTimeout(callback, ms); abortController === null || abortController === void 0 ? void 0 : abortController.signal.addEventListener("abort", callback); }); } __name(delay, "delay"); function increaseMaxListeners(emitter, count4) { const maxListeners = emitter.getMaxListeners(); emitter.setMaxListeners(maxListeners + count4); } __name(increaseMaxListeners, "increaseMaxListeners"); function invertObject(obj) { return Object.entries(obj).reduce((result, [key, value]) => { result[value] = key; return result; }, {}); } __name(invertObject, "invertObject"); var optsDecodeMap = { de: "deduplication", fpof: "failParentOnFailure", cpof: "continueParentOnFailure", idof: "ignoreDependencyOnFailure", kl: "keepLogs", rdof: "removeDependencyOnFailure" }; var optsEncodeMap = Object.assign(Object.assign({}, invertObject(optsDecodeMap)), { /*/ Legacy for backwards compatibility */ debounce: "de" }); function isRedisInstance(obj) { if (!obj) { return false; } const redisApi = ["connect", "disconnect", "duplicate"]; return redisApi.every((name) => typeof obj[name] === "function"); } __name(isRedisInstance, "isRedisInstance"); function isRedisCluster(obj) { return isRedisInstance(obj) && obj.isCluster; } __name(isRedisCluster, "isRedisCluster"); function decreaseMaxListeners(emitter, count4) { increaseMaxListeners(emitter, -count4); } __name(decreaseMaxListeners, "decreaseMaxListeners"); function getParentKey(opts) { if (opts) { return `${opts.queue}:${opts.id}`; } } __name(getParentKey, "getParentKey"); var clientCommandMessageReg = /ERR unknown command ['`]\s*client\s*['`]/; var DELAY_TIME_5 = 5e3; var DELAY_TIME_1 = 100; function isNotConnectionError(error50) { const { code, message: errorMessage } = error50; return errorMessage !== import_utils24.CONNECTION_CLOSED_ERROR_MSG && !errorMessage.includes("ECONNREFUSED") && code !== "ECONNREFUSED"; } __name(isNotConnectionError, "isNotConnectionError"); var isRedisVersionLowerThan = /* @__PURE__ */ __name((currentVersion, minimumVersion, currentDatabaseType, desiredDatabaseType = "redis") => { if (currentDatabaseType === desiredDatabaseType) { const version5 = semver.valid(semver.coerce(currentVersion)); return semver.lt(version5, minimumVersion); } return false; }, "isRedisVersionLowerThan"); var parseObjectValues = /* @__PURE__ */ __name((obj) => { const accumulator = {}; for (const value of Object.entries(obj)) { accumulator[value[0]] = JSON.parse(value[1]); } return accumulator; }, "parseObjectValues"); var INFINITY = 1 / 0; var QUEUE_EVENT_SUFFIX = ":qe"; function removeUndefinedFields(obj) { const newObj = {}; for (const key in obj) { if (obj[key] !== void 0) { newObj[key] = obj[key]; } } return newObj; } __name(removeUndefinedFields, "removeUndefinedFields"); async function trace3(telemetry, spanKind, queueName, operation, destination, callback, srcPropagationMetadata) { if (!telemetry) { return callback(); } else { const { tracer: tracer2, contextManager } = telemetry; const currentContext = contextManager.active(); let parentContext; if (srcPropagationMetadata) { parentContext = contextManager.fromMetadata(currentContext, srcPropagationMetadata); } const spanName = destination ? `${operation} ${destination}` : operation; const span = tracer2.startSpan(spanName, { kind: spanKind }, parentContext); try { span.setAttributes({ [TelemetryAttributes.QueueName]: queueName, [TelemetryAttributes.QueueOperation]: operation }); let messageContext; let dstPropagationMetadata; if (spanKind === SpanKind.CONSUMER && parentContext) { messageContext = span.setSpanOnContext(parentContext); } else { messageContext = span.setSpanOnContext(currentContext); } if (callback.length == 2) { dstPropagationMetadata = contextManager.getMetadata(messageContext); } return await contextManager.with(messageContext, () => callback(span, dstPropagationMetadata)); } catch (err) { span.recordException(err); throw err; } finally { span.end(); } } } __name(trace3, "trace"); // ../../node_modules/bullmq/dist/esm/classes/child-processor.js var ChildStatus; (function(ChildStatus2) { ChildStatus2[ChildStatus2["Idle"] = 0] = "Idle"; ChildStatus2[ChildStatus2["Started"] = 1] = "Started"; ChildStatus2[ChildStatus2["Terminating"] = 2] = "Terminating"; ChildStatus2[ChildStatus2["Errored"] = 3] = "Errored"; })(ChildStatus || (ChildStatus = {})); // ../../node_modules/bullmq/dist/esm/classes/errors/index.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/classes/errors/delayed-error.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var DELAYED_ERROR = "bullmq:movedToDelayed"; var DelayedError = class extends Error { static { __name(this, "DelayedError"); } constructor(message2 = DELAYED_ERROR) { super(message2); this.name = this.constructor.name; Object.setPrototypeOf(this, new.target.prototype); } }; // ../../node_modules/bullmq/dist/esm/classes/errors/rate-limit-error.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var RATE_LIMIT_ERROR = "bullmq:rateLimitExceeded"; var RateLimitError = class extends Error { static { __name(this, "RateLimitError"); } constructor(message2 = RATE_LIMIT_ERROR) { super(message2); this.name = this.constructor.name; Object.setPrototypeOf(this, new.target.prototype); } }; // ../../node_modules/bullmq/dist/esm/classes/errors/unrecoverable-error.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var UNRECOVERABLE_ERROR = "bullmq:unrecoverable"; var UnrecoverableError = class extends Error { static { __name(this, "UnrecoverableError"); } constructor(message2 = UNRECOVERABLE_ERROR) { super(message2); this.name = this.constructor.name; Object.setPrototypeOf(this, new.target.prototype); } }; // ../../node_modules/bullmq/dist/esm/classes/errors/waiting-children-error.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var WAITING_CHILDREN_ERROR = "bullmq:movedToWaitingChildren"; var WaitingChildrenError = class extends Error { static { __name(this, "WaitingChildrenError"); } constructor(message2 = WAITING_CHILDREN_ERROR) { super(message2); this.name = this.constructor.name; Object.setPrototypeOf(this, new.target.prototype); } }; // ../../node_modules/bullmq/dist/esm/classes/errors/waiting-error.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var WAITING_ERROR = "bullmq:movedToWait"; var WaitingError = class extends Error { static { __name(this, "WaitingError"); } constructor(message2 = WAITING_ERROR) { super(message2); this.name = this.constructor.name; Object.setPrototypeOf(this, new.target.prototype); } }; // ../../node_modules/bullmq/dist/esm/classes/flow-producer.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); import { EventEmitter as EventEmitter5 } from "events"; // ../../node_modules/uuid/dist/esm-browser/index.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/uuid/dist/esm-browser/rng.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var getRandomValues = typeof crypto != "undefined" && crypto.getRandomValues && crypto.getRandomValues.bind(crypto) || typeof msCrypto != "undefined" && typeof msCrypto.getRandomValues == "function" && msCrypto.getRandomValues.bind(msCrypto); var rnds8 = new Uint8Array(16); function rng() { if (!getRandomValues) { throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported"); } return getRandomValues(rnds8); } __name(rng, "rng"); // ../../node_modules/uuid/dist/esm-browser/bytesToUuid.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var byteToHex = []; for (i = 0; i < 256; ++i) { byteToHex[i] = (i + 256).toString(16).substr(1); } var i; function bytesToUuid(buf, offset) { var i = offset || 0; var bth = byteToHex; return [bth[buf[i++]], bth[buf[i++]], bth[buf[i++]], bth[buf[i++]], "-", bth[buf[i++]], bth[buf[i++]], "-", bth[buf[i++]], bth[buf[i++]], "-", bth[buf[i++]], bth[buf[i++]], "-", bth[buf[i++]], bth[buf[i++]], bth[buf[i++]], bth[buf[i++]], bth[buf[i++]], bth[buf[i++]]].join(""); } __name(bytesToUuid, "bytesToUuid"); var bytesToUuid_default = bytesToUuid; // ../../node_modules/uuid/dist/esm-browser/v4.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); function v4(options, buf, offset) { var i = buf && offset || 0; if (typeof options == "string") { buf = options === "binary" ? new Array(16) : null; options = null; } options = options || {}; var rnds = options.random || (options.rng || rng)(); rnds[6] = rnds[6] & 15 | 64; rnds[8] = rnds[8] & 63 | 128; if (buf) { for (var ii = 0; ii < 16; ++ii) { buf[i + ii] = rnds[ii]; } } return buf || bytesToUuid_default(rnds); } __name(v4, "v4"); var v4_default = v4; // ../../node_modules/bullmq/dist/esm/classes/job.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); import { debuglog } from "util"; // ../../node_modules/bullmq/dist/esm/utils/create-scripts.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/classes/scripts.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/msgpackr/index.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/msgpackr/pack.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/msgpackr/unpack.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var decoder2; try { decoder2 = new TextDecoder(); } catch (error50) { } var src; var srcEnd; var position = 0; var EMPTY_ARRAY = []; var strings = EMPTY_ARRAY; var stringPosition = 0; var currentUnpackr = {}; var currentStructures; var srcString; var srcStringStart = 0; var srcStringEnd = 0; var bundledStrings; var referenceMap; var currentExtensions = []; var dataView; var defaultOptions = { useRecords: false, mapsAsObjects: true }; var C1Type = class { static { __name(this, "C1Type"); } }; var C1 = new C1Type(); C1.name = "MessagePack 0xC1"; var sequentialMode = false; var inlineObjectReadThreshold = 2; var readStruct; var onLoadedStructures; var onSaveState; try { new Function(""); } catch (error50) { inlineObjectReadThreshold = Infinity; } var Unpackr = class _Unpackr { static { __name(this, "Unpackr"); } constructor(options) { if (options) { if (options.useRecords === false && options.mapsAsObjects === void 0) options.mapsAsObjects = true; if (options.sequential && options.trusted !== false) { options.trusted = true; if (!options.structures && options.useRecords != false) { options.structures = []; if (!options.maxSharedStructures) options.maxSharedStructures = 0; } } if (options.structures) options.structures.sharedLength = options.structures.length; else if (options.getStructures) { (options.structures = []).uninitialized = true; options.structures.sharedLength = 0; } if (options.int64AsNumber) { options.int64AsType = "number"; } } Object.assign(this, options); } unpack(source, options) { if (src) { return saveState(() => { clearSource(); return this ? this.unpack(source, options) : _Unpackr.prototype.unpack.call(defaultOptions, source, options); }); } if (!source.buffer && source.constructor === ArrayBuffer) source = typeof Buffer !== "undefined" ? Buffer.from(source) : new Uint8Array(source); if (typeof options === "object") { srcEnd = options.end || source.length; position = options.start || 0; } else { position = 0; srcEnd = options > -1 ? options : source.length; } stringPosition = 0; srcStringEnd = 0; srcString = null; strings = EMPTY_ARRAY; bundledStrings = null; src = source; try { dataView = source.dataView || (source.dataView = new DataView(source.buffer, source.byteOffset, source.byteLength)); } catch (error50) { src = null; if (source instanceof Uint8Array) throw error50; throw new Error("Source must be a Uint8Array or Buffer but was a " + (source && typeof source == "object" ? source.constructor.name : typeof source)); } if (this instanceof _Unpackr) { currentUnpackr = this; if (this.structures) { currentStructures = this.structures; return checkedRead(options); } else if (!currentStructures || currentStructures.length > 0) { currentStructures = []; } } else { currentUnpackr = defaultOptions; if (!currentStructures || currentStructures.length > 0) currentStructures = []; } return checkedRead(options); } unpackMultiple(source, forEach2) { let values, lastPosition = 0; try { sequentialMode = true; let size = source.length; let value = this ? this.unpack(source, size) : defaultUnpackr.unpack(source, size); if (forEach2) { if (forEach2(value, lastPosition, position) === false) return; while (position < size) { lastPosition = position; if (forEach2(checkedRead(), lastPosition, position) === false) { return; } } } else { values = [value]; while (position < size) { lastPosition = position; values.push(checkedRead()); } return values; } } catch (error50) { error50.lastPosition = lastPosition; error50.values = values; throw error50; } finally { sequentialMode = false; clearSource(); } } _mergeStructures(loadedStructures, existingStructures) { if (onLoadedStructures) loadedStructures = onLoadedStructures.call(this, loadedStructures); loadedStructures = loadedStructures || []; if (Object.isFrozen(loadedStructures)) loadedStructures = loadedStructures.map((structure) => structure.slice(0)); for (let i = 0, l = loadedStructures.length; i < l; i++) { let structure = loadedStructures[i]; if (structure) { structure.isShared = true; if (i >= 32) structure.highByte = i - 32 >> 5; } } loadedStructures.sharedLength = loadedStructures.length; for (let id in existingStructures || []) { if (id >= 0) { let structure = loadedStructures[id]; let existing = existingStructures[id]; if (existing) { if (structure) (loadedStructures.restoreStructures || (loadedStructures.restoreStructures = []))[id] = structure; loadedStructures[id] = existing; } } } return this.structures = loadedStructures; } decode(source, options) { return this.unpack(source, options); } }; function checkedRead(options) { try { if (!currentUnpackr.trusted && !sequentialMode) { let sharedLength = currentStructures.sharedLength || 0; if (sharedLength < currentStructures.length) currentStructures.length = sharedLength; } let result; if (currentUnpackr.randomAccessStructure && src[position] < 64 && src[position] >= 32 && readStruct) { result = readStruct(src, position, srcEnd, currentUnpackr); src = null; if (!(options && options.lazy) && result) result = result.toJSON(); position = srcEnd; } else result = read2(); if (bundledStrings) { position = bundledStrings.postBundlePosition; bundledStrings = null; } if (sequentialMode) currentStructures.restoreStructures = null; if (position == srcEnd) { if (currentStructures && currentStructures.restoreStructures) restoreStructures(); currentStructures = null; src = null; if (referenceMap) referenceMap = null; } else if (position > srcEnd) { throw new Error("Unexpected end of MessagePack data"); } else if (!sequentialMode) { let jsonView; try { jsonView = JSON.stringify(result, (_, value) => typeof value === "bigint" ? `${value}n` : value).slice(0, 100); } catch (error50) { jsonView = "(JSON view not available " + error50 + ")"; } throw new Error("Data read, but end of buffer not reached " + jsonView); } return result; } catch (error50) { if (currentStructures && currentStructures.restoreStructures) restoreStructures(); clearSource(); if (error50 instanceof RangeError || error50.message.startsWith("Unexpected end of buffer") || position > srcEnd) { error50.incomplete = true; } throw error50; } } __name(checkedRead, "checkedRead"); function restoreStructures() { for (let id in currentStructures.restoreStructures) { currentStructures[id] = currentStructures.restoreStructures[id]; } currentStructures.restoreStructures = null; } __name(restoreStructures, "restoreStructures"); function read2() { let token = src[position++]; if (token < 160) { if (token < 128) { if (token < 64) return token; else { let structure = currentStructures[token & 63] || currentUnpackr.getStructures && loadStructures()[token & 63]; if (structure) { if (!structure.read) { structure.read = createStructureReader(structure, token & 63); } return structure.read(); } else return token; } } else if (token < 144) { token -= 128; if (currentUnpackr.mapsAsObjects) { let object2 = {}; for (let i = 0; i < token; i++) { let key = readKey(); if (key === "__proto__") key = "__proto_"; object2[key] = read2(); } return object2; } else { let map2 = /* @__PURE__ */ new Map(); for (let i = 0; i < token; i++) { map2.set(read2(), read2()); } return map2; } } else { token -= 144; let array2 = new Array(token); for (let i = 0; i < token; i++) { array2[i] = read2(); } if (currentUnpackr.freezeData) return Object.freeze(array2); return array2; } } else if (token < 192) { let length = token - 160; if (srcStringEnd >= position) { return srcString.slice(position - srcStringStart, (position += length) - srcStringStart); } if (srcStringEnd == 0 && srcEnd < 140) { let string4 = length < 16 ? shortStringInJS(length) : longStringInJS(length); if (string4 != null) return string4; } return readFixedString(length); } else { let value; switch (token) { case 192: return null; case 193: if (bundledStrings) { value = read2(); if (value > 0) return bundledStrings[1].slice(bundledStrings.position1, bundledStrings.position1 += value); else return bundledStrings[0].slice(bundledStrings.position0, bundledStrings.position0 -= value); } return C1; // "never-used", return special object to denote that case 194: return false; case 195: return true; case 196: value = src[position++]; if (value === void 0) throw new Error("Unexpected end of buffer"); return readBin(value); case 197: value = dataView.getUint16(position); position += 2; return readBin(value); case 198: value = dataView.getUint32(position); position += 4; return readBin(value); case 199: return readExt(src[position++]); case 200: value = dataView.getUint16(position); position += 2; return readExt(value); case 201: value = dataView.getUint32(position); position += 4; return readExt(value); case 202: value = dataView.getFloat32(position); if (currentUnpackr.useFloat32 > 2) { let multiplier = mult10[(src[position] & 127) << 1 | src[position + 1] >> 7]; position += 4; return (multiplier * value + (value > 0 ? 0.5 : -0.5) >> 0) / multiplier; } position += 4; return value; case 203: value = dataView.getFloat64(position); position += 8; return value; // uint handlers case 204: return src[position++]; case 205: value = dataView.getUint16(position); position += 2; return value; case 206: value = dataView.getUint32(position); position += 4; return value; case 207: if (currentUnpackr.int64AsType === "number") { value = dataView.getUint32(position) * 4294967296; value += dataView.getUint32(position + 4); } else if (currentUnpackr.int64AsType === "string") { value = dataView.getBigUint64(position).toString(); } else if (currentUnpackr.int64AsType === "auto") { value = dataView.getBigUint64(position); if (value <= BigInt(2) << BigInt(52)) value = Number(value); } else value = dataView.getBigUint64(position); position += 8; return value; // int handlers case 208: return dataView.getInt8(position++); case 209: value = dataView.getInt16(position); position += 2; return value; case 210: value = dataView.getInt32(position); position += 4; return value; case 211: if (currentUnpackr.int64AsType === "number") { value = dataView.getInt32(position) * 4294967296; value += dataView.getUint32(position + 4); } else if (currentUnpackr.int64AsType === "string") { value = dataView.getBigInt64(position).toString(); } else if (currentUnpackr.int64AsType === "auto") { value = dataView.getBigInt64(position); if (value >= BigInt(-2) << BigInt(52) && value <= BigInt(2) << BigInt(52)) value = Number(value); } else value = dataView.getBigInt64(position); position += 8; return value; case 212: value = src[position++]; if (value == 114) { return recordDefinition(src[position++] & 63); } else { let extension = currentExtensions[value]; if (extension) { if (extension.read) { position++; return extension.read(read2()); } else if (extension.noBuffer) { position++; return extension(); } else return extension(src.subarray(position, ++position)); } else throw new Error("Unknown extension " + value); } case 213: value = src[position]; if (value == 114) { position++; return recordDefinition(src[position++] & 63, src[position++]); } else return readExt(2); case 214: return readExt(4); case 215: return readExt(8); case 216: return readExt(16); case 217: value = src[position++]; if (srcStringEnd >= position) { return srcString.slice(position - srcStringStart, (position += value) - srcStringStart); } return readString8(value); case 218: value = dataView.getUint16(position); position += 2; if (srcStringEnd >= position) { return srcString.slice(position - srcStringStart, (position += value) - srcStringStart); } return readString16(value); case 219: value = dataView.getUint32(position); position += 4; if (srcStringEnd >= position) { return srcString.slice(position - srcStringStart, (position += value) - srcStringStart); } return readString32(value); case 220: value = dataView.getUint16(position); position += 2; return readArray(value); case 221: value = dataView.getUint32(position); position += 4; return readArray(value); case 222: value = dataView.getUint16(position); position += 2; return readMap(value); case 223: value = dataView.getUint32(position); position += 4; return readMap(value); default: if (token >= 224) return token - 256; if (token === void 0) { let error50 = new Error("Unexpected end of MessagePack data"); error50.incomplete = true; throw error50; } throw new Error("Unknown MessagePack token " + token); } } } __name(read2, "read"); var validName = /^[a-zA-Z_$][a-zA-Z\d_$]*$/; function createStructureReader(structure, firstId) { function readObject() { if (readObject.count++ > inlineObjectReadThreshold) { let readObject2 = structure.read = new Function("r", "return function(){return " + (currentUnpackr.freezeData ? "Object.freeze" : "") + "({" + structure.map((key) => key === "__proto__" ? "__proto_:r()" : validName.test(key) ? key + ":r()" : "[" + JSON.stringify(key) + "]:r()").join(",") + "})}")(read2); if (structure.highByte === 0) structure.read = createSecondByteReader(firstId, structure.read); return readObject2(); } let object2 = {}; for (let i = 0, l = structure.length; i < l; i++) { let key = structure[i]; if (key === "__proto__") key = "__proto_"; object2[key] = read2(); } if (currentUnpackr.freezeData) return Object.freeze(object2); return object2; } __name(readObject, "readObject"); readObject.count = 0; if (structure.highByte === 0) { return createSecondByteReader(firstId, readObject); } return readObject; } __name(createStructureReader, "createStructureReader"); var createSecondByteReader = /* @__PURE__ */ __name((firstId, read0) => { return function() { let highByte = src[position++]; if (highByte === 0) return read0(); let id = firstId < 32 ? -(firstId + (highByte << 5)) : firstId + (highByte << 5); let structure = currentStructures[id] || loadStructures()[id]; if (!structure) { throw new Error("Record id is not defined for " + id); } if (!structure.read) structure.read = createStructureReader(structure, firstId); return structure.read(); }; }, "createSecondByteReader"); function loadStructures() { let loadedStructures = saveState(() => { src = null; return currentUnpackr.getStructures(); }); return currentStructures = currentUnpackr._mergeStructures(loadedStructures, currentStructures); } __name(loadStructures, "loadStructures"); var readFixedString = readStringJS; var readString8 = readStringJS; var readString16 = readStringJS; var readString32 = readStringJS; function readStringJS(length) { let result; if (length < 16) { if (result = shortStringInJS(length)) return result; } if (length > 64 && decoder2) return decoder2.decode(src.subarray(position, position += length)); const end = position + length; const units2 = []; result = ""; while (position < end) { const byte1 = src[position++]; if ((byte1 & 128) === 0) { units2.push(byte1); } else if ((byte1 & 224) === 192) { const byte2 = src[position++] & 63; units2.push((byte1 & 31) << 6 | byte2); } else if ((byte1 & 240) === 224) { const byte2 = src[position++] & 63; const byte3 = src[position++] & 63; units2.push((byte1 & 31) << 12 | byte2 << 6 | byte3); } else if ((byte1 & 248) === 240) { const byte2 = src[position++] & 63; const byte3 = src[position++] & 63; const byte4 = src[position++] & 63; let unit = (byte1 & 7) << 18 | byte2 << 12 | byte3 << 6 | byte4; if (unit > 65535) { unit -= 65536; units2.push(unit >>> 10 & 1023 | 55296); unit = 56320 | unit & 1023; } units2.push(unit); } else { units2.push(byte1); } if (units2.length >= 4096) { result += fromCharCode.apply(String, units2); units2.length = 0; } } if (units2.length > 0) { result += fromCharCode.apply(String, units2); } return result; } __name(readStringJS, "readStringJS"); function readArray(length) { let array2 = new Array(length); for (let i = 0; i < length; i++) { array2[i] = read2(); } if (currentUnpackr.freezeData) return Object.freeze(array2); return array2; } __name(readArray, "readArray"); function readMap(length) { if (currentUnpackr.mapsAsObjects) { let object2 = {}; for (let i = 0; i < length; i++) { let key = readKey(); if (key === "__proto__") key = "__proto_"; object2[key] = read2(); } return object2; } else { let map2 = /* @__PURE__ */ new Map(); for (let i = 0; i < length; i++) { map2.set(read2(), read2()); } return map2; } } __name(readMap, "readMap"); var fromCharCode = String.fromCharCode; function longStringInJS(length) { let start = position; let bytes = new Array(length); for (let i = 0; i < length; i++) { const byte = src[position++]; if ((byte & 128) > 0) { position = start; return; } bytes[i] = byte; } return fromCharCode.apply(String, bytes); } __name(longStringInJS, "longStringInJS"); function shortStringInJS(length) { if (length < 4) { if (length < 2) { if (length === 0) return ""; else { let a = src[position++]; if ((a & 128) > 1) { position -= 1; return; } return fromCharCode(a); } } else { let a = src[position++]; let b = src[position++]; if ((a & 128) > 0 || (b & 128) > 0) { position -= 2; return; } if (length < 3) return fromCharCode(a, b); let c = src[position++]; if ((c & 128) > 0) { position -= 3; return; } return fromCharCode(a, b, c); } } else { let a = src[position++]; let b = src[position++]; let c = src[position++]; let d = src[position++]; if ((a & 128) > 0 || (b & 128) > 0 || (c & 128) > 0 || (d & 128) > 0) { position -= 4; return; } if (length < 6) { if (length === 4) return fromCharCode(a, b, c, d); else { let e = src[position++]; if ((e & 128) > 0) { position -= 5; return; } return fromCharCode(a, b, c, d, e); } } else if (length < 8) { let e = src[position++]; let f = src[position++]; if ((e & 128) > 0 || (f & 128) > 0) { position -= 6; return; } if (length < 7) return fromCharCode(a, b, c, d, e, f); let g = src[position++]; if ((g & 128) > 0) { position -= 7; return; } return fromCharCode(a, b, c, d, e, f, g); } else { let e = src[position++]; let f = src[position++]; let g = src[position++]; let h = src[position++]; if ((e & 128) > 0 || (f & 128) > 0 || (g & 128) > 0 || (h & 128) > 0) { position -= 8; return; } if (length < 10) { if (length === 8) return fromCharCode(a, b, c, d, e, f, g, h); else { let i = src[position++]; if ((i & 128) > 0) { position -= 9; return; } return fromCharCode(a, b, c, d, e, f, g, h, i); } } else if (length < 12) { let i = src[position++]; let j = src[position++]; if ((i & 128) > 0 || (j & 128) > 0) { position -= 10; return; } if (length < 11) return fromCharCode(a, b, c, d, e, f, g, h, i, j); let k = src[position++]; if ((k & 128) > 0) { position -= 11; return; } return fromCharCode(a, b, c, d, e, f, g, h, i, j, k); } else { let i = src[position++]; let j = src[position++]; let k = src[position++]; let l = src[position++]; if ((i & 128) > 0 || (j & 128) > 0 || (k & 128) > 0 || (l & 128) > 0) { position -= 12; return; } if (length < 14) { if (length === 12) return fromCharCode(a, b, c, d, e, f, g, h, i, j, k, l); else { let m = src[position++]; if ((m & 128) > 0) { position -= 13; return; } return fromCharCode(a, b, c, d, e, f, g, h, i, j, k, l, m); } } else { let m = src[position++]; let n = src[position++]; if ((m & 128) > 0 || (n & 128) > 0) { position -= 14; return; } if (length < 15) return fromCharCode(a, b, c, d, e, f, g, h, i, j, k, l, m, n); let o = src[position++]; if ((o & 128) > 0) { position -= 15; return; } return fromCharCode(a, b, c, d, e, f, g, h, i, j, k, l, m, n, o); } } } } } __name(shortStringInJS, "shortStringInJS"); function readOnlyJSString() { let token = src[position++]; let length; if (token < 192) { length = token - 160; } else { switch (token) { case 217: length = src[position++]; break; case 218: length = dataView.getUint16(position); position += 2; break; case 219: length = dataView.getUint32(position); position += 4; break; default: throw new Error("Expected string"); } } return readStringJS(length); } __name(readOnlyJSString, "readOnlyJSString"); function readBin(length) { return currentUnpackr.copyBuffers ? ( // specifically use the copying slice (not the node one) Uint8Array.prototype.slice.call(src, position, position += length) ) : src.subarray(position, position += length); } __name(readBin, "readBin"); function readExt(length) { let type = src[position++]; if (currentExtensions[type]) { let end; return currentExtensions[type](src.subarray(position, end = position += length), (readPosition) => { position = readPosition; try { return read2(); } finally { position = end; } }); } else throw new Error("Unknown extension type " + type); } __name(readExt, "readExt"); var keyCache = new Array(4096); function readKey() { let length = src[position++]; if (length >= 160 && length < 192) { length = length - 160; if (srcStringEnd >= position) return srcString.slice(position - srcStringStart, (position += length) - srcStringStart); else if (!(srcStringEnd == 0 && srcEnd < 180)) return readFixedString(length); } else { position--; return asSafeString(read2()); } let key = (length << 5 ^ (length > 1 ? dataView.getUint16(position) : length > 0 ? src[position] : 0)) & 4095; let entry = keyCache[key]; let checkPosition = position; let end = position + length - 3; let chunk; let i = 0; if (entry && entry.bytes == length) { while (checkPosition < end) { chunk = dataView.getUint32(checkPosition); if (chunk != entry[i++]) { checkPosition = 1879048192; break; } checkPosition += 4; } end += 3; while (checkPosition < end) { chunk = src[checkPosition++]; if (chunk != entry[i++]) { checkPosition = 1879048192; break; } } if (checkPosition === end) { position = checkPosition; return entry.string; } end -= 3; checkPosition = position; } entry = []; keyCache[key] = entry; entry.bytes = length; while (checkPosition < end) { chunk = dataView.getUint32(checkPosition); entry.push(chunk); checkPosition += 4; } end += 3; while (checkPosition < end) { chunk = src[checkPosition++]; entry.push(chunk); } let string4 = length < 16 ? shortStringInJS(length) : longStringInJS(length); if (string4 != null) return entry.string = string4; return entry.string = readFixedString(length); } __name(readKey, "readKey"); function asSafeString(property) { if (typeof property === "string") return property; if (typeof property === "number" || typeof property === "boolean" || typeof property === "bigint") return property.toString(); if (property == null) return property + ""; if (currentUnpackr.allowArraysInMapKeys && Array.isArray(property) && property.flat().every((item) => ["string", "number", "boolean", "bigint"].includes(typeof item))) { return property.flat().toString(); } throw new Error(`Invalid property type for record: ${typeof property}`); } __name(asSafeString, "asSafeString"); var recordDefinition = /* @__PURE__ */ __name((id, highByte) => { let structure = read2().map(asSafeString); let firstByte = id; if (highByte !== void 0) { id = id < 32 ? -((highByte << 5) + id) : (highByte << 5) + id; structure.highByte = highByte; } let existingStructure = currentStructures[id]; if (existingStructure && (existingStructure.isShared || sequentialMode)) { (currentStructures.restoreStructures || (currentStructures.restoreStructures = []))[id] = existingStructure; } currentStructures[id] = structure; structure.read = createStructureReader(structure, firstByte); return structure.read(); }, "recordDefinition"); currentExtensions[0] = () => { }; currentExtensions[0].noBuffer = true; currentExtensions[66] = (data) => { let headLength = data.byteLength % 8 || 8; let head = BigInt(data[0] & 128 ? data[0] - 256 : data[0]); for (let i = 1; i < headLength; i++) { head <<= BigInt(8); head += BigInt(data[i]); } if (data.byteLength !== headLength) { let view = new DataView(data.buffer, data.byteOffset, data.byteLength); let decode5 = /* @__PURE__ */ __name((start, end) => { let length = end - start; if (length <= 40) { let out = view.getBigUint64(start); for (let i = start + 8; i < end; i += 8) { out <<= BigInt(64n); out |= view.getBigUint64(i); } return out; } let middle = start + (length >> 4 << 3); let left = decode5(start, middle); let right = decode5(middle, end); return left << BigInt((end - middle) * 8) | right; }, "decode"); head = head << BigInt((view.byteLength - headLength) * 8) | decode5(headLength, view.byteLength); } return head; }; var errors = { Error, EvalError, RangeError, ReferenceError, SyntaxError, TypeError, URIError, AggregateError: typeof AggregateError === "function" ? AggregateError : null }; currentExtensions[101] = () => { let data = read2(); if (!errors[data[0]]) { let error50 = Error(data[1], { cause: data[2] }); error50.name = data[0]; return error50; } return errors[data[0]](data[1], { cause: data[2] }); }; currentExtensions[105] = (data) => { if (currentUnpackr.structuredClone === false) throw new Error("Structured clone extension is disabled"); let id = dataView.getUint32(position - 4); if (!referenceMap) referenceMap = /* @__PURE__ */ new Map(); let token = src[position]; let target2; if (token >= 144 && token < 160 || token == 220 || token == 221) target2 = []; else if (token >= 128 && token < 144 || token == 222 || token == 223) target2 = /* @__PURE__ */ new Map(); else if ((token >= 199 && token <= 201 || token >= 212 && token <= 216) && src[position + 1] === 115) target2 = /* @__PURE__ */ new Set(); else target2 = {}; let refEntry = { target: target2 }; referenceMap.set(id, refEntry); let targetProperties = read2(); if (!refEntry.used) { return refEntry.target = targetProperties; } else { Object.assign(target2, targetProperties); } if (target2 instanceof Map) for (let [k, v2] of targetProperties.entries()) target2.set(k, v2); if (target2 instanceof Set) for (let i of Array.from(targetProperties)) target2.add(i); return target2; }; currentExtensions[112] = (data) => { if (currentUnpackr.structuredClone === false) throw new Error("Structured clone extension is disabled"); let id = dataView.getUint32(position - 4); let refEntry = referenceMap.get(id); refEntry.used = true; return refEntry.target; }; currentExtensions[115] = () => new Set(read2()); var typedArrays = ["Int8", "Uint8", "Uint8Clamped", "Int16", "Uint16", "Int32", "Uint32", "Float32", "Float64", "BigInt64", "BigUint64"].map((type) => type + "Array"); var glbl = typeof globalThis === "object" ? globalThis : window; currentExtensions[116] = (data) => { let typeCode = data[0]; let buffer = Uint8Array.prototype.slice.call(data, 1).buffer; let typedArrayName = typedArrays[typeCode]; if (!typedArrayName) { if (typeCode === 16) return buffer; if (typeCode === 17) return new DataView(buffer); throw new Error("Could not find typed array for code " + typeCode); } return new glbl[typedArrayName](buffer); }; currentExtensions[120] = () => { let data = read2(); return new RegExp(data[0], data[1]); }; var TEMP_BUNDLE = []; currentExtensions[98] = (data) => { let dataSize = (data[0] << 24) + (data[1] << 16) + (data[2] << 8) + data[3]; let dataPosition = position; position += dataSize - data.length; bundledStrings = TEMP_BUNDLE; bundledStrings = [readOnlyJSString(), readOnlyJSString()]; bundledStrings.position0 = 0; bundledStrings.position1 = 0; bundledStrings.postBundlePosition = position; position = dataPosition; return read2(); }; currentExtensions[255] = (data) => { if (data.length == 4) return new Date((data[0] * 16777216 + (data[1] << 16) + (data[2] << 8) + data[3]) * 1e3); else if (data.length == 8) return new Date( ((data[0] << 22) + (data[1] << 14) + (data[2] << 6) + (data[3] >> 2)) / 1e6 + ((data[3] & 3) * 4294967296 + data[4] * 16777216 + (data[5] << 16) + (data[6] << 8) + data[7]) * 1e3 ); else if (data.length == 12) return new Date( ((data[0] << 24) + (data[1] << 16) + (data[2] << 8) + data[3]) / 1e6 + ((data[4] & 128 ? -281474976710656 : 0) + data[6] * 1099511627776 + data[7] * 4294967296 + data[8] * 16777216 + (data[9] << 16) + (data[10] << 8) + data[11]) * 1e3 ); else return /* @__PURE__ */ new Date("invalid"); }; function saveState(callback) { if (onSaveState) onSaveState(); let savedSrcEnd = srcEnd; let savedPosition = position; let savedStringPosition = stringPosition; let savedSrcStringStart = srcStringStart; let savedSrcStringEnd = srcStringEnd; let savedSrcString = srcString; let savedStrings = strings; let savedReferenceMap = referenceMap; let savedBundledStrings = bundledStrings; let savedSrc = new Uint8Array(src.slice(0, srcEnd)); let savedStructures = currentStructures; let savedStructuresContents = currentStructures.slice(0, currentStructures.length); let savedPackr = currentUnpackr; let savedSequentialMode = sequentialMode; let value = callback(); srcEnd = savedSrcEnd; position = savedPosition; stringPosition = savedStringPosition; srcStringStart = savedSrcStringStart; srcStringEnd = savedSrcStringEnd; srcString = savedSrcString; strings = savedStrings; referenceMap = savedReferenceMap; bundledStrings = savedBundledStrings; src = savedSrc; sequentialMode = savedSequentialMode; currentStructures = savedStructures; currentStructures.splice(0, currentStructures.length, ...savedStructuresContents); currentUnpackr = savedPackr; dataView = new DataView(src.buffer, src.byteOffset, src.byteLength); return value; } __name(saveState, "saveState"); function clearSource() { src = null; referenceMap = null; currentStructures = null; } __name(clearSource, "clearSource"); var mult10 = new Array(147); for (let i = 0; i < 256; i++) { mult10[i] = +("1e" + Math.floor(45.15 - i * 0.30103)); } var defaultUnpackr = new Unpackr({ useRecords: false }); var unpack = defaultUnpackr.unpack; var unpackMultiple = defaultUnpackr.unpackMultiple; var decode4 = defaultUnpackr.unpack; var FLOAT32_OPTIONS = { NEVER: 0, ALWAYS: 1, DECIMAL_ROUND: 3, DECIMAL_FIT: 4 }; var f32Array = new Float32Array(1); var u8Array = new Uint8Array(f32Array.buffer, 0, 4); // ../../node_modules/msgpackr/pack.js var textEncoder; try { textEncoder = new TextEncoder(); } catch (error50) { } var extensions; var extensionClasses; var hasNodeBuffer = typeof Buffer !== "undefined"; var ByteArrayAllocate = hasNodeBuffer ? function(length) { return Buffer.allocUnsafeSlow(length); } : Uint8Array; var ByteArray = hasNodeBuffer ? Buffer : Uint8Array; var MAX_BUFFER_SIZE = hasNodeBuffer ? 4294967296 : 2144337920; var target; var keysTarget; var targetView; var position2 = 0; var safeEnd; var bundledStrings2 = null; var writeStructSlots; var MAX_BUNDLE_SIZE = 21760; var hasNonLatin = /[\u0080-\uFFFF]/; var RECORD_SYMBOL = /* @__PURE__ */ Symbol("record-id"); var Packr = class extends Unpackr { static { __name(this, "Packr"); } constructor(options) { super(options); this.offset = 0; let typeBuffer; let start; let hasSharedUpdate; let structures; let referenceMap2; let encodeUtf8 = ByteArray.prototype.utf8Write ? function(string4, position3) { return target.utf8Write(string4, position3, target.byteLength - position3); } : textEncoder && textEncoder.encodeInto ? function(string4, position3) { return textEncoder.encodeInto(string4, target.subarray(position3)).written; } : false; let packr = this; if (!options) options = {}; let isSequential = options && options.sequential; let hasSharedStructures = options.structures || options.saveStructures; let maxSharedStructures = options.maxSharedStructures; if (maxSharedStructures == null) maxSharedStructures = hasSharedStructures ? 32 : 0; if (maxSharedStructures > 8160) throw new Error("Maximum maxSharedStructure is 8160"); if (options.structuredClone && options.moreTypes == void 0) { this.moreTypes = true; } let maxOwnStructures = options.maxOwnStructures; if (maxOwnStructures == null) maxOwnStructures = hasSharedStructures ? 32 : 64; if (!this.structures && options.useRecords != false) this.structures = []; let useTwoByteRecords = maxSharedStructures > 32 || maxOwnStructures + maxSharedStructures > 64; let sharedLimitId = maxSharedStructures + 64; let maxStructureId = maxSharedStructures + maxOwnStructures + 64; if (maxStructureId > 8256) { throw new Error("Maximum maxSharedStructure + maxOwnStructure is 8192"); } let recordIdsToRemove = []; let transitionsCount = 0; let serializationsSinceTransitionRebuild = 0; this.pack = this.encode = function(value, encodeOptions) { if (!target) { target = new ByteArrayAllocate(8192); targetView = target.dataView || (target.dataView = new DataView(target.buffer, 0, 8192)); position2 = 0; } safeEnd = target.length - 10; if (safeEnd - position2 < 2048) { target = new ByteArrayAllocate(target.length); targetView = target.dataView || (target.dataView = new DataView(target.buffer, 0, target.length)); safeEnd = target.length - 10; position2 = 0; } else position2 = position2 + 7 & 2147483640; start = position2; if (encodeOptions & RESERVE_START_SPACE) position2 += encodeOptions & 255; referenceMap2 = packr.structuredClone ? /* @__PURE__ */ new Map() : null; if (packr.bundleStrings && typeof value !== "string") { bundledStrings2 = []; bundledStrings2.size = Infinity; } else bundledStrings2 = null; structures = packr.structures; if (structures) { if (structures.uninitialized) structures = packr._mergeStructures(packr.getStructures()); let sharedLength = structures.sharedLength || 0; if (sharedLength > maxSharedStructures) { throw new Error("Shared structures is larger than maximum shared structures, try increasing maxSharedStructures to " + structures.sharedLength); } if (!structures.transitions) { structures.transitions = /* @__PURE__ */ Object.create(null); for (let i = 0; i < sharedLength; i++) { let keys = structures[i]; if (!keys) continue; let nextTransition, transition = structures.transitions; for (let j = 0, l = keys.length; j < l; j++) { let key = keys[j]; nextTransition = transition[key]; if (!nextTransition) { nextTransition = transition[key] = /* @__PURE__ */ Object.create(null); } transition = nextTransition; } transition[RECORD_SYMBOL] = i + 64; } this.lastNamedStructuresLength = sharedLength; } if (!isSequential) { structures.nextId = sharedLength + 64; } } if (hasSharedUpdate) hasSharedUpdate = false; let encodingError; try { if (packr.randomAccessStructure && value && value.constructor && value.constructor === Object) writeStruct(value); else pack3(value); let lastBundle = bundledStrings2; if (bundledStrings2) writeBundles(start, pack3, 0); if (referenceMap2 && referenceMap2.idsToInsert) { let idsToInsert = referenceMap2.idsToInsert.sort((a, b) => a.offset > b.offset ? 1 : -1); let i = idsToInsert.length; let incrementPosition = -1; while (lastBundle && i > 0) { let insertionPoint = idsToInsert[--i].offset + start; if (insertionPoint < lastBundle.stringsPosition + start && incrementPosition === -1) incrementPosition = 0; if (insertionPoint > lastBundle.position + start) { if (incrementPosition >= 0) incrementPosition += 6; } else { if (incrementPosition >= 0) { targetView.setUint32( lastBundle.position + start, targetView.getUint32(lastBundle.position + start) + incrementPosition ); incrementPosition = -1; } lastBundle = lastBundle.previous; i++; } } if (incrementPosition >= 0 && lastBundle) { targetView.setUint32( lastBundle.position + start, targetView.getUint32(lastBundle.position + start) + incrementPosition ); } position2 += idsToInsert.length * 6; if (position2 > safeEnd) makeRoom(position2); packr.offset = position2; let serialized = insertIds(target.subarray(start, position2), idsToInsert); referenceMap2 = null; return serialized; } packr.offset = position2; if (encodeOptions & REUSE_BUFFER_MODE) { target.start = start; target.end = position2; return target; } return target.subarray(start, position2); } catch (error50) { encodingError = error50; throw error50; } finally { if (structures) { resetStructures(); if (hasSharedUpdate && packr.saveStructures) { let sharedLength = structures.sharedLength || 0; let returnBuffer = target.subarray(start, position2); let newSharedData = prepareStructures(structures, packr); if (!encodingError) { if (packr.saveStructures(newSharedData, newSharedData.isCompatible) === false) { return packr.pack(value, encodeOptions); } packr.lastNamedStructuresLength = sharedLength; if (target.length > 1073741824) target = null; return returnBuffer; } } } if (target.length > 1073741824) target = null; if (encodeOptions & RESET_BUFFER_MODE) position2 = start; } }; const resetStructures = /* @__PURE__ */ __name(() => { if (serializationsSinceTransitionRebuild < 10) serializationsSinceTransitionRebuild++; let sharedLength = structures.sharedLength || 0; if (structures.length > sharedLength && !isSequential) structures.length = sharedLength; if (transitionsCount > 1e4) { structures.transitions = null; serializationsSinceTransitionRebuild = 0; transitionsCount = 0; if (recordIdsToRemove.length > 0) recordIdsToRemove = []; } else if (recordIdsToRemove.length > 0 && !isSequential) { for (let i = 0, l = recordIdsToRemove.length; i < l; i++) { recordIdsToRemove[i][RECORD_SYMBOL] = 0; } recordIdsToRemove = []; } }, "resetStructures"); const packArray = /* @__PURE__ */ __name((value) => { var length = value.length; if (length < 16) { target[position2++] = 144 | length; } else if (length < 65536) { target[position2++] = 220; target[position2++] = length >> 8; target[position2++] = length & 255; } else { target[position2++] = 221; targetView.setUint32(position2, length); position2 += 4; } for (let i = 0; i < length; i++) { pack3(value[i]); } }, "packArray"); const pack3 = /* @__PURE__ */ __name((value) => { if (position2 > safeEnd) target = makeRoom(position2); var type = typeof value; var length; if (type === "string") { let strLength = value.length; if (bundledStrings2 && strLength >= 4 && strLength < 4096) { if ((bundledStrings2.size += strLength) > MAX_BUNDLE_SIZE) { let extStart; let maxBytes2 = (bundledStrings2[0] ? bundledStrings2[0].length * 3 + bundledStrings2[1].length : 0) + 10; if (position2 + maxBytes2 > safeEnd) target = makeRoom(position2 + maxBytes2); let lastBundle; if (bundledStrings2.position) { lastBundle = bundledStrings2; target[position2] = 200; position2 += 3; target[position2++] = 98; extStart = position2 - start; position2 += 4; writeBundles(start, pack3, 0); targetView.setUint16(extStart + start - 3, position2 - start - extStart); } else { target[position2++] = 214; target[position2++] = 98; extStart = position2 - start; position2 += 4; } bundledStrings2 = ["", ""]; bundledStrings2.previous = lastBundle; bundledStrings2.size = 0; bundledStrings2.position = extStart; } let twoByte = hasNonLatin.test(value); bundledStrings2[twoByte ? 0 : 1] += value; target[position2++] = 193; pack3(twoByte ? -strLength : strLength); return; } let headerSize; if (strLength < 32) { headerSize = 1; } else if (strLength < 256) { headerSize = 2; } else if (strLength < 65536) { headerSize = 3; } else { headerSize = 5; } let maxBytes = strLength * 3; if (position2 + maxBytes > safeEnd) target = makeRoom(position2 + maxBytes); if (strLength < 64 || !encodeUtf8) { let i, c1, c2, strPosition = position2 + headerSize; for (i = 0; i < strLength; i++) { c1 = value.charCodeAt(i); if (c1 < 128) { target[strPosition++] = c1; } else if (c1 < 2048) { target[strPosition++] = c1 >> 6 | 192; target[strPosition++] = c1 & 63 | 128; } else if ((c1 & 64512) === 55296 && ((c2 = value.charCodeAt(i + 1)) & 64512) === 56320) { c1 = 65536 + ((c1 & 1023) << 10) + (c2 & 1023); i++; target[strPosition++] = c1 >> 18 | 240; target[strPosition++] = c1 >> 12 & 63 | 128; target[strPosition++] = c1 >> 6 & 63 | 128; target[strPosition++] = c1 & 63 | 128; } else { target[strPosition++] = c1 >> 12 | 224; target[strPosition++] = c1 >> 6 & 63 | 128; target[strPosition++] = c1 & 63 | 128; } } length = strPosition - position2 - headerSize; } else { length = encodeUtf8(value, position2 + headerSize); } if (length < 32) { target[position2++] = 160 | length; } else if (length < 256) { if (headerSize < 2) { target.copyWithin(position2 + 2, position2 + 1, position2 + 1 + length); } target[position2++] = 217; target[position2++] = length; } else if (length < 65536) { if (headerSize < 3) { target.copyWithin(position2 + 3, position2 + 2, position2 + 2 + length); } target[position2++] = 218; target[position2++] = length >> 8; target[position2++] = length & 255; } else { if (headerSize < 5) { target.copyWithin(position2 + 5, position2 + 3, position2 + 3 + length); } target[position2++] = 219; targetView.setUint32(position2, length); position2 += 4; } position2 += length; } else if (type === "number") { if (value >>> 0 === value) { if (value < 32 || value < 128 && this.useRecords === false || value < 64 && !this.randomAccessStructure) { target[position2++] = value; } else if (value < 256) { target[position2++] = 204; target[position2++] = value; } else if (value < 65536) { target[position2++] = 205; target[position2++] = value >> 8; target[position2++] = value & 255; } else { target[position2++] = 206; targetView.setUint32(position2, value); position2 += 4; } } else if (value >> 0 === value) { if (value >= -32) { target[position2++] = 256 + value; } else if (value >= -128) { target[position2++] = 208; target[position2++] = value + 256; } else if (value >= -32768) { target[position2++] = 209; targetView.setInt16(position2, value); position2 += 2; } else { target[position2++] = 210; targetView.setInt32(position2, value); position2 += 4; } } else { let useFloat32; if ((useFloat32 = this.useFloat32) > 0 && value < 4294967296 && value >= -2147483648) { target[position2++] = 202; targetView.setFloat32(position2, value); let xShifted; if (useFloat32 < 4 || // this checks for rounding of numbers that were encoded in 32-bit float to nearest significant decimal digit that could be preserved (xShifted = value * mult10[(target[position2] & 127) << 1 | target[position2 + 1] >> 7]) >> 0 === xShifted) { position2 += 4; return; } else position2--; } target[position2++] = 203; targetView.setFloat64(position2, value); position2 += 8; } } else if (type === "object" || type === "function") { if (!value) target[position2++] = 192; else { if (referenceMap2) { let referee = referenceMap2.get(value); if (referee) { if (!referee.id) { let idsToInsert = referenceMap2.idsToInsert || (referenceMap2.idsToInsert = []); referee.id = idsToInsert.push(referee); } target[position2++] = 214; target[position2++] = 112; targetView.setUint32(position2, referee.id); position2 += 4; return; } else referenceMap2.set(value, { offset: position2 - start }); } let constructor = value.constructor; if (constructor === Object) { writeObject(value); } else if (constructor === Array) { packArray(value); } else if (constructor === Map) { if (this.mapAsEmptyObject) target[position2++] = 128; else { length = value.size; if (length < 16) { target[position2++] = 128 | length; } else if (length < 65536) { target[position2++] = 222; target[position2++] = length >> 8; target[position2++] = length & 255; } else { target[position2++] = 223; targetView.setUint32(position2, length); position2 += 4; } for (let [key, entryValue] of value) { pack3(key); pack3(entryValue); } } } else { for (let i = 0, l = extensions.length; i < l; i++) { let extensionClass = extensionClasses[i]; if (value instanceof extensionClass) { let extension = extensions[i]; if (extension.write) { if (extension.type) { target[position2++] = 212; target[position2++] = extension.type; target[position2++] = 0; } let writeResult = extension.write.call(this, value); if (writeResult === value) { if (Array.isArray(value)) { packArray(value); } else { writeObject(value); } } else { pack3(writeResult); } return; } let currentTarget = target; let currentTargetView = targetView; let currentPosition = position2; target = null; let result; try { result = extension.pack.call(this, value, (size) => { target = currentTarget; currentTarget = null; position2 += size; if (position2 > safeEnd) makeRoom(position2); return { target, targetView, position: position2 - size }; }, pack3); } finally { if (currentTarget) { target = currentTarget; targetView = currentTargetView; position2 = currentPosition; safeEnd = target.length - 10; } } if (result) { if (result.length + position2 > safeEnd) makeRoom(result.length + position2); position2 = writeExtensionData(result, target, position2, extension.type); } return; } } if (Array.isArray(value)) { packArray(value); } else { if (value.toJSON) { const json2 = value.toJSON(); if (json2 !== value) return pack3(json2); } if (type === "function") return pack3(this.writeFunction && this.writeFunction(value)); writeObject(value); } } } } else if (type === "boolean") { target[position2++] = value ? 195 : 194; } else if (type === "bigint") { if (value < 9223372036854776e3 && value >= -9223372036854776e3) { target[position2++] = 211; targetView.setBigInt64(position2, value); } else if (value < 18446744073709552e3 && value > 0) { target[position2++] = 207; targetView.setBigUint64(position2, value); } else { if (this.largeBigIntToFloat) { target[position2++] = 203; targetView.setFloat64(position2, Number(value)); } else if (this.largeBigIntToString) { return pack3(value.toString()); } else if (this.useBigIntExtension || this.moreTypes) { let empty = value < 0 ? BigInt(-1) : BigInt(0); let array2; if (value >> BigInt(65536) === empty) { let mask = BigInt(18446744073709552e3) - BigInt(1); let chunks = []; while (true) { chunks.push(value & mask); if (value >> BigInt(63) === empty) break; value >>= BigInt(64); } array2 = new Uint8Array(new BigUint64Array(chunks).buffer); array2.reverse(); } else { let invert = value < 0; let string4 = (invert ? ~value : value).toString(16); if (string4.length % 2) { string4 = "0" + string4; } else if (parseInt(string4.charAt(0), 16) >= 8) { string4 = "00" + string4; } if (hasNodeBuffer) { array2 = Buffer.from(string4, "hex"); } else { array2 = new Uint8Array(string4.length / 2); for (let i = 0; i < array2.length; i++) { array2[i] = parseInt(string4.slice(i * 2, i * 2 + 2), 16); } } if (invert) { for (let i = 0; i < array2.length; i++) array2[i] = ~array2[i]; } } if (array2.length + position2 > safeEnd) makeRoom(array2.length + position2); position2 = writeExtensionData(array2, target, position2, 66); return; } else { throw new RangeError(value + " was too large to fit in MessagePack 64-bit integer format, use useBigIntExtension, or set largeBigIntToFloat to convert to float-64, or set largeBigIntToString to convert to string"); } } position2 += 8; } else if (type === "undefined") { if (this.encodeUndefinedAsNil) target[position2++] = 192; else { target[position2++] = 212; target[position2++] = 0; target[position2++] = 0; } } else { throw new Error("Unknown type: " + type); } }, "pack"); const writePlainObject = this.variableMapSize || this.coercibleKeyAsNumber || this.skipValues ? (object2) => { let keys; if (this.skipValues) { keys = []; for (let key2 in object2) { if ((typeof object2.hasOwnProperty !== "function" || object2.hasOwnProperty(key2)) && !this.skipValues.includes(object2[key2])) keys.push(key2); } } else { keys = Object.keys(object2); } let length = keys.length; if (length < 16) { target[position2++] = 128 | length; } else if (length < 65536) { target[position2++] = 222; target[position2++] = length >> 8; target[position2++] = length & 255; } else { target[position2++] = 223; targetView.setUint32(position2, length); position2 += 4; } let key; if (this.coercibleKeyAsNumber) { for (let i = 0; i < length; i++) { key = keys[i]; let num = Number(key); pack3(isNaN(num) ? key : num); pack3(object2[key]); } } else { for (let i = 0; i < length; i++) { pack3(key = keys[i]); pack3(object2[key]); } } } : (object2) => { target[position2++] = 222; let objectOffset = position2 - start; position2 += 2; let size = 0; for (let key in object2) { if (typeof object2.hasOwnProperty !== "function" || object2.hasOwnProperty(key)) { pack3(key); pack3(object2[key]); size++; } } if (size > 65535) { throw new Error('Object is too large to serialize with fast 16-bit map size, use the "variableMapSize" option to serialize this object'); } target[objectOffset++ + start] = size >> 8; target[objectOffset + start] = size & 255; }; const writeRecord = this.useRecords === false ? writePlainObject : options.progressiveRecords && !useTwoByteRecords ? ( // this is about 2% faster for highly stable structures, since it only requires one for-in loop (but much more expensive when new structure needs to be written) (object2) => { let nextTransition, transition = structures.transitions || (structures.transitions = /* @__PURE__ */ Object.create(null)); let objectOffset = position2++ - start; let wroteKeys; for (let key in object2) { if (typeof object2.hasOwnProperty !== "function" || object2.hasOwnProperty(key)) { nextTransition = transition[key]; if (nextTransition) transition = nextTransition; else { let keys = Object.keys(object2); let lastTransition = transition; transition = structures.transitions; let newTransitions = 0; for (let i = 0, l = keys.length; i < l; i++) { let key2 = keys[i]; nextTransition = transition[key2]; if (!nextTransition) { nextTransition = transition[key2] = /* @__PURE__ */ Object.create(null); newTransitions++; } transition = nextTransition; } if (objectOffset + start + 1 == position2) { position2--; newRecord(transition, keys, newTransitions); } else insertNewRecord(transition, keys, objectOffset, newTransitions); wroteKeys = true; transition = lastTransition[key]; } pack3(object2[key]); } } if (!wroteKeys) { let recordId = transition[RECORD_SYMBOL]; if (recordId) target[objectOffset + start] = recordId; else insertNewRecord(transition, Object.keys(object2), objectOffset, 0); } } ) : (object2) => { let nextTransition, transition = structures.transitions || (structures.transitions = /* @__PURE__ */ Object.create(null)); let newTransitions = 0; for (let key in object2) if (typeof object2.hasOwnProperty !== "function" || object2.hasOwnProperty(key)) { nextTransition = transition[key]; if (!nextTransition) { nextTransition = transition[key] = /* @__PURE__ */ Object.create(null); newTransitions++; } transition = nextTransition; } let recordId = transition[RECORD_SYMBOL]; if (recordId) { if (recordId >= 96 && useTwoByteRecords) { target[position2++] = ((recordId -= 96) & 31) + 96; target[position2++] = recordId >> 5; } else target[position2++] = recordId; } else { newRecord(transition, transition.__keys__ || Object.keys(object2), newTransitions); } for (let key in object2) if (typeof object2.hasOwnProperty !== "function" || object2.hasOwnProperty(key)) { pack3(object2[key]); } }; const checkUseRecords = typeof this.useRecords == "function" && this.useRecords; const writeObject = checkUseRecords ? (object2) => { checkUseRecords(object2) ? writeRecord(object2) : writePlainObject(object2); } : writeRecord; const makeRoom = /* @__PURE__ */ __name((end) => { let newSize; if (end > 16777216) { if (end - start > MAX_BUFFER_SIZE) throw new Error("Packed buffer would be larger than maximum buffer size"); newSize = Math.min( MAX_BUFFER_SIZE, Math.round(Math.max((end - start) * (end > 67108864 ? 1.25 : 2), 4194304) / 4096) * 4096 ); } else newSize = (Math.max(end - start << 2, target.length - 1) >> 12) + 1 << 12; let newBuffer = new ByteArrayAllocate(newSize); targetView = newBuffer.dataView || (newBuffer.dataView = new DataView(newBuffer.buffer, 0, newSize)); end = Math.min(end, target.length); if (target.copy) target.copy(newBuffer, 0, start, end); else newBuffer.set(target.slice(start, end)); position2 -= start; start = 0; safeEnd = newBuffer.length - 10; return target = newBuffer; }, "makeRoom"); const newRecord = /* @__PURE__ */ __name((transition, keys, newTransitions) => { let recordId = structures.nextId; if (!recordId) recordId = 64; if (recordId < sharedLimitId && this.shouldShareStructure && !this.shouldShareStructure(keys)) { recordId = structures.nextOwnId; if (!(recordId < maxStructureId)) recordId = sharedLimitId; structures.nextOwnId = recordId + 1; } else { if (recordId >= maxStructureId) recordId = sharedLimitId; structures.nextId = recordId + 1; } let highByte = keys.highByte = recordId >= 96 && useTwoByteRecords ? recordId - 96 >> 5 : -1; transition[RECORD_SYMBOL] = recordId; transition.__keys__ = keys; structures[recordId - 64] = keys; if (recordId < sharedLimitId) { keys.isShared = true; structures.sharedLength = recordId - 63; hasSharedUpdate = true; if (highByte >= 0) { target[position2++] = (recordId & 31) + 96; target[position2++] = highByte; } else { target[position2++] = recordId; } } else { if (highByte >= 0) { target[position2++] = 213; target[position2++] = 114; target[position2++] = (recordId & 31) + 96; target[position2++] = highByte; } else { target[position2++] = 212; target[position2++] = 114; target[position2++] = recordId; } if (newTransitions) transitionsCount += serializationsSinceTransitionRebuild * newTransitions; if (recordIdsToRemove.length >= maxOwnStructures) recordIdsToRemove.shift()[RECORD_SYMBOL] = 0; recordIdsToRemove.push(transition); pack3(keys); } }, "newRecord"); const insertNewRecord = /* @__PURE__ */ __name((transition, keys, insertionOffset, newTransitions) => { let mainTarget = target; let mainPosition = position2; let mainSafeEnd = safeEnd; let mainStart = start; target = keysTarget; position2 = 0; start = 0; if (!target) keysTarget = target = new ByteArrayAllocate(8192); safeEnd = target.length - 10; newRecord(transition, keys, newTransitions); keysTarget = target; let keysPosition = position2; target = mainTarget; position2 = mainPosition; safeEnd = mainSafeEnd; start = mainStart; if (keysPosition > 1) { let newEnd = position2 + keysPosition - 1; if (newEnd > safeEnd) makeRoom(newEnd); let insertionPosition = insertionOffset + start; target.copyWithin(insertionPosition + keysPosition, insertionPosition + 1, position2); target.set(keysTarget.slice(0, keysPosition), insertionPosition); position2 = newEnd; } else { target[insertionOffset + start] = keysTarget[0]; } }, "insertNewRecord"); const writeStruct = /* @__PURE__ */ __name((object2) => { let newPosition = writeStructSlots(object2, target, start, position2, structures, makeRoom, (value, newPosition2, notifySharedUpdate) => { if (notifySharedUpdate) return hasSharedUpdate = true; position2 = newPosition2; let startTarget = target; pack3(value); resetStructures(); if (startTarget !== target) { return { position: position2, targetView, target }; } return position2; }, this); if (newPosition === 0) return writeObject(object2); position2 = newPosition; }, "writeStruct"); } useBuffer(buffer) { target = buffer; target.dataView || (target.dataView = new DataView(target.buffer, target.byteOffset, target.byteLength)); targetView = target.dataView; position2 = 0; } set position(value) { position2 = value; } get position() { return position2; } clearSharedData() { if (this.structures) this.structures = []; if (this.typedStructs) this.typedStructs = []; } }; extensionClasses = [Date, Set, Error, RegExp, ArrayBuffer, Object.getPrototypeOf(Uint8Array.prototype).constructor, DataView, C1Type]; extensions = [{ pack(date5, allocateForWrite, pack3) { let seconds = date5.getTime() / 1e3; if ((this.useTimestamp32 || date5.getMilliseconds() === 0) && seconds >= 0 && seconds < 4294967296) { let { target: target2, targetView: targetView2, position: position3 } = allocateForWrite(6); target2[position3++] = 214; target2[position3++] = 255; targetView2.setUint32(position3, seconds); } else if (seconds > 0 && seconds < 4294967296) { let { target: target2, targetView: targetView2, position: position3 } = allocateForWrite(10); target2[position3++] = 215; target2[position3++] = 255; targetView2.setUint32(position3, date5.getMilliseconds() * 4e6 + (seconds / 1e3 / 4294967296 >> 0)); targetView2.setUint32(position3 + 4, seconds); } else if (isNaN(seconds)) { if (this.onInvalidDate) { allocateForWrite(0); return pack3(this.onInvalidDate()); } let { target: target2, targetView: targetView2, position: position3 } = allocateForWrite(3); target2[position3++] = 212; target2[position3++] = 255; target2[position3++] = 255; } else { let { target: target2, targetView: targetView2, position: position3 } = allocateForWrite(15); target2[position3++] = 199; target2[position3++] = 12; target2[position3++] = 255; targetView2.setUint32(position3, date5.getMilliseconds() * 1e6); targetView2.setBigInt64(position3 + 4, BigInt(Math.floor(seconds))); } } }, { pack(set2, allocateForWrite, pack3) { if (this.setAsEmptyObject) { allocateForWrite(0); return pack3({}); } let array2 = Array.from(set2); let { target: target2, position: position3 } = allocateForWrite(this.moreTypes ? 3 : 0); if (this.moreTypes) { target2[position3++] = 212; target2[position3++] = 115; target2[position3++] = 0; } pack3(array2); } }, { pack(error50, allocateForWrite, pack3) { let { target: target2, position: position3 } = allocateForWrite(this.moreTypes ? 3 : 0); if (this.moreTypes) { target2[position3++] = 212; target2[position3++] = 101; target2[position3++] = 0; } pack3([error50.name, error50.message, error50.cause]); } }, { pack(regex, allocateForWrite, pack3) { let { target: target2, position: position3 } = allocateForWrite(this.moreTypes ? 3 : 0); if (this.moreTypes) { target2[position3++] = 212; target2[position3++] = 120; target2[position3++] = 0; } pack3([regex.source, regex.flags]); } }, { pack(arrayBuffer, allocateForWrite) { if (this.moreTypes) writeExtBuffer(arrayBuffer, 16, allocateForWrite); else writeBuffer(hasNodeBuffer ? Buffer.from(arrayBuffer) : new Uint8Array(arrayBuffer), allocateForWrite); } }, { pack(typedArray, allocateForWrite) { let constructor = typedArray.constructor; if (constructor !== ByteArray && this.moreTypes) writeExtBuffer(typedArray, typedArrays.indexOf(constructor.name), allocateForWrite); else writeBuffer(typedArray, allocateForWrite); } }, { pack(arrayBuffer, allocateForWrite) { if (this.moreTypes) writeExtBuffer(arrayBuffer, 17, allocateForWrite); else writeBuffer(hasNodeBuffer ? Buffer.from(arrayBuffer) : new Uint8Array(arrayBuffer), allocateForWrite); } }, { pack(c1, allocateForWrite) { let { target: target2, position: position3 } = allocateForWrite(1); target2[position3] = 193; } }]; function writeExtBuffer(typedArray, type, allocateForWrite, encode8) { let length = typedArray.byteLength; if (length + 1 < 256) { var { target: target2, position: position3 } = allocateForWrite(4 + length); target2[position3++] = 199; target2[position3++] = length + 1; } else if (length + 1 < 65536) { var { target: target2, position: position3 } = allocateForWrite(5 + length); target2[position3++] = 200; target2[position3++] = length + 1 >> 8; target2[position3++] = length + 1 & 255; } else { var { target: target2, position: position3, targetView: targetView2 } = allocateForWrite(7 + length); target2[position3++] = 201; targetView2.setUint32(position3, length + 1); position3 += 4; } target2[position3++] = 116; target2[position3++] = type; if (!typedArray.buffer) typedArray = new Uint8Array(typedArray); target2.set(new Uint8Array(typedArray.buffer, typedArray.byteOffset, typedArray.byteLength), position3); } __name(writeExtBuffer, "writeExtBuffer"); function writeBuffer(buffer, allocateForWrite) { let length = buffer.byteLength; var target2, position3; if (length < 256) { var { target: target2, position: position3 } = allocateForWrite(length + 2); target2[position3++] = 196; target2[position3++] = length; } else if (length < 65536) { var { target: target2, position: position3 } = allocateForWrite(length + 3); target2[position3++] = 197; target2[position3++] = length >> 8; target2[position3++] = length & 255; } else { var { target: target2, position: position3, targetView: targetView2 } = allocateForWrite(length + 5); target2[position3++] = 198; targetView2.setUint32(position3, length); position3 += 4; } target2.set(buffer, position3); } __name(writeBuffer, "writeBuffer"); function writeExtensionData(result, target2, position3, type) { let length = result.length; switch (length) { case 1: target2[position3++] = 212; break; case 2: target2[position3++] = 213; break; case 4: target2[position3++] = 214; break; case 8: target2[position3++] = 215; break; case 16: target2[position3++] = 216; break; default: if (length < 256) { target2[position3++] = 199; target2[position3++] = length; } else if (length < 65536) { target2[position3++] = 200; target2[position3++] = length >> 8; target2[position3++] = length & 255; } else { target2[position3++] = 201; target2[position3++] = length >> 24; target2[position3++] = length >> 16 & 255; target2[position3++] = length >> 8 & 255; target2[position3++] = length & 255; } } target2[position3++] = type; target2.set(result, position3); position3 += length; return position3; } __name(writeExtensionData, "writeExtensionData"); function insertIds(serialized, idsToInsert) { let nextId; let distanceToMove = idsToInsert.length * 6; let lastEnd = serialized.length - distanceToMove; while (nextId = idsToInsert.pop()) { let offset = nextId.offset; let id = nextId.id; serialized.copyWithin(offset + distanceToMove, offset, lastEnd); distanceToMove -= 6; let position3 = offset + distanceToMove; serialized[position3++] = 214; serialized[position3++] = 105; serialized[position3++] = id >> 24; serialized[position3++] = id >> 16 & 255; serialized[position3++] = id >> 8 & 255; serialized[position3++] = id & 255; lastEnd = offset; } return serialized; } __name(insertIds, "insertIds"); function writeBundles(start, pack3, incrementPosition) { if (bundledStrings2.length > 0) { targetView.setUint32(bundledStrings2.position + start, position2 + incrementPosition - bundledStrings2.position - start); bundledStrings2.stringsPosition = position2 - start; let writeStrings = bundledStrings2; bundledStrings2 = null; pack3(writeStrings[0]); pack3(writeStrings[1]); } } __name(writeBundles, "writeBundles"); function prepareStructures(structures, packr) { structures.isCompatible = (existingStructures) => { let compatible = !existingStructures || (packr.lastNamedStructuresLength || 0) === existingStructures.length; if (!compatible) packr._mergeStructures(existingStructures); return compatible; }; return structures; } __name(prepareStructures, "prepareStructures"); var defaultPackr = new Packr({ useRecords: false }); var pack = defaultPackr.pack; var encode5 = defaultPackr.pack; var { NEVER: NEVER2, ALWAYS, DECIMAL_ROUND, DECIMAL_FIT } = FLOAT32_OPTIONS; var REUSE_BUFFER_MODE = 512; var RESET_BUFFER_MODE = 1024; var RESERVE_START_SPACE = 2048; // ../../node_modules/msgpackr/iterators.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/version.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var version4 = "5.71.0"; // ../../node_modules/bullmq/dist/esm/classes/scripts.js var packer = new Packr({ useRecords: false, encodeUndefinedAsNil: true }); var pack2 = packer.pack; var Scripts = class { static { __name(this, "Scripts"); } constructor(queue) { this.queue = queue; this.version = version4; const queueKeys = this.queue.keys; this.moveToFinishedKeys = [ queueKeys.wait, queueKeys.active, queueKeys.prioritized, queueKeys.events, queueKeys.stalled, queueKeys.limiter, queueKeys.delayed, queueKeys.paused, queueKeys.meta, queueKeys.pc, void 0, void 0, void 0, void 0 ]; } execCommand(client, commandName, args) { const commandNameWithVersion = `${commandName}:${this.version}`; return client[commandNameWithVersion](args); } async isJobInList(listKey, jobId) { const client = await this.queue.client; let result; if (isRedisVersionLowerThan(this.queue.redisVersion, "6.0.6", this.queue.databaseType)) { result = await this.execCommand(client, "isJobInList", [listKey, jobId]); } else { result = await client.lpos(listKey, jobId); } return Number.isInteger(result); } addDelayedJobArgs(job, encodedOpts, args) { const queueKeys = this.queue.keys; const keys = [ queueKeys.marker, queueKeys.meta, queueKeys.id, queueKeys.delayed, queueKeys.completed, queueKeys.events ]; keys.push(pack2(args), job.data, encodedOpts); return keys; } addDelayedJob(client, job, encodedOpts, args) { const argsList = this.addDelayedJobArgs(job, encodedOpts, args); return this.execCommand(client, "addDelayedJob", argsList); } addPrioritizedJobArgs(job, encodedOpts, args) { const queueKeys = this.queue.keys; const keys = [ queueKeys.marker, queueKeys.meta, queueKeys.id, queueKeys.prioritized, queueKeys.delayed, queueKeys.completed, queueKeys.active, queueKeys.events, queueKeys.pc ]; keys.push(pack2(args), job.data, encodedOpts); return keys; } addPrioritizedJob(client, job, encodedOpts, args) { const argsList = this.addPrioritizedJobArgs(job, encodedOpts, args); return this.execCommand(client, "addPrioritizedJob", argsList); } addParentJobArgs(job, encodedOpts, args) { const queueKeys = this.queue.keys; const keys = [ queueKeys.meta, queueKeys.id, queueKeys.delayed, queueKeys["waiting-children"], queueKeys.completed, queueKeys.events ]; keys.push(pack2(args), job.data, encodedOpts); return keys; } addParentJob(client, job, encodedOpts, args) { const argsList = this.addParentJobArgs(job, encodedOpts, args); return this.execCommand(client, "addParentJob", argsList); } addStandardJobArgs(job, encodedOpts, args) { const queueKeys = this.queue.keys; const keys = [ queueKeys.wait, queueKeys.paused, queueKeys.meta, queueKeys.id, queueKeys.completed, queueKeys.delayed, queueKeys.active, queueKeys.events, queueKeys.marker ]; keys.push(pack2(args), job.data, encodedOpts); return keys; } addStandardJob(client, job, encodedOpts, args) { const argsList = this.addStandardJobArgs(job, encodedOpts, args); return this.execCommand(client, "addStandardJob", argsList); } async addJob(client, job, opts, jobId, parentKeyOpts = {}) { const queueKeys = this.queue.keys; const parent = job.parent; const args = [ queueKeys[""], typeof jobId !== "undefined" ? jobId : "", job.name, job.timestamp, job.parentKey || null, parentKeyOpts.parentDependenciesKey || null, parent, job.repeatJobKey, job.deduplicationId ? `${queueKeys.de}:${job.deduplicationId}` : null ]; let encodedOpts; if (opts.repeat) { const repeat = Object.assign({}, opts.repeat); if (repeat.startDate) { repeat.startDate = +new Date(repeat.startDate); } if (repeat.endDate) { repeat.endDate = +new Date(repeat.endDate); } encodedOpts = pack2(Object.assign(Object.assign({}, opts), { repeat })); } else { encodedOpts = pack2(opts); } let result; if (parentKeyOpts.addToWaitingChildren) { result = await this.addParentJob(client, job, encodedOpts, args); } else if (typeof opts.delay == "number" && opts.delay > 0) { result = await this.addDelayedJob(client, job, encodedOpts, args); } else if (opts.priority) { result = await this.addPrioritizedJob(client, job, encodedOpts, args); } else { result = await this.addStandardJob(client, job, encodedOpts, args); } if (result < 0) { throw this.finishedErrors({ code: result, parentKey: parentKeyOpts.parentKey, command: "addJob" }); } return result; } pauseArgs(pause2) { let src2 = "wait", dst = "paused"; if (!pause2) { src2 = "paused"; dst = "wait"; } const keys = [src2, dst, "meta", "prioritized"].map((name) => this.queue.toKey(name)); keys.push(this.queue.keys.events, this.queue.keys.delayed, this.queue.keys.marker); const args = [pause2 ? "paused" : "resumed"]; return keys.concat(args); } async pause(pause2) { const client = await this.queue.client; const args = this.pauseArgs(pause2); return this.execCommand(client, "pause", args); } addRepeatableJobArgs(customKey, nextMillis, opts, legacyCustomKey) { const queueKeys = this.queue.keys; const keys = [ queueKeys.repeat, queueKeys.delayed ]; const args = [ nextMillis, pack2(opts), legacyCustomKey, customKey, queueKeys[""] ]; return keys.concat(args); } async addRepeatableJob(customKey, nextMillis, opts, legacyCustomKey) { const client = await this.queue.client; const args = this.addRepeatableJobArgs(customKey, nextMillis, opts, legacyCustomKey); return this.execCommand(client, "addRepeatableJob", args); } async removeDeduplicationKey(deduplicationId, jobId) { const client = await this.queue.client; const queueKeys = this.queue.keys; const keys = [`${queueKeys.de}:${deduplicationId}`]; const args = [jobId]; return this.execCommand(client, "removeDeduplicationKey", keys.concat(args)); } async addJobScheduler(jobSchedulerId, nextMillis, templateData, templateOpts, opts, delayedJobOpts, producerId) { const client = await this.queue.client; const queueKeys = this.queue.keys; const keys = [ queueKeys.repeat, queueKeys.delayed, queueKeys.wait, queueKeys.paused, queueKeys.meta, queueKeys.prioritized, queueKeys.marker, queueKeys.id, queueKeys.events, queueKeys.pc, queueKeys.active ]; const args = [ nextMillis, pack2(opts), jobSchedulerId, templateData, pack2(templateOpts), pack2(delayedJobOpts), Date.now(), queueKeys[""], producerId ? this.queue.toKey(producerId) : "" ]; const result = await this.execCommand(client, "addJobScheduler", keys.concat(args)); if (typeof result === "number" && result < 0) { throw this.finishedErrors({ code: result, command: "addJobScheduler" }); } return result; } async updateRepeatableJobMillis(client, customKey, nextMillis, legacyCustomKey) { const args = [ this.queue.keys.repeat, nextMillis, customKey, legacyCustomKey ]; return this.execCommand(client, "updateRepeatableJobMillis", args); } async updateJobSchedulerNextMillis(jobSchedulerId, nextMillis, templateData, delayedJobOpts, producerId) { const client = await this.queue.client; const queueKeys = this.queue.keys; const keys = [ queueKeys.repeat, queueKeys.delayed, queueKeys.wait, queueKeys.paused, queueKeys.meta, queueKeys.prioritized, queueKeys.marker, queueKeys.id, queueKeys.events, queueKeys.pc, producerId ? this.queue.toKey(producerId) : "", queueKeys.active ]; const args = [ nextMillis, jobSchedulerId, templateData, pack2(delayedJobOpts), Date.now(), queueKeys[""], producerId ]; return this.execCommand(client, "updateJobScheduler", keys.concat(args)); } removeRepeatableArgs(legacyRepeatJobId, repeatConcatOptions, repeatJobKey) { const queueKeys = this.queue.keys; const keys = [queueKeys.repeat, queueKeys.delayed, queueKeys.events]; const args = [ legacyRepeatJobId, this.getRepeatConcatOptions(repeatConcatOptions, repeatJobKey), repeatJobKey, queueKeys[""] ]; return keys.concat(args); } // TODO: remove this check in next breaking change getRepeatConcatOptions(repeatConcatOptions, repeatJobKey) { if (repeatJobKey && repeatJobKey.split(":").length > 2) { return repeatJobKey; } return repeatConcatOptions; } async removeRepeatable(legacyRepeatJobId, repeatConcatOptions, repeatJobKey) { const client = await this.queue.client; const args = this.removeRepeatableArgs(legacyRepeatJobId, repeatConcatOptions, repeatJobKey); return this.execCommand(client, "removeRepeatable", args); } async removeJobScheduler(jobSchedulerId) { const client = await this.queue.client; const queueKeys = this.queue.keys; const keys = [queueKeys.repeat, queueKeys.delayed, queueKeys.events]; const args = [jobSchedulerId, queueKeys[""]]; return this.execCommand(client, "removeJobScheduler", keys.concat(args)); } removeArgs(jobId, removeChildren) { const keys = [jobId, "repeat"].map((name) => this.queue.toKey(name)); const args = [jobId, removeChildren ? 1 : 0, this.queue.toKey("")]; return keys.concat(args); } async remove(jobId, removeChildren) { const client = await this.queue.client; const args = this.removeArgs(jobId, removeChildren); const result = await this.execCommand(client, "removeJob", args); if (result < 0) { throw this.finishedErrors({ code: result, jobId, command: "removeJob" }); } return result; } async removeUnprocessedChildren(jobId) { const client = await this.queue.client; const args = [ this.queue.toKey(jobId), this.queue.keys.meta, this.queue.toKey(""), jobId ]; await this.execCommand(client, "removeUnprocessedChildren", args); } async extendLock(jobId, token, duration3, client) { client = client || await this.queue.client; const args = [ this.queue.toKey(jobId) + ":lock", this.queue.keys.stalled, token, duration3, jobId ]; return this.execCommand(client, "extendLock", args); } async extendLocks(jobIds, tokens, duration3) { const client = await this.queue.client; const args = [ this.queue.keys.stalled, this.queue.toKey(""), pack2(tokens), pack2(jobIds), duration3 ]; return this.execCommand(client, "extendLocks", args); } async updateData(job, data) { const client = await this.queue.client; const keys = [this.queue.toKey(job.id)]; const dataJson = JSON.stringify(data); const result = await this.execCommand(client, "updateData", keys.concat([dataJson])); if (result < 0) { throw this.finishedErrors({ code: result, jobId: job.id, command: "updateData" }); } } async updateProgress(jobId, progress) { const client = await this.queue.client; const keys = [ this.queue.toKey(jobId), this.queue.keys.events, this.queue.keys.meta ]; const progressJson = JSON.stringify(progress); const result = await this.execCommand(client, "updateProgress", keys.concat([jobId, progressJson])); if (result < 0) { throw this.finishedErrors({ code: result, jobId, command: "updateProgress" }); } } async addLog(jobId, logRow, keepLogs) { const client = await this.queue.client; const keys = [ this.queue.toKey(jobId), this.queue.toKey(jobId) + ":logs" ]; const result = await this.execCommand(client, "addLog", keys.concat([jobId, logRow, keepLogs ? keepLogs : ""])); if (result < 0) { throw this.finishedErrors({ code: result, jobId, command: "addLog" }); } return result; } moveToFinishedArgs(job, val, propVal, shouldRemove, target2, token, timestamp, fetchNext = true, fieldsToUpdate) { var _a2, _b, _c2, _d2, _e2, _f, _g; const queueKeys = this.queue.keys; const opts = this.queue.opts; const workerKeepJobs = target2 === "completed" ? opts.removeOnComplete : opts.removeOnFail; const metricsKey = this.queue.toKey(`metrics:${target2}`); const keys = this.moveToFinishedKeys; keys[10] = queueKeys[target2]; keys[11] = this.queue.toKey((_a2 = job.id) !== null && _a2 !== void 0 ? _a2 : ""); keys[12] = metricsKey; keys[13] = this.queue.keys.marker; const keepJobs = this.getKeepJobs(shouldRemove, workerKeepJobs); const args = [ job.id, timestamp, propVal, typeof val === "undefined" ? "null" : val, target2, !fetchNext || this.queue.closing ? 0 : 1, queueKeys[""], pack2({ token, name: opts.name, keepJobs, limiter: opts.limiter, lockDuration: opts.lockDuration, attempts: job.opts.attempts, maxMetricsSize: ((_b = opts.metrics) === null || _b === void 0 ? void 0 : _b.maxDataPoints) ? (_c2 = opts.metrics) === null || _c2 === void 0 ? void 0 : _c2.maxDataPoints : "", fpof: !!((_d2 = job.opts) === null || _d2 === void 0 ? void 0 : _d2.failParentOnFailure), cpof: !!((_e2 = job.opts) === null || _e2 === void 0 ? void 0 : _e2.continueParentOnFailure), idof: !!((_f = job.opts) === null || _f === void 0 ? void 0 : _f.ignoreDependencyOnFailure), rdof: !!((_g = job.opts) === null || _g === void 0 ? void 0 : _g.removeDependencyOnFailure) }), fieldsToUpdate ? pack2(objectToFlatArray(fieldsToUpdate)) : void 0 ]; return keys.concat(args); } getKeepJobs(shouldRemove, workerKeepJobs) { if (typeof shouldRemove === "undefined") { return workerKeepJobs || { count: shouldRemove ? 0 : -1 }; } return typeof shouldRemove === "object" ? shouldRemove : typeof shouldRemove === "number" ? { count: shouldRemove } : { count: shouldRemove ? 0 : -1 }; } async moveToFinished(jobId, args) { const client = await this.queue.client; const result = await this.execCommand(client, "moveToFinished", args); if (result < 0) { throw this.finishedErrors({ code: result, jobId, command: "moveToFinished", state: "active" }); } else { if (typeof result !== "undefined") { return raw2NextJobData(result); } } } drainArgs(delayed) { const queueKeys = this.queue.keys; const keys = [ queueKeys.wait, queueKeys.paused, queueKeys.delayed, queueKeys.prioritized, queueKeys.repeat ]; const args = [queueKeys[""], delayed ? "1" : "0"]; return keys.concat(args); } async drain(delayed) { const client = await this.queue.client; const args = this.drainArgs(delayed); return this.execCommand(client, "drain", args); } removeChildDependencyArgs(jobId, parentKey) { const queueKeys = this.queue.keys; const keys = [queueKeys[""]]; const args = [this.queue.toKey(jobId), parentKey]; return keys.concat(args); } async removeChildDependency(jobId, parentKey) { const client = await this.queue.client; const args = this.removeChildDependencyArgs(jobId, parentKey); const result = await this.execCommand(client, "removeChildDependency", args); switch (result) { case 0: return true; case 1: return false; default: throw this.finishedErrors({ code: result, jobId, parentKey, command: "removeChildDependency" }); } } getRangesArgs(types, start, end, asc2) { const queueKeys = this.queue.keys; const transformedTypes = types.map((type) => { return type === "waiting" ? "wait" : type; }); const keys = [queueKeys[""]]; const args = [start, end, asc2 ? "1" : "0", ...transformedTypes]; return keys.concat(args); } async getRanges(types, start = 0, end = 1, asc2 = false) { const client = await this.queue.client; const args = this.getRangesArgs(types, start, end, asc2); return await this.execCommand(client, "getRanges", args); } getCountsArgs(types) { const queueKeys = this.queue.keys; const transformedTypes = types.map((type) => { return type === "waiting" ? "wait" : type; }); const keys = [queueKeys[""]]; const args = [...transformedTypes]; return keys.concat(args); } async getCounts(types) { const client = await this.queue.client; const args = this.getCountsArgs(types); return await this.execCommand(client, "getCounts", args); } getCountsPerPriorityArgs(priorities) { const keys = [ this.queue.keys.wait, this.queue.keys.paused, this.queue.keys.meta, this.queue.keys.prioritized ]; const args = priorities; return keys.concat(args); } async getCountsPerPriority(priorities) { const client = await this.queue.client; const args = this.getCountsPerPriorityArgs(priorities); return await this.execCommand(client, "getCountsPerPriority", args); } getDependencyCountsArgs(jobId, types) { const keys = [ `${jobId}:processed`, `${jobId}:dependencies`, `${jobId}:failed`, `${jobId}:unsuccessful` ].map((name) => { return this.queue.toKey(name); }); const args = types; return keys.concat(args); } async getDependencyCounts(jobId, types) { const client = await this.queue.client; const args = this.getDependencyCountsArgs(jobId, types); return await this.execCommand(client, "getDependencyCounts", args); } moveToCompletedArgs(job, returnvalue, removeOnComplete, token, fetchNext = false) { const timestamp = Date.now(); return this.moveToFinishedArgs(job, returnvalue, "returnvalue", removeOnComplete, "completed", token, timestamp, fetchNext); } moveToFailedArgs(job, failedReason, removeOnFailed, token, fetchNext = false, fieldsToUpdate) { const timestamp = Date.now(); return this.moveToFinishedArgs(job, failedReason, "failedReason", removeOnFailed, "failed", token, timestamp, fetchNext, fieldsToUpdate); } async isFinished(jobId, returnValue = false) { const client = await this.queue.client; const keys = ["completed", "failed", jobId].map((key) => { return this.queue.toKey(key); }); return this.execCommand(client, "isFinished", keys.concat([jobId, returnValue ? "1" : ""])); } async getState(jobId) { const client = await this.queue.client; const keys = [ "completed", "failed", "delayed", "active", "wait", "paused", "waiting-children", "prioritized" ].map((key) => { return this.queue.toKey(key); }); if (isRedisVersionLowerThan(this.queue.redisVersion, "6.0.6", this.queue.databaseType)) { return this.execCommand(client, "getState", keys.concat([jobId])); } return this.execCommand(client, "getStateV2", keys.concat([jobId])); } /** * Change delay of a delayed job. * * Reschedules a delayed job by setting a new delay from the current time. * For example, calling changeDelay(5000) will reschedule the job to execute * 5000 milliseconds (5 seconds) from now, regardless of the original delay. * * @param jobId - the ID of the job to change the delay for. * @param delay - milliseconds from now when the job should be processed. * @returns delay in milliseconds. * @throws JobNotExist * This exception is thrown if jobId is missing. * @throws JobNotInState * This exception is thrown if job is not in delayed state. */ async changeDelay(jobId, delay2) { const client = await this.queue.client; const args = this.changeDelayArgs(jobId, delay2); const result = await this.execCommand(client, "changeDelay", args); if (result < 0) { throw this.finishedErrors({ code: result, jobId, command: "changeDelay", state: "delayed" }); } } changeDelayArgs(jobId, delay2) { const timestamp = Date.now(); const keys = [ this.queue.keys.delayed, this.queue.keys.meta, this.queue.keys.marker, this.queue.keys.events ]; return keys.concat([ delay2, JSON.stringify(timestamp), jobId, this.queue.toKey(jobId) ]); } async changePriority(jobId, priority = 0, lifo = false) { const client = await this.queue.client; const args = this.changePriorityArgs(jobId, priority, lifo); const result = await this.execCommand(client, "changePriority", args); if (result < 0) { throw this.finishedErrors({ code: result, jobId, command: "changePriority" }); } } changePriorityArgs(jobId, priority = 0, lifo = false) { const keys = [ this.queue.keys.wait, this.queue.keys.paused, this.queue.keys.meta, this.queue.keys.prioritized, this.queue.keys.active, this.queue.keys.pc, this.queue.keys.marker ]; return keys.concat([priority, this.queue.toKey(""), jobId, lifo ? 1 : 0]); } moveToDelayedArgs(jobId, timestamp, token, delay2, opts = {}) { const queueKeys = this.queue.keys; const keys = [ queueKeys.marker, queueKeys.active, queueKeys.prioritized, queueKeys.delayed, this.queue.toKey(jobId), queueKeys.events, queueKeys.meta, queueKeys.stalled ]; return keys.concat([ this.queue.keys[""], timestamp, jobId, token, delay2, opts.skipAttempt ? "1" : "0", opts.fieldsToUpdate ? pack2(objectToFlatArray(opts.fieldsToUpdate)) : void 0 ]); } moveToWaitingChildrenArgs(jobId, token, opts) { const timestamp = Date.now(); const childKey = getParentKey(opts.child); const keys = [ "active", "waiting-children", jobId, `${jobId}:dependencies`, `${jobId}:unsuccessful`, "stalled", "events" ].map((name) => { return this.queue.toKey(name); }); return keys.concat([ token, childKey !== null && childKey !== void 0 ? childKey : "", JSON.stringify(timestamp), jobId, this.queue.toKey("") ]); } isMaxedArgs() { const queueKeys = this.queue.keys; const keys = [queueKeys.meta, queueKeys.active]; return keys; } async isMaxed() { const client = await this.queue.client; const args = this.isMaxedArgs(); return !!await this.execCommand(client, "isMaxed", args); } async moveToDelayed(jobId, timestamp, delay2, token = "0", opts = {}) { const client = await this.queue.client; const args = this.moveToDelayedArgs(jobId, timestamp, token, delay2, opts); const result = await this.execCommand(client, "moveToDelayed", args); if (result < 0) { throw this.finishedErrors({ code: result, jobId, command: "moveToDelayed", state: "active" }); } } /** * Move parent job to waiting-children state. * * @returns true if job is successfully moved, false if there are pending dependencies. * @throws JobNotExist * This exception is thrown if jobId is missing. * @throws JobLockNotExist * This exception is thrown if job lock is missing. * @throws JobNotInState * This exception is thrown if job is not in active state. */ async moveToWaitingChildren(jobId, token, opts = {}) { const client = await this.queue.client; const args = this.moveToWaitingChildrenArgs(jobId, token, opts); const result = await this.execCommand(client, "moveToWaitingChildren", args); switch (result) { case 0: return true; case 1: return false; default: throw this.finishedErrors({ code: result, jobId, command: "moveToWaitingChildren", state: "active" }); } } getRateLimitTtlArgs(maxJobs) { const keys = [ this.queue.keys.limiter, this.queue.keys.meta ]; return keys.concat([maxJobs !== null && maxJobs !== void 0 ? maxJobs : "0"]); } async getRateLimitTtl(maxJobs) { const client = await this.queue.client; const args = this.getRateLimitTtlArgs(maxJobs); return this.execCommand(client, "getRateLimitTtl", args); } /** * Remove jobs in a specific state. * * @returns Id jobs from the deleted records. */ async cleanJobsInSet(set2, timestamp, limit = 0) { const client = await this.queue.client; return this.execCommand(client, "cleanJobsInSet", [ this.queue.toKey(set2), this.queue.toKey("events"), this.queue.toKey("repeat"), this.queue.toKey(""), timestamp, limit, set2 ]); } getJobSchedulerArgs(id) { const keys = [this.queue.keys.repeat]; return keys.concat([id]); } async getJobScheduler(id) { const client = await this.queue.client; const args = this.getJobSchedulerArgs(id); return this.execCommand(client, "getJobScheduler", args); } retryJobArgs(jobId, lifo, token, opts = {}) { const keys = [ this.queue.keys.active, this.queue.keys.wait, this.queue.keys.paused, this.queue.toKey(jobId), this.queue.keys.meta, this.queue.keys.events, this.queue.keys.delayed, this.queue.keys.prioritized, this.queue.keys.pc, this.queue.keys.marker, this.queue.keys.stalled ]; const pushCmd = (lifo ? "R" : "L") + "PUSH"; return keys.concat([ this.queue.toKey(""), Date.now(), pushCmd, jobId, token, opts.fieldsToUpdate ? pack2(objectToFlatArray(opts.fieldsToUpdate)) : void 0 ]); } async retryJob(jobId, lifo, token = "0", opts = {}) { const client = await this.queue.client; const args = this.retryJobArgs(jobId, lifo, token, opts); const result = await this.execCommand(client, "retryJob", args); if (result < 0) { throw this.finishedErrors({ code: result, jobId, command: "retryJob", state: "active" }); } } moveJobsToWaitArgs(state, count4, timestamp) { const keys = [ this.queue.toKey(""), this.queue.keys.events, this.queue.toKey(state), this.queue.toKey("wait"), this.queue.toKey("paused"), this.queue.keys.meta, this.queue.keys.active, this.queue.keys.marker ]; const args = [count4, timestamp, state]; return keys.concat(args); } async retryJobs(state = "failed", count4 = 1e3, timestamp = (/* @__PURE__ */ new Date()).getTime()) { const client = await this.queue.client; const args = this.moveJobsToWaitArgs(state, count4, timestamp); return this.execCommand(client, "moveJobsToWait", args); } async promoteJobs(count4 = 1e3) { const client = await this.queue.client; const args = this.moveJobsToWaitArgs("delayed", count4, Number.MAX_VALUE); return this.execCommand(client, "moveJobsToWait", args); } /** * Attempts to reprocess a job * * @param job - The job to reprocess * @param state - The expected job state. If the job is not found * on the provided state, then it's not reprocessed. Supported states: 'failed', 'completed' * * @returns A promise that resolves when the job has been successfully moved to the wait queue. * @throws Will throw an error with a code property indicating the failure reason: * - code 0: Job does not exist * - code -1: Job is currently locked and can't be retried * - code -2: Job was not found in the expected set */ async reprocessJob(job, state, opts = {}) { const client = await this.queue.client; const keys = [ this.queue.toKey(job.id), this.queue.keys.events, this.queue.toKey(state), this.queue.keys.wait, this.queue.keys.meta, this.queue.keys.paused, this.queue.keys.active, this.queue.keys.marker ]; const args = [ job.id, (job.opts.lifo ? "R" : "L") + "PUSH", state === "failed" ? "failedReason" : "returnvalue", state, opts.resetAttemptsMade ? "1" : "0", opts.resetAttemptsStarted ? "1" : "0" ]; const result = await this.execCommand(client, "reprocessJob", keys.concat(args)); switch (result) { case 1: return; default: throw this.finishedErrors({ code: result, jobId: job.id, command: "reprocessJob", state }); } } async getMetrics(type, start = 0, end = -1) { const client = await this.queue.client; const keys = [ this.queue.toKey(`metrics:${type}`), this.queue.toKey(`metrics:${type}:data`) ]; const args = [start, end]; const result = await this.execCommand(client, "getMetrics", keys.concat(args)); return result; } async moveToActive(client, token, name) { const opts = this.queue.opts; const queueKeys = this.queue.keys; const keys = [ queueKeys.wait, queueKeys.active, queueKeys.prioritized, queueKeys.events, queueKeys.stalled, queueKeys.limiter, queueKeys.delayed, queueKeys.paused, queueKeys.meta, queueKeys.pc, queueKeys.marker ]; const args = [ queueKeys[""], Date.now(), pack2({ token, lockDuration: opts.lockDuration, limiter: opts.limiter, name }) ]; const result = await this.execCommand(client, "moveToActive", keys.concat(args)); return raw2NextJobData(result); } async promote(jobId) { const client = await this.queue.client; const keys = [ this.queue.keys.delayed, this.queue.keys.wait, this.queue.keys.paused, this.queue.keys.meta, this.queue.keys.prioritized, this.queue.keys.active, this.queue.keys.pc, this.queue.keys.events, this.queue.keys.marker ]; const args = [this.queue.toKey(""), jobId]; const code = await this.execCommand(client, "promote", keys.concat(args)); if (code < 0) { throw this.finishedErrors({ code, jobId, command: "promote", state: "delayed" }); } } moveStalledJobsToWaitArgs() { const opts = this.queue.opts; const keys = [ this.queue.keys.stalled, this.queue.keys.wait, this.queue.keys.active, this.queue.keys["stalled-check"], this.queue.keys.meta, this.queue.keys.paused, this.queue.keys.marker, this.queue.keys.events ]; const args = [ opts.maxStalledCount, this.queue.toKey(""), Date.now(), opts.stalledInterval ]; return keys.concat(args); } /** * Looks for unlocked jobs in the active queue. * * The job was being worked on, but the worker process died and it failed to renew the lock. * We call these jobs 'stalled'. This is the most common case. We resolve these by moving them * back to wait to be re-processed. To prevent jobs from cycling endlessly between active and wait, * (e.g. if the job handler keeps crashing), * we limit the number stalled job recoveries to settings.maxStalledCount. */ async moveStalledJobsToWait() { const client = await this.queue.client; const args = this.moveStalledJobsToWaitArgs(); return this.execCommand(client, "moveStalledJobsToWait", args); } /** * Moves a job back from Active to Wait. * This script is used when a job has been manually rate limited and needs * to be moved back to wait from active status. * * @param client - Redis client * @param jobId - Job id * @returns */ async moveJobFromActiveToWait(jobId, token = "0") { const client = await this.queue.client; const keys = [ this.queue.keys.active, this.queue.keys.wait, this.queue.keys.stalled, this.queue.keys.paused, this.queue.keys.meta, this.queue.keys.limiter, this.queue.keys.prioritized, this.queue.keys.marker, this.queue.keys.events ]; const args = [jobId, token, this.queue.toKey(jobId)]; const result = await this.execCommand(client, "moveJobFromActiveToWait", keys.concat(args)); if (result < 0) { throw this.finishedErrors({ code: result, jobId, command: "moveJobFromActiveToWait", state: "active" }); } return result; } async obliterate(opts) { const client = await this.queue.client; const keys = [ this.queue.keys.meta, this.queue.toKey("") ]; const args = [opts.count, opts.force ? "force" : null]; const result = await this.execCommand(client, "obliterate", keys.concat(args)); if (result < 0) { switch (result) { case -1: throw new Error("Cannot obliterate non-paused queue"); case -2: throw new Error("Cannot obliterate queue with active jobs"); } } return result; } /** * Paginate a set or hash keys. * @param opts - options to define the pagination behaviour * */ async paginate(key, opts) { const client = await this.queue.client; const keys = [key]; const maxIterations = 5; const pageSize = opts.end >= 0 ? opts.end - opts.start + 1 : Infinity; let cursor = "0", offset = 0, items, total, rawJobs, page = [], jobs = []; do { const args = [ opts.start + page.length, opts.end, cursor, offset, maxIterations ]; if (opts.fetchJobs) { args.push(1); } [cursor, offset, items, total, rawJobs] = await this.execCommand(client, "paginate", keys.concat(args)); page = page.concat(items); if (rawJobs && rawJobs.length) { jobs = jobs.concat(rawJobs.map(array2obj)); } } while (cursor != "0" && page.length < pageSize); if (page.length && Array.isArray(page[0])) { const result = []; for (let index = 0; index < page.length; index++) { const [id, value] = page[index]; try { result.push({ id, v: JSON.parse(value) }); } catch (err) { result.push({ id, err: err.message }); } } return { cursor, items: result, total, jobs }; } else { return { cursor, items: page.map((item) => ({ id: item })), total, jobs }; } } finishedErrors({ code, jobId, parentKey, command, state }) { let error50; switch (code) { case ErrorCode.JobNotExist: error50 = new Error(`Missing key for job ${jobId}. ${command}`); break; case ErrorCode.JobLockNotExist: error50 = new Error(`Missing lock for job ${jobId}. ${command}`); break; case ErrorCode.JobNotInState: error50 = new Error(`Job ${jobId} is not in the ${state} state. ${command}`); break; case ErrorCode.JobPendingChildren: error50 = new Error(`Job ${jobId} has pending dependencies. ${command}`); break; case ErrorCode.ParentJobNotExist: error50 = new Error(`Missing key for parent job ${parentKey}. ${command}`); break; case ErrorCode.JobLockMismatch: error50 = new Error(`Lock mismatch for job ${jobId}. Cmd ${command} from ${state}`); break; case ErrorCode.ParentJobCannotBeReplaced: error50 = new Error(`The parent job ${parentKey} cannot be replaced. ${command}`); break; case ErrorCode.JobBelongsToJobScheduler: error50 = new Error(`Job ${jobId} belongs to a job scheduler and cannot be removed directly. ${command}`); break; case ErrorCode.JobHasFailedChildren: error50 = new UnrecoverableError(`Cannot complete job ${jobId} because it has at least one failed child. ${command}`); break; case ErrorCode.SchedulerJobIdCollision: error50 = new Error(`Cannot create job scheduler iteration - job ID already exists. ${command}`); break; case ErrorCode.SchedulerJobSlotsBusy: error50 = new Error(`Cannot create job scheduler iteration - current and next time slots already have jobs. ${command}`); break; default: error50 = new Error(`Unknown code ${code} error for ${jobId}. ${command}`); } error50.code = code; return error50; } async removeOrphanedJobs(candidateJobIds, stateKeySuffixes, jobSubKeySuffixes) { const client = await this.queue.client; const args = [ this.queue.toKey(""), stateKeySuffixes.length, ...stateKeySuffixes, jobSubKeySuffixes.length, ...jobSubKeySuffixes, ...candidateJobIds ]; return this.execCommand(client, "removeOrphanedJobs", args); } }; function raw2NextJobData(raw2) { if (raw2) { const result = [null, raw2[1], raw2[2], raw2[3]]; if (raw2[0]) { result[0] = array2obj(raw2[0]); } return result; } return []; } __name(raw2NextJobData, "raw2NextJobData"); // ../../node_modules/bullmq/dist/esm/utils/create-scripts.js var createScripts = /* @__PURE__ */ __name((queue) => { return new Scripts({ keys: queue.keys, client: queue.client, get redisVersion() { return queue.redisVersion; }, toKey: queue.toKey, opts: queue.opts, closing: queue.closing, databaseType: queue.databaseType }); }, "createScripts"); // ../../node_modules/bullmq/dist/esm/classes/job.js var logger3 = debuglog("bull"); var PRIORITY_LIMIT = 2 ** 21; var Job = class _Job { static { __name(this, "Job"); } constructor(queue, name, data, opts = {}, id) { this.queue = queue; this.name = name; this.data = data; this.opts = opts; this.id = id; this.progress = 0; this.returnvalue = null; this.stacktrace = null; this.delay = 0; this.priority = 0; this.attemptsStarted = 0; this.attemptsMade = 0; this.stalledCounter = 0; const _a2 = this.opts, { repeatJobKey } = _a2, restOpts = __rest(_a2, ["repeatJobKey"]); this.opts = Object.assign({ attempts: 0 }, restOpts); this.delay = this.opts.delay; this.priority = this.opts.priority || 0; this.repeatJobKey = repeatJobKey; this.timestamp = opts.timestamp ? opts.timestamp : Date.now(); this.opts.backoff = Backoffs.normalize(opts.backoff); this.parentKey = getParentKey(opts.parent); if (opts.parent) { this.parent = { id: opts.parent.id, queueKey: opts.parent.queue }; if (opts.failParentOnFailure) { this.parent.fpof = true; } if (opts.removeDependencyOnFailure) { this.parent.rdof = true; } if (opts.ignoreDependencyOnFailure) { this.parent.idof = true; } if (opts.continueParentOnFailure) { this.parent.cpof = true; } } this.debounceId = opts.debounce ? opts.debounce.id : void 0; this.deduplicationId = opts.deduplication ? opts.deduplication.id : this.debounceId; this.toKey = queue.toKey.bind(queue); this.createScripts(); this.queueQualifiedName = queue.qualifiedName; } /** * Creates a new job and adds it to the queue. * * @param queue - the queue where to add the job. * @param name - the name of the job. * @param data - the payload of the job. * @param opts - the options bag for this job. * @returns */ static async create(queue, name, data, opts) { const client = await queue.client; const job = new this(queue, name, data, opts, opts && opts.jobId); job.id = await job.addJob(client, { parentKey: job.parentKey, parentDependenciesKey: job.parentKey ? `${job.parentKey}:dependencies` : "" }); return job; } /** * Creates a bulk of jobs and adds them atomically to the given queue. * * @param queue -the queue were to add the jobs. * @param jobs - an array of jobs to be added to the queue. * @returns */ static async createBulk(queue, jobs) { const client = await queue.client; const jobInstances = jobs.map((job) => { var _a2; return new this(queue, job.name, job.data, job.opts, (_a2 = job.opts) === null || _a2 === void 0 ? void 0 : _a2.jobId); }); const pipeline = client.pipeline(); for (const job of jobInstances) { job.addJob(pipeline, { parentKey: job.parentKey, parentDependenciesKey: job.parentKey ? `${job.parentKey}:dependencies` : "" }); } const results = await pipeline.exec(); for (let index = 0; index < results.length; ++index) { const [err, id] = results[index]; if (err) { throw err; } jobInstances[index].id = id; } return jobInstances; } /** * Instantiates a Job from a JobJsonRaw object (coming from a deserialized JSON object) * * @param queue - the queue where the job belongs to. * @param json - the plain object containing the job. * @param jobId - an optional job id (overrides the id coming from the JSON object) * @returns */ static fromJSON(queue, json2, jobId) { const data = JSON.parse(json2.data || "{}"); const opts = _Job.optsFromJSON(json2.opts); const job = new this(queue, json2.name, data, opts, json2.id || jobId); job.progress = JSON.parse(json2.progress || "0"); job.delay = parseInt(json2.delay); job.priority = parseInt(json2.priority); job.timestamp = parseInt(json2.timestamp); if (json2.finishedOn) { job.finishedOn = parseInt(json2.finishedOn); } if (json2.processedOn) { job.processedOn = parseInt(json2.processedOn); } if (json2.rjk) { job.repeatJobKey = json2.rjk; } if (json2.deid) { job.debounceId = json2.deid; job.deduplicationId = json2.deid; } if (json2.failedReason) { job.failedReason = json2.failedReason; } job.attemptsStarted = parseInt(json2.ats || "0"); job.attemptsMade = parseInt(json2.attemptsMade || json2.atm || "0"); job.stalledCounter = parseInt(json2.stc || "0"); if (json2.defa) { job.deferredFailure = json2.defa; } job.stacktrace = getTraces(json2.stacktrace); if (typeof json2.returnvalue === "string") { job.returnvalue = getReturnValue(json2.returnvalue); } if (json2.parentKey) { job.parentKey = json2.parentKey; } if (json2.parent) { job.parent = JSON.parse(json2.parent); } if (json2.pb) { job.processedBy = json2.pb; } if (json2.nrjid) { job.nextRepeatableJobId = json2.nrjid; } return job; } createScripts() { this.scripts = createScripts(this.queue); } static optsFromJSON(rawOpts, optsDecode = optsDecodeMap) { const opts = JSON.parse(rawOpts || "{}"); const optionEntries = Object.entries(opts); const options = {}; for (const item of optionEntries) { const [attributeName, value] = item; if (optsDecode[attributeName]) { options[optsDecode[attributeName]] = value; } else { if (attributeName === "tm") { options.telemetry = Object.assign(Object.assign({}, options.telemetry), { metadata: value }); } else if (attributeName === "omc") { options.telemetry = Object.assign(Object.assign({}, options.telemetry), { omitContext: value }); } else { options[attributeName] = value; } } } return options; } /** * Fetches a Job from the queue given the passed job id. * * @param queue - the queue where the job belongs to. * @param jobId - the job id. * @returns */ static async fromId(queue, jobId) { if (jobId) { const client = await queue.client; const jobData = await client.hgetall(queue.toKey(jobId)); return isEmpty(jobData) ? void 0 : this.fromJSON(queue, jobData, jobId); } } /** * addJobLog * * @param queue - A minimal queue instance * @param jobId - Job id * @param logRow - String with a row of log data to be logged * @param keepLogs - The optional amount of log entries to preserve * * @returns The total number of log entries for this job so far. */ static addJobLog(queue, jobId, logRow, keepLogs) { const scripts = queue.scripts; return scripts.addLog(jobId, logRow, keepLogs); } toJSON() { const _a2 = this, { queue, scripts } = _a2, withoutQueueAndScripts = __rest(_a2, ["queue", "scripts"]); return withoutQueueAndScripts; } /** * Prepares a job to be serialized for storage in Redis. * @returns */ asJSON() { return removeUndefinedFields({ id: this.id, name: this.name, data: JSON.stringify(typeof this.data === "undefined" ? {} : this.data), opts: _Job.optsAsJSON(this.opts), parent: this.parent ? Object.assign({}, this.parent) : void 0, parentKey: this.parentKey, progress: this.progress, attemptsMade: this.attemptsMade, attemptsStarted: this.attemptsStarted, stalledCounter: this.stalledCounter, finishedOn: this.finishedOn, processedOn: this.processedOn, timestamp: this.timestamp, failedReason: JSON.stringify(this.failedReason), stacktrace: JSON.stringify(this.stacktrace), debounceId: this.debounceId, deduplicationId: this.deduplicationId, repeatJobKey: this.repeatJobKey, returnvalue: JSON.stringify(this.returnvalue), nrjid: this.nextRepeatableJobId }); } static optsAsJSON(opts = {}, optsEncode = optsEncodeMap) { const optionEntries = Object.entries(opts); const options = {}; for (const [attributeName, value] of optionEntries) { if (typeof value === "undefined") { continue; } if (attributeName in optsEncode) { const compressableAttribute = attributeName; const key = optsEncode[compressableAttribute]; options[key] = value; } else { if (attributeName === "telemetry") { if (value.metadata !== void 0) { options.tm = value.metadata; } if (value.omitContext !== void 0) { options.omc = value.omitContext; } } else { options[attributeName] = value; } } } return options; } /** * Prepares a job to be passed to Sandbox. * @returns */ asJSONSandbox() { return Object.assign(Object.assign({}, this.asJSON()), { queueName: this.queueName, queueQualifiedName: this.queueQualifiedName, prefix: this.prefix }); } /** * Updates a job's data * * @param data - the data that will replace the current jobs data. */ updateData(data) { this.data = data; return this.scripts.updateData(this, data); } /** * Updates a job's progress * * @param progress - number or object to be saved as progress. */ async updateProgress(progress) { this.progress = progress; await this.scripts.updateProgress(this.id, progress); this.queue.emit("progress", this, progress); } /** * Logs one row of log data. * * @param logRow - string with log data to be logged. * @returns The total number of log entries for this job so far. */ async log(logRow) { return _Job.addJobLog(this.queue, this.id, logRow, this.opts.keepLogs); } /** * Removes child dependency from parent when child is not yet finished * * @returns True if the relationship existed and if it was removed. */ async removeChildDependency() { const childDependencyIsRemoved = await this.scripts.removeChildDependency(this.id, this.parentKey); if (childDependencyIsRemoved) { this.parent = void 0; this.parentKey = void 0; return true; } return false; } /** * Clears job's logs * * @param keepLogs - the amount of log entries to preserve */ async clearLogs(keepLogs) { const client = await this.queue.client; const logsKey = this.toKey(this.id) + ":logs"; if (keepLogs) { await client.ltrim(logsKey, -keepLogs, -1); } else { await client.del(logsKey); } } /** * Completely remove the job from the queue. * Note, this call will throw an exception if the job * is being processed when the call is performed. * * @param opts - Options to remove a job */ async remove({ removeChildren = true } = {}) { await this.queue.waitUntilReady(); const queue = this.queue; const job = this; const removed = await this.scripts.remove(job.id, removeChildren); if (removed) { queue.emit("removed", job); } else { throw new Error(`Job ${this.id} could not be removed because it is locked by another worker`); } } /** * Remove all children from this job that are not yet processed, * in other words that are in any other state than completed, failed or active. * * @remarks * - Jobs with locks (most likely active) are ignored. * - This method can be slow if the number of children is large (\> 1000). */ async removeUnprocessedChildren() { const jobId = this.id; await this.scripts.removeUnprocessedChildren(jobId); } /** * Extend the lock for this job. * * @param token - unique token for the lock * @param duration - lock duration in milliseconds */ extendLock(token, duration3) { return this.scripts.extendLock(this.id, token, duration3); } /** * Moves a job to the completed queue. * Returned job to be used with Queue.prototype.nextJobFromJobData. * * @param returnValue - The jobs success message. * @param token - Worker token used to acquire completed job. * @param fetchNext - True when wanting to fetch the next job. * @returns Returns the jobData of the next job in the waiting queue or void. */ async moveToCompleted(returnValue, token, fetchNext = true) { return this.queue.trace(SpanKind.INTERNAL, "complete", this.queue.name, async (span) => { this.setSpanJobAttributes(span); await this.queue.waitUntilReady(); this.returnvalue = returnValue || void 0; const stringifiedReturnValue = tryCatch(JSON.stringify, JSON, [ returnValue ]); if (stringifiedReturnValue === errorObject) { throw errorObject.value; } const args = this.scripts.moveToCompletedArgs(this, stringifiedReturnValue, this.opts.removeOnComplete, token, fetchNext); const result = await this.scripts.moveToFinished(this.id, args); this.finishedOn = args[this.scripts.moveToFinishedKeys.length + 1]; this.attemptsMade += 1; this.recordJobMetrics("completed"); return result; }); } /** * Moves a job to the wait or prioritized state. * * @param token - Worker token used to acquire completed job. * @returns Returns pttl. */ async moveToWait(token) { const result = await this.scripts.moveJobFromActiveToWait(this.id, token); this.recordJobMetrics("waiting"); return result; } async shouldRetryJob(err) { if (this.attemptsMade + 1 < this.opts.attempts && !this.discarded && !(err instanceof UnrecoverableError || err.name == "UnrecoverableError")) { const opts = this.queue.opts; const delay2 = await Backoffs.calculate(this.opts.backoff, this.attemptsMade + 1, err, this, opts.settings && opts.settings.backoffStrategy); return [delay2 == -1 ? false : true, delay2 == -1 ? 0 : delay2]; } else { return [false, 0]; } } /** * Moves a job to the failed queue. * * @param err - the jobs error message. * @param token - token to check job is locked by current worker * @param fetchNext - true when wanting to fetch the next job * @returns Returns the jobData of the next job in the waiting queue or void. */ async moveToFailed(err, token, fetchNext = false) { this.failedReason = err === null || err === void 0 ? void 0 : err.message; const [shouldRetry, retryDelay] = await this.shouldRetryJob(err); return this.queue.trace(SpanKind.INTERNAL, this.getSpanOperation(shouldRetry, retryDelay), this.queue.name, async (span, dstPropagationMedatadata) => { var _a2, _b; this.setSpanJobAttributes(span); let tm; if (!((_b = (_a2 = this.opts) === null || _a2 === void 0 ? void 0 : _a2.telemetry) === null || _b === void 0 ? void 0 : _b.omitContext) && dstPropagationMedatadata) { tm = dstPropagationMedatadata; } let result; this.updateStacktrace(err); const fieldsToUpdate = { failedReason: this.failedReason, stacktrace: JSON.stringify(this.stacktrace), tm }; let finishedOn; if (shouldRetry) { if (retryDelay) { result = await this.scripts.moveToDelayed(this.id, Date.now(), retryDelay, token, { fieldsToUpdate }); this.recordJobMetrics("delayed"); } else { result = await this.scripts.retryJob(this.id, this.opts.lifo, token, { fieldsToUpdate }); this.recordJobMetrics("retried"); } } else { const args = this.scripts.moveToFailedArgs(this, this.failedReason, this.opts.removeOnFail, token, fetchNext, fieldsToUpdate); result = await this.scripts.moveToFinished(this.id, args); finishedOn = args[this.scripts.moveToFinishedKeys.length + 1]; this.recordJobMetrics("failed"); } if (finishedOn && typeof finishedOn === "number") { this.finishedOn = finishedOn; } if (retryDelay && typeof retryDelay === "number") { this.delay = retryDelay; } this.attemptsMade += 1; return result; }); } getSpanOperation(shouldRetry, retryDelay) { if (shouldRetry) { if (retryDelay) { return "delay"; } return "retry"; } return "fail"; } /** * Records job metrics if a meter is configured in telemetry options. * * @param status - The job status */ recordJobMetrics(status) { var _a2, _b; const meter = (_b = (_a2 = this.queue.opts) === null || _a2 === void 0 ? void 0 : _a2.telemetry) === null || _b === void 0 ? void 0 : _b.meter; if (!meter) { return; } const attributes = { [TelemetryAttributes.QueueName]: this.queue.name, [TelemetryAttributes.JobName]: this.name, [TelemetryAttributes.JobStatus]: status }; const statusToCounterName = { completed: MetricNames.JobsCompleted, failed: MetricNames.JobsFailed, delayed: MetricNames.JobsDelayed, retried: MetricNames.JobsRetried, waiting: MetricNames.JobsWaiting, "waiting-children": MetricNames.JobsWaitingChildren }; const counterName = statusToCounterName[status]; const counter = meter.createCounter(counterName, { description: `Number of jobs ${status}`, unit: "1" }); counter.add(1, attributes); if (this.processedOn) { const duration3 = Date.now() - this.processedOn; const histogram = meter.createHistogram(MetricNames.JobDuration, { description: "Job processing duration", unit: "ms" }); histogram.record(duration3, attributes); } } /** * @returns true if the job has completed. */ isCompleted() { return this.isInZSet("completed"); } /** * @returns true if the job has failed. */ isFailed() { return this.isInZSet("failed"); } /** * @returns true if the job is delayed. */ isDelayed() { return this.isInZSet("delayed"); } /** * @returns true if the job is waiting for children. */ isWaitingChildren() { return this.isInZSet("waiting-children"); } /** * @returns true of the job is active. */ isActive() { return this.isInList("active"); } /** * @returns true if the job is waiting. */ async isWaiting() { return await this.isInList("wait") || await this.isInList("paused"); } /** * @returns the queue name this job belongs to. */ get queueName() { return this.queue.name; } /** * @returns the prefix that is used. */ get prefix() { return this.queue.opts.prefix; } /** * Get current state. * * @returns Returns one of these values: * 'completed', 'failed', 'delayed', 'active', 'waiting', 'waiting-children', 'unknown'. */ getState() { return this.scripts.getState(this.id); } /** * Change delay of a delayed job. * * Reschedules a delayed job by setting a new delay from the current time. * For example, calling changeDelay(5000) will reschedule the job to execute * 5000 milliseconds (5 seconds) from now, regardless of the original delay. * * @param delay - milliseconds from now when the job should be processed. * @returns void * @throws JobNotExist * This exception is thrown if jobId is missing. * @throws JobNotInState * This exception is thrown if job is not in delayed state. */ async changeDelay(delay2) { await this.scripts.changeDelay(this.id, delay2); this.delay = delay2; } /** * Change job priority. * * @param opts - options containing priority and lifo values. * @returns void */ async changePriority(opts) { await this.scripts.changePriority(this.id, opts.priority, opts.lifo); this.priority = opts.priority || 0; } /** * Get this jobs children result values if any. * * @returns Object mapping children job keys with their values. */ async getChildrenValues() { const client = await this.queue.client; const result = await client.hgetall(this.toKey(`${this.id}:processed`)); if (result) { return parseObjectValues(result); } } /** * Retrieves the failures of child jobs that were explicitly ignored while using ignoreDependencyOnFailure option. * This method is useful for inspecting which child jobs were intentionally ignored when an error occured. * @see {@link https://docs.bullmq.io/guide/flows/ignore-dependency} * * @returns Object mapping children job keys with their failure values. */ async getIgnoredChildrenFailures() { const client = await this.queue.client; return client.hgetall(this.toKey(`${this.id}:failed`)); } /** * Get job's children failure values that were ignored if any. * * @deprecated This method is deprecated and will be removed in v6. Use getIgnoredChildrenFailures instead. * * @returns Object mapping children job keys with their failure values. */ async getFailedChildrenValues() { const client = await this.queue.client; return client.hgetall(this.toKey(`${this.id}:failed`)); } /** * Get children job keys if this job is a parent and has children. * @remarks * Count options before Redis v7.2 works as expected with any quantity of entries * on processed/unprocessed dependencies, since v7.2 you must consider that count * won't have any effect until processed/unprocessed dependencies have a length * greater than 127 * @see {@link https://redis.io/docs/management/optimization/memory-optimization/#redis--72} * @see {@link https://docs.bullmq.io/guide/flows#getters} * @returns dependencies separated by processed, unprocessed, ignored and failed. */ async getDependencies(opts = {}) { const client = await this.queue.client; const multi = client.multi(); if (!opts.processed && !opts.unprocessed && !opts.ignored && !opts.failed) { multi.hgetall(this.toKey(`${this.id}:processed`)); multi.smembers(this.toKey(`${this.id}:dependencies`)); multi.hgetall(this.toKey(`${this.id}:failed`)); multi.zrange(this.toKey(`${this.id}:unsuccessful`), 0, -1); const [[err1, processed], [err2, unprocessed], [err3, ignored], [err4, failed]] = await multi.exec(); return { processed: parseObjectValues(processed), unprocessed, failed, ignored }; } else { const defaultOpts = { cursor: 0, count: 20 }; const childrenResultOrder = []; if (opts.processed) { childrenResultOrder.push("processed"); const processedOpts = Object.assign(Object.assign({}, defaultOpts), opts.processed); multi.hscan(this.toKey(`${this.id}:processed`), processedOpts.cursor, "COUNT", processedOpts.count); } if (opts.unprocessed) { childrenResultOrder.push("unprocessed"); const unprocessedOpts = Object.assign(Object.assign({}, defaultOpts), opts.unprocessed); multi.sscan(this.toKey(`${this.id}:dependencies`), unprocessedOpts.cursor, "COUNT", unprocessedOpts.count); } if (opts.ignored) { childrenResultOrder.push("ignored"); const ignoredOpts = Object.assign(Object.assign({}, defaultOpts), opts.ignored); multi.hscan(this.toKey(`${this.id}:failed`), ignoredOpts.cursor, "COUNT", ignoredOpts.count); } let failedCursor; if (opts.failed) { childrenResultOrder.push("failed"); const failedOpts = Object.assign(Object.assign({}, defaultOpts), opts.failed); failedCursor = failedOpts.cursor + failedOpts.count; multi.zrange(this.toKey(`${this.id}:unsuccessful`), failedOpts.cursor, failedOpts.count - 1); } const results = await multi.exec(); let processedCursor, processed, unprocessedCursor, unprocessed, failed, ignoredCursor, ignored; childrenResultOrder.forEach((key, index) => { switch (key) { case "processed": { processedCursor = results[index][1][0]; const rawProcessed = results[index][1][1]; const transformedProcessed = {}; for (let ind = 0; ind < rawProcessed.length; ++ind) { if (ind % 2) { transformedProcessed[rawProcessed[ind - 1]] = JSON.parse(rawProcessed[ind]); } } processed = transformedProcessed; break; } case "failed": { failed = results[index][1]; break; } case "ignored": { ignoredCursor = results[index][1][0]; const rawIgnored = results[index][1][1]; const transformedIgnored = {}; for (let ind = 0; ind < rawIgnored.length; ++ind) { if (ind % 2) { transformedIgnored[rawIgnored[ind - 1]] = rawIgnored[ind]; } } ignored = transformedIgnored; break; } case "unprocessed": { unprocessedCursor = results[index][1][0]; unprocessed = results[index][1][1]; break; } } }); return Object.assign(Object.assign(Object.assign(Object.assign({}, processedCursor ? { processed, nextProcessedCursor: Number(processedCursor) } : {}), ignoredCursor ? { ignored, nextIgnoredCursor: Number(ignoredCursor) } : {}), failedCursor ? { failed, nextFailedCursor: failedCursor } : {}), unprocessedCursor ? { unprocessed, nextUnprocessedCursor: Number(unprocessedCursor) } : {}); } } /** * Get children job counts if this job is a parent and has children. * * @returns dependencies count separated by processed, unprocessed, ignored and failed. */ async getDependenciesCount(opts = {}) { const types = []; Object.entries(opts).forEach(([key, value]) => { if (value) { types.push(key); } }); const finalTypes = types.length ? types : ["processed", "unprocessed", "ignored", "failed"]; const responses = await this.scripts.getDependencyCounts(this.id, finalTypes); const counts = {}; responses.forEach((res, index) => { counts[`${finalTypes[index]}`] = res || 0; }); return counts; } /** * Returns a promise the resolves when the job has completed (containing the return value of the job), * or rejects when the job has failed (containing the failedReason). * * @param queueEvents - Instance of QueueEvents. * @param ttl - Time in milliseconds to wait for job to finish before timing out. */ async waitUntilFinished(queueEvents, ttl) { await this.queue.waitUntilReady(); const jobId = this.id; return new Promise(async (resolve, reject) => { let timeout; if (ttl) { timeout = setTimeout(() => onFailed( /* eslint-disable max-len */ `Job wait ${this.name} timed out before finishing, no finish notification arrived after ${ttl}ms (id=${jobId})` ), ttl); } function onCompleted(args) { removeListeners(); resolve(args.returnvalue); } __name(onCompleted, "onCompleted"); function onFailed(args) { removeListeners(); reject(new Error(args.failedReason || args)); } __name(onFailed, "onFailed"); const completedEvent = `completed:${jobId}`; const failedEvent = `failed:${jobId}`; queueEvents.on(completedEvent, onCompleted); queueEvents.on(failedEvent, onFailed); this.queue.on("closing", onFailed); const removeListeners = /* @__PURE__ */ __name(() => { clearInterval(timeout); queueEvents.removeListener(completedEvent, onCompleted); queueEvents.removeListener(failedEvent, onFailed); this.queue.removeListener("closing", onFailed); }, "removeListeners"); await queueEvents.waitUntilReady(); const [status, result] = await this.scripts.isFinished(jobId, true); const finished = status != 0; if (finished) { if (status == -1 || status == 2) { onFailed({ failedReason: result }); } else { onCompleted({ returnvalue: getReturnValue(result) }); } } }); } /** * Moves the job to the delay set. * * @param timestamp - timestamp when the job should be moved back to "wait" * @param token - token to check job is locked by current worker * @returns */ async moveToDelayed(timestamp, token) { const now = Date.now(); const delay2 = timestamp - now; const finalDelay = delay2 > 0 ? delay2 : 0; const movedToDelayed = await this.scripts.moveToDelayed(this.id, now, finalDelay, token, { skipAttempt: true }); this.delay = finalDelay; this.recordJobMetrics("delayed"); return movedToDelayed; } /** * Moves the job to the waiting-children set. * * @param token - Token to check job is locked by current worker * @param opts - The options bag for moving a job to waiting-children. * @returns true if the job was moved */ async moveToWaitingChildren(token, opts = {}) { const movedToWaitingChildren = await this.scripts.moveToWaitingChildren(this.id, token, opts); if (movedToWaitingChildren) { this.recordJobMetrics("waiting-children"); } return movedToWaitingChildren; } /** * Promotes a delayed job so that it starts to be processed as soon as possible. */ async promote() { const jobId = this.id; await this.scripts.promote(jobId); this.delay = 0; } /** * Attempts to retry the job. Only a job that has failed or completed can be retried. * * @param state - completed / failed * @param opts - options to retry a job * @returns A promise that resolves when the job has been successfully moved to the wait queue. * The queue emits a waiting event when the job is successfully moved. * @throws Will throw an error if the job does not exist, is locked, or is not in the expected state. */ async retry(state = "failed", opts = {}) { await this.scripts.reprocessJob(this, state, opts); this.failedReason = null; this.finishedOn = null; this.processedOn = null; this.returnvalue = null; if (opts.resetAttemptsMade) { this.attemptsMade = 0; } if (opts.resetAttemptsStarted) { this.attemptsStarted = 0; } } /** * Marks a job to not be retried if it fails (even if attempts has been configured) * @deprecated use UnrecoverableError */ discard() { this.discarded = true; } async isInZSet(set2) { const client = await this.queue.client; const score = await client.zscore(this.queue.toKey(set2), this.id); return score !== null; } async isInList(list) { return this.scripts.isJobInList(this.queue.toKey(list), this.id); } /** * Adds the job to Redis. * * @param client - * @param parentOpts - * @returns */ addJob(client, parentOpts) { const jobData = this.asJSON(); this.validateOptions(jobData); return this.scripts.addJob(client, jobData, jobData.opts, this.id, parentOpts); } /** * Removes a deduplication key if job is still the cause of deduplication. * @returns true if the deduplication key was removed. */ async removeDeduplicationKey() { if (this.deduplicationId) { const result = await this.scripts.removeDeduplicationKey(this.deduplicationId, this.id); return result > 0; } return false; } validateOptions(jobData) { var _a2, _b, _c2, _d2, _e2, _f, _g, _h2; const exclusiveOptions = [ "removeDependencyOnFailure", "failParentOnFailure", "continueParentOnFailure", "ignoreDependencyOnFailure" ]; const exceedLimit = this.opts.sizeLimit && lengthInUtf8Bytes(jobData.data) > this.opts.sizeLimit; if (exceedLimit) { throw new Error(`The size of job ${this.name} exceeds the limit ${this.opts.sizeLimit} bytes`); } if (this.opts.delay && this.opts.repeat && !((_a2 = this.opts.repeat) === null || _a2 === void 0 ? void 0 : _a2.count)) { throw new Error(`Delay and repeat options could not be used together`); } const enabledExclusiveOptions = exclusiveOptions.filter((opt) => this.opts[opt]); if (enabledExclusiveOptions.length > 1) { const optionsList = enabledExclusiveOptions.join(", "); throw new Error(`The following options cannot be used together: ${optionsList}`); } if ((_b = this.opts) === null || _b === void 0 ? void 0 : _b.jobId) { if (`${parseInt(this.opts.jobId, 10)}` === ((_c2 = this.opts) === null || _c2 === void 0 ? void 0 : _c2.jobId)) { throw new Error("Custom Id cannot be integers"); } if (((_d2 = this.opts) === null || _d2 === void 0 ? void 0 : _d2.jobId.includes(":")) && ((_f = (_e2 = this.opts) === null || _e2 === void 0 ? void 0 : _e2.jobId) === null || _f === void 0 ? void 0 : _f.split(":").length) !== 3) { throw new Error("Custom Id cannot contain :"); } } if (this.opts.priority) { if (Math.trunc(this.opts.priority) !== this.opts.priority) { throw new Error(`Priority should not be float`); } if (this.opts.priority > PRIORITY_LIMIT) { throw new Error(`Priority should be between 0 and ${PRIORITY_LIMIT}`); } } if (this.opts.deduplication) { if (!((_g = this.opts.deduplication) === null || _g === void 0 ? void 0 : _g.id)) { throw new Error("Deduplication id must be provided"); } if (this.parentKey) { throw new Error("Deduplication and parent options cannot be used together"); } } if (this.opts.debounce) { if (!((_h2 = this.opts.debounce) === null || _h2 === void 0 ? void 0 : _h2.id)) { throw new Error("Debounce id must be provided"); } if (this.parentKey) { throw new Error("Debounce and parent options cannot be used together"); } } if (typeof this.opts.backoff === "object" && typeof this.opts.backoff.jitter === "number") { if (this.opts.backoff.jitter < 0 || this.opts.backoff.jitter > 1) { throw new Error(`Jitter should be between 0 and 1`); } } } updateStacktrace(err) { this.stacktrace = this.stacktrace || []; if (err === null || err === void 0 ? void 0 : err.stack) { this.stacktrace.push(err.stack); if (this.opts.stackTraceLimit === 0) { this.stacktrace = []; } else if (this.opts.stackTraceLimit) { this.stacktrace = this.stacktrace.slice(-this.opts.stackTraceLimit); } } } setSpanJobAttributes(span) { span === null || span === void 0 ? void 0 : span.setAttributes({ [TelemetryAttributes.JobName]: this.name, [TelemetryAttributes.JobId]: this.id }); } }; function getTraces(stacktrace) { if (!stacktrace) { return []; } const traces = tryCatch(JSON.parse, JSON, [stacktrace]); if (traces === errorObject || !(traces instanceof Array)) { return []; } else { return traces; } } __name(getTraces, "getTraces"); function getReturnValue(_value) { const value = tryCatch(JSON.parse, JSON, [_value]); if (value !== errorObject) { return value; } else { logger3("corrupted returnvalue: " + _value, value); } } __name(getReturnValue, "getReturnValue"); // ../../node_modules/bullmq/dist/esm/classes/queue-keys.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var QueueKeys = class { static { __name(this, "QueueKeys"); } constructor(prefix = "bull") { this.prefix = prefix; } getKeys(name) { const keys = {}; [ "", "active", "wait", "waiting-children", "paused", "id", "delayed", "prioritized", "stalled-check", "completed", "failed", "stalled", "repeat", "limiter", "meta", "events", "pc", // priority counter key "marker", // marker key "de" // deduplication key ].forEach((key) => { keys[key] = this.toKey(name, key); }); return keys; } toKey(name, type) { return `${this.getQueueQualifiedName(name)}:${type}`; } getQueueQualifiedName(name) { return `${this.prefix}:${name}`; } }; // ../../node_modules/bullmq/dist/esm/classes/redis-connection.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var import_ioredis2 = __toESM(require_built3()); var import_utils28 = __toESM(require_utils2()); import { EventEmitter as EventEmitter4 } from "events"; // ../../node_modules/bullmq/dist/esm/scripts/index.js var scripts_exports = {}; __export(scripts_exports, { addDelayedJob: () => addDelayedJob, addJobScheduler: () => addJobScheduler, addLog: () => addLog, addParentJob: () => addParentJob, addPrioritizedJob: () => addPrioritizedJob, addRepeatableJob: () => addRepeatableJob, addStandardJob: () => addStandardJob, changeDelay: () => changeDelay, changePriority: () => changePriority, cleanJobsInSet: () => cleanJobsInSet, drain: () => drain, extendLock: () => extendLock, extendLocks: () => extendLocks, getCounts: () => getCounts, getCountsPerPriority: () => getCountsPerPriority, getDependencyCounts: () => getDependencyCounts, getJobScheduler: () => getJobScheduler, getMetrics: () => getMetrics, getRanges: () => getRanges, getRateLimitTtl: () => getRateLimitTtl, getState: () => getState, getStateV2: () => getStateV2, isFinished: () => isFinished, isJobInList: () => isJobInList, isMaxed: () => isMaxed, moveJobFromActiveToWait: () => moveJobFromActiveToWait, moveJobsToWait: () => moveJobsToWait, moveStalledJobsToWait: () => moveStalledJobsToWait, moveToActive: () => moveToActive, moveToDelayed: () => moveToDelayed, moveToFinished: () => moveToFinished, moveToWaitingChildren: () => moveToWaitingChildren, obliterate: () => obliterate, paginate: () => paginate, pause: () => pause, promote: () => promote, releaseLock: () => releaseLock, removeChildDependency: () => removeChildDependency, removeDeduplicationKey: () => removeDeduplicationKey, removeJob: () => removeJob, removeJobScheduler: () => removeJobScheduler, removeOrphanedJobs: () => removeOrphanedJobs, removeRepeatable: () => removeRepeatable, removeUnprocessedChildren: () => removeUnprocessedChildren, reprocessJob: () => reprocessJob, retryJob: () => retryJob, saveStacktrace: () => saveStacktrace, updateData: () => updateData, updateJobScheduler: () => updateJobScheduler, updateProgress: () => updateProgress, updateRepeatableJobMillis: () => updateRepeatableJobMillis }); init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/scripts/addDelayedJob-6.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content = `--[[ Adds a delayed job to the queue by doing the following: - Increases the job counter if needed. - Creates a new job key with the job data. - computes timestamp. - adds to delayed zset. - Emits a global event 'delayed' if the job is delayed. Input: KEYS[1] 'marker', KEYS[2] 'meta' KEYS[3] 'id' KEYS[4] 'delayed' KEYS[5] 'completed' KEYS[6] events stream key ARGV[1] msgpacked arguments array [1] key prefix, [2] custom id (use custom instead of one generated automatically) [3] name [4] timestamp [5] parentKey? [6] parent dependencies key. [7] parent? {id, queueKey} [8] repeat job key [9] deduplication key ARGV[2] Json stringified job data ARGV[3] msgpacked options Output: jobId - OK -5 - Missing parent key ]] local metaKey = KEYS[2] local idKey = KEYS[3] local delayedKey = KEYS[4] local completedKey = KEYS[5] local eventsKey = KEYS[6] local jobId local jobIdKey local rcall = redis.call local args = cmsgpack.unpack(ARGV[1]) local data = ARGV[2] local parentKey = args[5] local parent = args[7] local repeatJobKey = args[8] local deduplicationKey = args[9] local parentData -- Includes --[[ Adds a delayed job to the queue by doing the following: - Creates a new job key with the job data. - adds to delayed zset. - Emits a global event 'delayed' if the job is delayed. ]] -- Includes --[[ Add delay marker if needed. ]] -- Includes --[[ Function to return the next delayed job timestamp. ]] local function getNextDelayedTimestamp(delayedKey) local result = rcall("ZRANGE", delayedKey, 0, 0, "WITHSCORES") if #result then local nextTimestamp = tonumber(result[2]) if nextTimestamp ~= nil then return nextTimestamp / 0x1000 end end end local function addDelayMarkerIfNeeded(markerKey, delayedKey) local nextTimestamp = getNextDelayedTimestamp(delayedKey) if nextTimestamp ~= nil then -- Replace the score of the marker with the newest known -- next timestamp. rcall("ZADD", markerKey, nextTimestamp, "1") end end --[[ Bake in the job id first 12 bits into the timestamp to guarantee correct execution order of delayed jobs (up to 4096 jobs per given timestamp or 4096 jobs apart per timestamp) WARNING: Jobs that are so far apart that they wrap around will cause FIFO to fail ]] local function getDelayedScore(delayedKey, timestamp, delay) local delayedTimestamp = (delay > 0 and (tonumber(timestamp) + delay)) or tonumber(timestamp) local minScore = delayedTimestamp * 0x1000 local maxScore = (delayedTimestamp + 1 ) * 0x1000 - 1 local result = rcall("ZREVRANGEBYSCORE", delayedKey, maxScore, minScore, "WITHSCORES","LIMIT", 0, 1) if #result then local currentMaxScore = tonumber(result[2]) if currentMaxScore ~= nil then if currentMaxScore >= maxScore then return maxScore, delayedTimestamp else return currentMaxScore + 1, delayedTimestamp end end end return minScore, delayedTimestamp end local function addDelayedJob(jobId, delayedKey, eventsKey, timestamp, maxEvents, markerKey, delay) local score, delayedTimestamp = getDelayedScore(delayedKey, timestamp, tonumber(delay)) rcall("ZADD", delayedKey, score, jobId) rcall("XADD", eventsKey, "MAXLEN", "~", maxEvents, "*", "event", "delayed", "jobId", jobId, "delay", delayedTimestamp) -- mark that a delayed job is available addDelayMarkerIfNeeded(markerKey, delayedKey) end --[[ Function to debounce a job. ]] -- Includes --[[ Function to deduplicate a job. ]] local function deduplicateJobWithoutReplace(deduplicationId, deduplicationOpts, jobId, deduplicationKey, eventsKey, maxEvents) local ttl = deduplicationOpts['ttl'] local deduplicationKeyExists if ttl and ttl > 0 then if deduplicationOpts['extend'] then local currentDebounceJobId = rcall('GET', deduplicationKey) if currentDebounceJobId then rcall('SET', deduplicationKey, currentDebounceJobId, 'PX', ttl) rcall("XADD", eventsKey, "MAXLEN", "~", maxEvents, "*", "event", "debounced", "jobId", currentDebounceJobId, "debounceId", deduplicationId) rcall("XADD", eventsKey, "MAXLEN", "~", maxEvents, "*", "event", "deduplicated", "jobId", currentDebounceJobId, "deduplicationId", deduplicationId, "deduplicatedJobId", jobId) return currentDebounceJobId else rcall('SET', deduplicationKey, jobId, 'PX', ttl) return end else deduplicationKeyExists = not rcall('SET', deduplicationKey, jobId, 'PX', ttl, 'NX') end else deduplicationKeyExists = not rcall('SET', deduplicationKey, jobId, 'NX') end if deduplicationKeyExists then local currentDebounceJobId = rcall('GET', deduplicationKey) -- TODO remove debounced event in next breaking change rcall("XADD", eventsKey, "MAXLEN", "~", maxEvents, "*", "event", "debounced", "jobId", currentDebounceJobId, "debounceId", deduplicationId) rcall("XADD", eventsKey, "MAXLEN", "~", maxEvents, "*", "event", "deduplicated", "jobId", currentDebounceJobId, "deduplicationId", deduplicationId, "deduplicatedJobId", jobId) return currentDebounceJobId end end --[[ Function to remove job keys. ]] local function removeJobKeys(jobKey) return rcall("DEL", jobKey, jobKey .. ':logs', jobKey .. ':dependencies', jobKey .. ':processed', jobKey .. ':failed', jobKey .. ':unsuccessful') end local function removeDelayedJob(delayedKey, deduplicationKey, eventsKey, maxEvents, currentDeduplicatedJobId, jobId, deduplicationId, prefix) if rcall("ZREM", delayedKey, currentDeduplicatedJobId) > 0 then removeJobKeys(prefix .. currentDeduplicatedJobId) rcall("XADD", eventsKey, "*", "event", "removed", "jobId", currentDeduplicatedJobId, "prev", "delayed") -- TODO remove debounced event in next breaking change rcall("XADD", eventsKey, "MAXLEN", "~", maxEvents, "*", "event", "debounced", "jobId", jobId, "debounceId", deduplicationId) rcall("XADD", eventsKey, "MAXLEN", "~", maxEvents, "*", "event", "deduplicated", "jobId", jobId, "deduplicationId", deduplicationId, "deduplicatedJobId", currentDeduplicatedJobId) return true end return false end local function deduplicateJob(deduplicationOpts, jobId, delayedKey, deduplicationKey, eventsKey, maxEvents, prefix) local deduplicationId = deduplicationOpts and deduplicationOpts['id'] if deduplicationId then if deduplicationOpts['replace'] then local ttl = deduplicationOpts['ttl'] if ttl and ttl > 0 then local currentDebounceJobId = rcall('GET', deduplicationKey) if currentDebounceJobId then local isRemoved = removeDelayedJob(delayedKey, deduplicationKey, eventsKey, maxEvents, currentDebounceJobId, jobId, deduplicationId, prefix) if isRemoved then if deduplicationOpts['extend'] then rcall('SET', deduplicationKey, jobId, 'PX', ttl) else rcall('SET', deduplicationKey, jobId, 'KEEPTTL') end return else return currentDebounceJobId end else rcall('SET', deduplicationKey, jobId, 'PX', ttl) return end else local currentDebounceJobId = rcall('GET', deduplicationKey) if currentDebounceJobId then local isRemoved = removeDelayedJob(delayedKey, deduplicationKey, eventsKey, maxEvents, currentDebounceJobId, jobId, deduplicationId, prefix) if isRemoved then rcall('SET', deduplicationKey, jobId) return else return currentDebounceJobId end else rcall('SET', deduplicationKey, jobId) return end end else return deduplicateJobWithoutReplace(deduplicationId, deduplicationOpts, jobId, deduplicationKey, eventsKey, maxEvents) end end end --[[ Function to get max events value or set by default 10000. ]] local function getOrSetMaxEvents(metaKey) local maxEvents = rcall("HGET", metaKey, "opts.maxLenEvents") if not maxEvents then maxEvents = 10000 rcall("HSET", metaKey, "opts.maxLenEvents", maxEvents) end return maxEvents end --[[ Function to handle the case when job is duplicated. ]] -- Includes --[[ This function is used to update the parent's dependencies if the job is already completed and about to be ignored. The parent must get its dependencies updated to avoid the parent job being stuck forever in the waiting-children state. ]] -- Includes --[[ Validate and move or add dependencies to parent. ]] -- Includes --[[ Validate and move parent to a wait status (waiting, delayed or prioritized) if no pending dependencies. ]] -- Includes --[[ Validate and move parent to a wait status (waiting, delayed or prioritized) if needed. ]] -- Includes --[[ Move parent to a wait status (wait, prioritized or delayed) ]] -- Includes --[[ Function to add job in target list and add marker if needed. ]] -- Includes --[[ Add marker if needed when a job is available. ]] local function addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) if not isPausedOrMaxed then rcall("ZADD", markerKey, 0, "0") end end local function addJobInTargetList(targetKey, markerKey, pushCmd, isPausedOrMaxed, jobId) rcall(pushCmd, targetKey, jobId) addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) end --[[ Function to add job considering priority. ]] -- Includes --[[ Function to get priority score. ]] local function getPriorityScore(priority, priorityCounterKey) local prioCounter = rcall("INCR", priorityCounterKey) return priority * 0x100000000 + prioCounter % 0x100000000 end local function addJobWithPriority(markerKey, prioritizedKey, priority, jobId, priorityCounterKey, isPausedOrMaxed) local score = getPriorityScore(priority, priorityCounterKey) rcall("ZADD", prioritizedKey, score, jobId) addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) end --[[ Function to check if queue is paused or maxed (since an empty list and !EXISTS are not really the same). ]] local function isQueuePausedOrMaxed(queueMetaKey, activeKey) local queueAttributes = rcall("HMGET", queueMetaKey, "paused", "concurrency") if queueAttributes[1] then return true else if queueAttributes[2] then local activeCount = rcall("LLEN", activeKey) return activeCount >= tonumber(queueAttributes[2]) end end return false end --[[ Function to check for the meta.paused key to decide if we are paused or not (since an empty list and !EXISTS are not really the same). ]] local function getTargetQueueList(queueMetaKey, activeKey, waitKey, pausedKey) local queueAttributes = rcall("HMGET", queueMetaKey, "paused", "concurrency", "max", "duration") if queueAttributes[1] then return pausedKey, true, queueAttributes[3], queueAttributes[4] else if queueAttributes[2] then local activeCount = rcall("LLEN", activeKey) if activeCount >= tonumber(queueAttributes[2]) then return waitKey, true, queueAttributes[3], queueAttributes[4] else return waitKey, false, queueAttributes[3], queueAttributes[4] end end end return waitKey, false, queueAttributes[3], queueAttributes[4] end local function moveParentToWait(parentQueueKey, parentKey, parentId, timestamp) local parentWaitKey = parentQueueKey .. ":wait" local parentPausedKey = parentQueueKey .. ":paused" local parentActiveKey = parentQueueKey .. ":active" local parentMetaKey = parentQueueKey .. ":meta" local parentMarkerKey = parentQueueKey .. ":marker" local jobAttributes = rcall("HMGET", parentKey, "priority", "delay") local priority = tonumber(jobAttributes[1]) or 0 local delay = tonumber(jobAttributes[2]) or 0 if delay > 0 then local delayedTimestamp = tonumber(timestamp) + delay local score = delayedTimestamp * 0x1000 local parentDelayedKey = parentQueueKey .. ":delayed" rcall("ZADD", parentDelayedKey, score, parentId) rcall("XADD", parentQueueKey .. ":events", "*", "event", "delayed", "jobId", parentId, "delay", delayedTimestamp) addDelayMarkerIfNeeded(parentMarkerKey, parentDelayedKey) else if priority == 0 then local parentTarget, isParentPausedOrMaxed = getTargetQueueList(parentMetaKey, parentActiveKey, parentWaitKey, parentPausedKey) addJobInTargetList(parentTarget, parentMarkerKey, "RPUSH", isParentPausedOrMaxed, parentId) else local isPausedOrMaxed = isQueuePausedOrMaxed(parentMetaKey, parentActiveKey) addJobWithPriority(parentMarkerKey, parentQueueKey .. ":prioritized", priority, parentId, parentQueueKey .. ":pc", isPausedOrMaxed) end rcall("XADD", parentQueueKey .. ":events", "*", "event", "waiting", "jobId", parentId, "prev", "waiting-children") end end local function moveParentToWaitIfNeeded(parentQueueKey, parentKey, parentId, timestamp) if rcall("EXISTS", parentKey) == 1 then local parentWaitingChildrenKey = parentQueueKey .. ":waiting-children" if rcall("ZSCORE", parentWaitingChildrenKey, parentId) then rcall("ZREM", parentWaitingChildrenKey, parentId) moveParentToWait(parentQueueKey, parentKey, parentId, timestamp) end end end local function moveParentToWaitIfNoPendingDependencies(parentQueueKey, parentDependenciesKey, parentKey, parentId, timestamp) local doNotHavePendingDependencies = rcall("SCARD", parentDependenciesKey) == 0 if doNotHavePendingDependencies then moveParentToWaitIfNeeded(parentQueueKey, parentKey, parentId, timestamp) end end local function updateParentDepsIfNeeded(parentKey, parentQueueKey, parentDependenciesKey, parentId, jobIdKey, returnvalue, timestamp ) local processedSet = parentKey .. ":processed" rcall("HSET", processedSet, jobIdKey, returnvalue) moveParentToWaitIfNoPendingDependencies(parentQueueKey, parentDependenciesKey, parentKey, parentId, timestamp) end local function updateExistingJobsParent(parentKey, parent, parentData, parentDependenciesKey, completedKey, jobIdKey, jobId, timestamp) if parentKey ~= nil then if rcall("ZSCORE", completedKey, jobId) then local returnvalue = rcall("HGET", jobIdKey, "returnvalue") updateParentDepsIfNeeded(parentKey, parent['queueKey'], parentDependenciesKey, parent['id'], jobIdKey, returnvalue, timestamp) else if parentDependenciesKey ~= nil then rcall("SADD", parentDependenciesKey, jobIdKey) end end rcall("HMSET", jobIdKey, "parentKey", parentKey, "parent", parentData) end end local function handleDuplicatedJob(jobKey, jobId, currentParentKey, currentParent, parentData, parentDependenciesKey, completedKey, eventsKey, maxEvents, timestamp) local existedParentKey = rcall("HGET", jobKey, "parentKey") if not existedParentKey or existedParentKey == currentParentKey then updateExistingJobsParent(currentParentKey, currentParent, parentData, parentDependenciesKey, completedKey, jobKey, jobId, timestamp) else if currentParentKey ~= nil and currentParentKey ~= existedParentKey and (rcall("EXISTS", existedParentKey) == 1) then return -7 end end rcall("XADD", eventsKey, "MAXLEN", "~", maxEvents, "*", "event", "duplicated", "jobId", jobId) return jobId .. "" -- convert to string end --[[ Function to store a job ]] local function storeJob(eventsKey, jobIdKey, jobId, name, data, opts, timestamp, parentKey, parentData, repeatJobKey) local jsonOpts = cjson.encode(opts) local delay = opts['delay'] or 0 local priority = opts['priority'] or 0 local debounceId = opts['de'] and opts['de']['id'] local optionalValues = {} if parentKey ~= nil then table.insert(optionalValues, "parentKey") table.insert(optionalValues, parentKey) table.insert(optionalValues, "parent") table.insert(optionalValues, parentData) end if repeatJobKey then table.insert(optionalValues, "rjk") table.insert(optionalValues, repeatJobKey) end if debounceId then table.insert(optionalValues, "deid") table.insert(optionalValues, debounceId) end rcall("HMSET", jobIdKey, "name", name, "data", data, "opts", jsonOpts, "timestamp", timestamp, "delay", delay, "priority", priority, unpack(optionalValues)) rcall("XADD", eventsKey, "*", "event", "added", "jobId", jobId, "name", name) return delay, priority end if parentKey ~= nil then if rcall("EXISTS", parentKey) ~= 1 then return -5 end parentData = cjson.encode(parent) end local jobCounter = rcall("INCR", idKey) local maxEvents = getOrSetMaxEvents(metaKey) local opts = cmsgpack.unpack(ARGV[3]) local parentDependenciesKey = args[6] local timestamp = args[4] if args[2] == "" then jobId = jobCounter jobIdKey = args[1] .. jobId else jobId = args[2] jobIdKey = args[1] .. jobId if rcall("EXISTS", jobIdKey) == 1 then return handleDuplicatedJob(jobIdKey, jobId, parentKey, parent, parentData, parentDependenciesKey, completedKey, eventsKey, maxEvents, timestamp) end end local deduplicationJobId = deduplicateJob(opts['de'], jobId, delayedKey, deduplicationKey, eventsKey, maxEvents, args[1]) if deduplicationJobId then return deduplicationJobId end local delay, priority = storeJob(eventsKey, jobIdKey, jobId, args[3], ARGV[2], opts, timestamp, parentKey, parentData, repeatJobKey) addDelayedJob(jobId, delayedKey, eventsKey, timestamp, maxEvents, KEYS[1], delay) -- Check if this job is a child of another job, if so add it to the parents dependencies if parentDependenciesKey ~= nil then rcall("SADD", parentDependenciesKey, jobIdKey) end return jobId .. "" -- convert to string `; var addDelayedJob = { name: "addDelayedJob", content, keys: 6 }; // ../../node_modules/bullmq/dist/esm/scripts/addJobScheduler-11.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content2 = `--[[ Adds a job scheduler, i.e. a job factory that creates jobs based on a given schedule (repeat options). Input: KEYS[1] 'repeat' key KEYS[2] 'delayed' key KEYS[3] 'wait' key KEYS[4] 'paused' key KEYS[5] 'meta' key KEYS[6] 'prioritized' key KEYS[7] 'marker' key KEYS[8] 'id' key KEYS[9] 'events' key KEYS[10] 'pc' priority counter KEYS[11] 'active' key ARGV[1] next milliseconds ARGV[2] msgpacked options [1] name [2] tz? [3] pattern? [4] endDate? [5] every? ARGV[3] jobs scheduler id ARGV[4] Json stringified template data ARGV[5] mspacked template opts ARGV[6] msgpacked delayed opts ARGV[7] timestamp ARGV[8] prefix key ARGV[9] producer key Output: repeatableKey - OK ]] local rcall = redis.call local repeatKey = KEYS[1] local delayedKey = KEYS[2] local waitKey = KEYS[3] local pausedKey = KEYS[4] local metaKey = KEYS[5] local prioritizedKey = KEYS[6] local eventsKey = KEYS[9] local nextMillis = ARGV[1] local jobSchedulerId = ARGV[3] local templateOpts = cmsgpack.unpack(ARGV[5]) local now = tonumber(ARGV[7]) local prefixKey = ARGV[8] local jobOpts = cmsgpack.unpack(ARGV[6]) -- Includes --[[ Add delay marker if needed. ]] -- Includes --[[ Adds a delayed job to the queue by doing the following: - Creates a new job key with the job data. - adds to delayed zset. - Emits a global event 'delayed' if the job is delayed. ]] -- Includes --[[ Add delay marker if needed. ]] -- Includes --[[ Function to return the next delayed job timestamp. ]] local function getNextDelayedTimestamp(delayedKey) local result = rcall("ZRANGE", delayedKey, 0, 0, "WITHSCORES") if #result then local nextTimestamp = tonumber(result[2]) if nextTimestamp ~= nil then return nextTimestamp / 0x1000 end end end local function addDelayMarkerIfNeeded(markerKey, delayedKey) local nextTimestamp = getNextDelayedTimestamp(delayedKey) if nextTimestamp ~= nil then -- Replace the score of the marker with the newest known -- next timestamp. rcall("ZADD", markerKey, nextTimestamp, "1") end end --[[ Bake in the job id first 12 bits into the timestamp to guarantee correct execution order of delayed jobs (up to 4096 jobs per given timestamp or 4096 jobs apart per timestamp) WARNING: Jobs that are so far apart that they wrap around will cause FIFO to fail ]] local function getDelayedScore(delayedKey, timestamp, delay) local delayedTimestamp = (delay > 0 and (tonumber(timestamp) + delay)) or tonumber(timestamp) local minScore = delayedTimestamp * 0x1000 local maxScore = (delayedTimestamp + 1 ) * 0x1000 - 1 local result = rcall("ZREVRANGEBYSCORE", delayedKey, maxScore, minScore, "WITHSCORES","LIMIT", 0, 1) if #result then local currentMaxScore = tonumber(result[2]) if currentMaxScore ~= nil then if currentMaxScore >= maxScore then return maxScore, delayedTimestamp else return currentMaxScore + 1, delayedTimestamp end end end return minScore, delayedTimestamp end local function addDelayedJob(jobId, delayedKey, eventsKey, timestamp, maxEvents, markerKey, delay) local score, delayedTimestamp = getDelayedScore(delayedKey, timestamp, tonumber(delay)) rcall("ZADD", delayedKey, score, jobId) rcall("XADD", eventsKey, "MAXLEN", "~", maxEvents, "*", "event", "delayed", "jobId", jobId, "delay", delayedTimestamp) -- mark that a delayed job is available addDelayMarkerIfNeeded(markerKey, delayedKey) end --[[ Function to add job considering priority. ]] -- Includes --[[ Add marker if needed when a job is available. ]] local function addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) if not isPausedOrMaxed then rcall("ZADD", markerKey, 0, "0") end end --[[ Function to get priority score. ]] local function getPriorityScore(priority, priorityCounterKey) local prioCounter = rcall("INCR", priorityCounterKey) return priority * 0x100000000 + prioCounter % 0x100000000 end local function addJobWithPriority(markerKey, prioritizedKey, priority, jobId, priorityCounterKey, isPausedOrMaxed) local score = getPriorityScore(priority, priorityCounterKey) rcall("ZADD", prioritizedKey, score, jobId) addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) end --[[ Function to check for the meta.paused key to decide if we are paused or not (since an empty list and !EXISTS are not really the same). ]] local function isQueuePaused(queueMetaKey) return rcall("HEXISTS", queueMetaKey, "paused") == 1 end --[[ Function to store a job ]] local function storeJob(eventsKey, jobIdKey, jobId, name, data, opts, timestamp, parentKey, parentData, repeatJobKey) local jsonOpts = cjson.encode(opts) local delay = opts['delay'] or 0 local priority = opts['priority'] or 0 local debounceId = opts['de'] and opts['de']['id'] local optionalValues = {} if parentKey ~= nil then table.insert(optionalValues, "parentKey") table.insert(optionalValues, parentKey) table.insert(optionalValues, "parent") table.insert(optionalValues, parentData) end if repeatJobKey then table.insert(optionalValues, "rjk") table.insert(optionalValues, repeatJobKey) end if debounceId then table.insert(optionalValues, "deid") table.insert(optionalValues, debounceId) end rcall("HMSET", jobIdKey, "name", name, "data", data, "opts", jsonOpts, "timestamp", timestamp, "delay", delay, "priority", priority, unpack(optionalValues)) rcall("XADD", eventsKey, "*", "event", "added", "jobId", jobId, "name", name) return delay, priority end --[[ Function to check for the meta.paused key to decide if we are paused or not (since an empty list and !EXISTS are not really the same). ]] local function getTargetQueueList(queueMetaKey, activeKey, waitKey, pausedKey) local queueAttributes = rcall("HMGET", queueMetaKey, "paused", "concurrency", "max", "duration") if queueAttributes[1] then return pausedKey, true, queueAttributes[3], queueAttributes[4] else if queueAttributes[2] then local activeCount = rcall("LLEN", activeKey) if activeCount >= tonumber(queueAttributes[2]) then return waitKey, true, queueAttributes[3], queueAttributes[4] else return waitKey, false, queueAttributes[3], queueAttributes[4] end end end return waitKey, false, queueAttributes[3], queueAttributes[4] end --[[ Function to add job in target list and add marker if needed. ]] -- Includes local function addJobInTargetList(targetKey, markerKey, pushCmd, isPausedOrMaxed, jobId) rcall(pushCmd, targetKey, jobId) addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) end local function addJobFromScheduler(jobKey, jobId, opts, waitKey, pausedKey, activeKey, metaKey, prioritizedKey, priorityCounter, delayedKey, markerKey, eventsKey, name, maxEvents, timestamp, data, jobSchedulerId, repeatDelay) opts['delay'] = repeatDelay opts['jobId'] = jobId local delay, priority = storeJob(eventsKey, jobKey, jobId, name, data, opts, timestamp, nil, nil, jobSchedulerId) if delay ~= 0 then addDelayedJob(jobId, delayedKey, eventsKey, timestamp, maxEvents, markerKey, delay) else local target, isPausedOrMaxed = getTargetQueueList(metaKey, activeKey, waitKey, pausedKey) -- Standard or priority add if priority == 0 then local pushCmd = opts['lifo'] and 'RPUSH' or 'LPUSH' addJobInTargetList(target, markerKey, pushCmd, isPausedOrMaxed, jobId) else -- Priority add addJobWithPriority(markerKey, prioritizedKey, priority, jobId, priorityCounter, isPausedOrMaxed) end -- Emit waiting event rcall("XADD", eventsKey, "MAXLEN", "~", maxEvents, "*", "event", "waiting", "jobId", jobId) end end --[[ Function to get max events value or set by default 10000. ]] local function getOrSetMaxEvents(metaKey) local maxEvents = rcall("HGET", metaKey, "opts.maxLenEvents") if not maxEvents then maxEvents = 10000 rcall("HSET", metaKey, "opts.maxLenEvents", maxEvents) end return maxEvents end --[[ Function to remove job. ]] -- Includes --[[ Function to remove deduplication key if needed when a job is being removed. ]] local function removeDeduplicationKeyIfNeededOnRemoval(prefixKey, jobId, deduplicationId) if deduplicationId then local deduplicationKey = prefixKey .. "de:" .. deduplicationId local currentJobId = rcall('GET', deduplicationKey) if currentJobId and currentJobId == jobId then return rcall("DEL", deduplicationKey) end end end --[[ Function to remove job keys. ]] local function removeJobKeys(jobKey) return rcall("DEL", jobKey, jobKey .. ':logs', jobKey .. ':dependencies', jobKey .. ':processed', jobKey .. ':failed', jobKey .. ':unsuccessful') end --[[ Check if this job has a parent. If so we will just remove it from the parent child list, but if it is the last child we should move the parent to "wait/paused" which requires code from "moveToFinished" ]] -- Includes --[[ Functions to destructure job key. Just a bit of warning, these functions may be a bit slow and affect performance significantly. ]] local getJobIdFromKey = function (jobKey) return string.match(jobKey, ".*:(.*)") end local getJobKeyPrefix = function (jobKey, jobId) return string.sub(jobKey, 0, #jobKey - #jobId) end local function _moveParentToWait(parentPrefix, parentId, emitEvent) local parentTarget, isPausedOrMaxed = getTargetQueueList(parentPrefix .. "meta", parentPrefix .. "active", parentPrefix .. "wait", parentPrefix .. "paused") addJobInTargetList(parentTarget, parentPrefix .. "marker", "RPUSH", isPausedOrMaxed, parentId) if emitEvent then local parentEventStream = parentPrefix .. "events" rcall("XADD", parentEventStream, "*", "event", "waiting", "jobId", parentId, "prev", "waiting-children") end end local function removeParentDependencyKey(jobKey, hard, parentKey, baseKey, debounceId) if parentKey then local parentDependenciesKey = parentKey .. ":dependencies" local result = rcall("SREM", parentDependenciesKey, jobKey) if result > 0 then local pendingDependencies = rcall("SCARD", parentDependenciesKey) if pendingDependencies == 0 then local parentId = getJobIdFromKey(parentKey) local parentPrefix = getJobKeyPrefix(parentKey, parentId) local numRemovedElements = rcall("ZREM", parentPrefix .. "waiting-children", parentId) if numRemovedElements == 1 then if hard then -- remove parent in same queue if parentPrefix == baseKey then removeParentDependencyKey(parentKey, hard, nil, baseKey, nil) removeJobKeys(parentKey) if debounceId then rcall("DEL", parentPrefix .. "de:" .. debounceId) end else _moveParentToWait(parentPrefix, parentId) end else _moveParentToWait(parentPrefix, parentId, true) end end end return true end else local parentAttributes = rcall("HMGET", jobKey, "parentKey", "deid") local missedParentKey = parentAttributes[1] if( (type(missedParentKey) == "string") and missedParentKey ~= "" and (rcall("EXISTS", missedParentKey) == 1)) then local parentDependenciesKey = missedParentKey .. ":dependencies" local result = rcall("SREM", parentDependenciesKey, jobKey) if result > 0 then local pendingDependencies = rcall("SCARD", parentDependenciesKey) if pendingDependencies == 0 then local parentId = getJobIdFromKey(missedParentKey) local parentPrefix = getJobKeyPrefix(missedParentKey, parentId) local numRemovedElements = rcall("ZREM", parentPrefix .. "waiting-children", parentId) if numRemovedElements == 1 then if hard then if parentPrefix == baseKey then removeParentDependencyKey(missedParentKey, hard, nil, baseKey, nil) removeJobKeys(missedParentKey) if parentAttributes[2] then rcall("DEL", parentPrefix .. "de:" .. parentAttributes[2]) end else _moveParentToWait(parentPrefix, parentId) end else _moveParentToWait(parentPrefix, parentId, true) end end end return true end end end return false end local function removeJob(jobId, hard, baseKey, shouldRemoveDeduplicationKey) local jobKey = baseKey .. jobId removeParentDependencyKey(jobKey, hard, nil, baseKey) if shouldRemoveDeduplicationKey then local deduplicationId = rcall("HGET", jobKey, "deid") removeDeduplicationKeyIfNeededOnRemoval(baseKey, jobId, deduplicationId) end removeJobKeys(jobKey) end --[[ Function to store a job scheduler ]] local function storeJobScheduler(schedulerId, schedulerKey, repeatKey, nextMillis, opts, templateData, templateOpts) rcall("ZADD", repeatKey, nextMillis, schedulerId) local optionalValues = {} if opts['tz'] then table.insert(optionalValues, "tz") table.insert(optionalValues, opts['tz']) end if opts['limit'] then table.insert(optionalValues, "limit") table.insert(optionalValues, opts['limit']) end if opts['pattern'] then table.insert(optionalValues, "pattern") table.insert(optionalValues, opts['pattern']) end if opts['startDate'] then table.insert(optionalValues, "startDate") table.insert(optionalValues, opts['startDate']) end if opts['endDate'] then table.insert(optionalValues, "endDate") table.insert(optionalValues, opts['endDate']) end if opts['every'] then table.insert(optionalValues, "every") table.insert(optionalValues, opts['every']) end if opts['offset'] then table.insert(optionalValues, "offset") table.insert(optionalValues, opts['offset']) else local offset = rcall("HGET", schedulerKey, "offset") if offset then table.insert(optionalValues, "offset") table.insert(optionalValues, tonumber(offset)) end end local jsonTemplateOpts = cjson.encode(templateOpts) if jsonTemplateOpts and jsonTemplateOpts ~= '{}' then table.insert(optionalValues, "opts") table.insert(optionalValues, jsonTemplateOpts) end if templateData and templateData ~= '{}' then table.insert(optionalValues, "data") table.insert(optionalValues, templateData) end table.insert(optionalValues, "ic") table.insert(optionalValues, rcall("HGET", schedulerKey, "ic") or 1) rcall("DEL", schedulerKey) -- remove all attributes and then re-insert new ones rcall("HMSET", schedulerKey, "name", opts['name'], unpack(optionalValues)) end local function getJobSchedulerEveryNextMillis(prevMillis, every, now, offset, startDate) local nextMillis if not prevMillis then if startDate then -- Assuming startDate is passed as milliseconds from JavaScript nextMillis = tonumber(startDate) nextMillis = nextMillis > now and nextMillis or now else nextMillis = now end else nextMillis = prevMillis + every -- check if we may have missed some iterations if nextMillis < now then nextMillis = math.floor(now / every) * every + every + (offset or 0) end end if not offset or offset == 0 then local timeSlot = math.floor(nextMillis / every) * every; offset = nextMillis - timeSlot; end -- Return a tuple nextMillis, offset return math.floor(nextMillis), math.floor(offset) end -- If we are overriding a repeatable job we must delete the delayed job for -- the next iteration. local schedulerKey = repeatKey .. ":" .. jobSchedulerId local maxEvents = getOrSetMaxEvents(metaKey) local templateData = ARGV[4] local prevMillis = rcall("ZSCORE", repeatKey, jobSchedulerId) if prevMillis then prevMillis = tonumber(prevMillis) end local schedulerOpts = cmsgpack.unpack(ARGV[2]) local every = schedulerOpts['every'] -- For backwards compatibility we also check the offset from the job itself. -- could be removed in future major versions. local jobOffset = jobOpts['repeat'] and jobOpts['repeat']['offset'] or 0 local offset = schedulerOpts['offset'] or jobOffset or 0 local newOffset = offset local updatedEvery = false if every then -- if we changed the 'every' value we need to reset millis to nil local millis = prevMillis if prevMillis then local prevEvery = tonumber(rcall("HGET", schedulerKey, "every")) if prevEvery ~= every then millis = nil updatedEvery = true end end local startDate = schedulerOpts['startDate'] nextMillis, newOffset = getJobSchedulerEveryNextMillis(millis, every, now, offset, startDate) end local function removeJobFromScheduler(prefixKey, delayedKey, prioritizedKey, waitKey, pausedKey, jobId, metaKey, eventsKey) if rcall("ZSCORE", delayedKey, jobId) then removeJob(jobId, true, prefixKey, true --[[remove debounce key]] ) rcall("ZREM", delayedKey, jobId) return true elseif rcall("ZSCORE", prioritizedKey, jobId) then removeJob(jobId, true, prefixKey, true --[[remove debounce key]] ) rcall("ZREM", prioritizedKey, jobId) return true else local pausedOrWaitKey = waitKey if isQueuePaused(metaKey) then pausedOrWaitKey = pausedKey end if rcall("LREM", pausedOrWaitKey, 1, jobId) > 0 then removeJob(jobId, true, prefixKey, true --[[remove debounce key]] ) return true end end return false end local removedPrevJob = false if prevMillis then local currentJobId = "repeat:" .. jobSchedulerId .. ":" .. prevMillis local currentJobKey = schedulerKey .. ":" .. prevMillis -- In theory it should always exist the currentJobKey if there is a prevMillis unless something has -- gone really wrong. if rcall("EXISTS", currentJobKey) == 1 then removedPrevJob = removeJobFromScheduler(prefixKey, delayedKey, prioritizedKey, waitKey, pausedKey, currentJobId, metaKey, eventsKey) end end if removedPrevJob then -- The jobs has been removed and we want to replace it, so lets use the same millis. if every and not updatedEvery then nextMillis = prevMillis end else -- Special case where no job was removed, and we need to add the next iteration. schedulerOpts['offset'] = newOffset end -- Check for job ID collision with existing jobs (in any state) local jobId = "repeat:" .. jobSchedulerId .. ":" .. nextMillis local jobKey = prefixKey .. jobId -- If there's already a job with this ID, in a state -- that is not updatable (active, completed, failed) we must -- handle the collision local hasCollision = false if rcall("EXISTS", jobKey) == 1 then if every then -- For 'every' case: try next time slot to avoid collision local nextSlotMillis = nextMillis + every local nextSlotJobId = "repeat:" .. jobSchedulerId .. ":" .. nextSlotMillis local nextSlotJobKey = prefixKey .. nextSlotJobId if rcall("EXISTS", nextSlotJobKey) == 0 then -- Next slot is free, use it nextMillis = nextSlotMillis jobId = nextSlotJobId else -- Next slot also has a job, return error code return -11 -- SchedulerJobSlotsBusy end else hasCollision = true end end local delay = nextMillis - now -- Fast Clamp delay to minimum of 0 if delay < 0 then delay = 0 end local nextJobKey = schedulerKey .. ":" .. nextMillis if not hasCollision or removedPrevJob then -- jobId already calculated above during collision check storeJobScheduler(jobSchedulerId, schedulerKey, repeatKey, nextMillis, schedulerOpts, templateData, templateOpts) rcall("INCR", KEYS[8]) addJobFromScheduler(nextJobKey, jobId, jobOpts, waitKey, pausedKey, KEYS[11], metaKey, prioritizedKey, KEYS[10], delayedKey, KEYS[7], eventsKey, schedulerOpts['name'], maxEvents, now, templateData, jobSchedulerId, delay) elseif hasCollision then -- For 'pattern' case: return error code return -10 -- SchedulerJobIdCollision end if ARGV[9] ~= "" then rcall("HSET", ARGV[9], "nrjid", jobId) end return {jobId .. "", delay} `; var addJobScheduler = { name: "addJobScheduler", content: content2, keys: 11 }; // ../../node_modules/bullmq/dist/esm/scripts/addLog-2.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content3 = `--[[ Add job log Input: KEYS[1] job id key KEYS[2] job logs key ARGV[1] id ARGV[2] log ARGV[3] keepLogs Output: -1 - Missing job. ]] local rcall = redis.call if rcall("EXISTS", KEYS[1]) == 1 then -- // Make sure job exists local logCount = rcall("RPUSH", KEYS[2], ARGV[2]) if ARGV[3] ~= '' then local keepLogs = tonumber(ARGV[3]) rcall("LTRIM", KEYS[2], -keepLogs, -1) return math.min(keepLogs, logCount) end return logCount else return -1 end `; var addLog = { name: "addLog", content: content3, keys: 2 }; // ../../node_modules/bullmq/dist/esm/scripts/addParentJob-6.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content4 = `--[[ Adds a parent job to the queue by doing the following: - Increases the job counter if needed. - Creates a new job key with the job data. - adds the job to the waiting-children zset Input: KEYS[1] 'meta' KEYS[2] 'id' KEYS[3] 'delayed' KEYS[4] 'waiting-children' KEYS[5] 'completed' KEYS[6] events stream key ARGV[1] msgpacked arguments array [1] key prefix, [2] custom id (will not generate one automatically) [3] name [4] timestamp [5] parentKey? [6] parent dependencies key. [7] parent? {id, queueKey} [8] repeat job key [9] deduplication key ARGV[2] Json stringified job data ARGV[3] msgpacked options Output: jobId - OK -5 - Missing parent key ]] local metaKey = KEYS[1] local idKey = KEYS[2] local delayedKey = KEYS[3] local completedKey = KEYS[5] local eventsKey = KEYS[6] local jobId local jobIdKey local rcall = redis.call local args = cmsgpack.unpack(ARGV[1]) local data = ARGV[2] local opts = cmsgpack.unpack(ARGV[3]) local parentKey = args[5] local parent = args[7] local repeatJobKey = args[8] local deduplicationKey = args[9] local parentData -- Includes --[[ Function to deduplicate a job. ]] local function deduplicateJobWithoutReplace(deduplicationId, deduplicationOpts, jobId, deduplicationKey, eventsKey, maxEvents) local ttl = deduplicationOpts['ttl'] local deduplicationKeyExists if ttl and ttl > 0 then if deduplicationOpts['extend'] then local currentDebounceJobId = rcall('GET', deduplicationKey) if currentDebounceJobId then rcall('SET', deduplicationKey, currentDebounceJobId, 'PX', ttl) rcall("XADD", eventsKey, "MAXLEN", "~", maxEvents, "*", "event", "debounced", "jobId", currentDebounceJobId, "debounceId", deduplicationId) rcall("XADD", eventsKey, "MAXLEN", "~", maxEvents, "*", "event", "deduplicated", "jobId", currentDebounceJobId, "deduplicationId", deduplicationId, "deduplicatedJobId", jobId) return currentDebounceJobId else rcall('SET', deduplicationKey, jobId, 'PX', ttl) return end else deduplicationKeyExists = not rcall('SET', deduplicationKey, jobId, 'PX', ttl, 'NX') end else deduplicationKeyExists = not rcall('SET', deduplicationKey, jobId, 'NX') end if deduplicationKeyExists then local currentDebounceJobId = rcall('GET', deduplicationKey) -- TODO remove debounced event in next breaking change rcall("XADD", eventsKey, "MAXLEN", "~", maxEvents, "*", "event", "debounced", "jobId", currentDebounceJobId, "debounceId", deduplicationId) rcall("XADD", eventsKey, "MAXLEN", "~", maxEvents, "*", "event", "deduplicated", "jobId", currentDebounceJobId, "deduplicationId", deduplicationId, "deduplicatedJobId", jobId) return currentDebounceJobId end end --[[ Function to get max events value or set by default 10000. ]] local function getOrSetMaxEvents(metaKey) local maxEvents = rcall("HGET", metaKey, "opts.maxLenEvents") if not maxEvents then maxEvents = 10000 rcall("HSET", metaKey, "opts.maxLenEvents", maxEvents) end return maxEvents end --[[ Function to handle the case when job is duplicated. ]] -- Includes --[[ This function is used to update the parent's dependencies if the job is already completed and about to be ignored. The parent must get its dependencies updated to avoid the parent job being stuck forever in the waiting-children state. ]] -- Includes --[[ Validate and move or add dependencies to parent. ]] -- Includes --[[ Validate and move parent to a wait status (waiting, delayed or prioritized) if no pending dependencies. ]] -- Includes --[[ Validate and move parent to a wait status (waiting, delayed or prioritized) if needed. ]] -- Includes --[[ Move parent to a wait status (wait, prioritized or delayed) ]] -- Includes --[[ Add delay marker if needed. ]] -- Includes --[[ Function to return the next delayed job timestamp. ]] local function getNextDelayedTimestamp(delayedKey) local result = rcall("ZRANGE", delayedKey, 0, 0, "WITHSCORES") if #result then local nextTimestamp = tonumber(result[2]) if nextTimestamp ~= nil then return nextTimestamp / 0x1000 end end end local function addDelayMarkerIfNeeded(markerKey, delayedKey) local nextTimestamp = getNextDelayedTimestamp(delayedKey) if nextTimestamp ~= nil then -- Replace the score of the marker with the newest known -- next timestamp. rcall("ZADD", markerKey, nextTimestamp, "1") end end --[[ Function to add job in target list and add marker if needed. ]] -- Includes --[[ Add marker if needed when a job is available. ]] local function addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) if not isPausedOrMaxed then rcall("ZADD", markerKey, 0, "0") end end local function addJobInTargetList(targetKey, markerKey, pushCmd, isPausedOrMaxed, jobId) rcall(pushCmd, targetKey, jobId) addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) end --[[ Function to add job considering priority. ]] -- Includes --[[ Function to get priority score. ]] local function getPriorityScore(priority, priorityCounterKey) local prioCounter = rcall("INCR", priorityCounterKey) return priority * 0x100000000 + prioCounter % 0x100000000 end local function addJobWithPriority(markerKey, prioritizedKey, priority, jobId, priorityCounterKey, isPausedOrMaxed) local score = getPriorityScore(priority, priorityCounterKey) rcall("ZADD", prioritizedKey, score, jobId) addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) end --[[ Function to check if queue is paused or maxed (since an empty list and !EXISTS are not really the same). ]] local function isQueuePausedOrMaxed(queueMetaKey, activeKey) local queueAttributes = rcall("HMGET", queueMetaKey, "paused", "concurrency") if queueAttributes[1] then return true else if queueAttributes[2] then local activeCount = rcall("LLEN", activeKey) return activeCount >= tonumber(queueAttributes[2]) end end return false end --[[ Function to check for the meta.paused key to decide if we are paused or not (since an empty list and !EXISTS are not really the same). ]] local function getTargetQueueList(queueMetaKey, activeKey, waitKey, pausedKey) local queueAttributes = rcall("HMGET", queueMetaKey, "paused", "concurrency", "max", "duration") if queueAttributes[1] then return pausedKey, true, queueAttributes[3], queueAttributes[4] else if queueAttributes[2] then local activeCount = rcall("LLEN", activeKey) if activeCount >= tonumber(queueAttributes[2]) then return waitKey, true, queueAttributes[3], queueAttributes[4] else return waitKey, false, queueAttributes[3], queueAttributes[4] end end end return waitKey, false, queueAttributes[3], queueAttributes[4] end local function moveParentToWait(parentQueueKey, parentKey, parentId, timestamp) local parentWaitKey = parentQueueKey .. ":wait" local parentPausedKey = parentQueueKey .. ":paused" local parentActiveKey = parentQueueKey .. ":active" local parentMetaKey = parentQueueKey .. ":meta" local parentMarkerKey = parentQueueKey .. ":marker" local jobAttributes = rcall("HMGET", parentKey, "priority", "delay") local priority = tonumber(jobAttributes[1]) or 0 local delay = tonumber(jobAttributes[2]) or 0 if delay > 0 then local delayedTimestamp = tonumber(timestamp) + delay local score = delayedTimestamp * 0x1000 local parentDelayedKey = parentQueueKey .. ":delayed" rcall("ZADD", parentDelayedKey, score, parentId) rcall("XADD", parentQueueKey .. ":events", "*", "event", "delayed", "jobId", parentId, "delay", delayedTimestamp) addDelayMarkerIfNeeded(parentMarkerKey, parentDelayedKey) else if priority == 0 then local parentTarget, isParentPausedOrMaxed = getTargetQueueList(parentMetaKey, parentActiveKey, parentWaitKey, parentPausedKey) addJobInTargetList(parentTarget, parentMarkerKey, "RPUSH", isParentPausedOrMaxed, parentId) else local isPausedOrMaxed = isQueuePausedOrMaxed(parentMetaKey, parentActiveKey) addJobWithPriority(parentMarkerKey, parentQueueKey .. ":prioritized", priority, parentId, parentQueueKey .. ":pc", isPausedOrMaxed) end rcall("XADD", parentQueueKey .. ":events", "*", "event", "waiting", "jobId", parentId, "prev", "waiting-children") end end local function moveParentToWaitIfNeeded(parentQueueKey, parentKey, parentId, timestamp) if rcall("EXISTS", parentKey) == 1 then local parentWaitingChildrenKey = parentQueueKey .. ":waiting-children" if rcall("ZSCORE", parentWaitingChildrenKey, parentId) then rcall("ZREM", parentWaitingChildrenKey, parentId) moveParentToWait(parentQueueKey, parentKey, parentId, timestamp) end end end local function moveParentToWaitIfNoPendingDependencies(parentQueueKey, parentDependenciesKey, parentKey, parentId, timestamp) local doNotHavePendingDependencies = rcall("SCARD", parentDependenciesKey) == 0 if doNotHavePendingDependencies then moveParentToWaitIfNeeded(parentQueueKey, parentKey, parentId, timestamp) end end local function updateParentDepsIfNeeded(parentKey, parentQueueKey, parentDependenciesKey, parentId, jobIdKey, returnvalue, timestamp ) local processedSet = parentKey .. ":processed" rcall("HSET", processedSet, jobIdKey, returnvalue) moveParentToWaitIfNoPendingDependencies(parentQueueKey, parentDependenciesKey, parentKey, parentId, timestamp) end local function updateExistingJobsParent(parentKey, parent, parentData, parentDependenciesKey, completedKey, jobIdKey, jobId, timestamp) if parentKey ~= nil then if rcall("ZSCORE", completedKey, jobId) then local returnvalue = rcall("HGET", jobIdKey, "returnvalue") updateParentDepsIfNeeded(parentKey, parent['queueKey'], parentDependenciesKey, parent['id'], jobIdKey, returnvalue, timestamp) else if parentDependenciesKey ~= nil then rcall("SADD", parentDependenciesKey, jobIdKey) end end rcall("HMSET", jobIdKey, "parentKey", parentKey, "parent", parentData) end end local function handleDuplicatedJob(jobKey, jobId, currentParentKey, currentParent, parentData, parentDependenciesKey, completedKey, eventsKey, maxEvents, timestamp) local existedParentKey = rcall("HGET", jobKey, "parentKey") if not existedParentKey or existedParentKey == currentParentKey then updateExistingJobsParent(currentParentKey, currentParent, parentData, parentDependenciesKey, completedKey, jobKey, jobId, timestamp) else if currentParentKey ~= nil and currentParentKey ~= existedParentKey and (rcall("EXISTS", existedParentKey) == 1) then return -7 end end rcall("XADD", eventsKey, "MAXLEN", "~", maxEvents, "*", "event", "duplicated", "jobId", jobId) return jobId .. "" -- convert to string end --[[ Function to store a job ]] local function storeJob(eventsKey, jobIdKey, jobId, name, data, opts, timestamp, parentKey, parentData, repeatJobKey) local jsonOpts = cjson.encode(opts) local delay = opts['delay'] or 0 local priority = opts['priority'] or 0 local debounceId = opts['de'] and opts['de']['id'] local optionalValues = {} if parentKey ~= nil then table.insert(optionalValues, "parentKey") table.insert(optionalValues, parentKey) table.insert(optionalValues, "parent") table.insert(optionalValues, parentData) end if repeatJobKey then table.insert(optionalValues, "rjk") table.insert(optionalValues, repeatJobKey) end if debounceId then table.insert(optionalValues, "deid") table.insert(optionalValues, debounceId) end rcall("HMSET", jobIdKey, "name", name, "data", data, "opts", jsonOpts, "timestamp", timestamp, "delay", delay, "priority", priority, unpack(optionalValues)) rcall("XADD", eventsKey, "*", "event", "added", "jobId", jobId, "name", name) return delay, priority end if parentKey ~= nil then if rcall("EXISTS", parentKey) ~= 1 then return -5 end parentData = cjson.encode(parent) end local jobCounter = rcall("INCR", idKey) local maxEvents = getOrSetMaxEvents(metaKey) local parentDependenciesKey = args[6] local timestamp = args[4] if args[2] == "" then jobId = jobCounter jobIdKey = args[1] .. jobId else jobId = args[2] jobIdKey = args[1] .. jobId if rcall("EXISTS", jobIdKey) == 1 then return handleDuplicatedJob(jobIdKey, jobId, parentKey, parent, parentData, parentDependenciesKey, completedKey, eventsKey, maxEvents, timestamp) end end local deduplicationId = opts['de'] and opts['de']['id'] if deduplicationId then local deduplicationJobId = deduplicateJobWithoutReplace(deduplicationId, opts['de'], jobId, deduplicationKey, eventsKey, maxEvents) if deduplicationJobId then return deduplicationJobId end end -- Store the job. storeJob(eventsKey, jobIdKey, jobId, args[3], ARGV[2], opts, timestamp, parentKey, parentData, repeatJobKey) local waitChildrenKey = KEYS[4] rcall("ZADD", waitChildrenKey, timestamp, jobId) rcall("XADD", eventsKey, "MAXLEN", "~", maxEvents, "*", "event", "waiting-children", "jobId", jobId) -- Check if this job is a child of another job, if so add it to the parents dependencies if parentDependenciesKey ~= nil then rcall("SADD", parentDependenciesKey, jobIdKey) end return jobId .. "" -- convert to string `; var addParentJob = { name: "addParentJob", content: content4, keys: 6 }; // ../../node_modules/bullmq/dist/esm/scripts/addPrioritizedJob-9.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content5 = `--[[ Adds a priotitized job to the queue by doing the following: - Increases the job counter if needed. - Creates a new job key with the job data. - Adds the job to the "added" list so that workers gets notified. Input: KEYS[1] 'marker', KEYS[2] 'meta' KEYS[3] 'id' KEYS[4] 'prioritized' KEYS[5] 'delayed' KEYS[6] 'completed' KEYS[7] 'active' KEYS[8] events stream key KEYS[9] 'pc' priority counter ARGV[1] msgpacked arguments array [1] key prefix, [2] custom id (will not generate one automatically) [3] name [4] timestamp [5] parentKey? [6] parent dependencies key. [7] parent? {id, queueKey} [8] repeat job key [9] deduplication key ARGV[2] Json stringified job data ARGV[3] msgpacked options Output: jobId - OK -5 - Missing parent key ]] local metaKey = KEYS[2] local idKey = KEYS[3] local priorityKey = KEYS[4] local completedKey = KEYS[6] local activeKey = KEYS[7] local eventsKey = KEYS[8] local priorityCounterKey = KEYS[9] local jobId local jobIdKey local rcall = redis.call local args = cmsgpack.unpack(ARGV[1]) local data = ARGV[2] local opts = cmsgpack.unpack(ARGV[3]) local parentKey = args[5] local parent = args[7] local repeatJobKey = args[8] local deduplicationKey = args[9] local parentData -- Includes --[[ Function to add job considering priority. ]] -- Includes --[[ Add marker if needed when a job is available. ]] local function addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) if not isPausedOrMaxed then rcall("ZADD", markerKey, 0, "0") end end --[[ Function to get priority score. ]] local function getPriorityScore(priority, priorityCounterKey) local prioCounter = rcall("INCR", priorityCounterKey) return priority * 0x100000000 + prioCounter % 0x100000000 end local function addJobWithPriority(markerKey, prioritizedKey, priority, jobId, priorityCounterKey, isPausedOrMaxed) local score = getPriorityScore(priority, priorityCounterKey) rcall("ZADD", prioritizedKey, score, jobId) addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) end --[[ Function to debounce a job. ]] -- Includes --[[ Function to deduplicate a job. ]] local function deduplicateJobWithoutReplace(deduplicationId, deduplicationOpts, jobId, deduplicationKey, eventsKey, maxEvents) local ttl = deduplicationOpts['ttl'] local deduplicationKeyExists if ttl and ttl > 0 then if deduplicationOpts['extend'] then local currentDebounceJobId = rcall('GET', deduplicationKey) if currentDebounceJobId then rcall('SET', deduplicationKey, currentDebounceJobId, 'PX', ttl) rcall("XADD", eventsKey, "MAXLEN", "~", maxEvents, "*", "event", "debounced", "jobId", currentDebounceJobId, "debounceId", deduplicationId) rcall("XADD", eventsKey, "MAXLEN", "~", maxEvents, "*", "event", "deduplicated", "jobId", currentDebounceJobId, "deduplicationId", deduplicationId, "deduplicatedJobId", jobId) return currentDebounceJobId else rcall('SET', deduplicationKey, jobId, 'PX', ttl) return end else deduplicationKeyExists = not rcall('SET', deduplicationKey, jobId, 'PX', ttl, 'NX') end else deduplicationKeyExists = not rcall('SET', deduplicationKey, jobId, 'NX') end if deduplicationKeyExists then local currentDebounceJobId = rcall('GET', deduplicationKey) -- TODO remove debounced event in next breaking change rcall("XADD", eventsKey, "MAXLEN", "~", maxEvents, "*", "event", "debounced", "jobId", currentDebounceJobId, "debounceId", deduplicationId) rcall("XADD", eventsKey, "MAXLEN", "~", maxEvents, "*", "event", "deduplicated", "jobId", currentDebounceJobId, "deduplicationId", deduplicationId, "deduplicatedJobId", jobId) return currentDebounceJobId end end --[[ Function to remove job keys. ]] local function removeJobKeys(jobKey) return rcall("DEL", jobKey, jobKey .. ':logs', jobKey .. ':dependencies', jobKey .. ':processed', jobKey .. ':failed', jobKey .. ':unsuccessful') end local function removeDelayedJob(delayedKey, deduplicationKey, eventsKey, maxEvents, currentDeduplicatedJobId, jobId, deduplicationId, prefix) if rcall("ZREM", delayedKey, currentDeduplicatedJobId) > 0 then removeJobKeys(prefix .. currentDeduplicatedJobId) rcall("XADD", eventsKey, "*", "event", "removed", "jobId", currentDeduplicatedJobId, "prev", "delayed") -- TODO remove debounced event in next breaking change rcall("XADD", eventsKey, "MAXLEN", "~", maxEvents, "*", "event", "debounced", "jobId", jobId, "debounceId", deduplicationId) rcall("XADD", eventsKey, "MAXLEN", "~", maxEvents, "*", "event", "deduplicated", "jobId", jobId, "deduplicationId", deduplicationId, "deduplicatedJobId", currentDeduplicatedJobId) return true end return false end local function deduplicateJob(deduplicationOpts, jobId, delayedKey, deduplicationKey, eventsKey, maxEvents, prefix) local deduplicationId = deduplicationOpts and deduplicationOpts['id'] if deduplicationId then if deduplicationOpts['replace'] then local ttl = deduplicationOpts['ttl'] if ttl and ttl > 0 then local currentDebounceJobId = rcall('GET', deduplicationKey) if currentDebounceJobId then local isRemoved = removeDelayedJob(delayedKey, deduplicationKey, eventsKey, maxEvents, currentDebounceJobId, jobId, deduplicationId, prefix) if isRemoved then if deduplicationOpts['extend'] then rcall('SET', deduplicationKey, jobId, 'PX', ttl) else rcall('SET', deduplicationKey, jobId, 'KEEPTTL') end return else return currentDebounceJobId end else rcall('SET', deduplicationKey, jobId, 'PX', ttl) return end else local currentDebounceJobId = rcall('GET', deduplicationKey) if currentDebounceJobId then local isRemoved = removeDelayedJob(delayedKey, deduplicationKey, eventsKey, maxEvents, currentDebounceJobId, jobId, deduplicationId, prefix) if isRemoved then rcall('SET', deduplicationKey, jobId) return else return currentDebounceJobId end else rcall('SET', deduplicationKey, jobId) return end end else return deduplicateJobWithoutReplace(deduplicationId, deduplicationOpts, jobId, deduplicationKey, eventsKey, maxEvents) end end end --[[ Function to store a job ]] local function storeJob(eventsKey, jobIdKey, jobId, name, data, opts, timestamp, parentKey, parentData, repeatJobKey) local jsonOpts = cjson.encode(opts) local delay = opts['delay'] or 0 local priority = opts['priority'] or 0 local debounceId = opts['de'] and opts['de']['id'] local optionalValues = {} if parentKey ~= nil then table.insert(optionalValues, "parentKey") table.insert(optionalValues, parentKey) table.insert(optionalValues, "parent") table.insert(optionalValues, parentData) end if repeatJobKey then table.insert(optionalValues, "rjk") table.insert(optionalValues, repeatJobKey) end if debounceId then table.insert(optionalValues, "deid") table.insert(optionalValues, debounceId) end rcall("HMSET", jobIdKey, "name", name, "data", data, "opts", jsonOpts, "timestamp", timestamp, "delay", delay, "priority", priority, unpack(optionalValues)) rcall("XADD", eventsKey, "*", "event", "added", "jobId", jobId, "name", name) return delay, priority end --[[ Function to get max events value or set by default 10000. ]] local function getOrSetMaxEvents(metaKey) local maxEvents = rcall("HGET", metaKey, "opts.maxLenEvents") if not maxEvents then maxEvents = 10000 rcall("HSET", metaKey, "opts.maxLenEvents", maxEvents) end return maxEvents end --[[ Function to handle the case when job is duplicated. ]] -- Includes --[[ This function is used to update the parent's dependencies if the job is already completed and about to be ignored. The parent must get its dependencies updated to avoid the parent job being stuck forever in the waiting-children state. ]] -- Includes --[[ Validate and move or add dependencies to parent. ]] -- Includes --[[ Validate and move parent to a wait status (waiting, delayed or prioritized) if no pending dependencies. ]] -- Includes --[[ Validate and move parent to a wait status (waiting, delayed or prioritized) if needed. ]] -- Includes --[[ Move parent to a wait status (wait, prioritized or delayed) ]] -- Includes --[[ Add delay marker if needed. ]] -- Includes --[[ Function to return the next delayed job timestamp. ]] local function getNextDelayedTimestamp(delayedKey) local result = rcall("ZRANGE", delayedKey, 0, 0, "WITHSCORES") if #result then local nextTimestamp = tonumber(result[2]) if nextTimestamp ~= nil then return nextTimestamp / 0x1000 end end end local function addDelayMarkerIfNeeded(markerKey, delayedKey) local nextTimestamp = getNextDelayedTimestamp(delayedKey) if nextTimestamp ~= nil then -- Replace the score of the marker with the newest known -- next timestamp. rcall("ZADD", markerKey, nextTimestamp, "1") end end --[[ Function to add job in target list and add marker if needed. ]] -- Includes local function addJobInTargetList(targetKey, markerKey, pushCmd, isPausedOrMaxed, jobId) rcall(pushCmd, targetKey, jobId) addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) end --[[ Function to check if queue is paused or maxed (since an empty list and !EXISTS are not really the same). ]] local function isQueuePausedOrMaxed(queueMetaKey, activeKey) local queueAttributes = rcall("HMGET", queueMetaKey, "paused", "concurrency") if queueAttributes[1] then return true else if queueAttributes[2] then local activeCount = rcall("LLEN", activeKey) return activeCount >= tonumber(queueAttributes[2]) end end return false end --[[ Function to check for the meta.paused key to decide if we are paused or not (since an empty list and !EXISTS are not really the same). ]] local function getTargetQueueList(queueMetaKey, activeKey, waitKey, pausedKey) local queueAttributes = rcall("HMGET", queueMetaKey, "paused", "concurrency", "max", "duration") if queueAttributes[1] then return pausedKey, true, queueAttributes[3], queueAttributes[4] else if queueAttributes[2] then local activeCount = rcall("LLEN", activeKey) if activeCount >= tonumber(queueAttributes[2]) then return waitKey, true, queueAttributes[3], queueAttributes[4] else return waitKey, false, queueAttributes[3], queueAttributes[4] end end end return waitKey, false, queueAttributes[3], queueAttributes[4] end local function moveParentToWait(parentQueueKey, parentKey, parentId, timestamp) local parentWaitKey = parentQueueKey .. ":wait" local parentPausedKey = parentQueueKey .. ":paused" local parentActiveKey = parentQueueKey .. ":active" local parentMetaKey = parentQueueKey .. ":meta" local parentMarkerKey = parentQueueKey .. ":marker" local jobAttributes = rcall("HMGET", parentKey, "priority", "delay") local priority = tonumber(jobAttributes[1]) or 0 local delay = tonumber(jobAttributes[2]) or 0 if delay > 0 then local delayedTimestamp = tonumber(timestamp) + delay local score = delayedTimestamp * 0x1000 local parentDelayedKey = parentQueueKey .. ":delayed" rcall("ZADD", parentDelayedKey, score, parentId) rcall("XADD", parentQueueKey .. ":events", "*", "event", "delayed", "jobId", parentId, "delay", delayedTimestamp) addDelayMarkerIfNeeded(parentMarkerKey, parentDelayedKey) else if priority == 0 then local parentTarget, isParentPausedOrMaxed = getTargetQueueList(parentMetaKey, parentActiveKey, parentWaitKey, parentPausedKey) addJobInTargetList(parentTarget, parentMarkerKey, "RPUSH", isParentPausedOrMaxed, parentId) else local isPausedOrMaxed = isQueuePausedOrMaxed(parentMetaKey, parentActiveKey) addJobWithPriority(parentMarkerKey, parentQueueKey .. ":prioritized", priority, parentId, parentQueueKey .. ":pc", isPausedOrMaxed) end rcall("XADD", parentQueueKey .. ":events", "*", "event", "waiting", "jobId", parentId, "prev", "waiting-children") end end local function moveParentToWaitIfNeeded(parentQueueKey, parentKey, parentId, timestamp) if rcall("EXISTS", parentKey) == 1 then local parentWaitingChildrenKey = parentQueueKey .. ":waiting-children" if rcall("ZSCORE", parentWaitingChildrenKey, parentId) then rcall("ZREM", parentWaitingChildrenKey, parentId) moveParentToWait(parentQueueKey, parentKey, parentId, timestamp) end end end local function moveParentToWaitIfNoPendingDependencies(parentQueueKey, parentDependenciesKey, parentKey, parentId, timestamp) local doNotHavePendingDependencies = rcall("SCARD", parentDependenciesKey) == 0 if doNotHavePendingDependencies then moveParentToWaitIfNeeded(parentQueueKey, parentKey, parentId, timestamp) end end local function updateParentDepsIfNeeded(parentKey, parentQueueKey, parentDependenciesKey, parentId, jobIdKey, returnvalue, timestamp ) local processedSet = parentKey .. ":processed" rcall("HSET", processedSet, jobIdKey, returnvalue) moveParentToWaitIfNoPendingDependencies(parentQueueKey, parentDependenciesKey, parentKey, parentId, timestamp) end local function updateExistingJobsParent(parentKey, parent, parentData, parentDependenciesKey, completedKey, jobIdKey, jobId, timestamp) if parentKey ~= nil then if rcall("ZSCORE", completedKey, jobId) then local returnvalue = rcall("HGET", jobIdKey, "returnvalue") updateParentDepsIfNeeded(parentKey, parent['queueKey'], parentDependenciesKey, parent['id'], jobIdKey, returnvalue, timestamp) else if parentDependenciesKey ~= nil then rcall("SADD", parentDependenciesKey, jobIdKey) end end rcall("HMSET", jobIdKey, "parentKey", parentKey, "parent", parentData) end end local function handleDuplicatedJob(jobKey, jobId, currentParentKey, currentParent, parentData, parentDependenciesKey, completedKey, eventsKey, maxEvents, timestamp) local existedParentKey = rcall("HGET", jobKey, "parentKey") if not existedParentKey or existedParentKey == currentParentKey then updateExistingJobsParent(currentParentKey, currentParent, parentData, parentDependenciesKey, completedKey, jobKey, jobId, timestamp) else if currentParentKey ~= nil and currentParentKey ~= existedParentKey and (rcall("EXISTS", existedParentKey) == 1) then return -7 end end rcall("XADD", eventsKey, "MAXLEN", "~", maxEvents, "*", "event", "duplicated", "jobId", jobId) return jobId .. "" -- convert to string end if parentKey ~= nil then if rcall("EXISTS", parentKey) ~= 1 then return -5 end parentData = cjson.encode(parent) end local jobCounter = rcall("INCR", idKey) local maxEvents = getOrSetMaxEvents(metaKey) local parentDependenciesKey = args[6] local timestamp = args[4] if args[2] == "" then jobId = jobCounter jobIdKey = args[1] .. jobId else jobId = args[2] jobIdKey = args[1] .. jobId if rcall("EXISTS", jobIdKey) == 1 then return handleDuplicatedJob(jobIdKey, jobId, parentKey, parent, parentData, parentDependenciesKey, completedKey, eventsKey, maxEvents, timestamp) end end local deduplicationJobId = deduplicateJob(opts['de'], jobId, KEYS[5], deduplicationKey, eventsKey, maxEvents, args[1]) if deduplicationJobId then return deduplicationJobId end -- Store the job. local delay, priority = storeJob(eventsKey, jobIdKey, jobId, args[3], ARGV[2], opts, timestamp, parentKey, parentData, repeatJobKey) -- Add the job to the prioritized set local isPausedOrMaxed = isQueuePausedOrMaxed(metaKey, activeKey) addJobWithPriority( KEYS[1], priorityKey, priority, jobId, priorityCounterKey, isPausedOrMaxed) -- Emit waiting event rcall("XADD", eventsKey, "MAXLEN", "~", maxEvents, "*", "event", "waiting", "jobId", jobId) -- Check if this job is a child of another job, if so add it to the parents dependencies if parentDependenciesKey ~= nil then rcall("SADD", parentDependenciesKey, jobIdKey) end return jobId .. "" -- convert to string `; var addPrioritizedJob = { name: "addPrioritizedJob", content: content5, keys: 9 }; // ../../node_modules/bullmq/dist/esm/scripts/addRepeatableJob-2.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content6 = `--[[ Adds a repeatable job Input: KEYS[1] 'repeat' key KEYS[2] 'delayed' key ARGV[1] next milliseconds ARGV[2] msgpacked options [1] name [2] tz? [3] pattern? [4] endDate? [5] every? ARGV[3] legacy custom key TODO: remove this logic in next breaking change ARGV[4] custom key ARGV[5] prefix key Output: repeatableKey - OK ]] local rcall = redis.call local repeatKey = KEYS[1] local delayedKey = KEYS[2] local nextMillis = ARGV[1] local legacyCustomKey = ARGV[3] local customKey = ARGV[4] local prefixKey = ARGV[5] -- Includes --[[ Function to remove job. ]] -- Includes --[[ Function to remove deduplication key if needed when a job is being removed. ]] local function removeDeduplicationKeyIfNeededOnRemoval(prefixKey, jobId, deduplicationId) if deduplicationId then local deduplicationKey = prefixKey .. "de:" .. deduplicationId local currentJobId = rcall('GET', deduplicationKey) if currentJobId and currentJobId == jobId then return rcall("DEL", deduplicationKey) end end end --[[ Function to remove job keys. ]] local function removeJobKeys(jobKey) return rcall("DEL", jobKey, jobKey .. ':logs', jobKey .. ':dependencies', jobKey .. ':processed', jobKey .. ':failed', jobKey .. ':unsuccessful') end --[[ Check if this job has a parent. If so we will just remove it from the parent child list, but if it is the last child we should move the parent to "wait/paused" which requires code from "moveToFinished" ]] -- Includes --[[ Function to add job in target list and add marker if needed. ]] -- Includes --[[ Add marker if needed when a job is available. ]] local function addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) if not isPausedOrMaxed then rcall("ZADD", markerKey, 0, "0") end end local function addJobInTargetList(targetKey, markerKey, pushCmd, isPausedOrMaxed, jobId) rcall(pushCmd, targetKey, jobId) addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) end --[[ Functions to destructure job key. Just a bit of warning, these functions may be a bit slow and affect performance significantly. ]] local getJobIdFromKey = function (jobKey) return string.match(jobKey, ".*:(.*)") end local getJobKeyPrefix = function (jobKey, jobId) return string.sub(jobKey, 0, #jobKey - #jobId) end --[[ Function to check for the meta.paused key to decide if we are paused or not (since an empty list and !EXISTS are not really the same). ]] local function getTargetQueueList(queueMetaKey, activeKey, waitKey, pausedKey) local queueAttributes = rcall("HMGET", queueMetaKey, "paused", "concurrency", "max", "duration") if queueAttributes[1] then return pausedKey, true, queueAttributes[3], queueAttributes[4] else if queueAttributes[2] then local activeCount = rcall("LLEN", activeKey) if activeCount >= tonumber(queueAttributes[2]) then return waitKey, true, queueAttributes[3], queueAttributes[4] else return waitKey, false, queueAttributes[3], queueAttributes[4] end end end return waitKey, false, queueAttributes[3], queueAttributes[4] end local function _moveParentToWait(parentPrefix, parentId, emitEvent) local parentTarget, isPausedOrMaxed = getTargetQueueList(parentPrefix .. "meta", parentPrefix .. "active", parentPrefix .. "wait", parentPrefix .. "paused") addJobInTargetList(parentTarget, parentPrefix .. "marker", "RPUSH", isPausedOrMaxed, parentId) if emitEvent then local parentEventStream = parentPrefix .. "events" rcall("XADD", parentEventStream, "*", "event", "waiting", "jobId", parentId, "prev", "waiting-children") end end local function removeParentDependencyKey(jobKey, hard, parentKey, baseKey, debounceId) if parentKey then local parentDependenciesKey = parentKey .. ":dependencies" local result = rcall("SREM", parentDependenciesKey, jobKey) if result > 0 then local pendingDependencies = rcall("SCARD", parentDependenciesKey) if pendingDependencies == 0 then local parentId = getJobIdFromKey(parentKey) local parentPrefix = getJobKeyPrefix(parentKey, parentId) local numRemovedElements = rcall("ZREM", parentPrefix .. "waiting-children", parentId) if numRemovedElements == 1 then if hard then -- remove parent in same queue if parentPrefix == baseKey then removeParentDependencyKey(parentKey, hard, nil, baseKey, nil) removeJobKeys(parentKey) if debounceId then rcall("DEL", parentPrefix .. "de:" .. debounceId) end else _moveParentToWait(parentPrefix, parentId) end else _moveParentToWait(parentPrefix, parentId, true) end end end return true end else local parentAttributes = rcall("HMGET", jobKey, "parentKey", "deid") local missedParentKey = parentAttributes[1] if( (type(missedParentKey) == "string") and missedParentKey ~= "" and (rcall("EXISTS", missedParentKey) == 1)) then local parentDependenciesKey = missedParentKey .. ":dependencies" local result = rcall("SREM", parentDependenciesKey, jobKey) if result > 0 then local pendingDependencies = rcall("SCARD", parentDependenciesKey) if pendingDependencies == 0 then local parentId = getJobIdFromKey(missedParentKey) local parentPrefix = getJobKeyPrefix(missedParentKey, parentId) local numRemovedElements = rcall("ZREM", parentPrefix .. "waiting-children", parentId) if numRemovedElements == 1 then if hard then if parentPrefix == baseKey then removeParentDependencyKey(missedParentKey, hard, nil, baseKey, nil) removeJobKeys(missedParentKey) if parentAttributes[2] then rcall("DEL", parentPrefix .. "de:" .. parentAttributes[2]) end else _moveParentToWait(parentPrefix, parentId) end else _moveParentToWait(parentPrefix, parentId, true) end end end return true end end end return false end local function removeJob(jobId, hard, baseKey, shouldRemoveDeduplicationKey) local jobKey = baseKey .. jobId removeParentDependencyKey(jobKey, hard, nil, baseKey) if shouldRemoveDeduplicationKey then local deduplicationId = rcall("HGET", jobKey, "deid") removeDeduplicationKeyIfNeededOnRemoval(baseKey, jobId, deduplicationId) end removeJobKeys(jobKey) end local function storeRepeatableJob(repeatKey, customKey, nextMillis, rawOpts) rcall("ZADD", repeatKey, nextMillis, customKey) local opts = cmsgpack.unpack(rawOpts) local optionalValues = {} if opts['tz'] then table.insert(optionalValues, "tz") table.insert(optionalValues, opts['tz']) end if opts['pattern'] then table.insert(optionalValues, "pattern") table.insert(optionalValues, opts['pattern']) end if opts['endDate'] then table.insert(optionalValues, "endDate") table.insert(optionalValues, opts['endDate']) end if opts['every'] then table.insert(optionalValues, "every") table.insert(optionalValues, opts['every']) end rcall("HMSET", repeatKey .. ":" .. customKey, "name", opts['name'], unpack(optionalValues)) return customKey end -- If we are overriding a repeatable job we must delete the delayed job for -- the next iteration. local prevMillis = rcall("ZSCORE", repeatKey, customKey) if prevMillis then local delayedJobId = "repeat:" .. customKey .. ":" .. prevMillis local nextDelayedJobId = repeatKey .. ":" .. customKey .. ":" .. nextMillis if rcall("ZSCORE", delayedKey, delayedJobId) and rcall("EXISTS", nextDelayedJobId) ~= 1 then removeJob(delayedJobId, true, prefixKey, true --[[remove debounce key]]) rcall("ZREM", delayedKey, delayedJobId) end end -- Keep backwards compatibility with old repeatable jobs (<= 3.0.0) if rcall("ZSCORE", repeatKey, legacyCustomKey) ~= false then return storeRepeatableJob(repeatKey, legacyCustomKey, nextMillis, ARGV[2]) end return storeRepeatableJob(repeatKey, customKey, nextMillis, ARGV[2]) `; var addRepeatableJob = { name: "addRepeatableJob", content: content6, keys: 2 }; // ../../node_modules/bullmq/dist/esm/scripts/addStandardJob-9.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content7 = `--[[ Adds a job to the queue by doing the following: - Increases the job counter if needed. - Creates a new job key with the job data. - if delayed: - computes timestamp. - adds to delayed zset. - Emits a global event 'delayed' if the job is delayed. - if not delayed - Adds the jobId to the wait/paused list in one of three ways: - LIFO - FIFO - prioritized. - Adds the job to the "added" list so that workers gets notified. Input: KEYS[1] 'wait', KEYS[2] 'paused' KEYS[3] 'meta' KEYS[4] 'id' KEYS[5] 'completed' KEYS[6] 'delayed' KEYS[7] 'active' KEYS[8] events stream key KEYS[9] marker key ARGV[1] msgpacked arguments array [1] key prefix, [2] custom id (will not generate one automatically) [3] name [4] timestamp [5] parentKey? [6] parent dependencies key. [7] parent? {id, queueKey} [8] repeat job key [9] deduplication key ARGV[2] Json stringified job data ARGV[3] msgpacked options Output: jobId - OK -5 - Missing parent key ]] local eventsKey = KEYS[8] local jobId local jobIdKey local rcall = redis.call local args = cmsgpack.unpack(ARGV[1]) local data = ARGV[2] local opts = cmsgpack.unpack(ARGV[3]) local parentKey = args[5] local parent = args[7] local repeatJobKey = args[8] local deduplicationKey = args[9] local parentData -- Includes --[[ Function to add job in target list and add marker if needed. ]] -- Includes --[[ Add marker if needed when a job is available. ]] local function addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) if not isPausedOrMaxed then rcall("ZADD", markerKey, 0, "0") end end local function addJobInTargetList(targetKey, markerKey, pushCmd, isPausedOrMaxed, jobId) rcall(pushCmd, targetKey, jobId) addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) end --[[ Function to debounce a job. ]] -- Includes --[[ Function to deduplicate a job. ]] local function deduplicateJobWithoutReplace(deduplicationId, deduplicationOpts, jobId, deduplicationKey, eventsKey, maxEvents) local ttl = deduplicationOpts['ttl'] local deduplicationKeyExists if ttl and ttl > 0 then if deduplicationOpts['extend'] then local currentDebounceJobId = rcall('GET', deduplicationKey) if currentDebounceJobId then rcall('SET', deduplicationKey, currentDebounceJobId, 'PX', ttl) rcall("XADD", eventsKey, "MAXLEN", "~", maxEvents, "*", "event", "debounced", "jobId", currentDebounceJobId, "debounceId", deduplicationId) rcall("XADD", eventsKey, "MAXLEN", "~", maxEvents, "*", "event", "deduplicated", "jobId", currentDebounceJobId, "deduplicationId", deduplicationId, "deduplicatedJobId", jobId) return currentDebounceJobId else rcall('SET', deduplicationKey, jobId, 'PX', ttl) return end else deduplicationKeyExists = not rcall('SET', deduplicationKey, jobId, 'PX', ttl, 'NX') end else deduplicationKeyExists = not rcall('SET', deduplicationKey, jobId, 'NX') end if deduplicationKeyExists then local currentDebounceJobId = rcall('GET', deduplicationKey) -- TODO remove debounced event in next breaking change rcall("XADD", eventsKey, "MAXLEN", "~", maxEvents, "*", "event", "debounced", "jobId", currentDebounceJobId, "debounceId", deduplicationId) rcall("XADD", eventsKey, "MAXLEN", "~", maxEvents, "*", "event", "deduplicated", "jobId", currentDebounceJobId, "deduplicationId", deduplicationId, "deduplicatedJobId", jobId) return currentDebounceJobId end end --[[ Function to remove job keys. ]] local function removeJobKeys(jobKey) return rcall("DEL", jobKey, jobKey .. ':logs', jobKey .. ':dependencies', jobKey .. ':processed', jobKey .. ':failed', jobKey .. ':unsuccessful') end local function removeDelayedJob(delayedKey, deduplicationKey, eventsKey, maxEvents, currentDeduplicatedJobId, jobId, deduplicationId, prefix) if rcall("ZREM", delayedKey, currentDeduplicatedJobId) > 0 then removeJobKeys(prefix .. currentDeduplicatedJobId) rcall("XADD", eventsKey, "*", "event", "removed", "jobId", currentDeduplicatedJobId, "prev", "delayed") -- TODO remove debounced event in next breaking change rcall("XADD", eventsKey, "MAXLEN", "~", maxEvents, "*", "event", "debounced", "jobId", jobId, "debounceId", deduplicationId) rcall("XADD", eventsKey, "MAXLEN", "~", maxEvents, "*", "event", "deduplicated", "jobId", jobId, "deduplicationId", deduplicationId, "deduplicatedJobId", currentDeduplicatedJobId) return true end return false end local function deduplicateJob(deduplicationOpts, jobId, delayedKey, deduplicationKey, eventsKey, maxEvents, prefix) local deduplicationId = deduplicationOpts and deduplicationOpts['id'] if deduplicationId then if deduplicationOpts['replace'] then local ttl = deduplicationOpts['ttl'] if ttl and ttl > 0 then local currentDebounceJobId = rcall('GET', deduplicationKey) if currentDebounceJobId then local isRemoved = removeDelayedJob(delayedKey, deduplicationKey, eventsKey, maxEvents, currentDebounceJobId, jobId, deduplicationId, prefix) if isRemoved then if deduplicationOpts['extend'] then rcall('SET', deduplicationKey, jobId, 'PX', ttl) else rcall('SET', deduplicationKey, jobId, 'KEEPTTL') end return else return currentDebounceJobId end else rcall('SET', deduplicationKey, jobId, 'PX', ttl) return end else local currentDebounceJobId = rcall('GET', deduplicationKey) if currentDebounceJobId then local isRemoved = removeDelayedJob(delayedKey, deduplicationKey, eventsKey, maxEvents, currentDebounceJobId, jobId, deduplicationId, prefix) if isRemoved then rcall('SET', deduplicationKey, jobId) return else return currentDebounceJobId end else rcall('SET', deduplicationKey, jobId) return end end else return deduplicateJobWithoutReplace(deduplicationId, deduplicationOpts, jobId, deduplicationKey, eventsKey, maxEvents) end end end --[[ Function to get max events value or set by default 10000. ]] local function getOrSetMaxEvents(metaKey) local maxEvents = rcall("HGET", metaKey, "opts.maxLenEvents") if not maxEvents then maxEvents = 10000 rcall("HSET", metaKey, "opts.maxLenEvents", maxEvents) end return maxEvents end --[[ Function to check for the meta.paused key to decide if we are paused or not (since an empty list and !EXISTS are not really the same). ]] local function getTargetQueueList(queueMetaKey, activeKey, waitKey, pausedKey) local queueAttributes = rcall("HMGET", queueMetaKey, "paused", "concurrency", "max", "duration") if queueAttributes[1] then return pausedKey, true, queueAttributes[3], queueAttributes[4] else if queueAttributes[2] then local activeCount = rcall("LLEN", activeKey) if activeCount >= tonumber(queueAttributes[2]) then return waitKey, true, queueAttributes[3], queueAttributes[4] else return waitKey, false, queueAttributes[3], queueAttributes[4] end end end return waitKey, false, queueAttributes[3], queueAttributes[4] end --[[ Function to handle the case when job is duplicated. ]] -- Includes --[[ This function is used to update the parent's dependencies if the job is already completed and about to be ignored. The parent must get its dependencies updated to avoid the parent job being stuck forever in the waiting-children state. ]] -- Includes --[[ Validate and move or add dependencies to parent. ]] -- Includes --[[ Validate and move parent to a wait status (waiting, delayed or prioritized) if no pending dependencies. ]] -- Includes --[[ Validate and move parent to a wait status (waiting, delayed or prioritized) if needed. ]] -- Includes --[[ Move parent to a wait status (wait, prioritized or delayed) ]] -- Includes --[[ Add delay marker if needed. ]] -- Includes --[[ Function to return the next delayed job timestamp. ]] local function getNextDelayedTimestamp(delayedKey) local result = rcall("ZRANGE", delayedKey, 0, 0, "WITHSCORES") if #result then local nextTimestamp = tonumber(result[2]) if nextTimestamp ~= nil then return nextTimestamp / 0x1000 end end end local function addDelayMarkerIfNeeded(markerKey, delayedKey) local nextTimestamp = getNextDelayedTimestamp(delayedKey) if nextTimestamp ~= nil then -- Replace the score of the marker with the newest known -- next timestamp. rcall("ZADD", markerKey, nextTimestamp, "1") end end --[[ Function to add job considering priority. ]] -- Includes --[[ Function to get priority score. ]] local function getPriorityScore(priority, priorityCounterKey) local prioCounter = rcall("INCR", priorityCounterKey) return priority * 0x100000000 + prioCounter % 0x100000000 end local function addJobWithPriority(markerKey, prioritizedKey, priority, jobId, priorityCounterKey, isPausedOrMaxed) local score = getPriorityScore(priority, priorityCounterKey) rcall("ZADD", prioritizedKey, score, jobId) addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) end --[[ Function to check if queue is paused or maxed (since an empty list and !EXISTS are not really the same). ]] local function isQueuePausedOrMaxed(queueMetaKey, activeKey) local queueAttributes = rcall("HMGET", queueMetaKey, "paused", "concurrency") if queueAttributes[1] then return true else if queueAttributes[2] then local activeCount = rcall("LLEN", activeKey) return activeCount >= tonumber(queueAttributes[2]) end end return false end local function moveParentToWait(parentQueueKey, parentKey, parentId, timestamp) local parentWaitKey = parentQueueKey .. ":wait" local parentPausedKey = parentQueueKey .. ":paused" local parentActiveKey = parentQueueKey .. ":active" local parentMetaKey = parentQueueKey .. ":meta" local parentMarkerKey = parentQueueKey .. ":marker" local jobAttributes = rcall("HMGET", parentKey, "priority", "delay") local priority = tonumber(jobAttributes[1]) or 0 local delay = tonumber(jobAttributes[2]) or 0 if delay > 0 then local delayedTimestamp = tonumber(timestamp) + delay local score = delayedTimestamp * 0x1000 local parentDelayedKey = parentQueueKey .. ":delayed" rcall("ZADD", parentDelayedKey, score, parentId) rcall("XADD", parentQueueKey .. ":events", "*", "event", "delayed", "jobId", parentId, "delay", delayedTimestamp) addDelayMarkerIfNeeded(parentMarkerKey, parentDelayedKey) else if priority == 0 then local parentTarget, isParentPausedOrMaxed = getTargetQueueList(parentMetaKey, parentActiveKey, parentWaitKey, parentPausedKey) addJobInTargetList(parentTarget, parentMarkerKey, "RPUSH", isParentPausedOrMaxed, parentId) else local isPausedOrMaxed = isQueuePausedOrMaxed(parentMetaKey, parentActiveKey) addJobWithPriority(parentMarkerKey, parentQueueKey .. ":prioritized", priority, parentId, parentQueueKey .. ":pc", isPausedOrMaxed) end rcall("XADD", parentQueueKey .. ":events", "*", "event", "waiting", "jobId", parentId, "prev", "waiting-children") end end local function moveParentToWaitIfNeeded(parentQueueKey, parentKey, parentId, timestamp) if rcall("EXISTS", parentKey) == 1 then local parentWaitingChildrenKey = parentQueueKey .. ":waiting-children" if rcall("ZSCORE", parentWaitingChildrenKey, parentId) then rcall("ZREM", parentWaitingChildrenKey, parentId) moveParentToWait(parentQueueKey, parentKey, parentId, timestamp) end end end local function moveParentToWaitIfNoPendingDependencies(parentQueueKey, parentDependenciesKey, parentKey, parentId, timestamp) local doNotHavePendingDependencies = rcall("SCARD", parentDependenciesKey) == 0 if doNotHavePendingDependencies then moveParentToWaitIfNeeded(parentQueueKey, parentKey, parentId, timestamp) end end local function updateParentDepsIfNeeded(parentKey, parentQueueKey, parentDependenciesKey, parentId, jobIdKey, returnvalue, timestamp ) local processedSet = parentKey .. ":processed" rcall("HSET", processedSet, jobIdKey, returnvalue) moveParentToWaitIfNoPendingDependencies(parentQueueKey, parentDependenciesKey, parentKey, parentId, timestamp) end local function updateExistingJobsParent(parentKey, parent, parentData, parentDependenciesKey, completedKey, jobIdKey, jobId, timestamp) if parentKey ~= nil then if rcall("ZSCORE", completedKey, jobId) then local returnvalue = rcall("HGET", jobIdKey, "returnvalue") updateParentDepsIfNeeded(parentKey, parent['queueKey'], parentDependenciesKey, parent['id'], jobIdKey, returnvalue, timestamp) else if parentDependenciesKey ~= nil then rcall("SADD", parentDependenciesKey, jobIdKey) end end rcall("HMSET", jobIdKey, "parentKey", parentKey, "parent", parentData) end end local function handleDuplicatedJob(jobKey, jobId, currentParentKey, currentParent, parentData, parentDependenciesKey, completedKey, eventsKey, maxEvents, timestamp) local existedParentKey = rcall("HGET", jobKey, "parentKey") if not existedParentKey or existedParentKey == currentParentKey then updateExistingJobsParent(currentParentKey, currentParent, parentData, parentDependenciesKey, completedKey, jobKey, jobId, timestamp) else if currentParentKey ~= nil and currentParentKey ~= existedParentKey and (rcall("EXISTS", existedParentKey) == 1) then return -7 end end rcall("XADD", eventsKey, "MAXLEN", "~", maxEvents, "*", "event", "duplicated", "jobId", jobId) return jobId .. "" -- convert to string end --[[ Function to store a job ]] local function storeJob(eventsKey, jobIdKey, jobId, name, data, opts, timestamp, parentKey, parentData, repeatJobKey) local jsonOpts = cjson.encode(opts) local delay = opts['delay'] or 0 local priority = opts['priority'] or 0 local debounceId = opts['de'] and opts['de']['id'] local optionalValues = {} if parentKey ~= nil then table.insert(optionalValues, "parentKey") table.insert(optionalValues, parentKey) table.insert(optionalValues, "parent") table.insert(optionalValues, parentData) end if repeatJobKey then table.insert(optionalValues, "rjk") table.insert(optionalValues, repeatJobKey) end if debounceId then table.insert(optionalValues, "deid") table.insert(optionalValues, debounceId) end rcall("HMSET", jobIdKey, "name", name, "data", data, "opts", jsonOpts, "timestamp", timestamp, "delay", delay, "priority", priority, unpack(optionalValues)) rcall("XADD", eventsKey, "*", "event", "added", "jobId", jobId, "name", name) return delay, priority end if parentKey ~= nil then if rcall("EXISTS", parentKey) ~= 1 then return -5 end parentData = cjson.encode(parent) end local jobCounter = rcall("INCR", KEYS[4]) local metaKey = KEYS[3] local maxEvents = getOrSetMaxEvents(metaKey) local parentDependenciesKey = args[6] local timestamp = args[4] if args[2] == "" then jobId = jobCounter jobIdKey = args[1] .. jobId else jobId = args[2] jobIdKey = args[1] .. jobId if rcall("EXISTS", jobIdKey) == 1 then return handleDuplicatedJob(jobIdKey, jobId, parentKey, parent, parentData, parentDependenciesKey, KEYS[5], eventsKey, maxEvents, timestamp) end end local deduplicationJobId = deduplicateJob(opts['de'], jobId, KEYS[6], deduplicationKey, eventsKey, maxEvents, args[1]) if deduplicationJobId then return deduplicationJobId end -- Store the job. storeJob(eventsKey, jobIdKey, jobId, args[3], ARGV[2], opts, timestamp, parentKey, parentData, repeatJobKey) local target, isPausedOrMaxed = getTargetQueueList(metaKey, KEYS[7], KEYS[1], KEYS[2]) -- LIFO or FIFO local pushCmd = opts['lifo'] and 'RPUSH' or 'LPUSH' addJobInTargetList(target, KEYS[9], pushCmd, isPausedOrMaxed, jobId) -- Emit waiting event rcall("XADD", eventsKey, "MAXLEN", "~", maxEvents, "*", "event", "waiting", "jobId", jobId) -- Check if this job is a child of another job, if so add it to the parents dependencies if parentDependenciesKey ~= nil then rcall("SADD", parentDependenciesKey, jobIdKey) end return jobId .. "" -- convert to string `; var addStandardJob = { name: "addStandardJob", content: content7, keys: 9 }; // ../../node_modules/bullmq/dist/esm/scripts/changeDelay-4.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content8 = `--[[ Change job delay when it is in delayed set. Input: KEYS[1] delayed key KEYS[2] meta key KEYS[3] marker key KEYS[4] events stream ARGV[1] delay ARGV[2] timestamp ARGV[3] the id of the job ARGV[4] job key Output: 0 - OK -1 - Missing job. -3 - Job not in delayed set. Events: - delayed key. ]] local rcall = redis.call -- Includes --[[ Add delay marker if needed. ]] -- Includes --[[ Function to return the next delayed job timestamp. ]] local function getNextDelayedTimestamp(delayedKey) local result = rcall("ZRANGE", delayedKey, 0, 0, "WITHSCORES") if #result then local nextTimestamp = tonumber(result[2]) if nextTimestamp ~= nil then return nextTimestamp / 0x1000 end end end local function addDelayMarkerIfNeeded(markerKey, delayedKey) local nextTimestamp = getNextDelayedTimestamp(delayedKey) if nextTimestamp ~= nil then -- Replace the score of the marker with the newest known -- next timestamp. rcall("ZADD", markerKey, nextTimestamp, "1") end end --[[ Bake in the job id first 12 bits into the timestamp to guarantee correct execution order of delayed jobs (up to 4096 jobs per given timestamp or 4096 jobs apart per timestamp) WARNING: Jobs that are so far apart that they wrap around will cause FIFO to fail ]] local function getDelayedScore(delayedKey, timestamp, delay) local delayedTimestamp = (delay > 0 and (tonumber(timestamp) + delay)) or tonumber(timestamp) local minScore = delayedTimestamp * 0x1000 local maxScore = (delayedTimestamp + 1 ) * 0x1000 - 1 local result = rcall("ZREVRANGEBYSCORE", delayedKey, maxScore, minScore, "WITHSCORES","LIMIT", 0, 1) if #result then local currentMaxScore = tonumber(result[2]) if currentMaxScore ~= nil then if currentMaxScore >= maxScore then return maxScore, delayedTimestamp else return currentMaxScore + 1, delayedTimestamp end end end return minScore, delayedTimestamp end --[[ Function to get max events value or set by default 10000. ]] local function getOrSetMaxEvents(metaKey) local maxEvents = rcall("HGET", metaKey, "opts.maxLenEvents") if not maxEvents then maxEvents = 10000 rcall("HSET", metaKey, "opts.maxLenEvents", maxEvents) end return maxEvents end if rcall("EXISTS", ARGV[4]) == 1 then local jobId = ARGV[3] local delay = tonumber(ARGV[1]) local score, delayedTimestamp = getDelayedScore(KEYS[1], ARGV[2], delay) local numRemovedElements = rcall("ZREM", KEYS[1], jobId) if numRemovedElements < 1 then return -3 end rcall("HSET", ARGV[4], "delay", delay) rcall("ZADD", KEYS[1], score, jobId) local maxEvents = getOrSetMaxEvents(KEYS[2]) rcall("XADD", KEYS[4], "MAXLEN", "~", maxEvents, "*", "event", "delayed", "jobId", jobId, "delay", delayedTimestamp) -- mark that a delayed job is available addDelayMarkerIfNeeded(KEYS[3], KEYS[1]) return 0 else return -1 end`; var changeDelay = { name: "changeDelay", content: content8, keys: 4 }; // ../../node_modules/bullmq/dist/esm/scripts/changePriority-7.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content9 = `--[[ Change job priority Input: KEYS[1] 'wait', KEYS[2] 'paused' KEYS[3] 'meta' KEYS[4] 'prioritized' KEYS[5] 'active' KEYS[6] 'pc' priority counter KEYS[7] 'marker' ARGV[1] priority value ARGV[2] prefix key ARGV[3] job id ARGV[4] lifo Output: 0 - OK -1 - Missing job ]] local jobId = ARGV[3] local jobKey = ARGV[2] .. jobId local priority = tonumber(ARGV[1]) local rcall = redis.call -- Includes --[[ Function to add job in target list and add marker if needed. ]] -- Includes --[[ Add marker if needed when a job is available. ]] local function addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) if not isPausedOrMaxed then rcall("ZADD", markerKey, 0, "0") end end local function addJobInTargetList(targetKey, markerKey, pushCmd, isPausedOrMaxed, jobId) rcall(pushCmd, targetKey, jobId) addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) end --[[ Function to add job considering priority. ]] -- Includes --[[ Function to get priority score. ]] local function getPriorityScore(priority, priorityCounterKey) local prioCounter = rcall("INCR", priorityCounterKey) return priority * 0x100000000 + prioCounter % 0x100000000 end local function addJobWithPriority(markerKey, prioritizedKey, priority, jobId, priorityCounterKey, isPausedOrMaxed) local score = getPriorityScore(priority, priorityCounterKey) rcall("ZADD", prioritizedKey, score, jobId) addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) end --[[ Function to check for the meta.paused key to decide if we are paused or not (since an empty list and !EXISTS are not really the same). ]] local function getTargetQueueList(queueMetaKey, activeKey, waitKey, pausedKey) local queueAttributes = rcall("HMGET", queueMetaKey, "paused", "concurrency", "max", "duration") if queueAttributes[1] then return pausedKey, true, queueAttributes[3], queueAttributes[4] else if queueAttributes[2] then local activeCount = rcall("LLEN", activeKey) if activeCount >= tonumber(queueAttributes[2]) then return waitKey, true, queueAttributes[3], queueAttributes[4] else return waitKey, false, queueAttributes[3], queueAttributes[4] end end end return waitKey, false, queueAttributes[3], queueAttributes[4] end --[[ Function to push back job considering priority in front of same prioritized jobs. ]] local function pushBackJobWithPriority(prioritizedKey, priority, jobId) -- in order to put it at front of same prioritized jobs -- we consider prioritized counter as 0 local score = priority * 0x100000000 rcall("ZADD", prioritizedKey, score, jobId) end local function reAddJobWithNewPriority( prioritizedKey, markerKey, targetKey, priorityCounter, lifo, priority, jobId, isPausedOrMaxed) if priority == 0 then local pushCmd = lifo and 'RPUSH' or 'LPUSH' addJobInTargetList(targetKey, markerKey, pushCmd, isPausedOrMaxed, jobId) else if lifo then pushBackJobWithPriority(prioritizedKey, priority, jobId) else addJobWithPriority(markerKey, prioritizedKey, priority, jobId, priorityCounter, isPausedOrMaxed) end end end if rcall("EXISTS", jobKey) == 1 then local metaKey = KEYS[3] local target, isPausedOrMaxed = getTargetQueueList(metaKey, KEYS[5], KEYS[1], KEYS[2]) local prioritizedKey = KEYS[4] local priorityCounterKey = KEYS[6] local markerKey = KEYS[7] -- Re-add with the new priority if rcall("ZREM", prioritizedKey, jobId) > 0 then reAddJobWithNewPriority( prioritizedKey, markerKey, target, priorityCounterKey, ARGV[4] == '1', priority, jobId, isPausedOrMaxed) elseif rcall("LREM", target, -1, jobId) > 0 then reAddJobWithNewPriority( prioritizedKey, markerKey, target, priorityCounterKey, ARGV[4] == '1', priority, jobId, isPausedOrMaxed) end rcall("HSET", jobKey, "priority", priority) return 0 else return -1 end `; var changePriority = { name: "changePriority", content: content9, keys: 7 }; // ../../node_modules/bullmq/dist/esm/scripts/cleanJobsInSet-3.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content10 = `--[[ Remove jobs from the specific set. Input: KEYS[1] set key, KEYS[2] events stream key KEYS[3] repeat key ARGV[1] jobKey prefix ARGV[2] timestamp ARGV[3] limit the number of jobs to be removed. 0 is unlimited ARGV[4] set name, can be any of 'wait', 'active', 'paused', 'delayed', 'completed', or 'failed' ]] local rcall = redis.call local repeatKey = KEYS[3] local rangeStart = 0 local rangeEnd = -1 local limit = tonumber(ARGV[3]) -- If we're only deleting _n_ items, avoid retrieving all items -- for faster performance -- -- Start from the tail of the list, since that's where oldest elements -- are generally added for FIFO lists if limit > 0 then rangeStart = -1 - limit + 1 rangeEnd = -1 end -- Includes --[[ Function to clean job list. Returns jobIds and deleted count number. ]] -- Includes --[[ Function to get the latest saved timestamp. ]] local function getTimestamp(jobKey, attributes) if #attributes == 1 then return rcall("HGET", jobKey, attributes[1]) end local jobTs for _, ts in ipairs(rcall("HMGET", jobKey, unpack(attributes))) do if (ts) then jobTs = ts break end end return jobTs end --[[ Function to check if the job belongs to a job scheduler and current delayed job matches with jobId ]] local function isJobSchedulerJob(jobId, jobKey, jobSchedulersKey) local repeatJobKey = rcall("HGET", jobKey, "rjk") if repeatJobKey then local prevMillis = rcall("ZSCORE", jobSchedulersKey, repeatJobKey) if prevMillis then local currentDelayedJobId = "repeat:" .. repeatJobKey .. ":" .. prevMillis return jobId == currentDelayedJobId end end return false end --[[ Function to remove job. ]] -- Includes --[[ Function to remove deduplication key if needed when a job is being removed. ]] local function removeDeduplicationKeyIfNeededOnRemoval(prefixKey, jobId, deduplicationId) if deduplicationId then local deduplicationKey = prefixKey .. "de:" .. deduplicationId local currentJobId = rcall('GET', deduplicationKey) if currentJobId and currentJobId == jobId then return rcall("DEL", deduplicationKey) end end end --[[ Function to remove job keys. ]] local function removeJobKeys(jobKey) return rcall("DEL", jobKey, jobKey .. ':logs', jobKey .. ':dependencies', jobKey .. ':processed', jobKey .. ':failed', jobKey .. ':unsuccessful') end --[[ Check if this job has a parent. If so we will just remove it from the parent child list, but if it is the last child we should move the parent to "wait/paused" which requires code from "moveToFinished" ]] -- Includes --[[ Function to add job in target list and add marker if needed. ]] -- Includes --[[ Add marker if needed when a job is available. ]] local function addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) if not isPausedOrMaxed then rcall("ZADD", markerKey, 0, "0") end end local function addJobInTargetList(targetKey, markerKey, pushCmd, isPausedOrMaxed, jobId) rcall(pushCmd, targetKey, jobId) addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) end --[[ Functions to destructure job key. Just a bit of warning, these functions may be a bit slow and affect performance significantly. ]] local getJobIdFromKey = function (jobKey) return string.match(jobKey, ".*:(.*)") end local getJobKeyPrefix = function (jobKey, jobId) return string.sub(jobKey, 0, #jobKey - #jobId) end --[[ Function to check for the meta.paused key to decide if we are paused or not (since an empty list and !EXISTS are not really the same). ]] local function getTargetQueueList(queueMetaKey, activeKey, waitKey, pausedKey) local queueAttributes = rcall("HMGET", queueMetaKey, "paused", "concurrency", "max", "duration") if queueAttributes[1] then return pausedKey, true, queueAttributes[3], queueAttributes[4] else if queueAttributes[2] then local activeCount = rcall("LLEN", activeKey) if activeCount >= tonumber(queueAttributes[2]) then return waitKey, true, queueAttributes[3], queueAttributes[4] else return waitKey, false, queueAttributes[3], queueAttributes[4] end end end return waitKey, false, queueAttributes[3], queueAttributes[4] end local function _moveParentToWait(parentPrefix, parentId, emitEvent) local parentTarget, isPausedOrMaxed = getTargetQueueList(parentPrefix .. "meta", parentPrefix .. "active", parentPrefix .. "wait", parentPrefix .. "paused") addJobInTargetList(parentTarget, parentPrefix .. "marker", "RPUSH", isPausedOrMaxed, parentId) if emitEvent then local parentEventStream = parentPrefix .. "events" rcall("XADD", parentEventStream, "*", "event", "waiting", "jobId", parentId, "prev", "waiting-children") end end local function removeParentDependencyKey(jobKey, hard, parentKey, baseKey, debounceId) if parentKey then local parentDependenciesKey = parentKey .. ":dependencies" local result = rcall("SREM", parentDependenciesKey, jobKey) if result > 0 then local pendingDependencies = rcall("SCARD", parentDependenciesKey) if pendingDependencies == 0 then local parentId = getJobIdFromKey(parentKey) local parentPrefix = getJobKeyPrefix(parentKey, parentId) local numRemovedElements = rcall("ZREM", parentPrefix .. "waiting-children", parentId) if numRemovedElements == 1 then if hard then -- remove parent in same queue if parentPrefix == baseKey then removeParentDependencyKey(parentKey, hard, nil, baseKey, nil) removeJobKeys(parentKey) if debounceId then rcall("DEL", parentPrefix .. "de:" .. debounceId) end else _moveParentToWait(parentPrefix, parentId) end else _moveParentToWait(parentPrefix, parentId, true) end end end return true end else local parentAttributes = rcall("HMGET", jobKey, "parentKey", "deid") local missedParentKey = parentAttributes[1] if( (type(missedParentKey) == "string") and missedParentKey ~= "" and (rcall("EXISTS", missedParentKey) == 1)) then local parentDependenciesKey = missedParentKey .. ":dependencies" local result = rcall("SREM", parentDependenciesKey, jobKey) if result > 0 then local pendingDependencies = rcall("SCARD", parentDependenciesKey) if pendingDependencies == 0 then local parentId = getJobIdFromKey(missedParentKey) local parentPrefix = getJobKeyPrefix(missedParentKey, parentId) local numRemovedElements = rcall("ZREM", parentPrefix .. "waiting-children", parentId) if numRemovedElements == 1 then if hard then if parentPrefix == baseKey then removeParentDependencyKey(missedParentKey, hard, nil, baseKey, nil) removeJobKeys(missedParentKey) if parentAttributes[2] then rcall("DEL", parentPrefix .. "de:" .. parentAttributes[2]) end else _moveParentToWait(parentPrefix, parentId) end else _moveParentToWait(parentPrefix, parentId, true) end end end return true end end end return false end local function removeJob(jobId, hard, baseKey, shouldRemoveDeduplicationKey) local jobKey = baseKey .. jobId removeParentDependencyKey(jobKey, hard, nil, baseKey) if shouldRemoveDeduplicationKey then local deduplicationId = rcall("HGET", jobKey, "deid") removeDeduplicationKeyIfNeededOnRemoval(baseKey, jobId, deduplicationId) end removeJobKeys(jobKey) end local function cleanList(listKey, jobKeyPrefix, rangeStart, rangeEnd, timestamp, isWaiting, jobSchedulersKey) local jobs = rcall("LRANGE", listKey, rangeStart, rangeEnd) local deleted = {} local deletedCount = 0 local jobTS local deletionMarker = '' local jobIdsLen = #jobs for i, job in ipairs(jobs) do if limit > 0 and deletedCount >= limit then break end local jobKey = jobKeyPrefix .. job if (isWaiting or rcall("EXISTS", jobKey .. ":lock") == 0) and not isJobSchedulerJob(job, jobKey, jobSchedulersKey) then -- Find the right timestamp of the job to compare to maxTimestamp: -- * finishedOn says when the job was completed, but it isn't set unless the job has actually completed -- * processedOn represents when the job was last attempted, but it doesn't get populated until -- the job is first tried -- * timestamp is the original job submission time -- Fetch all three of these (in that order) and use the first one that is set so that we'll leave jobs -- that have been active within the grace period: jobTS = getTimestamp(jobKey, {"finishedOn", "processedOn", "timestamp"}) if (not jobTS or jobTS <= timestamp) then -- replace the entry with a deletion marker; the actual deletion will -- occur at the end of the script rcall("LSET", listKey, rangeEnd - jobIdsLen + i, deletionMarker) removeJob(job, true, jobKeyPrefix, true --[[remove debounce key]]) deletedCount = deletedCount + 1 table.insert(deleted, job) end end end rcall("LREM", listKey, 0, deletionMarker) return {deleted, deletedCount} end --[[ Function to clean job set. Returns jobIds and deleted count number. ]] -- Includes --[[ Function to loop in batches. Just a bit of warning, some commands as ZREM could receive a maximum of 7000 parameters per call. ]] local function batches(n, batchSize) local i = 0 return function() local from = i * batchSize + 1 i = i + 1 if (from <= n) then local to = math.min(from + batchSize - 1, n) return from, to end end end --[[ We use ZRANGEBYSCORE to make the case where we're deleting a limited number of items in a sorted set only run a single iteration. If we simply used ZRANGE, we may take a long time traversing through jobs that are within the grace period. ]] local function getJobsInZset(zsetKey, rangeEnd, limit) if limit > 0 then return rcall("ZRANGEBYSCORE", zsetKey, 0, rangeEnd, "LIMIT", 0, limit) else return rcall("ZRANGEBYSCORE", zsetKey, 0, rangeEnd) end end local function cleanSet( setKey, jobKeyPrefix, rangeEnd, timestamp, limit, attributes, isFinished, jobSchedulersKey) local jobs = getJobsInZset(setKey, rangeEnd, limit) local deleted = {} local deletedCount = 0 local jobTS for i, job in ipairs(jobs) do if limit > 0 and deletedCount >= limit then break end local jobKey = jobKeyPrefix .. job -- Extract a Job Scheduler Id from jobId ("repeat:job-scheduler-id:millis") -- and check if it is in the scheduled jobs if not (jobSchedulersKey and isJobSchedulerJob(job, jobKey, jobSchedulersKey)) then if isFinished then removeJob(job, true, jobKeyPrefix, true --[[remove debounce key]] ) deletedCount = deletedCount + 1 table.insert(deleted, job) else -- * finishedOn says when the job was completed, but it isn't set unless the job has actually completed jobTS = getTimestamp(jobKey, attributes) if (not jobTS or jobTS <= timestamp) then removeJob(job, true, jobKeyPrefix, true --[[remove debounce key]] ) deletedCount = deletedCount + 1 table.insert(deleted, job) end end end end if (#deleted > 0) then for from, to in batches(#deleted, 7000) do rcall("ZREM", setKey, unpack(deleted, from, to)) end end return {deleted, deletedCount} end local result if ARGV[4] == "active" then result = cleanList(KEYS[1], ARGV[1], rangeStart, rangeEnd, ARGV[2], false --[[ hasFinished ]], repeatKey) elseif ARGV[4] == "delayed" then rangeEnd = "+inf" result = cleanSet(KEYS[1], ARGV[1], rangeEnd, ARGV[2], limit, {"processedOn", "timestamp"}, false --[[ hasFinished ]], repeatKey) elseif ARGV[4] == "prioritized" then rangeEnd = "+inf" result = cleanSet(KEYS[1], ARGV[1], rangeEnd, ARGV[2], limit, {"timestamp"}, false --[[ hasFinished ]], repeatKey) elseif ARGV[4] == "wait" or ARGV[4] == "paused" then result = cleanList(KEYS[1], ARGV[1], rangeStart, rangeEnd, ARGV[2], true --[[ hasFinished ]], repeatKey) else rangeEnd = ARGV[2] -- No need to pass repeat key as in that moment job won't be related to a job scheduler result = cleanSet(KEYS[1], ARGV[1], rangeEnd, ARGV[2], limit, {"finishedOn"}, true --[[ hasFinished ]]) end rcall("XADD", KEYS[2], "*", "event", "cleaned", "count", result[2]) return result[1] `; var cleanJobsInSet = { name: "cleanJobsInSet", content: content10, keys: 3 }; // ../../node_modules/bullmq/dist/esm/scripts/drain-5.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content11 = `--[[ Drains the queue, removes all jobs that are waiting or delayed, but not active, completed or failed Input: KEYS[1] 'wait', KEYS[2] 'paused' KEYS[3] 'delayed' KEYS[4] 'prioritized' KEYS[5] 'jobschedulers' (repeat) ARGV[1] queue key prefix ARGV[2] should clean delayed jobs ]] local rcall = redis.call local queueBaseKey = ARGV[1] --[[ Functions to remove jobs. ]] -- Includes --[[ Function to filter out jobs to ignore from a table. ]] local function filterOutJobsToIgnore(jobs, jobsToIgnore) local filteredJobs = {} for i = 1, #jobs do if not jobsToIgnore[jobs[i]] then table.insert(filteredJobs, jobs[i]) end end return filteredJobs end --[[ Functions to remove jobs. ]] -- Includes --[[ Function to remove job. ]] -- Includes --[[ Function to remove deduplication key if needed when a job is being removed. ]] local function removeDeduplicationKeyIfNeededOnRemoval(prefixKey, jobId, deduplicationId) if deduplicationId then local deduplicationKey = prefixKey .. "de:" .. deduplicationId local currentJobId = rcall('GET', deduplicationKey) if currentJobId and currentJobId == jobId then return rcall("DEL", deduplicationKey) end end end --[[ Function to remove job keys. ]] local function removeJobKeys(jobKey) return rcall("DEL", jobKey, jobKey .. ':logs', jobKey .. ':dependencies', jobKey .. ':processed', jobKey .. ':failed', jobKey .. ':unsuccessful') end --[[ Check if this job has a parent. If so we will just remove it from the parent child list, but if it is the last child we should move the parent to "wait/paused" which requires code from "moveToFinished" ]] -- Includes --[[ Function to add job in target list and add marker if needed. ]] -- Includes --[[ Add marker if needed when a job is available. ]] local function addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) if not isPausedOrMaxed then rcall("ZADD", markerKey, 0, "0") end end local function addJobInTargetList(targetKey, markerKey, pushCmd, isPausedOrMaxed, jobId) rcall(pushCmd, targetKey, jobId) addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) end --[[ Functions to destructure job key. Just a bit of warning, these functions may be a bit slow and affect performance significantly. ]] local getJobIdFromKey = function (jobKey) return string.match(jobKey, ".*:(.*)") end local getJobKeyPrefix = function (jobKey, jobId) return string.sub(jobKey, 0, #jobKey - #jobId) end --[[ Function to check for the meta.paused key to decide if we are paused or not (since an empty list and !EXISTS are not really the same). ]] local function getTargetQueueList(queueMetaKey, activeKey, waitKey, pausedKey) local queueAttributes = rcall("HMGET", queueMetaKey, "paused", "concurrency", "max", "duration") if queueAttributes[1] then return pausedKey, true, queueAttributes[3], queueAttributes[4] else if queueAttributes[2] then local activeCount = rcall("LLEN", activeKey) if activeCount >= tonumber(queueAttributes[2]) then return waitKey, true, queueAttributes[3], queueAttributes[4] else return waitKey, false, queueAttributes[3], queueAttributes[4] end end end return waitKey, false, queueAttributes[3], queueAttributes[4] end local function _moveParentToWait(parentPrefix, parentId, emitEvent) local parentTarget, isPausedOrMaxed = getTargetQueueList(parentPrefix .. "meta", parentPrefix .. "active", parentPrefix .. "wait", parentPrefix .. "paused") addJobInTargetList(parentTarget, parentPrefix .. "marker", "RPUSH", isPausedOrMaxed, parentId) if emitEvent then local parentEventStream = parentPrefix .. "events" rcall("XADD", parentEventStream, "*", "event", "waiting", "jobId", parentId, "prev", "waiting-children") end end local function removeParentDependencyKey(jobKey, hard, parentKey, baseKey, debounceId) if parentKey then local parentDependenciesKey = parentKey .. ":dependencies" local result = rcall("SREM", parentDependenciesKey, jobKey) if result > 0 then local pendingDependencies = rcall("SCARD", parentDependenciesKey) if pendingDependencies == 0 then local parentId = getJobIdFromKey(parentKey) local parentPrefix = getJobKeyPrefix(parentKey, parentId) local numRemovedElements = rcall("ZREM", parentPrefix .. "waiting-children", parentId) if numRemovedElements == 1 then if hard then -- remove parent in same queue if parentPrefix == baseKey then removeParentDependencyKey(parentKey, hard, nil, baseKey, nil) removeJobKeys(parentKey) if debounceId then rcall("DEL", parentPrefix .. "de:" .. debounceId) end else _moveParentToWait(parentPrefix, parentId) end else _moveParentToWait(parentPrefix, parentId, true) end end end return true end else local parentAttributes = rcall("HMGET", jobKey, "parentKey", "deid") local missedParentKey = parentAttributes[1] if( (type(missedParentKey) == "string") and missedParentKey ~= "" and (rcall("EXISTS", missedParentKey) == 1)) then local parentDependenciesKey = missedParentKey .. ":dependencies" local result = rcall("SREM", parentDependenciesKey, jobKey) if result > 0 then local pendingDependencies = rcall("SCARD", parentDependenciesKey) if pendingDependencies == 0 then local parentId = getJobIdFromKey(missedParentKey) local parentPrefix = getJobKeyPrefix(missedParentKey, parentId) local numRemovedElements = rcall("ZREM", parentPrefix .. "waiting-children", parentId) if numRemovedElements == 1 then if hard then if parentPrefix == baseKey then removeParentDependencyKey(missedParentKey, hard, nil, baseKey, nil) removeJobKeys(missedParentKey) if parentAttributes[2] then rcall("DEL", parentPrefix .. "de:" .. parentAttributes[2]) end else _moveParentToWait(parentPrefix, parentId) end else _moveParentToWait(parentPrefix, parentId, true) end end end return true end end end return false end local function removeJob(jobId, hard, baseKey, shouldRemoveDeduplicationKey) local jobKey = baseKey .. jobId removeParentDependencyKey(jobKey, hard, nil, baseKey) if shouldRemoveDeduplicationKey then local deduplicationId = rcall("HGET", jobKey, "deid") removeDeduplicationKeyIfNeededOnRemoval(baseKey, jobId, deduplicationId) end removeJobKeys(jobKey) end local function removeJobs(keys, hard, baseKey, max) for i, key in ipairs(keys) do removeJob(key, hard, baseKey, true --[[remove debounce key]]) end return max - #keys end local function getListItems(keyName, max) return rcall('LRANGE', keyName, 0, max - 1) end local function removeListJobs(keyName, hard, baseKey, max, jobsToIgnore) local jobs = getListItems(keyName, max) if jobsToIgnore then jobs = filterOutJobsToIgnore(jobs, jobsToIgnore) end local count = removeJobs(jobs, hard, baseKey, max) rcall("LTRIM", keyName, #jobs, -1) return count end -- Includes --[[ Function to loop in batches. Just a bit of warning, some commands as ZREM could receive a maximum of 7000 parameters per call. ]] local function batches(n, batchSize) local i = 0 return function() local from = i * batchSize + 1 i = i + 1 if (from <= n) then local to = math.min(from + batchSize - 1, n) return from, to end end end --[[ Function to get ZSet items. ]] local function getZSetItems(keyName, max) return rcall('ZRANGE', keyName, 0, max - 1) end local function removeZSetJobs(keyName, hard, baseKey, max, jobsToIgnore) local jobs = getZSetItems(keyName, max) if jobsToIgnore then jobs = filterOutJobsToIgnore(jobs, jobsToIgnore) end local count = removeJobs(jobs, hard, baseKey, max) if(#jobs > 0) then for from, to in batches(#jobs, 7000) do rcall("ZREM", keyName, unpack(jobs, from, to)) end end return count end -- We must not remove delayed jobs if they are associated to a job scheduler. local scheduledJobs = {} local jobSchedulers = rcall("ZRANGE", KEYS[5], 0, -1, "WITHSCORES") -- For every job scheduler, get the current delayed job id. for i = 1, #jobSchedulers, 2 do local jobSchedulerId = jobSchedulers[i] local jobSchedulerMillis = jobSchedulers[i + 1] local delayedJobId = "repeat:" .. jobSchedulerId .. ":" .. jobSchedulerMillis scheduledJobs[delayedJobId] = true end removeListJobs(KEYS[1], true, queueBaseKey, 0, scheduledJobs) -- wait removeListJobs(KEYS[2], true, queueBaseKey, 0, scheduledJobs) -- paused if ARGV[2] == "1" then removeZSetJobs(KEYS[3], true, queueBaseKey, 0, scheduledJobs) -- delayed end removeZSetJobs(KEYS[4], true, queueBaseKey, 0, scheduledJobs) -- prioritized `; var drain = { name: "drain", content: content11, keys: 5 }; // ../../node_modules/bullmq/dist/esm/scripts/extendLock-2.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content12 = `--[[ Extend lock and removes the job from the stalled set. Input: KEYS[1] 'lock', KEYS[2] 'stalled' ARGV[1] token ARGV[2] lock duration in milliseconds ARGV[3] jobid Output: "1" if lock extented succesfully. ]] local rcall = redis.call if rcall("GET", KEYS[1]) == ARGV[1] then -- if rcall("SET", KEYS[1], ARGV[1], "PX", ARGV[2], "XX") then if rcall("SET", KEYS[1], ARGV[1], "PX", ARGV[2]) then rcall("SREM", KEYS[2], ARGV[3]) return 1 end end return 0 `; var extendLock = { name: "extendLock", content: content12, keys: 2 }; // ../../node_modules/bullmq/dist/esm/scripts/extendLocks-1.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content13 = `--[[ Extend locks for multiple jobs and remove them from the stalled set if successful. Return the list of job IDs for which the operation failed. KEYS[1] = stalled key ARGV[1] = baseKey ARGV[2] = tokens ARGV[3] = jobIds ARGV[4] = lockDuration (ms) Output: An array of failed job IDs. If empty, all succeeded. ]] local rcall = redis.call local stalledKey = KEYS[1] local baseKey = ARGV[1] local tokens = cmsgpack.unpack(ARGV[2]) local jobIds = cmsgpack.unpack(ARGV[3]) local lockDuration = ARGV[4] local jobCount = #jobIds local failedJobs = {} for i = 1, jobCount, 1 do local lockKey = baseKey .. jobIds[i] .. ':lock' local jobId = jobIds[i] local token = tokens[i] local currentToken = rcall("GET", lockKey) if currentToken then if currentToken == token then local setResult = rcall("SET", lockKey, token, "PX", lockDuration) if setResult then rcall("SREM", stalledKey, jobId) else table.insert(failedJobs, jobId) end else table.insert(failedJobs, jobId) end else table.insert(failedJobs, jobId) end end return failedJobs `; var extendLocks = { name: "extendLocks", content: content13, keys: 1 }; // ../../node_modules/bullmq/dist/esm/scripts/getCounts-1.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content14 = `--[[ Get counts per provided states Input: KEYS[1] 'prefix' ARGV[1...] types ]] local rcall = redis.call; local prefix = KEYS[1] local results = {} for i = 1, #ARGV do local stateKey = prefix .. ARGV[i] if ARGV[i] == "wait" or ARGV[i] == "paused" then -- Markers in waitlist DEPRECATED in v5: Remove in v6. local marker = rcall("LINDEX", stateKey, -1) if marker and string.sub(marker, 1, 2) == "0:" then local count = rcall("LLEN", stateKey) if count > 1 then rcall("RPOP", stateKey) results[#results+1] = count-1 else results[#results+1] = 0 end else results[#results+1] = rcall("LLEN", stateKey) end elseif ARGV[i] == "active" then results[#results+1] = rcall("LLEN", stateKey) else results[#results+1] = rcall("ZCARD", stateKey) end end return results `; var getCounts = { name: "getCounts", content: content14, keys: 1 }; // ../../node_modules/bullmq/dist/esm/scripts/getCountsPerPriority-4.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content15 = `--[[ Get counts per provided states Input: KEYS[1] wait key KEYS[2] paused key KEYS[3] meta key KEYS[4] prioritized key ARGV[1...] priorities ]] local rcall = redis.call local results = {} local waitKey = KEYS[1] local pausedKey = KEYS[2] local prioritizedKey = KEYS[4] -- Includes --[[ Function to check for the meta.paused key to decide if we are paused or not (since an empty list and !EXISTS are not really the same). ]] local function isQueuePaused(queueMetaKey) return rcall("HEXISTS", queueMetaKey, "paused") == 1 end for i = 1, #ARGV do local priority = tonumber(ARGV[i]) if priority == 0 then if isQueuePaused(KEYS[3]) then results[#results+1] = rcall("LLEN", pausedKey) else results[#results+1] = rcall("LLEN", waitKey) end else results[#results+1] = rcall("ZCOUNT", prioritizedKey, priority * 0x100000000, (priority + 1) * 0x100000000 - 1) end end return results `; var getCountsPerPriority = { name: "getCountsPerPriority", content: content15, keys: 4 }; // ../../node_modules/bullmq/dist/esm/scripts/getDependencyCounts-4.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content16 = `--[[ Get counts per child states Input: KEYS[1] processed key KEYS[2] unprocessed key KEYS[3] ignored key KEYS[4] failed key ARGV[1...] types ]] local rcall = redis.call; local processedKey = KEYS[1] local unprocessedKey = KEYS[2] local ignoredKey = KEYS[3] local failedKey = KEYS[4] local results = {} for i = 1, #ARGV do if ARGV[i] == "processed" then results[#results+1] = rcall("HLEN", processedKey) elseif ARGV[i] == "unprocessed" then results[#results+1] = rcall("SCARD", unprocessedKey) elseif ARGV[i] == "ignored" then results[#results+1] = rcall("HLEN", ignoredKey) else results[#results+1] = rcall("ZCARD", failedKey) end end return results `; var getDependencyCounts = { name: "getDependencyCounts", content: content16, keys: 4 }; // ../../node_modules/bullmq/dist/esm/scripts/getJobScheduler-1.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content17 = `--[[ Get job scheduler record. Input: KEYS[1] 'repeat' key ARGV[1] id ]] local rcall = redis.call local jobSchedulerKey = KEYS[1] .. ":" .. ARGV[1] local score = rcall("ZSCORE", KEYS[1], ARGV[1]) if score then return {rcall("HGETALL", jobSchedulerKey), score} -- get job data end return {nil, nil} `; var getJobScheduler = { name: "getJobScheduler", content: content17, keys: 1 }; // ../../node_modules/bullmq/dist/esm/scripts/getMetrics-2.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content18 = `--[[ Get metrics Input: KEYS[1] 'metrics' key KEYS[2] 'metrics data' key ARGV[1] start index ARGV[2] end index ]] local rcall = redis.call; local metricsKey = KEYS[1] local dataKey = KEYS[2] local metrics = rcall("HMGET", metricsKey, "count", "prevTS", "prevCount") local data = rcall("LRANGE", dataKey, tonumber(ARGV[1]), tonumber(ARGV[2])) local numPoints = rcall("LLEN", dataKey) return {metrics, data, numPoints} `; var getMetrics = { name: "getMetrics", content: content18, keys: 2 }; // ../../node_modules/bullmq/dist/esm/scripts/getRanges-1.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content19 = `--[[ Get job ids per provided states Input: KEYS[1] 'prefix' ARGV[1] start ARGV[2] end ARGV[3] asc ARGV[4...] types ]] local rcall = redis.call local prefix = KEYS[1] local rangeStart = tonumber(ARGV[1]) local rangeEnd = tonumber(ARGV[2]) local asc = ARGV[3] local results = {} local function getRangeInList(listKey, asc, rangeStart, rangeEnd, results) if asc == "1" then local modifiedRangeStart local modifiedRangeEnd if rangeStart == -1 then modifiedRangeStart = 0 else modifiedRangeStart = -(rangeStart + 1) end if rangeEnd == -1 then modifiedRangeEnd = 0 else modifiedRangeEnd = -(rangeEnd + 1) end results[#results+1] = rcall("LRANGE", listKey, modifiedRangeEnd, modifiedRangeStart) else results[#results+1] = rcall("LRANGE", listKey, rangeStart, rangeEnd) end end for i = 4, #ARGV do local stateKey = prefix .. ARGV[i] if ARGV[i] == "wait" or ARGV[i] == "paused" then -- Markers in waitlist DEPRECATED in v5: Remove in v6. local marker = rcall("LINDEX", stateKey, -1) if marker and string.sub(marker, 1, 2) == "0:" then local count = rcall("LLEN", stateKey) if count > 1 then rcall("RPOP", stateKey) getRangeInList(stateKey, asc, rangeStart, rangeEnd, results) else results[#results+1] = {} end else getRangeInList(stateKey, asc, rangeStart, rangeEnd, results) end elseif ARGV[i] == "active" then getRangeInList(stateKey, asc, rangeStart, rangeEnd, results) else if asc == "1" then results[#results+1] = rcall("ZRANGE", stateKey, rangeStart, rangeEnd) else results[#results+1] = rcall("ZREVRANGE", stateKey, rangeStart, rangeEnd) end end end return results `; var getRanges = { name: "getRanges", content: content19, keys: 1 }; // ../../node_modules/bullmq/dist/esm/scripts/getRateLimitTtl-2.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content20 = `--[[ Get rate limit ttl Input: KEYS[1] 'limiter' KEYS[2] 'meta' ARGV[1] maxJobs ]] local rcall = redis.call -- Includes --[[ Function to get current rate limit ttl. ]] local function getRateLimitTTL(maxJobs, rateLimiterKey) if maxJobs and maxJobs <= tonumber(rcall("GET", rateLimiterKey) or 0) then local pttl = rcall("PTTL", rateLimiterKey) if pttl == 0 then rcall("DEL", rateLimiterKey) end if pttl > 0 then return pttl end end return 0 end local rateLimiterKey = KEYS[1] if ARGV[1] ~= "0" then return getRateLimitTTL(tonumber(ARGV[1]), rateLimiterKey) else local rateLimitMax = rcall("HGET", KEYS[2], "max") if rateLimitMax then return getRateLimitTTL(tonumber(rateLimitMax), rateLimiterKey) end return rcall("PTTL", rateLimiterKey) end `; var getRateLimitTtl = { name: "getRateLimitTtl", content: content20, keys: 2 }; // ../../node_modules/bullmq/dist/esm/scripts/getState-8.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content21 = `--[[ Get a job state Input: KEYS[1] 'completed' key, KEYS[2] 'failed' key KEYS[3] 'delayed' key KEYS[4] 'active' key KEYS[5] 'wait' key KEYS[6] 'paused' key KEYS[7] 'waiting-children' key KEYS[8] 'prioritized' key ARGV[1] job id Output: 'completed' 'failed' 'delayed' 'active' 'prioritized' 'waiting' 'waiting-children' 'unknown' ]] local rcall = redis.call if rcall("ZSCORE", KEYS[1], ARGV[1]) then return "completed" end if rcall("ZSCORE", KEYS[2], ARGV[1]) then return "failed" end if rcall("ZSCORE", KEYS[3], ARGV[1]) then return "delayed" end if rcall("ZSCORE", KEYS[8], ARGV[1]) then return "prioritized" end -- Includes --[[ Functions to check if a item belongs to a list. ]] local function checkItemInList(list, item) for _, v in pairs(list) do if v == item then return 1 end end return nil end local active_items = rcall("LRANGE", KEYS[4] , 0, -1) if checkItemInList(active_items, ARGV[1]) ~= nil then return "active" end local wait_items = rcall("LRANGE", KEYS[5] , 0, -1) if checkItemInList(wait_items, ARGV[1]) ~= nil then return "waiting" end local paused_items = rcall("LRANGE", KEYS[6] , 0, -1) if checkItemInList(paused_items, ARGV[1]) ~= nil then return "waiting" end if rcall("ZSCORE", KEYS[7], ARGV[1]) then return "waiting-children" end return "unknown" `; var getState = { name: "getState", content: content21, keys: 8 }; // ../../node_modules/bullmq/dist/esm/scripts/getStateV2-8.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content22 = `--[[ Get a job state Input: KEYS[1] 'completed' key, KEYS[2] 'failed' key KEYS[3] 'delayed' key KEYS[4] 'active' key KEYS[5] 'wait' key KEYS[6] 'paused' key KEYS[7] 'waiting-children' key KEYS[8] 'prioritized' key ARGV[1] job id Output: 'completed' 'failed' 'delayed' 'active' 'waiting' 'waiting-children' 'unknown' ]] local rcall = redis.call if rcall("ZSCORE", KEYS[1], ARGV[1]) then return "completed" end if rcall("ZSCORE", KEYS[2], ARGV[1]) then return "failed" end if rcall("ZSCORE", KEYS[3], ARGV[1]) then return "delayed" end if rcall("ZSCORE", KEYS[8], ARGV[1]) then return "prioritized" end if rcall("LPOS", KEYS[4] , ARGV[1]) then return "active" end if rcall("LPOS", KEYS[5] , ARGV[1]) then return "waiting" end if rcall("LPOS", KEYS[6] , ARGV[1]) then return "waiting" end if rcall("ZSCORE", KEYS[7] , ARGV[1]) then return "waiting-children" end return "unknown" `; var getStateV2 = { name: "getStateV2", content: content22, keys: 8 }; // ../../node_modules/bullmq/dist/esm/scripts/isFinished-3.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content23 = `--[[ Checks if a job is finished (.i.e. is in the completed or failed set) Input: KEYS[1] completed key KEYS[2] failed key KEYS[3] job key ARGV[1] job id ARGV[2] return value? Output: 0 - Not finished. 1 - Completed. 2 - Failed. -1 - Missing job. ]] local rcall = redis.call if rcall("EXISTS", KEYS[3]) ~= 1 then if ARGV[2] == "1" then return {-1,"Missing key for job " .. KEYS[3] .. ". isFinished"} end return -1 end if rcall("ZSCORE", KEYS[1], ARGV[1]) then if ARGV[2] == "1" then local returnValue = rcall("HGET", KEYS[3], "returnvalue") return {1,returnValue} end return 1 end if rcall("ZSCORE", KEYS[2], ARGV[1]) then if ARGV[2] == "1" then local failedReason = rcall("HGET", KEYS[3], "failedReason") return {2,failedReason} end return 2 end if ARGV[2] == "1" then return {0} end return 0 `; var isFinished = { name: "isFinished", content: content23, keys: 3 }; // ../../node_modules/bullmq/dist/esm/scripts/isJobInList-1.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content24 = `--[[ Checks if job is in a given list. Input: KEYS[1] ARGV[1] Output: 1 if element found in the list. ]] -- Includes --[[ Functions to check if a item belongs to a list. ]] local function checkItemInList(list, item) for _, v in pairs(list) do if v == item then return 1 end end return nil end local items = redis.call("LRANGE", KEYS[1] , 0, -1) return checkItemInList(items, ARGV[1]) `; var isJobInList = { name: "isJobInList", content: content24, keys: 1 }; // ../../node_modules/bullmq/dist/esm/scripts/isMaxed-2.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content25 = `--[[ Checks if queue is maxed. Input: KEYS[1] meta key KEYS[2] active key Output: 1 if element found in the list. ]] local rcall = redis.call -- Includes --[[ Function to check if queue is maxed or not. ]] local function isQueueMaxed(queueMetaKey, activeKey) local maxConcurrency = rcall("HGET", queueMetaKey, "concurrency") if maxConcurrency then local activeCount = rcall("LLEN", activeKey) if activeCount >= tonumber(maxConcurrency) then return true end end return false end return isQueueMaxed(KEYS[1], KEYS[2]) `; var isMaxed = { name: "isMaxed", content: content25, keys: 2 }; // ../../node_modules/bullmq/dist/esm/scripts/moveJobFromActiveToWait-9.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content26 = `--[[ Function to move job from active state to wait. Input: KEYS[1] active key KEYS[2] wait key KEYS[3] stalled key KEYS[4] paused key KEYS[5] meta key KEYS[6] limiter key KEYS[7] prioritized key KEYS[8] marker key KEYS[9] event key ARGV[1] job id ARGV[2] lock token ARGV[3] job id key ]] local rcall = redis.call -- Includes --[[ Function to add job in target list and add marker if needed. ]] -- Includes --[[ Add marker if needed when a job is available. ]] local function addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) if not isPausedOrMaxed then rcall("ZADD", markerKey, 0, "0") end end local function addJobInTargetList(targetKey, markerKey, pushCmd, isPausedOrMaxed, jobId) rcall(pushCmd, targetKey, jobId) addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) end --[[ Function to push back job considering priority in front of same prioritized jobs. ]] local function pushBackJobWithPriority(prioritizedKey, priority, jobId) -- in order to put it at front of same prioritized jobs -- we consider prioritized counter as 0 local score = priority * 0x100000000 rcall("ZADD", prioritizedKey, score, jobId) end --[[ Function to get max events value or set by default 10000. ]] local function getOrSetMaxEvents(metaKey) local maxEvents = rcall("HGET", metaKey, "opts.maxLenEvents") if not maxEvents then maxEvents = 10000 rcall("HSET", metaKey, "opts.maxLenEvents", maxEvents) end return maxEvents end --[[ Function to check for the meta.paused key to decide if we are paused or not (since an empty list and !EXISTS are not really the same). ]] local function getTargetQueueList(queueMetaKey, activeKey, waitKey, pausedKey) local queueAttributes = rcall("HMGET", queueMetaKey, "paused", "concurrency", "max", "duration") if queueAttributes[1] then return pausedKey, true, queueAttributes[3], queueAttributes[4] else if queueAttributes[2] then local activeCount = rcall("LLEN", activeKey) if activeCount >= tonumber(queueAttributes[2]) then return waitKey, true, queueAttributes[3], queueAttributes[4] else return waitKey, false, queueAttributes[3], queueAttributes[4] end end end return waitKey, false, queueAttributes[3], queueAttributes[4] end local function removeLock(jobKey, stalledKey, token, jobId) if token ~= "0" then local lockKey = jobKey .. ':lock' local lockToken = rcall("GET", lockKey) if lockToken == token then rcall("DEL", lockKey) rcall("SREM", stalledKey, jobId) else if lockToken then -- Lock exists but token does not match return -6 else -- Lock is missing completely return -2 end end end return 0 end local jobId = ARGV[1] local token = ARGV[2] local jobKey = ARGV[3] if rcall("EXISTS", jobKey) == 0 then return -1 end local errorCode = removeLock(jobKey, KEYS[3], token, jobId) if errorCode < 0 then return errorCode end local metaKey = KEYS[5] local removed = rcall("LREM", KEYS[1], 1, jobId) if removed > 0 then local target, isPausedOrMaxed = getTargetQueueList(metaKey, KEYS[1], KEYS[2], KEYS[4]) local priority = tonumber(rcall("HGET", ARGV[3], "priority")) or 0 if priority > 0 then pushBackJobWithPriority(KEYS[7], priority, jobId) else addJobInTargetList(target, KEYS[8], "RPUSH", isPausedOrMaxed, jobId) end local maxEvents = getOrSetMaxEvents(metaKey) -- Emit waiting event rcall("XADD", KEYS[9], "MAXLEN", "~", maxEvents, "*", "event", "waiting", "jobId", jobId, "prev", "active") end local pttl = rcall("PTTL", KEYS[6]) if pttl > 0 then return pttl else return 0 end `; var moveJobFromActiveToWait = { name: "moveJobFromActiveToWait", content: content26, keys: 9 }; // ../../node_modules/bullmq/dist/esm/scripts/moveJobsToWait-8.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content27 = `--[[ Move completed, failed or delayed jobs to wait. Note: Does not support jobs with priorities. Input: KEYS[1] base key KEYS[2] events stream KEYS[3] state key (failed, completed, delayed) KEYS[4] 'wait' KEYS[5] 'paused' KEYS[6] 'meta' KEYS[7] 'active' KEYS[8] 'marker' ARGV[1] count ARGV[2] timestamp ARGV[3] prev state Output: 1 means the operation is not completed 0 means the operation is completed ]] local maxCount = tonumber(ARGV[1]) local timestamp = tonumber(ARGV[2]) local rcall = redis.call; -- Includes --[[ Add marker if needed when a job is available. ]] local function addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) if not isPausedOrMaxed then rcall("ZADD", markerKey, 0, "0") end end --[[ Function to loop in batches. Just a bit of warning, some commands as ZREM could receive a maximum of 7000 parameters per call. ]] local function batches(n, batchSize) local i = 0 return function() local from = i * batchSize + 1 i = i + 1 if (from <= n) then local to = math.min(from + batchSize - 1, n) return from, to end end end --[[ Function to get max events value or set by default 10000. ]] local function getOrSetMaxEvents(metaKey) local maxEvents = rcall("HGET", metaKey, "opts.maxLenEvents") if not maxEvents then maxEvents = 10000 rcall("HSET", metaKey, "opts.maxLenEvents", maxEvents) end return maxEvents end --[[ Function to check for the meta.paused key to decide if we are paused or not (since an empty list and !EXISTS are not really the same). ]] local function getTargetQueueList(queueMetaKey, activeKey, waitKey, pausedKey) local queueAttributes = rcall("HMGET", queueMetaKey, "paused", "concurrency", "max", "duration") if queueAttributes[1] then return pausedKey, true, queueAttributes[3], queueAttributes[4] else if queueAttributes[2] then local activeCount = rcall("LLEN", activeKey) if activeCount >= tonumber(queueAttributes[2]) then return waitKey, true, queueAttributes[3], queueAttributes[4] else return waitKey, false, queueAttributes[3], queueAttributes[4] end end end return waitKey, false, queueAttributes[3], queueAttributes[4] end local metaKey = KEYS[6] local target, isPausedOrMaxed = getTargetQueueList(metaKey, KEYS[7], KEYS[4], KEYS[5]) local jobs = rcall('ZRANGEBYSCORE', KEYS[3], 0, timestamp, 'LIMIT', 0, maxCount) if (#jobs > 0) then if ARGV[3] == "failed" then for i, key in ipairs(jobs) do local jobKey = KEYS[1] .. key rcall("HDEL", jobKey, "finishedOn", "processedOn", "failedReason") end elseif ARGV[3] == "completed" then for i, key in ipairs(jobs) do local jobKey = KEYS[1] .. key rcall("HDEL", jobKey, "finishedOn", "processedOn", "returnvalue") end end local maxEvents = getOrSetMaxEvents(metaKey) for i, key in ipairs(jobs) do -- Emit waiting event rcall("XADD", KEYS[2], "MAXLEN", "~", maxEvents, "*", "event", "waiting", "jobId", key, "prev", ARGV[3]); end for from, to in batches(#jobs, 7000) do rcall("ZREM", KEYS[3], unpack(jobs, from, to)) rcall("LPUSH", target, unpack(jobs, from, to)) end addBaseMarkerIfNeeded(KEYS[8], isPausedOrMaxed) end maxCount = maxCount - #jobs if (maxCount <= 0) then return 1 end return 0 `; var moveJobsToWait = { name: "moveJobsToWait", content: content27, keys: 8 }; // ../../node_modules/bullmq/dist/esm/scripts/moveStalledJobsToWait-8.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content28 = `--[[ Move stalled jobs to wait. Input: KEYS[1] 'stalled' (SET) KEYS[2] 'wait', (LIST) KEYS[3] 'active', (LIST) KEYS[4] 'stalled-check', (KEY) KEYS[5] 'meta', (KEY) KEYS[6] 'paused', (LIST) KEYS[7] 'marker' KEYS[8] 'event stream' (STREAM) ARGV[1] Max stalled job count ARGV[2] queue.toKey('') ARGV[3] timestamp ARGV[4] max check time Events: 'stalled' with stalled job id. ]] local rcall = redis.call -- Includes --[[ Function to add job in target list and add marker if needed. ]] -- Includes --[[ Add marker if needed when a job is available. ]] local function addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) if not isPausedOrMaxed then rcall("ZADD", markerKey, 0, "0") end end local function addJobInTargetList(targetKey, markerKey, pushCmd, isPausedOrMaxed, jobId) rcall(pushCmd, targetKey, jobId) addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) end --[[ Function to loop in batches. Just a bit of warning, some commands as ZREM could receive a maximum of 7000 parameters per call. ]] local function batches(n, batchSize) local i = 0 return function() local from = i * batchSize + 1 i = i + 1 if (from <= n) then local to = math.min(from + batchSize - 1, n) return from, to end end end --[[ Function to move job to wait to be picked up by a waiting worker. ]] -- Includes --[[ Function to check for the meta.paused key to decide if we are paused or not (since an empty list and !EXISTS are not really the same). ]] local function getTargetQueueList(queueMetaKey, activeKey, waitKey, pausedKey) local queueAttributes = rcall("HMGET", queueMetaKey, "paused", "concurrency", "max", "duration") if queueAttributes[1] then return pausedKey, true, queueAttributes[3], queueAttributes[4] else if queueAttributes[2] then local activeCount = rcall("LLEN", activeKey) if activeCount >= tonumber(queueAttributes[2]) then return waitKey, true, queueAttributes[3], queueAttributes[4] else return waitKey, false, queueAttributes[3], queueAttributes[4] end end end return waitKey, false, queueAttributes[3], queueAttributes[4] end local function moveJobToWait(metaKey, activeKey, waitKey, pausedKey, markerKey, eventStreamKey, jobId, pushCmd) local target, isPausedOrMaxed = getTargetQueueList(metaKey, activeKey, waitKey, pausedKey) addJobInTargetList(target, markerKey, pushCmd, isPausedOrMaxed, jobId) rcall("XADD", eventStreamKey, "*", "event", "waiting", "jobId", jobId, 'prev', 'active') end --[[ Function to trim events, default 10000. ]] -- Includes --[[ Function to get max events value or set by default 10000. ]] local function getOrSetMaxEvents(metaKey) local maxEvents = rcall("HGET", metaKey, "opts.maxLenEvents") if not maxEvents then maxEvents = 10000 rcall("HSET", metaKey, "opts.maxLenEvents", maxEvents) end return maxEvents end local function trimEvents(metaKey, eventStreamKey) local maxEvents = getOrSetMaxEvents(metaKey) if maxEvents then rcall("XTRIM", eventStreamKey, "MAXLEN", "~", maxEvents) else rcall("XTRIM", eventStreamKey, "MAXLEN", "~", 10000) end end local stalledKey = KEYS[1] local waitKey = KEYS[2] local activeKey = KEYS[3] local stalledCheckKey = KEYS[4] local metaKey = KEYS[5] local pausedKey = KEYS[6] local markerKey = KEYS[7] local eventStreamKey = KEYS[8] local maxStalledJobCount = tonumber(ARGV[1]) local queueKeyPrefix = ARGV[2] local timestamp = ARGV[3] local maxCheckTime = ARGV[4] if rcall("EXISTS", stalledCheckKey) == 1 then return {} end rcall("SET", stalledCheckKey, timestamp, "PX", maxCheckTime) -- Trim events before emiting them to avoid trimming events emitted in this script trimEvents(metaKey, eventStreamKey) -- Move all stalled jobs to wait local stalling = rcall('SMEMBERS', stalledKey) local stalled = {} if (#stalling > 0) then rcall('DEL', stalledKey) -- Remove from active list for i, jobId in ipairs(stalling) do -- Markers in waitlist DEPRECATED in v5: Remove in v6. if string.sub(jobId, 1, 2) == "0:" then -- If the jobId is a delay marker ID we just remove it. rcall("LREM", activeKey, 1, jobId) else local jobKey = queueKeyPrefix .. jobId -- Check that the lock is also missing, then we can handle this job as really stalled. if (rcall("EXISTS", jobKey .. ":lock") == 0) then -- Remove from the active queue. local removed = rcall("LREM", activeKey, 1, jobId) if (removed > 0) then -- If this job has been stalled too many times, such as if it crashes the worker, then fail it. local stalledCount = rcall("HINCRBY", jobKey, "stc", 1) -- Check if this is a repeatable job by looking at job options local jobOpts = rcall("HGET", jobKey, "opts") local isRepeatableJob = false if jobOpts then local opts = cjson.decode(jobOpts) if opts and opts["repeat"] then isRepeatableJob = true end end -- Only fail job if it exceeds stall limit AND is not a repeatable job if stalledCount > maxStalledJobCount and not isRepeatableJob then local failedReason = "job stalled more than allowable limit" rcall("HSET", jobKey, "defa", failedReason) end moveJobToWait(metaKey, activeKey, waitKey, pausedKey, markerKey, eventStreamKey, jobId, "RPUSH") -- Emit the stalled event rcall("XADD", eventStreamKey, "*", "event", "stalled", "jobId", jobId) table.insert(stalled, jobId) end end end end end -- Mark potentially stalled jobs local active = rcall('LRANGE', activeKey, 0, -1) if (#active > 0) then for from, to in batches(#active, 7000) do rcall('SADD', stalledKey, unpack(active, from, to)) end end return stalled `; var moveStalledJobsToWait = { name: "moveStalledJobsToWait", content: content28, keys: 8 }; // ../../node_modules/bullmq/dist/esm/scripts/moveToActive-11.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content29 = `--[[ Move next job to be processed to active, lock it and fetch its data. The job may be delayed, in that case we need to move it to the delayed set instead. This operation guarantees that the worker owns the job during the lock expiration time. The worker is responsible of keeping the lock fresh so that no other worker picks this job again. Input: KEYS[1] wait key KEYS[2] active key KEYS[3] prioritized key KEYS[4] stream events key KEYS[5] stalled key -- Rate limiting KEYS[6] rate limiter key KEYS[7] delayed key -- Delayed jobs KEYS[8] paused key KEYS[9] meta key KEYS[10] pc priority counter -- Marker KEYS[11] marker key -- Arguments ARGV[1] key prefix ARGV[2] timestamp ARGV[3] opts opts - token - lock token opts - lockDuration opts - limiter opts - name - worker name ]] local rcall = redis.call local waitKey = KEYS[1] local activeKey = KEYS[2] local eventStreamKey = KEYS[4] local rateLimiterKey = KEYS[6] local delayedKey = KEYS[7] local opts = cmsgpack.unpack(ARGV[3]) -- Includes --[[ Function to return the next delayed job timestamp. ]] local function getNextDelayedTimestamp(delayedKey) local result = rcall("ZRANGE", delayedKey, 0, 0, "WITHSCORES") if #result then local nextTimestamp = tonumber(result[2]) if nextTimestamp ~= nil then return nextTimestamp / 0x1000 end end end --[[ Function to get current rate limit ttl. ]] local function getRateLimitTTL(maxJobs, rateLimiterKey) if maxJobs and maxJobs <= tonumber(rcall("GET", rateLimiterKey) or 0) then local pttl = rcall("PTTL", rateLimiterKey) if pttl == 0 then rcall("DEL", rateLimiterKey) end if pttl > 0 then return pttl end end return 0 end --[[ Function to check for the meta.paused key to decide if we are paused or not (since an empty list and !EXISTS are not really the same). ]] local function getTargetQueueList(queueMetaKey, activeKey, waitKey, pausedKey) local queueAttributes = rcall("HMGET", queueMetaKey, "paused", "concurrency", "max", "duration") if queueAttributes[1] then return pausedKey, true, queueAttributes[3], queueAttributes[4] else if queueAttributes[2] then local activeCount = rcall("LLEN", activeKey) if activeCount >= tonumber(queueAttributes[2]) then return waitKey, true, queueAttributes[3], queueAttributes[4] else return waitKey, false, queueAttributes[3], queueAttributes[4] end end end return waitKey, false, queueAttributes[3], queueAttributes[4] end --[[ Function to move job from prioritized state to active. ]] local function moveJobFromPrioritizedToActive(priorityKey, activeKey, priorityCounterKey) local prioritizedJob = rcall("ZPOPMIN", priorityKey) if #prioritizedJob > 0 then rcall("LPUSH", activeKey, prioritizedJob[1]) return prioritizedJob[1] else rcall("DEL", priorityCounterKey) end end --[[ Function to move job from wait state to active. Input: opts - token - lock token opts - lockDuration opts - limiter ]] -- Includes --[[ Add marker if needed when a job is available. ]] local function addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) if not isPausedOrMaxed then rcall("ZADD", markerKey, 0, "0") end end local function prepareJobForProcessing(keyPrefix, rateLimiterKey, eventStreamKey, jobId, processedOn, maxJobs, limiterDuration, markerKey, opts) local jobKey = keyPrefix .. jobId -- Check if we need to perform rate limiting. if maxJobs then local jobCounter = tonumber(rcall("INCR", rateLimiterKey)) if jobCounter == 1 then local integerDuration = math.floor(math.abs(limiterDuration)) rcall("PEXPIRE", rateLimiterKey, integerDuration) end end -- get a lock if opts['token'] ~= "0" then local lockKey = jobKey .. ':lock' rcall("SET", lockKey, opts['token'], "PX", opts['lockDuration']) end local optionalValues = {} if opts['name'] then -- Set "processedBy" field to the worker name table.insert(optionalValues, "pb") table.insert(optionalValues, opts['name']) end rcall("XADD", eventStreamKey, "*", "event", "active", "jobId", jobId, "prev", "waiting") rcall("HMSET", jobKey, "processedOn", processedOn, unpack(optionalValues)) rcall("HINCRBY", jobKey, "ats", 1) addBaseMarkerIfNeeded(markerKey, false) -- rate limit delay must be 0 in this case to prevent adding more delay -- when job that is moved to active needs to be processed return {rcall("HGETALL", jobKey), jobId, 0, 0} -- get job data end --[[ Updates the delay set, by moving delayed jobs that should be processed now to "wait". Events: 'waiting' ]] -- Includes --[[ Function to add job in target list and add marker if needed. ]] -- Includes local function addJobInTargetList(targetKey, markerKey, pushCmd, isPausedOrMaxed, jobId) rcall(pushCmd, targetKey, jobId) addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) end --[[ Function to add job considering priority. ]] -- Includes --[[ Function to get priority score. ]] local function getPriorityScore(priority, priorityCounterKey) local prioCounter = rcall("INCR", priorityCounterKey) return priority * 0x100000000 + prioCounter % 0x100000000 end local function addJobWithPriority(markerKey, prioritizedKey, priority, jobId, priorityCounterKey, isPausedOrMaxed) local score = getPriorityScore(priority, priorityCounterKey) rcall("ZADD", prioritizedKey, score, jobId) addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) end -- Try to get as much as 1000 jobs at once local function promoteDelayedJobs(delayedKey, markerKey, targetKey, prioritizedKey, eventStreamKey, prefix, timestamp, priorityCounterKey, isPaused) local jobs = rcall("ZRANGEBYSCORE", delayedKey, 0, (timestamp + 1) * 0x1000 - 1, "LIMIT", 0, 1000) if (#jobs > 0) then rcall("ZREM", delayedKey, unpack(jobs)) for _, jobId in ipairs(jobs) do local jobKey = prefix .. jobId local priority = tonumber(rcall("HGET", jobKey, "priority")) or 0 if priority == 0 then -- LIFO or FIFO rcall("LPUSH", targetKey, jobId) else local score = getPriorityScore(priority, priorityCounterKey) rcall("ZADD", prioritizedKey, score, jobId) end -- Emit waiting event rcall("XADD", eventStreamKey, "*", "event", "waiting", "jobId", jobId, "prev", "delayed") rcall("HSET", jobKey, "delay", 0) end addBaseMarkerIfNeeded(markerKey, isPaused) end end local target, isPausedOrMaxed, rateLimitMax, rateLimitDuration = getTargetQueueList(KEYS[9], activeKey, waitKey, KEYS[8]) -- Check if there are delayed jobs that we can move to wait. local markerKey = KEYS[11] promoteDelayedJobs(delayedKey, markerKey, target, KEYS[3], eventStreamKey, ARGV[1], ARGV[2], KEYS[10], isPausedOrMaxed) local maxJobs = tonumber(rateLimitMax or (opts['limiter'] and opts['limiter']['max'])) local expireTime = getRateLimitTTL(maxJobs, rateLimiterKey) -- Check if we are rate limited first. if expireTime > 0 then return {0, 0, expireTime, 0} end -- paused or maxed queue if isPausedOrMaxed then return {0, 0, 0, 0} end local limiterDuration = (opts['limiter'] and opts['limiter']['duration']) or rateLimitDuration -- no job ID, try non-blocking move from wait to active local jobId = rcall("RPOPLPUSH", waitKey, activeKey) -- Markers in waitlist DEPRECATED in v5: Will be completely removed in v6. if jobId and string.sub(jobId, 1, 2) == "0:" then rcall("LREM", activeKey, 1, jobId) jobId = rcall("RPOPLPUSH", waitKey, activeKey) end if jobId then return prepareJobForProcessing(ARGV[1], rateLimiterKey, eventStreamKey, jobId, ARGV[2], maxJobs, limiterDuration, markerKey, opts) else jobId = moveJobFromPrioritizedToActive(KEYS[3], activeKey, KEYS[10]) if jobId then return prepareJobForProcessing(ARGV[1], rateLimiterKey, eventStreamKey, jobId, ARGV[2], maxJobs, limiterDuration, markerKey, opts) end end -- Return the timestamp for the next delayed job if any. local nextTimestamp = getNextDelayedTimestamp(delayedKey) if nextTimestamp ~= nil then return {0, 0, 0, nextTimestamp} end return {0, 0, 0, 0} `; var moveToActive = { name: "moveToActive", content: content29, keys: 11 }; // ../../node_modules/bullmq/dist/esm/scripts/moveToDelayed-8.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content30 = `--[[ Moves job from active to delayed set. Input: KEYS[1] marker key KEYS[2] active key KEYS[3] prioritized key KEYS[4] delayed key KEYS[5] job key KEYS[6] events stream KEYS[7] meta key KEYS[8] stalled key ARGV[1] key prefix ARGV[2] timestamp ARGV[3] the id of the job ARGV[4] queue token ARGV[5] delay value ARGV[6] skip attempt ARGV[7] optional job fields to update Output: 0 - OK -1 - Missing job. -3 - Job not in active set. Events: - delayed key. ]] local rcall = redis.call -- Includes --[[ Add delay marker if needed. ]] -- Includes --[[ Function to return the next delayed job timestamp. ]] local function getNextDelayedTimestamp(delayedKey) local result = rcall("ZRANGE", delayedKey, 0, 0, "WITHSCORES") if #result then local nextTimestamp = tonumber(result[2]) if nextTimestamp ~= nil then return nextTimestamp / 0x1000 end end end local function addDelayMarkerIfNeeded(markerKey, delayedKey) local nextTimestamp = getNextDelayedTimestamp(delayedKey) if nextTimestamp ~= nil then -- Replace the score of the marker with the newest known -- next timestamp. rcall("ZADD", markerKey, nextTimestamp, "1") end end --[[ Bake in the job id first 12 bits into the timestamp to guarantee correct execution order of delayed jobs (up to 4096 jobs per given timestamp or 4096 jobs apart per timestamp) WARNING: Jobs that are so far apart that they wrap around will cause FIFO to fail ]] local function getDelayedScore(delayedKey, timestamp, delay) local delayedTimestamp = (delay > 0 and (tonumber(timestamp) + delay)) or tonumber(timestamp) local minScore = delayedTimestamp * 0x1000 local maxScore = (delayedTimestamp + 1 ) * 0x1000 - 1 local result = rcall("ZREVRANGEBYSCORE", delayedKey, maxScore, minScore, "WITHSCORES","LIMIT", 0, 1) if #result then local currentMaxScore = tonumber(result[2]) if currentMaxScore ~= nil then if currentMaxScore >= maxScore then return maxScore, delayedTimestamp else return currentMaxScore + 1, delayedTimestamp end end end return minScore, delayedTimestamp end --[[ Function to get max events value or set by default 10000. ]] local function getOrSetMaxEvents(metaKey) local maxEvents = rcall("HGET", metaKey, "opts.maxLenEvents") if not maxEvents then maxEvents = 10000 rcall("HSET", metaKey, "opts.maxLenEvents", maxEvents) end return maxEvents end local function removeLock(jobKey, stalledKey, token, jobId) if token ~= "0" then local lockKey = jobKey .. ':lock' local lockToken = rcall("GET", lockKey) if lockToken == token then rcall("DEL", lockKey) rcall("SREM", stalledKey, jobId) else if lockToken then -- Lock exists but token does not match return -6 else -- Lock is missing completely return -2 end end end return 0 end --[[ Function to update a bunch of fields in a job. ]] local function updateJobFields(jobKey, msgpackedFields) if msgpackedFields and #msgpackedFields > 0 then local fieldsToUpdate = cmsgpack.unpack(msgpackedFields) if fieldsToUpdate then rcall("HMSET", jobKey, unpack(fieldsToUpdate)) end end end local jobKey = KEYS[5] local metaKey = KEYS[7] local token = ARGV[4] if rcall("EXISTS", jobKey) == 1 then local errorCode = removeLock(jobKey, KEYS[8], token, ARGV[3]) if errorCode < 0 then return errorCode end updateJobFields(jobKey, ARGV[7]) local delayedKey = KEYS[4] local jobId = ARGV[3] local delay = tonumber(ARGV[5]) local numRemovedElements = rcall("LREM", KEYS[2], -1, jobId) if numRemovedElements < 1 then return -3 end local score, delayedTimestamp = getDelayedScore(delayedKey, ARGV[2], delay) if ARGV[6] == "0" then rcall("HINCRBY", jobKey, "atm", 1) end rcall("HSET", jobKey, "delay", ARGV[5]) local maxEvents = getOrSetMaxEvents(metaKey) rcall("ZADD", delayedKey, score, jobId) rcall("XADD", KEYS[6], "MAXLEN", "~", maxEvents, "*", "event", "delayed", "jobId", jobId, "delay", delayedTimestamp) -- Check if we need to push a marker job to wake up sleeping workers. local markerKey = KEYS[1] addDelayMarkerIfNeeded(markerKey, delayedKey) return 0 else return -1 end `; var moveToDelayed = { name: "moveToDelayed", content: content30, keys: 8 }; // ../../node_modules/bullmq/dist/esm/scripts/moveToFinished-14.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content31 = `--[[ Move job from active to a finished status (completed o failed) A job can only be moved to completed if it was active. The job must be locked before it can be moved to a finished status, and the lock must be released in this script. Input: KEYS[1] wait key KEYS[2] active key KEYS[3] prioritized key KEYS[4] event stream key KEYS[5] stalled key -- Rate limiting KEYS[6] rate limiter key KEYS[7] delayed key KEYS[8] paused key KEYS[9] meta key KEYS[10] pc priority counter KEYS[11] completed/failed key KEYS[12] jobId key KEYS[13] metrics key KEYS[14] marker key ARGV[1] jobId ARGV[2] timestamp ARGV[3] msg property returnvalue / failedReason ARGV[4] return value / failed reason ARGV[5] target (completed/failed) ARGV[6] fetch next? ARGV[7] keys prefix ARGV[8] opts ARGV[9] job fields to update opts - token - lock token opts - keepJobs opts - lockDuration - lock duration in milliseconds opts - attempts max attempts opts - maxMetricsSize opts - fpof - fail parent on fail opts - cpof - continue parent on fail opts - idof - ignore dependency on fail opts - rdof - remove dependency on fail opts - name - worker name Output: 0 OK -1 Missing key. -2 Missing lock. -3 Job not in active set -4 Job has pending children -6 Lock is not owned by this client -9 Job has failed children Events: 'completed/failed' ]] local rcall = redis.call --- Includes --[[ Functions to collect metrics based on a current and previous count of jobs. Granualarity is fixed at 1 minute. ]] --[[ Function to loop in batches. Just a bit of warning, some commands as ZREM could receive a maximum of 7000 parameters per call. ]] local function batches(n, batchSize) local i = 0 return function() local from = i * batchSize + 1 i = i + 1 if (from <= n) then local to = math.min(from + batchSize - 1, n) return from, to end end end local function collectMetrics(metaKey, dataPointsList, maxDataPoints, timestamp) -- Increment current count local count = rcall("HINCRBY", metaKey, "count", 1) - 1 -- Compute how many data points we need to add to the list, N. local prevTS = rcall("HGET", metaKey, "prevTS") if not prevTS then -- If prevTS is nil, set it to the current timestamp rcall("HSET", metaKey, "prevTS", timestamp, "prevCount", 0) return end local N = math.min(math.floor(timestamp / 60000) - math.floor(prevTS / 60000), tonumber(maxDataPoints)) if N > 0 then local delta = count - rcall("HGET", metaKey, "prevCount") -- If N > 1, add N-1 zeros to the list if N > 1 then local points = {} points[1] = delta for i = 2, N do points[i] = 0 end for from, to in batches(#points, 7000) do rcall("LPUSH", dataPointsList, unpack(points, from, to)) end else -- LPUSH delta to the list rcall("LPUSH", dataPointsList, delta) end -- LTRIM to keep list to its max size rcall("LTRIM", dataPointsList, 0, maxDataPoints - 1) -- update prev count with current count rcall("HSET", metaKey, "prevCount", count, "prevTS", timestamp) end end --[[ Function to return the next delayed job timestamp. ]] local function getNextDelayedTimestamp(delayedKey) local result = rcall("ZRANGE", delayedKey, 0, 0, "WITHSCORES") if #result then local nextTimestamp = tonumber(result[2]) if nextTimestamp ~= nil then return nextTimestamp / 0x1000 end end end --[[ Function to get current rate limit ttl. ]] local function getRateLimitTTL(maxJobs, rateLimiterKey) if maxJobs and maxJobs <= tonumber(rcall("GET", rateLimiterKey) or 0) then local pttl = rcall("PTTL", rateLimiterKey) if pttl == 0 then rcall("DEL", rateLimiterKey) end if pttl > 0 then return pttl end end return 0 end --[[ Function to check for the meta.paused key to decide if we are paused or not (since an empty list and !EXISTS are not really the same). ]] local function getTargetQueueList(queueMetaKey, activeKey, waitKey, pausedKey) local queueAttributes = rcall("HMGET", queueMetaKey, "paused", "concurrency", "max", "duration") if queueAttributes[1] then return pausedKey, true, queueAttributes[3], queueAttributes[4] else if queueAttributes[2] then local activeCount = rcall("LLEN", activeKey) if activeCount >= tonumber(queueAttributes[2]) then return waitKey, true, queueAttributes[3], queueAttributes[4] else return waitKey, false, queueAttributes[3], queueAttributes[4] end end end return waitKey, false, queueAttributes[3], queueAttributes[4] end --[[ Function to move job from prioritized state to active. ]] local function moveJobFromPrioritizedToActive(priorityKey, activeKey, priorityCounterKey) local prioritizedJob = rcall("ZPOPMIN", priorityKey) if #prioritizedJob > 0 then rcall("LPUSH", activeKey, prioritizedJob[1]) return prioritizedJob[1] else rcall("DEL", priorityCounterKey) end end --[[ Function to recursively move from waitingChildren to failed. ]] -- Includes --[[ Validate and move parent to a wait status (waiting, delayed or prioritized) if no pending dependencies. ]] -- Includes --[[ Validate and move parent to a wait status (waiting, delayed or prioritized) if needed. ]] -- Includes --[[ Move parent to a wait status (wait, prioritized or delayed) ]] -- Includes --[[ Add delay marker if needed. ]] -- Includes local function addDelayMarkerIfNeeded(markerKey, delayedKey) local nextTimestamp = getNextDelayedTimestamp(delayedKey) if nextTimestamp ~= nil then -- Replace the score of the marker with the newest known -- next timestamp. rcall("ZADD", markerKey, nextTimestamp, "1") end end --[[ Function to add job in target list and add marker if needed. ]] -- Includes --[[ Add marker if needed when a job is available. ]] local function addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) if not isPausedOrMaxed then rcall("ZADD", markerKey, 0, "0") end end local function addJobInTargetList(targetKey, markerKey, pushCmd, isPausedOrMaxed, jobId) rcall(pushCmd, targetKey, jobId) addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) end --[[ Function to add job considering priority. ]] -- Includes --[[ Function to get priority score. ]] local function getPriorityScore(priority, priorityCounterKey) local prioCounter = rcall("INCR", priorityCounterKey) return priority * 0x100000000 + prioCounter % 0x100000000 end local function addJobWithPriority(markerKey, prioritizedKey, priority, jobId, priorityCounterKey, isPausedOrMaxed) local score = getPriorityScore(priority, priorityCounterKey) rcall("ZADD", prioritizedKey, score, jobId) addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) end --[[ Function to check if queue is paused or maxed (since an empty list and !EXISTS are not really the same). ]] local function isQueuePausedOrMaxed(queueMetaKey, activeKey) local queueAttributes = rcall("HMGET", queueMetaKey, "paused", "concurrency") if queueAttributes[1] then return true else if queueAttributes[2] then local activeCount = rcall("LLEN", activeKey) return activeCount >= tonumber(queueAttributes[2]) end end return false end local function moveParentToWait(parentQueueKey, parentKey, parentId, timestamp) local parentWaitKey = parentQueueKey .. ":wait" local parentPausedKey = parentQueueKey .. ":paused" local parentActiveKey = parentQueueKey .. ":active" local parentMetaKey = parentQueueKey .. ":meta" local parentMarkerKey = parentQueueKey .. ":marker" local jobAttributes = rcall("HMGET", parentKey, "priority", "delay") local priority = tonumber(jobAttributes[1]) or 0 local delay = tonumber(jobAttributes[2]) or 0 if delay > 0 then local delayedTimestamp = tonumber(timestamp) + delay local score = delayedTimestamp * 0x1000 local parentDelayedKey = parentQueueKey .. ":delayed" rcall("ZADD", parentDelayedKey, score, parentId) rcall("XADD", parentQueueKey .. ":events", "*", "event", "delayed", "jobId", parentId, "delay", delayedTimestamp) addDelayMarkerIfNeeded(parentMarkerKey, parentDelayedKey) else if priority == 0 then local parentTarget, isParentPausedOrMaxed = getTargetQueueList(parentMetaKey, parentActiveKey, parentWaitKey, parentPausedKey) addJobInTargetList(parentTarget, parentMarkerKey, "RPUSH", isParentPausedOrMaxed, parentId) else local isPausedOrMaxed = isQueuePausedOrMaxed(parentMetaKey, parentActiveKey) addJobWithPriority(parentMarkerKey, parentQueueKey .. ":prioritized", priority, parentId, parentQueueKey .. ":pc", isPausedOrMaxed) end rcall("XADD", parentQueueKey .. ":events", "*", "event", "waiting", "jobId", parentId, "prev", "waiting-children") end end local function moveParentToWaitIfNeeded(parentQueueKey, parentKey, parentId, timestamp) if rcall("EXISTS", parentKey) == 1 then local parentWaitingChildrenKey = parentQueueKey .. ":waiting-children" if rcall("ZSCORE", parentWaitingChildrenKey, parentId) then rcall("ZREM", parentWaitingChildrenKey, parentId) moveParentToWait(parentQueueKey, parentKey, parentId, timestamp) end end end local function moveParentToWaitIfNoPendingDependencies(parentQueueKey, parentDependenciesKey, parentKey, parentId, timestamp) local doNotHavePendingDependencies = rcall("SCARD", parentDependenciesKey) == 0 if doNotHavePendingDependencies then moveParentToWaitIfNeeded(parentQueueKey, parentKey, parentId, timestamp) end end local handleChildFailureAndMoveParentToWait = function (parentQueueKey, parentKey, parentId, jobIdKey, timestamp) if rcall("EXISTS", parentKey) == 1 then local parentWaitingChildrenKey = parentQueueKey .. ":waiting-children" local parentDelayedKey = parentQueueKey .. ":delayed" local parentWaitingChildrenOrDelayedKey if rcall("ZSCORE", parentWaitingChildrenKey, parentId) then parentWaitingChildrenOrDelayedKey = parentWaitingChildrenKey elseif rcall("ZSCORE", parentDelayedKey, parentId) then parentWaitingChildrenOrDelayedKey = parentDelayedKey rcall("HSET", parentKey, "delay", 0) end if parentWaitingChildrenOrDelayedKey then rcall("ZREM", parentWaitingChildrenOrDelayedKey, parentId) local deferredFailure = "child " .. jobIdKey .. " failed" rcall("HSET", parentKey, "defa", deferredFailure) moveParentToWait(parentQueueKey, parentKey, parentId, timestamp) else if not rcall("ZSCORE", parentQueueKey .. ":failed", parentId) then local deferredFailure = "child " .. jobIdKey .. " failed" rcall("HSET", parentKey, "defa", deferredFailure) end end end end local moveChildFromDependenciesIfNeeded = function (rawParentData, childKey, failedReason, timestamp) if rawParentData then local parentData = cjson.decode(rawParentData) local parentKey = parentData['queueKey'] .. ':' .. parentData['id'] local parentDependenciesChildrenKey = parentKey .. ":dependencies" if parentData['fpof'] then if rcall("SREM", parentDependenciesChildrenKey, childKey) == 1 then local parentUnsuccessfulChildrenKey = parentKey .. ":unsuccessful" rcall("ZADD", parentUnsuccessfulChildrenKey, timestamp, childKey) handleChildFailureAndMoveParentToWait( parentData['queueKey'], parentKey, parentData['id'], childKey, timestamp ) end elseif parentData['cpof'] then if rcall("SREM", parentDependenciesChildrenKey, childKey) == 1 then local parentFailedChildrenKey = parentKey .. ":failed" rcall("HSET", parentFailedChildrenKey, childKey, failedReason) moveParentToWaitIfNeeded(parentData['queueKey'], parentKey, parentData['id'], timestamp) end elseif parentData['idof'] or parentData['rdof'] then if rcall("SREM", parentDependenciesChildrenKey, childKey) == 1 then moveParentToWaitIfNoPendingDependencies(parentData['queueKey'], parentDependenciesChildrenKey, parentKey, parentData['id'], timestamp) if parentData['idof'] then local parentFailedChildrenKey = parentKey .. ":failed" rcall("HSET", parentFailedChildrenKey, childKey, failedReason) end end end end end --[[ Function to move job from wait state to active. Input: opts - token - lock token opts - lockDuration opts - limiter ]] -- Includes local function prepareJobForProcessing(keyPrefix, rateLimiterKey, eventStreamKey, jobId, processedOn, maxJobs, limiterDuration, markerKey, opts) local jobKey = keyPrefix .. jobId -- Check if we need to perform rate limiting. if maxJobs then local jobCounter = tonumber(rcall("INCR", rateLimiterKey)) if jobCounter == 1 then local integerDuration = math.floor(math.abs(limiterDuration)) rcall("PEXPIRE", rateLimiterKey, integerDuration) end end -- get a lock if opts['token'] ~= "0" then local lockKey = jobKey .. ':lock' rcall("SET", lockKey, opts['token'], "PX", opts['lockDuration']) end local optionalValues = {} if opts['name'] then -- Set "processedBy" field to the worker name table.insert(optionalValues, "pb") table.insert(optionalValues, opts['name']) end rcall("XADD", eventStreamKey, "*", "event", "active", "jobId", jobId, "prev", "waiting") rcall("HMSET", jobKey, "processedOn", processedOn, unpack(optionalValues)) rcall("HINCRBY", jobKey, "ats", 1) addBaseMarkerIfNeeded(markerKey, false) -- rate limit delay must be 0 in this case to prevent adding more delay -- when job that is moved to active needs to be processed return {rcall("HGETALL", jobKey), jobId, 0, 0} -- get job data end --[[ Updates the delay set, by moving delayed jobs that should be processed now to "wait". Events: 'waiting' ]] -- Includes -- Try to get as much as 1000 jobs at once local function promoteDelayedJobs(delayedKey, markerKey, targetKey, prioritizedKey, eventStreamKey, prefix, timestamp, priorityCounterKey, isPaused) local jobs = rcall("ZRANGEBYSCORE", delayedKey, 0, (timestamp + 1) * 0x1000 - 1, "LIMIT", 0, 1000) if (#jobs > 0) then rcall("ZREM", delayedKey, unpack(jobs)) for _, jobId in ipairs(jobs) do local jobKey = prefix .. jobId local priority = tonumber(rcall("HGET", jobKey, "priority")) or 0 if priority == 0 then -- LIFO or FIFO rcall("LPUSH", targetKey, jobId) else local score = getPriorityScore(priority, priorityCounterKey) rcall("ZADD", prioritizedKey, score, jobId) end -- Emit waiting event rcall("XADD", eventStreamKey, "*", "event", "waiting", "jobId", jobId, "prev", "delayed") rcall("HSET", jobKey, "delay", 0) end addBaseMarkerIfNeeded(markerKey, isPaused) end end --[[ Function to remove deduplication key if needed when a job is moved to completed or failed states. ]] local function removeDeduplicationKeyIfNeededOnFinalization(prefixKey, deduplicationId, jobId) if deduplicationId then local deduplicationKey = prefixKey .. "de:" .. deduplicationId local pttl = rcall("PTTL", deduplicationKey) if pttl == 0 then return rcall("DEL", deduplicationKey) end if pttl == -1 then local currentJobId = rcall('GET', deduplicationKey) if currentJobId and currentJobId == jobId then return rcall("DEL", deduplicationKey) end end end end --[[ Function to remove job keys. ]] local function removeJobKeys(jobKey) return rcall("DEL", jobKey, jobKey .. ':logs', jobKey .. ':dependencies', jobKey .. ':processed', jobKey .. ':failed', jobKey .. ':unsuccessful') end --[[ Functions to remove jobs by max age. ]] -- Includes --[[ Function to remove job. ]] -- Includes --[[ Function to remove deduplication key if needed when a job is being removed. ]] local function removeDeduplicationKeyIfNeededOnRemoval(prefixKey, jobId, deduplicationId) if deduplicationId then local deduplicationKey = prefixKey .. "de:" .. deduplicationId local currentJobId = rcall('GET', deduplicationKey) if currentJobId and currentJobId == jobId then return rcall("DEL", deduplicationKey) end end end --[[ Check if this job has a parent. If so we will just remove it from the parent child list, but if it is the last child we should move the parent to "wait/paused" which requires code from "moveToFinished" ]] -- Includes --[[ Functions to destructure job key. Just a bit of warning, these functions may be a bit slow and affect performance significantly. ]] local getJobIdFromKey = function (jobKey) return string.match(jobKey, ".*:(.*)") end local getJobKeyPrefix = function (jobKey, jobId) return string.sub(jobKey, 0, #jobKey - #jobId) end local function _moveParentToWait(parentPrefix, parentId, emitEvent) local parentTarget, isPausedOrMaxed = getTargetQueueList(parentPrefix .. "meta", parentPrefix .. "active", parentPrefix .. "wait", parentPrefix .. "paused") addJobInTargetList(parentTarget, parentPrefix .. "marker", "RPUSH", isPausedOrMaxed, parentId) if emitEvent then local parentEventStream = parentPrefix .. "events" rcall("XADD", parentEventStream, "*", "event", "waiting", "jobId", parentId, "prev", "waiting-children") end end local function removeParentDependencyKey(jobKey, hard, parentKey, baseKey, debounceId) if parentKey then local parentDependenciesKey = parentKey .. ":dependencies" local result = rcall("SREM", parentDependenciesKey, jobKey) if result > 0 then local pendingDependencies = rcall("SCARD", parentDependenciesKey) if pendingDependencies == 0 then local parentId = getJobIdFromKey(parentKey) local parentPrefix = getJobKeyPrefix(parentKey, parentId) local numRemovedElements = rcall("ZREM", parentPrefix .. "waiting-children", parentId) if numRemovedElements == 1 then if hard then -- remove parent in same queue if parentPrefix == baseKey then removeParentDependencyKey(parentKey, hard, nil, baseKey, nil) removeJobKeys(parentKey) if debounceId then rcall("DEL", parentPrefix .. "de:" .. debounceId) end else _moveParentToWait(parentPrefix, parentId) end else _moveParentToWait(parentPrefix, parentId, true) end end end return true end else local parentAttributes = rcall("HMGET", jobKey, "parentKey", "deid") local missedParentKey = parentAttributes[1] if( (type(missedParentKey) == "string") and missedParentKey ~= "" and (rcall("EXISTS", missedParentKey) == 1)) then local parentDependenciesKey = missedParentKey .. ":dependencies" local result = rcall("SREM", parentDependenciesKey, jobKey) if result > 0 then local pendingDependencies = rcall("SCARD", parentDependenciesKey) if pendingDependencies == 0 then local parentId = getJobIdFromKey(missedParentKey) local parentPrefix = getJobKeyPrefix(missedParentKey, parentId) local numRemovedElements = rcall("ZREM", parentPrefix .. "waiting-children", parentId) if numRemovedElements == 1 then if hard then if parentPrefix == baseKey then removeParentDependencyKey(missedParentKey, hard, nil, baseKey, nil) removeJobKeys(missedParentKey) if parentAttributes[2] then rcall("DEL", parentPrefix .. "de:" .. parentAttributes[2]) end else _moveParentToWait(parentPrefix, parentId) end else _moveParentToWait(parentPrefix, parentId, true) end end end return true end end end return false end local function removeJob(jobId, hard, baseKey, shouldRemoveDeduplicationKey) local jobKey = baseKey .. jobId removeParentDependencyKey(jobKey, hard, nil, baseKey) if shouldRemoveDeduplicationKey then local deduplicationId = rcall("HGET", jobKey, "deid") removeDeduplicationKeyIfNeededOnRemoval(baseKey, jobId, deduplicationId) end removeJobKeys(jobKey) end local function removeJobsByMaxAge(timestamp, maxAge, targetSet, prefix, maxLimit) local start = timestamp - maxAge * 1000 local jobIds = rcall("ZREVRANGEBYSCORE", targetSet, start, "-inf", "LIMIT", 0, maxLimit) for i, jobId in ipairs(jobIds) do removeJob(jobId, false, prefix, false --[[remove debounce key]]) end if #jobIds > 0 then if #jobIds < maxLimit then rcall("ZREMRANGEBYSCORE", targetSet, "-inf", start) else for from, to in batches(#jobIds, 7000) do rcall("ZREM", targetSet, unpack(jobIds, from, to)) end end end end --[[ Functions to remove jobs by max count. ]] -- Includes local function removeJobsByMaxCount(maxCount, targetSet, prefix) local start = maxCount local jobIds = rcall("ZREVRANGE", targetSet, start, -1) for i, jobId in ipairs(jobIds) do removeJob(jobId, false, prefix, false --[[remove debounce key]]) end rcall("ZREMRANGEBYRANK", targetSet, 0, -(maxCount + 1)) end local function removeLock(jobKey, stalledKey, token, jobId) if token ~= "0" then local lockKey = jobKey .. ':lock' local lockToken = rcall("GET", lockKey) if lockToken == token then rcall("DEL", lockKey) rcall("SREM", stalledKey, jobId) else if lockToken then -- Lock exists but token does not match return -6 else -- Lock is missing completely return -2 end end end return 0 end --[[ Function to trim events, default 10000. ]] -- Includes --[[ Function to get max events value or set by default 10000. ]] local function getOrSetMaxEvents(metaKey) local maxEvents = rcall("HGET", metaKey, "opts.maxLenEvents") if not maxEvents then maxEvents = 10000 rcall("HSET", metaKey, "opts.maxLenEvents", maxEvents) end return maxEvents end local function trimEvents(metaKey, eventStreamKey) local maxEvents = getOrSetMaxEvents(metaKey) if maxEvents then rcall("XTRIM", eventStreamKey, "MAXLEN", "~", maxEvents) else rcall("XTRIM", eventStreamKey, "MAXLEN", "~", 10000) end end --[[ Validate and move or add dependencies to parent. ]] -- Includes local function updateParentDepsIfNeeded(parentKey, parentQueueKey, parentDependenciesKey, parentId, jobIdKey, returnvalue, timestamp ) local processedSet = parentKey .. ":processed" rcall("HSET", processedSet, jobIdKey, returnvalue) moveParentToWaitIfNoPendingDependencies(parentQueueKey, parentDependenciesKey, parentKey, parentId, timestamp) end --[[ Function to update a bunch of fields in a job. ]] local function updateJobFields(jobKey, msgpackedFields) if msgpackedFields and #msgpackedFields > 0 then local fieldsToUpdate = cmsgpack.unpack(msgpackedFields) if fieldsToUpdate then rcall("HMSET", jobKey, unpack(fieldsToUpdate)) end end end local jobIdKey = KEYS[12] if rcall("EXISTS", jobIdKey) == 1 then -- Make sure job exists -- Make sure it does not have pending dependencies -- It must happen before removing lock if ARGV[5] == "completed" then if rcall("SCARD", jobIdKey .. ":dependencies") ~= 0 then return -4 end if rcall("ZCARD", jobIdKey .. ":unsuccessful") ~= 0 then return -9 end end local opts = cmsgpack.unpack(ARGV[8]) local token = opts['token'] local errorCode = removeLock(jobIdKey, KEYS[5], token, ARGV[1]) if errorCode < 0 then return errorCode end updateJobFields(jobIdKey, ARGV[9]); local attempts = opts['attempts'] local maxMetricsSize = opts['maxMetricsSize'] local maxCount = opts['keepJobs']['count'] local maxAge = opts['keepJobs']['age'] local maxLimit = opts['keepJobs']['limit'] or 1000 local jobAttributes = rcall("HMGET", jobIdKey, "parentKey", "parent", "deid") local parentKey = jobAttributes[1] or "" local parentId = "" local parentQueueKey = "" if jobAttributes[2] then -- TODO: need to revisit this logic if it's still needed local jsonDecodedParent = cjson.decode(jobAttributes[2]) parentId = jsonDecodedParent['id'] parentQueueKey = jsonDecodedParent['queueKey'] end local jobId = ARGV[1] local timestamp = ARGV[2] -- Remove from active list (if not active we shall return error) local numRemovedElements = rcall("LREM", KEYS[2], -1, jobId) if (numRemovedElements < 1) then return -3 end local eventStreamKey = KEYS[4] local metaKey = KEYS[9] -- Trim events before emiting them to avoid trimming events emitted in this script trimEvents(metaKey, eventStreamKey) local prefix = ARGV[7] removeDeduplicationKeyIfNeededOnFinalization(prefix, jobAttributes[3], jobId) -- If job has a parent we need to -- 1) remove this job id from parents dependencies -- 2) move the job Id to parent "processed" set -- 3) push the results into parent "results" list -- 4) if parent's dependencies is empty, then move parent to "wait/paused". Note it may be a different queue!. if parentId == "" and parentKey ~= "" then parentId = getJobIdFromKey(parentKey) parentQueueKey = getJobKeyPrefix(parentKey, ":" .. parentId) end if parentId ~= "" then if ARGV[5] == "completed" then local dependenciesSet = parentKey .. ":dependencies" if rcall("SREM", dependenciesSet, jobIdKey) == 1 then updateParentDepsIfNeeded(parentKey, parentQueueKey, dependenciesSet, parentId, jobIdKey, ARGV[4], timestamp) end else moveChildFromDependenciesIfNeeded(jobAttributes[2], jobIdKey, ARGV[4], timestamp) end end local attemptsMade = rcall("HINCRBY", jobIdKey, "atm", 1) -- Remove job? if maxCount ~= 0 then local targetSet = KEYS[11] -- Add to complete/failed set rcall("ZADD", targetSet, timestamp, jobId) rcall("HSET", jobIdKey, ARGV[3], ARGV[4], "finishedOn", timestamp) -- "returnvalue" / "failedReason" and "finishedOn" if ARGV[5] == "failed" then rcall("HDEL", jobIdKey, "defa") end -- Remove old jobs? if maxAge ~= nil then removeJobsByMaxAge(timestamp, maxAge, targetSet, prefix, maxLimit) end if maxCount ~= nil and maxCount > 0 then removeJobsByMaxCount(maxCount, targetSet, prefix) end else removeJobKeys(jobIdKey) if parentKey ~= "" then -- TODO: when a child is removed when finished, result or failure in parent -- must not be deleted, those value references should be deleted when the parent -- is deleted removeParentDependencyKey(jobIdKey, false, parentKey, jobAttributes[3]) end end rcall("XADD", eventStreamKey, "*", "event", ARGV[5], "jobId", jobId, ARGV[3], ARGV[4], "prev", "active") if ARGV[5] == "failed" then if tonumber(attemptsMade) >= tonumber(attempts) then rcall("XADD", eventStreamKey, "*", "event", "retries-exhausted", "jobId", jobId, "attemptsMade", attemptsMade) end end -- Collect metrics if maxMetricsSize ~= "" then collectMetrics(KEYS[13], KEYS[13] .. ':data', maxMetricsSize, timestamp) end -- Try to get next job to avoid an extra roundtrip if the queue is not closing, -- and not rate limited. if (ARGV[6] == "1") then local target, isPausedOrMaxed, rateLimitMax, rateLimitDuration = getTargetQueueList(metaKey, KEYS[2], KEYS[1], KEYS[8]) local markerKey = KEYS[14] -- Check if there are delayed jobs that can be promoted promoteDelayedJobs(KEYS[7], markerKey, target, KEYS[3], eventStreamKey, prefix, timestamp, KEYS[10], isPausedOrMaxed) local maxJobs = tonumber(rateLimitMax or (opts['limiter'] and opts['limiter']['max'])) -- Check if we are rate limited first. local expireTime = getRateLimitTTL(maxJobs, KEYS[6]) if expireTime > 0 then return {0, 0, expireTime, 0} end -- paused or maxed queue if isPausedOrMaxed then return {0, 0, 0, 0} end local limiterDuration = (opts['limiter'] and opts['limiter']['duration']) or rateLimitDuration jobId = rcall("RPOPLPUSH", KEYS[1], KEYS[2]) if jobId then -- Markers in waitlist DEPRECATED in v5: Remove in v6. if string.sub(jobId, 1, 2) == "0:" then rcall("LREM", KEYS[2], 1, jobId) -- If jobId is special ID 0:delay (delay greater than 0), then there is no job to process -- but if ID is 0:0, then there is at least 1 prioritized job to process if jobId == "0:0" then jobId = moveJobFromPrioritizedToActive(KEYS[3], KEYS[2], KEYS[10]) return prepareJobForProcessing(prefix, KEYS[6], eventStreamKey, jobId, timestamp, maxJobs, limiterDuration, markerKey, opts) end else return prepareJobForProcessing(prefix, KEYS[6], eventStreamKey, jobId, timestamp, maxJobs, limiterDuration, markerKey, opts) end else jobId = moveJobFromPrioritizedToActive(KEYS[3], KEYS[2], KEYS[10]) if jobId then return prepareJobForProcessing(prefix, KEYS[6], eventStreamKey, jobId, timestamp, maxJobs, limiterDuration, markerKey, opts) end end -- Return the timestamp for the next delayed job if any. local nextTimestamp = getNextDelayedTimestamp(KEYS[7]) if nextTimestamp ~= nil then -- The result is guaranteed to be positive, since the -- ZRANGEBYSCORE command would have return a job otherwise. return {0, 0, 0, nextTimestamp} end end local waitLen = rcall("LLEN", KEYS[1]) if waitLen == 0 then local activeLen = rcall("LLEN", KEYS[2]) if activeLen == 0 then local prioritizedLen = rcall("ZCARD", KEYS[3]) if prioritizedLen == 0 then rcall("XADD", eventStreamKey, "*", "event", "drained") end end end return 0 else return -1 end `; var moveToFinished = { name: "moveToFinished", content: content31, keys: 14 }; // ../../node_modules/bullmq/dist/esm/scripts/moveToWaitingChildren-7.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content32 = `--[[ Moves job from active to waiting children set. Input: KEYS[1] active key KEYS[2] wait-children key KEYS[3] job key KEYS[4] job dependencies key KEYS[5] job unsuccessful key KEYS[6] stalled key KEYS[7] events key ARGV[1] token ARGV[2] child key ARGV[3] timestamp ARGV[4] jobId ARGV[5] prefix Output: 0 - OK 1 - There are not pending dependencies. -1 - Missing job. -2 - Missing lock -3 - Job not in active set -9 - Job has failed children ]] local rcall = redis.call local activeKey = KEYS[1] local waitingChildrenKey = KEYS[2] local jobKey = KEYS[3] local jobDependenciesKey = KEYS[4] local jobUnsuccessfulKey = KEYS[5] local stalledKey = KEYS[6] local eventStreamKey = KEYS[7] local token = ARGV[1] local timestamp = ARGV[3] local jobId = ARGV[4] --- Includes local function removeLock(jobKey, stalledKey, token, jobId) if token ~= "0" then local lockKey = jobKey .. ':lock' local lockToken = rcall("GET", lockKey) if lockToken == token then rcall("DEL", lockKey) rcall("SREM", stalledKey, jobId) else if lockToken then -- Lock exists but token does not match return -6 else -- Lock is missing completely return -2 end end end return 0 end local function removeJobFromActive(activeKey, stalledKey, jobKey, jobId, token) local errorCode = removeLock(jobKey, stalledKey, token, jobId) if errorCode < 0 then return errorCode end local numRemovedElements = rcall("LREM", activeKey, -1, jobId) if numRemovedElements < 1 then return -3 end return 0 end local function moveToWaitingChildren(activeKey, waitingChildrenKey, stalledKey, eventStreamKey, jobKey, jobId, timestamp, token) local errorCode = removeJobFromActive(activeKey, stalledKey, jobKey, jobId, token) if errorCode < 0 then return errorCode end local score = tonumber(timestamp) rcall("ZADD", waitingChildrenKey, score, jobId) rcall("XADD", eventStreamKey, "*", "event", "waiting-children", "jobId", jobId, 'prev', 'active') return 0 end if rcall("EXISTS", jobKey) == 1 then if rcall("ZCARD", jobUnsuccessfulKey) ~= 0 then return -9 else if ARGV[2] ~= "" then if rcall("SISMEMBER", jobDependenciesKey, ARGV[2]) ~= 0 then return moveToWaitingChildren(activeKey, waitingChildrenKey, stalledKey, eventStreamKey, jobKey, jobId, timestamp, token) end return 1 else if rcall("SCARD", jobDependenciesKey) ~= 0 then return moveToWaitingChildren(activeKey, waitingChildrenKey, stalledKey, eventStreamKey, jobKey, jobId, timestamp, token) end return 1 end end end return -1 `; var moveToWaitingChildren = { name: "moveToWaitingChildren", content: content32, keys: 7 }; // ../../node_modules/bullmq/dist/esm/scripts/obliterate-2.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content33 = `--[[ Completely obliterates a queue and all of its contents This command completely destroys a queue including all of its jobs, current or past leaving no trace of its existence. Since this script needs to iterate to find all the job keys, consider that this call may be slow for very large queues. The queue needs to be "paused" or it will return an error If the queue has currently active jobs then the script by default will return error, however this behaviour can be overrided using the 'force' option. Input: KEYS[1] meta KEYS[2] base ARGV[1] count ARGV[2] force ]] local maxCount = tonumber(ARGV[1]) local baseKey = KEYS[2] local rcall = redis.call -- Includes --[[ Functions to remove jobs. ]] -- Includes --[[ Function to remove job. ]] -- Includes --[[ Function to remove deduplication key if needed when a job is being removed. ]] local function removeDeduplicationKeyIfNeededOnRemoval(prefixKey, jobId, deduplicationId) if deduplicationId then local deduplicationKey = prefixKey .. "de:" .. deduplicationId local currentJobId = rcall('GET', deduplicationKey) if currentJobId and currentJobId == jobId then return rcall("DEL", deduplicationKey) end end end --[[ Function to remove job keys. ]] local function removeJobKeys(jobKey) return rcall("DEL", jobKey, jobKey .. ':logs', jobKey .. ':dependencies', jobKey .. ':processed', jobKey .. ':failed', jobKey .. ':unsuccessful') end --[[ Check if this job has a parent. If so we will just remove it from the parent child list, but if it is the last child we should move the parent to "wait/paused" which requires code from "moveToFinished" ]] -- Includes --[[ Function to add job in target list and add marker if needed. ]] -- Includes --[[ Add marker if needed when a job is available. ]] local function addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) if not isPausedOrMaxed then rcall("ZADD", markerKey, 0, "0") end end local function addJobInTargetList(targetKey, markerKey, pushCmd, isPausedOrMaxed, jobId) rcall(pushCmd, targetKey, jobId) addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) end --[[ Functions to destructure job key. Just a bit of warning, these functions may be a bit slow and affect performance significantly. ]] local getJobIdFromKey = function (jobKey) return string.match(jobKey, ".*:(.*)") end local getJobKeyPrefix = function (jobKey, jobId) return string.sub(jobKey, 0, #jobKey - #jobId) end --[[ Function to check for the meta.paused key to decide if we are paused or not (since an empty list and !EXISTS are not really the same). ]] local function getTargetQueueList(queueMetaKey, activeKey, waitKey, pausedKey) local queueAttributes = rcall("HMGET", queueMetaKey, "paused", "concurrency", "max", "duration") if queueAttributes[1] then return pausedKey, true, queueAttributes[3], queueAttributes[4] else if queueAttributes[2] then local activeCount = rcall("LLEN", activeKey) if activeCount >= tonumber(queueAttributes[2]) then return waitKey, true, queueAttributes[3], queueAttributes[4] else return waitKey, false, queueAttributes[3], queueAttributes[4] end end end return waitKey, false, queueAttributes[3], queueAttributes[4] end local function _moveParentToWait(parentPrefix, parentId, emitEvent) local parentTarget, isPausedOrMaxed = getTargetQueueList(parentPrefix .. "meta", parentPrefix .. "active", parentPrefix .. "wait", parentPrefix .. "paused") addJobInTargetList(parentTarget, parentPrefix .. "marker", "RPUSH", isPausedOrMaxed, parentId) if emitEvent then local parentEventStream = parentPrefix .. "events" rcall("XADD", parentEventStream, "*", "event", "waiting", "jobId", parentId, "prev", "waiting-children") end end local function removeParentDependencyKey(jobKey, hard, parentKey, baseKey, debounceId) if parentKey then local parentDependenciesKey = parentKey .. ":dependencies" local result = rcall("SREM", parentDependenciesKey, jobKey) if result > 0 then local pendingDependencies = rcall("SCARD", parentDependenciesKey) if pendingDependencies == 0 then local parentId = getJobIdFromKey(parentKey) local parentPrefix = getJobKeyPrefix(parentKey, parentId) local numRemovedElements = rcall("ZREM", parentPrefix .. "waiting-children", parentId) if numRemovedElements == 1 then if hard then -- remove parent in same queue if parentPrefix == baseKey then removeParentDependencyKey(parentKey, hard, nil, baseKey, nil) removeJobKeys(parentKey) if debounceId then rcall("DEL", parentPrefix .. "de:" .. debounceId) end else _moveParentToWait(parentPrefix, parentId) end else _moveParentToWait(parentPrefix, parentId, true) end end end return true end else local parentAttributes = rcall("HMGET", jobKey, "parentKey", "deid") local missedParentKey = parentAttributes[1] if( (type(missedParentKey) == "string") and missedParentKey ~= "" and (rcall("EXISTS", missedParentKey) == 1)) then local parentDependenciesKey = missedParentKey .. ":dependencies" local result = rcall("SREM", parentDependenciesKey, jobKey) if result > 0 then local pendingDependencies = rcall("SCARD", parentDependenciesKey) if pendingDependencies == 0 then local parentId = getJobIdFromKey(missedParentKey) local parentPrefix = getJobKeyPrefix(missedParentKey, parentId) local numRemovedElements = rcall("ZREM", parentPrefix .. "waiting-children", parentId) if numRemovedElements == 1 then if hard then if parentPrefix == baseKey then removeParentDependencyKey(missedParentKey, hard, nil, baseKey, nil) removeJobKeys(missedParentKey) if parentAttributes[2] then rcall("DEL", parentPrefix .. "de:" .. parentAttributes[2]) end else _moveParentToWait(parentPrefix, parentId) end else _moveParentToWait(parentPrefix, parentId, true) end end end return true end end end return false end local function removeJob(jobId, hard, baseKey, shouldRemoveDeduplicationKey) local jobKey = baseKey .. jobId removeParentDependencyKey(jobKey, hard, nil, baseKey) if shouldRemoveDeduplicationKey then local deduplicationId = rcall("HGET", jobKey, "deid") removeDeduplicationKeyIfNeededOnRemoval(baseKey, jobId, deduplicationId) end removeJobKeys(jobKey) end local function removeJobs(keys, hard, baseKey, max) for i, key in ipairs(keys) do removeJob(key, hard, baseKey, true --[[remove debounce key]]) end return max - #keys end --[[ Functions to remove jobs. ]] -- Includes --[[ Function to filter out jobs to ignore from a table. ]] local function filterOutJobsToIgnore(jobs, jobsToIgnore) local filteredJobs = {} for i = 1, #jobs do if not jobsToIgnore[jobs[i]] then table.insert(filteredJobs, jobs[i]) end end return filteredJobs end local function getListItems(keyName, max) return rcall('LRANGE', keyName, 0, max - 1) end local function removeListJobs(keyName, hard, baseKey, max, jobsToIgnore) local jobs = getListItems(keyName, max) if jobsToIgnore then jobs = filterOutJobsToIgnore(jobs, jobsToIgnore) end local count = removeJobs(jobs, hard, baseKey, max) rcall("LTRIM", keyName, #jobs, -1) return count end -- Includes --[[ Function to loop in batches. Just a bit of warning, some commands as ZREM could receive a maximum of 7000 parameters per call. ]] local function batches(n, batchSize) local i = 0 return function() local from = i * batchSize + 1 i = i + 1 if (from <= n) then local to = math.min(from + batchSize - 1, n) return from, to end end end --[[ Function to get ZSet items. ]] local function getZSetItems(keyName, max) return rcall('ZRANGE', keyName, 0, max - 1) end local function removeZSetJobs(keyName, hard, baseKey, max, jobsToIgnore) local jobs = getZSetItems(keyName, max) if jobsToIgnore then jobs = filterOutJobsToIgnore(jobs, jobsToIgnore) end local count = removeJobs(jobs, hard, baseKey, max) if(#jobs > 0) then for from, to in batches(#jobs, 7000) do rcall("ZREM", keyName, unpack(jobs, from, to)) end end return count end local function removeLockKeys(keys) for i, key in ipairs(keys) do rcall("DEL", baseKey .. key .. ':lock') end end -- 1) Check if paused, if not return with error. if rcall("HEXISTS", KEYS[1], "paused") ~= 1 then return -1 -- Error, NotPaused end -- 2) Check if there are active jobs, if there are and not "force" return error. local activeKey = baseKey .. 'active' local activeJobs = getListItems(activeKey, maxCount) if (#activeJobs > 0) then if(ARGV[2] == "") then return -2 -- Error, ExistActiveJobs end end removeLockKeys(activeJobs) maxCount = removeJobs(activeJobs, true, baseKey, maxCount) rcall("LTRIM", activeKey, #activeJobs, -1) if(maxCount <= 0) then return 1 end local delayedKey = baseKey .. 'delayed' maxCount = removeZSetJobs(delayedKey, true, baseKey, maxCount) if(maxCount <= 0) then return 1 end local repeatKey = baseKey .. 'repeat' local repeatJobsIds = getZSetItems(repeatKey, maxCount) for i, key in ipairs(repeatJobsIds) do local jobKey = repeatKey .. ":" .. key rcall("DEL", jobKey) end if(#repeatJobsIds > 0) then for from, to in batches(#repeatJobsIds, 7000) do rcall("ZREM", repeatKey, unpack(repeatJobsIds, from, to)) end end maxCount = maxCount - #repeatJobsIds if(maxCount <= 0) then return 1 end local completedKey = baseKey .. 'completed' maxCount = removeZSetJobs(completedKey, true, baseKey, maxCount) if(maxCount <= 0) then return 1 end local waitKey = baseKey .. 'paused' maxCount = removeListJobs(waitKey, true, baseKey, maxCount) if(maxCount <= 0) then return 1 end local prioritizedKey = baseKey .. 'prioritized' maxCount = removeZSetJobs(prioritizedKey, true, baseKey, maxCount) if(maxCount <= 0) then return 1 end local failedKey = baseKey .. 'failed' maxCount = removeZSetJobs(failedKey, true, baseKey, maxCount) if(maxCount <= 0) then return 1 end if(maxCount > 0) then rcall("DEL", baseKey .. 'events', baseKey .. 'delay', baseKey .. 'stalled-check', baseKey .. 'stalled', baseKey .. 'id', baseKey .. 'pc', baseKey .. 'marker', baseKey .. 'meta', baseKey .. 'metrics:completed', baseKey .. 'metrics:completed:data', baseKey .. 'metrics:failed', baseKey .. 'metrics:failed:data') return 0 else return 1 end `; var obliterate = { name: "obliterate", content: content33, keys: 2 }; // ../../node_modules/bullmq/dist/esm/scripts/paginate-1.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content34 = `--[[ Paginate a set or hash Input: KEYS[1] key pointing to the set or hash to be paginated. ARGV[1] page start offset ARGV[2] page end offset (-1 for all the elements) ARGV[3] cursor ARGV[4] offset ARGV[5] max iterations ARGV[6] fetch jobs? Output: [cursor, offset, items, numItems] ]] local rcall = redis.call -- Includes --[[ Function to achieve pagination for a set or hash. This function simulates pagination in the most efficient way possible for a set using sscan or hscan. The main limitation is that sets are not order preserving, so the pagination is not stable. This means that if the set is modified between pages, the same element may appear in different pages. ]] -- Maximum number of elements to be returned by sscan per iteration. local maxCount = 100 -- Finds the cursor, and returns the first elements available for the requested page. local function findPage(key, command, pageStart, pageSize, cursor, offset, maxIterations, fetchJobs) local items = {} local jobs = {} local iterations = 0 repeat -- Iterate over the set using sscan/hscan. local result = rcall(command, key, cursor, "COUNT", maxCount) cursor = result[1] local members = result[2] local step = 1 if command == "HSCAN" then step = 2 end if #members == 0 then -- If the result is empty, we can return the result. return cursor, offset, items, jobs end local chunkStart = offset local chunkEnd = offset + #members / step local pageEnd = pageStart + pageSize if chunkEnd < pageStart then -- If the chunk is before the page, we can skip it. offset = chunkEnd elseif chunkStart > pageEnd then -- If the chunk is after the page, we can return the result. return cursor, offset, items, jobs else -- If the chunk is overlapping the page, we need to add the elements to the result. for i = 1, #members, step do if offset >= pageEnd then return cursor, offset, items, jobs end if offset >= pageStart then local index = #items + 1 if fetchJobs ~= nil then jobs[#jobs+1] = rcall("HGETALL", members[i]) end if step == 2 then items[index] = {members[i], members[i + 1]} else items[index] = members[i] end end offset = offset + 1 end end iterations = iterations + 1 until cursor == "0" or iterations >= maxIterations return cursor, offset, items, jobs end local key = KEYS[1] local scanCommand = "SSCAN" local countCommand = "SCARD" local type = rcall("TYPE", key)["ok"] if type == "none" then return {0, 0, {}, 0} elseif type == "hash" then scanCommand = "HSCAN" countCommand = "HLEN" elseif type ~= "set" then return redis.error_reply("Pagination is only supported for sets and hashes.") end local numItems = rcall(countCommand, key) local startOffset = tonumber(ARGV[1]) local endOffset = tonumber(ARGV[2]) if endOffset == -1 then endOffset = numItems end local pageSize = (endOffset - startOffset) + 1 local cursor, offset, items, jobs = findPage(key, scanCommand, startOffset, pageSize, ARGV[3], tonumber(ARGV[4]), tonumber(ARGV[5]), ARGV[6]) return {cursor, offset, items, numItems, jobs} `; var paginate = { name: "paginate", content: content34, keys: 1 }; // ../../node_modules/bullmq/dist/esm/scripts/pause-7.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content35 = `--[[ Pauses or resumes a queue globably. Input: KEYS[1] 'wait' or 'paused'' KEYS[2] 'paused' or 'wait' KEYS[3] 'meta' KEYS[4] 'prioritized' KEYS[5] events stream key KEYS[6] 'delayed' KEYS|7] 'marker' ARGV[1] 'paused' or 'resumed' Event: publish paused or resumed event. ]] local rcall = redis.call -- Includes --[[ Add delay marker if needed. ]] -- Includes --[[ Function to return the next delayed job timestamp. ]] local function getNextDelayedTimestamp(delayedKey) local result = rcall("ZRANGE", delayedKey, 0, 0, "WITHSCORES") if #result then local nextTimestamp = tonumber(result[2]) if nextTimestamp ~= nil then return nextTimestamp / 0x1000 end end end local function addDelayMarkerIfNeeded(markerKey, delayedKey) local nextTimestamp = getNextDelayedTimestamp(delayedKey) if nextTimestamp ~= nil then -- Replace the score of the marker with the newest known -- next timestamp. rcall("ZADD", markerKey, nextTimestamp, "1") end end local markerKey = KEYS[7] local hasJobs = rcall("EXISTS", KEYS[1]) == 1 --TODO: check this logic to be reused when changing a delay if hasJobs then rcall("RENAME", KEYS[1], KEYS[2]) end if ARGV[1] == "paused" then rcall("HSET", KEYS[3], "paused", 1) rcall("DEL", markerKey) else rcall("HDEL", KEYS[3], "paused") if hasJobs or rcall("ZCARD", KEYS[4]) > 0 then -- Add marker if there are waiting or priority jobs rcall("ZADD", markerKey, 0, "0") else addDelayMarkerIfNeeded(markerKey, KEYS[6]) end end rcall("XADD", KEYS[5], "*", "event", ARGV[1]); `; var pause = { name: "pause", content: content35, keys: 7 }; // ../../node_modules/bullmq/dist/esm/scripts/promote-9.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content36 = `--[[ Promotes a job that is currently "delayed" to the "waiting" state Input: KEYS[1] 'delayed' KEYS[2] 'wait' KEYS[3] 'paused' KEYS[4] 'meta' KEYS[5] 'prioritized' KEYS[6] 'active' KEYS[7] 'pc' priority counter KEYS[8] 'event stream' KEYS[9] 'marker' ARGV[1] queue.toKey('') ARGV[2] jobId Output: 0 - OK -3 - Job not in delayed zset. Events: 'waiting' ]] local rcall = redis.call local jobId = ARGV[2] -- Includes --[[ Function to add job in target list and add marker if needed. ]] -- Includes --[[ Add marker if needed when a job is available. ]] local function addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) if not isPausedOrMaxed then rcall("ZADD", markerKey, 0, "0") end end local function addJobInTargetList(targetKey, markerKey, pushCmd, isPausedOrMaxed, jobId) rcall(pushCmd, targetKey, jobId) addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) end --[[ Function to add job considering priority. ]] -- Includes --[[ Function to get priority score. ]] local function getPriorityScore(priority, priorityCounterKey) local prioCounter = rcall("INCR", priorityCounterKey) return priority * 0x100000000 + prioCounter % 0x100000000 end local function addJobWithPriority(markerKey, prioritizedKey, priority, jobId, priorityCounterKey, isPausedOrMaxed) local score = getPriorityScore(priority, priorityCounterKey) rcall("ZADD", prioritizedKey, score, jobId) addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) end --[[ Function to check for the meta.paused key to decide if we are paused or not (since an empty list and !EXISTS are not really the same). ]] local function getTargetQueueList(queueMetaKey, activeKey, waitKey, pausedKey) local queueAttributes = rcall("HMGET", queueMetaKey, "paused", "concurrency", "max", "duration") if queueAttributes[1] then return pausedKey, true, queueAttributes[3], queueAttributes[4] else if queueAttributes[2] then local activeCount = rcall("LLEN", activeKey) if activeCount >= tonumber(queueAttributes[2]) then return waitKey, true, queueAttributes[3], queueAttributes[4] else return waitKey, false, queueAttributes[3], queueAttributes[4] end end end return waitKey, false, queueAttributes[3], queueAttributes[4] end if rcall("ZREM", KEYS[1], jobId) == 1 then local jobKey = ARGV[1] .. jobId local priority = tonumber(rcall("HGET", jobKey, "priority")) or 0 local metaKey = KEYS[4] local markerKey = KEYS[9] -- Remove delayed "marker" from the wait list if there is any. -- Since we are adding a job we do not need the marker anymore. -- Markers in waitlist DEPRECATED in v5: Remove in v6. local target, isPausedOrMaxed = getTargetQueueList(metaKey, KEYS[6], KEYS[2], KEYS[3]) local marker = rcall("LINDEX", target, 0) if marker and string.sub(marker, 1, 2) == "0:" then rcall("LPOP", target) end if priority == 0 then -- LIFO or FIFO addJobInTargetList(target, markerKey, "LPUSH", isPausedOrMaxed, jobId) else addJobWithPriority(markerKey, KEYS[5], priority, jobId, KEYS[7], isPausedOrMaxed) end rcall("XADD", KEYS[8], "*", "event", "waiting", "jobId", jobId, "prev", "delayed"); rcall("HSET", jobKey, "delay", 0) return 0 else return -3 end `; var promote = { name: "promote", content: content36, keys: 9 }; // ../../node_modules/bullmq/dist/esm/scripts/releaseLock-1.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content37 = `--[[ Release lock Input: KEYS[1] 'lock', ARGV[1] token ARGV[2] lock duration in milliseconds Output: "OK" if lock extented succesfully. ]] local rcall = redis.call if rcall("GET", KEYS[1]) == ARGV[1] then return rcall("DEL", KEYS[1]) else return 0 end `; var releaseLock = { name: "releaseLock", content: content37, keys: 1 }; // ../../node_modules/bullmq/dist/esm/scripts/removeChildDependency-1.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content38 = `--[[ Break parent-child dependency by removing child reference from parent Input: KEYS[1] 'key' prefix, ARGV[1] job key ARGV[2] parent key Output: 0 - OK 1 - There is not relationship. -1 - Missing job key -5 - Missing parent key ]] local rcall = redis.call local jobKey = ARGV[1] local parentKey = ARGV[2] -- Includes --[[ Check if this job has a parent. If so we will just remove it from the parent child list, but if it is the last child we should move the parent to "wait/paused" which requires code from "moveToFinished" ]] -- Includes --[[ Function to add job in target list and add marker if needed. ]] -- Includes --[[ Add marker if needed when a job is available. ]] local function addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) if not isPausedOrMaxed then rcall("ZADD", markerKey, 0, "0") end end local function addJobInTargetList(targetKey, markerKey, pushCmd, isPausedOrMaxed, jobId) rcall(pushCmd, targetKey, jobId) addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) end --[[ Functions to destructure job key. Just a bit of warning, these functions may be a bit slow and affect performance significantly. ]] local getJobIdFromKey = function (jobKey) return string.match(jobKey, ".*:(.*)") end local getJobKeyPrefix = function (jobKey, jobId) return string.sub(jobKey, 0, #jobKey - #jobId) end --[[ Function to check for the meta.paused key to decide if we are paused or not (since an empty list and !EXISTS are not really the same). ]] local function getTargetQueueList(queueMetaKey, activeKey, waitKey, pausedKey) local queueAttributes = rcall("HMGET", queueMetaKey, "paused", "concurrency", "max", "duration") if queueAttributes[1] then return pausedKey, true, queueAttributes[3], queueAttributes[4] else if queueAttributes[2] then local activeCount = rcall("LLEN", activeKey) if activeCount >= tonumber(queueAttributes[2]) then return waitKey, true, queueAttributes[3], queueAttributes[4] else return waitKey, false, queueAttributes[3], queueAttributes[4] end end end return waitKey, false, queueAttributes[3], queueAttributes[4] end --[[ Function to remove job keys. ]] local function removeJobKeys(jobKey) return rcall("DEL", jobKey, jobKey .. ':logs', jobKey .. ':dependencies', jobKey .. ':processed', jobKey .. ':failed', jobKey .. ':unsuccessful') end local function _moveParentToWait(parentPrefix, parentId, emitEvent) local parentTarget, isPausedOrMaxed = getTargetQueueList(parentPrefix .. "meta", parentPrefix .. "active", parentPrefix .. "wait", parentPrefix .. "paused") addJobInTargetList(parentTarget, parentPrefix .. "marker", "RPUSH", isPausedOrMaxed, parentId) if emitEvent then local parentEventStream = parentPrefix .. "events" rcall("XADD", parentEventStream, "*", "event", "waiting", "jobId", parentId, "prev", "waiting-children") end end local function removeParentDependencyKey(jobKey, hard, parentKey, baseKey, debounceId) if parentKey then local parentDependenciesKey = parentKey .. ":dependencies" local result = rcall("SREM", parentDependenciesKey, jobKey) if result > 0 then local pendingDependencies = rcall("SCARD", parentDependenciesKey) if pendingDependencies == 0 then local parentId = getJobIdFromKey(parentKey) local parentPrefix = getJobKeyPrefix(parentKey, parentId) local numRemovedElements = rcall("ZREM", parentPrefix .. "waiting-children", parentId) if numRemovedElements == 1 then if hard then -- remove parent in same queue if parentPrefix == baseKey then removeParentDependencyKey(parentKey, hard, nil, baseKey, nil) removeJobKeys(parentKey) if debounceId then rcall("DEL", parentPrefix .. "de:" .. debounceId) end else _moveParentToWait(parentPrefix, parentId) end else _moveParentToWait(parentPrefix, parentId, true) end end end return true end else local parentAttributes = rcall("HMGET", jobKey, "parentKey", "deid") local missedParentKey = parentAttributes[1] if( (type(missedParentKey) == "string") and missedParentKey ~= "" and (rcall("EXISTS", missedParentKey) == 1)) then local parentDependenciesKey = missedParentKey .. ":dependencies" local result = rcall("SREM", parentDependenciesKey, jobKey) if result > 0 then local pendingDependencies = rcall("SCARD", parentDependenciesKey) if pendingDependencies == 0 then local parentId = getJobIdFromKey(missedParentKey) local parentPrefix = getJobKeyPrefix(missedParentKey, parentId) local numRemovedElements = rcall("ZREM", parentPrefix .. "waiting-children", parentId) if numRemovedElements == 1 then if hard then if parentPrefix == baseKey then removeParentDependencyKey(missedParentKey, hard, nil, baseKey, nil) removeJobKeys(missedParentKey) if parentAttributes[2] then rcall("DEL", parentPrefix .. "de:" .. parentAttributes[2]) end else _moveParentToWait(parentPrefix, parentId) end else _moveParentToWait(parentPrefix, parentId, true) end end end return true end end end return false end if rcall("EXISTS", jobKey) ~= 1 then return -1 end if rcall("EXISTS", parentKey) ~= 1 then return -5 end if removeParentDependencyKey(jobKey, false, parentKey, KEYS[1], nil) then rcall("HDEL", jobKey, "parentKey", "parent") return 0 else return 1 end`; var removeChildDependency = { name: "removeChildDependency", content: content38, keys: 1 }; // ../../node_modules/bullmq/dist/esm/scripts/removeDeduplicationKey-1.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content39 = `--[[ Remove deduplication key if it matches the job id. Input: KEYS[1] deduplication key ARGV[1] job id Output: 0 - false 1 - true ]] local rcall = redis.call local deduplicationKey = KEYS[1] local jobId = ARGV[1] local currentJobId = rcall('GET', deduplicationKey) if currentJobId and currentJobId == jobId then return rcall("DEL", deduplicationKey) end return 0 `; var removeDeduplicationKey = { name: "removeDeduplicationKey", content: content39, keys: 1 }; // ../../node_modules/bullmq/dist/esm/scripts/removeJob-2.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content40 = `--[[ Remove a job from all the statuses it may be in as well as all its data. In order to be able to remove a job, it cannot be active. Input: KEYS[1] jobKey KEYS[2] repeat key ARGV[1] jobId ARGV[2] remove children ARGV[3] queue prefix Events: 'removed' ]] local rcall = redis.call -- Includes --[[ Function to check if the job belongs to a job scheduler and current delayed job matches with jobId ]] local function isJobSchedulerJob(jobId, jobKey, jobSchedulersKey) local repeatJobKey = rcall("HGET", jobKey, "rjk") if repeatJobKey then local prevMillis = rcall("ZSCORE", jobSchedulersKey, repeatJobKey) if prevMillis then local currentDelayedJobId = "repeat:" .. repeatJobKey .. ":" .. prevMillis return jobId == currentDelayedJobId end end return false end --[[ Function to recursively check if there are no locks on the jobs to be removed. returns: boolean ]] --[[ Functions to destructure job key. Just a bit of warning, these functions may be a bit slow and affect performance significantly. ]] local getJobIdFromKey = function (jobKey) return string.match(jobKey, ".*:(.*)") end local getJobKeyPrefix = function (jobKey, jobId) return string.sub(jobKey, 0, #jobKey - #jobId) end local function isLocked( prefix, jobId, removeChildren) local jobKey = prefix .. jobId; -- Check if this job is locked local lockKey = jobKey .. ':lock' local lock = rcall("GET", lockKey) if not lock then if removeChildren == "1" then local dependencies = rcall("SMEMBERS", jobKey .. ":dependencies") if (#dependencies > 0) then for i, childJobKey in ipairs(dependencies) do -- We need to get the jobId for this job. local childJobId = getJobIdFromKey(childJobKey) local childJobPrefix = getJobKeyPrefix(childJobKey, childJobId) local result = isLocked( childJobPrefix, childJobId, removeChildren ) if result then return true end end end end return false end return true end --[[ Remove a job from all the statuses it may be in as well as all its data, including its children. Active children can be ignored. Events: 'removed' ]] local rcall = redis.call -- Includes --[[ Function to get max events value or set by default 10000. ]] local function getOrSetMaxEvents(metaKey) local maxEvents = rcall("HGET", metaKey, "opts.maxLenEvents") if not maxEvents then maxEvents = 10000 rcall("HSET", metaKey, "opts.maxLenEvents", maxEvents) end return maxEvents end --[[ Function to remove deduplication key if needed when a job is being removed. ]] local function removeDeduplicationKeyIfNeededOnRemoval(prefixKey, jobId, deduplicationId) if deduplicationId then local deduplicationKey = prefixKey .. "de:" .. deduplicationId local currentJobId = rcall('GET', deduplicationKey) if currentJobId and currentJobId == jobId then return rcall("DEL", deduplicationKey) end end end --[[ Function to remove from any state. returns: prev state ]] local function removeJobFromAnyState( prefix, jobId) -- We start with the ZSCORE checks, since they have O(1) complexity if rcall("ZSCORE", prefix .. "completed", jobId) then rcall("ZREM", prefix .. "completed", jobId) return "completed" elseif rcall("ZSCORE", prefix .. "waiting-children", jobId) then rcall("ZREM", prefix .. "waiting-children", jobId) return "waiting-children" elseif rcall("ZSCORE", prefix .. "delayed", jobId) then rcall("ZREM", prefix .. "delayed", jobId) return "delayed" elseif rcall("ZSCORE", prefix .. "failed", jobId) then rcall("ZREM", prefix .. "failed", jobId) return "failed" elseif rcall("ZSCORE", prefix .. "prioritized", jobId) then rcall("ZREM", prefix .. "prioritized", jobId) return "prioritized" -- We remove only 1 element from the list, since we assume they are not added multiple times elseif rcall("LREM", prefix .. "wait", 1, jobId) == 1 then return "wait" elseif rcall("LREM", prefix .. "paused", 1, jobId) == 1 then return "paused" elseif rcall("LREM", prefix .. "active", 1, jobId) == 1 then return "active" end return "unknown" end --[[ Function to remove job keys. ]] local function removeJobKeys(jobKey) return rcall("DEL", jobKey, jobKey .. ':logs', jobKey .. ':dependencies', jobKey .. ':processed', jobKey .. ':failed', jobKey .. ':unsuccessful') end --[[ Check if this job has a parent. If so we will just remove it from the parent child list, but if it is the last child we should move the parent to "wait/paused" which requires code from "moveToFinished" ]] -- Includes --[[ Function to add job in target list and add marker if needed. ]] -- Includes --[[ Add marker if needed when a job is available. ]] local function addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) if not isPausedOrMaxed then rcall("ZADD", markerKey, 0, "0") end end local function addJobInTargetList(targetKey, markerKey, pushCmd, isPausedOrMaxed, jobId) rcall(pushCmd, targetKey, jobId) addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) end --[[ Function to check for the meta.paused key to decide if we are paused or not (since an empty list and !EXISTS are not really the same). ]] local function getTargetQueueList(queueMetaKey, activeKey, waitKey, pausedKey) local queueAttributes = rcall("HMGET", queueMetaKey, "paused", "concurrency", "max", "duration") if queueAttributes[1] then return pausedKey, true, queueAttributes[3], queueAttributes[4] else if queueAttributes[2] then local activeCount = rcall("LLEN", activeKey) if activeCount >= tonumber(queueAttributes[2]) then return waitKey, true, queueAttributes[3], queueAttributes[4] else return waitKey, false, queueAttributes[3], queueAttributes[4] end end end return waitKey, false, queueAttributes[3], queueAttributes[4] end local function _moveParentToWait(parentPrefix, parentId, emitEvent) local parentTarget, isPausedOrMaxed = getTargetQueueList(parentPrefix .. "meta", parentPrefix .. "active", parentPrefix .. "wait", parentPrefix .. "paused") addJobInTargetList(parentTarget, parentPrefix .. "marker", "RPUSH", isPausedOrMaxed, parentId) if emitEvent then local parentEventStream = parentPrefix .. "events" rcall("XADD", parentEventStream, "*", "event", "waiting", "jobId", parentId, "prev", "waiting-children") end end local function removeParentDependencyKey(jobKey, hard, parentKey, baseKey, debounceId) if parentKey then local parentDependenciesKey = parentKey .. ":dependencies" local result = rcall("SREM", parentDependenciesKey, jobKey) if result > 0 then local pendingDependencies = rcall("SCARD", parentDependenciesKey) if pendingDependencies == 0 then local parentId = getJobIdFromKey(parentKey) local parentPrefix = getJobKeyPrefix(parentKey, parentId) local numRemovedElements = rcall("ZREM", parentPrefix .. "waiting-children", parentId) if numRemovedElements == 1 then if hard then -- remove parent in same queue if parentPrefix == baseKey then removeParentDependencyKey(parentKey, hard, nil, baseKey, nil) removeJobKeys(parentKey) if debounceId then rcall("DEL", parentPrefix .. "de:" .. debounceId) end else _moveParentToWait(parentPrefix, parentId) end else _moveParentToWait(parentPrefix, parentId, true) end end end return true end else local parentAttributes = rcall("HMGET", jobKey, "parentKey", "deid") local missedParentKey = parentAttributes[1] if( (type(missedParentKey) == "string") and missedParentKey ~= "" and (rcall("EXISTS", missedParentKey) == 1)) then local parentDependenciesKey = missedParentKey .. ":dependencies" local result = rcall("SREM", parentDependenciesKey, jobKey) if result > 0 then local pendingDependencies = rcall("SCARD", parentDependenciesKey) if pendingDependencies == 0 then local parentId = getJobIdFromKey(missedParentKey) local parentPrefix = getJobKeyPrefix(missedParentKey, parentId) local numRemovedElements = rcall("ZREM", parentPrefix .. "waiting-children", parentId) if numRemovedElements == 1 then if hard then if parentPrefix == baseKey then removeParentDependencyKey(missedParentKey, hard, nil, baseKey, nil) removeJobKeys(missedParentKey) if parentAttributes[2] then rcall("DEL", parentPrefix .. "de:" .. parentAttributes[2]) end else _moveParentToWait(parentPrefix, parentId) end else _moveParentToWait(parentPrefix, parentId, true) end end end return true end end end return false end local removeJobChildren local removeJobWithChildren removeJobChildren = function(prefix, jobKey, options) -- Check if this job has children -- If so, we are going to try to remove the children recursively in a depth-first way -- because if some job is locked, we must exit with an error. if not options.ignoreProcessed then local processed = rcall("HGETALL", jobKey .. ":processed") if #processed > 0 then for i = 1, #processed, 2 do local childJobId = getJobIdFromKey(processed[i]) local childJobPrefix = getJobKeyPrefix(processed[i], childJobId) removeJobWithChildren(childJobPrefix, childJobId, jobKey, options) end end local failed = rcall("HGETALL", jobKey .. ":failed") if #failed > 0 then for i = 1, #failed, 2 do local childJobId = getJobIdFromKey(failed[i]) local childJobPrefix = getJobKeyPrefix(failed[i], childJobId) removeJobWithChildren(childJobPrefix, childJobId, jobKey, options) end end local unsuccessful = rcall("ZRANGE", jobKey .. ":unsuccessful", 0, -1) if #unsuccessful > 0 then for i = 1, #unsuccessful, 1 do local childJobId = getJobIdFromKey(unsuccessful[i]) local childJobPrefix = getJobKeyPrefix(unsuccessful[i], childJobId) removeJobWithChildren(childJobPrefix, childJobId, jobKey, options) end end end local dependencies = rcall("SMEMBERS", jobKey .. ":dependencies") if #dependencies > 0 then for i, childJobKey in ipairs(dependencies) do local childJobId = getJobIdFromKey(childJobKey) local childJobPrefix = getJobKeyPrefix(childJobKey, childJobId) removeJobWithChildren(childJobPrefix, childJobId, jobKey, options) end end end removeJobWithChildren = function(prefix, jobId, parentKey, options) local jobKey = prefix .. jobId if options.ignoreLocked then if isLocked(prefix, jobId) then return end end -- Check if job is in the failed zset local failedSet = prefix .. "failed" if not (options.ignoreProcessed and rcall("ZSCORE", failedSet, jobId)) then removeParentDependencyKey(jobKey, false, parentKey, nil) if options.removeChildren then removeJobChildren(prefix, jobKey, options) end local prev = removeJobFromAnyState(prefix, jobId) local deduplicationId = rcall("HGET", jobKey, "deid") removeDeduplicationKeyIfNeededOnRemoval(prefix, jobId, deduplicationId) if removeJobKeys(jobKey) > 0 then local metaKey = prefix .. "meta" local maxEvents = getOrSetMaxEvents(metaKey) rcall("XADD", prefix .. "events", "MAXLEN", "~", maxEvents, "*", "event", "removed", "jobId", jobId, "prev", prev) end end end local jobId = ARGV[1] local shouldRemoveChildren = ARGV[2] local prefix = ARGV[3] local jobKey = KEYS[1] local repeatKey = KEYS[2] if isJobSchedulerJob(jobId, jobKey, repeatKey) then return -8 end if not isLocked(prefix, jobId, shouldRemoveChildren) then local options = { removeChildren = shouldRemoveChildren == "1", ignoreProcessed = false, ignoreLocked = false } removeJobWithChildren(prefix, jobId, nil, options) return 1 end return 0 `; var removeJob = { name: "removeJob", content: content40, keys: 2 }; // ../../node_modules/bullmq/dist/esm/scripts/removeJobScheduler-3.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content41 = `--[[ Removes a job scheduler and its next scheduled job. Input: KEYS[1] job schedulers key KEYS[2] delayed jobs key KEYS[3] events key ARGV[1] job scheduler id ARGV[2] prefix key Output: 0 - OK 1 - Missing repeat job Events: 'removed' ]] local rcall = redis.call -- Includes --[[ Function to remove job keys. ]] local function removeJobKeys(jobKey) return rcall("DEL", jobKey, jobKey .. ':logs', jobKey .. ':dependencies', jobKey .. ':processed', jobKey .. ':failed', jobKey .. ':unsuccessful') end local jobSchedulerId = ARGV[1] local prefix = ARGV[2] local millis = rcall("ZSCORE", KEYS[1], jobSchedulerId) if millis then -- Delete next programmed job. local delayedJobId = "repeat:" .. jobSchedulerId .. ":" .. millis if(rcall("ZREM", KEYS[2], delayedJobId) == 1) then removeJobKeys(prefix .. delayedJobId) rcall("XADD", KEYS[3], "*", "event", "removed", "jobId", delayedJobId, "prev", "delayed") end end if(rcall("ZREM", KEYS[1], jobSchedulerId) == 1) then rcall("DEL", KEYS[1] .. ":" .. jobSchedulerId) return 0 end return 1 `; var removeJobScheduler = { name: "removeJobScheduler", content: content41, keys: 3 }; // ../../node_modules/bullmq/dist/esm/scripts/removeOrphanedJobs-1.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content42 = `--[[ Removes orphaned job keys that exist in Redis but are not referenced in any queue state set. Checks each candidate atomically. Input: KEYS[1] base prefix key including trailing colon (e.g. bull:queueName:) ARGV[1] number of state key suffixes ARGV[2 .. 1+N] state key suffixes (e.g. active, wait, completed, ...) ARGV[2+N] number of job sub-key suffixes ARGV[3+N .. 2+N+M] job sub-key suffixes (e.g. logs, dependencies, ...) ARGV[3+N+M .. end] candidate job IDs to check Output: number of removed jobs ]] local rcall = redis.call local basePrefix = KEYS[1] -- Parse state key suffixes and cache their full key names + types. local stateKeyCount = tonumber(ARGV[1]) local stateKeys = {} local stateKeyTypes = {} for i = 1, stateKeyCount do local fullKey = basePrefix .. ARGV[1 + i] stateKeys[i] = fullKey stateKeyTypes[i] = rcall('TYPE', fullKey)['ok'] end -- Parse job sub-key suffixes. local subKeyCountIdx = 2 + stateKeyCount local subKeyCount = tonumber(ARGV[subKeyCountIdx]) local subKeySuffixes = {} for i = 1, subKeyCount do subKeySuffixes[i] = ARGV[subKeyCountIdx + i] end -- Process candidate job IDs. local candidateStart = subKeyCountIdx + subKeyCount + 1 local removedCount = 0 for c = candidateStart, #ARGV do local jobId = ARGV[c] local found = false for i = 1, stateKeyCount do local kt = stateKeyTypes[i] if kt == 'list' then if rcall('LPOS', stateKeys[i], jobId) then found = true break end elseif kt == 'zset' then if rcall('ZSCORE', stateKeys[i], jobId) then found = true break end elseif kt == 'set' then if rcall('SISMEMBER', stateKeys[i], jobId) == 1 then found = true break end end end if not found then local jobKey = basePrefix .. jobId local keysToDelete = { jobKey } for _, suffix in ipairs(subKeySuffixes) do keysToDelete[#keysToDelete + 1] = jobKey .. ':' .. suffix end rcall('DEL', unpack(keysToDelete)) removedCount = removedCount + 1 end end return removedCount `; var removeOrphanedJobs = { name: "removeOrphanedJobs", content: content42, keys: 1 }; // ../../node_modules/bullmq/dist/esm/scripts/removeRepeatable-3.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content43 = `--[[ Removes a repeatable job Input: KEYS[1] repeat jobs key KEYS[2] delayed jobs key KEYS[3] events key ARGV[1] old repeat job id ARGV[2] options concat ARGV[3] repeat job key ARGV[4] prefix key Output: 0 - OK 1 - Missing repeat job Events: 'removed' ]] local rcall = redis.call local millis = rcall("ZSCORE", KEYS[1], ARGV[2]) -- Includes --[[ Function to remove job keys. ]] local function removeJobKeys(jobKey) return rcall("DEL", jobKey, jobKey .. ':logs', jobKey .. ':dependencies', jobKey .. ':processed', jobKey .. ':failed', jobKey .. ':unsuccessful') end -- legacy removal TODO: remove in next breaking change if millis then -- Delete next programmed job. local repeatJobId = ARGV[1] .. millis if(rcall("ZREM", KEYS[2], repeatJobId) == 1) then removeJobKeys(ARGV[4] .. repeatJobId) rcall("XADD", KEYS[3], "*", "event", "removed", "jobId", repeatJobId, "prev", "delayed"); end end if(rcall("ZREM", KEYS[1], ARGV[2]) == 1) then return 0 end -- new removal millis = rcall("ZSCORE", KEYS[1], ARGV[3]) if millis then -- Delete next programmed job. local repeatJobId = "repeat:" .. ARGV[3] .. ":" .. millis if(rcall("ZREM", KEYS[2], repeatJobId) == 1) then removeJobKeys(ARGV[4] .. repeatJobId) rcall("XADD", KEYS[3], "*", "event", "removed", "jobId", repeatJobId, "prev", "delayed") end end if(rcall("ZREM", KEYS[1], ARGV[3]) == 1) then rcall("DEL", KEYS[1] .. ":" .. ARGV[3]) return 0 end return 1 `; var removeRepeatable = { name: "removeRepeatable", content: content43, keys: 3 }; // ../../node_modules/bullmq/dist/esm/scripts/removeUnprocessedChildren-2.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content44 = `--[[ Remove a job from all the statuses it may be in as well as all its data. In order to be able to remove a job, it cannot be active. Input: KEYS[1] jobKey KEYS[2] meta key ARGV[1] prefix ARGV[2] jobId Events: 'removed' for every children removed ]] -- Includes --[[ Remove a job from all the statuses it may be in as well as all its data, including its children. Active children can be ignored. Events: 'removed' ]] local rcall = redis.call -- Includes --[[ Functions to destructure job key. Just a bit of warning, these functions may be a bit slow and affect performance significantly. ]] local getJobIdFromKey = function (jobKey) return string.match(jobKey, ".*:(.*)") end local getJobKeyPrefix = function (jobKey, jobId) return string.sub(jobKey, 0, #jobKey - #jobId) end --[[ Function to get max events value or set by default 10000. ]] local function getOrSetMaxEvents(metaKey) local maxEvents = rcall("HGET", metaKey, "opts.maxLenEvents") if not maxEvents then maxEvents = 10000 rcall("HSET", metaKey, "opts.maxLenEvents", maxEvents) end return maxEvents end --[[ Function to check if the job belongs to a job scheduler and current delayed job matches with jobId ]] local function isJobSchedulerJob(jobId, jobKey, jobSchedulersKey) local repeatJobKey = rcall("HGET", jobKey, "rjk") if repeatJobKey then local prevMillis = rcall("ZSCORE", jobSchedulersKey, repeatJobKey) if prevMillis then local currentDelayedJobId = "repeat:" .. repeatJobKey .. ":" .. prevMillis return jobId == currentDelayedJobId end end return false end --[[ Function to remove deduplication key if needed when a job is being removed. ]] local function removeDeduplicationKeyIfNeededOnRemoval(prefixKey, jobId, deduplicationId) if deduplicationId then local deduplicationKey = prefixKey .. "de:" .. deduplicationId local currentJobId = rcall('GET', deduplicationKey) if currentJobId and currentJobId == jobId then return rcall("DEL", deduplicationKey) end end end --[[ Function to remove from any state. returns: prev state ]] local function removeJobFromAnyState( prefix, jobId) -- We start with the ZSCORE checks, since they have O(1) complexity if rcall("ZSCORE", prefix .. "completed", jobId) then rcall("ZREM", prefix .. "completed", jobId) return "completed" elseif rcall("ZSCORE", prefix .. "waiting-children", jobId) then rcall("ZREM", prefix .. "waiting-children", jobId) return "waiting-children" elseif rcall("ZSCORE", prefix .. "delayed", jobId) then rcall("ZREM", prefix .. "delayed", jobId) return "delayed" elseif rcall("ZSCORE", prefix .. "failed", jobId) then rcall("ZREM", prefix .. "failed", jobId) return "failed" elseif rcall("ZSCORE", prefix .. "prioritized", jobId) then rcall("ZREM", prefix .. "prioritized", jobId) return "prioritized" -- We remove only 1 element from the list, since we assume they are not added multiple times elseif rcall("LREM", prefix .. "wait", 1, jobId) == 1 then return "wait" elseif rcall("LREM", prefix .. "paused", 1, jobId) == 1 then return "paused" elseif rcall("LREM", prefix .. "active", 1, jobId) == 1 then return "active" end return "unknown" end --[[ Function to remove job keys. ]] local function removeJobKeys(jobKey) return rcall("DEL", jobKey, jobKey .. ':logs', jobKey .. ':dependencies', jobKey .. ':processed', jobKey .. ':failed', jobKey .. ':unsuccessful') end --[[ Check if this job has a parent. If so we will just remove it from the parent child list, but if it is the last child we should move the parent to "wait/paused" which requires code from "moveToFinished" ]] -- Includes --[[ Function to add job in target list and add marker if needed. ]] -- Includes --[[ Add marker if needed when a job is available. ]] local function addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) if not isPausedOrMaxed then rcall("ZADD", markerKey, 0, "0") end end local function addJobInTargetList(targetKey, markerKey, pushCmd, isPausedOrMaxed, jobId) rcall(pushCmd, targetKey, jobId) addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) end --[[ Function to check for the meta.paused key to decide if we are paused or not (since an empty list and !EXISTS are not really the same). ]] local function getTargetQueueList(queueMetaKey, activeKey, waitKey, pausedKey) local queueAttributes = rcall("HMGET", queueMetaKey, "paused", "concurrency", "max", "duration") if queueAttributes[1] then return pausedKey, true, queueAttributes[3], queueAttributes[4] else if queueAttributes[2] then local activeCount = rcall("LLEN", activeKey) if activeCount >= tonumber(queueAttributes[2]) then return waitKey, true, queueAttributes[3], queueAttributes[4] else return waitKey, false, queueAttributes[3], queueAttributes[4] end end end return waitKey, false, queueAttributes[3], queueAttributes[4] end local function _moveParentToWait(parentPrefix, parentId, emitEvent) local parentTarget, isPausedOrMaxed = getTargetQueueList(parentPrefix .. "meta", parentPrefix .. "active", parentPrefix .. "wait", parentPrefix .. "paused") addJobInTargetList(parentTarget, parentPrefix .. "marker", "RPUSH", isPausedOrMaxed, parentId) if emitEvent then local parentEventStream = parentPrefix .. "events" rcall("XADD", parentEventStream, "*", "event", "waiting", "jobId", parentId, "prev", "waiting-children") end end local function removeParentDependencyKey(jobKey, hard, parentKey, baseKey, debounceId) if parentKey then local parentDependenciesKey = parentKey .. ":dependencies" local result = rcall("SREM", parentDependenciesKey, jobKey) if result > 0 then local pendingDependencies = rcall("SCARD", parentDependenciesKey) if pendingDependencies == 0 then local parentId = getJobIdFromKey(parentKey) local parentPrefix = getJobKeyPrefix(parentKey, parentId) local numRemovedElements = rcall("ZREM", parentPrefix .. "waiting-children", parentId) if numRemovedElements == 1 then if hard then -- remove parent in same queue if parentPrefix == baseKey then removeParentDependencyKey(parentKey, hard, nil, baseKey, nil) removeJobKeys(parentKey) if debounceId then rcall("DEL", parentPrefix .. "de:" .. debounceId) end else _moveParentToWait(parentPrefix, parentId) end else _moveParentToWait(parentPrefix, parentId, true) end end end return true end else local parentAttributes = rcall("HMGET", jobKey, "parentKey", "deid") local missedParentKey = parentAttributes[1] if( (type(missedParentKey) == "string") and missedParentKey ~= "" and (rcall("EXISTS", missedParentKey) == 1)) then local parentDependenciesKey = missedParentKey .. ":dependencies" local result = rcall("SREM", parentDependenciesKey, jobKey) if result > 0 then local pendingDependencies = rcall("SCARD", parentDependenciesKey) if pendingDependencies == 0 then local parentId = getJobIdFromKey(missedParentKey) local parentPrefix = getJobKeyPrefix(missedParentKey, parentId) local numRemovedElements = rcall("ZREM", parentPrefix .. "waiting-children", parentId) if numRemovedElements == 1 then if hard then if parentPrefix == baseKey then removeParentDependencyKey(missedParentKey, hard, nil, baseKey, nil) removeJobKeys(missedParentKey) if parentAttributes[2] then rcall("DEL", parentPrefix .. "de:" .. parentAttributes[2]) end else _moveParentToWait(parentPrefix, parentId) end else _moveParentToWait(parentPrefix, parentId, true) end end end return true end end end return false end --[[ Function to recursively check if there are no locks on the jobs to be removed. returns: boolean ]] local function isLocked( prefix, jobId, removeChildren) local jobKey = prefix .. jobId; -- Check if this job is locked local lockKey = jobKey .. ':lock' local lock = rcall("GET", lockKey) if not lock then if removeChildren == "1" then local dependencies = rcall("SMEMBERS", jobKey .. ":dependencies") if (#dependencies > 0) then for i, childJobKey in ipairs(dependencies) do -- We need to get the jobId for this job. local childJobId = getJobIdFromKey(childJobKey) local childJobPrefix = getJobKeyPrefix(childJobKey, childJobId) local result = isLocked( childJobPrefix, childJobId, removeChildren ) if result then return true end end end end return false end return true end local removeJobChildren local removeJobWithChildren removeJobChildren = function(prefix, jobKey, options) -- Check if this job has children -- If so, we are going to try to remove the children recursively in a depth-first way -- because if some job is locked, we must exit with an error. if not options.ignoreProcessed then local processed = rcall("HGETALL", jobKey .. ":processed") if #processed > 0 then for i = 1, #processed, 2 do local childJobId = getJobIdFromKey(processed[i]) local childJobPrefix = getJobKeyPrefix(processed[i], childJobId) removeJobWithChildren(childJobPrefix, childJobId, jobKey, options) end end local failed = rcall("HGETALL", jobKey .. ":failed") if #failed > 0 then for i = 1, #failed, 2 do local childJobId = getJobIdFromKey(failed[i]) local childJobPrefix = getJobKeyPrefix(failed[i], childJobId) removeJobWithChildren(childJobPrefix, childJobId, jobKey, options) end end local unsuccessful = rcall("ZRANGE", jobKey .. ":unsuccessful", 0, -1) if #unsuccessful > 0 then for i = 1, #unsuccessful, 1 do local childJobId = getJobIdFromKey(unsuccessful[i]) local childJobPrefix = getJobKeyPrefix(unsuccessful[i], childJobId) removeJobWithChildren(childJobPrefix, childJobId, jobKey, options) end end end local dependencies = rcall("SMEMBERS", jobKey .. ":dependencies") if #dependencies > 0 then for i, childJobKey in ipairs(dependencies) do local childJobId = getJobIdFromKey(childJobKey) local childJobPrefix = getJobKeyPrefix(childJobKey, childJobId) removeJobWithChildren(childJobPrefix, childJobId, jobKey, options) end end end removeJobWithChildren = function(prefix, jobId, parentKey, options) local jobKey = prefix .. jobId if options.ignoreLocked then if isLocked(prefix, jobId) then return end end -- Check if job is in the failed zset local failedSet = prefix .. "failed" if not (options.ignoreProcessed and rcall("ZSCORE", failedSet, jobId)) then removeParentDependencyKey(jobKey, false, parentKey, nil) if options.removeChildren then removeJobChildren(prefix, jobKey, options) end local prev = removeJobFromAnyState(prefix, jobId) local deduplicationId = rcall("HGET", jobKey, "deid") removeDeduplicationKeyIfNeededOnRemoval(prefix, jobId, deduplicationId) if removeJobKeys(jobKey) > 0 then local metaKey = prefix .. "meta" local maxEvents = getOrSetMaxEvents(metaKey) rcall("XADD", prefix .. "events", "MAXLEN", "~", maxEvents, "*", "event", "removed", "jobId", jobId, "prev", prev) end end end local prefix = ARGV[1] local jobId = ARGV[2] local jobKey = KEYS[1] local metaKey = KEYS[2] local options = { removeChildren = "1", ignoreProcessed = true, ignoreLocked = true } removeJobChildren(prefix, jobKey, options) `; var removeUnprocessedChildren = { name: "removeUnprocessedChildren", content: content44, keys: 2 }; // ../../node_modules/bullmq/dist/esm/scripts/reprocessJob-8.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content45 = `--[[ Attempts to reprocess a job Input: KEYS[1] job key KEYS[2] events stream KEYS[3] job state KEYS[4] wait key KEYS[5] meta KEYS[6] paused key KEYS[7] active key KEYS[8] marker key ARGV[1] job.id ARGV[2] (job.opts.lifo ? 'R' : 'L') + 'PUSH' ARGV[3] propVal - failedReason/returnvalue ARGV[4] prev state - failed/completed ARGV[5] reset attemptsMade - "1" or "0" ARGV[6] reset attemptsStarted - "1" or "0" Output: 1 means the operation was a success -1 means the job does not exist -3 means the job was not found in the expected set. ]] local rcall = redis.call; -- Includes --[[ Function to add job in target list and add marker if needed. ]] -- Includes --[[ Add marker if needed when a job is available. ]] local function addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) if not isPausedOrMaxed then rcall("ZADD", markerKey, 0, "0") end end local function addJobInTargetList(targetKey, markerKey, pushCmd, isPausedOrMaxed, jobId) rcall(pushCmd, targetKey, jobId) addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) end --[[ Function to get max events value or set by default 10000. ]] local function getOrSetMaxEvents(metaKey) local maxEvents = rcall("HGET", metaKey, "opts.maxLenEvents") if not maxEvents then maxEvents = 10000 rcall("HSET", metaKey, "opts.maxLenEvents", maxEvents) end return maxEvents end --[[ Function to check for the meta.paused key to decide if we are paused or not (since an empty list and !EXISTS are not really the same). ]] local function getTargetQueueList(queueMetaKey, activeKey, waitKey, pausedKey) local queueAttributes = rcall("HMGET", queueMetaKey, "paused", "concurrency", "max", "duration") if queueAttributes[1] then return pausedKey, true, queueAttributes[3], queueAttributes[4] else if queueAttributes[2] then local activeCount = rcall("LLEN", activeKey) if activeCount >= tonumber(queueAttributes[2]) then return waitKey, true, queueAttributes[3], queueAttributes[4] else return waitKey, false, queueAttributes[3], queueAttributes[4] end end end return waitKey, false, queueAttributes[3], queueAttributes[4] end local jobKey = KEYS[1] if rcall("EXISTS", jobKey) == 1 then local jobId = ARGV[1] if (rcall("ZREM", KEYS[3], jobId) == 1) then local attributesToRemove = {} if ARGV[5] == "1" then table.insert(attributesToRemove, "atm") end if ARGV[6] == "1" then table.insert(attributesToRemove, "ats") end rcall("HDEL", jobKey, "finishedOn", "processedOn", ARGV[3], unpack(attributesToRemove)) local target, isPausedOrMaxed = getTargetQueueList(KEYS[5], KEYS[7], KEYS[4], KEYS[6]) addJobInTargetList(target, KEYS[8], ARGV[2], isPausedOrMaxed, jobId) local parentKey = rcall("HGET", jobKey, "parentKey") if parentKey and rcall("EXISTS", parentKey) == 1 then if ARGV[4] == "failed" then if rcall("ZREM", parentKey .. ":unsuccessful", jobKey) == 1 or rcall("ZREM", parentKey .. ":failed", jobKey) == 1 then rcall("SADD", parentKey .. ":dependencies", jobKey) end else if rcall("HDEL", parentKey .. ":processed", jobKey) == 1 then rcall("SADD", parentKey .. ":dependencies", jobKey) end end end local maxEvents = getOrSetMaxEvents(KEYS[5]) -- Emit waiting event rcall("XADD", KEYS[2], "MAXLEN", "~", maxEvents, "*", "event", "waiting", "jobId", jobId, "prev", ARGV[4]); return 1 else return -3 end else return -1 end `; var reprocessJob = { name: "reprocessJob", content: content45, keys: 8 }; // ../../node_modules/bullmq/dist/esm/scripts/retryJob-11.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content46 = `--[[ Retries a failed job by moving it back to the wait queue. Input: KEYS[1] 'active', KEYS[2] 'wait' KEYS[3] 'paused' KEYS[4] job key KEYS[5] 'meta' KEYS[6] events stream KEYS[7] delayed key KEYS[8] prioritized key KEYS[9] 'pc' priority counter KEYS[10] 'marker' KEYS[11] 'stalled' ARGV[1] key prefix ARGV[2] timestamp ARGV[3] pushCmd ARGV[4] jobId ARGV[5] token ARGV[6] optional job fields to update Events: 'waiting' Output: 0 - OK -1 - Missing key -2 - Missing lock -3 - Job not in active set ]] local rcall = redis.call -- Includes --[[ Function to add job in target list and add marker if needed. ]] -- Includes --[[ Add marker if needed when a job is available. ]] local function addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) if not isPausedOrMaxed then rcall("ZADD", markerKey, 0, "0") end end local function addJobInTargetList(targetKey, markerKey, pushCmd, isPausedOrMaxed, jobId) rcall(pushCmd, targetKey, jobId) addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) end --[[ Function to add job considering priority. ]] -- Includes --[[ Function to get priority score. ]] local function getPriorityScore(priority, priorityCounterKey) local prioCounter = rcall("INCR", priorityCounterKey) return priority * 0x100000000 + prioCounter % 0x100000000 end local function addJobWithPriority(markerKey, prioritizedKey, priority, jobId, priorityCounterKey, isPausedOrMaxed) local score = getPriorityScore(priority, priorityCounterKey) rcall("ZADD", prioritizedKey, score, jobId) addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) end --[[ Function to get max events value or set by default 10000. ]] local function getOrSetMaxEvents(metaKey) local maxEvents = rcall("HGET", metaKey, "opts.maxLenEvents") if not maxEvents then maxEvents = 10000 rcall("HSET", metaKey, "opts.maxLenEvents", maxEvents) end return maxEvents end --[[ Function to check for the meta.paused key to decide if we are paused or not (since an empty list and !EXISTS are not really the same). ]] local function getTargetQueueList(queueMetaKey, activeKey, waitKey, pausedKey) local queueAttributes = rcall("HMGET", queueMetaKey, "paused", "concurrency", "max", "duration") if queueAttributes[1] then return pausedKey, true, queueAttributes[3], queueAttributes[4] else if queueAttributes[2] then local activeCount = rcall("LLEN", activeKey) if activeCount >= tonumber(queueAttributes[2]) then return waitKey, true, queueAttributes[3], queueAttributes[4] else return waitKey, false, queueAttributes[3], queueAttributes[4] end end end return waitKey, false, queueAttributes[3], queueAttributes[4] end --[[ Function to check if queue is paused or maxed (since an empty list and !EXISTS are not really the same). ]] local function isQueuePausedOrMaxed(queueMetaKey, activeKey) local queueAttributes = rcall("HMGET", queueMetaKey, "paused", "concurrency") if queueAttributes[1] then return true else if queueAttributes[2] then local activeCount = rcall("LLEN", activeKey) return activeCount >= tonumber(queueAttributes[2]) end end return false end --[[ Updates the delay set, by moving delayed jobs that should be processed now to "wait". Events: 'waiting' ]] -- Includes -- Try to get as much as 1000 jobs at once local function promoteDelayedJobs(delayedKey, markerKey, targetKey, prioritizedKey, eventStreamKey, prefix, timestamp, priorityCounterKey, isPaused) local jobs = rcall("ZRANGEBYSCORE", delayedKey, 0, (timestamp + 1) * 0x1000 - 1, "LIMIT", 0, 1000) if (#jobs > 0) then rcall("ZREM", delayedKey, unpack(jobs)) for _, jobId in ipairs(jobs) do local jobKey = prefix .. jobId local priority = tonumber(rcall("HGET", jobKey, "priority")) or 0 if priority == 0 then -- LIFO or FIFO rcall("LPUSH", targetKey, jobId) else local score = getPriorityScore(priority, priorityCounterKey) rcall("ZADD", prioritizedKey, score, jobId) end -- Emit waiting event rcall("XADD", eventStreamKey, "*", "event", "waiting", "jobId", jobId, "prev", "delayed") rcall("HSET", jobKey, "delay", 0) end addBaseMarkerIfNeeded(markerKey, isPaused) end end local function removeLock(jobKey, stalledKey, token, jobId) if token ~= "0" then local lockKey = jobKey .. ':lock' local lockToken = rcall("GET", lockKey) if lockToken == token then rcall("DEL", lockKey) rcall("SREM", stalledKey, jobId) else if lockToken then -- Lock exists but token does not match return -6 else -- Lock is missing completely return -2 end end end return 0 end --[[ Function to update a bunch of fields in a job. ]] local function updateJobFields(jobKey, msgpackedFields) if msgpackedFields and #msgpackedFields > 0 then local fieldsToUpdate = cmsgpack.unpack(msgpackedFields) if fieldsToUpdate then rcall("HMSET", jobKey, unpack(fieldsToUpdate)) end end end local target, isPausedOrMaxed = getTargetQueueList(KEYS[5], KEYS[1], KEYS[2], KEYS[3]) local markerKey = KEYS[10] -- Check if there are delayed jobs that we can move to wait. -- test example: when there are delayed jobs between retries promoteDelayedJobs(KEYS[7], markerKey, target, KEYS[8], KEYS[6], ARGV[1], ARGV[2], KEYS[9], isPausedOrMaxed) local jobKey = KEYS[4] if rcall("EXISTS", jobKey) == 1 then local errorCode = removeLock(jobKey, KEYS[11], ARGV[5], ARGV[4]) if errorCode < 0 then return errorCode end updateJobFields(jobKey, ARGV[6]) local numRemovedElements = rcall("LREM", KEYS[1], -1, ARGV[4]) if (numRemovedElements < 1) then return -3 end local priority = tonumber(rcall("HGET", jobKey, "priority")) or 0 --need to re-evaluate after removing job from active isPausedOrMaxed = isQueuePausedOrMaxed(KEYS[5], KEYS[1]) -- Standard or priority add if priority == 0 then addJobInTargetList(target, markerKey, ARGV[3], isPausedOrMaxed, ARGV[4]) else addJobWithPriority(markerKey, KEYS[8], priority, ARGV[4], KEYS[9], isPausedOrMaxed) end rcall("HINCRBY", jobKey, "atm", 1) local maxEvents = getOrSetMaxEvents(KEYS[5]) -- Emit waiting event rcall("XADD", KEYS[6], "MAXLEN", "~", maxEvents, "*", "event", "waiting", "jobId", ARGV[4], "prev", "active") return 0 else return -1 end `; var retryJob = { name: "retryJob", content: content46, keys: 11 }; // ../../node_modules/bullmq/dist/esm/scripts/saveStacktrace-1.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content47 = `--[[ Save stacktrace and failedReason. Input: KEYS[1] job key ARGV[1] stacktrace ARGV[2] failedReason Output: 0 - OK -1 - Missing key ]] local rcall = redis.call if rcall("EXISTS", KEYS[1]) == 1 then rcall("HMSET", KEYS[1], "stacktrace", ARGV[1], "failedReason", ARGV[2]) return 0 else return -1 end `; var saveStacktrace = { name: "saveStacktrace", content: content47, keys: 1 }; // ../../node_modules/bullmq/dist/esm/scripts/updateData-1.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content48 = `--[[ Update job data Input: KEYS[1] Job id key ARGV[1] data Output: 0 - OK -1 - Missing job. ]] local rcall = redis.call if rcall("EXISTS",KEYS[1]) == 1 then -- // Make sure job exists rcall("HSET", KEYS[1], "data", ARGV[1]) return 0 else return -1 end `; var updateData = { name: "updateData", content: content48, keys: 1 }; // ../../node_modules/bullmq/dist/esm/scripts/updateJobScheduler-12.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content49 = `--[[ Updates a job scheduler and adds next delayed job Input: KEYS[1] 'repeat' key KEYS[2] 'delayed' KEYS[3] 'wait' key KEYS[4] 'paused' key KEYS[5] 'meta' KEYS[6] 'prioritized' key KEYS[7] 'marker', KEYS[8] 'id' KEYS[9] events stream key KEYS[10] 'pc' priority counter KEYS[11] producer key KEYS[12] 'active' key ARGV[1] next milliseconds ARGV[2] jobs scheduler id ARGV[3] Json stringified delayed data ARGV[4] msgpacked delayed opts ARGV[5] timestamp ARGV[6] prefix key ARGV[7] producer id Output: next delayed job id - OK ]] local rcall = redis.call local repeatKey = KEYS[1] local delayedKey = KEYS[2] local waitKey = KEYS[3] local pausedKey = KEYS[4] local metaKey = KEYS[5] local prioritizedKey = KEYS[6] local nextMillis = tonumber(ARGV[1]) local jobSchedulerId = ARGV[2] local timestamp = tonumber(ARGV[5]) local prefixKey = ARGV[6] local producerId = ARGV[7] local jobOpts = cmsgpack.unpack(ARGV[4]) -- Includes --[[ Add delay marker if needed. ]] -- Includes --[[ Adds a delayed job to the queue by doing the following: - Creates a new job key with the job data. - adds to delayed zset. - Emits a global event 'delayed' if the job is delayed. ]] -- Includes --[[ Add delay marker if needed. ]] -- Includes --[[ Function to return the next delayed job timestamp. ]] local function getNextDelayedTimestamp(delayedKey) local result = rcall("ZRANGE", delayedKey, 0, 0, "WITHSCORES") if #result then local nextTimestamp = tonumber(result[2]) if nextTimestamp ~= nil then return nextTimestamp / 0x1000 end end end local function addDelayMarkerIfNeeded(markerKey, delayedKey) local nextTimestamp = getNextDelayedTimestamp(delayedKey) if nextTimestamp ~= nil then -- Replace the score of the marker with the newest known -- next timestamp. rcall("ZADD", markerKey, nextTimestamp, "1") end end --[[ Bake in the job id first 12 bits into the timestamp to guarantee correct execution order of delayed jobs (up to 4096 jobs per given timestamp or 4096 jobs apart per timestamp) WARNING: Jobs that are so far apart that they wrap around will cause FIFO to fail ]] local function getDelayedScore(delayedKey, timestamp, delay) local delayedTimestamp = (delay > 0 and (tonumber(timestamp) + delay)) or tonumber(timestamp) local minScore = delayedTimestamp * 0x1000 local maxScore = (delayedTimestamp + 1 ) * 0x1000 - 1 local result = rcall("ZREVRANGEBYSCORE", delayedKey, maxScore, minScore, "WITHSCORES","LIMIT", 0, 1) if #result then local currentMaxScore = tonumber(result[2]) if currentMaxScore ~= nil then if currentMaxScore >= maxScore then return maxScore, delayedTimestamp else return currentMaxScore + 1, delayedTimestamp end end end return minScore, delayedTimestamp end local function addDelayedJob(jobId, delayedKey, eventsKey, timestamp, maxEvents, markerKey, delay) local score, delayedTimestamp = getDelayedScore(delayedKey, timestamp, tonumber(delay)) rcall("ZADD", delayedKey, score, jobId) rcall("XADD", eventsKey, "MAXLEN", "~", maxEvents, "*", "event", "delayed", "jobId", jobId, "delay", delayedTimestamp) -- mark that a delayed job is available addDelayMarkerIfNeeded(markerKey, delayedKey) end --[[ Function to add job considering priority. ]] -- Includes --[[ Add marker if needed when a job is available. ]] local function addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) if not isPausedOrMaxed then rcall("ZADD", markerKey, 0, "0") end end --[[ Function to get priority score. ]] local function getPriorityScore(priority, priorityCounterKey) local prioCounter = rcall("INCR", priorityCounterKey) return priority * 0x100000000 + prioCounter % 0x100000000 end local function addJobWithPriority(markerKey, prioritizedKey, priority, jobId, priorityCounterKey, isPausedOrMaxed) local score = getPriorityScore(priority, priorityCounterKey) rcall("ZADD", prioritizedKey, score, jobId) addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) end --[[ Function to check for the meta.paused key to decide if we are paused or not (since an empty list and !EXISTS are not really the same). ]] local function isQueuePaused(queueMetaKey) return rcall("HEXISTS", queueMetaKey, "paused") == 1 end --[[ Function to store a job ]] local function storeJob(eventsKey, jobIdKey, jobId, name, data, opts, timestamp, parentKey, parentData, repeatJobKey) local jsonOpts = cjson.encode(opts) local delay = opts['delay'] or 0 local priority = opts['priority'] or 0 local debounceId = opts['de'] and opts['de']['id'] local optionalValues = {} if parentKey ~= nil then table.insert(optionalValues, "parentKey") table.insert(optionalValues, parentKey) table.insert(optionalValues, "parent") table.insert(optionalValues, parentData) end if repeatJobKey then table.insert(optionalValues, "rjk") table.insert(optionalValues, repeatJobKey) end if debounceId then table.insert(optionalValues, "deid") table.insert(optionalValues, debounceId) end rcall("HMSET", jobIdKey, "name", name, "data", data, "opts", jsonOpts, "timestamp", timestamp, "delay", delay, "priority", priority, unpack(optionalValues)) rcall("XADD", eventsKey, "*", "event", "added", "jobId", jobId, "name", name) return delay, priority end --[[ Function to check for the meta.paused key to decide if we are paused or not (since an empty list and !EXISTS are not really the same). ]] local function getTargetQueueList(queueMetaKey, activeKey, waitKey, pausedKey) local queueAttributes = rcall("HMGET", queueMetaKey, "paused", "concurrency", "max", "duration") if queueAttributes[1] then return pausedKey, true, queueAttributes[3], queueAttributes[4] else if queueAttributes[2] then local activeCount = rcall("LLEN", activeKey) if activeCount >= tonumber(queueAttributes[2]) then return waitKey, true, queueAttributes[3], queueAttributes[4] else return waitKey, false, queueAttributes[3], queueAttributes[4] end end end return waitKey, false, queueAttributes[3], queueAttributes[4] end --[[ Function to add job in target list and add marker if needed. ]] -- Includes local function addJobInTargetList(targetKey, markerKey, pushCmd, isPausedOrMaxed, jobId) rcall(pushCmd, targetKey, jobId) addBaseMarkerIfNeeded(markerKey, isPausedOrMaxed) end local function addJobFromScheduler(jobKey, jobId, opts, waitKey, pausedKey, activeKey, metaKey, prioritizedKey, priorityCounter, delayedKey, markerKey, eventsKey, name, maxEvents, timestamp, data, jobSchedulerId, repeatDelay) opts['delay'] = repeatDelay opts['jobId'] = jobId local delay, priority = storeJob(eventsKey, jobKey, jobId, name, data, opts, timestamp, nil, nil, jobSchedulerId) if delay ~= 0 then addDelayedJob(jobId, delayedKey, eventsKey, timestamp, maxEvents, markerKey, delay) else local target, isPausedOrMaxed = getTargetQueueList(metaKey, activeKey, waitKey, pausedKey) -- Standard or priority add if priority == 0 then local pushCmd = opts['lifo'] and 'RPUSH' or 'LPUSH' addJobInTargetList(target, markerKey, pushCmd, isPausedOrMaxed, jobId) else -- Priority add addJobWithPriority(markerKey, prioritizedKey, priority, jobId, priorityCounter, isPausedOrMaxed) end -- Emit waiting event rcall("XADD", eventsKey, "MAXLEN", "~", maxEvents, "*", "event", "waiting", "jobId", jobId) end end --[[ Function to get max events value or set by default 10000. ]] local function getOrSetMaxEvents(metaKey) local maxEvents = rcall("HGET", metaKey, "opts.maxLenEvents") if not maxEvents then maxEvents = 10000 rcall("HSET", metaKey, "opts.maxLenEvents", maxEvents) end return maxEvents end local function getJobSchedulerEveryNextMillis(prevMillis, every, now, offset, startDate) local nextMillis if not prevMillis then if startDate then -- Assuming startDate is passed as milliseconds from JavaScript nextMillis = tonumber(startDate) nextMillis = nextMillis > now and nextMillis or now else nextMillis = now end else nextMillis = prevMillis + every -- check if we may have missed some iterations if nextMillis < now then nextMillis = math.floor(now / every) * every + every + (offset or 0) end end if not offset or offset == 0 then local timeSlot = math.floor(nextMillis / every) * every; offset = nextMillis - timeSlot; end -- Return a tuple nextMillis, offset return math.floor(nextMillis), math.floor(offset) end local prevMillis = rcall("ZSCORE", repeatKey, jobSchedulerId) -- Validate that scheduler exists. -- If it does not exist we should not iterate anymore. if prevMillis then prevMillis = tonumber(prevMillis) local schedulerKey = repeatKey .. ":" .. jobSchedulerId local schedulerAttributes = rcall("HMGET", schedulerKey, "name", "data", "every", "startDate", "offset") local every = tonumber(schedulerAttributes[3]) local now = tonumber(timestamp) -- If every is not found in scheduler attributes, try to get it from job options if not every and jobOpts['repeat'] and jobOpts['repeat']['every'] then every = tonumber(jobOpts['repeat']['every']) end if every then local startDate = schedulerAttributes[4] local jobOptsOffset = jobOpts['repeat'] and jobOpts['repeat']['offset'] or 0 local offset = schedulerAttributes[5] or jobOptsOffset or 0 local newOffset nextMillis, newOffset = getJobSchedulerEveryNextMillis(prevMillis, every, now, offset, startDate) if not offset then rcall("HSET", schedulerKey, "offset", newOffset) jobOpts['repeat']['offset'] = newOffset end end local nextDelayedJobId = "repeat:" .. jobSchedulerId .. ":" .. nextMillis local nextDelayedJobKey = schedulerKey .. ":" .. nextMillis local currentDelayedJobId = "repeat:" .. jobSchedulerId .. ":" .. prevMillis if producerId == currentDelayedJobId then local eventsKey = KEYS[9] local maxEvents = getOrSetMaxEvents(metaKey) if rcall("EXISTS", nextDelayedJobKey) ~= 1 then rcall("ZADD", repeatKey, nextMillis, jobSchedulerId) rcall("HINCRBY", schedulerKey, "ic", 1) rcall("INCR", KEYS[8]) -- TODO: remove this workaround in next breaking change, -- all job-schedulers must save job data local templateData = schedulerAttributes[2] or ARGV[3] if templateData and templateData ~= '{}' then rcall("HSET", schedulerKey, "data", templateData) end local delay = nextMillis - now -- Fast Clamp delay to minimum of 0 if delay < 0 then delay = 0 end jobOpts["delay"] = delay addJobFromScheduler(nextDelayedJobKey, nextDelayedJobId, jobOpts, waitKey, pausedKey, KEYS[12], metaKey, prioritizedKey, KEYS[10], delayedKey, KEYS[7], eventsKey, schedulerAttributes[1], maxEvents, ARGV[5], templateData or '{}', jobSchedulerId, delay) -- TODO: remove this workaround in next breaking change if KEYS[11] ~= "" then rcall("HSET", KEYS[11], "nrjid", nextDelayedJobId) end return nextDelayedJobId .. "" -- convert to string else rcall("XADD", eventsKey, "MAXLEN", "~", maxEvents, "*", "event", "duplicated", "jobId", nextDelayedJobId) end end end `; var updateJobScheduler = { name: "updateJobScheduler", content: content49, keys: 12 }; // ../../node_modules/bullmq/dist/esm/scripts/updateProgress-3.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content50 = `--[[ Update job progress Input: KEYS[1] Job id key KEYS[2] event stream key KEYS[3] meta key ARGV[1] id ARGV[2] progress Output: 0 - OK -1 - Missing job. Event: progress(jobId, progress) ]] local rcall = redis.call -- Includes --[[ Function to get max events value or set by default 10000. ]] local function getOrSetMaxEvents(metaKey) local maxEvents = rcall("HGET", metaKey, "opts.maxLenEvents") if not maxEvents then maxEvents = 10000 rcall("HSET", metaKey, "opts.maxLenEvents", maxEvents) end return maxEvents end if rcall("EXISTS", KEYS[1]) == 1 then -- // Make sure job exists local maxEvents = getOrSetMaxEvents(KEYS[3]) rcall("HSET", KEYS[1], "progress", ARGV[2]) rcall("XADD", KEYS[2], "MAXLEN", "~", maxEvents, "*", "event", "progress", "jobId", ARGV[1], "data", ARGV[2]); return 0 else return -1 end `; var updateProgress = { name: "updateProgress", content: content50, keys: 3 }; // ../../node_modules/bullmq/dist/esm/scripts/updateRepeatableJobMillis-1.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var content51 = `--[[ Adds a repeatable job Input: KEYS[1] 'repeat' key ARGV[1] next milliseconds ARGV[2] custom key ARGV[3] legacy custom key TODO: remove this logic in next breaking change Output: repeatableKey - OK ]] local rcall = redis.call local repeatKey = KEYS[1] local nextMillis = ARGV[1] local customKey = ARGV[2] local legacyCustomKey = ARGV[3] if rcall("ZSCORE", repeatKey, customKey) then rcall("ZADD", repeatKey, nextMillis, customKey) return customKey elseif rcall("ZSCORE", repeatKey, legacyCustomKey) ~= false then rcall("ZADD", repeatKey, nextMillis, legacyCustomKey) return legacyCustomKey end return '' `; var updateRepeatableJobMillis = { name: "updateRepeatableJobMillis", content: content51, keys: 1 }; // ../../node_modules/bullmq/dist/esm/classes/redis-connection.js var overrideMessage = [ "BullMQ: WARNING! Your redis options maxRetriesPerRequest must be null", "and will be overridden by BullMQ." ].join(" "); var deprecationMessage = "BullMQ: Your redis options maxRetriesPerRequest must be null."; var RedisConnection = class _RedisConnection extends EventEmitter4 { static { __name(this, "RedisConnection"); } constructor(opts, extraOptions) { super(); this.extraOptions = extraOptions; this.capabilities = { canDoubleTimeout: false, canBlockFor1Ms: true }; this.status = "initializing"; this.dbType = "redis"; this.packageVersion = version4; this.extraOptions = Object.assign({ shared: false, blocking: true, skipVersionCheck: false, skipWaitingForReady: false }, extraOptions); if (!isRedisInstance(opts)) { this.checkBlockingOptions(overrideMessage, opts); this.opts = Object.assign({ port: 6379, host: "127.0.0.1", retryStrategy: /* @__PURE__ */ __name(function(times) { return Math.max(Math.min(Math.exp(times), 2e4), 1e3); }, "retryStrategy") }, opts); if (this.extraOptions.blocking) { this.opts.maxRetriesPerRequest = null; } } else { this._client = opts; if (this._client.options.keyPrefix) { throw new Error("BullMQ: ioredis does not support ioredis prefixes, use the prefix option instead."); } if (isRedisCluster(this._client)) { this.opts = this._client.options.redisOptions; } else { this.opts = this._client.options; } this.checkBlockingOptions(deprecationMessage, this.opts, true); } this.skipVersionCheck = (extraOptions === null || extraOptions === void 0 ? void 0 : extraOptions.skipVersionCheck) || !!(this.opts && this.opts.skipVersionCheck); this.handleClientError = (err) => { this.emit("error", err); }; this.handleClientClose = () => { this.emit("close"); }; this.handleClientReady = () => { this.emit("ready"); }; this.initializing = this.init(); this.initializing.catch((err) => this.emit("error", err)); } checkBlockingOptions(msg, options, throwError = false) { if (this.extraOptions.blocking && options && options.maxRetriesPerRequest) { if (throwError) { throw new Error(msg); } else { console.error(msg); } } } /** * Waits for a redis client to be ready. * @param redis - client */ static async waitUntilReady(client) { if (client.status === "ready") { return; } if (client.status === "wait") { return client.connect(); } if (client.status === "end") { throw new Error(import_utils28.CONNECTION_CLOSED_ERROR_MSG); } let handleReady; let handleEnd; let handleError; try { await new Promise((resolve, reject) => { let lastError; handleError = /* @__PURE__ */ __name((err) => { lastError = err; }, "handleError"); handleReady = /* @__PURE__ */ __name(() => { resolve(); }, "handleReady"); handleEnd = /* @__PURE__ */ __name(() => { if (client.status !== "end") { reject(lastError || new Error(import_utils28.CONNECTION_CLOSED_ERROR_MSG)); } else { if (lastError) { reject(lastError); } else { resolve(); } } }, "handleEnd"); increaseMaxListeners(client, 3); client.once("ready", handleReady); client.on("end", handleEnd); client.once("error", handleError); }); } finally { client.removeListener("end", handleEnd); client.removeListener("error", handleError); client.removeListener("ready", handleReady); decreaseMaxListeners(client, 3); } } get client() { return this.initializing; } loadCommands(packageVersion, providedScripts) { const finalScripts = providedScripts || scripts_exports; for (const property in finalScripts) { const commandName = `${finalScripts[property].name}:${packageVersion}`; if (!this._client[commandName]) { this._client.defineCommand(commandName, { numberOfKeys: finalScripts[property].keys, lua: finalScripts[property].content }); } } } async init() { if (!this._client) { const _a2 = this.opts, { url: url2 } = _a2, rest = __rest(_a2, ["url"]); this._client = url2 ? new import_ioredis2.default(url2, rest) : new import_ioredis2.default(rest); } increaseMaxListeners(this._client, 3); this._client.on("error", this.handleClientError); this._client.on("close", this.handleClientClose); this._client.on("ready", this.handleClientReady); if (!this.extraOptions.skipWaitingForReady) { await _RedisConnection.waitUntilReady(this._client); } this.loadCommands(this.packageVersion); if (this._client["status"] !== "end") { const versionResult = await this.getRedisVersionAndType(); this.version = versionResult.version; this.dbType = versionResult.databaseType; if (this.skipVersionCheck !== true && !this.closing) { if (isRedisVersionLowerThan(this.version, _RedisConnection.minimumVersion, this.dbType)) { throw new Error(`Redis version needs to be greater or equal than ${_RedisConnection.minimumVersion} Current: ${this.version}`); } if (isRedisVersionLowerThan(this.version, _RedisConnection.recommendedMinimumVersion, this.dbType)) { console.warn(`It is highly recommended to use a minimum Redis version of ${_RedisConnection.recommendedMinimumVersion} Current: ${this.version}`); } } this.capabilities = { canDoubleTimeout: !isRedisVersionLowerThan(this.version, "6.0.0", this.dbType), canBlockFor1Ms: !isRedisVersionLowerThan(this.version, "7.0.8", this.dbType) }; this.status = "ready"; } return this._client; } async disconnect(wait = true) { const client = await this.client; if (client.status !== "end") { let _resolve, _reject; if (!wait) { return client.disconnect(); } const disconnecting = new Promise((resolve, reject) => { increaseMaxListeners(client, 2); client.once("end", resolve); client.once("error", reject); _resolve = resolve; _reject = reject; }); client.disconnect(); try { await disconnecting; } finally { decreaseMaxListeners(client, 2); client.removeListener("end", _resolve); client.removeListener("error", _reject); } } } async reconnect() { const client = await this.client; return client.connect(); } async close(force = false) { if (!this.closing) { const status = this.status; this.status = "closing"; this.closing = true; try { if (status === "ready") { await this.initializing; } if (!this.extraOptions.shared) { if (status == "initializing" || force) { this._client.disconnect(); } else { await this._client.quit(); } this._client["status"] = "end"; } } catch (error50) { if (isNotConnectionError(error50)) { throw error50; } } finally { this._client.off("error", this.handleClientError); this._client.off("close", this.handleClientClose); this._client.off("ready", this.handleClientReady); decreaseMaxListeners(this._client, 3); this.removeAllListeners(); this.status = "closed"; } } } async getRedisVersionAndType() { if (this.skipVersionCheck) { return { version: _RedisConnection.minimumVersion, databaseType: "redis" }; } const doc = await this._client.info(); const redisPrefix = "redis_version:"; const maxMemoryPolicyPrefix = "maxmemory_policy:"; const lines = doc.split(/\r?\n/); let redisVersion; let databaseType = "redis"; for (let i = 0; i < lines.length; i++) { const line = lines[i]; if (line.includes("dragonfly_version:") || line.includes("server:Dragonfly")) { databaseType = "dragonfly"; if (line.indexOf("dragonfly_version:") === 0) { redisVersion = line.substr("dragonfly_version:".length); } } else if (line.includes("valkey_version:") || line.includes("server:Valkey")) { databaseType = "valkey"; if (line.indexOf("valkey_version:") === 0) { redisVersion = line.substr("valkey_version:".length); } } else if (line.indexOf(redisPrefix) === 0) { redisVersion = line.substr(redisPrefix.length); if (databaseType === "redis") { databaseType = "redis"; } } if (line.indexOf(maxMemoryPolicyPrefix) === 0) { const maxMemoryPolicy = line.substr(maxMemoryPolicyPrefix.length); if (maxMemoryPolicy !== "noeviction") { console.warn(`IMPORTANT! Eviction policy is ${maxMemoryPolicy}. It should be "noeviction"`); } } } if (!redisVersion) { for (const line of lines) { if (line.includes("version:")) { const parts = line.split(":"); if (parts.length >= 2) { redisVersion = parts[1]; break; } } } } return { version: redisVersion || _RedisConnection.minimumVersion, databaseType }; } get redisVersion() { return this.version; } get databaseType() { return this.dbType; } }; RedisConnection.minimumVersion = "5.0.0"; RedisConnection.recommendedMinimumVersion = "6.2.0"; // ../../node_modules/bullmq/dist/esm/classes/job-scheduler.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var import_cron_parser = __toESM(require_parser2()); // ../../node_modules/bullmq/dist/esm/classes/queue-base.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); import { EventEmitter as EventEmitter6 } from "events"; var QueueBase = class extends EventEmitter6 { static { __name(this, "QueueBase"); } /** * * @param name - The name of the queue. * @param opts - Options for the queue. * @param Connection - An optional "Connection" class used to instantiate a Connection. This is useful for * testing with mockups and/or extending the Connection class and passing an alternate implementation. */ constructor(name, opts = { connection: {} }, Connection = RedisConnection, hasBlockingConnection = false) { super(); this.name = name; this.opts = opts; this.closed = false; this.hasBlockingConnection = false; this.hasBlockingConnection = hasBlockingConnection; this.opts = Object.assign({ prefix: "bull" }, opts); if (!name) { throw new Error("Queue name must be provided"); } if (name.includes(":")) { throw new Error("Queue name cannot contain :"); } this.connection = new Connection(opts.connection, { shared: isRedisInstance(opts.connection), blocking: hasBlockingConnection, skipVersionCheck: opts.skipVersionCheck, skipWaitingForReady: opts.skipWaitingForReady }); this.connection.on("error", (error50) => this.emit("error", error50)); this.connection.on("close", () => { if (!this.closing) { this.emit("ioredis:close"); } }); const queueKeys = new QueueKeys(opts.prefix); this.qualifiedName = queueKeys.getQueueQualifiedName(name); this.keys = queueKeys.getKeys(name); this.toKey = (type) => queueKeys.toKey(name, type); this.createScripts(); } /** * Returns a promise that resolves to a redis client. Normally used only by subclasses. */ get client() { return this.connection.client; } createScripts() { this.scripts = createScripts(this); } /** * Returns the version of the Redis instance the client is connected to, */ get redisVersion() { return this.connection.redisVersion; } /** * Returns the database type of the Redis instance the client is connected to, */ get databaseType() { return this.connection.databaseType; } /** * Helper to easily extend Job class calls. */ get Job() { return Job; } /** * Emits an event. Normally used by subclasses to emit events. * * @param event - The emitted event. * @param args - * @returns */ emit(event, ...args) { try { return super.emit(event, ...args); } catch (err) { try { return super.emit("error", err); } catch (err2) { console.error(err2); return false; } } } waitUntilReady() { return this.client; } base64Name() { return Buffer.from(this.name).toString("base64"); } clientName(suffix = "") { const queueNameBase64 = this.base64Name(); return `${this.opts.prefix}:${queueNameBase64}${suffix}`; } /** * * Closes the connection and returns a promise that resolves when the connection is closed. */ async close() { if (!this.closing) { this.closing = this.connection.close(); } await this.closing; this.closed = true; } /** * * Force disconnects a connection. */ disconnect() { return this.connection.disconnect(); } async checkConnectionError(fn, delayInMs = DELAY_TIME_5) { try { return await fn(); } catch (error50) { if (isNotConnectionError(error50)) { this.emit("error", error50); } if (!this.closing && delayInMs) { await delay(delayInMs); } else { return; } } } /** * Wraps the code with telemetry and provides a span for configuration. * * @param spanKind - kind of the span: Producer, Consumer, Internal * @param operation - operation name (such as add, process, etc) * @param destination - destination name (normally the queue name) * @param callback - code to wrap with telemetry * @param srcPropagationMedatada - * @returns */ trace(spanKind, operation, destination, callback, srcPropagationMetadata) { return trace3(this.opts.telemetry, spanKind, this.name, operation, destination, callback, srcPropagationMetadata); } }; // ../../node_modules/bullmq/dist/esm/classes/job-scheduler.js var JobScheduler = class extends QueueBase { static { __name(this, "JobScheduler"); } constructor(name, opts, Connection) { super(name, opts, Connection); this.repeatStrategy = opts.settings && opts.settings.repeatStrategy || defaultRepeatStrategy; } async upsertJobScheduler(jobSchedulerId, repeatOpts, jobName, jobData, opts, { override, producerId }) { const { every, limit, pattern, offset } = repeatOpts; if (pattern && every) { throw new Error("Both .pattern and .every options are defined for this repeatable job"); } if (!pattern && !every) { throw new Error("Either .pattern or .every options must be defined for this repeatable job"); } if (repeatOpts.immediately && repeatOpts.startDate) { throw new Error("Both .immediately and .startDate options are defined for this repeatable job"); } if (repeatOpts.immediately && repeatOpts.every) { console.warn("Using option immediately with every does not affect the job's schedule. Job will run immediately anyway."); } const iterationCount = repeatOpts.count ? repeatOpts.count + 1 : 1; if (typeof repeatOpts.limit !== "undefined" && iterationCount > repeatOpts.limit) { return; } let now = Date.now(); const { endDate } = repeatOpts; if (endDate && now > new Date(endDate).getTime()) { return; } const prevMillis = opts.prevMillis || 0; now = prevMillis < now ? now : prevMillis; const { immediately } = repeatOpts, filteredRepeatOpts = __rest(repeatOpts, ["immediately"]); let nextMillis; const newOffset = null; if (pattern) { nextMillis = await this.repeatStrategy(now, repeatOpts, jobName); if (nextMillis < now) { nextMillis = now; } } if (nextMillis || every) { return this.trace(SpanKind.PRODUCER, "add", `${this.name}.${jobName}`, async (span, srcPropagationMedatada) => { var _a2, _b; let telemetry = opts.telemetry; if (srcPropagationMedatada) { const omitContext = (_a2 = opts.telemetry) === null || _a2 === void 0 ? void 0 : _a2.omitContext; const telemetryMetadata = ((_b = opts.telemetry) === null || _b === void 0 ? void 0 : _b.metadata) || !omitContext && srcPropagationMedatada; if (telemetryMetadata || omitContext) { telemetry = { metadata: telemetryMetadata, omitContext }; } } const mergedOpts = this.getNextJobOpts(nextMillis, jobSchedulerId, Object.assign(Object.assign({}, opts), { repeat: filteredRepeatOpts, telemetry }), iterationCount, newOffset); if (override) { if (nextMillis < now) { nextMillis = now; } const [jobId, delay2] = await this.scripts.addJobScheduler(jobSchedulerId, nextMillis, JSON.stringify(typeof jobData === "undefined" ? {} : jobData), Job.optsAsJSON(opts), { name: jobName, startDate: repeatOpts.startDate ? new Date(repeatOpts.startDate).getTime() : void 0, endDate: endDate ? new Date(endDate).getTime() : void 0, tz: repeatOpts.tz, pattern, every, limit, offset: newOffset }, Job.optsAsJSON(mergedOpts), producerId); const numericDelay = typeof delay2 === "string" ? parseInt(delay2, 10) : delay2; const job = new this.Job(this, jobName, jobData, Object.assign(Object.assign({}, mergedOpts), { delay: numericDelay }), jobId); job.id = jobId; span === null || span === void 0 ? void 0 : span.setAttributes({ [TelemetryAttributes.JobSchedulerId]: jobSchedulerId, [TelemetryAttributes.JobId]: job.id }); return job; } else { const jobId = await this.scripts.updateJobSchedulerNextMillis(jobSchedulerId, nextMillis, JSON.stringify(typeof jobData === "undefined" ? {} : jobData), Job.optsAsJSON(mergedOpts), producerId); if (jobId) { const job = new this.Job(this, jobName, jobData, mergedOpts, jobId); job.id = jobId; span === null || span === void 0 ? void 0 : span.setAttributes({ [TelemetryAttributes.JobSchedulerId]: jobSchedulerId, [TelemetryAttributes.JobId]: job.id }); return job; } } }); } } getNextJobOpts(nextMillis, jobSchedulerId, opts, currentCount, offset) { var _a2, _b; const jobId = this.getSchedulerNextJobId({ jobSchedulerId, nextMillis }); const now = Date.now(); const delay2 = nextMillis + offset - now; const mergedOpts = Object.assign(Object.assign({}, opts), { jobId, delay: delay2 < 0 ? 0 : delay2, timestamp: now, prevMillis: nextMillis, repeatJobKey: jobSchedulerId }); mergedOpts.repeat = Object.assign(Object.assign({}, opts.repeat), { offset, count: currentCount, startDate: ((_a2 = opts.repeat) === null || _a2 === void 0 ? void 0 : _a2.startDate) ? new Date(opts.repeat.startDate).getTime() : void 0, endDate: ((_b = opts.repeat) === null || _b === void 0 ? void 0 : _b.endDate) ? new Date(opts.repeat.endDate).getTime() : void 0 }); return mergedOpts; } async removeJobScheduler(jobSchedulerId) { return this.scripts.removeJobScheduler(jobSchedulerId); } async getSchedulerData(client, key, next) { const jobData = await client.hgetall(this.toKey("repeat:" + key)); return this.transformSchedulerData(key, jobData, next); } transformSchedulerData(key, jobData, next) { if (jobData && Object.keys(jobData).length > 0) { const jobSchedulerData = { key, name: jobData.name, next }; if (jobData.ic) { jobSchedulerData.iterationCount = parseInt(jobData.ic); } if (jobData.limit) { jobSchedulerData.limit = parseInt(jobData.limit); } if (jobData.startDate) { jobSchedulerData.startDate = parseInt(jobData.startDate); } if (jobData.endDate) { jobSchedulerData.endDate = parseInt(jobData.endDate); } if (jobData.tz) { jobSchedulerData.tz = jobData.tz; } if (jobData.pattern) { jobSchedulerData.pattern = jobData.pattern; } if (jobData.every) { jobSchedulerData.every = parseInt(jobData.every); } if (jobData.offset) { jobSchedulerData.offset = parseInt(jobData.offset); } if (jobData.data || jobData.opts) { jobSchedulerData.template = this.getTemplateFromJSON(jobData.data, jobData.opts); } return jobSchedulerData; } if (key.includes(":")) { return this.keyToData(key, next); } } keyToData(key, next) { const data = key.split(":"); const pattern = data.slice(4).join(":") || null; return { key, name: data[0], id: data[1] || null, endDate: parseInt(data[2]) || null, tz: data[3] || null, pattern, next }; } async getScheduler(id) { const [rawJobData, next] = await this.scripts.getJobScheduler(id); return this.transformSchedulerData(id, rawJobData ? array2obj(rawJobData) : null, next ? parseInt(next) : null); } getTemplateFromJSON(rawData, rawOpts) { const template = {}; if (rawData) { template.data = JSON.parse(rawData); } if (rawOpts) { template.opts = Job.optsFromJSON(rawOpts); } return template; } async getJobSchedulers(start = 0, end = -1, asc2 = false) { const client = await this.client; const jobSchedulersKey = this.keys.repeat; const result = asc2 ? await client.zrange(jobSchedulersKey, start, end, "WITHSCORES") : await client.zrevrange(jobSchedulersKey, start, end, "WITHSCORES"); const jobs = []; for (let i = 0; i < result.length; i += 2) { jobs.push(this.getSchedulerData(client, result[i], parseInt(result[i + 1]))); } return Promise.all(jobs); } async getSchedulersCount() { const jobSchedulersKey = this.keys.repeat; const client = await this.client; return client.zcard(jobSchedulersKey); } getSchedulerNextJobId({ nextMillis, jobSchedulerId }) { return `repeat:${jobSchedulerId}:${nextMillis}`; } }; var defaultRepeatStrategy = /* @__PURE__ */ __name((millis, opts) => { const { pattern } = opts; const dateFromMillis = new Date(millis); const startDate = opts.startDate && new Date(opts.startDate); const currentDate = startDate > dateFromMillis ? startDate : dateFromMillis; const interval = (0, import_cron_parser.parseExpression)(pattern, Object.assign(Object.assign({}, opts), { currentDate })); try { if (opts.immediately) { return (/* @__PURE__ */ new Date()).getTime(); } else { return interval.next().getTime(); } } catch (e) { } }, "defaultRepeatStrategy"); // ../../node_modules/bullmq/dist/esm/classes/lock-manager.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var import_node_abort_controller2 = __toESM(require_browser()); var LockManager = class { static { __name(this, "LockManager"); } constructor(worker, opts) { this.worker = worker; this.opts = opts; this.trackedJobs = /* @__PURE__ */ new Map(); this.closed = false; } /** * Starts the lock manager timers for lock renewal. */ start() { if (this.closed) { return; } if (this.opts.lockRenewTime > 0) { this.startLockExtenderTimer(); } } async extendLocks(jobIds) { await this.worker.trace(SpanKind.INTERNAL, "extendLocks", this.worker.name, async (span) => { span === null || span === void 0 ? void 0 : span.setAttributes({ [TelemetryAttributes.WorkerId]: this.opts.workerId, [TelemetryAttributes.WorkerName]: this.opts.workerName, [TelemetryAttributes.WorkerJobsToExtendLocks]: jobIds }); try { const jobTokens = jobIds.map((id) => { var _a2; return ((_a2 = this.trackedJobs.get(id)) === null || _a2 === void 0 ? void 0 : _a2.token) || ""; }); const erroredJobIds = await this.worker.extendJobLocks(jobIds, jobTokens, this.opts.lockDuration); if (erroredJobIds.length > 0) { this.worker.emit("lockRenewalFailed", erroredJobIds); for (const jobId of erroredJobIds) { this.worker.emit("error", new Error(`could not renew lock for job ${jobId}`)); } } const succeededJobIds = jobIds.filter((id) => !erroredJobIds.includes(id)); if (succeededJobIds.length > 0) { this.worker.emit("locksRenewed", { count: succeededJobIds.length, jobIds: succeededJobIds }); } } catch (err) { this.worker.emit("error", err); } }); } startLockExtenderTimer() { clearTimeout(this.lockRenewalTimer); if (!this.closed) { this.lockRenewalTimer = setTimeout(async () => { const now = Date.now(); const jobsToExtend = []; for (const jobId of this.trackedJobs.keys()) { const tracked2 = this.trackedJobs.get(jobId); const { ts, token, abortController } = tracked2; if (!ts) { this.trackedJobs.set(jobId, { token, ts: now, abortController }); continue; } if (ts + this.opts.lockRenewTime / 2 < now) { this.trackedJobs.set(jobId, { token, ts: now, abortController }); jobsToExtend.push(jobId); } } if (jobsToExtend.length) { await this.extendLocks(jobsToExtend); } this.startLockExtenderTimer(); }, this.opts.lockRenewTime / 2); } } /** * Stops the lock manager and clears all timers. */ async close() { if (this.closed) { return; } this.closed = true; if (this.lockRenewalTimer) { clearTimeout(this.lockRenewalTimer); this.lockRenewalTimer = void 0; } this.trackedJobs.clear(); } /** * Adds a job to be tracked for lock renewal. * Returns an AbortController if shouldCreateController is true, undefined otherwise. */ trackJob(jobId, token, ts, shouldCreateController = false) { const abortController = shouldCreateController ? new import_node_abort_controller2.AbortController() : void 0; if (!this.closed && jobId) { this.trackedJobs.set(jobId, { token, ts, abortController }); } return abortController; } /** * Removes a job from lock renewal tracking. */ untrackJob(jobId) { this.trackedJobs.delete(jobId); } /** * Gets the number of jobs currently being tracked. */ getActiveJobCount() { return this.trackedJobs.size; } /** * Checks if the lock manager is running. */ isRunning() { return !this.closed && this.lockRenewalTimer !== void 0; } /** * Cancels a specific job by aborting its signal. * @param jobId - The ID of the job to cancel * @param reason - Optional reason for the cancellation * @returns true if the job was found and cancelled, false otherwise */ cancelJob(jobId, reason) { const tracked2 = this.trackedJobs.get(jobId); if (tracked2 === null || tracked2 === void 0 ? void 0 : tracked2.abortController) { tracked2.abortController.abort(reason); return true; } return false; } /** * Cancels all tracked jobs by aborting their signals. * @param reason - Optional reason for the cancellation */ cancelAllJobs(reason) { for (const tracked2 of this.trackedJobs.values()) { if (tracked2.abortController) { tracked2.abortController.abort(reason); } } } /** * Gets a list of all tracked job IDs. * @returns Array of job IDs currently being tracked */ getTrackedJobIds() { return Array.from(this.trackedJobs.keys()); } }; // ../../node_modules/bullmq/dist/esm/classes/queue-events.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/classes/queue-events-producer.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/classes/queue-getters.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var QueueGetters = class extends QueueBase { static { __name(this, "QueueGetters"); } getJob(jobId) { return this.Job.fromId(this, jobId); } commandByType(types, count4, callback) { return types.map((type) => { type = type === "waiting" ? "wait" : type; const key = this.toKey(type); switch (type) { case "completed": case "failed": case "delayed": case "prioritized": case "repeat": case "waiting-children": return callback(key, count4 ? "zcard" : "zrange"); case "active": case "wait": case "paused": return callback(key, count4 ? "llen" : "lrange"); } }); } sanitizeJobTypes(types) { const currentTypes = typeof types === "string" ? [types] : types; if (Array.isArray(currentTypes) && currentTypes.length > 0) { const sanitizedTypes = [...currentTypes]; if (sanitizedTypes.indexOf("waiting") !== -1) { sanitizedTypes.push("paused"); } return [...new Set(sanitizedTypes)]; } return [ "active", "completed", "delayed", "failed", "paused", "prioritized", "waiting", "waiting-children" ]; } /** Returns the number of jobs waiting to be processed. This includes jobs that are "waiting" or "delayed" or "prioritized" or "waiting-children". */ async count() { const count4 = await this.getJobCountByTypes("waiting", "paused", "delayed", "prioritized", "waiting-children"); return count4; } /** * Returns the time to live for a rate limited key in milliseconds. * @param maxJobs - max jobs to be considered in rate limit state. If not passed * it will return the remaining ttl without considering if max jobs is excedeed. * @returns -2 if the key does not exist. * -1 if the key exists but has no associated expire. * @see {@link https://redis.io/commands/pttl/} */ async getRateLimitTtl(maxJobs) { return this.scripts.getRateLimitTtl(maxJobs); } /** * Get jobId that starts debounced state. * @deprecated use getDeduplicationJobId method * * @param id - debounce identifier */ async getDebounceJobId(id) { const client = await this.client; return client.get(`${this.keys.de}:${id}`); } /** * Get jobId from deduplicated state. * * @param id - deduplication identifier */ async getDeduplicationJobId(id) { const client = await this.client; return client.get(`${this.keys.de}:${id}`); } /** * Get global concurrency value. * Returns null in case no value is set. */ async getGlobalConcurrency() { const client = await this.client; const concurrency = await client.hget(this.keys.meta, "concurrency"); if (concurrency) { return Number(concurrency); } return null; } /** * Get global rate limit values. * Returns null in case no value is set. */ async getGlobalRateLimit() { const client = await this.client; const [max2, duration3] = await client.hmget(this.keys.meta, "max", "duration"); if (max2 && duration3) { return { max: Number(max2), duration: Number(duration3) }; } return null; } /** * Job counts by type * * Queue#getJobCountByTypes('completed') =\> completed count * Queue#getJobCountByTypes('completed', 'failed') =\> completed + failed count * Queue#getJobCountByTypes('completed', 'waiting', 'failed') =\> completed + waiting + failed count */ async getJobCountByTypes(...types) { const result = await this.getJobCounts(...types); return Object.values(result).reduce((sum2, count4) => sum2 + count4, 0); } /** * Returns the job counts for each type specified or every list/set in the queue by default. * @param types - the types of jobs to count. If not specified, it will return the counts for all types. * @returns An object, key (type) and value (count) */ async getJobCounts(...types) { const currentTypes = this.sanitizeJobTypes(types); const responses = await this.scripts.getCounts(currentTypes); const counts = {}; responses.forEach((res, index) => { counts[currentTypes[index]] = res || 0; }); return counts; } /** * Records job counts as gauge metrics for telemetry purposes. * Each job state count is recorded with the queue name and state as attributes. * @param types - the types of jobs to count. If not specified, it will return the counts for all types. * @returns An object, key (type) and value (count) */ async recordJobCountsMetric(...types) { var _a2; const counts = await this.getJobCounts(...types); const meter = (_a2 = this.opts.telemetry) === null || _a2 === void 0 ? void 0 : _a2.meter; if (meter && typeof meter.createGauge === "function") { const gauge = meter.createGauge(MetricNames.QueueJobsCount, { description: "Number of jobs in the queue by state", unit: "{jobs}" }); for (const [state, jobCount] of Object.entries(counts)) { gauge.record(jobCount, { [TelemetryAttributes.QueueName]: this.name, [TelemetryAttributes.QueueJobsState]: state }); } } return counts; } /** * Get current job state. * * @param jobId - job identifier. * @returns Returns one of these values: * 'completed', 'failed', 'delayed', 'active', 'waiting', 'waiting-children', 'unknown'. */ getJobState(jobId) { return this.scripts.getState(jobId); } /** * Get global queue configuration. * * @returns Returns the global queue configuration. */ async getMeta() { const client = await this.client; const config3 = await client.hgetall(this.keys.meta); const { concurrency, max: max2, duration: duration3, paused, "opts.maxLenEvents": maxLenEvents } = config3, rest = __rest(config3, ["concurrency", "max", "duration", "paused", "opts.maxLenEvents"]); const parsedConfig = rest; if (concurrency) { parsedConfig["concurrency"] = Number(concurrency); } if (maxLenEvents) { parsedConfig["maxLenEvents"] = Number(maxLenEvents); } if (max2) { parsedConfig["max"] = Number(max2); } if (duration3) { parsedConfig["duration"] = Number(duration3); } parsedConfig["paused"] = paused === "1"; return parsedConfig; } /** * @returns Returns the number of jobs in completed status. */ getCompletedCount() { return this.getJobCountByTypes("completed"); } /** * Returns the number of jobs in failed status. */ getFailedCount() { return this.getJobCountByTypes("failed"); } /** * Returns the number of jobs in delayed status. */ getDelayedCount() { return this.getJobCountByTypes("delayed"); } /** * Returns the number of jobs in active status. */ getActiveCount() { return this.getJobCountByTypes("active"); } /** * Returns the number of jobs in prioritized status. */ getPrioritizedCount() { return this.getJobCountByTypes("prioritized"); } /** * Returns the number of jobs per priority. */ async getCountsPerPriority(priorities) { const uniquePriorities = [...new Set(priorities)]; const responses = await this.scripts.getCountsPerPriority(uniquePriorities); const counts = {}; responses.forEach((res, index) => { counts[`${uniquePriorities[index]}`] = res || 0; }); return counts; } /** * Returns the number of jobs in waiting or paused statuses. */ getWaitingCount() { return this.getJobCountByTypes("waiting"); } /** * Returns the number of jobs in waiting-children status. */ getWaitingChildrenCount() { return this.getJobCountByTypes("waiting-children"); } /** * Returns the jobs that are in the "waiting" status. * @param start - zero based index from where to start returning jobs. * @param end - zero based index where to stop returning jobs. */ getWaiting(start = 0, end = -1) { return this.getJobs(["waiting"], start, end, true); } /** * Returns the jobs that are in the "waiting-children" status. * I.E. parent jobs that have at least one child that has not completed yet. * @param start - zero based index from where to start returning jobs. * @param end - zero based index where to stop returning jobs. */ getWaitingChildren(start = 0, end = -1) { return this.getJobs(["waiting-children"], start, end, true); } /** * Returns the jobs that are in the "active" status. * @param start - zero based index from where to start returning jobs. * @param end - zero based index where to stop returning jobs. */ getActive(start = 0, end = -1) { return this.getJobs(["active"], start, end, true); } /** * Returns the jobs that are in the "delayed" status. * @param start - zero based index from where to start returning jobs. * @param end - zero based index where to stop returning jobs. */ getDelayed(start = 0, end = -1) { return this.getJobs(["delayed"], start, end, true); } /** * Returns the jobs that are in the "prioritized" status. * @param start - zero based index from where to start returning jobs. * @param end - zero based index where to stop returning jobs. */ getPrioritized(start = 0, end = -1) { return this.getJobs(["prioritized"], start, end, true); } /** * Returns the jobs that are in the "completed" status. * @param start - zero based index from where to start returning jobs. * @param end - zero based index where to stop returning jobs. */ getCompleted(start = 0, end = -1) { return this.getJobs(["completed"], start, end, false); } /** * Returns the jobs that are in the "failed" status. * @param start - zero based index from where to start returning jobs. * @param end - zero based index where to stop returning jobs. */ getFailed(start = 0, end = -1) { return this.getJobs(["failed"], start, end, false); } /** * Returns the qualified job ids and the raw job data (if available) of the * children jobs of the given parent job. * It is possible to get either the already processed children, in this case * an array of qualified job ids and their result values will be returned, * or the pending children, in this case an array of qualified job ids will * be returned. * A qualified job id is a string representing the job id in a given queue, * for example: "bull:myqueue:jobid". * * @param parentId - The id of the parent job * @param type - "processed" | "pending" * @param opts - Options for the query. * * @returns an object with the following shape: * `{ items: { id: string, v?: any, err?: string } [], jobs: JobJsonRaw[], total: number}` */ async getDependencies(parentId, type, start, end) { const key = this.toKey(type == "processed" ? `${parentId}:processed` : `${parentId}:dependencies`); const { items, total, jobs } = await this.scripts.paginate(key, { start, end, fetchJobs: true }); return { items, jobs, total }; } async getRanges(types, start = 0, end = 1, asc2 = false) { const multiCommands = []; this.commandByType(types, false, (key, command) => { switch (command) { case "lrange": multiCommands.push("lrange"); break; case "zrange": multiCommands.push("zrange"); break; } }); const responses = await this.scripts.getRanges(types, start, end, asc2); let results = []; responses.forEach((response, index) => { const result = response || []; if (asc2 && multiCommands[index] === "lrange") { results = results.concat(result.reverse()); } else { results = results.concat(result); } }); return [...new Set(results)]; } /** * Returns the jobs that are on the given statuses (note that JobType is synonym for job status) * @param types - the statuses of the jobs to return. * @param start - zero based index from where to start returning jobs. * @param end - zero based index where to stop returning jobs. * @param asc - if true, the jobs will be returned in ascending order. */ async getJobs(types, start = 0, end = -1, asc2 = false) { const currentTypes = this.sanitizeJobTypes(types); const jobIds = await this.getRanges(currentTypes, start, end, asc2); return Promise.all(jobIds.map((jobId) => this.Job.fromId(this, jobId))); } /** * Returns the logs for a given Job. * @param jobId - the id of the job to get the logs for. * @param start - zero based index from where to start returning jobs. * @param end - zero based index where to stop returning jobs. * @param asc - if true, the jobs will be returned in ascending order. */ async getJobLogs(jobId, start = 0, end = -1, asc2 = true) { const client = await this.client; const multi = client.multi(); const logsKey = this.toKey(jobId + ":logs"); if (asc2) { multi.lrange(logsKey, start, end); } else { multi.lrange(logsKey, -(end + 1), -(start + 1)); } multi.llen(logsKey); const result = await multi.exec(); if (!asc2) { result[0][1].reverse(); } return { logs: result[0][1], count: result[1][1] }; } async baseGetClients(matcher) { const client = await this.client; try { if (client.isCluster) { const clusterNodes = client.nodes(); const clientsPerNode = []; for (let nodeIndex = 0; nodeIndex < clusterNodes.length; nodeIndex++) { const node = clusterNodes[nodeIndex]; const clients = await node.client("LIST"); const list = this.parseClientList(clients, matcher); clientsPerNode.push(list); } const clientsFromNodeWithMostConnections = clientsPerNode.reduce((prev, current) => { return prev.length > current.length ? prev : current; }, []); return clientsFromNodeWithMostConnections; } else { const clients = await client.client("LIST"); const list = this.parseClientList(clients, matcher); return list; } } catch (err) { if (!clientCommandMessageReg.test(err.message)) { throw err; } return [{ name: "GCP does not support client list" }]; } } /** * Get the worker list related to the queue. i.e. all the known * workers that are available to process jobs for this queue. * Note: GCP does not support SETNAME, so this call will not work * * @returns - Returns an array with workers info. */ getWorkers() { const unnamedWorkerClientName = `${this.clientName()}`; const namedWorkerClientName = `${this.clientName()}:w:`; const matcher = /* @__PURE__ */ __name((name) => name && (name === unnamedWorkerClientName || name.startsWith(namedWorkerClientName)), "matcher"); return this.baseGetClients(matcher); } /** * Returns the current count of workers for the queue. * * getWorkersCount(): Promise * */ async getWorkersCount() { const workers = await this.getWorkers(); return workers.length; } /** * Get queue events list related to the queue. * Note: GCP does not support SETNAME, so this call will not work * * @deprecated do not use this method, it will be removed in the future. * * @returns - Returns an array with queue events info. */ async getQueueEvents() { const clientName = `${this.clientName()}${QUEUE_EVENT_SUFFIX}`; return this.baseGetClients((name) => name === clientName); } /** * Get queue metrics related to the queue. * * This method returns the gathered metrics for the queue. * The metrics are represented as an array of job counts * per unit of time (1 minute). * * @param start - Start point of the metrics, where 0 * is the newest point to be returned. * @param end - End point of the metrics, where -1 is the * oldest point to be returned. * * @returns - Returns an object with queue metrics. */ async getMetrics(type, start = 0, end = -1) { const [meta3, data, count4] = await this.scripts.getMetrics(type, start, end); return { meta: { count: parseInt(meta3[0] || "0", 10), prevTS: parseInt(meta3[1] || "0", 10), prevCount: parseInt(meta3[2] || "0", 10) }, data: data.map((point2) => +point2 || 0), count: count4 }; } parseClientList(list, matcher) { const lines = list.split(/\r?\n/); const clients = []; lines.forEach((line) => { const client = {}; const keyValues = line.split(" "); keyValues.forEach(function(keyValue) { const index = keyValue.indexOf("="); const key = keyValue.substring(0, index); const value = keyValue.substring(index + 1); client[key] = value; }); const name = client["name"]; if (matcher(name)) { client["name"] = this.name; client["rawname"] = name; clients.push(client); } }); return clients; } /** * Export the metrics for the queue in the Prometheus format. * Automatically exports all the counts returned by getJobCounts(). * * @returns - Returns a string with the metrics in the Prometheus format. * * @see {@link https://prometheus.io/docs/instrumenting/exposition_formats/} * **/ async exportPrometheusMetrics(globalVariables) { const counts = await this.getJobCounts(); const metrics = []; metrics.push("# HELP bullmq_job_count Number of jobs in the queue by state"); metrics.push("# TYPE bullmq_job_count gauge"); const variables = !globalVariables ? "" : Object.keys(globalVariables).reduce((acc, curr) => `${acc}, ${curr}="${globalVariables[curr]}"`, ""); for (const [state, count4] of Object.entries(counts)) { metrics.push(`bullmq_job_count{queue="${this.name}", state="${state}"${variables}} ${count4}`); } return metrics.join("\n"); } }; // ../../node_modules/bullmq/dist/esm/classes/queue.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/classes/repeat.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var import_cron_parser2 = __toESM(require_parser2()); import { createHash } from "crypto"; var Repeat = class extends QueueBase { static { __name(this, "Repeat"); } constructor(name, opts, Connection) { super(name, opts, Connection); this.repeatStrategy = opts.settings && opts.settings.repeatStrategy || getNextMillis; this.repeatKeyHashAlgorithm = opts.settings && opts.settings.repeatKeyHashAlgorithm || "md5"; } async updateRepeatableJob(name, data, opts, { override }) { var _a2, _b; const repeatOpts = Object.assign({}, opts.repeat); (_a2 = repeatOpts.pattern) !== null && _a2 !== void 0 ? _a2 : repeatOpts.pattern = repeatOpts.cron; delete repeatOpts.cron; const iterationCount = repeatOpts.count ? repeatOpts.count + 1 : 1; if (typeof repeatOpts.limit !== "undefined" && iterationCount > repeatOpts.limit) { return; } let now = Date.now(); const { endDate } = repeatOpts; if (endDate && now > new Date(endDate).getTime()) { return; } const prevMillis = opts.prevMillis || 0; now = prevMillis < now ? now : prevMillis; const nextMillis = await this.repeatStrategy(now, repeatOpts, name); const { every, pattern } = repeatOpts; const hasImmediately = Boolean((every || pattern) && repeatOpts.immediately); const offset = hasImmediately && every ? now - nextMillis : void 0; if (nextMillis) { if (!prevMillis && opts.jobId) { repeatOpts.jobId = opts.jobId; } const legacyRepeatKey = getRepeatConcatOptions(name, repeatOpts); const newRepeatKey = (_b = opts.repeat.key) !== null && _b !== void 0 ? _b : this.hash(legacyRepeatKey); let repeatJobKey; if (override) { repeatJobKey = await this.scripts.addRepeatableJob(newRepeatKey, nextMillis, { name, endDate: endDate ? new Date(endDate).getTime() : void 0, tz: repeatOpts.tz, pattern, every }, legacyRepeatKey); } else { const client = await this.client; repeatJobKey = await this.scripts.updateRepeatableJobMillis(client, newRepeatKey, nextMillis, legacyRepeatKey); } const { immediately } = repeatOpts, filteredRepeatOpts = __rest(repeatOpts, ["immediately"]); return this.createNextJob(name, nextMillis, repeatJobKey, Object.assign(Object.assign({}, opts), { repeat: Object.assign({ offset }, filteredRepeatOpts) }), data, iterationCount, hasImmediately); } } async createNextJob(name, nextMillis, repeatJobKey, opts, data, currentCount, hasImmediately) { const jobId = this.getRepeatJobKey(name, nextMillis, repeatJobKey, data); const now = Date.now(); const delay2 = nextMillis + (opts.repeat.offset ? opts.repeat.offset : 0) - now; const mergedOpts = Object.assign(Object.assign({}, opts), { jobId, delay: delay2 < 0 || hasImmediately ? 0 : delay2, timestamp: now, prevMillis: nextMillis, repeatJobKey }); mergedOpts.repeat = Object.assign(Object.assign({}, opts.repeat), { count: currentCount }); return this.Job.create(this, name, data, mergedOpts); } // TODO: remove legacy code in next breaking change getRepeatJobKey(name, nextMillis, repeatJobKey, data) { if (repeatJobKey.split(":").length > 2) { return this.getRepeatJobId({ name, nextMillis, namespace: this.hash(repeatJobKey), jobId: data === null || data === void 0 ? void 0 : data.id }); } return this.getRepeatDelayedJobId({ customKey: repeatJobKey, nextMillis }); } async removeRepeatable(name, repeat, jobId) { var _a2; const repeatConcatOptions = getRepeatConcatOptions(name, Object.assign(Object.assign({}, repeat), { jobId })); const repeatJobKey = (_a2 = repeat.key) !== null && _a2 !== void 0 ? _a2 : this.hash(repeatConcatOptions); const legacyRepeatJobId = this.getRepeatJobId({ name, nextMillis: "", namespace: this.hash(repeatConcatOptions), jobId: jobId !== null && jobId !== void 0 ? jobId : repeat.jobId, key: repeat.key }); return this.scripts.removeRepeatable(legacyRepeatJobId, repeatConcatOptions, repeatJobKey); } async removeRepeatableByKey(repeatJobKey) { const data = this.keyToData(repeatJobKey); const legacyRepeatJobId = this.getRepeatJobId({ name: data.name, nextMillis: "", namespace: this.hash(repeatJobKey), jobId: data.id }); return this.scripts.removeRepeatable(legacyRepeatJobId, "", repeatJobKey); } async getRepeatableData(client, key, next) { const jobData = await client.hgetall(this.toKey("repeat:" + key)); if (jobData) { return { key, name: jobData.name, endDate: parseInt(jobData.endDate) || null, tz: jobData.tz || null, pattern: jobData.pattern || null, every: jobData.every || null, next }; } return this.keyToData(key, next); } keyToData(key, next) { const data = key.split(":"); const pattern = data.slice(4).join(":") || null; return { key, name: data[0], id: data[1] || null, endDate: parseInt(data[2]) || null, tz: data[3] || null, pattern, next }; } async getRepeatableJobs(start = 0, end = -1, asc2 = false) { const client = await this.client; const key = this.keys.repeat; const result = asc2 ? await client.zrange(key, start, end, "WITHSCORES") : await client.zrevrange(key, start, end, "WITHSCORES"); const jobs = []; for (let i = 0; i < result.length; i += 2) { jobs.push(this.getRepeatableData(client, result[i], parseInt(result[i + 1]))); } return Promise.all(jobs); } async getRepeatableCount() { const client = await this.client; return client.zcard(this.toKey("repeat")); } hash(str) { return createHash(this.repeatKeyHashAlgorithm).update(str).digest("hex"); } getRepeatDelayedJobId({ nextMillis, customKey }) { return `repeat:${customKey}:${nextMillis}`; } getRepeatJobId({ name, nextMillis, namespace, jobId, key }) { const checksum = key !== null && key !== void 0 ? key : this.hash(`${name}${jobId || ""}${namespace}`); return `repeat:${checksum}:${nextMillis}`; } }; function getRepeatConcatOptions(name, repeat) { const endDate = repeat.endDate ? new Date(repeat.endDate).getTime() : ""; const tz = repeat.tz || ""; const pattern = repeat.pattern; const suffix = (pattern ? pattern : String(repeat.every)) || ""; const jobId = repeat.jobId ? repeat.jobId : ""; return `${name}:${jobId}:${endDate}:${tz}:${suffix}`; } __name(getRepeatConcatOptions, "getRepeatConcatOptions"); var getNextMillis = /* @__PURE__ */ __name((millis, opts) => { const pattern = opts.pattern; if (pattern && opts.every) { throw new Error("Both .pattern and .every options are defined for this repeatable job"); } if (opts.every) { return Math.floor(millis / opts.every) * opts.every + (opts.immediately ? 0 : opts.every); } const currentDate = opts.startDate && new Date(opts.startDate) > new Date(millis) ? new Date(opts.startDate) : new Date(millis); const interval = (0, import_cron_parser2.parseExpression)(pattern, Object.assign(Object.assign({}, opts), { currentDate })); try { if (opts.immediately) { return (/* @__PURE__ */ new Date()).getTime(); } else { return interval.next().getTime(); } } catch (e) { } }, "getNextMillis"); // ../../node_modules/bullmq/dist/esm/classes/queue.js var Queue = class extends QueueGetters { static { __name(this, "Queue"); } constructor(name, opts, Connection) { var _a2; super(name, Object.assign({}, opts), Connection); this.token = v4_default(); this.libName = "bullmq"; this.jobsOpts = (_a2 = opts === null || opts === void 0 ? void 0 : opts.defaultJobOptions) !== null && _a2 !== void 0 ? _a2 : {}; this.waitUntilReady().then((client) => { if (!this.closing && !(opts === null || opts === void 0 ? void 0 : opts.skipMetasUpdate)) { return client.hmset(this.keys.meta, this.metaValues); } }).catch((err) => { }); } emit(event, ...args) { return super.emit(event, ...args); } off(eventName, listener) { super.off(eventName, listener); return this; } on(event, listener) { super.on(event, listener); return this; } once(event, listener) { super.once(event, listener); return this; } /** * Returns this instance current default job options. */ get defaultJobOptions() { return Object.assign({}, this.jobsOpts); } get metaValues() { var _a2, _b, _c2, _d2; return { "opts.maxLenEvents": (_d2 = (_c2 = (_b = (_a2 = this.opts) === null || _a2 === void 0 ? void 0 : _a2.streams) === null || _b === void 0 ? void 0 : _b.events) === null || _c2 === void 0 ? void 0 : _c2.maxLen) !== null && _d2 !== void 0 ? _d2 : 1e4, version: `${this.libName}:${version4}` }; } /** * Get library version. * * @returns the content of the meta.library field. */ async getVersion() { const client = await this.client; return await client.hget(this.keys.meta, "version"); } get repeat() { return new Promise(async (resolve) => { if (!this._repeat) { this._repeat = new Repeat(this.name, Object.assign(Object.assign({}, this.opts), { connection: await this.client })); this._repeat.on("error", this.emit.bind(this, "error")); } resolve(this._repeat); }); } get jobScheduler() { return new Promise(async (resolve) => { if (!this._jobScheduler) { this._jobScheduler = new JobScheduler(this.name, Object.assign(Object.assign({}, this.opts), { connection: await this.client })); this._jobScheduler.on("error", this.emit.bind(this, "error")); } resolve(this._jobScheduler); }); } /** * Enable and set global concurrency value. * @param concurrency - Maximum number of simultaneous jobs that the workers can handle. * For instance, setting this value to 1 ensures that no more than one job * is processed at any given time. If this limit is not defined, there will be no * restriction on the number of concurrent jobs. */ async setGlobalConcurrency(concurrency) { const client = await this.client; return client.hset(this.keys.meta, "concurrency", concurrency); } /** * Enable and set rate limit. * @param max - Max number of jobs to process in the time period specified in `duration` * @param duration - Time in milliseconds. During this time, a maximum of `max` jobs will be processed. */ async setGlobalRateLimit(max2, duration3) { const client = await this.client; return client.hset(this.keys.meta, "max", max2, "duration", duration3); } /** * Remove global concurrency value. */ async removeGlobalConcurrency() { const client = await this.client; return client.hdel(this.keys.meta, "concurrency"); } /** * Remove global rate limit values. */ async removeGlobalRateLimit() { const client = await this.client; return client.hdel(this.keys.meta, "max", "duration"); } /** * Adds a new job to the queue. * * @param name - Name of the job to be added to the queue. * @param data - Arbitrary data to append to the job. * @param opts - Job options that affects how the job is going to be processed. */ async add(name, data, opts) { return this.trace(SpanKind.PRODUCER, "add", `${this.name}.${name}`, async (span, srcPropagationMedatada) => { var _a2; if (srcPropagationMedatada && !((_a2 = opts === null || opts === void 0 ? void 0 : opts.telemetry) === null || _a2 === void 0 ? void 0 : _a2.omitContext)) { const telemetry = { metadata: srcPropagationMedatada }; opts = Object.assign(Object.assign({}, opts), { telemetry }); } const job = await this.addJob(name, data, opts); span === null || span === void 0 ? void 0 : span.setAttributes({ [TelemetryAttributes.JobName]: name, [TelemetryAttributes.JobId]: job.id }); return job; }); } /** * addJob is a telemetry free version of the add method, useful in order to wrap it * with custom telemetry on subclasses. * * @param name - Name of the job to be added to the queue. * @param data - Arbitrary data to append to the job. * @param opts - Job options that affects how the job is going to be processed. * * @returns Job */ async addJob(name, data, opts) { if (opts && opts.repeat) { if (opts.repeat.endDate) { if (+new Date(opts.repeat.endDate) < Date.now()) { throw new Error("End date must be greater than current timestamp"); } } return (await this.repeat).updateRepeatableJob(name, data, Object.assign(Object.assign({}, this.jobsOpts), opts), { override: true }); } else { const jobId = opts === null || opts === void 0 ? void 0 : opts.jobId; if (jobId == "0" || (jobId === null || jobId === void 0 ? void 0 : jobId.startsWith("0:"))) { throw new Error("JobId cannot be '0' or start with 0:"); } const job = await this.Job.create(this, name, data, Object.assign(Object.assign(Object.assign({}, this.jobsOpts), opts), { jobId })); this.emit("waiting", job); return job; } } /** * Adds an array of jobs to the queue. This method may be faster than adding * one job at a time in a sequence. * * @param jobs - The array of jobs to add to the queue. Each job is defined by 3 * properties, 'name', 'data' and 'opts'. They follow the same signature as 'Queue.add'. */ async addBulk(jobs) { return this.trace(SpanKind.PRODUCER, "addBulk", this.name, async (span, srcPropagationMedatada) => { if (span) { span.setAttributes({ [TelemetryAttributes.BulkNames]: jobs.map((job) => job.name), [TelemetryAttributes.BulkCount]: jobs.length }); } return await this.Job.createBulk(this, jobs.map((job) => { var _a2, _b, _c2, _d2, _e2, _f; let telemetry = (_a2 = job.opts) === null || _a2 === void 0 ? void 0 : _a2.telemetry; if (srcPropagationMedatada) { const omitContext = (_c2 = (_b = job.opts) === null || _b === void 0 ? void 0 : _b.telemetry) === null || _c2 === void 0 ? void 0 : _c2.omitContext; const telemetryMetadata = ((_e2 = (_d2 = job.opts) === null || _d2 === void 0 ? void 0 : _d2.telemetry) === null || _e2 === void 0 ? void 0 : _e2.metadata) || !omitContext && srcPropagationMedatada; if (telemetryMetadata || omitContext) { telemetry = { metadata: telemetryMetadata, omitContext }; } } return { name: job.name, data: job.data, opts: Object.assign(Object.assign(Object.assign({}, this.jobsOpts), job.opts), { jobId: (_f = job.opts) === null || _f === void 0 ? void 0 : _f.jobId, telemetry }) }; })); }); } /** * Upserts a scheduler. * * A scheduler is a job factory that creates jobs at a given interval. * Upserting a scheduler will create a new job scheduler or update an existing one. * It will also create the first job based on the repeat options and delayed accordingly. * * @param key - Unique key for the repeatable job meta. * @param repeatOpts - Repeat options * @param jobTemplate - Job template. If provided it will be used for all the jobs * created by the scheduler. * * @returns The next job to be scheduled (would normally be in delayed state). */ async upsertJobScheduler(jobSchedulerId, repeatOpts, jobTemplate) { var _a2, _b; if (repeatOpts.endDate) { if (+new Date(repeatOpts.endDate) < Date.now()) { throw new Error("End date must be greater than current timestamp"); } } return (await this.jobScheduler).upsertJobScheduler(jobSchedulerId, repeatOpts, (_a2 = jobTemplate === null || jobTemplate === void 0 ? void 0 : jobTemplate.name) !== null && _a2 !== void 0 ? _a2 : jobSchedulerId, (_b = jobTemplate === null || jobTemplate === void 0 ? void 0 : jobTemplate.data) !== null && _b !== void 0 ? _b : {}, Object.assign(Object.assign({}, this.jobsOpts), jobTemplate === null || jobTemplate === void 0 ? void 0 : jobTemplate.opts), { override: true }); } /** * Pauses the processing of this queue globally. * * We use an atomic RENAME operation on the wait queue. Since * we have blocking calls with BRPOPLPUSH on the wait queue, as long as the queue * is renamed to 'paused', no new jobs will be processed (the current ones * will run until finalized). * * Adding jobs requires a LUA script to check first if the paused list exist * and in that case it will add it there instead of the wait list. */ async pause() { await this.trace(SpanKind.INTERNAL, "pause", this.name, async () => { await this.scripts.pause(true); this.emit("paused"); }); } /** * Close the queue instance. * */ async close() { await this.trace(SpanKind.INTERNAL, "close", this.name, async () => { if (!this.closing) { if (this._repeat) { await this._repeat.close(); } } await super.close(); }); } /** * Overrides the rate limit to be active for the next jobs. * * @param expireTimeMs - expire time in ms of this rate limit. */ async rateLimit(expireTimeMs) { await this.trace(SpanKind.INTERNAL, "rateLimit", this.name, async (span) => { span === null || span === void 0 ? void 0 : span.setAttributes({ [TelemetryAttributes.QueueRateLimit]: expireTimeMs }); await this.client.then((client) => client.set(this.keys.limiter, Number.MAX_SAFE_INTEGER, "PX", expireTimeMs)); }); } /** * Resumes the processing of this queue globally. * * The method reverses the pause operation by resuming the processing of the * queue. */ async resume() { await this.trace(SpanKind.INTERNAL, "resume", this.name, async () => { await this.scripts.pause(false); this.emit("resumed"); }); } /** * Returns true if the queue is currently paused. */ async isPaused() { const client = await this.client; const pausedKeyExists = await client.hexists(this.keys.meta, "paused"); return pausedKeyExists === 1; } /** * Returns true if the queue is currently maxed. */ isMaxed() { return this.scripts.isMaxed(); } /** * Get all repeatable meta jobs. * * @deprecated This method is deprecated and will be removed in v6. Use getJobSchedulers instead. * * @param start - Offset of first job to return. * @param end - Offset of last job to return. * @param asc - Determine the order in which jobs are returned based on their * next execution time. */ async getRepeatableJobs(start, end, asc2) { return (await this.repeat).getRepeatableJobs(start, end, asc2); } /** * Get Job Scheduler by id * * @param id - identifier of scheduler. */ async getJobScheduler(id) { return (await this.jobScheduler).getScheduler(id); } /** * Get all Job Schedulers * * @param start - Offset of first scheduler to return. * @param end - Offset of last scheduler to return. * @param asc - Determine the order in which schedulers are returned based on their * next execution time. */ async getJobSchedulers(start, end, asc2) { return (await this.jobScheduler).getJobSchedulers(start, end, asc2); } /** * * Get the number of job schedulers. * * @returns The number of job schedulers. */ async getJobSchedulersCount() { return (await this.jobScheduler).getSchedulersCount(); } /** * Removes a repeatable job. * * Note: you need to use the exact same repeatOpts when deleting a repeatable job * than when adding it. * * @deprecated This method is deprecated and will be removed in v6. Use removeJobScheduler instead. * * @see removeRepeatableByKey * * @param name - Job name * @param repeatOpts - Repeat options * @param jobId - Job id to remove. If not provided, all jobs with the same repeatOpts * @returns */ async removeRepeatable(name, repeatOpts, jobId) { return this.trace(SpanKind.INTERNAL, "removeRepeatable", `${this.name}.${name}`, async (span) => { span === null || span === void 0 ? void 0 : span.setAttributes({ [TelemetryAttributes.JobName]: name, [TelemetryAttributes.JobId]: jobId }); const repeat = await this.repeat; const removed = await repeat.removeRepeatable(name, repeatOpts, jobId); return !removed; }); } /** * * Removes a job scheduler. * * @param jobSchedulerId - identifier of the job scheduler. * * @returns */ async removeJobScheduler(jobSchedulerId) { const jobScheduler = await this.jobScheduler; const removed = await jobScheduler.removeJobScheduler(jobSchedulerId); return !removed; } /** * Removes a debounce key. * @deprecated use removeDeduplicationKey * * @param id - debounce identifier */ async removeDebounceKey(id) { return this.trace(SpanKind.INTERNAL, "removeDebounceKey", `${this.name}`, async (span) => { span === null || span === void 0 ? void 0 : span.setAttributes({ [TelemetryAttributes.JobKey]: id }); const client = await this.client; return await client.del(`${this.keys.de}:${id}`); }); } /** * Removes a deduplication key. * * @param id - identifier */ async removeDeduplicationKey(id) { return this.trace(SpanKind.INTERNAL, "removeDeduplicationKey", `${this.name}`, async (span) => { span === null || span === void 0 ? void 0 : span.setAttributes({ [TelemetryAttributes.DeduplicationKey]: id }); const client = await this.client; return client.del(`${this.keys.de}:${id}`); }); } /** * Removes rate limit key. */ async removeRateLimitKey() { const client = await this.client; return client.del(this.keys.limiter); } /** * Removes a repeatable job by its key. Note that the key is the one used * to store the repeatable job metadata and not one of the job iterations * themselves. You can use "getRepeatableJobs" in order to get the keys. * * @see getRepeatableJobs * * @deprecated This method is deprecated and will be removed in v6. Use removeJobScheduler instead. * * @param repeatJobKey - To the repeatable job. * @returns */ async removeRepeatableByKey(key) { return this.trace(SpanKind.INTERNAL, "removeRepeatableByKey", `${this.name}`, async (span) => { span === null || span === void 0 ? void 0 : span.setAttributes({ [TelemetryAttributes.JobKey]: key }); const repeat = await this.repeat; const removed = await repeat.removeRepeatableByKey(key); return !removed; }); } /** * Removes the given job from the queue as well as all its * dependencies. * * @param jobId - The id of the job to remove * @param opts - Options to remove a job * @returns 1 if it managed to remove the job or 0 if the job or * any of its dependencies were locked. */ async remove(jobId, { removeChildren = true } = {}) { return this.trace(SpanKind.INTERNAL, "remove", this.name, async (span) => { span === null || span === void 0 ? void 0 : span.setAttributes({ [TelemetryAttributes.JobId]: jobId, [TelemetryAttributes.JobOptions]: JSON.stringify({ removeChildren }) }); const code = await this.scripts.remove(jobId, removeChildren); if (code === 1) { this.emit("removed", jobId); } return code; }); } /** * Updates the given job's progress. * * @param jobId - The id of the job to update * @param progress - Number or object to be saved as progress. */ async updateJobProgress(jobId, progress) { await this.trace(SpanKind.INTERNAL, "updateJobProgress", this.name, async (span) => { span === null || span === void 0 ? void 0 : span.setAttributes({ [TelemetryAttributes.JobId]: jobId, [TelemetryAttributes.JobProgress]: JSON.stringify(progress) }); await this.scripts.updateProgress(jobId, progress); this.emit("progress", jobId, progress); }); } /** * Logs one row of job's log data. * * @param jobId - The job id to log against. * @param logRow - String with log data to be logged. * @param keepLogs - Max number of log entries to keep (0 for unlimited). * * @returns The total number of log entries for this job so far. */ async addJobLog(jobId, logRow, keepLogs) { return Job.addJobLog(this, jobId, logRow, keepLogs); } /** * Drains the queue, i.e., removes all jobs that are waiting * or delayed, but not active, completed or failed. * * @param delayed - Pass true if it should also clean the * delayed jobs. */ async drain(delayed = false) { await this.trace(SpanKind.INTERNAL, "drain", this.name, async (span) => { span === null || span === void 0 ? void 0 : span.setAttributes({ [TelemetryAttributes.QueueDrainDelay]: delayed }); await this.scripts.drain(delayed); }); } /** * Cleans jobs from a queue. Similar to drain but keeps jobs within a certain * grace period. * * @param grace - The grace period in milliseconds * @param limit - Max number of jobs to clean * @param type - The type of job to clean * Possible values are completed, wait, active, paused, delayed, failed. Defaults to completed. * @returns Id jobs from the deleted records */ async clean(grace, limit, type = "completed") { return this.trace(SpanKind.INTERNAL, "clean", this.name, async (span) => { const maxCount = limit || Infinity; const maxCountPerCall = Math.min(1e4, maxCount); const timestamp = Date.now() - grace; let deletedCount = 0; const deletedJobsIds = []; const normalizedType = type === "waiting" ? "wait" : type; while (deletedCount < maxCount) { const jobsIds = await this.scripts.cleanJobsInSet(normalizedType, timestamp, maxCountPerCall); this.emit("cleaned", jobsIds, normalizedType); deletedCount += jobsIds.length; deletedJobsIds.push(...jobsIds); if (jobsIds.length < maxCountPerCall) { break; } } span === null || span === void 0 ? void 0 : span.setAttributes({ [TelemetryAttributes.QueueGrace]: grace, [TelemetryAttributes.JobType]: type, [TelemetryAttributes.QueueCleanLimit]: maxCount, [TelemetryAttributes.JobIds]: deletedJobsIds }); return deletedJobsIds; }); } /** * Completely destroys the queue and all of its contents irreversibly. * This method will *pause* the queue and requires that there are no * active jobs. It is possible to bypass this requirement, i.e. not * having active jobs using the "force" option. * * Note: This operation requires to iterate on all the jobs stored in the queue * and can be slow for very large queues. * * @param opts - Obliterate options. */ async obliterate(opts) { await this.trace(SpanKind.INTERNAL, "obliterate", this.name, async () => { await this.pause(); let cursor = 0; do { cursor = await this.scripts.obliterate(Object.assign({ force: false, count: 1e3 }, opts)); } while (cursor); }); } /** * Retry all the failed or completed jobs. * * @param opts - An object with the following properties: * - count number to limit how many jobs will be moved to wait status per iteration, * - state failed by default or completed. * - timestamp from which timestamp to start moving jobs to wait status, default Date.now(). * * @returns */ async retryJobs(opts = {}) { await this.trace(SpanKind.PRODUCER, "retryJobs", this.name, async (span) => { span === null || span === void 0 ? void 0 : span.setAttributes({ [TelemetryAttributes.QueueOptions]: JSON.stringify(opts) }); let cursor = 0; do { cursor = await this.scripts.retryJobs(opts.state, opts.count, opts.timestamp); } while (cursor); }); } /** * Promote all the delayed jobs. * * @param opts - An object with the following properties: * - count number to limit how many jobs will be moved to wait status per iteration * * @returns */ async promoteJobs(opts = {}) { await this.trace(SpanKind.INTERNAL, "promoteJobs", this.name, async (span) => { span === null || span === void 0 ? void 0 : span.setAttributes({ [TelemetryAttributes.QueueOptions]: JSON.stringify(opts) }); let cursor = 0; do { cursor = await this.scripts.promoteJobs(opts.count); } while (cursor); }); } /** * Trim the event stream to an approximately maxLength. * * @param maxLength - */ async trimEvents(maxLength) { return this.trace(SpanKind.INTERNAL, "trimEvents", this.name, async (span) => { span === null || span === void 0 ? void 0 : span.setAttributes({ [TelemetryAttributes.QueueEventMaxLength]: maxLength }); const client = await this.client; return await client.xtrim(this.keys.events, "MAXLEN", "~", maxLength); }); } /** * Delete old priority helper key. */ async removeDeprecatedPriorityKey() { const client = await this.client; return client.del(this.toKey("priority")); } /** * Removes orphaned job keys that exist in Redis but are not referenced * in any queue state set. * * Orphaned keys can occur in rare cases when the removal-by-max-age logic * removes sorted-set entries without fully cleaning up the corresponding * job hash data (a regression introduced in v5.66.6 via #3694). * Under normal operation this method is * **not needed** — it is provided only as a one-time migration helper for * users who were affected by that specific bug and want to reclaim the * leaked memory. * * The method uses a Lua script so that every check-and-delete cycle is * atomic (per SCAN iteration). State keys are derived dynamically from * the queue's key map and their Redis TYPE is checked at runtime, so newly * introduced states are picked up automatically. * * @param count - Approximate number of keys to SCAN per iteration (default 1000). * @param limit - Maximum number of orphaned jobs to remove (0 = unlimited). * When set, the method returns as soon as the limit is reached. * Users with a very large number of orphans can call this method * in a loop: `while (await queue.removeOrphanedJobs(1000, 10000)) {}` * @returns The total number of orphaned jobs that were removed. */ async removeOrphanedJobs(count4 = 1e3, limit = 0) { const client = await this.client; const knownSuffixes = new Set(Object.keys(this.keys)); const stateKeySuffixes = Object.keys(this.keys).filter((s) => s !== ""); const jobSubKeySuffixes = [ "logs", "dependencies", "processed", "failed", "unsuccessful", "lock" ]; const basePrefix = this.qualifiedName + ":"; const scanPattern = basePrefix + "*"; let totalRemoved = 0; let cursor = "0"; do { const [nextCursor, keys] = await client.scan(cursor, "MATCH", scanPattern, "COUNT", count4); cursor = nextCursor; const candidateJobIds = /* @__PURE__ */ new Set(); for (const key of keys) { const suffix = key.slice(basePrefix.length); if (knownSuffixes.has(suffix)) { continue; } const colonIdx = suffix.indexOf(":"); if (colonIdx !== -1) { const prefixPart = suffix.slice(0, colonIdx); if (knownSuffixes.has(prefixPart)) { continue; } } const jobId = colonIdx === -1 ? suffix : suffix.slice(0, colonIdx); if (colonIdx !== -1) { const subKey = suffix.slice(colonIdx + 1); if (!jobSubKeySuffixes.includes(subKey)) { continue; } } candidateJobIds.add(jobId); } if (candidateJobIds.size === 0) { continue; } const result = await this.scripts.removeOrphanedJobs([...candidateJobIds], stateKeySuffixes, jobSubKeySuffixes); totalRemoved += result || 0; if (limit > 0 && totalRemoved >= limit) { break; } } while (cursor !== "0"); return totalRemoved; } }; // ../../node_modules/bullmq/dist/esm/classes/sandbox.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var sandbox = /* @__PURE__ */ __name((processFile, childPool) => { return /* @__PURE__ */ __name(async function process3(job, token, signal) { let child; let msgHandler; let exitHandler; let abortHandler; try { const done = new Promise((resolve, reject) => { const initChild = /* @__PURE__ */ __name(async () => { try { exitHandler = /* @__PURE__ */ __name((exitCode2, signal2) => { reject(new Error("Unexpected exit code: " + exitCode2 + " signal: " + signal2)); }, "exitHandler"); child = await childPool.retain(processFile); child.on("exit", exitHandler); msgHandler = /* @__PURE__ */ __name(async (msg) => { var _a2, _b, _c2, _d2, _e2; try { switch (msg.cmd) { case ParentCommand.Completed: resolve(msg.value); break; case ParentCommand.Failed: case ParentCommand.Error: { const err = new Error(); Object.assign(err, msg.value); reject(err); break; } case ParentCommand.Progress: await job.updateProgress(msg.value); break; case ParentCommand.Log: await job.log(msg.value); break; case ParentCommand.MoveToDelayed: await job.moveToDelayed((_a2 = msg.value) === null || _a2 === void 0 ? void 0 : _a2.timestamp, (_b = msg.value) === null || _b === void 0 ? void 0 : _b.token); break; case ParentCommand.MoveToWait: await job.moveToWait((_c2 = msg.value) === null || _c2 === void 0 ? void 0 : _c2.token); break; case ParentCommand.MoveToWaitingChildren: { const value = await job.moveToWaitingChildren((_d2 = msg.value) === null || _d2 === void 0 ? void 0 : _d2.token, (_e2 = msg.value) === null || _e2 === void 0 ? void 0 : _e2.opts); child.send({ requestId: msg.requestId, cmd: ChildCommand.MoveToWaitingChildrenResponse, value }); } break; case ParentCommand.Update: await job.updateData(msg.value); break; case ParentCommand.GetChildrenValues: { const value = await job.getChildrenValues(); child.send({ requestId: msg.requestId, cmd: ChildCommand.GetChildrenValuesResponse, value }); } break; case ParentCommand.GetIgnoredChildrenFailures: { const value = await job.getIgnoredChildrenFailures(); child.send({ requestId: msg.requestId, cmd: ChildCommand.GetIgnoredChildrenFailuresResponse, value }); } break; } } catch (err) { reject(err); } }, "msgHandler"); child.on("message", msgHandler); child.send({ cmd: ChildCommand.Start, job: job.asJSONSandbox(), token }); if (signal) { abortHandler = /* @__PURE__ */ __name(() => { try { child.send({ cmd: ChildCommand.Cancel, value: signal.reason }); } catch (_a2) { } }, "abortHandler"); if (signal.aborted) { abortHandler(); } else { signal.addEventListener("abort", abortHandler, { once: true }); } } } catch (error50) { reject(error50); } }, "initChild"); initChild(); }); await done; return done; } finally { if (signal && abortHandler) { signal.removeEventListener("abort", abortHandler); } if (child) { child.off("message", msgHandler); child.off("exit", exitHandler); if (child.exitCode === null && child.signalCode === null) { childPool.release(child); } } } }, "process"); }, "sandbox"); var sandbox_default = sandbox; // ../../node_modules/bullmq/dist/esm/classes/worker.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); init_fs2(); import { URL as URL2 } from "url"; import * as path2 from "path"; var import_node_abort_controller3 = __toESM(require_browser()); var maximumBlockTimeout = 10; var Worker2 = class extends QueueBase { static { __name(this, "Worker"); } static RateLimitError() { return new RateLimitError(); } constructor(name, processor, opts, Connection) { var _a2; super(name, Object.assign(Object.assign({ drainDelay: 5, concurrency: 1, lockDuration: 3e4, maximumRateLimitDelay: 3e4, maxStalledCount: 1, stalledInterval: 3e4, autorun: true, runRetryDelay: 15e3 }, opts), { blockingConnection: true }), Connection); this.abortDelayController = null; this.blockUntil = 0; this.drained = false; this.limitUntil = 0; this.processorAcceptsSignal = false; this.waiting = null; this.running = false; this.mainLoopRunning = null; if (!opts || !opts.connection) { throw new Error("Worker requires a connection"); } if (typeof this.opts.maxStalledCount !== "number" || this.opts.maxStalledCount < 0) { throw new Error("maxStalledCount must be greater or equal than 0"); } if (typeof this.opts.maxStartedAttempts === "number" && this.opts.maxStartedAttempts < 0) { throw new Error("maxStartedAttempts must be greater or equal than 0"); } if (typeof this.opts.stalledInterval !== "number" || this.opts.stalledInterval <= 0) { throw new Error("stalledInterval must be greater than 0"); } if (typeof this.opts.drainDelay !== "number" || this.opts.drainDelay <= 0) { throw new Error("drainDelay must be greater than 0"); } this.concurrency = this.opts.concurrency; this.opts.lockRenewTime = this.opts.lockRenewTime || this.opts.lockDuration / 2; this.id = v4_default(); this.createLockManager(); if (processor) { if (typeof processor === "function") { this.processFn = processor; this.processorAcceptsSignal = processor.length >= 3; } else { if (processor instanceof URL2) { if (!existsSync(processor)) { throw new Error(`URL ${processor} does not exist in the local file system`); } processor = processor.href; } else { const supportedFileTypes = [".js", ".ts", ".flow", ".cjs", ".mjs"]; const processorFile = processor + (supportedFileTypes.includes(path2.extname(processor)) ? "" : ".js"); if (!existsSync(processorFile)) { throw new Error(`File ${processorFile} does not exist`); } } const dirname2 = path2.dirname(module.filename || __filename); const workerThreadsMainFile = path2.join(dirname2, "main-worker.js"); const spawnProcessMainFile = path2.join(dirname2, "main.js"); let mainFilePath = this.opts.useWorkerThreads ? workerThreadsMainFile : spawnProcessMainFile; try { statSync(mainFilePath); } catch (_) { const mainFile = this.opts.useWorkerThreads ? "main-worker.js" : "main.js"; mainFilePath = path2.join(process.cwd(), `dist/cjs/classes/${mainFile}`); statSync(mainFilePath); } this.childPool = new ChildPool({ mainFile: mainFilePath, useWorkerThreads: this.opts.useWorkerThreads, workerForkOptions: this.opts.workerForkOptions, workerThreadsOptions: this.opts.workerThreadsOptions }); this.createSandbox(processor); this.processorAcceptsSignal = true; } if (this.opts.autorun) { this.run().catch((error50) => this.emit("error", error50)); } } const connectionName = this.clientName() + (this.opts.name ? `:w:${this.opts.name}` : ""); this.blockingConnection = new RedisConnection(isRedisInstance(opts.connection) ? opts.connection.isCluster ? opts.connection.duplicate(void 0, { redisOptions: Object.assign(Object.assign({}, ((_a2 = opts.connection.options) === null || _a2 === void 0 ? void 0 : _a2.redisOptions) || {}), { connectionName }) }) : opts.connection.duplicate({ connectionName }) : Object.assign(Object.assign({}, opts.connection), { connectionName }), { shared: false, blocking: true, skipVersionCheck: opts.skipVersionCheck }); this.blockingConnection.on("error", (error50) => this.emit("error", error50)); this.blockingConnection.on("ready", () => setTimeout(() => this.emit("ready"), 0)); } /** * Creates and configures the lock manager for processing jobs. * This method can be overridden in subclasses to customize lock manager behavior. */ createLockManager() { this.lockManager = new LockManager(this, { lockRenewTime: this.opts.lockRenewTime, lockDuration: this.opts.lockDuration, workerId: this.id, workerName: this.opts.name }); } /** * Creates and configures the sandbox for processing jobs. * This method can be overridden in subclasses to customize sandbox behavior. * * @param processor - The processor file path, URL, or function to be sandboxed */ createSandbox(processor) { this.processFn = sandbox_default(processor, this.childPool).bind(this); } /** * Public accessor method for LockManager to extend locks. * This delegates to the protected scripts object. */ async extendJobLocks(jobIds, tokens, duration3) { return this.scripts.extendLocks(jobIds, tokens, duration3); } emit(event, ...args) { return super.emit(event, ...args); } off(eventName, listener) { super.off(eventName, listener); return this; } on(event, listener) { super.on(event, listener); return this; } once(event, listener) { super.once(event, listener); return this; } callProcessJob(job, token, signal) { return this.processFn(job, token, signal); } createJob(data, jobId) { return this.Job.fromJSON(this, data, jobId); } /** * * Waits until the worker is ready to start processing jobs. * In general only useful when writing tests. * */ async waitUntilReady() { await super.waitUntilReady(); return this.blockingConnection.client; } /** * Cancels a specific job currently being processed by this worker. * The job's processor function will receive an abort signal. * * @param jobId - The ID of the job to cancel * @param reason - Optional reason for the cancellation * @returns true if the job was found and cancelled, false otherwise */ cancelJob(jobId, reason) { return this.lockManager.cancelJob(jobId, reason); } /** * Cancels all jobs currently being processed by this worker. * All active job processor functions will receive abort signals. * * @param reason - Optional reason for the cancellation */ cancelAllJobs(reason) { this.lockManager.cancelAllJobs(reason); } set concurrency(concurrency) { if (typeof concurrency !== "number" || concurrency < 1 || !isFinite(concurrency)) { throw new Error("concurrency must be a finite number greater than 0"); } this._concurrency = concurrency; } get concurrency() { return this._concurrency; } get repeat() { return new Promise(async (resolve) => { if (!this._repeat) { const connection = await this.client; this._repeat = new Repeat(this.name, Object.assign(Object.assign({}, this.opts), { connection })); this._repeat.on("error", this.emit.bind(this, "error")); } resolve(this._repeat); }); } get jobScheduler() { return new Promise(async (resolve) => { if (!this._jobScheduler) { const connection = await this.client; this._jobScheduler = new JobScheduler(this.name, Object.assign(Object.assign({}, this.opts), { connection })); this._jobScheduler.on("error", this.emit.bind(this, "error")); } resolve(this._jobScheduler); }); } async run() { if (!this.processFn) { throw new Error("No process function is defined."); } if (this.running) { throw new Error("Worker is already running."); } try { this.running = true; if (this.closing || this.paused) { return; } await this.startStalledCheckTimer(); if (!this.opts.skipLockRenewal) { this.lockManager.start(); } const client = await this.client; const bclient = await this.blockingConnection.client; this.mainLoopRunning = this.mainLoop(client, bclient); await this.mainLoopRunning; } finally { this.running = false; } } async waitForRateLimit() { var _a2; const limitUntil = this.limitUntil; if (limitUntil > Date.now()) { (_a2 = this.abortDelayController) === null || _a2 === void 0 ? void 0 : _a2.abort(); this.abortDelayController = new import_node_abort_controller3.AbortController(); const delay2 = this.getRateLimitDelay(limitUntil - Date.now()); await this.delay(delay2, this.abortDelayController); this.drained = false; this.limitUntil = 0; } } /** * This is the main loop in BullMQ. Its goals are to fetch jobs from the queue * as efficiently as possible, providing concurrency and minimal unnecessary calls * to Redis. */ async mainLoop(client, bclient) { const asyncFifoQueue = new AsyncFifoQueue(); let tokenPostfix = 0; while (!this.closing && !this.paused || asyncFifoQueue.numTotal() > 0) { while (!this.closing && !this.paused && !this.waiting && asyncFifoQueue.numTotal() < this._concurrency && !this.isRateLimited()) { const token = `${this.id}:${tokenPostfix++}`; const fetchedJob = this.retryIfFailed(() => this._getNextJob(client, bclient, token, { block: true }), { delayInMs: this.opts.runRetryDelay, onlyEmitError: true }); asyncFifoQueue.add(fetchedJob); if (this.waiting && asyncFifoQueue.numTotal() > 1) { break; } const job2 = await fetchedJob; if (!job2 && asyncFifoQueue.numTotal() > 1) { break; } if (this.blockUntil) { break; } } let job; do { job = await asyncFifoQueue.fetch(); } while (!job && asyncFifoQueue.numQueued() > 0); if (job) { const token = job.token; asyncFifoQueue.add(this.processJob(job, token, () => asyncFifoQueue.numTotal() <= this._concurrency)); } else if (asyncFifoQueue.numQueued() === 0) { await this.waitForRateLimit(); } } } /** * Returns a promise that resolves to the next job in queue. * @param token - worker token to be assigned to retrieved job * @returns a Job or undefined if no job was available in the queue. */ async getNextJob(token, { block = true } = {}) { var _a2, _b; const nextJob = await this._getNextJob(await this.client, await this.blockingConnection.client, token, { block }); return this.trace(SpanKind.INTERNAL, "getNextJob", this.name, async (span) => { span === null || span === void 0 ? void 0 : span.setAttributes({ [TelemetryAttributes.WorkerId]: this.id, [TelemetryAttributes.QueueName]: this.name, [TelemetryAttributes.WorkerName]: this.opts.name, [TelemetryAttributes.WorkerOptions]: JSON.stringify({ block }), [TelemetryAttributes.JobId]: nextJob === null || nextJob === void 0 ? void 0 : nextJob.id }); return nextJob; }, (_b = (_a2 = nextJob === null || nextJob === void 0 ? void 0 : nextJob.opts) === null || _a2 === void 0 ? void 0 : _a2.telemetry) === null || _b === void 0 ? void 0 : _b.metadata); } async _getNextJob(client, bclient, token, { block = true } = {}) { if (this.paused) { return; } if (this.closing) { return; } if (this.drained && block && !this.limitUntil && !this.waiting) { this.waiting = this.waitForJob(bclient, this.blockUntil); try { this.blockUntil = await this.waiting; if (this.blockUntil <= 0 || this.blockUntil - Date.now() < 1) { return await this.moveToActive(client, token, this.opts.name); } } finally { this.waiting = null; } } else { if (!this.isRateLimited()) { return this.moveToActive(client, token, this.opts.name); } } } /** * Overrides the rate limit to be active for the next jobs. * @deprecated This method is deprecated and will be removed in v6. Use queue.rateLimit method instead. * @param expireTimeMs - expire time in ms of this rate limit. */ async rateLimit(expireTimeMs) { await this.trace(SpanKind.INTERNAL, "rateLimit", this.name, async (span) => { span === null || span === void 0 ? void 0 : span.setAttributes({ [TelemetryAttributes.WorkerId]: this.id, [TelemetryAttributes.WorkerRateLimit]: expireTimeMs }); await this.client.then((client) => client.set(this.keys.limiter, Number.MAX_SAFE_INTEGER, "PX", expireTimeMs)); }); } get minimumBlockTimeout() { return this.blockingConnection.capabilities.canBlockFor1Ms ? ( /* 1 millisecond is chosen because the granularity of our timestamps are milliseconds. Obviously we can still process much faster than 1 job per millisecond but delays and rate limits will never work with more accuracy than 1ms. */ 1e-3 ) : 2e-3; } isRateLimited() { return this.limitUntil > Date.now(); } async moveToActive(client, token, name) { const [jobData, id, rateLimitDelay, delayUntil] = await this.scripts.moveToActive(client, token, name); this.updateDelays(rateLimitDelay, delayUntil); return this.nextJobFromJobData(jobData, id, token); } async waitForJob(bclient, blockUntil) { if (this.paused) { return Infinity; } let timeout; try { if (!this.closing && !this.isRateLimited()) { let blockTimeout = this.getBlockTimeout(blockUntil); if (blockTimeout > 0) { blockTimeout = this.blockingConnection.capabilities.canDoubleTimeout ? blockTimeout : Math.ceil(blockTimeout); timeout = setTimeout(async () => { bclient.disconnect(!this.closing); }, blockTimeout * 1e3 + 1e3); this.updateDelays(); const result = await bclient.bzpopmin(this.keys.marker, blockTimeout); if (result) { const [_key2, member2, score] = result; if (member2) { const newBlockUntil = parseInt(score); if (blockUntil && newBlockUntil > blockUntil) { return blockUntil; } return newBlockUntil; } } } return 0; } } catch (error50) { if (isNotConnectionError(error50)) { this.emit("error", error50); } if (!this.closing) { await this.delay(); } } finally { clearTimeout(timeout); } return Infinity; } getBlockTimeout(blockUntil) { const opts = this.opts; if (blockUntil) { const blockDelay = blockUntil - Date.now(); if (blockDelay <= 0) { return blockDelay; } else if (blockDelay < this.minimumBlockTimeout * 1e3) { return this.minimumBlockTimeout; } else { return Math.min(blockDelay / 1e3, maximumBlockTimeout); } } else { return Math.max(opts.drainDelay, this.minimumBlockTimeout); } } getRateLimitDelay(delay2) { return Math.min(delay2, this.opts.maximumRateLimitDelay); } /** * * This function is exposed only for testing purposes. */ async delay(milliseconds, abortController) { await delay(milliseconds || DELAY_TIME_1, abortController); } updateDelays(limitDelay = 0, delayUntil = 0) { const clampedLimit = Math.max(limitDelay, 0); if (clampedLimit > 0) { this.limitUntil = Date.now() + clampedLimit; } else { this.limitUntil = 0; } this.blockUntil = Math.max(delayUntil, 0) || 0; } async nextJobFromJobData(jobData, jobId, token) { if (!jobData) { if (!this.drained) { this.emit("drained"); this.drained = true; } } else { this.drained = false; const job = this.createJob(jobData, jobId); job.token = token; try { await this.retryIfFailed(async () => { if (job.repeatJobKey && job.repeatJobKey.split(":").length < 5) { const jobScheduler = await this.jobScheduler; await jobScheduler.upsertJobScheduler( // Most of these arguments are not really needed // anymore as we read them from the job scheduler itself job.repeatJobKey, job.opts.repeat, job.name, job.data, job.opts, { override: false, producerId: job.id } ); } else if (job.opts.repeat) { const repeat = await this.repeat; await repeat.updateRepeatableJob(job.name, job.data, job.opts, { override: false }); } }, { delayInMs: this.opts.runRetryDelay }); } catch (err) { const errorMessage = err instanceof Error ? err.message : String(err); const schedulingError = new Error(`Failed to add repeatable job for next iteration: ${errorMessage}`); this.emit("error", schedulingError); return void 0; } return job; } } async processJob(job, token, fetchNextCallback = () => true) { var _a2, _b; const srcPropagationMedatada = (_b = (_a2 = job.opts) === null || _a2 === void 0 ? void 0 : _a2.telemetry) === null || _b === void 0 ? void 0 : _b.metadata; return this.trace(SpanKind.CONSUMER, "process", this.name, async (span) => { span === null || span === void 0 ? void 0 : span.setAttributes({ [TelemetryAttributes.WorkerId]: this.id, [TelemetryAttributes.WorkerName]: this.opts.name, [TelemetryAttributes.JobId]: job.id, [TelemetryAttributes.JobName]: job.name }); this.emit("active", job, "waiting"); const abortController = this.lockManager.trackJob(job.id, token, job.processedOn, this.processorAcceptsSignal); try { const unrecoverableErrorMessage = this.getUnrecoverableErrorMessage(job); if (unrecoverableErrorMessage) { const failed = await this.retryIfFailed(() => { this.lockManager.untrackJob(job.id); return this.handleFailed(new UnrecoverableError(unrecoverableErrorMessage), job, token, fetchNextCallback, span); }, { delayInMs: this.opts.runRetryDelay, span }); return failed; } const result = await this.callProcessJob(job, token, abortController ? abortController.signal : void 0); return await this.retryIfFailed(() => { this.lockManager.untrackJob(job.id); return this.handleCompleted(result, job, token, fetchNextCallback, span); }, { delayInMs: this.opts.runRetryDelay, span }); } catch (err) { const failed = await this.retryIfFailed(() => { this.lockManager.untrackJob(job.id); return this.handleFailed(err, job, token, fetchNextCallback, span); }, { delayInMs: this.opts.runRetryDelay, span, onlyEmitError: true }); return failed; } finally { this.lockManager.untrackJob(job.id); const now = Date.now(); span === null || span === void 0 ? void 0 : span.setAttributes({ [TelemetryAttributes.JobFinishedTimestamp]: now, [TelemetryAttributes.JobAttemptFinishedTimestamp]: job.finishedOn || now, [TelemetryAttributes.JobProcessedTimestamp]: job.processedOn }); } }, srcPropagationMedatada); } getUnrecoverableErrorMessage(job) { if (job.deferredFailure) { return job.deferredFailure; } if (this.opts.maxStartedAttempts && this.opts.maxStartedAttempts < job.attemptsStarted) { return "job started more than allowable limit"; } } async handleCompleted(result, job, token, fetchNextCallback = () => true, span) { if (!this.connection.closing) { const completed = await job.moveToCompleted(result, token, fetchNextCallback() && !(this.closing || this.paused)); this.emit("completed", job, result, "active"); span === null || span === void 0 ? void 0 : span.addEvent("job completed", { [TelemetryAttributes.JobResult]: JSON.stringify(result) }); span === null || span === void 0 ? void 0 : span.setAttributes({ [TelemetryAttributes.JobAttemptsMade]: job.attemptsMade }); if (Array.isArray(completed)) { const [jobData, jobId, rateLimitDelay, delayUntil] = completed; this.updateDelays(rateLimitDelay, delayUntil); return this.nextJobFromJobData(jobData, jobId, token); } } } async handleFailed(err, job, token, fetchNextCallback = () => true, span) { if (!this.connection.closing) { if (err.message === RATE_LIMIT_ERROR) { const rateLimitTtl = await this.moveLimitedBackToWait(job, token); this.limitUntil = rateLimitTtl > 0 ? Date.now() + rateLimitTtl : 0; return; } if (err instanceof DelayedError || err.name == "DelayedError" || err instanceof WaitingError || err.name == "WaitingError" || err instanceof WaitingChildrenError || err.name == "WaitingChildrenError") { const client = await this.client; return this.moveToActive(client, token, this.opts.name); } const result = await job.moveToFailed(err, token, fetchNextCallback() && !(this.closing || this.paused)); this.emit("failed", job, err, "active"); span === null || span === void 0 ? void 0 : span.addEvent("job failed", { [TelemetryAttributes.JobFailedReason]: err.message }); span === null || span === void 0 ? void 0 : span.setAttributes({ [TelemetryAttributes.JobAttemptsMade]: job.attemptsMade }); if (Array.isArray(result)) { const [jobData, jobId, rateLimitDelay, delayUntil] = result; this.updateDelays(rateLimitDelay, delayUntil); return this.nextJobFromJobData(jobData, jobId, token); } } } /** * * Pauses the processing of this queue only for this worker. */ async pause(doNotWaitActive) { await this.trace(SpanKind.INTERNAL, "pause", this.name, async (span) => { var _a2; span === null || span === void 0 ? void 0 : span.setAttributes({ [TelemetryAttributes.WorkerId]: this.id, [TelemetryAttributes.WorkerName]: this.opts.name, [TelemetryAttributes.WorkerDoNotWaitActive]: doNotWaitActive }); if (!this.paused) { this.paused = true; if (!doNotWaitActive) { await this.whenCurrentJobsFinished(); } (_a2 = this.stalledCheckStopper) === null || _a2 === void 0 ? void 0 : _a2.call(this); this.emit("paused"); } }); } /** * * Resumes processing of this worker (if paused). */ resume() { if (!this.running) { this.trace(SpanKind.INTERNAL, "resume", this.name, (span) => { span === null || span === void 0 ? void 0 : span.setAttributes({ [TelemetryAttributes.WorkerId]: this.id, [TelemetryAttributes.WorkerName]: this.opts.name }); this.paused = false; if (this.processFn) { this.run(); } this.emit("resumed"); }); } } /** * * Checks if worker is paused. * * @returns true if worker is paused, false otherwise. */ isPaused() { return !!this.paused; } /** * * Checks if worker is currently running. * * @returns true if worker is running, false otherwise. */ isRunning() { return this.running; } /** * * Closes the worker and related redis connections. * * This method waits for current jobs to finalize before returning. * * @param force - Use force boolean parameter if you do not want to wait for * current jobs to be processed. When using telemetry, be mindful that it can * interfere with the proper closure of spans, potentially preventing them from being exported. * * @returns Promise that resolves when the worker has been closed. */ async close(force = false) { if (this.closing) { return this.closing; } this.closing = (async () => { await this.trace(SpanKind.INTERNAL, "close", this.name, async (span) => { var _a2, _b; span === null || span === void 0 ? void 0 : span.setAttributes({ [TelemetryAttributes.WorkerId]: this.id, [TelemetryAttributes.WorkerName]: this.opts.name, [TelemetryAttributes.WorkerForceClose]: force }); this.emit("closing", "closing queue"); (_a2 = this.abortDelayController) === null || _a2 === void 0 ? void 0 : _a2.abort(); const asyncCleanups = [ () => { return force || this.whenCurrentJobsFinished(false); }, () => this.lockManager.close(), () => { var _a3; return (_a3 = this.childPool) === null || _a3 === void 0 ? void 0 : _a3.clean(); }, () => this.blockingConnection.close(force), () => this.connection.close(force) ]; for (const cleanup of asyncCleanups) { try { await cleanup(); } catch (err) { this.emit("error", err); } } (_b = this.stalledCheckStopper) === null || _b === void 0 ? void 0 : _b.call(this); this.closed = true; this.emit("closed"); }); })(); return await this.closing; } /** * * Manually starts the stalled checker. * The check will run once as soon as this method is called, and * then every opts.stalledInterval milliseconds until the worker is closed. * Note: Normally you do not need to call this method, since the stalled checker * is automatically started when the worker starts processing jobs after * calling run. However if you want to process the jobs manually you need * to call this method to start the stalled checker. * * @see {@link https://docs.bullmq.io/patterns/manually-fetching-jobs} */ async startStalledCheckTimer() { if (!this.opts.skipStalledCheck) { if (!this.closing) { await this.trace(SpanKind.INTERNAL, "startStalledCheckTimer", this.name, async (span) => { span === null || span === void 0 ? void 0 : span.setAttributes({ [TelemetryAttributes.WorkerId]: this.id, [TelemetryAttributes.WorkerName]: this.opts.name }); this.stalledChecker().catch((err) => { this.emit("error", err); }); }); } } } async stalledChecker() { while (!(this.closing || this.paused)) { await this.checkConnectionError(() => this.moveStalledJobsToWait()); await new Promise((resolve) => { const timeout = setTimeout(resolve, this.opts.stalledInterval); this.stalledCheckStopper = () => { clearTimeout(timeout); resolve(); }; }); } } /** * Returns a promise that resolves when active jobs are cleared * * @returns */ async whenCurrentJobsFinished(reconnect = true) { if (this.waiting) { await this.blockingConnection.disconnect(reconnect); } else { reconnect = false; } if (this.mainLoopRunning) { await this.mainLoopRunning; } reconnect && await this.blockingConnection.reconnect(); } async retryIfFailed(fn, opts) { var _a2; let retry = 0; const maxRetries = opts.maxRetries || Infinity; do { try { return await fn(); } catch (err) { (_a2 = opts.span) === null || _a2 === void 0 ? void 0 : _a2.recordException(err.message); if (isNotConnectionError(err)) { if (!this.paused && !this.closing) { this.emit("error", err); } if (opts.onlyEmitError) { return; } else { throw err; } } else { if (opts.delayInMs && !this.closing && !this.closed) { await this.delay(opts.delayInMs, this.abortDelayController); } if (retry + 1 >= maxRetries) { throw err; } } } } while (++retry < maxRetries); } async moveStalledJobsToWait() { await this.trace(SpanKind.INTERNAL, "moveStalledJobsToWait", this.name, async (span) => { const stalled = await this.scripts.moveStalledJobsToWait(); span === null || span === void 0 ? void 0 : span.setAttributes({ [TelemetryAttributes.WorkerId]: this.id, [TelemetryAttributes.WorkerName]: this.opts.name, [TelemetryAttributes.WorkerStalledJobs]: stalled }); stalled.forEach((jobId) => { span === null || span === void 0 ? void 0 : span.addEvent("job stalled", { [TelemetryAttributes.JobId]: jobId }); this.emit("stalled", jobId, "active"); }); }); } moveLimitedBackToWait(job, token) { return job.moveToWait(token); } }; // ../../node_modules/bullmq/dist/esm/interfaces/index.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/interfaces/advanced-options.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/interfaces/backoff-options.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/interfaces/base-job-options.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/interfaces/child-message.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/interfaces/connection.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/interfaces/flow-job.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/interfaces/ioredis-events.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/interfaces/job-json.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/interfaces/job-scheduler-json.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/interfaces/lock-manager-worker-context.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/interfaces/metrics-options.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/interfaces/metrics.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/interfaces/minimal-job.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/interfaces/minimal-queue.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/interfaces/parent-message.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/interfaces/parent.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/interfaces/parent-options.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/interfaces/queue-meta.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/interfaces/queue-options.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var ClientType; (function(ClientType2) { ClientType2["blocking"] = "blocking"; ClientType2["normal"] = "normal"; })(ClientType || (ClientType = {})); // ../../node_modules/bullmq/dist/esm/interfaces/rate-limiter-options.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/interfaces/redis-options.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/interfaces/redis-streams.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/interfaces/repeatable-job.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/interfaces/repeatable-options.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/interfaces/repeat-options.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/interfaces/retry-options.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/interfaces/script-queue-context.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/interfaces/sandboxed-job-processor.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/interfaces/sandboxed-job.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/interfaces/sandboxed-options.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/interfaces/worker-options.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/interfaces/telemetry.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/interfaces/receiver.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/types/index.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/types/backoff-strategy.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/types/database-type.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/types/deduplication-options.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/types/finished-status.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/types/job-json-sandbox.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/types/job-options.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/types/job-scheduler-template-options.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/types/job-type.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/types/job-progress.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/types/repeat-strategy.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/types/keep-jobs.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bullmq/dist/esm/types/processor.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // src/lib/notif-job.ts var import_expo_server_sdk = __toESM(require_ExpoClient()); // src/lib/const-strings.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var NOTIFS_QUEUE = "notifications"; var ORDER_PLACED_MESSAGE = "Your order has been placed successfully!"; var ORDER_PACKAGED_MESSAGE = "Your order has been packaged and is ready for delivery."; var ORDER_DELIVERED_MESSAGE = "Your order has been delivered."; var ORDER_CANCELLED_MESSAGE = "Your order has been cancelled."; // src/lib/notif-job.ts var notificationQueue = new Queue(NOTIFS_QUEUE, { connection: { url: redisUrl }, defaultJobOptions: { removeOnComplete: true, removeOnFail: 10, attempts: 3 } }); var notificationWorker = new Worker2(NOTIFS_QUEUE, async (job) => { if (!job) return; const { name, data } = job; console.log(`Processing notification job ${job.id} - ${name}`); if (name === "send-admin-notification") { await sendAdminNotification(data); } else if (name === "send-notification") { console.log("Legacy notification job - not implemented yet"); } }, { connection: { url: redisUrl }, concurrency: 5 }); async function sendAdminNotification(data) { const { token, title: title2, body, imageUrl } = data; if (!import_expo_server_sdk.Expo.isExpoPushToken(token)) { console.error(`Invalid Expo push token: ${token}`); return; } const signedImageUrl = imageUrl ? await generateSignedUrlFromS3Url(imageUrl) : null; const expo = new import_expo_server_sdk.Expo(); const message2 = { to: token, sound: "default", title: title2, body, data: { imageUrl }, ...signedImageUrl ? { attachments: [ { url: signedImageUrl, contentType: "image/jpeg" } ] } : {} }; try { const [ticket] = await expo.sendPushNotificationsAsync([message2]); console.log(`Notification sent:`, ticket); } catch (error50) { console.error(`Failed to send notification:`, error50); throw error50; } } __name(sendAdminNotification, "sendAdminNotification"); notificationWorker.on("completed", (job) => { if (job) console.log(`Notification job ${job.id} completed`); }); notificationWorker.on("failed", (job, err) => { if (job) console.error(`Notification job ${job.id} failed:`, err); }); async function scheduleNotification(userId, payload, options) { const jobData = { userId, ...payload }; await notificationQueue.add("send-notification", jobData, options); } __name(scheduleNotification, "scheduleNotification"); async function sendOrderPlacedNotification(userId, orderId) { await scheduleNotification(userId, { title: "Order Placed", body: ORDER_PLACED_MESSAGE, type: "order", orderId }); } __name(sendOrderPlacedNotification, "sendOrderPlacedNotification"); async function sendOrderPackagedNotification(userId, orderId) { await scheduleNotification(userId, { title: "Order Packaged", body: ORDER_PACKAGED_MESSAGE, type: "order", orderId }); } __name(sendOrderPackagedNotification, "sendOrderPackagedNotification"); async function sendOrderDeliveredNotification(userId, orderId) { await scheduleNotification(userId, { title: "Order Delivered", body: ORDER_DELIVERED_MESSAGE, type: "order", orderId }); } __name(sendOrderDeliveredNotification, "sendOrderDeliveredNotification"); async function sendOrderCancelledNotification(userId, orderId) { await scheduleNotification(userId, { title: "Order Cancelled", body: ORDER_CANCELLED_MESSAGE, type: "order", orderId }); } __name(sendOrderCancelledNotification, "sendOrderCancelledNotification"); process.on("SIGTERM", async () => { await notificationQueue.close(); await notificationWorker.close(); }); // src/lib/post-order-handler.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // src/lib/redis-client.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var createClient = /* @__PURE__ */ __name((args) => { }, "createClient"); var RedisClient = class { constructor() { this.isConnected = false; this.client = createClient({ url: redisUrl }); } static { __name(this, "RedisClient"); } async set(key, value, ttlSeconds) { if (ttlSeconds) { return await this.client.setEx(key, ttlSeconds, value); } else { return await this.client.set(key, value); } } async get(key) { return await this.client.get(key); } async exists(key) { const result = await this.client.exists(key); return result === 1; } async delete(key) { return await this.client.del(key); } async lPush(key, value) { return await this.client.lPush(key, value); } async KEYS(pattern) { return await this.client.KEYS(pattern); } async MGET(keys) { return await this.client.MGET(keys); } // Publish message to a channel async publish(channel2, message2) { return await this.client.publish(channel2, message2); } // Subscribe to a channel with callback async subscribe(channel2, callback) { console.log(`Subscribed to channel: ${channel2}`); } // Unsubscribe from a channel async unsubscribe(channel2) { } disconnect() { } get isClientConnected() { return this.isConnected; } }; var redisClient = new RedisClient(); var redis_client_default = redisClient; // src/lib/telegram-service.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/axios/index.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/axios/lib/axios.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/axios/lib/utils.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/axios/lib/helpers/bind.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); function bind(fn, thisArg) { return /* @__PURE__ */ __name(function wrap() { return fn.apply(thisArg, arguments); }, "wrap"); } __name(bind, "bind"); // ../../node_modules/axios/lib/utils.js var { toString } = Object.prototype; var { getPrototypeOf } = Object; var { iterator, toStringTag } = Symbol; var kindOf = /* @__PURE__ */ ((cache2) => (thing) => { const str = toString.call(thing); return cache2[str] || (cache2[str] = str.slice(8, -1).toLowerCase()); })(/* @__PURE__ */ Object.create(null)); var kindOfTest = /* @__PURE__ */ __name((type) => { type = type.toLowerCase(); return (thing) => kindOf(thing) === type; }, "kindOfTest"); var typeOfTest = /* @__PURE__ */ __name((type) => (thing) => typeof thing === type, "typeOfTest"); var { isArray } = Array; var isUndefined = typeOfTest("undefined"); function isBuffer(val) { return val !== null && !isUndefined(val) && val.constructor !== null && !isUndefined(val.constructor) && isFunction2(val.constructor.isBuffer) && val.constructor.isBuffer(val); } __name(isBuffer, "isBuffer"); var isArrayBuffer2 = kindOfTest("ArrayBuffer"); function isArrayBufferView(val) { let result; if (typeof ArrayBuffer !== "undefined" && ArrayBuffer.isView) { result = ArrayBuffer.isView(val); } else { result = val && val.buffer && isArrayBuffer2(val.buffer); } return result; } __name(isArrayBufferView, "isArrayBufferView"); var isString = typeOfTest("string"); var isFunction2 = typeOfTest("function"); var isNumber = typeOfTest("number"); var isObject4 = /* @__PURE__ */ __name((thing) => thing !== null && typeof thing === "object", "isObject"); var isBoolean = /* @__PURE__ */ __name((thing) => thing === true || thing === false, "isBoolean"); var isPlainObject3 = /* @__PURE__ */ __name((val) => { if (kindOf(val) !== "object") { return false; } const prototype2 = getPrototypeOf(val); return (prototype2 === null || prototype2 === Object.prototype || Object.getPrototypeOf(prototype2) === null) && !(toStringTag in val) && !(iterator in val); }, "isPlainObject"); var isEmptyObject = /* @__PURE__ */ __name((val) => { if (!isObject4(val) || isBuffer(val)) { return false; } try { return Object.keys(val).length === 0 && Object.getPrototypeOf(val) === Object.prototype; } catch (e) { return false; } }, "isEmptyObject"); var isDate = kindOfTest("Date"); var isFile = kindOfTest("File"); var isReactNativeBlob = /* @__PURE__ */ __name((value) => { return !!(value && typeof value.uri !== "undefined"); }, "isReactNativeBlob"); var isReactNative = /* @__PURE__ */ __name((formData) => formData && typeof formData.getParts !== "undefined", "isReactNative"); var isBlob = kindOfTest("Blob"); var isFileList = kindOfTest("FileList"); var isStream = /* @__PURE__ */ __name((val) => isObject4(val) && isFunction2(val.pipe), "isStream"); function getGlobal() { if (typeof globalThis !== "undefined") return globalThis; if (typeof self !== "undefined") return self; if (typeof window !== "undefined") return window; if (typeof global !== "undefined") return global; return {}; } __name(getGlobal, "getGlobal"); var G = getGlobal(); var FormDataCtor = typeof G.FormData !== "undefined" ? G.FormData : void 0; var isFormData = /* @__PURE__ */ __name((thing) => { let kind; return thing && (FormDataCtor && thing instanceof FormDataCtor || isFunction2(thing.append) && ((kind = kindOf(thing)) === "formdata" || // detect form-data instance kind === "object" && isFunction2(thing.toString) && thing.toString() === "[object FormData]")); }, "isFormData"); var isURLSearchParams = kindOfTest("URLSearchParams"); var [isReadableStream2, isRequest, isResponse, isHeaders] = [ "ReadableStream", "Request", "Response", "Headers" ].map(kindOfTest); var trim = /* @__PURE__ */ __name((str) => { return str.trim ? str.trim() : str.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, ""); }, "trim"); function forEach(obj, fn, { allOwnKeys = false } = {}) { if (obj === null || typeof obj === "undefined") { return; } let i; let l; if (typeof obj !== "object") { obj = [obj]; } if (isArray(obj)) { for (i = 0, l = obj.length; i < l; i++) { fn.call(null, obj[i], i, obj); } } else { if (isBuffer(obj)) { return; } const keys = allOwnKeys ? Object.getOwnPropertyNames(obj) : Object.keys(obj); const len = keys.length; let key; for (i = 0; i < len; i++) { key = keys[i]; fn.call(null, obj[key], key, obj); } } } __name(forEach, "forEach"); function findKey(obj, key) { if (isBuffer(obj)) { return null; } key = key.toLowerCase(); const keys = Object.keys(obj); let i = keys.length; let _key2; while (i-- > 0) { _key2 = keys[i]; if (key === _key2.toLowerCase()) { return _key2; } } return null; } __name(findKey, "findKey"); var _global = (() => { if (typeof globalThis !== "undefined") return globalThis; return typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : global; })(); var isContextDefined = /* @__PURE__ */ __name((context2) => !isUndefined(context2) && context2 !== _global, "isContextDefined"); function merge3() { const { caseless, skipUndefined } = isContextDefined(this) && this || {}; const result = {}; const assignValue = /* @__PURE__ */ __name((val, key) => { if (key === "__proto__" || key === "constructor" || key === "prototype") { return; } const targetKey = caseless && findKey(result, key) || key; if (isPlainObject3(result[targetKey]) && isPlainObject3(val)) { result[targetKey] = merge3(result[targetKey], val); } else if (isPlainObject3(val)) { result[targetKey] = merge3({}, val); } else if (isArray(val)) { result[targetKey] = val.slice(); } else if (!skipUndefined || !isUndefined(val)) { result[targetKey] = val; } }, "assignValue"); for (let i = 0, l = arguments.length; i < l; i++) { arguments[i] && forEach(arguments[i], assignValue); } return result; } __name(merge3, "merge"); var extend2 = /* @__PURE__ */ __name((a, b, thisArg, { allOwnKeys } = {}) => { forEach( b, (val, key) => { if (thisArg && isFunction2(val)) { Object.defineProperty(a, key, { value: bind(val, thisArg), writable: true, enumerable: true, configurable: true }); } else { Object.defineProperty(a, key, { value: val, writable: true, enumerable: true, configurable: true }); } }, { allOwnKeys } ); return a; }, "extend"); var stripBOM = /* @__PURE__ */ __name((content52) => { if (content52.charCodeAt(0) === 65279) { content52 = content52.slice(1); } return content52; }, "stripBOM"); var inherits = /* @__PURE__ */ __name((constructor, superConstructor, props, descriptors) => { constructor.prototype = Object.create(superConstructor.prototype, descriptors); Object.defineProperty(constructor.prototype, "constructor", { value: constructor, writable: true, enumerable: false, configurable: true }); Object.defineProperty(constructor, "super", { value: superConstructor.prototype }); props && Object.assign(constructor.prototype, props); }, "inherits"); var toFlatObject = /* @__PURE__ */ __name((sourceObj, destObj, filter2, propFilter) => { let props; let i; let prop; const merged = {}; destObj = destObj || {}; if (sourceObj == null) return destObj; do { props = Object.getOwnPropertyNames(sourceObj); i = props.length; while (i-- > 0) { prop = props[i]; if ((!propFilter || propFilter(prop, sourceObj, destObj)) && !merged[prop]) { destObj[prop] = sourceObj[prop]; merged[prop] = true; } } sourceObj = filter2 !== false && getPrototypeOf(sourceObj); } while (sourceObj && (!filter2 || filter2(sourceObj, destObj)) && sourceObj !== Object.prototype); return destObj; }, "toFlatObject"); var endsWith = /* @__PURE__ */ __name((str, searchString, position3) => { str = String(str); if (position3 === void 0 || position3 > str.length) { position3 = str.length; } position3 -= searchString.length; const lastIndex = str.indexOf(searchString, position3); return lastIndex !== -1 && lastIndex === position3; }, "endsWith"); var toArray = /* @__PURE__ */ __name((thing) => { if (!thing) return null; if (isArray(thing)) return thing; let i = thing.length; if (!isNumber(i)) return null; const arr = new Array(i); while (i-- > 0) { arr[i] = thing[i]; } return arr; }, "toArray"); var isTypedArray = /* @__PURE__ */ ((TypedArray) => { return (thing) => { return TypedArray && thing instanceof TypedArray; }; })(typeof Uint8Array !== "undefined" && getPrototypeOf(Uint8Array)); var forEachEntry = /* @__PURE__ */ __name((obj, fn) => { const generator = obj && obj[iterator]; const _iterator = generator.call(obj); let result; while ((result = _iterator.next()) && !result.done) { const pair = result.value; fn.call(obj, pair[0], pair[1]); } }, "forEachEntry"); var matchAll = /* @__PURE__ */ __name((regExp, str) => { let matches; const arr = []; while ((matches = regExp.exec(str)) !== null) { arr.push(matches); } return arr; }, "matchAll"); var isHTMLForm = kindOfTest("HTMLFormElement"); var toCamelCase2 = /* @__PURE__ */ __name((str) => { return str.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g, /* @__PURE__ */ __name(function replacer(m, p1, p2) { return p1.toUpperCase() + p2; }, "replacer")); }, "toCamelCase"); var hasOwnProperty = (({ hasOwnProperty: hasOwnProperty2 }) => (obj, prop) => hasOwnProperty2.call(obj, prop))(Object.prototype); var isRegExp = kindOfTest("RegExp"); var reduceDescriptors = /* @__PURE__ */ __name((obj, reducer) => { const descriptors = Object.getOwnPropertyDescriptors(obj); const reducedDescriptors = {}; forEach(descriptors, (descriptor, name) => { let ret; if ((ret = reducer(descriptor, name, obj)) !== false) { reducedDescriptors[name] = ret || descriptor; } }); Object.defineProperties(obj, reducedDescriptors); }, "reduceDescriptors"); var freezeMethods = /* @__PURE__ */ __name((obj) => { reduceDescriptors(obj, (descriptor, name) => { if (isFunction2(obj) && ["arguments", "caller", "callee"].indexOf(name) !== -1) { return false; } const value = obj[name]; if (!isFunction2(value)) return; descriptor.enumerable = false; if ("writable" in descriptor) { descriptor.writable = false; return; } if (!descriptor.set) { descriptor.set = () => { throw Error("Can not rewrite read-only method '" + name + "'"); }; } }); }, "freezeMethods"); var toObjectSet = /* @__PURE__ */ __name((arrayOrString, delimiter) => { const obj = {}; const define2 = /* @__PURE__ */ __name((arr) => { arr.forEach((value) => { obj[value] = true; }); }, "define"); isArray(arrayOrString) ? define2(arrayOrString) : define2(String(arrayOrString).split(delimiter)); return obj; }, "toObjectSet"); var noop2 = /* @__PURE__ */ __name(() => { }, "noop"); var toFiniteNumber = /* @__PURE__ */ __name((value, defaultValue) => { return value != null && Number.isFinite(value = +value) ? value : defaultValue; }, "toFiniteNumber"); function isSpecCompliantForm(thing) { return !!(thing && isFunction2(thing.append) && thing[toStringTag] === "FormData" && thing[iterator]); } __name(isSpecCompliantForm, "isSpecCompliantForm"); var toJSONObject = /* @__PURE__ */ __name((obj) => { const stack = new Array(10); const visit = /* @__PURE__ */ __name((source, i) => { if (isObject4(source)) { if (stack.indexOf(source) >= 0) { return; } if (isBuffer(source)) { return source; } if (!("toJSON" in source)) { stack[i] = source; const target2 = isArray(source) ? [] : {}; forEach(source, (value, key) => { const reducedValue = visit(value, i + 1); !isUndefined(reducedValue) && (target2[key] = reducedValue); }); stack[i] = void 0; return target2; } } return source; }, "visit"); return visit(obj, 0); }, "toJSONObject"); var isAsyncFn = kindOfTest("AsyncFunction"); var isThenable = /* @__PURE__ */ __name((thing) => thing && (isObject4(thing) || isFunction2(thing)) && isFunction2(thing.then) && isFunction2(thing.catch), "isThenable"); var _setImmediate = ((setImmediateSupported, postMessageSupported) => { if (setImmediateSupported) { return setImmediate; } return postMessageSupported ? ((token, callbacks) => { _global.addEventListener( "message", ({ source, data }) => { if (source === _global && data === token) { callbacks.length && callbacks.shift()(); } }, false ); return (cb) => { callbacks.push(cb); _global.postMessage(token, "*"); }; })(`axios@${Math.random()}`, []) : (cb) => setTimeout(cb); })(typeof setImmediate === "function", isFunction2(_global.postMessage)); var asap = typeof queueMicrotask !== "undefined" ? queueMicrotask.bind(_global) : typeof process !== "undefined" && process.nextTick || _setImmediate; var isIterable = /* @__PURE__ */ __name((thing) => thing != null && isFunction2(thing[iterator]), "isIterable"); var utils_default = { isArray, isArrayBuffer: isArrayBuffer2, isBuffer, isFormData, isArrayBufferView, isString, isNumber, isBoolean, isObject: isObject4, isPlainObject: isPlainObject3, isEmptyObject, isReadableStream: isReadableStream2, isRequest, isResponse, isHeaders, isUndefined, isDate, isFile, isReactNativeBlob, isReactNative, isBlob, isRegExp, isFunction: isFunction2, isStream, isURLSearchParams, isTypedArray, isFileList, forEach, merge: merge3, extend: extend2, trim, stripBOM, inherits, toFlatObject, kindOf, kindOfTest, endsWith, toArray, forEachEntry, matchAll, isHTMLForm, hasOwnProperty, hasOwnProp: hasOwnProperty, // an alias to avoid ESLint no-prototype-builtins detection reduceDescriptors, freezeMethods, toObjectSet, toCamelCase: toCamelCase2, noop: noop2, toFiniteNumber, findKey, global: _global, isContextDefined, isSpecCompliantForm, toJSONObject, isAsyncFn, isThenable, setImmediate: _setImmediate, asap, isIterable }; // ../../node_modules/axios/lib/core/Axios.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/axios/lib/helpers/buildURL.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/axios/lib/helpers/AxiosURLSearchParams.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/axios/lib/helpers/toFormData.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/axios/lib/core/AxiosError.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var AxiosError = class _AxiosError extends Error { static { __name(this, "AxiosError"); } static from(error50, code, config3, request, response, customProps) { const axiosError = new _AxiosError(error50.message, code || error50.code, config3, request, response); axiosError.cause = error50; axiosError.name = error50.name; if (error50.status != null && axiosError.status == null) { axiosError.status = error50.status; } customProps && Object.assign(axiosError, customProps); return axiosError; } /** * Create an Error with the specified message, config, error code, request and response. * * @param {string} message The error message. * @param {string} [code] The error code (for example, 'ECONNABORTED'). * @param {Object} [config] The config. * @param {Object} [request] The request. * @param {Object} [response] The response. * * @returns {Error} The created error. */ constructor(message2, code, config3, request, response) { super(message2); Object.defineProperty(this, "message", { value: message2, enumerable: true, writable: true, configurable: true }); this.name = "AxiosError"; this.isAxiosError = true; code && (this.code = code); config3 && (this.config = config3); request && (this.request = request); if (response) { this.response = response; this.status = response.status; } } toJSON() { return { // Standard message: this.message, name: this.name, // Microsoft description: this.description, number: this.number, // Mozilla fileName: this.fileName, lineNumber: this.lineNumber, columnNumber: this.columnNumber, stack: this.stack, // Axios config: utils_default.toJSONObject(this.config), code: this.code, status: this.status }; } }; AxiosError.ERR_BAD_OPTION_VALUE = "ERR_BAD_OPTION_VALUE"; AxiosError.ERR_BAD_OPTION = "ERR_BAD_OPTION"; AxiosError.ECONNABORTED = "ECONNABORTED"; AxiosError.ETIMEDOUT = "ETIMEDOUT"; AxiosError.ERR_NETWORK = "ERR_NETWORK"; AxiosError.ERR_FR_TOO_MANY_REDIRECTS = "ERR_FR_TOO_MANY_REDIRECTS"; AxiosError.ERR_DEPRECATED = "ERR_DEPRECATED"; AxiosError.ERR_BAD_RESPONSE = "ERR_BAD_RESPONSE"; AxiosError.ERR_BAD_REQUEST = "ERR_BAD_REQUEST"; AxiosError.ERR_CANCELED = "ERR_CANCELED"; AxiosError.ERR_NOT_SUPPORT = "ERR_NOT_SUPPORT"; AxiosError.ERR_INVALID_URL = "ERR_INVALID_URL"; var AxiosError_default = AxiosError; // ../../node_modules/axios/lib/helpers/null.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var null_default = null; // ../../node_modules/axios/lib/helpers/toFormData.js function isVisitable(thing) { return utils_default.isPlainObject(thing) || utils_default.isArray(thing); } __name(isVisitable, "isVisitable"); function removeBrackets(key) { return utils_default.endsWith(key, "[]") ? key.slice(0, -2) : key; } __name(removeBrackets, "removeBrackets"); function renderKey(path3, key, dots) { if (!path3) return key; return path3.concat(key).map(/* @__PURE__ */ __name(function each(token, i) { token = removeBrackets(token); return !dots && i ? "[" + token + "]" : token; }, "each")).join(dots ? "." : ""); } __name(renderKey, "renderKey"); function isFlatArray(arr) { return utils_default.isArray(arr) && !arr.some(isVisitable); } __name(isFlatArray, "isFlatArray"); var predicates = utils_default.toFlatObject(utils_default, {}, null, /* @__PURE__ */ __name(function filter(prop) { return /^is[A-Z]/.test(prop); }, "filter")); function toFormData(obj, formData, options) { if (!utils_default.isObject(obj)) { throw new TypeError("target must be an object"); } formData = formData || new (null_default || FormData)(); options = utils_default.toFlatObject( options, { metaTokens: true, dots: false, indexes: false }, false, /* @__PURE__ */ __name(function defined(option, source) { return !utils_default.isUndefined(source[option]); }, "defined") ); const metaTokens = options.metaTokens; const visitor = options.visitor || defaultVisitor; const dots = options.dots; const indexes = options.indexes; const _Blob = options.Blob || typeof Blob !== "undefined" && Blob; const useBlob = _Blob && utils_default.isSpecCompliantForm(formData); if (!utils_default.isFunction(visitor)) { throw new TypeError("visitor must be a function"); } function convertValue(value) { if (value === null) return ""; if (utils_default.isDate(value)) { return value.toISOString(); } if (utils_default.isBoolean(value)) { return value.toString(); } if (!useBlob && utils_default.isBlob(value)) { throw new AxiosError_default("Blob is not supported. Use a Buffer instead."); } if (utils_default.isArrayBuffer(value) || utils_default.isTypedArray(value)) { return useBlob && typeof Blob === "function" ? new Blob([value]) : Buffer.from(value); } return value; } __name(convertValue, "convertValue"); function defaultVisitor(value, key, path3) { let arr = value; if (utils_default.isReactNative(formData) && utils_default.isReactNativeBlob(value)) { formData.append(renderKey(path3, key, dots), convertValue(value)); return false; } if (value && !path3 && typeof value === "object") { if (utils_default.endsWith(key, "{}")) { key = metaTokens ? key : key.slice(0, -2); value = JSON.stringify(value); } else if (utils_default.isArray(value) && isFlatArray(value) || (utils_default.isFileList(value) || utils_default.endsWith(key, "[]")) && (arr = utils_default.toArray(value))) { key = removeBrackets(key); arr.forEach(/* @__PURE__ */ __name(function each(el, index) { !(utils_default.isUndefined(el) || el === null) && formData.append( // eslint-disable-next-line no-nested-ternary indexes === true ? renderKey([key], index, dots) : indexes === null ? key : key + "[]", convertValue(el) ); }, "each")); return false; } } if (isVisitable(value)) { return true; } formData.append(renderKey(path3, key, dots), convertValue(value)); return false; } __name(defaultVisitor, "defaultVisitor"); const stack = []; const exposedHelpers = Object.assign(predicates, { defaultVisitor, convertValue, isVisitable }); function build(value, path3) { if (utils_default.isUndefined(value)) return; if (stack.indexOf(value) !== -1) { throw Error("Circular reference detected in " + path3.join(".")); } stack.push(value); utils_default.forEach(value, /* @__PURE__ */ __name(function each(el, key) { const result = !(utils_default.isUndefined(el) || el === null) && visitor.call(formData, el, utils_default.isString(key) ? key.trim() : key, path3, exposedHelpers); if (result === true) { build(el, path3 ? path3.concat(key) : [key]); } }, "each")); stack.pop(); } __name(build, "build"); if (!utils_default.isObject(obj)) { throw new TypeError("data must be an object"); } build(obj); return formData; } __name(toFormData, "toFormData"); var toFormData_default = toFormData; // ../../node_modules/axios/lib/helpers/AxiosURLSearchParams.js function encode6(str) { const charMap = { "!": "%21", "'": "%27", "(": "%28", ")": "%29", "~": "%7E", "%20": "+", "%00": "\0" }; return encodeURIComponent(str).replace(/[!'()~]|%20|%00/g, /* @__PURE__ */ __name(function replacer(match2) { return charMap[match2]; }, "replacer")); } __name(encode6, "encode"); function AxiosURLSearchParams(params, options) { this._pairs = []; params && toFormData_default(params, this, options); } __name(AxiosURLSearchParams, "AxiosURLSearchParams"); var prototype = AxiosURLSearchParams.prototype; prototype.append = /* @__PURE__ */ __name(function append(name, value) { this._pairs.push([name, value]); }, "append"); prototype.toString = /* @__PURE__ */ __name(function toString2(encoder2) { const _encode2 = encoder2 ? function(value) { return encoder2.call(this, value, encode6); } : encode6; return this._pairs.map(/* @__PURE__ */ __name(function each(pair) { return _encode2(pair[0]) + "=" + _encode2(pair[1]); }, "each"), "").join("&"); }, "toString"); var AxiosURLSearchParams_default = AxiosURLSearchParams; // ../../node_modules/axios/lib/helpers/buildURL.js function encode7(val) { return encodeURIComponent(val).replace(/%3A/gi, ":").replace(/%24/g, "$").replace(/%2C/gi, ",").replace(/%20/g, "+"); } __name(encode7, "encode"); function buildURL(url2, params, options) { if (!params) { return url2; } const _encode2 = options && options.encode || encode7; const _options = utils_default.isFunction(options) ? { serialize: options } : options; const serializeFn = _options && _options.serialize; let serializedParams; if (serializeFn) { serializedParams = serializeFn(params, _options); } else { serializedParams = utils_default.isURLSearchParams(params) ? params.toString() : new AxiosURLSearchParams_default(params, _options).toString(_encode2); } if (serializedParams) { const hashmarkIndex = url2.indexOf("#"); if (hashmarkIndex !== -1) { url2 = url2.slice(0, hashmarkIndex); } url2 += (url2.indexOf("?") === -1 ? "?" : "&") + serializedParams; } return url2; } __name(buildURL, "buildURL"); // ../../node_modules/axios/lib/core/InterceptorManager.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var InterceptorManager = class { static { __name(this, "InterceptorManager"); } constructor() { this.handlers = []; } /** * Add a new interceptor to the stack * * @param {Function} fulfilled The function to handle `then` for a `Promise` * @param {Function} rejected The function to handle `reject` for a `Promise` * @param {Object} options The options for the interceptor, synchronous and runWhen * * @return {Number} An ID used to remove interceptor later */ use(fulfilled, rejected, options) { this.handlers.push({ fulfilled, rejected, synchronous: options ? options.synchronous : false, runWhen: options ? options.runWhen : null }); return this.handlers.length - 1; } /** * Remove an interceptor from the stack * * @param {Number} id The ID that was returned by `use` * * @returns {void} */ eject(id) { if (this.handlers[id]) { this.handlers[id] = null; } } /** * Clear all interceptors from the stack * * @returns {void} */ clear() { if (this.handlers) { this.handlers = []; } } /** * Iterate over all the registered interceptors * * This method is particularly useful for skipping over any * interceptors that may have become `null` calling `eject`. * * @param {Function} fn The function to call for each interceptor * * @returns {void} */ forEach(fn) { utils_default.forEach(this.handlers, /* @__PURE__ */ __name(function forEachHandler(h) { if (h !== null) { fn(h); } }, "forEachHandler")); } }; var InterceptorManager_default = InterceptorManager; // ../../node_modules/axios/lib/core/dispatchRequest.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/axios/lib/core/transformData.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/axios/lib/defaults/index.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/axios/lib/defaults/transitional.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var transitional_default = { silentJSONParsing: true, forcedJSONParsing: true, clarifyTimeoutError: false, legacyInterceptorReqResOrdering: true }; // ../../node_modules/axios/lib/helpers/toURLEncodedForm.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/axios/lib/platform/index.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/axios/lib/platform/browser/index.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/axios/lib/platform/browser/classes/URLSearchParams.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var URLSearchParams_default = typeof URLSearchParams !== "undefined" ? URLSearchParams : AxiosURLSearchParams_default; // ../../node_modules/axios/lib/platform/browser/classes/FormData.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var FormData_default = typeof FormData !== "undefined" ? FormData : null; // ../../node_modules/axios/lib/platform/browser/classes/Blob.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var Blob_default = typeof Blob !== "undefined" ? Blob : null; // ../../node_modules/axios/lib/platform/browser/index.js var browser_default = { isBrowser: true, classes: { URLSearchParams: URLSearchParams_default, FormData: FormData_default, Blob: Blob_default }, protocols: ["http", "https", "file", "blob", "url", "data"] }; // ../../node_modules/axios/lib/platform/common/utils.js var utils_exports = {}; __export(utils_exports, { hasBrowserEnv: () => hasBrowserEnv, hasStandardBrowserEnv: () => hasStandardBrowserEnv, hasStandardBrowserWebWorkerEnv: () => hasStandardBrowserWebWorkerEnv, navigator: () => _navigator, origin: () => origin }); init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var hasBrowserEnv = typeof window !== "undefined" && typeof document !== "undefined"; var _navigator = typeof navigator === "object" && navigator || void 0; var hasStandardBrowserEnv = hasBrowserEnv && (!_navigator || ["ReactNative", "NativeScript", "NS"].indexOf(_navigator.product) < 0); var hasStandardBrowserWebWorkerEnv = (() => { return typeof WorkerGlobalScope !== "undefined" && // eslint-disable-next-line no-undef self instanceof WorkerGlobalScope && typeof self.importScripts === "function"; })(); var origin = hasBrowserEnv && window.location.href || "http://localhost"; // ../../node_modules/axios/lib/platform/index.js var platform_default = { ...utils_exports, ...browser_default }; // ../../node_modules/axios/lib/helpers/toURLEncodedForm.js function toURLEncodedForm(data, options) { return toFormData_default(data, new platform_default.classes.URLSearchParams(), { visitor: /* @__PURE__ */ __name(function(value, key, path3, helpers) { if (platform_default.isNode && utils_default.isBuffer(value)) { this.append(key, value.toString("base64")); return false; } return helpers.defaultVisitor.apply(this, arguments); }, "visitor"), ...options }); } __name(toURLEncodedForm, "toURLEncodedForm"); // ../../node_modules/axios/lib/helpers/formDataToJSON.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); function parsePropPath(name) { return utils_default.matchAll(/\w+|\[(\w*)]/g, name).map((match2) => { return match2[0] === "[]" ? "" : match2[1] || match2[0]; }); } __name(parsePropPath, "parsePropPath"); function arrayToObject(arr) { const obj = {}; const keys = Object.keys(arr); let i; const len = keys.length; let key; for (i = 0; i < len; i++) { key = keys[i]; obj[key] = arr[key]; } return obj; } __name(arrayToObject, "arrayToObject"); function formDataToJSON(formData) { function buildPath(path3, value, target2, index) { let name = path3[index++]; if (name === "__proto__") return true; const isNumericKey = Number.isFinite(+name); const isLast = index >= path3.length; name = !name && utils_default.isArray(target2) ? target2.length : name; if (isLast) { if (utils_default.hasOwnProp(target2, name)) { target2[name] = [target2[name], value]; } else { target2[name] = value; } return !isNumericKey; } if (!target2[name] || !utils_default.isObject(target2[name])) { target2[name] = []; } const result = buildPath(path3, value, target2[name], index); if (result && utils_default.isArray(target2[name])) { target2[name] = arrayToObject(target2[name]); } return !isNumericKey; } __name(buildPath, "buildPath"); if (utils_default.isFormData(formData) && utils_default.isFunction(formData.entries)) { const obj = {}; utils_default.forEachEntry(formData, (name, value) => { buildPath(parsePropPath(name), value, obj, 0); }); return obj; } return null; } __name(formDataToJSON, "formDataToJSON"); var formDataToJSON_default = formDataToJSON; // ../../node_modules/axios/lib/defaults/index.js function stringifySafely(rawValue, parser, encoder2) { if (utils_default.isString(rawValue)) { try { (parser || JSON.parse)(rawValue); return utils_default.trim(rawValue); } catch (e) { if (e.name !== "SyntaxError") { throw e; } } } return (encoder2 || JSON.stringify)(rawValue); } __name(stringifySafely, "stringifySafely"); var defaults = { transitional: transitional_default, adapter: ["xhr", "http", "fetch"], transformRequest: [ /* @__PURE__ */ __name(function transformRequest(data, headers) { const contentType = headers.getContentType() || ""; const hasJSONContentType = contentType.indexOf("application/json") > -1; const isObjectPayload = utils_default.isObject(data); if (isObjectPayload && utils_default.isHTMLForm(data)) { data = new FormData(data); } const isFormData2 = utils_default.isFormData(data); if (isFormData2) { return hasJSONContentType ? JSON.stringify(formDataToJSON_default(data)) : data; } if (utils_default.isArrayBuffer(data) || utils_default.isBuffer(data) || utils_default.isStream(data) || utils_default.isFile(data) || utils_default.isBlob(data) || utils_default.isReadableStream(data)) { return data; } if (utils_default.isArrayBufferView(data)) { return data.buffer; } if (utils_default.isURLSearchParams(data)) { headers.setContentType("application/x-www-form-urlencoded;charset=utf-8", false); return data.toString(); } let isFileList2; if (isObjectPayload) { if (contentType.indexOf("application/x-www-form-urlencoded") > -1) { return toURLEncodedForm(data, this.formSerializer).toString(); } if ((isFileList2 = utils_default.isFileList(data)) || contentType.indexOf("multipart/form-data") > -1) { const _FormData = this.env && this.env.FormData; return toFormData_default( isFileList2 ? { "files[]": data } : data, _FormData && new _FormData(), this.formSerializer ); } } if (isObjectPayload || hasJSONContentType) { headers.setContentType("application/json", false); return stringifySafely(data); } return data; }, "transformRequest") ], transformResponse: [ /* @__PURE__ */ __name(function transformResponse(data) { const transitional2 = this.transitional || defaults.transitional; const forcedJSONParsing = transitional2 && transitional2.forcedJSONParsing; const JSONRequested = this.responseType === "json"; if (utils_default.isResponse(data) || utils_default.isReadableStream(data)) { return data; } if (data && utils_default.isString(data) && (forcedJSONParsing && !this.responseType || JSONRequested)) { const silentJSONParsing = transitional2 && transitional2.silentJSONParsing; const strictJSONParsing = !silentJSONParsing && JSONRequested; try { return JSON.parse(data, this.parseReviver); } catch (e) { if (strictJSONParsing) { if (e.name === "SyntaxError") { throw AxiosError_default.from(e, AxiosError_default.ERR_BAD_RESPONSE, this, null, this.response); } throw e; } } } return data; }, "transformResponse") ], /** * A timeout in milliseconds to abort a request. If set to 0 (default) a * timeout is not created. */ timeout: 0, xsrfCookieName: "XSRF-TOKEN", xsrfHeaderName: "X-XSRF-TOKEN", maxContentLength: -1, maxBodyLength: -1, env: { FormData: platform_default.classes.FormData, Blob: platform_default.classes.Blob }, validateStatus: /* @__PURE__ */ __name(function validateStatus(status) { return status >= 200 && status < 300; }, "validateStatus"), headers: { common: { Accept: "application/json, text/plain, */*", "Content-Type": void 0 } } }; utils_default.forEach(["delete", "get", "head", "post", "put", "patch"], (method) => { defaults.headers[method] = {}; }); var defaults_default = defaults; // ../../node_modules/axios/lib/core/AxiosHeaders.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/axios/lib/helpers/parseHeaders.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var ignoreDuplicateOf = utils_default.toObjectSet([ "age", "authorization", "content-length", "content-type", "etag", "expires", "from", "host", "if-modified-since", "if-unmodified-since", "last-modified", "location", "max-forwards", "proxy-authorization", "referer", "retry-after", "user-agent" ]); var parseHeaders_default = /* @__PURE__ */ __name((rawHeaders) => { const parsed = {}; let key; let val; let i; rawHeaders && rawHeaders.split("\n").forEach(/* @__PURE__ */ __name(function parser(line) { i = line.indexOf(":"); key = line.substring(0, i).trim().toLowerCase(); val = line.substring(i + 1).trim(); if (!key || parsed[key] && ignoreDuplicateOf[key]) { return; } if (key === "set-cookie") { if (parsed[key]) { parsed[key].push(val); } else { parsed[key] = [val]; } } else { parsed[key] = parsed[key] ? parsed[key] + ", " + val : val; } }, "parser")); return parsed; }, "default"); // ../../node_modules/axios/lib/core/AxiosHeaders.js var $internals = /* @__PURE__ */ Symbol("internals"); function normalizeHeader(header) { return header && String(header).trim().toLowerCase(); } __name(normalizeHeader, "normalizeHeader"); function normalizeValue(value) { if (value === false || value == null) { return value; } return utils_default.isArray(value) ? value.map(normalizeValue) : String(value); } __name(normalizeValue, "normalizeValue"); function parseTokens(str) { const tokens = /* @__PURE__ */ Object.create(null); const tokensRE = /([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g; let match2; while (match2 = tokensRE.exec(str)) { tokens[match2[1]] = match2[2]; } return tokens; } __name(parseTokens, "parseTokens"); var isValidHeaderName = /* @__PURE__ */ __name((str) => /^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(str.trim()), "isValidHeaderName"); function matchHeaderValue(context2, value, header, filter2, isHeaderNameFilter) { if (utils_default.isFunction(filter2)) { return filter2.call(this, value, header); } if (isHeaderNameFilter) { value = header; } if (!utils_default.isString(value)) return; if (utils_default.isString(filter2)) { return value.indexOf(filter2) !== -1; } if (utils_default.isRegExp(filter2)) { return filter2.test(value); } } __name(matchHeaderValue, "matchHeaderValue"); function formatHeader(header) { return header.trim().toLowerCase().replace(/([a-z\d])(\w*)/g, (w, char, str) => { return char.toUpperCase() + str; }); } __name(formatHeader, "formatHeader"); function buildAccessors(obj, header) { const accessorName = utils_default.toCamelCase(" " + header); ["get", "set", "has"].forEach((methodName) => { Object.defineProperty(obj, methodName + accessorName, { value: /* @__PURE__ */ __name(function(arg1, arg2, arg3) { return this[methodName].call(this, header, arg1, arg2, arg3); }, "value"), configurable: true }); }); } __name(buildAccessors, "buildAccessors"); var AxiosHeaders = class { static { __name(this, "AxiosHeaders"); } constructor(headers) { headers && this.set(headers); } set(header, valueOrRewrite, rewrite) { const self2 = this; function setHeader(_value, _header, _rewrite) { const lHeader = normalizeHeader(_header); if (!lHeader) { throw new Error("header name must be a non-empty string"); } const key = utils_default.findKey(self2, lHeader); if (!key || self2[key] === void 0 || _rewrite === true || _rewrite === void 0 && self2[key] !== false) { self2[key || _header] = normalizeValue(_value); } } __name(setHeader, "setHeader"); const setHeaders = /* @__PURE__ */ __name((headers, _rewrite) => utils_default.forEach(headers, (_value, _header) => setHeader(_value, _header, _rewrite)), "setHeaders"); if (utils_default.isPlainObject(header) || header instanceof this.constructor) { setHeaders(header, valueOrRewrite); } else if (utils_default.isString(header) && (header = header.trim()) && !isValidHeaderName(header)) { setHeaders(parseHeaders_default(header), valueOrRewrite); } else if (utils_default.isObject(header) && utils_default.isIterable(header)) { let obj = {}, dest, key; for (const entry of header) { if (!utils_default.isArray(entry)) { throw TypeError("Object iterator must return a key-value pair"); } obj[key = entry[0]] = (dest = obj[key]) ? utils_default.isArray(dest) ? [...dest, entry[1]] : [dest, entry[1]] : entry[1]; } setHeaders(obj, valueOrRewrite); } else { header != null && setHeader(valueOrRewrite, header, rewrite); } return this; } get(header, parser) { header = normalizeHeader(header); if (header) { const key = utils_default.findKey(this, header); if (key) { const value = this[key]; if (!parser) { return value; } if (parser === true) { return parseTokens(value); } if (utils_default.isFunction(parser)) { return parser.call(this, value, key); } if (utils_default.isRegExp(parser)) { return parser.exec(value); } throw new TypeError("parser must be boolean|regexp|function"); } } } has(header, matcher) { header = normalizeHeader(header); if (header) { const key = utils_default.findKey(this, header); return !!(key && this[key] !== void 0 && (!matcher || matchHeaderValue(this, this[key], key, matcher))); } return false; } delete(header, matcher) { const self2 = this; let deleted = false; function deleteHeader(_header) { _header = normalizeHeader(_header); if (_header) { const key = utils_default.findKey(self2, _header); if (key && (!matcher || matchHeaderValue(self2, self2[key], key, matcher))) { delete self2[key]; deleted = true; } } } __name(deleteHeader, "deleteHeader"); if (utils_default.isArray(header)) { header.forEach(deleteHeader); } else { deleteHeader(header); } return deleted; } clear(matcher) { const keys = Object.keys(this); let i = keys.length; let deleted = false; while (i--) { const key = keys[i]; if (!matcher || matchHeaderValue(this, this[key], key, matcher, true)) { delete this[key]; deleted = true; } } return deleted; } normalize(format) { const self2 = this; const headers = {}; utils_default.forEach(this, (value, header) => { const key = utils_default.findKey(headers, header); if (key) { self2[key] = normalizeValue(value); delete self2[header]; return; } const normalized = format ? formatHeader(header) : String(header).trim(); if (normalized !== header) { delete self2[header]; } self2[normalized] = normalizeValue(value); headers[normalized] = true; }); return this; } concat(...targets) { return this.constructor.concat(this, ...targets); } toJSON(asStrings) { const obj = /* @__PURE__ */ Object.create(null); utils_default.forEach(this, (value, header) => { value != null && value !== false && (obj[header] = asStrings && utils_default.isArray(value) ? value.join(", ") : value); }); return obj; } [Symbol.iterator]() { return Object.entries(this.toJSON())[Symbol.iterator](); } toString() { return Object.entries(this.toJSON()).map(([header, value]) => header + ": " + value).join("\n"); } getSetCookie() { return this.get("set-cookie") || []; } get [Symbol.toStringTag]() { return "AxiosHeaders"; } static from(thing) { return thing instanceof this ? thing : new this(thing); } static concat(first, ...targets) { const computed = new this(first); targets.forEach((target2) => computed.set(target2)); return computed; } static accessor(header) { const internals = this[$internals] = this[$internals] = { accessors: {} }; const accessors = internals.accessors; const prototype2 = this.prototype; function defineAccessor(_header) { const lHeader = normalizeHeader(_header); if (!accessors[lHeader]) { buildAccessors(prototype2, _header); accessors[lHeader] = true; } } __name(defineAccessor, "defineAccessor"); utils_default.isArray(header) ? header.forEach(defineAccessor) : defineAccessor(header); return this; } }; AxiosHeaders.accessor([ "Content-Type", "Content-Length", "Accept", "Accept-Encoding", "User-Agent", "Authorization" ]); utils_default.reduceDescriptors(AxiosHeaders.prototype, ({ value }, key) => { let mapped = key[0].toUpperCase() + key.slice(1); return { get: /* @__PURE__ */ __name(() => value, "get"), set(headerValue) { this[mapped] = headerValue; } }; }); utils_default.freezeMethods(AxiosHeaders); var AxiosHeaders_default = AxiosHeaders; // ../../node_modules/axios/lib/core/transformData.js function transformData(fns, response) { const config3 = this || defaults_default; const context2 = response || config3; const headers = AxiosHeaders_default.from(context2.headers); let data = context2.data; utils_default.forEach(fns, /* @__PURE__ */ __name(function transform2(fn) { data = fn.call(config3, data, headers.normalize(), response ? response.status : void 0); }, "transform")); headers.normalize(); return data; } __name(transformData, "transformData"); // ../../node_modules/axios/lib/cancel/isCancel.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); function isCancel(value) { return !!(value && value.__CANCEL__); } __name(isCancel, "isCancel"); // ../../node_modules/axios/lib/cancel/CanceledError.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var CanceledError = class extends AxiosError_default { static { __name(this, "CanceledError"); } /** * A `CanceledError` is an object that is thrown when an operation is canceled. * * @param {string=} message The message. * @param {Object=} config The config. * @param {Object=} request The request. * * @returns {CanceledError} The created error. */ constructor(message2, config3, request) { super(message2 == null ? "canceled" : message2, AxiosError_default.ERR_CANCELED, config3, request); this.name = "CanceledError"; this.__CANCEL__ = true; } }; var CanceledError_default = CanceledError; // ../../node_modules/axios/lib/adapters/adapters.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/axios/lib/adapters/xhr.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/axios/lib/core/settle.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); function settle(resolve, reject, response) { const validateStatus2 = response.config.validateStatus; if (!response.status || !validateStatus2 || validateStatus2(response.status)) { resolve(response); } else { reject( new AxiosError_default( "Request failed with status code " + response.status, [AxiosError_default.ERR_BAD_REQUEST, AxiosError_default.ERR_BAD_RESPONSE][Math.floor(response.status / 100) - 4], response.config, response.request, response ) ); } } __name(settle, "settle"); // ../../node_modules/axios/lib/helpers/parseProtocol.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); function parseProtocol(url2) { const match2 = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url2); return match2 && match2[1] || ""; } __name(parseProtocol, "parseProtocol"); // ../../node_modules/axios/lib/helpers/progressEventReducer.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/axios/lib/helpers/speedometer.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); function speedometer(samplesCount, min) { samplesCount = samplesCount || 10; const bytes = new Array(samplesCount); const timestamps = new Array(samplesCount); let head = 0; let tail = 0; let firstSampleTS; min = min !== void 0 ? min : 1e3; return /* @__PURE__ */ __name(function push(chunkLength) { const now = Date.now(); const startedAt = timestamps[tail]; if (!firstSampleTS) { firstSampleTS = now; } bytes[head] = chunkLength; timestamps[head] = now; let i = tail; let bytesCount = 0; while (i !== head) { bytesCount += bytes[i++]; i = i % samplesCount; } head = (head + 1) % samplesCount; if (head === tail) { tail = (tail + 1) % samplesCount; } if (now - firstSampleTS < min) { return; } const passed = startedAt && now - startedAt; return passed ? Math.round(bytesCount * 1e3 / passed) : void 0; }, "push"); } __name(speedometer, "speedometer"); var speedometer_default = speedometer; // ../../node_modules/axios/lib/helpers/throttle.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); function throttle(fn, freq) { let timestamp = 0; let threshold = 1e3 / freq; let lastArgs; let timer; const invoke = /* @__PURE__ */ __name((args, now = Date.now()) => { timestamp = now; lastArgs = null; if (timer) { clearTimeout(timer); timer = null; } fn(...args); }, "invoke"); const throttled = /* @__PURE__ */ __name((...args) => { const now = Date.now(); const passed = now - timestamp; if (passed >= threshold) { invoke(args, now); } else { lastArgs = args; if (!timer) { timer = setTimeout(() => { timer = null; invoke(lastArgs); }, threshold - passed); } } }, "throttled"); const flush2 = /* @__PURE__ */ __name(() => lastArgs && invoke(lastArgs), "flush"); return [throttled, flush2]; } __name(throttle, "throttle"); var throttle_default = throttle; // ../../node_modules/axios/lib/helpers/progressEventReducer.js var progressEventReducer = /* @__PURE__ */ __name((listener, isDownloadStream, freq = 3) => { let bytesNotified = 0; const _speedometer = speedometer_default(50, 250); return throttle_default((e) => { const loaded = e.loaded; const total = e.lengthComputable ? e.total : void 0; const progressBytes = loaded - bytesNotified; const rate = _speedometer(progressBytes); const inRange = loaded <= total; bytesNotified = loaded; const data = { loaded, total, progress: total ? loaded / total : void 0, bytes: progressBytes, rate: rate ? rate : void 0, estimated: rate && total && inRange ? (total - loaded) / rate : void 0, event: e, lengthComputable: total != null, [isDownloadStream ? "download" : "upload"]: true }; listener(data); }, freq); }, "progressEventReducer"); var progressEventDecorator = /* @__PURE__ */ __name((total, throttled) => { const lengthComputable = total != null; return [ (loaded) => throttled[0]({ lengthComputable, total, loaded }), throttled[1] ]; }, "progressEventDecorator"); var asyncDecorator = /* @__PURE__ */ __name((fn) => (...args) => utils_default.asap(() => fn(...args)), "asyncDecorator"); // ../../node_modules/axios/lib/helpers/resolveConfig.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/axios/lib/helpers/isURLSameOrigin.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var isURLSameOrigin_default = platform_default.hasStandardBrowserEnv ? /* @__PURE__ */ ((origin2, isMSIE) => (url2) => { url2 = new URL(url2, platform_default.origin); return origin2.protocol === url2.protocol && origin2.host === url2.host && (isMSIE || origin2.port === url2.port); })( new URL(platform_default.origin), platform_default.navigator && /(msie|trident)/i.test(platform_default.navigator.userAgent) ) : () => true; // ../../node_modules/axios/lib/helpers/cookies.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var cookies_default = platform_default.hasStandardBrowserEnv ? ( // Standard browser envs support document.cookie { write(name, value, expires, path3, domain3, secure, sameSite) { if (typeof document === "undefined") return; const cookie = [`${name}=${encodeURIComponent(value)}`]; if (utils_default.isNumber(expires)) { cookie.push(`expires=${new Date(expires).toUTCString()}`); } if (utils_default.isString(path3)) { cookie.push(`path=${path3}`); } if (utils_default.isString(domain3)) { cookie.push(`domain=${domain3}`); } if (secure === true) { cookie.push("secure"); } if (utils_default.isString(sameSite)) { cookie.push(`SameSite=${sameSite}`); } document.cookie = cookie.join("; "); }, read(name) { if (typeof document === "undefined") return null; const match2 = document.cookie.match(new RegExp("(?:^|; )" + name + "=([^;]*)")); return match2 ? decodeURIComponent(match2[1]) : null; }, remove(name) { this.write(name, "", Date.now() - 864e5, "/"); } } ) : ( // Non-standard browser env (web workers, react-native) lack needed support. { write() { }, read() { return null; }, remove() { } } ); // ../../node_modules/axios/lib/core/buildFullPath.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/axios/lib/helpers/isAbsoluteURL.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); function isAbsoluteURL(url2) { if (typeof url2 !== "string") { return false; } return /^([a-z][a-z\d+\-.]*:)?\/\//i.test(url2); } __name(isAbsoluteURL, "isAbsoluteURL"); // ../../node_modules/axios/lib/helpers/combineURLs.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); function combineURLs(baseURL, relativeURL) { return relativeURL ? baseURL.replace(/\/?\/$/, "") + "/" + relativeURL.replace(/^\/+/, "") : baseURL; } __name(combineURLs, "combineURLs"); // ../../node_modules/axios/lib/core/buildFullPath.js function buildFullPath(baseURL, requestedURL, allowAbsoluteUrls) { let isRelativeUrl = !isAbsoluteURL(requestedURL); if (baseURL && (isRelativeUrl || allowAbsoluteUrls == false)) { return combineURLs(baseURL, requestedURL); } return requestedURL; } __name(buildFullPath, "buildFullPath"); // ../../node_modules/axios/lib/core/mergeConfig.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var headersToObject = /* @__PURE__ */ __name((thing) => thing instanceof AxiosHeaders_default ? { ...thing } : thing, "headersToObject"); function mergeConfig(config1, config22) { config22 = config22 || {}; const config3 = {}; function getMergedValue(target2, source, prop, caseless) { if (utils_default.isPlainObject(target2) && utils_default.isPlainObject(source)) { return utils_default.merge.call({ caseless }, target2, source); } else if (utils_default.isPlainObject(source)) { return utils_default.merge({}, source); } else if (utils_default.isArray(source)) { return source.slice(); } return source; } __name(getMergedValue, "getMergedValue"); function mergeDeepProperties(a, b, prop, caseless) { if (!utils_default.isUndefined(b)) { return getMergedValue(a, b, prop, caseless); } else if (!utils_default.isUndefined(a)) { return getMergedValue(void 0, a, prop, caseless); } } __name(mergeDeepProperties, "mergeDeepProperties"); function valueFromConfig2(a, b) { if (!utils_default.isUndefined(b)) { return getMergedValue(void 0, b); } } __name(valueFromConfig2, "valueFromConfig2"); function defaultToConfig2(a, b) { if (!utils_default.isUndefined(b)) { return getMergedValue(void 0, b); } else if (!utils_default.isUndefined(a)) { return getMergedValue(void 0, a); } } __name(defaultToConfig2, "defaultToConfig2"); function mergeDirectKeys(a, b, prop) { if (prop in config22) { return getMergedValue(a, b); } else if (prop in config1) { return getMergedValue(void 0, a); } } __name(mergeDirectKeys, "mergeDirectKeys"); const mergeMap = { url: valueFromConfig2, method: valueFromConfig2, data: valueFromConfig2, baseURL: defaultToConfig2, transformRequest: defaultToConfig2, transformResponse: defaultToConfig2, paramsSerializer: defaultToConfig2, timeout: defaultToConfig2, timeoutMessage: defaultToConfig2, withCredentials: defaultToConfig2, withXSRFToken: defaultToConfig2, adapter: defaultToConfig2, responseType: defaultToConfig2, xsrfCookieName: defaultToConfig2, xsrfHeaderName: defaultToConfig2, onUploadProgress: defaultToConfig2, onDownloadProgress: defaultToConfig2, decompress: defaultToConfig2, maxContentLength: defaultToConfig2, maxBodyLength: defaultToConfig2, beforeRedirect: defaultToConfig2, transport: defaultToConfig2, httpAgent: defaultToConfig2, httpsAgent: defaultToConfig2, cancelToken: defaultToConfig2, socketPath: defaultToConfig2, responseEncoding: defaultToConfig2, validateStatus: mergeDirectKeys, headers: /* @__PURE__ */ __name((a, b, prop) => mergeDeepProperties(headersToObject(a), headersToObject(b), prop, true), "headers") }; utils_default.forEach(Object.keys({ ...config1, ...config22 }), /* @__PURE__ */ __name(function computeConfigValue(prop) { if (prop === "__proto__" || prop === "constructor" || prop === "prototype") return; const merge4 = utils_default.hasOwnProp(mergeMap, prop) ? mergeMap[prop] : mergeDeepProperties; const configValue = merge4(config1[prop], config22[prop], prop); utils_default.isUndefined(configValue) && merge4 !== mergeDirectKeys || (config3[prop] = configValue); }, "computeConfigValue")); return config3; } __name(mergeConfig, "mergeConfig"); // ../../node_modules/axios/lib/helpers/resolveConfig.js var resolveConfig_default = /* @__PURE__ */ __name((config3) => { const newConfig = mergeConfig({}, config3); let { data, withXSRFToken, xsrfHeaderName, xsrfCookieName, headers, auth } = newConfig; newConfig.headers = headers = AxiosHeaders_default.from(headers); newConfig.url = buildURL( buildFullPath(newConfig.baseURL, newConfig.url, newConfig.allowAbsoluteUrls), config3.params, config3.paramsSerializer ); if (auth) { headers.set( "Authorization", "Basic " + btoa( (auth.username || "") + ":" + (auth.password ? unescape(encodeURIComponent(auth.password)) : "") ) ); } if (utils_default.isFormData(data)) { if (platform_default.hasStandardBrowserEnv || platform_default.hasStandardBrowserWebWorkerEnv) { headers.setContentType(void 0); } else if (utils_default.isFunction(data.getHeaders)) { const formHeaders = data.getHeaders(); const allowedHeaders = ["content-type", "content-length"]; Object.entries(formHeaders).forEach(([key, val]) => { if (allowedHeaders.includes(key.toLowerCase())) { headers.set(key, val); } }); } } if (platform_default.hasStandardBrowserEnv) { withXSRFToken && utils_default.isFunction(withXSRFToken) && (withXSRFToken = withXSRFToken(newConfig)); if (withXSRFToken || withXSRFToken !== false && isURLSameOrigin_default(newConfig.url)) { const xsrfValue = xsrfHeaderName && xsrfCookieName && cookies_default.read(xsrfCookieName); if (xsrfValue) { headers.set(xsrfHeaderName, xsrfValue); } } } return newConfig; }, "default"); // ../../node_modules/axios/lib/adapters/xhr.js var isXHRAdapterSupported = typeof XMLHttpRequest !== "undefined"; var xhr_default = isXHRAdapterSupported && function(config3) { return new Promise(/* @__PURE__ */ __name(function dispatchXhrRequest(resolve, reject) { const _config = resolveConfig_default(config3); let requestData = _config.data; const requestHeaders = AxiosHeaders_default.from(_config.headers).normalize(); let { responseType, onUploadProgress, onDownloadProgress } = _config; let onCanceled; let uploadThrottled, downloadThrottled; let flushUpload, flushDownload; function done() { flushUpload && flushUpload(); flushDownload && flushDownload(); _config.cancelToken && _config.cancelToken.unsubscribe(onCanceled); _config.signal && _config.signal.removeEventListener("abort", onCanceled); } __name(done, "done"); let request = new XMLHttpRequest(); request.open(_config.method.toUpperCase(), _config.url, true); request.timeout = _config.timeout; function onloadend() { if (!request) { return; } const responseHeaders = AxiosHeaders_default.from( "getAllResponseHeaders" in request && request.getAllResponseHeaders() ); const responseData = !responseType || responseType === "text" || responseType === "json" ? request.responseText : request.response; const response = { data: responseData, status: request.status, statusText: request.statusText, headers: responseHeaders, config: config3, request }; settle( /* @__PURE__ */ __name(function _resolve(value) { resolve(value); done(); }, "_resolve"), /* @__PURE__ */ __name(function _reject(err) { reject(err); done(); }, "_reject"), response ); request = null; } __name(onloadend, "onloadend"); if ("onloadend" in request) { request.onloadend = onloadend; } else { request.onreadystatechange = /* @__PURE__ */ __name(function handleLoad() { if (!request || request.readyState !== 4) { return; } if (request.status === 0 && !(request.responseURL && request.responseURL.indexOf("file:") === 0)) { return; } setTimeout(onloadend); }, "handleLoad"); } request.onabort = /* @__PURE__ */ __name(function handleAbort() { if (!request) { return; } reject(new AxiosError_default("Request aborted", AxiosError_default.ECONNABORTED, config3, request)); request = null; }, "handleAbort"); request.onerror = /* @__PURE__ */ __name(function handleError(event) { const msg = event && event.message ? event.message : "Network Error"; const err = new AxiosError_default(msg, AxiosError_default.ERR_NETWORK, config3, request); err.event = event || null; reject(err); request = null; }, "handleError"); request.ontimeout = /* @__PURE__ */ __name(function handleTimeout() { let timeoutErrorMessage = _config.timeout ? "timeout of " + _config.timeout + "ms exceeded" : "timeout exceeded"; const transitional2 = _config.transitional || transitional_default; if (_config.timeoutErrorMessage) { timeoutErrorMessage = _config.timeoutErrorMessage; } reject( new AxiosError_default( timeoutErrorMessage, transitional2.clarifyTimeoutError ? AxiosError_default.ETIMEDOUT : AxiosError_default.ECONNABORTED, config3, request ) ); request = null; }, "handleTimeout"); requestData === void 0 && requestHeaders.setContentType(null); if ("setRequestHeader" in request) { utils_default.forEach(requestHeaders.toJSON(), /* @__PURE__ */ __name(function setRequestHeader(val, key) { request.setRequestHeader(key, val); }, "setRequestHeader")); } if (!utils_default.isUndefined(_config.withCredentials)) { request.withCredentials = !!_config.withCredentials; } if (responseType && responseType !== "json") { request.responseType = _config.responseType; } if (onDownloadProgress) { [downloadThrottled, flushDownload] = progressEventReducer(onDownloadProgress, true); request.addEventListener("progress", downloadThrottled); } if (onUploadProgress && request.upload) { [uploadThrottled, flushUpload] = progressEventReducer(onUploadProgress); request.upload.addEventListener("progress", uploadThrottled); request.upload.addEventListener("loadend", flushUpload); } if (_config.cancelToken || _config.signal) { onCanceled = /* @__PURE__ */ __name((cancel) => { if (!request) { return; } reject(!cancel || cancel.type ? new CanceledError_default(null, config3, request) : cancel); request.abort(); request = null; }, "onCanceled"); _config.cancelToken && _config.cancelToken.subscribe(onCanceled); if (_config.signal) { _config.signal.aborted ? onCanceled() : _config.signal.addEventListener("abort", onCanceled); } } const protocol = parseProtocol(_config.url); if (protocol && platform_default.protocols.indexOf(protocol) === -1) { reject( new AxiosError_default( "Unsupported protocol " + protocol + ":", AxiosError_default.ERR_BAD_REQUEST, config3 ) ); return; } request.send(requestData || null); }, "dispatchXhrRequest")); }; // ../../node_modules/axios/lib/adapters/fetch.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/axios/lib/helpers/composeSignals.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var composeSignals = /* @__PURE__ */ __name((signals, timeout) => { const { length } = signals = signals ? signals.filter(Boolean) : []; if (timeout || length) { let controller = new AbortController(); let aborted2; const onabort = /* @__PURE__ */ __name(function(reason) { if (!aborted2) { aborted2 = true; unsubscribe(); const err = reason instanceof Error ? reason : this.reason; controller.abort( err instanceof AxiosError_default ? err : new CanceledError_default(err instanceof Error ? err.message : err) ); } }, "onabort"); let timer = timeout && setTimeout(() => { timer = null; onabort(new AxiosError_default(`timeout of ${timeout}ms exceeded`, AxiosError_default.ETIMEDOUT)); }, timeout); const unsubscribe = /* @__PURE__ */ __name(() => { if (signals) { timer && clearTimeout(timer); timer = null; signals.forEach((signal2) => { signal2.unsubscribe ? signal2.unsubscribe(onabort) : signal2.removeEventListener("abort", onabort); }); signals = null; } }, "unsubscribe"); signals.forEach((signal2) => signal2.addEventListener("abort", onabort)); const { signal } = controller; signal.unsubscribe = () => utils_default.asap(unsubscribe); return signal; } }, "composeSignals"); var composeSignals_default = composeSignals; // ../../node_modules/axios/lib/helpers/trackStream.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var streamChunk = /* @__PURE__ */ __name(function* (chunk, chunkSize) { let len = chunk.byteLength; if (!chunkSize || len < chunkSize) { yield chunk; return; } let pos = 0; let end; while (pos < len) { end = pos + chunkSize; yield chunk.slice(pos, end); pos = end; } }, "streamChunk"); var readBytes = /* @__PURE__ */ __name(async function* (iterable, chunkSize) { for await (const chunk of readStream(iterable)) { yield* streamChunk(chunk, chunkSize); } }, "readBytes"); var readStream = /* @__PURE__ */ __name(async function* (stream) { if (stream[Symbol.asyncIterator]) { yield* stream; return; } const reader = stream.getReader(); try { for (; ; ) { const { done, value } = await reader.read(); if (done) { break; } yield value; } } finally { await reader.cancel(); } }, "readStream"); var trackStream = /* @__PURE__ */ __name((stream, chunkSize, onProgress, onFinish) => { const iterator2 = readBytes(stream, chunkSize); let bytes = 0; let done; let _onFinish = /* @__PURE__ */ __name((e) => { if (!done) { done = true; onFinish && onFinish(e); } }, "_onFinish"); return new ReadableStream( { async pull(controller) { try { const { done: done2, value } = await iterator2.next(); if (done2) { _onFinish(); controller.close(); return; } let len = value.byteLength; if (onProgress) { let loadedBytes = bytes += len; onProgress(loadedBytes); } controller.enqueue(new Uint8Array(value)); } catch (err) { _onFinish(err); throw err; } }, cancel(reason) { _onFinish(reason); return iterator2.return(); } }, { highWaterMark: 2 } ); }, "trackStream"); // ../../node_modules/axios/lib/adapters/fetch.js var DEFAULT_CHUNK_SIZE = 64 * 1024; var { isFunction: isFunction3 } = utils_default; var globalFetchAPI = (({ Request: Request3, Response: Response3 }) => ({ Request: Request3, Response: Response3 }))(utils_default.global); var { ReadableStream: ReadableStream2, TextEncoder: TextEncoder2 } = utils_default.global; var test = /* @__PURE__ */ __name((fn, ...args) => { try { return !!fn(...args); } catch (e) { return false; } }, "test"); var factory = /* @__PURE__ */ __name((env2) => { env2 = utils_default.merge.call( { skipUndefined: true }, globalFetchAPI, env2 ); const { fetch: envFetch, Request: Request3, Response: Response3 } = env2; const isFetchSupported = envFetch ? isFunction3(envFetch) : typeof fetch === "function"; const isRequestSupported = isFunction3(Request3); const isResponseSupported = isFunction3(Response3); if (!isFetchSupported) { return false; } const isReadableStreamSupported = isFetchSupported && isFunction3(ReadableStream2); const encodeText = isFetchSupported && (typeof TextEncoder2 === "function" ? /* @__PURE__ */ ((encoder2) => (str) => encoder2.encode(str))(new TextEncoder2()) : async (str) => new Uint8Array(await new Request3(str).arrayBuffer())); const supportsRequestStream = isRequestSupported && isReadableStreamSupported && test(() => { let duplexAccessed = false; const hasContentType = new Request3(platform_default.origin, { body: new ReadableStream2(), method: "POST", get duplex() { duplexAccessed = true; return "half"; } }).headers.has("Content-Type"); return duplexAccessed && !hasContentType; }); const supportsResponseStream = isResponseSupported && isReadableStreamSupported && test(() => utils_default.isReadableStream(new Response3("").body)); const resolvers = { stream: supportsResponseStream && ((res) => res.body) }; isFetchSupported && (() => { ["text", "arrayBuffer", "blob", "formData", "stream"].forEach((type) => { !resolvers[type] && (resolvers[type] = (res, config3) => { let method = res && res[type]; if (method) { return method.call(res); } throw new AxiosError_default( `Response type '${type}' is not supported`, AxiosError_default.ERR_NOT_SUPPORT, config3 ); }); }); })(); const getBodyLength = /* @__PURE__ */ __name(async (body) => { if (body == null) { return 0; } if (utils_default.isBlob(body)) { return body.size; } if (utils_default.isSpecCompliantForm(body)) { const _request = new Request3(platform_default.origin, { method: "POST", body }); return (await _request.arrayBuffer()).byteLength; } if (utils_default.isArrayBufferView(body) || utils_default.isArrayBuffer(body)) { return body.byteLength; } if (utils_default.isURLSearchParams(body)) { body = body + ""; } if (utils_default.isString(body)) { return (await encodeText(body)).byteLength; } }, "getBodyLength"); const resolveBodyLength = /* @__PURE__ */ __name(async (headers, body) => { const length = utils_default.toFiniteNumber(headers.getContentLength()); return length == null ? getBodyLength(body) : length; }, "resolveBodyLength"); return async (config3) => { let { url: url2, method, data, signal, cancelToken, timeout, onDownloadProgress, onUploadProgress, responseType, headers, withCredentials = "same-origin", fetchOptions } = resolveConfig_default(config3); let _fetch = envFetch || fetch; responseType = responseType ? (responseType + "").toLowerCase() : "text"; let composedSignal = composeSignals_default( [signal, cancelToken && cancelToken.toAbortSignal()], timeout ); let request = null; const unsubscribe = composedSignal && composedSignal.unsubscribe && (() => { composedSignal.unsubscribe(); }); let requestContentLength; try { if (onUploadProgress && supportsRequestStream && method !== "get" && method !== "head" && (requestContentLength = await resolveBodyLength(headers, data)) !== 0) { let _request = new Request3(url2, { method: "POST", body: data, duplex: "half" }); let contentTypeHeader; if (utils_default.isFormData(data) && (contentTypeHeader = _request.headers.get("content-type"))) { headers.setContentType(contentTypeHeader); } if (_request.body) { const [onProgress, flush2] = progressEventDecorator( requestContentLength, progressEventReducer(asyncDecorator(onUploadProgress)) ); data = trackStream(_request.body, DEFAULT_CHUNK_SIZE, onProgress, flush2); } } if (!utils_default.isString(withCredentials)) { withCredentials = withCredentials ? "include" : "omit"; } const isCredentialsSupported = isRequestSupported && "credentials" in Request3.prototype; const resolvedOptions = { ...fetchOptions, signal: composedSignal, method: method.toUpperCase(), headers: headers.normalize().toJSON(), body: data, duplex: "half", credentials: isCredentialsSupported ? withCredentials : void 0 }; request = isRequestSupported && new Request3(url2, resolvedOptions); let response = await (isRequestSupported ? _fetch(request, fetchOptions) : _fetch(url2, resolvedOptions)); const isStreamResponse = supportsResponseStream && (responseType === "stream" || responseType === "response"); if (supportsResponseStream && (onDownloadProgress || isStreamResponse && unsubscribe)) { const options = {}; ["status", "statusText", "headers"].forEach((prop) => { options[prop] = response[prop]; }); const responseContentLength = utils_default.toFiniteNumber(response.headers.get("content-length")); const [onProgress, flush2] = onDownloadProgress && progressEventDecorator( responseContentLength, progressEventReducer(asyncDecorator(onDownloadProgress), true) ) || []; response = new Response3( trackStream(response.body, DEFAULT_CHUNK_SIZE, onProgress, () => { flush2 && flush2(); unsubscribe && unsubscribe(); }), options ); } responseType = responseType || "text"; let responseData = await resolvers[utils_default.findKey(resolvers, responseType) || "text"]( response, config3 ); !isStreamResponse && unsubscribe && unsubscribe(); return await new Promise((resolve, reject) => { settle(resolve, reject, { data: responseData, headers: AxiosHeaders_default.from(response.headers), status: response.status, statusText: response.statusText, config: config3, request }); }); } catch (err) { unsubscribe && unsubscribe(); if (err && err.name === "TypeError" && /Load failed|fetch/i.test(err.message)) { throw Object.assign( new AxiosError_default( "Network Error", AxiosError_default.ERR_NETWORK, config3, request, err && err.response ), { cause: err.cause || err } ); } throw AxiosError_default.from(err, err && err.code, config3, request, err && err.response); } }; }, "factory"); var seedCache = /* @__PURE__ */ new Map(); var getFetch = /* @__PURE__ */ __name((config3) => { let env2 = config3 && config3.env || {}; const { fetch: fetch3, Request: Request3, Response: Response3 } = env2; const seeds = [Request3, Response3, fetch3]; let len = seeds.length, i = len, seed, target2, map2 = seedCache; while (i--) { seed = seeds[i]; target2 = map2.get(seed); target2 === void 0 && map2.set(seed, target2 = i ? /* @__PURE__ */ new Map() : factory(env2)); map2 = target2; } return target2; }, "getFetch"); var adapter = getFetch(); // ../../node_modules/axios/lib/adapters/adapters.js var knownAdapters = { http: null_default, xhr: xhr_default, fetch: { get: getFetch } }; utils_default.forEach(knownAdapters, (fn, value) => { if (fn) { try { Object.defineProperty(fn, "name", { value }); } catch (e) { } Object.defineProperty(fn, "adapterName", { value }); } }); var renderReason = /* @__PURE__ */ __name((reason) => `- ${reason}`, "renderReason"); var isResolvedHandle = /* @__PURE__ */ __name((adapter2) => utils_default.isFunction(adapter2) || adapter2 === null || adapter2 === false, "isResolvedHandle"); function getAdapter(adapters, config3) { adapters = utils_default.isArray(adapters) ? adapters : [adapters]; const { length } = adapters; let nameOrAdapter; let adapter2; const rejectedReasons = {}; for (let i = 0; i < length; i++) { nameOrAdapter = adapters[i]; let id; adapter2 = nameOrAdapter; if (!isResolvedHandle(nameOrAdapter)) { adapter2 = knownAdapters[(id = String(nameOrAdapter)).toLowerCase()]; if (adapter2 === void 0) { throw new AxiosError_default(`Unknown adapter '${id}'`); } } if (adapter2 && (utils_default.isFunction(adapter2) || (adapter2 = adapter2.get(config3)))) { break; } rejectedReasons[id || "#" + i] = adapter2; } if (!adapter2) { const reasons = Object.entries(rejectedReasons).map( ([id, state]) => `adapter ${id} ` + (state === false ? "is not supported by the environment" : "is not available in the build") ); let s = length ? reasons.length > 1 ? "since :\n" + reasons.map(renderReason).join("\n") : " " + renderReason(reasons[0]) : "as no adapter specified"; throw new AxiosError_default( `There is no suitable adapter to dispatch the request ` + s, "ERR_NOT_SUPPORT" ); } return adapter2; } __name(getAdapter, "getAdapter"); var adapters_default = { /** * Resolve an adapter from a list of adapter names or functions. * @type {Function} */ getAdapter, /** * Exposes all known adapters * @type {Object} */ adapters: knownAdapters }; // ../../node_modules/axios/lib/core/dispatchRequest.js function throwIfCancellationRequested(config3) { if (config3.cancelToken) { config3.cancelToken.throwIfRequested(); } if (config3.signal && config3.signal.aborted) { throw new CanceledError_default(null, config3); } } __name(throwIfCancellationRequested, "throwIfCancellationRequested"); function dispatchRequest(config3) { throwIfCancellationRequested(config3); config3.headers = AxiosHeaders_default.from(config3.headers); config3.data = transformData.call(config3, config3.transformRequest); if (["post", "put", "patch"].indexOf(config3.method) !== -1) { config3.headers.setContentType("application/x-www-form-urlencoded", false); } const adapter2 = adapters_default.getAdapter(config3.adapter || defaults_default.adapter, config3); return adapter2(config3).then( /* @__PURE__ */ __name(function onAdapterResolution(response) { throwIfCancellationRequested(config3); response.data = transformData.call(config3, config3.transformResponse, response); response.headers = AxiosHeaders_default.from(response.headers); return response; }, "onAdapterResolution"), /* @__PURE__ */ __name(function onAdapterRejection(reason) { if (!isCancel(reason)) { throwIfCancellationRequested(config3); if (reason && reason.response) { reason.response.data = transformData.call( config3, config3.transformResponse, reason.response ); reason.response.headers = AxiosHeaders_default.from(reason.response.headers); } } return Promise.reject(reason); }, "onAdapterRejection") ); } __name(dispatchRequest, "dispatchRequest"); // ../../node_modules/axios/lib/helpers/validator.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/axios/lib/env/data.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var VERSION = "1.13.6"; // ../../node_modules/axios/lib/helpers/validator.js var validators = {}; ["object", "boolean", "number", "function", "string", "symbol"].forEach((type, i) => { validators[type] = /* @__PURE__ */ __name(function validator(thing) { return typeof thing === type || "a" + (i < 1 ? "n " : " ") + type; }, "validator"); }); var deprecatedWarnings = {}; validators.transitional = /* @__PURE__ */ __name(function transitional(validator, version5, message2) { function formatMessage(opt, desc2) { return "[Axios v" + VERSION + "] Transitional option '" + opt + "'" + desc2 + (message2 ? ". " + message2 : ""); } __name(formatMessage, "formatMessage"); return (value, opt, opts) => { if (validator === false) { throw new AxiosError_default( formatMessage(opt, " has been removed" + (version5 ? " in " + version5 : "")), AxiosError_default.ERR_DEPRECATED ); } if (version5 && !deprecatedWarnings[opt]) { deprecatedWarnings[opt] = true; console.warn( formatMessage( opt, " has been deprecated since v" + version5 + " and will be removed in the near future" ) ); } return validator ? validator(value, opt, opts) : true; }; }, "transitional"); validators.spelling = /* @__PURE__ */ __name(function spelling(correctSpelling) { return (value, opt) => { console.warn(`${opt} is likely a misspelling of ${correctSpelling}`); return true; }; }, "spelling"); function assertOptions(options, schema, allowUnknown) { if (typeof options !== "object") { throw new AxiosError_default("options must be an object", AxiosError_default.ERR_BAD_OPTION_VALUE); } const keys = Object.keys(options); let i = keys.length; while (i-- > 0) { const opt = keys[i]; const validator = schema[opt]; if (validator) { const value = options[opt]; const result = value === void 0 || validator(value, opt, options); if (result !== true) { throw new AxiosError_default( "option " + opt + " must be " + result, AxiosError_default.ERR_BAD_OPTION_VALUE ); } continue; } if (allowUnknown !== true) { throw new AxiosError_default("Unknown option " + opt, AxiosError_default.ERR_BAD_OPTION); } } } __name(assertOptions, "assertOptions"); var validator_default = { assertOptions, validators }; // ../../node_modules/axios/lib/core/Axios.js var validators2 = validator_default.validators; var Axios = class { static { __name(this, "Axios"); } constructor(instanceConfig) { this.defaults = instanceConfig || {}; this.interceptors = { request: new InterceptorManager_default(), response: new InterceptorManager_default() }; } /** * Dispatch a request * * @param {String|Object} configOrUrl The config specific for this request (merged with this.defaults) * @param {?Object} config * * @returns {Promise} The Promise to be fulfilled */ async request(configOrUrl, config3) { try { return await this._request(configOrUrl, config3); } catch (err) { if (err instanceof Error) { let dummy = {}; Error.captureStackTrace ? Error.captureStackTrace(dummy) : dummy = new Error(); const stack = dummy.stack ? dummy.stack.replace(/^.+\n/, "") : ""; try { if (!err.stack) { err.stack = stack; } else if (stack && !String(err.stack).endsWith(stack.replace(/^.+\n.+\n/, ""))) { err.stack += "\n" + stack; } } catch (e) { } } throw err; } } _request(configOrUrl, config3) { if (typeof configOrUrl === "string") { config3 = config3 || {}; config3.url = configOrUrl; } else { config3 = configOrUrl || {}; } config3 = mergeConfig(this.defaults, config3); const { transitional: transitional2, paramsSerializer, headers } = config3; if (transitional2 !== void 0) { validator_default.assertOptions( transitional2, { silentJSONParsing: validators2.transitional(validators2.boolean), forcedJSONParsing: validators2.transitional(validators2.boolean), clarifyTimeoutError: validators2.transitional(validators2.boolean), legacyInterceptorReqResOrdering: validators2.transitional(validators2.boolean) }, false ); } if (paramsSerializer != null) { if (utils_default.isFunction(paramsSerializer)) { config3.paramsSerializer = { serialize: paramsSerializer }; } else { validator_default.assertOptions( paramsSerializer, { encode: validators2.function, serialize: validators2.function }, true ); } } if (config3.allowAbsoluteUrls !== void 0) { } else if (this.defaults.allowAbsoluteUrls !== void 0) { config3.allowAbsoluteUrls = this.defaults.allowAbsoluteUrls; } else { config3.allowAbsoluteUrls = true; } validator_default.assertOptions( config3, { baseUrl: validators2.spelling("baseURL"), withXsrfToken: validators2.spelling("withXSRFToken") }, true ); config3.method = (config3.method || this.defaults.method || "get").toLowerCase(); let contextHeaders = headers && utils_default.merge(headers.common, headers[config3.method]); headers && utils_default.forEach(["delete", "get", "head", "post", "put", "patch", "common"], (method) => { delete headers[method]; }); config3.headers = AxiosHeaders_default.concat(contextHeaders, headers); const requestInterceptorChain = []; let synchronousRequestInterceptors = true; this.interceptors.request.forEach(/* @__PURE__ */ __name(function unshiftRequestInterceptors(interceptor) { if (typeof interceptor.runWhen === "function" && interceptor.runWhen(config3) === false) { return; } synchronousRequestInterceptors = synchronousRequestInterceptors && interceptor.synchronous; const transitional3 = config3.transitional || transitional_default; const legacyInterceptorReqResOrdering = transitional3 && transitional3.legacyInterceptorReqResOrdering; if (legacyInterceptorReqResOrdering) { requestInterceptorChain.unshift(interceptor.fulfilled, interceptor.rejected); } else { requestInterceptorChain.push(interceptor.fulfilled, interceptor.rejected); } }, "unshiftRequestInterceptors")); const responseInterceptorChain = []; this.interceptors.response.forEach(/* @__PURE__ */ __name(function pushResponseInterceptors(interceptor) { responseInterceptorChain.push(interceptor.fulfilled, interceptor.rejected); }, "pushResponseInterceptors")); let promise2; let i = 0; let len; if (!synchronousRequestInterceptors) { const chain = [dispatchRequest.bind(this), void 0]; chain.unshift(...requestInterceptorChain); chain.push(...responseInterceptorChain); len = chain.length; promise2 = Promise.resolve(config3); while (i < len) { promise2 = promise2.then(chain[i++], chain[i++]); } return promise2; } len = requestInterceptorChain.length; let newConfig = config3; while (i < len) { const onFulfilled = requestInterceptorChain[i++]; const onRejected = requestInterceptorChain[i++]; try { newConfig = onFulfilled(newConfig); } catch (error50) { onRejected.call(this, error50); break; } } try { promise2 = dispatchRequest.call(this, newConfig); } catch (error50) { return Promise.reject(error50); } i = 0; len = responseInterceptorChain.length; while (i < len) { promise2 = promise2.then(responseInterceptorChain[i++], responseInterceptorChain[i++]); } return promise2; } getUri(config3) { config3 = mergeConfig(this.defaults, config3); const fullPath = buildFullPath(config3.baseURL, config3.url, config3.allowAbsoluteUrls); return buildURL(fullPath, config3.params, config3.paramsSerializer); } }; utils_default.forEach(["delete", "get", "head", "options"], /* @__PURE__ */ __name(function forEachMethodNoData(method) { Axios.prototype[method] = function(url2, config3) { return this.request( mergeConfig(config3 || {}, { method, url: url2, data: (config3 || {}).data }) ); }; }, "forEachMethodNoData")); utils_default.forEach(["post", "put", "patch"], /* @__PURE__ */ __name(function forEachMethodWithData(method) { function generateHTTPMethod(isForm) { return /* @__PURE__ */ __name(function httpMethod(url2, data, config3) { return this.request( mergeConfig(config3 || {}, { method, headers: isForm ? { "Content-Type": "multipart/form-data" } : {}, url: url2, data }) ); }, "httpMethod"); } __name(generateHTTPMethod, "generateHTTPMethod"); Axios.prototype[method] = generateHTTPMethod(); Axios.prototype[method + "Form"] = generateHTTPMethod(true); }, "forEachMethodWithData")); var Axios_default = Axios; // ../../node_modules/axios/lib/cancel/CancelToken.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var CancelToken = class _CancelToken { static { __name(this, "CancelToken"); } constructor(executor) { if (typeof executor !== "function") { throw new TypeError("executor must be a function."); } let resolvePromise; this.promise = new Promise(/* @__PURE__ */ __name(function promiseExecutor(resolve) { resolvePromise = resolve; }, "promiseExecutor")); const token = this; this.promise.then((cancel) => { if (!token._listeners) return; let i = token._listeners.length; while (i-- > 0) { token._listeners[i](cancel); } token._listeners = null; }); this.promise.then = (onfulfilled) => { let _resolve; const promise2 = new Promise((resolve) => { token.subscribe(resolve); _resolve = resolve; }).then(onfulfilled); promise2.cancel = /* @__PURE__ */ __name(function reject() { token.unsubscribe(_resolve); }, "reject"); return promise2; }; executor(/* @__PURE__ */ __name(function cancel(message2, config3, request) { if (token.reason) { return; } token.reason = new CanceledError_default(message2, config3, request); resolvePromise(token.reason); }, "cancel")); } /** * Throws a `CanceledError` if cancellation has been requested. */ throwIfRequested() { if (this.reason) { throw this.reason; } } /** * Subscribe to the cancel signal */ subscribe(listener) { if (this.reason) { listener(this.reason); return; } if (this._listeners) { this._listeners.push(listener); } else { this._listeners = [listener]; } } /** * Unsubscribe from the cancel signal */ unsubscribe(listener) { if (!this._listeners) { return; } const index = this._listeners.indexOf(listener); if (index !== -1) { this._listeners.splice(index, 1); } } toAbortSignal() { const controller = new AbortController(); const abort2 = /* @__PURE__ */ __name((err) => { controller.abort(err); }, "abort"); this.subscribe(abort2); controller.signal.unsubscribe = () => this.unsubscribe(abort2); return controller.signal; } /** * Returns an object that contains a new `CancelToken` and a function that, when called, * cancels the `CancelToken`. */ static source() { let cancel; const token = new _CancelToken(/* @__PURE__ */ __name(function executor(c) { cancel = c; }, "executor")); return { token, cancel }; } }; var CancelToken_default = CancelToken; // ../../node_modules/axios/lib/helpers/spread.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); function spread(callback) { return /* @__PURE__ */ __name(function wrap(arr) { return callback.apply(null, arr); }, "wrap"); } __name(spread, "spread"); // ../../node_modules/axios/lib/helpers/isAxiosError.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); function isAxiosError(payload) { return utils_default.isObject(payload) && payload.isAxiosError === true; } __name(isAxiosError, "isAxiosError"); // ../../node_modules/axios/lib/helpers/HttpStatusCode.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var HttpStatusCode = { Continue: 100, SwitchingProtocols: 101, Processing: 102, EarlyHints: 103, Ok: 200, Created: 201, Accepted: 202, NonAuthoritativeInformation: 203, NoContent: 204, ResetContent: 205, PartialContent: 206, MultiStatus: 207, AlreadyReported: 208, ImUsed: 226, MultipleChoices: 300, MovedPermanently: 301, Found: 302, SeeOther: 303, NotModified: 304, UseProxy: 305, Unused: 306, TemporaryRedirect: 307, PermanentRedirect: 308, BadRequest: 400, Unauthorized: 401, PaymentRequired: 402, Forbidden: 403, NotFound: 404, MethodNotAllowed: 405, NotAcceptable: 406, ProxyAuthenticationRequired: 407, RequestTimeout: 408, Conflict: 409, Gone: 410, LengthRequired: 411, PreconditionFailed: 412, PayloadTooLarge: 413, UriTooLong: 414, UnsupportedMediaType: 415, RangeNotSatisfiable: 416, ExpectationFailed: 417, ImATeapot: 418, MisdirectedRequest: 421, UnprocessableEntity: 422, Locked: 423, FailedDependency: 424, TooEarly: 425, UpgradeRequired: 426, PreconditionRequired: 428, TooManyRequests: 429, RequestHeaderFieldsTooLarge: 431, UnavailableForLegalReasons: 451, InternalServerError: 500, NotImplemented: 501, BadGateway: 502, ServiceUnavailable: 503, GatewayTimeout: 504, HttpVersionNotSupported: 505, VariantAlsoNegotiates: 506, InsufficientStorage: 507, LoopDetected: 508, NotExtended: 510, NetworkAuthenticationRequired: 511, WebServerIsDown: 521, ConnectionTimedOut: 522, OriginIsUnreachable: 523, TimeoutOccurred: 524, SslHandshakeFailed: 525, InvalidSslCertificate: 526 }; Object.entries(HttpStatusCode).forEach(([key, value]) => { HttpStatusCode[value] = key; }); var HttpStatusCode_default = HttpStatusCode; // ../../node_modules/axios/lib/axios.js function createInstance(defaultConfig) { const context2 = new Axios_default(defaultConfig); const instance = bind(Axios_default.prototype.request, context2); utils_default.extend(instance, Axios_default.prototype, context2, { allOwnKeys: true }); utils_default.extend(instance, context2, null, { allOwnKeys: true }); instance.create = /* @__PURE__ */ __name(function create(instanceConfig) { return createInstance(mergeConfig(defaultConfig, instanceConfig)); }, "create"); return instance; } __name(createInstance, "createInstance"); var axios = createInstance(defaults_default); axios.Axios = Axios_default; axios.CanceledError = CanceledError_default; axios.CancelToken = CancelToken_default; axios.isCancel = isCancel; axios.VERSION = VERSION; axios.toFormData = toFormData_default; axios.AxiosError = AxiosError_default; axios.Cancel = axios.CanceledError; axios.all = /* @__PURE__ */ __name(function all(promises) { return Promise.all(promises); }, "all"); axios.spread = spread; axios.isAxiosError = isAxiosError; axios.mergeConfig = mergeConfig; axios.AxiosHeaders = AxiosHeaders_default; axios.formToJSON = (thing) => formDataToJSON_default(utils_default.isHTMLForm(thing) ? new FormData(thing) : thing); axios.getAdapter = adapters_default.getAdapter; axios.HttpStatusCode = HttpStatusCode_default; axios.default = axios; var axios_default = axios; // ../../node_modules/axios/index.js var { Axios: Axios2, AxiosError: AxiosError2, CanceledError: CanceledError2, isCancel: isCancel2, CancelToken: CancelToken2, VERSION: VERSION2, all: all2, Cancel, isAxiosError: isAxiosError2, spread: spread2, toFormData: toFormData2, AxiosHeaders: AxiosHeaders2, HttpStatusCode: HttpStatusCode2, formToJSON, getAdapter: getAdapter2, mergeConfig: mergeConfig2 } = axios_default; // src/lib/telegram-service.ts var BOT_TOKEN = telegramBotToken; var TELEGRAM_API_URL = `https://api.telegram.org/bot${BOT_TOKEN}`; // src/lib/post-order-handler.ts var ORDER_CHANNEL = "orders:placed"; var CANCELLED_CHANNEL = "orders:cancelled"; var publishOrder = /* @__PURE__ */ __name(async (orderDetails) => { try { const message2 = JSON.stringify(orderDetails); await redis_client_default.publish(ORDER_CHANNEL, message2); return true; } catch (error50) { console.error("Failed to publish order:", error50); return false; } }, "publishOrder"); var publishFormattedOrder = /* @__PURE__ */ __name(async (createdOrders, ordersBySlot) => { try { const orderIds = createdOrders.map((order) => order.id); return await publishOrder({ orderIds }); } catch (error50) { console.error("Failed to format and publish order:", error50); return false; } }, "publishFormattedOrder"); var publishCancellation = /* @__PURE__ */ __name(async (orderId, cancelledBy, reason) => { try { const message2 = { orderId, cancelledBy, reason, cancelledAt: (/* @__PURE__ */ new Date()).toISOString() }; await redis_client_default.publish(CANCELLED_CHANNEL, JSON.stringify(message2)); console.log("Cancellation published to Redis:", orderId); return true; } catch (error50) { console.error("Failed to publish cancellation:", error50); return false; } }, "publishCancellation"); // src/stores/user-negativity-store.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); async function getMultipleUserNegativityScores(userIds) { try { if (userIds.length === 0) return {}; const result = {}; for (const userId of userIds) { result[userId] = await getUserNegativityScore(userId); } return result; } catch (error50) { console.error("Error getting multiple user negativity scores:", error50); return {}; } } __name(getMultipleUserNegativityScores, "getMultipleUserNegativityScores"); async function recomputeUserNegativityScore(userId) { try { const totalScore = await getUserNegativityScore(userId); } catch (error50) { console.error(`Error recomputing negativity score for user ${userId}:`, error50); throw error50; } } __name(recomputeUserNegativityScore, "recomputeUserNegativityScore"); // src/trpc/apis/admin-apis/apis/order.ts var updateOrderNotesSchema = external_exports.object({ orderId: external_exports.number(), adminNotes: external_exports.string() }); var getOrderDetailsSchema = external_exports.object({ orderId: external_exports.number() }); var updatePackagedSchema = external_exports.object({ orderId: external_exports.string(), isPackaged: external_exports.boolean() }); var updateDeliveredSchema = external_exports.object({ orderId: external_exports.string(), isDelivered: external_exports.boolean() }); var updateOrderItemPackagingSchema = external_exports.object({ orderItemId: external_exports.number(), isPackaged: external_exports.boolean().optional(), isPackageVerified: external_exports.boolean().optional() }); var getSlotOrdersSchema = external_exports.object({ slotId: external_exports.string() }); var getAllOrdersSchema = external_exports.object({ cursor: external_exports.number().optional(), limit: external_exports.number().default(20), slotId: external_exports.number().optional().nullable(), packagedFilter: external_exports.enum(["all", "packaged", "not_packaged"]).optional().default("all"), deliveredFilter: external_exports.enum(["all", "delivered", "not_delivered"]).optional().default("all"), cancellationFilter: external_exports.enum(["all", "cancelled", "not_cancelled"]).optional().default("all"), flashDeliveryFilter: external_exports.enum(["all", "flash", "regular"]).optional().default("all") }); var orderRouter = router2({ updateNotes: protectedProcedure.input(updateOrderNotesSchema).mutation(async ({ input }) => { const { orderId, adminNotes } = input; const result = await updateOrderNotes(orderId, adminNotes || null); if (!result) { throw new Error("Order not found"); } return result; }), getOrderDetails: protectedProcedure.input(getOrderDetailsSchema).query(async ({ input }) => { const { orderId } = input; const orderDetails = await getOrderDetails(orderId); if (!orderDetails) { throw new Error("Order not found"); } return orderDetails; }), updatePackaged: protectedProcedure.input(updatePackagedSchema).mutation(async ({ input }) => { const { orderId, isPackaged } = input; const result = await updateOrderPackaged(orderId, isPackaged); if (result.userId) await sendOrderPackagedNotification(result.userId, orderId); return { success: true, userId: result.userId }; }), updateDelivered: protectedProcedure.input(updateDeliveredSchema).mutation(async ({ input }) => { const { orderId, isDelivered } = input; const result = await updateOrderDelivered(orderId, isDelivered); if (result.userId) await sendOrderDeliveredNotification(result.userId, orderId); return { success: true, userId: result.userId }; }), updateOrderItemPackaging: protectedProcedure.input(updateOrderItemPackagingSchema).mutation(async ({ input }) => { const { orderItemId, isPackaged, isPackageVerified } = input; const result = await updateOrderItemPackaging(orderItemId, isPackaged, isPackageVerified); if (!result.updated) { throw new ApiError("Order item not found", 404); } return result; }), removeDeliveryCharge: protectedProcedure.input(external_exports.object({ orderId: external_exports.number() })).mutation(async ({ input }) => { const { orderId } = input; const result = await removeDeliveryCharge(orderId); if (!result) { throw new Error("Order not found"); } return result; }), getSlotOrders: protectedProcedure.input(getSlotOrdersSchema).query(async ({ input }) => { const { slotId } = input; const result = await getSlotOrders(slotId); return result; }), updateAddressCoords: protectedProcedure.input( external_exports.object({ addressId: external_exports.number(), latitude: external_exports.number(), longitude: external_exports.number() }) ).mutation(async ({ input }) => { const { addressId, latitude, longitude } = input; const result = await updateAddressCoords(addressId, latitude, longitude); if (!result.success) { throw new ApiError("Address not found", 404); } return result; }), getAll: protectedProcedure.input(getAllOrdersSchema).query(async ({ input }) => { try { const result = await getAllOrders(input); const userIds = [...new Set(result.orders.map((order) => order.userId))]; const negativityScores = await getMultipleUserNegativityScores(userIds); const orders3 = result.orders.map((order) => { const { userId, userNegativityScore, ...rest } = order; return { ...rest, userNegativityScore: negativityScores[userId] || 0 }; }); return { orders: orders3, nextCursor: result.nextCursor }; } catch (e) { console.log({ e }); } }), rebalanceSlots: protectedProcedure.input(external_exports.object({ slotIds: external_exports.array(external_exports.number()).min(1).max(50) })).mutation(async ({ input }) => { const slotIds = input.slotIds; const result = await rebalanceSlots(slotIds); return result; }), cancelOrder: protectedProcedure.input(external_exports.object({ orderId: external_exports.number(), reason: external_exports.string().min(1, "Cancellation reason is required") })).mutation(async ({ input }) => { const { orderId, reason } = input; const result = await cancelOrder(orderId, reason); if (!result.success) { if (result.error === "order_not_found") { throw new ApiError(result.message, 404); } if (result.error === "status_not_found") { throw new ApiError(result.message, 400); } if (result.error === "already_cancelled") { throw new ApiError(result.message, 400); } if (result.error === "already_delivered") { throw new ApiError(result.message, 400); } throw new ApiError(result.message, 400); } if (result.orderId) { await publishCancellation(result.orderId, "admin", reason); } return { success: true, message: result.message }; }) }); // src/trpc/apis/admin-apis/apis/vendor-snippets.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var import_dayjs2 = __toESM(require_dayjs_min()); var createSnippetSchema = external_exports.object({ snippetCode: external_exports.string().min(1, "Snippet code is required"), slotId: external_exports.number().optional(), productIds: external_exports.array(external_exports.number().int().positive()).min(1, "At least one product is required"), validTill: external_exports.string().optional(), isPermanent: external_exports.boolean().default(false) }); var updateSnippetSchema = external_exports.object({ id: external_exports.number().int().positive(), updates: createSnippetSchema.partial().extend({ snippetCode: external_exports.string().min(1).optional(), productIds: external_exports.array(external_exports.number().int().positive()).optional(), isPermanent: external_exports.boolean().default(false) }) }); var vendorSnippetsRouter = router2({ create: protectedProcedure.input(createSnippetSchema).mutation(async ({ input, ctx }) => { const { snippetCode, slotId, productIds, validTill, isPermanent } = input; const staffUserId = ctx.staffUser?.id; if (!staffUserId) { throw new Error("Unauthorized"); } if (slotId) { const slot = await getVendorSlotById(slotId); if (!slot) { throw new Error("Invalid slot ID"); } } const products = await getProductsByIds(productIds); if (products.length !== productIds.length) { throw new Error("One or more invalid product IDs"); } const existingSnippet = await checkVendorSnippetExists(snippetCode); if (existingSnippet) { throw new Error("Snippet code already exists"); } const result = await createVendorSnippet({ snippetCode, slotId, productIds, isPermanent, validTill: validTill ? new Date(validTill) : void 0 }); return result; }), getAll: protectedProcedure.query(async () => { console.log("from the vendor snipptes methods"); try { const result = await getAllVendorSnippets(); const snippetsWithProducts = await Promise.all( result.map(async (snippet) => { const products = await getProductsByIds(snippet.productIds); return { ...snippet, accessUrl: `${appUrl}/vendor-order-list?id=${snippet.snippetCode}`, products }; }) ); return snippetsWithProducts; } catch (e) { console.log(e); } return []; }), getById: protectedProcedure.input(external_exports.object({ id: external_exports.number().int().positive() })).query(async ({ input }) => { const { id } = input; const result = await getVendorSnippetById(id); if (!result) { throw new Error("Vendor snippet not found"); } return result; }), update: protectedProcedure.input(updateSnippetSchema).mutation(async ({ input }) => { const { id, updates } = input; const existingSnippet = await getVendorSnippetById(id); if (!existingSnippet) { throw new Error("Vendor snippet not found"); } if (updates.slotId) { const slot = await getVendorSlotById(updates.slotId); if (!slot) { throw new Error("Invalid slot ID"); } } if (updates.productIds) { const products = await getProductsByIds(updates.productIds); if (products.length !== updates.productIds.length) { throw new Error("One or more invalid product IDs"); } } if (updates.snippetCode && updates.snippetCode !== existingSnippet.snippetCode) { const duplicateSnippet = await checkVendorSnippetExists(updates.snippetCode); if (duplicateSnippet) { throw new Error("Snippet code already exists"); } } const updateData2 = { ...updates, validTill: updates.validTill !== void 0 ? updates.validTill ? new Date(updates.validTill) : null : void 0 }; const result = await updateVendorSnippet(id, updateData2); if (!result) { throw new Error("Failed to update vendor snippet"); } return result; }), delete: protectedProcedure.input(external_exports.object({ id: external_exports.number().int().positive() })).mutation(async ({ input }) => { const { id } = input; const result = await deleteVendorSnippet(id); if (!result) { throw new Error("Vendor snippet not found"); } return { message: "Vendor snippet deleted successfully" }; }), getOrdersBySnippet: publicProcedure.input(external_exports.object({ snippetCode: external_exports.string().min(1, "Snippet code is required") })).query(async ({ input }) => { const { snippetCode } = input; const snippet = await getVendorSnippetByCode(snippetCode); if (!snippet) { throw new Error("Vendor snippet not found"); } if (snippet.validTill && new Date(snippet.validTill) < /* @__PURE__ */ new Date()) { throw new Error("Vendor snippet has expired"); } if (!snippet.slotId) { throw new Error("Vendor snippet not associated with a slot"); } const matchingOrders = await getVendorOrdersBySlotId(snippet.slotId); const filteredOrders = matchingOrders.filter((order) => { const status = order.orderStatus; if (status[0].isCancelled) return false; const orderProductIds = order.orderItems.map((item) => item.productId); return snippet.productIds.some((productId) => orderProductIds.includes(productId)); }); const formattedOrders = filteredOrders.map((order) => { const attachedOrderItems = order.orderItems.filter( (item) => snippet.productIds.includes(item.productId) ); const products = attachedOrderItems.map((item) => ({ orderItemId: item.id, productId: item.productId, productName: item.product.name, quantity: parseFloat(item.quantity), productSize: item.product.productQuantity, price: parseFloat((item.price ?? 0).toString()), unit: item.product.unit?.shortNotation || "unit", subtotal: parseFloat((item.price ?? 0).toString()) * parseFloat(item.quantity), is_packaged: item.is_packaged, is_package_verified: item.is_package_verified })); const orderTotal = products.reduce((sum2, p) => sum2 + p.subtotal, 0); return { orderId: `ORD${order.id}`, orderDate: order.createdAt.toISOString(), customerName: order.user.name || "", totalAmount: orderTotal, slotInfo: order.slot ? { time: order.slot.deliveryTime.toISOString(), sequence: order.slot.deliverySequence } : null, products, matchedProducts: snippet.productIds, // All snippet products are considered matched snippetCode: snippet.snippetCode }; }); return { success: true, data: formattedOrders, snippet: { id: snippet.id, snippetCode: snippet.snippetCode, slotId: snippet.slotId, productIds: snippet.productIds, validTill: snippet.validTill?.toISOString(), createdAt: snippet.createdAt.toISOString(), isPermanent: snippet.isPermanent } }; }), getVendorOrders: protectedProcedure.query(async () => { const vendorOrders = await getVendorOrders(); return vendorOrders.map((order) => ({ id: order.id, status: "pending", orderDate: order.createdAt.toISOString(), totalQuantity: order.orderItems.reduce((sum2, item) => sum2 + parseFloat(item.quantity || "0"), 0), products: order.orderItems.map((item) => ({ name: item.product.name, quantity: parseFloat(item.quantity || "0"), unit: item.product.unit?.shortNotation || "unit" })) })); }), getUpcomingSlots: publicProcedure.query(async () => { const threeHoursAgo = (0, import_dayjs2.default)().subtract(3, "hour").toDate(); const slots = await getSlotsAfterDate(threeHoursAgo); return { success: true, data: slots.map((slot) => ({ id: slot.id, deliveryTime: slot.deliveryTime.toISOString(), freezeTime: slot.freezeTime.toISOString(), deliverySequence: slot.deliverySequence })) }; }), getOrdersBySnippetAndSlot: publicProcedure.input(external_exports.object({ snippetCode: external_exports.string().min(1, "Snippet code is required"), slotId: external_exports.number().int().positive("Valid slot ID is required") })).query(async ({ input }) => { const { snippetCode, slotId } = input; const snippet = await getVendorSnippetByCode(snippetCode); const slot = await getVendorSlotById(slotId); if (!snippet) { throw new Error("Vendor snippet not found"); } if (!slot) { throw new Error("Slot not found"); } const matchingOrders = await getVendorOrdersBySlotId(slotId); const filteredOrders = matchingOrders.filter((order) => { const status = order.orderStatus; if (status[0]?.isCancelled) return false; const orderProductIds = order.orderItems.map((item) => item.productId); return snippet.productIds.some((productId) => orderProductIds.includes(productId)); }); const formattedOrders = filteredOrders.map((order) => { const attachedOrderItems = order.orderItems.filter( (item) => snippet.productIds.includes(item.productId) ); const products = attachedOrderItems.map((item) => ({ orderItemId: item.id, productId: item.productId, productName: item.product.name, quantity: parseFloat(item.quantity), price: parseFloat((item.price ?? 0).toString()), unit: item.product.unit?.shortNotation || "unit", subtotal: parseFloat((item.price ?? 0).toString()) * parseFloat(item.quantity), productSize: item.product.productQuantity, is_packaged: item.is_packaged, is_package_verified: item.is_package_verified })); const orderTotal = products.reduce((sum2, p) => sum2 + p.subtotal, 0); return { orderId: `ORD${order.id}`, orderDate: order.createdAt.toISOString(), customerName: order.user.name || "", totalAmount: orderTotal, slotInfo: order.slot ? { time: order.slot.deliveryTime.toISOString(), sequence: order.slot.deliverySequence } : null, products, matchedProducts: snippet.productIds, snippetCode: snippet.snippetCode }; }); return { success: true, data: formattedOrders, snippet: { id: snippet.id, snippetCode: snippet.snippetCode, slotId: snippet.slotId, productIds: snippet.productIds, validTill: snippet.validTill?.toISOString(), createdAt: snippet.createdAt.toISOString(), isPermanent: snippet.isPermanent }, selectedSlot: { id: slot.id, deliveryTime: slot.deliveryTime.toISOString(), freezeTime: slot.freezeTime.toISOString(), deliverySequence: slot.deliverySequence } }; }), updateOrderItemPackaging: publicProcedure.input(external_exports.object({ orderItemId: external_exports.number().int().positive("Valid order item ID required"), is_packaged: external_exports.boolean() })).mutation(async ({ input, ctx }) => { const { orderItemId, is_packaged } = input; const result = await updateVendorOrderItemPackaging(orderItemId, is_packaged); if (!result.success) { throw new Error(result.message); } return result; }) }); // src/trpc/apis/admin-apis/apis/slots.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // src/stores/store-initializer.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // src/lib/roles-manager.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var ROLE_NAMES = { ADMIN: "admin", GENERAL_USER: "gen_user", HOSPITAL_ADMIN: "hospital_admin", DOCTOR: "doctor", RECEPTIONIST: "receptionist" }; var defaultRole = ROLE_NAMES.GENERAL_USER; var RoleManager = class { constructor() { this.roles = /* @__PURE__ */ new Map(); this.rolesByName = /* @__PURE__ */ new Map(); this.isInitialized = false; } static { __name(this, "RoleManager"); } /** * Fetch all roles from the database and cache them * This should be called during application startup */ async fetchRoles() { try { } catch (error50) { console.error("[RoleManager] Error fetching roles:", error50); throw error50; } } /** * Get all roles from cache * If not initialized, fetches roles from DB first */ async getRoles() { if (!this.isInitialized) { await this.fetchRoles(); } return Array.from(this.roles.values()); } /** * Get role by ID * @param id Role ID */ async getRoleById(id) { if (!this.isInitialized) { await this.fetchRoles(); } return this.roles.get(id); } /** * Get role by name * @param name Role name */ async getRoleByName(name) { if (!this.isInitialized) { await this.fetchRoles(); } return this.rolesByName.get(name); } /** * Check if a role exists by name * @param name Role name */ async roleExists(name) { if (!this.isInitialized) { await this.fetchRoles(); } return this.rolesByName.has(name); } /** * Get business roles (roles that are not 'admin' or 'gen_user') */ async getBusinessRoles() { if (!this.isInitialized) { await this.fetchRoles(); } return Array.from(this.roles.values()).filter( (role) => role.name !== ROLE_NAMES.ADMIN && role.name !== ROLE_NAMES.GENERAL_USER ); } /** * Force refresh the roles cache */ async refreshRoles() { await this.fetchRoles(); } }; var roleManager = new RoleManager(); var roles_manager_default = roleManager; // src/lib/const-store.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // src/lib/const-keys.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var CONST_KEYS = { minRegularOrderValue: "minRegularOrderValue", freeDeliveryThreshold: "freeDeliveryThreshold", deliveryCharge: "deliveryCharge", flashFreeDeliveryThreshold: "flashFreeDeliveryThreshold", flashDeliveryCharge: "flashDeliveryCharge", platformFeePercent: "platformFeePercent", taxRate: "taxRate", tester: "tester", minOrderAmountForCoupon: "minOrderAmountForCoupon", maxCouponDiscount: "maxCouponDiscount", flashDeliverySlotId: "flashDeliverySlotId", readableOrderId: "readableOrderId", versionNum: "versionNum", playStoreUrl: "playStoreUrl", appStoreUrl: "appStoreUrl", popularItems: "popularItems", allItemsOrder: "allItemsOrder", isFlashDeliveryEnabled: "isFlashDeliveryEnabled", supportMobile: "supportMobile", supportEmail: "supportEmail" }; var CONST_KEYS_ARRAY = Object.values(CONST_KEYS); // src/lib/const-store.ts var computeConstants = /* @__PURE__ */ __name(async () => { try { console.log("Computing constants from database..."); const constants = await getAllKeyValStore(); console.log(`Computed ${constants.length} constants from DB`); } catch (error50) { console.error("Failed to compute constants:", error50); throw error50; } }, "computeConstants"); var getConstant = /* @__PURE__ */ __name(async (key) => { const constants = await getAllKeyValStore(); const entry = constants.find((c) => c.key === key); if (!entry) { return null; } return entry.value; }, "getConstant"); var getConstants = /* @__PURE__ */ __name(async (keys) => { const constants = await getAllKeyValStore(); const constantsMap = new Map(constants.map((c) => [c.key, c.value])); const result = {}; for (const key of keys) { const value = constantsMap.get(key); result[key] = value !== void 0 ? value : null; } return result; }, "getConstants"); var getAllConstValues = /* @__PURE__ */ __name(async () => { const constants = await getAllKeyValStore(); const constantsMap = new Map(constants.map((c) => [c.key, c.value])); const result = {}; for (const key of CONST_KEYS_ARRAY) { result[key] = constantsMap.get(key) ?? null; } return result; }, "getAllConstValues"); // src/stores/slot-store.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); async function transformSlotToStoreSlot(slot) { return { id: slot.id, deliveryTime: slot.deliveryTime, freezeTime: slot.freezeTime, isActive: slot.isActive, isCapacityFull: slot.isCapacityFull, products: slot.productSlots.map((productSlot) => ({ id: productSlot.product.id, name: productSlot.product.name, productQuantity: productSlot.product.productQuantity, shortDescription: productSlot.product.shortDescription, price: productSlot.product.price.toString(), marketPrice: productSlot.product.marketPrice?.toString() || null, unit: productSlot.product.unit?.shortNotation || null, images: scaffoldAssetUrl( productSlot.product.images || [] ), isOutOfStock: productSlot.product.isOutOfStock, storeId: productSlot.product.storeId, nextDeliveryDate: slot.deliveryTime })) }; } __name(transformSlotToStoreSlot, "transformSlotToStoreSlot"); function extractSlotInfo(slot) { return { id: slot.id, deliveryTime: slot.deliveryTime, freezeTime: slot.freezeTime, isCapacityFull: slot.isCapacityFull }; } __name(extractSlotInfo, "extractSlotInfo"); async function fetchAllTransformedSlots() { const slots = await getAllSlotsWithProductsForCache(); return Promise.all(slots.map(transformSlotToStoreSlot)); } __name(fetchAllTransformedSlots, "fetchAllTransformedSlots"); async function initializeSlotStore() { try { console.log("Initializing slot store in Redis..."); const slots = await getAllSlotsWithProductsForCache(); const slotsWithProducts = await Promise.all( slots.map(async (slot) => ({ id: slot.id, deliveryTime: slot.deliveryTime, freezeTime: slot.freezeTime, isActive: slot.isActive, isCapacityFull: slot.isCapacityFull, products: await Promise.all( slot.productSlots.map(async (productSlot) => ({ id: productSlot.product.id, name: productSlot.product.name, productQuantity: productSlot.product.productQuantity, shortDescription: productSlot.product.shortDescription, price: productSlot.product.price.toString(), marketPrice: productSlot.product.marketPrice?.toString() || null, unit: productSlot.product.unit?.shortNotation || null, images: scaffoldAssetUrl( productSlot.product.images || [] ), isOutOfStock: productSlot.product.isOutOfStock, storeId: productSlot.product.storeId, nextDeliveryDate: slot.deliveryTime })) ) })) ); const productSlotsMap = {}; for (const slot of slotsWithProducts) { for (const product of slot.products) { if (!productSlotsMap[product.id]) { productSlotsMap[product.id] = []; } productSlotsMap[product.id].push({ id: slot.id, deliveryTime: slot.deliveryTime, freezeTime: slot.freezeTime, isCapacityFull: slot.isCapacityFull }); } } console.log("Slot store initialized successfully"); } catch (error50) { console.error("Error initializing slot store:", error50); } } __name(initializeSlotStore, "initializeSlotStore"); async function getSlotById(slotId) { try { const slots = await getAllSlotsWithProductsForCache(); const slot = slots.find((s) => s.id === slotId); if (!slot) return null; return transformSlotToStoreSlot(slot); } catch (error50) { console.error(`Error getting slot ${slotId}:`, error50); return null; } } __name(getSlotById, "getSlotById"); async function getAllSlots() { try { return fetchAllTransformedSlots(); } catch (error50) { console.error("Error getting all slots:", error50); return []; } } __name(getAllSlots, "getAllSlots"); async function getMultipleProductsSlots(productIds) { try { if (productIds.length === 0) return {}; const slots = await getAllSlotsWithProductsForCache(); const productIdSet = new Set(productIds); const result = {}; for (const productId of productIds) { result[productId] = []; } for (const slot of slots) { const slotInfo = extractSlotInfo(slot); for (const productSlot of slot.productSlots) { const pid2 = productSlot.product.id; if (productIdSet.has(pid2) && !slot.isCapacityFull) { result[pid2].push(slotInfo); } } } return result; } catch (error50) { console.error("Error getting products slots:", error50); return {}; } } __name(getMultipleProductsSlots, "getMultipleProductsSlots"); // src/stores/banner-store.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); async function initializeBannerStore() { try { console.log("Initializing banner store in Redis..."); const banners = await getAllBannersForCache(); console.log("Banner store initialized successfully"); } catch (error50) { console.error("Error initializing banner store:", error50); } } __name(initializeBannerStore, "initializeBannerStore"); // src/lib/cloud_cache.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // src/trpc/apis/common-apis/common-trpc-index.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/@turf/turf/dist/esm/index.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/@turf/helpers/dist/esm/index.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var earthRadius = 63710088e-1; var factors = { centimeters: earthRadius * 100, centimetres: earthRadius * 100, degrees: 360 / (2 * Math.PI), feet: earthRadius * 3.28084, inches: earthRadius * 39.37, kilometers: earthRadius / 1e3, kilometres: earthRadius / 1e3, meters: earthRadius, metres: earthRadius, miles: earthRadius / 1609.344, millimeters: earthRadius * 1e3, millimetres: earthRadius * 1e3, nauticalmiles: earthRadius / 1852, radians: 1, yards: earthRadius * 1.0936 }; function feature(geom, properties, options = {}) { const feat = { type: "Feature" }; if (options.id === 0 || options.id) { feat.id = options.id; } if (options.bbox) { feat.bbox = options.bbox; } feat.properties = properties || {}; feat.geometry = geom; return feat; } __name(feature, "feature"); function point(coordinates, properties, options = {}) { if (!coordinates) { throw new Error("coordinates is required"); } if (!Array.isArray(coordinates)) { throw new Error("coordinates must be an Array"); } if (coordinates.length < 2) { throw new Error("coordinates must be at least 2 numbers long"); } if (!isNumber2(coordinates[0]) || !isNumber2(coordinates[1])) { throw new Error("coordinates must contain numbers"); } const geom = { type: "Point", coordinates }; return feature(geom, properties, options); } __name(point, "point"); function polygon(coordinates, properties, options = {}) { for (const ring of coordinates) { if (ring.length < 4) { throw new Error( "Each LinearRing of a Polygon must have 4 or more Positions." ); } if (ring[ring.length - 1].length !== ring[0].length) { throw new Error("First and last Position are not equivalent."); } for (let j = 0; j < ring[ring.length - 1].length; j++) { if (ring[ring.length - 1][j] !== ring[0][j]) { throw new Error("First and last Position are not equivalent."); } } } const geom = { type: "Polygon", coordinates }; return feature(geom, properties, options); } __name(polygon, "polygon"); function isNumber2(num) { return !isNaN(num) && num !== null && !Array.isArray(num); } __name(isNumber2, "isNumber"); // ../../node_modules/@turf/invariant/dist/esm/index.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); function getCoord(coord) { if (!coord) { throw new Error("coord is required"); } if (!Array.isArray(coord)) { if (coord.type === "Feature" && coord.geometry !== null && coord.geometry.type === "Point") { return [...coord.geometry.coordinates]; } if (coord.type === "Point") { return [...coord.coordinates]; } } if (Array.isArray(coord) && coord.length >= 2 && !Array.isArray(coord[0]) && !Array.isArray(coord[1])) { return [...coord]; } throw new Error("coord must be GeoJSON Point or an Array of numbers"); } __name(getCoord, "getCoord"); function getGeom(geojson) { if (geojson.type === "Feature") { return geojson.geometry; } return geojson; } __name(getGeom, "getGeom"); // ../../node_modules/@turf/boolean-point-in-polygon/dist/esm/index.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/point-in-polygon-hao/dist/esm/index.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/robust-predicates/index.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/robust-predicates/esm/orient2d.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/robust-predicates/esm/util.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var epsilon = 11102230246251565e-32; var splitter = 134217729; var resulterrbound = (3 + 8 * epsilon) * epsilon; function sum(elen, e, flen, f, h) { let Q, Qnew, hh, bvirt; let enow = e[0]; let fnow = f[0]; let eindex = 0; let findex = 0; if (fnow > enow === fnow > -enow) { Q = enow; enow = e[++eindex]; } else { Q = fnow; fnow = f[++findex]; } let hindex = 0; if (eindex < elen && findex < flen) { if (fnow > enow === fnow > -enow) { Qnew = enow + Q; hh = Q - (Qnew - enow); enow = e[++eindex]; } else { Qnew = fnow + Q; hh = Q - (Qnew - fnow); fnow = f[++findex]; } Q = Qnew; if (hh !== 0) { h[hindex++] = hh; } while (eindex < elen && findex < flen) { if (fnow > enow === fnow > -enow) { Qnew = Q + enow; bvirt = Qnew - Q; hh = Q - (Qnew - bvirt) + (enow - bvirt); enow = e[++eindex]; } else { Qnew = Q + fnow; bvirt = Qnew - Q; hh = Q - (Qnew - bvirt) + (fnow - bvirt); fnow = f[++findex]; } Q = Qnew; if (hh !== 0) { h[hindex++] = hh; } } } while (eindex < elen) { Qnew = Q + enow; bvirt = Qnew - Q; hh = Q - (Qnew - bvirt) + (enow - bvirt); enow = e[++eindex]; Q = Qnew; if (hh !== 0) { h[hindex++] = hh; } } while (findex < flen) { Qnew = Q + fnow; bvirt = Qnew - Q; hh = Q - (Qnew - bvirt) + (fnow - bvirt); fnow = f[++findex]; Q = Qnew; if (hh !== 0) { h[hindex++] = hh; } } if (Q !== 0 || hindex === 0) { h[hindex++] = Q; } return hindex; } __name(sum, "sum"); function estimate(elen, e) { let Q = e[0]; for (let i = 1; i < elen; i++) Q += e[i]; return Q; } __name(estimate, "estimate"); function vec(n) { return new Float64Array(n); } __name(vec, "vec"); // ../../node_modules/robust-predicates/esm/orient2d.js var ccwerrboundA = (3 + 16 * epsilon) * epsilon; var ccwerrboundB = (2 + 12 * epsilon) * epsilon; var ccwerrboundC = (9 + 64 * epsilon) * epsilon * epsilon; var B = vec(4); var C12 = vec(8); var C2 = vec(12); var D = vec(16); var u = vec(4); function orient2dadapt(ax, ay, bx, by, cx, cy, detsum) { let acxtail, acytail, bcxtail, bcytail; let bvirt, c, ahi, alo, bhi, blo, _i2, _j, _0, s1, s0, t12, t02, u32; const acx = ax - cx; const bcx = bx - cx; const acy = ay - cy; const bcy = by - cy; s1 = acx * bcy; c = splitter * acx; ahi = c - (c - acx); alo = acx - ahi; c = splitter * bcy; bhi = c - (c - bcy); blo = bcy - bhi; s0 = alo * blo - (s1 - ahi * bhi - alo * bhi - ahi * blo); t12 = acy * bcx; c = splitter * acy; ahi = c - (c - acy); alo = acy - ahi; c = splitter * bcx; bhi = c - (c - bcx); blo = bcx - bhi; t02 = alo * blo - (t12 - ahi * bhi - alo * bhi - ahi * blo); _i2 = s0 - t02; bvirt = s0 - _i2; B[0] = s0 - (_i2 + bvirt) + (bvirt - t02); _j = s1 + _i2; bvirt = _j - s1; _0 = s1 - (_j - bvirt) + (_i2 - bvirt); _i2 = _0 - t12; bvirt = _0 - _i2; B[1] = _0 - (_i2 + bvirt) + (bvirt - t12); u32 = _j + _i2; bvirt = u32 - _j; B[2] = _j - (u32 - bvirt) + (_i2 - bvirt); B[3] = u32; let det = estimate(4, B); let errbound = ccwerrboundB * detsum; if (det >= errbound || -det >= errbound) { return det; } bvirt = ax - acx; acxtail = ax - (acx + bvirt) + (bvirt - cx); bvirt = bx - bcx; bcxtail = bx - (bcx + bvirt) + (bvirt - cx); bvirt = ay - acy; acytail = ay - (acy + bvirt) + (bvirt - cy); bvirt = by - bcy; bcytail = by - (bcy + bvirt) + (bvirt - cy); if (acxtail === 0 && acytail === 0 && bcxtail === 0 && bcytail === 0) { return det; } errbound = ccwerrboundC * detsum + resulterrbound * Math.abs(det); det += acx * bcytail + bcy * acxtail - (acy * bcxtail + bcx * acytail); if (det >= errbound || -det >= errbound) return det; s1 = acxtail * bcy; c = splitter * acxtail; ahi = c - (c - acxtail); alo = acxtail - ahi; c = splitter * bcy; bhi = c - (c - bcy); blo = bcy - bhi; s0 = alo * blo - (s1 - ahi * bhi - alo * bhi - ahi * blo); t12 = acytail * bcx; c = splitter * acytail; ahi = c - (c - acytail); alo = acytail - ahi; c = splitter * bcx; bhi = c - (c - bcx); blo = bcx - bhi; t02 = alo * blo - (t12 - ahi * bhi - alo * bhi - ahi * blo); _i2 = s0 - t02; bvirt = s0 - _i2; u[0] = s0 - (_i2 + bvirt) + (bvirt - t02); _j = s1 + _i2; bvirt = _j - s1; _0 = s1 - (_j - bvirt) + (_i2 - bvirt); _i2 = _0 - t12; bvirt = _0 - _i2; u[1] = _0 - (_i2 + bvirt) + (bvirt - t12); u32 = _j + _i2; bvirt = u32 - _j; u[2] = _j - (u32 - bvirt) + (_i2 - bvirt); u[3] = u32; const C1len = sum(4, B, 4, u, C12); s1 = acx * bcytail; c = splitter * acx; ahi = c - (c - acx); alo = acx - ahi; c = splitter * bcytail; bhi = c - (c - bcytail); blo = bcytail - bhi; s0 = alo * blo - (s1 - ahi * bhi - alo * bhi - ahi * blo); t12 = acy * bcxtail; c = splitter * acy; ahi = c - (c - acy); alo = acy - ahi; c = splitter * bcxtail; bhi = c - (c - bcxtail); blo = bcxtail - bhi; t02 = alo * blo - (t12 - ahi * bhi - alo * bhi - ahi * blo); _i2 = s0 - t02; bvirt = s0 - _i2; u[0] = s0 - (_i2 + bvirt) + (bvirt - t02); _j = s1 + _i2; bvirt = _j - s1; _0 = s1 - (_j - bvirt) + (_i2 - bvirt); _i2 = _0 - t12; bvirt = _0 - _i2; u[1] = _0 - (_i2 + bvirt) + (bvirt - t12); u32 = _j + _i2; bvirt = u32 - _j; u[2] = _j - (u32 - bvirt) + (_i2 - bvirt); u[3] = u32; const C2len = sum(C1len, C12, 4, u, C2); s1 = acxtail * bcytail; c = splitter * acxtail; ahi = c - (c - acxtail); alo = acxtail - ahi; c = splitter * bcytail; bhi = c - (c - bcytail); blo = bcytail - bhi; s0 = alo * blo - (s1 - ahi * bhi - alo * bhi - ahi * blo); t12 = acytail * bcxtail; c = splitter * acytail; ahi = c - (c - acytail); alo = acytail - ahi; c = splitter * bcxtail; bhi = c - (c - bcxtail); blo = bcxtail - bhi; t02 = alo * blo - (t12 - ahi * bhi - alo * bhi - ahi * blo); _i2 = s0 - t02; bvirt = s0 - _i2; u[0] = s0 - (_i2 + bvirt) + (bvirt - t02); _j = s1 + _i2; bvirt = _j - s1; _0 = s1 - (_j - bvirt) + (_i2 - bvirt); _i2 = _0 - t12; bvirt = _0 - _i2; u[1] = _0 - (_i2 + bvirt) + (bvirt - t12); u32 = _j + _i2; bvirt = u32 - _j; u[2] = _j - (u32 - bvirt) + (_i2 - bvirt); u[3] = u32; const Dlen = sum(C2len, C2, 4, u, D); return D[Dlen - 1]; } __name(orient2dadapt, "orient2dadapt"); function orient2d(ax, ay, bx, by, cx, cy) { const detleft = (ay - cy) * (bx - cx); const detright = (ax - cx) * (by - cy); const det = detleft - detright; const detsum = Math.abs(detleft + detright); if (Math.abs(det) >= ccwerrboundA * detsum) return det; return -orient2dadapt(ax, ay, bx, by, cx, cy, detsum); } __name(orient2d, "orient2d"); // ../../node_modules/robust-predicates/esm/orient3d.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var o3derrboundA = (7 + 56 * epsilon) * epsilon; var o3derrboundB = (3 + 28 * epsilon) * epsilon; var o3derrboundC = (26 + 288 * epsilon) * epsilon * epsilon; var bc = vec(4); var ca = vec(4); var ab = vec(4); var at_b = vec(4); var at_c = vec(4); var bt_c = vec(4); var bt_a = vec(4); var ct_a = vec(4); var ct_b = vec(4); var bct = vec(8); var cat = vec(8); var abt = vec(8); var u2 = vec(4); var _8 = vec(8); var _8b = vec(8); var _16 = vec(8); var _12 = vec(12); var fin = vec(192); var fin2 = vec(192); // ../../node_modules/robust-predicates/esm/incircle.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var iccerrboundA = (10 + 96 * epsilon) * epsilon; var iccerrboundB = (4 + 48 * epsilon) * epsilon; var iccerrboundC = (44 + 576 * epsilon) * epsilon * epsilon; var bc2 = vec(4); var ca2 = vec(4); var ab2 = vec(4); var aa = vec(4); var bb = vec(4); var cc = vec(4); var u3 = vec(4); var v = vec(4); var axtbc = vec(8); var aytbc = vec(8); var bxtca = vec(8); var bytca = vec(8); var cxtab = vec(8); var cytab = vec(8); var abt2 = vec(8); var bct2 = vec(8); var cat2 = vec(8); var abtt = vec(4); var bctt = vec(4); var catt = vec(4); var _82 = vec(8); var _162 = vec(16); var _16b = vec(16); var _16c = vec(16); var _32 = vec(32); var _32b = vec(32); var _48 = vec(48); var _64 = vec(64); var fin3 = vec(1152); var fin22 = vec(1152); // ../../node_modules/robust-predicates/esm/insphere.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var isperrboundA = (16 + 224 * epsilon) * epsilon; var isperrboundB = (5 + 72 * epsilon) * epsilon; var isperrboundC = (71 + 1408 * epsilon) * epsilon * epsilon; var ab3 = vec(4); var bc3 = vec(4); var cd = vec(4); var de = vec(4); var ea = vec(4); var ac = vec(4); var bd = vec(4); var ce = vec(4); var da = vec(4); var eb = vec(4); var abc = vec(24); var bcd = vec(24); var cde = vec(24); var dea = vec(24); var eab = vec(24); var abd = vec(24); var bce = vec(24); var cda = vec(24); var deb = vec(24); var eac = vec(24); var adet = vec(1152); var bdet = vec(1152); var cdet = vec(1152); var ddet = vec(1152); var edet = vec(1152); var abdet = vec(2304); var cddet = vec(2304); var cdedet = vec(3456); var deter = vec(5760); var _83 = vec(8); var _8b2 = vec(8); var _8c = vec(8); var _163 = vec(16); var _24 = vec(24); var _482 = vec(48); var _48b = vec(48); var _96 = vec(96); var _192 = vec(192); var _384x = vec(384); var _384y = vec(384); var _384z = vec(384); var _768 = vec(768); var xdet = vec(96); var ydet = vec(96); var zdet = vec(96); var fin4 = vec(1152); // ../../node_modules/point-in-polygon-hao/dist/esm/index.js function pointInPolygon(p, polygon3) { var i; var ii; var k = 0; var f; var u1; var v1; var u22; var v2; var currentP; var nextP; var x = p[0]; var y = p[1]; var numContours = polygon3.length; for (i = 0; i < numContours; i++) { ii = 0; var contour = polygon3[i]; var contourLen = contour.length - 1; currentP = contour[0]; if (currentP[0] !== contour[contourLen][0] && currentP[1] !== contour[contourLen][1]) { throw new Error("First and last coordinates in a ring must be the same"); } u1 = currentP[0] - x; v1 = currentP[1] - y; for (ii; ii < contourLen; ii++) { nextP = contour[ii + 1]; u22 = nextP[0] - x; v2 = nextP[1] - y; if (v1 === 0 && v2 === 0) { if (u22 <= 0 && u1 >= 0 || u1 <= 0 && u22 >= 0) { return 0; } } else if (v2 >= 0 && v1 <= 0 || v2 <= 0 && v1 >= 0) { f = orient2d(u1, u22, v1, v2, 0, 0); if (f === 0) { return 0; } if (f > 0 && v2 > 0 && v1 <= 0 || f < 0 && v2 <= 0 && v1 > 0) { k++; } } currentP = nextP; v1 = v2; u1 = u22; } } if (k % 2 === 0) { return false; } return true; } __name(pointInPolygon, "pointInPolygon"); // ../../node_modules/@turf/boolean-point-in-polygon/dist/esm/index.js function booleanPointInPolygon(point2, polygon3, options = {}) { if (!point2) { throw new Error("point is required"); } if (!polygon3) { throw new Error("polygon is required"); } const pt = getCoord(point2); const geom = getGeom(polygon3); const type = geom.type; const bbox = polygon3.bbox; let polys = geom.coordinates; if (bbox && inBBox(pt, bbox) === false) { return false; } if (type === "Polygon") { polys = [polys]; } let result = false; for (var i = 0; i < polys.length; ++i) { const polyResult = pointInPolygon(pt, polys[i]); if (polyResult === 0) return options.ignoreBoundary ? false : true; else if (polyResult) result = true; } return result; } __name(booleanPointInPolygon, "booleanPointInPolygon"); function inBBox(pt, bbox) { return bbox[0] <= pt[0] && bbox[1] <= pt[1] && bbox[2] >= pt[0] && bbox[3] >= pt[1]; } __name(inBBox, "inBBox"); // src/lib/mbnr-geojson.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var mbnrGeoJson = { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "coordinates": [ [ [ 78.0540565157155, 16.750355644371382 ], [ 78.02147549424018, 16.72066473405593 ], [ 78.03026125246384, 16.71696749930787 ], [ 78.0438058450269, 16.72191442229257 ], [ 78.01378723066603, 16.729427120762438 ], [ 78.01192390645633, 16.767270033080678 ], [ 77.98897480599248, 16.78383139678816 ], [ 77.98650506846502, 16.779477610410623 ], [ 77.99211289459566, 16.764294442899583 ], [ 77.9917733766166, 16.760247911187193 ], [ 77.9871626670851, 16.762487176781022 ], [ 77.98216269568468, 16.762520539253813 ], [ 77.9728079653313, 16.75895746646411 ], [ 77.97076993211158, 16.749241850772236 ], [ 77.97290869571145, 16.714289841456335 ], [ 77.98673742913684, 16.716189282573396 ], [ 78.00286970994557, 16.718191131206893 ], [ 78.02757966423519, 16.720603921728966 ], [ 78.01653780770818, 16.73184590223127 ], [ 78.0064695230268, 16.760236966033375 ], [ 78.0148831108591, 16.760801801995825 ], [ 78.01488756695255, 16.75827980335133 ], [ 78.0244311364159, 16.744778942163208 ], [ 78.03342267256608, 16.760773251410058 ], [ 78.05078586709863, 16.763902127913653 ], [ 78.0540565157155, 16.750355644371382 ] ] ], "type": "Polygon" } } ] }; // src/trpc/apis/common-apis/common-trpc-index.ts var polygon2 = polygon(mbnrGeoJson.features[0].geometry.coordinates); async function scaffoldEssentialConsts() { const consts = await getAllConstValues(); return { freeDeliveryThreshold: consts[CONST_KEYS.freeDeliveryThreshold] ?? 200, deliveryCharge: consts[CONST_KEYS.deliveryCharge] ?? 0, flashFreeDeliveryThreshold: consts[CONST_KEYS.flashFreeDeliveryThreshold] ?? 500, flashDeliveryCharge: consts[CONST_KEYS.flashDeliveryCharge] ?? 69, popularItems: consts[CONST_KEYS.popularItems] ?? "5,3,2,4,1", versionNum: consts[CONST_KEYS.versionNum] ?? "1.1.0", playStoreUrl: consts[CONST_KEYS.playStoreUrl] ?? "https://play.google.com/store/apps/details?id=in.freshyo.app", appStoreUrl: consts[CONST_KEYS.appStoreUrl] ?? "https://apps.apple.com/in/app/freshyo/id6756889077", webViewHtml: null, isWebviewClosable: true, isFlashDeliveryEnabled: consts[CONST_KEYS.isFlashDeliveryEnabled] ?? true, supportMobile: consts[CONST_KEYS.supportMobile] ?? "", supportEmail: consts[CONST_KEYS.supportEmail] ?? "", assetsDomain, apiCacheKey }; } __name(scaffoldEssentialConsts, "scaffoldEssentialConsts"); var commonApiRouter = router2({ product: commonRouter, getStoresSummary: publicProcedure.query(async () => { const stores = await getStoresSummary(); return { stores }; }), checkLocationInPolygon: publicProcedure.input(external_exports.object({ lat: external_exports.number().min(-90).max(90), lng: external_exports.number().min(-180).max(180) })).query(({ input }) => { try { const { lat, lng } = input; const point2 = point([lng, lat]); const isInside = booleanPointInPolygon(point2, polygon2); return { isInside }; } catch (error50) { throw new Error("Invalid coordinates or polygon data"); } }), generateUploadUrls: protectedProcedure.input(external_exports.object({ contextString: external_exports.enum(["review", "review_response", "product_info", "notification", "store", "complaint", "profile", "tags"]), mimeTypes: external_exports.array(external_exports.string()) })).mutation(async ({ input }) => { const { contextString, mimeTypes } = input; const uploadUrls = []; const keys = []; for (const mimeType of mimeTypes) { let folder; if (contextString === "review") { folder = "review-images"; } else if (contextString === "product_info") { folder = "product-images"; } else if (contextString === "store") { folder = "store-images"; } else if (contextString === "review_response") { folder = "review-response-images"; } else if (contextString === "complaint") { folder = "complaint-images"; } else if (contextString === "profile") { folder = "profile-images"; } else if (contextString === "tags") { folder = "tags"; } else { folder = ""; } const extension = mimeType === "image/jpeg" ? ".jpg" : mimeType === "image/png" ? ".png" : mimeType === "image/gif" ? ".gif" : ".jpg"; const key = `${folder}/${Date.now()}${extension}`; try { const uploadUrl = await generateUploadUrl(key, mimeType); uploadUrls.push(uploadUrl); keys.push(key); } catch (error50) { console.error("Error generating upload URL:", error50); throw new ApiError("Failed to generate upload URL", 500); } } return { uploadUrls }; }), healthCheck: publicProcedure.query(async () => { const result = await healthCheck(); return result; }), essentialConsts: publicProcedure.query(async () => { const response = await scaffoldEssentialConsts(); return response; }) }); // src/trpc/apis/user-apis/apis/stores.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); async function scaffoldStores() { const storesData = await getStoreSummaries(); const storesWithDetails = storesData.map((store) => { const signedImageUrl = store.imageUrl ? scaffoldAssetUrl(store.imageUrl) : null; const sampleProducts = store.sampleProducts.map((product) => ({ id: product.id, name: product.name, signedImageUrl: product.images && product.images.length > 0 ? scaffoldAssetUrl(product.images[0]) : null })); return { id: store.id, name: store.name, description: store.description, signedImageUrl, productCount: store.productCount, sampleProducts }; }); return { stores: storesWithDetails }; } __name(scaffoldStores, "scaffoldStores"); async function scaffoldStoreWithProducts(storeId) { const storeDetail = await getStoreDetail(storeId); if (!storeDetail) { throw new ApiError("Store not found", 404); } const signedImageUrl = storeDetail.store.imageUrl ? scaffoldAssetUrl(storeDetail.store.imageUrl) : null; const productsWithSignedUrls = storeDetail.products.map((product) => ({ id: product.id, name: product.name, shortDescription: product.shortDescription, price: product.price, marketPrice: product.marketPrice, incrementStep: product.incrementStep, unit: product.unit, unitNotation: product.unitNotation, images: scaffoldAssetUrl(product.images || []), isOutOfStock: product.isOutOfStock, productQuantity: product.productQuantity })); const tags = await getTagsByStoreId(storeId); return { store: { id: storeDetail.store.id, name: storeDetail.store.name, description: storeDetail.store.description, signedImageUrl }, products: productsWithSignedUrls, tags: tags.map((tag2) => ({ id: tag2.id, tagName: tag2.tagName, tagDescription: tag2.tagDescription, imageUrl: tag2.imageUrl, productIds: tag2.productIds })) }; } __name(scaffoldStoreWithProducts, "scaffoldStoreWithProducts"); var storesRouter = router2({ getStores: publicProcedure.query(async () => { const response = await scaffoldStores(); return response; }), getStoreWithProducts: publicProcedure.input(external_exports.object({ storeId: external_exports.number() })).query(async ({ input }) => { const { storeId } = input; const response = await scaffoldStoreWithProducts(storeId); return response; }) }); // src/trpc/apis/user-apis/apis/slots.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var import_dayjs3 = __toESM(require_dayjs_min()); async function getSlotData(slotId) { const slot = await getSlotById(slotId); if (!slot) { return null; } const currentTime = /* @__PURE__ */ new Date(); if ((0, import_dayjs3.default)(slot.freezeTime).isBefore(currentTime)) { return null; } return { deliveryTime: slot.deliveryTime, freezeTime: slot.freezeTime, slotId: slot.id, products: slot.products.filter((product) => !product.isOutOfStock) }; } __name(getSlotData, "getSlotData"); async function scaffoldSlotsWithProducts() { const allSlots = await getAllSlots(); const currentTime = /* @__PURE__ */ new Date(); const validSlots = allSlots.filter((slot) => { return (0, import_dayjs3.default)(slot.freezeTime).isAfter(currentTime) && (0, import_dayjs3.default)(slot.deliveryTime).isAfter(currentTime) && !slot.isCapacityFull; }).sort((a, b) => (0, import_dayjs3.default)(a.deliveryTime).valueOf() - (0, import_dayjs3.default)(b.deliveryTime).valueOf()); const productAvailability = await getProductAvailability(); return { slots: validSlots, productAvailability, count: validSlots.length }; } __name(scaffoldSlotsWithProducts, "scaffoldSlotsWithProducts"); var slotsRouter = router2({ getSlots: publicProcedure.query(async () => { const slots = await getActiveSlotsList(); return { slots, count: slots.length }; }), getSlotsWithProducts: publicProcedure.query(async () => { const response = await scaffoldSlotsWithProducts(); return response; }), getSlotById: publicProcedure.input(external_exports.object({ slotId: external_exports.number() })).query(async ({ input }) => { return await getSlotData(input.slotId); }) }); // src/trpc/apis/user-apis/apis/banners.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); async function scaffoldBanners() { const banners = await getActiveBanners(); const bannersWithSignedUrls = banners.map((banner) => ({ ...banner, imageUrl: banner.imageUrl ? scaffoldAssetUrl(banner.imageUrl) : banner.imageUrl })); return { banners: bannersWithSignedUrls }; } __name(scaffoldBanners, "scaffoldBanners"); var bannerRouter = router2({ getBanners: publicProcedure.query(async () => { const response = await scaffoldBanners(); return response; }) }); // ../../packages/shared/index.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../packages/shared/types/index.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../packages/shared/index.ts var CACHE_FILENAMES = { products: "products.json", stores: "stores.json", slots: "slots.json", essentialConsts: "essential-consts.json", banners: "banners.json" }; // src/lib/retry.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); async function retryWithExponentialBackoff(fn, maxRetries = 3, delayMs = 1e3) { let lastError; for (let attempt = 1; attempt <= maxRetries; attempt++) { try { return await fn(); } catch (error50) { lastError = error50 instanceof Error ? error50 : new Error(String(error50)); if (attempt < maxRetries) { console.log(`Attempt ${attempt} failed, retrying in ${delayMs}ms...`); await new Promise((resolve) => setTimeout(resolve, delayMs)); delayMs *= 2; } } } throw lastError; } __name(retryWithExponentialBackoff, "retryWithExponentialBackoff"); // src/lib/cloud_cache.ts function constructCacheUrl(path3) { return `${assetsDomain}${apiCacheKey}/${path3}`; } __name(constructCacheUrl, "constructCacheUrl"); async function createAllCacheFiles() { console.log("Starting creation of all cache files..."); const [ productsKey, essentialConstsKey, storesKey, slotsKey, bannersKey, individualStoreKeys ] = await Promise.all([ createProductsFileInternal(), createEssentialConstsFileInternal(), createStoresFileInternal(), createSlotsFileInternal(), createBannersFileInternal(), createAllStoresFilesInternal() ]); const urls = [ constructCacheUrl(CACHE_FILENAMES.products), constructCacheUrl(CACHE_FILENAMES.essentialConsts), constructCacheUrl(CACHE_FILENAMES.stores), constructCacheUrl(CACHE_FILENAMES.slots), constructCacheUrl(CACHE_FILENAMES.banners), ...individualStoreKeys.map((_, index) => constructCacheUrl(`stores/${index + 1}.json`)) ]; try { await retryWithExponentialBackoff(() => clearUrlCache(urls)); console.log(`Cache purged for all ${urls.length} files`); } catch (error50) { console.error(`Failed to purge cache for all files after 3 retries`, error50); } console.log("All cache files created successfully"); return { products: productsKey, essentialConsts: essentialConstsKey, stores: storesKey, slots: slotsKey, banners: bannersKey, individualStores: individualStoreKeys }; } __name(createAllCacheFiles, "createAllCacheFiles"); async function createProductsFileInternal() { const productsData = await scaffoldProducts(); const jsonContent = JSON.stringify(productsData, null, 2); const buffer = Buffer.from(jsonContent, "utf-8"); return await imageUploadS3(buffer, "application/json", `${apiCacheKey}/${CACHE_FILENAMES.products}`); } __name(createProductsFileInternal, "createProductsFileInternal"); async function createEssentialConstsFileInternal() { const essentialConstsData = await scaffoldEssentialConsts(); const jsonContent = JSON.stringify(essentialConstsData, null, 2); const buffer = Buffer.from(jsonContent, "utf-8"); return await imageUploadS3(buffer, "application/json", `${apiCacheKey}/${CACHE_FILENAMES.essentialConsts}`); } __name(createEssentialConstsFileInternal, "createEssentialConstsFileInternal"); async function createStoresFileInternal() { const storesData = await scaffoldStores(); const jsonContent = JSON.stringify(storesData, null, 2); const buffer = Buffer.from(jsonContent, "utf-8"); return await imageUploadS3(buffer, "application/json", `${apiCacheKey}/${CACHE_FILENAMES.stores}`); } __name(createStoresFileInternal, "createStoresFileInternal"); async function createSlotsFileInternal() { const slotsData = await scaffoldSlotsWithProducts(); const jsonContent = JSON.stringify(slotsData, null, 2); const buffer = Buffer.from(jsonContent, "utf-8"); return await imageUploadS3(buffer, "application/json", `${apiCacheKey}/${CACHE_FILENAMES.slots}`); } __name(createSlotsFileInternal, "createSlotsFileInternal"); async function createBannersFileInternal() { const bannersData = await scaffoldBanners(); const jsonContent = JSON.stringify(bannersData, null, 2); const buffer = Buffer.from(jsonContent, "utf-8"); return await imageUploadS3(buffer, "application/json", `${apiCacheKey}/${CACHE_FILENAMES.banners}`); } __name(createBannersFileInternal, "createBannersFileInternal"); async function createAllStoresFilesInternal() { const stores = await getStoresSummary(); const results = []; for (const store of stores) { const storeData = await scaffoldStoreWithProducts(store.id); const jsonContent = JSON.stringify(storeData, null, 2); const buffer = Buffer.from(jsonContent, "utf-8"); const s3Key = await imageUploadS3(buffer, "application/json", `${apiCacheKey}/stores/${store.id}.json`); results.push(s3Key); } console.log(`Created ${results.length} store cache files`); return results; } __name(createAllStoresFilesInternal, "createAllStoresFilesInternal"); async function clearUrlCache(urls) { if (!cloudflareApiToken || !cloudflareZoneId) { console.warn("Cloudflare credentials not configured, skipping cache clear"); return { success: false, errors: ["Cloudflare credentials not configured"] }; } try { const response = await axios_default.post( `https://api.cloudflare.com/client/v4/zones/${cloudflareZoneId}/purge_cache`, { files: urls }, { headers: { "Authorization": `Bearer ${cloudflareApiToken}`, "Content-Type": "application/json" } } ); const result = response.data; if (!result.success) { const errorMessages = result.errors?.map((e) => e.message) || ["Unknown error"]; console.error(`Cloudflare cache purge failed for URLs: ${urls.join(", ")}`, errorMessages); return { success: false, errors: errorMessages }; } console.log(`Successfully purged ${urls.length} URLs from Cloudflare cache: ${urls.join(", ")}`); return { success: true }; } catch (error50) { console.log(error50); const errorMessage = error50 instanceof Error ? error50.message : "Unknown error"; console.error(`Error clearing Cloudflare cache for URLs: ${urls.join(", ")}`, errorMessage); return { success: false, errors: [errorMessage] }; } } __name(clearUrlCache, "clearUrlCache"); // src/stores/store-initializer.ts var STORE_INIT_DELAY_MS = 3 * 60 * 1e3; var storeInitializationTimeout = null; var initializeAllStores = /* @__PURE__ */ __name(async () => { try { console.log("Starting application stores initialization..."); await Promise.all([ roles_manager_default.fetchRoles(), computeConstants(), initializeProducts(), initializeProductTagStore(), initializeSlotStore(), initializeBannerStore() ]); console.log("All application stores initialized successfully"); createAllCacheFiles().catch((error50) => { console.error("Failed to regenerate cache files during store initialization:", error50); }); } catch (error50) { console.error("Application stores initialization failed:", error50); throw error50; } }, "initializeAllStores"); var scheduleStoreInitialization = /* @__PURE__ */ __name(() => { if (storeInitializationTimeout) { clearTimeout(storeInitializationTimeout); storeInitializationTimeout = null; } storeInitializationTimeout = setTimeout(() => { storeInitializationTimeout = null; initializeAllStores().catch((error50) => { console.error("Scheduled store initialization failed:", error50); }); }, STORE_INIT_DELAY_MS); }, "scheduleStoreInitialization"); // src/trpc/apis/admin-apis/apis/slots.ts var cachedSequenceSchema = external_exports.record(external_exports.string(), external_exports.array(external_exports.number())); var createSlotSchema = external_exports.object({ deliveryTime: external_exports.string(), freezeTime: external_exports.string(), isActive: external_exports.boolean().optional(), productIds: external_exports.array(external_exports.number()).optional(), vendorSnippets: external_exports.array(external_exports.object({ name: external_exports.string().min(1), productIds: external_exports.array(external_exports.number().int().positive()).min(1), validTill: external_exports.string().optional() })).optional(), groupIds: external_exports.array(external_exports.number()).optional() }); var getSlotByIdSchema = external_exports.object({ id: external_exports.number() }); var updateSlotSchema = external_exports.object({ id: external_exports.number(), deliveryTime: external_exports.string(), freezeTime: external_exports.string(), isActive: external_exports.boolean().optional(), productIds: external_exports.array(external_exports.number()).optional(), vendorSnippets: external_exports.array(external_exports.object({ name: external_exports.string().min(1), productIds: external_exports.array(external_exports.number().int().positive()).min(1), validTill: external_exports.string().optional() })).optional(), groupIds: external_exports.array(external_exports.number()).optional() }); var deleteSlotSchema = external_exports.object({ id: external_exports.number() }); var getDeliverySequenceSchema = external_exports.object({ id: external_exports.string() }); var updateDeliverySequenceSchema = external_exports.object({ id: external_exports.number(), // deliverySequence: z.array(z.number()), deliverySequence: external_exports.any() }); var slotsRouter2 = router2({ // Exact replica of GET /av/slots getAll: protectedProcedure.query(async ({ ctx }) => { if (!ctx.staffUser?.id) { throw new TRPCError({ code: "UNAUTHORIZED", message: "Access denied" }); } const slots = await getActiveSlotsWithProducts(); return { slots, count: slots.length }; }), // Exact replica of POST /av/products/slots/product-ids getSlotsProductIds: protectedProcedure.input(external_exports.object({ slotIds: external_exports.array(external_exports.number()) })).query(async ({ input, ctx }) => { if (!ctx.staffUser?.id) { throw new TRPCError({ code: "UNAUTHORIZED", message: "Access denied" }); } const { slotIds } = input; if (!Array.isArray(slotIds)) { throw new TRPCError({ code: "BAD_REQUEST", message: "slotIds must be an array" }); } const result = await getSlotsProductIds(slotIds); return result; }), // Exact replica of PUT /av/products/slots/:slotId/products updateSlotProducts: protectedProcedure.input( external_exports.object({ slotId: external_exports.number(), productIds: external_exports.array(external_exports.number()) }) ).mutation(async ({ input, ctx }) => { if (!ctx.staffUser?.id) { throw new TRPCError({ code: "UNAUTHORIZED", message: "Access denied" }); } const { slotId, productIds } = input; if (!Array.isArray(productIds)) { throw new TRPCError({ code: "BAD_REQUEST", message: "productIds must be an array" }); } const result = await updateSlotProducts(String(slotId), productIds.map(String)); scheduleStoreInitialization(); return { message: result.message, added: result.added, removed: result.removed }; }), createSlot: protectedProcedure.input(createSlotSchema).mutation(async ({ input, ctx }) => { if (!ctx.staffUser?.id) { throw new TRPCError({ code: "UNAUTHORIZED", message: "Access denied" }); } const { deliveryTime, freezeTime, isActive, productIds, vendorSnippets: snippets, groupIds } = input; if (!deliveryTime || !freezeTime) { throw new ApiError("Delivery time and orders close time are required", 400); } const result = await createSlotWithRelations({ deliveryTime, freezeTime, isActive, productIds, vendorSnippets: snippets, groupIds }); scheduleStoreInitialization(); return result; }), getSlots: protectedProcedure.query(async ({ ctx }) => { if (!ctx.staffUser?.id) { throw new TRPCError({ code: "UNAUTHORIZED", message: "Access denied" }); } const slots = await getActiveSlots(); return { slots, count: slots.length }; }), getSlotById: protectedProcedure.input(getSlotByIdSchema).query(async ({ input, ctx }) => { if (!ctx.staffUser?.id) { throw new TRPCError({ code: "UNAUTHORIZED", message: "Access denied" }); } const { id } = input; const slot = await getSlotByIdWithRelations(id); if (!slot) { throw new ApiError("Slot not found", 404); } return { slot: { ...slot, vendorSnippets: slot.vendorSnippets.map((snippet) => ({ ...snippet, accessUrl: `${appUrl}/vendor-order-list?id=${snippet.snippetCode}` })) } }; }), updateSlot: protectedProcedure.input(updateSlotSchema).mutation(async ({ input, ctx }) => { if (!ctx.staffUser?.id) { throw new TRPCError({ code: "UNAUTHORIZED", message: "Access denied" }); } try { const { id, deliveryTime, freezeTime, isActive, productIds, vendorSnippets: snippets, groupIds } = input; if (!deliveryTime || !freezeTime) { throw new ApiError("Delivery time and orders close time are required", 400); } const result = await updateSlotWithRelations({ id, deliveryTime, freezeTime, isActive, productIds, vendorSnippets: snippets, groupIds }); if (!result) { throw new ApiError("Slot not found", 404); } scheduleStoreInitialization(); return result; } catch (e) { console.log(e); throw new ApiError("Unable to Update Slot"); } }), deleteSlot: protectedProcedure.input(deleteSlotSchema).mutation(async ({ input, ctx }) => { if (!ctx.staffUser?.id) { throw new TRPCError({ code: "UNAUTHORIZED", message: "Access denied" }); } const { id } = input; const deletedSlot = await deleteSlotById(id); if (!deletedSlot) { throw new ApiError("Slot not found", 404); } scheduleStoreInitialization(); return { message: "Slot deleted successfully" }; }), getDeliverySequence: protectedProcedure.input(getDeliverySequenceSchema).query(async ({ input, ctx }) => { const { id } = input; const slotId = parseInt(id); const slot = await getSlotDeliverySequence(slotId); if (!slot) { throw new ApiError("Slot not found", 404); } const sequence = slot.deliverySequence || {}; return { deliverySequence: sequence }; }), updateDeliverySequence: protectedProcedure.input(updateDeliverySequenceSchema).mutation(async ({ input, ctx }) => { if (!ctx.staffUser?.id) { throw new TRPCError({ code: "UNAUTHORIZED", message: "Access denied" }); } const { id, deliverySequence } = input; const updatedSlot = await updateSlotDeliverySequence(id, deliverySequence); if (!updatedSlot) { throw new ApiError("Slot not found", 404); } return { slot: updatedSlot, message: "Delivery sequence updated successfully" }; }), updateSlotCapacity: protectedProcedure.input(external_exports.object({ slotId: external_exports.number(), isCapacityFull: external_exports.boolean() })).mutation(async ({ input, ctx }) => { if (!ctx.staffUser?.id) { throw new TRPCError({ code: "UNAUTHORIZED", message: "Access denied" }); } const { slotId, isCapacityFull } = input; const result = await updateSlotCapacity(slotId, isCapacityFull); if (!result) { throw new ApiError("Slot not found", 404); } scheduleStoreInitialization(); return result; }) }); // src/trpc/apis/admin-apis/apis/product.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var productRouter = router2({ getProducts: protectedProcedure.query(async () => { const products = await getAllProducts(); const productsWithSignedUrls = await Promise.all( products.map(async (product) => ({ ...product, images: await generateSignedUrlsFromS3Urls(product.images || []) })) ); return { products: productsWithSignedUrls, count: productsWithSignedUrls.length }; }), getProductById: protectedProcedure.input(external_exports.object({ id: external_exports.number() })).query(async ({ input }) => { const { id } = input; const product = await getProductById(id); if (!product) { throw new ApiError("Product not found", 404); } const productWithSignedUrls = { ...product, images: await generateSignedUrlsFromS3Urls(product.images || []) }; return { product: productWithSignedUrls }; }), deleteProduct: protectedProcedure.input(external_exports.object({ id: external_exports.number() })).mutation(async ({ input }) => { const { id } = input; const deletedProduct = await deleteProduct(id); if (!deletedProduct) { throw new ApiError("Product not found", 404); } scheduleStoreInitialization(); return { message: "Product deleted successfully" }; }), toggleOutOfStock: protectedProcedure.input(external_exports.object({ id: external_exports.number() })).mutation(async ({ input }) => { const { id } = input; const updatedProduct = await toggleProductOutOfStock(id); if (!updatedProduct) { throw new ApiError("Product not found", 404); } scheduleStoreInitialization(); return { product: updatedProduct, message: `Product marked as ${updatedProduct.isOutOfStock ? "out of stock" : "in stock"}` }; }), createProduct: protectedProcedure.input(external_exports.object({ name: external_exports.string().min(1, "Name is required"), shortDescription: external_exports.string().optional(), longDescription: external_exports.string().optional(), unitId: external_exports.number().min(1, "Unit is required"), storeId: external_exports.number().min(1, "Store is required"), price: external_exports.number().positive("Price must be positive"), marketPrice: external_exports.number().optional(), incrementStep: external_exports.number().optional().default(1), productQuantity: external_exports.number().optional().default(1), isSuspended: external_exports.boolean().optional().default(false), isFlashAvailable: external_exports.boolean().optional().default(false), flashPrice: external_exports.number().optional(), uploadUrls: external_exports.array(external_exports.string()).optional().default([]), deals: external_exports.array(external_exports.object({ quantity: external_exports.number(), price: external_exports.number(), validTill: external_exports.string() })).optional(), tagIds: external_exports.array(external_exports.number()).optional().default([]) })).mutation(async ({ input }) => { const { name, shortDescription, longDescription, unitId, storeId, price, marketPrice, incrementStep, productQuantity, isSuspended, isFlashAvailable, flashPrice, uploadUrls, deals, tagIds } = input; const existingProduct = await checkProductExistsByName(name.trim()); if (existingProduct) { throw new ApiError("A product with this name already exists", 400); } const unitExists = await checkUnitExists(unitId); if (!unitExists) { throw new ApiError("Invalid unit ID", 400); } const imageKeys = uploadUrls.map((url2) => extractKeyFromPresignedUrl(url2)); const newProduct = await createProduct({ name, shortDescription, longDescription, unitId, storeId, price: price.toString(), marketPrice: marketPrice?.toString(), incrementStep, productQuantity, isSuspended, isFlashAvailable, flashPrice: flashPrice?.toString(), images: imageKeys }); let createdDeals = []; if (deals && deals.length > 0) { createdDeals = await createSpecialDealsForProduct(newProduct.id, deals); } if (tagIds.length > 0) { await replaceProductTags(newProduct.id, tagIds); } if (uploadUrls.length > 0) { await Promise.all(uploadUrls.map((url2) => claimUploadUrl(url2))); } scheduleStoreInitialization(); return { product: newProduct, deals: createdDeals, message: "Product created successfully" }; }), updateProduct: protectedProcedure.input(external_exports.object({ id: external_exports.number(), name: external_exports.string().min(1, "Name is required"), shortDescription: external_exports.string().optional(), longDescription: external_exports.string().optional(), unitId: external_exports.number().min(1, "Unit is required"), storeId: external_exports.number().min(1, "Store is required"), price: external_exports.number().positive("Price must be positive"), marketPrice: external_exports.number().optional(), incrementStep: external_exports.number().optional().default(1), productQuantity: external_exports.number().optional().default(1), isSuspended: external_exports.boolean().optional().default(false), isFlashAvailable: external_exports.boolean().optional().default(false), flashPrice: external_exports.number().nullable().optional(), uploadUrls: external_exports.array(external_exports.string()).optional().default([]), imagesToDelete: external_exports.array(external_exports.string()).optional().default([]), deals: external_exports.array(external_exports.object({ quantity: external_exports.number(), price: external_exports.number(), validTill: external_exports.string() })).optional(), tagIds: external_exports.array(external_exports.number()).optional().default([]) })).mutation(async ({ input }) => { const { id, name, shortDescription, longDescription, unitId, storeId, price, marketPrice, incrementStep, productQuantity, isSuspended, isFlashAvailable, flashPrice, uploadUrls, imagesToDelete, deals, tagIds } = input; const unitExists = await checkUnitExists(unitId); if (!unitExists) { throw new ApiError("Invalid unit ID", 400); } const currentImages = await getProductImagesById(id); if (!currentImages) { throw new ApiError("Product not found", 404); } let updatedImages = currentImages || []; if (imagesToDelete.length > 0) { const imagesToRemove = updatedImages.filter((img) => imagesToDelete.includes(img)); await deleteImageUtil({ keys: imagesToRemove }); updatedImages = updatedImages.filter((img) => !imagesToRemove.includes(img)); } const newImageKeys = uploadUrls.map((url2) => extractKeyFromPresignedUrl(url2)); const finalImages = [...updatedImages, ...newImageKeys]; const updatedProduct = await updateProduct(id, { name, shortDescription, longDescription, unitId, storeId, price: price.toString(), marketPrice: marketPrice?.toString(), incrementStep, productQuantity, isSuspended, isFlashAvailable, flashPrice: flashPrice?.toString() ?? null, images: finalImages }); if (!updatedProduct) { throw new ApiError("Product not found", 404); } if (deals && deals.length > 0) { await updateProductDeals(id, deals); } if (tagIds.length > 0) { await replaceProductTags(id, tagIds); } if (uploadUrls.length > 0) { await Promise.all(uploadUrls.map((url2) => claimUploadUrl(url2))); } scheduleStoreInitialization(); return { product: updatedProduct, message: "Product updated successfully" }; }), updateSlotProducts: protectedProcedure.input(external_exports.object({ slotId: external_exports.string(), productIds: external_exports.array(external_exports.string()) })).mutation(async ({ input }) => { const { slotId, productIds } = input; if (!Array.isArray(productIds)) { throw new ApiError("productIds must be an array", 400); } const result = await updateSlotProducts(slotId, productIds); scheduleStoreInitialization(); return { message: "Slot products updated successfully", added: result.added, removed: result.removed }; }), getSlotProductIds: protectedProcedure.input(external_exports.object({ slotId: external_exports.string() })).query(async ({ input }) => { const { slotId } = input; const productIds = await getSlotProductIds(slotId); return { productIds }; }), getSlotsProductIds: protectedProcedure.input(external_exports.object({ slotIds: external_exports.array(external_exports.number()) })).query(async ({ input }) => { const { slotIds } = input; if (!Array.isArray(slotIds)) { throw new ApiError("slotIds must be an array", 400); } const result = await getSlotsProductIds(slotIds); return result; }), getProductReviews: protectedProcedure.input(external_exports.object({ productId: external_exports.number().int().positive(), limit: external_exports.number().int().min(1).max(50).optional().default(10), offset: external_exports.number().int().min(0).optional().default(0) })).query(async ({ input }) => { const { productId, limit, offset } = input; const { reviews, totalCount } = await getProductReviews(productId, limit, offset); const reviewsWithSignedUrls = await Promise.all( reviews.map(async (review) => ({ ...review, signedImageUrls: await generateSignedUrlsFromS3Urls(review.imageUrls || []), signedAdminImageUrls: await generateSignedUrlsFromS3Urls(review.adminResponseImages || []) })) ); const hasMore = offset + limit < totalCount; return { reviews: reviewsWithSignedUrls, hasMore }; }), respondToReview: protectedProcedure.input(external_exports.object({ reviewId: external_exports.number().int().positive(), adminResponse: external_exports.string().optional(), adminResponseImages: external_exports.array(external_exports.string()).optional().default([]), uploadUrls: external_exports.array(external_exports.string()).optional().default([]) })).mutation(async ({ input }) => { const { reviewId, adminResponse, adminResponseImages, uploadUrls } = input; const updatedReview = await respondToReview(reviewId, adminResponse, adminResponseImages); if (!updatedReview) { throw new ApiError("Review not found", 404); } if (uploadUrls && uploadUrls.length > 0) { await Promise.all(uploadUrls.map((url2) => claimUploadUrl(url2))); } return { success: true, review: updatedReview }; }), getGroups: protectedProcedure.query(async () => { const groups = await getAllProductGroups(); return { groups: groups.map((group3) => ({ ...group3, products: group3.memberships.map((m) => ({ ...m.product, images: m.product.images || null })), productCount: group3.memberships.length })) }; }), createGroup: protectedProcedure.input(external_exports.object({ group_name: external_exports.string().min(1), description: external_exports.string().optional(), product_ids: external_exports.array(external_exports.number()).default([]) })).mutation(async ({ input }) => { const { group_name, description, product_ids } = input; const newGroup = await createProductGroup(group_name, description, product_ids); scheduleStoreInitialization(); return { group: newGroup, message: "Group created successfully" }; }), updateGroup: protectedProcedure.input(external_exports.object({ id: external_exports.number(), group_name: external_exports.string().optional(), description: external_exports.string().optional(), product_ids: external_exports.array(external_exports.number()).optional() })).mutation(async ({ input }) => { const { id, group_name, description, product_ids } = input; const updatedGroup = await updateProductGroup(id, group_name, description, product_ids); if (!updatedGroup) { throw new ApiError("Group not found", 404); } scheduleStoreInitialization(); return { group: updatedGroup, message: "Group updated successfully" }; }), deleteGroup: protectedProcedure.input(external_exports.object({ id: external_exports.number() })).mutation(async ({ input }) => { const { id } = input; const deletedGroup = await deleteProductGroup(id); if (!deletedGroup) { throw new ApiError("Group not found", 404); } scheduleStoreInitialization(); return { message: "Group deleted successfully" }; }), updateProductPrices: protectedProcedure.input(external_exports.object({ updates: external_exports.array(external_exports.object({ productId: external_exports.number(), price: external_exports.number().optional(), marketPrice: external_exports.number().nullable().optional(), flashPrice: external_exports.number().nullable().optional(), isFlashAvailable: external_exports.boolean().optional() })) })).mutation(async ({ input }) => { const { updates } = input; if (updates.length === 0) { throw new ApiError("No updates provided", 400); } const result = await updateProductPrices(updates); if (result.invalidIds.length > 0) { throw new ApiError(`Invalid product IDs: ${result.invalidIds.join(", ")}`, 400); } scheduleStoreInitialization(); return { message: `Updated prices for ${result.updatedCount} product(s)`, updatedCount: result.updatedCount }; }), getProductTags: protectedProcedure.query(async () => { const tags = await getAllProductTagInfos(); const tagsWithSignedUrls = await Promise.all( tags.map(async (tag2) => ({ ...tag2, imageUrl: tag2.imageUrl ? await generateSignedUrlFromS3Url(tag2.imageUrl) : null })) ); return { tags: tagsWithSignedUrls, message: "Tags retrieved successfully" }; }), getProductTagById: protectedProcedure.input(external_exports.object({ id: external_exports.number() })).query(async ({ input }) => { const tag2 = await getProductTagInfoById(input.id); if (!tag2) { throw new ApiError("Tag not found", 404); } const tagWithSignedUrl = { ...tag2, imageUrl: tag2.imageUrl ? await generateSignedUrlFromS3Url(tag2.imageUrl) : null }; return { tag: tagWithSignedUrl, message: "Tag retrieved successfully" }; }), createProductTag: protectedProcedure.input(external_exports.object({ tagName: external_exports.string().min(1, "Tag name is required"), tagDescription: external_exports.string().optional(), imageUrl: external_exports.string().optional().nullable(), isDashboardTag: external_exports.boolean().optional().default(false), relatedStores: external_exports.array(external_exports.number()).optional().default([]), uploadUrls: external_exports.array(external_exports.string()).optional().default([]) })).mutation(async ({ input }) => { const { tagName, tagDescription, imageUrl, isDashboardTag, relatedStores, uploadUrls } = input; const existingTag = await checkProductTagExistsByName(tagName.trim()); if (existingTag) { throw new ApiError("A tag with this name already exists", 400); } const createdTag = await createProductTag({ tagName: tagName.trim(), tagDescription, imageUrl: imageUrl ?? null, isDashboardTag, relatedStores }); if (uploadUrls.length > 0) { await Promise.all(uploadUrls.map((url2) => claimUploadUrl(url2))); } scheduleStoreInitialization(); const { products, ...createdTagInfo } = createdTag; return { tag: { ...createdTagInfo, imageUrl: createdTagInfo.imageUrl ? await generateSignedUrlFromS3Url(createdTagInfo.imageUrl) : null }, message: "Tag created successfully" }; }), updateProductTag: protectedProcedure.input(external_exports.object({ id: external_exports.number(), tagName: external_exports.string().min(1).optional(), tagDescription: external_exports.string().optional().nullable(), imageUrl: external_exports.string().optional().nullable(), isDashboardTag: external_exports.boolean().optional(), relatedStores: external_exports.array(external_exports.number()).optional(), uploadUrls: external_exports.array(external_exports.string()).optional().default([]) })).mutation(async ({ input }) => { const { id, tagName, tagDescription, imageUrl, isDashboardTag, relatedStores, uploadUrls } = input; const currentTag = await getProductTagInfoById(id); if (!currentTag) { throw new ApiError("Tag not found", 404); } if (imageUrl !== void 0 && imageUrl !== currentTag.imageUrl) { if (currentTag.imageUrl) { await deleteImageUtil({ keys: [currentTag.imageUrl] }); } } const updatedTag = await updateProductTag(id, { tagName: tagName?.trim(), tagDescription: tagDescription ?? void 0, imageUrl: imageUrl ?? void 0, isDashboardTag, relatedStores }); if (uploadUrls.length > 0) { await Promise.all(uploadUrls.map((url2) => claimUploadUrl(url2))); } scheduleStoreInitialization(); const { products, ...updatedTagInfo } = updatedTag; return { tag: { ...updatedTagInfo, imageUrl: updatedTagInfo.imageUrl ? await generateSignedUrlFromS3Url(updatedTagInfo.imageUrl) : null }, message: "Tag updated successfully" }; }), deleteProductTag: protectedProcedure.input(external_exports.object({ id: external_exports.number() })).mutation(async ({ input }) => { const tag2 = await getProductTagInfoById(input.id); if (!tag2) { throw new ApiError("Tag not found", 404); } if (tag2.imageUrl) { await deleteImageUtil({ keys: [tag2.imageUrl] }); } await deleteProductTag(input.id); scheduleStoreInitialization(); return { message: "Tag deleted successfully" }; }) }); // src/trpc/apis/admin-apis/apis/staff-user.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // ../../node_modules/bcryptjs/index.js init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); import nodeCrypto from "crypto"; var randomFallback = null; function randomBytes(len) { try { return crypto.getRandomValues(new Uint8Array(len)); } catch { } try { return nodeCrypto.randomBytes(len); } catch { } if (!randomFallback) { throw Error( "Neither WebCryptoAPI nor a crypto module is available. Use bcrypt.setRandomFallback to set an alternative" ); } return randomFallback(len); } __name(randomBytes, "randomBytes"); function setRandomFallback(random) { randomFallback = random; } __name(setRandomFallback, "setRandomFallback"); function genSaltSync(rounds, seed_length) { rounds = rounds || GENSALT_DEFAULT_LOG2_ROUNDS; if (typeof rounds !== "number") throw Error( "Illegal arguments: " + typeof rounds + ", " + typeof seed_length ); if (rounds < 4) rounds = 4; else if (rounds > 31) rounds = 31; var salt = []; salt.push("$2b$"); if (rounds < 10) salt.push("0"); salt.push(rounds.toString()); salt.push("$"); salt.push(base64_encode(randomBytes(BCRYPT_SALT_LEN), BCRYPT_SALT_LEN)); return salt.join(""); } __name(genSaltSync, "genSaltSync"); function genSalt(rounds, seed_length, callback) { if (typeof seed_length === "function") callback = seed_length, seed_length = void 0; if (typeof rounds === "function") callback = rounds, rounds = void 0; if (typeof rounds === "undefined") rounds = GENSALT_DEFAULT_LOG2_ROUNDS; else if (typeof rounds !== "number") throw Error("illegal arguments: " + typeof rounds); function _async(callback2) { nextTick2(function() { try { callback2(null, genSaltSync(rounds)); } catch (err) { callback2(err); } }); } __name(_async, "_async"); if (callback) { if (typeof callback !== "function") throw Error("Illegal callback: " + typeof callback); _async(callback); } else return new Promise(function(resolve, reject) { _async(function(err, res) { if (err) { reject(err); return; } resolve(res); }); }); } __name(genSalt, "genSalt"); function hashSync(password, salt) { if (typeof salt === "undefined") salt = GENSALT_DEFAULT_LOG2_ROUNDS; if (typeof salt === "number") salt = genSaltSync(salt); if (typeof password !== "string" || typeof salt !== "string") throw Error("Illegal arguments: " + typeof password + ", " + typeof salt); return _hash(password, salt); } __name(hashSync, "hashSync"); function hash2(password, salt, callback, progressCallback) { function _async(callback2) { if (typeof password === "string" && typeof salt === "number") genSalt(salt, function(err, salt2) { _hash(password, salt2, callback2, progressCallback); }); else if (typeof password === "string" && typeof salt === "string") _hash(password, salt, callback2, progressCallback); else nextTick2( callback2.bind( this, Error("Illegal arguments: " + typeof password + ", " + typeof salt) ) ); } __name(_async, "_async"); if (callback) { if (typeof callback !== "function") throw Error("Illegal callback: " + typeof callback); _async(callback); } else return new Promise(function(resolve, reject) { _async(function(err, res) { if (err) { reject(err); return; } resolve(res); }); }); } __name(hash2, "hash"); function safeStringCompare(known, unknown2) { var diff = known.length ^ unknown2.length; for (var i = 0; i < known.length; ++i) { diff |= known.charCodeAt(i) ^ unknown2.charCodeAt(i); } return diff === 0; } __name(safeStringCompare, "safeStringCompare"); function compareSync(password, hash3) { if (typeof password !== "string" || typeof hash3 !== "string") throw Error("Illegal arguments: " + typeof password + ", " + typeof hash3); if (hash3.length !== 60) return false; return safeStringCompare( hashSync(password, hash3.substring(0, hash3.length - 31)), hash3 ); } __name(compareSync, "compareSync"); function compare(password, hashValue, callback, progressCallback) { function _async(callback2) { if (typeof password !== "string" || typeof hashValue !== "string") { nextTick2( callback2.bind( this, Error( "Illegal arguments: " + typeof password + ", " + typeof hashValue ) ) ); return; } if (hashValue.length !== 60) { nextTick2(callback2.bind(this, null, false)); return; } hash2( password, hashValue.substring(0, 29), function(err, comp) { if (err) callback2(err); else callback2(null, safeStringCompare(comp, hashValue)); }, progressCallback ); } __name(_async, "_async"); if (callback) { if (typeof callback !== "function") throw Error("Illegal callback: " + typeof callback); _async(callback); } else return new Promise(function(resolve, reject) { _async(function(err, res) { if (err) { reject(err); return; } resolve(res); }); }); } __name(compare, "compare"); function getRounds(hash3) { if (typeof hash3 !== "string") throw Error("Illegal arguments: " + typeof hash3); return parseInt(hash3.split("$")[2], 10); } __name(getRounds, "getRounds"); function getSalt(hash3) { if (typeof hash3 !== "string") throw Error("Illegal arguments: " + typeof hash3); if (hash3.length !== 60) throw Error("Illegal hash length: " + hash3.length + " != 60"); return hash3.substring(0, 29); } __name(getSalt, "getSalt"); function truncates(password) { if (typeof password !== "string") throw Error("Illegal arguments: " + typeof password); return utf8Length(password) > 72; } __name(truncates, "truncates"); var nextTick2 = typeof setImmediate === "function" ? setImmediate : typeof scheduler === "object" && typeof scheduler.postTask === "function" ? scheduler.postTask.bind(scheduler) : setTimeout; function utf8Length(string4) { var len = 0, c = 0; for (var i = 0; i < string4.length; ++i) { c = string4.charCodeAt(i); if (c < 128) len += 1; else if (c < 2048) len += 2; else if ((c & 64512) === 55296 && (string4.charCodeAt(i + 1) & 64512) === 56320) { ++i; len += 4; } else len += 3; } return len; } __name(utf8Length, "utf8Length"); function utf8Array(string4) { var offset = 0, c1, c2; var buffer = new Array(utf8Length(string4)); for (var i = 0, k = string4.length; i < k; ++i) { c1 = string4.charCodeAt(i); if (c1 < 128) { buffer[offset++] = c1; } else if (c1 < 2048) { buffer[offset++] = c1 >> 6 | 192; buffer[offset++] = c1 & 63 | 128; } else if ((c1 & 64512) === 55296 && ((c2 = string4.charCodeAt(i + 1)) & 64512) === 56320) { c1 = 65536 + ((c1 & 1023) << 10) + (c2 & 1023); ++i; buffer[offset++] = c1 >> 18 | 240; buffer[offset++] = c1 >> 12 & 63 | 128; buffer[offset++] = c1 >> 6 & 63 | 128; buffer[offset++] = c1 & 63 | 128; } else { buffer[offset++] = c1 >> 12 | 224; buffer[offset++] = c1 >> 6 & 63 | 128; buffer[offset++] = c1 & 63 | 128; } } return buffer; } __name(utf8Array, "utf8Array"); var BASE64_CODE = "./ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789".split(""); var BASE64_INDEX = [ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 1, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, -1, -1, -1, -1, -1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, -1, -1, -1 ]; function base64_encode(b, len) { var off2 = 0, rs = [], c1, c2; if (len <= 0 || len > b.length) throw Error("Illegal len: " + len); while (off2 < len) { c1 = b[off2++] & 255; rs.push(BASE64_CODE[c1 >> 2 & 63]); c1 = (c1 & 3) << 4; if (off2 >= len) { rs.push(BASE64_CODE[c1 & 63]); break; } c2 = b[off2++] & 255; c1 |= c2 >> 4 & 15; rs.push(BASE64_CODE[c1 & 63]); c1 = (c2 & 15) << 2; if (off2 >= len) { rs.push(BASE64_CODE[c1 & 63]); break; } c2 = b[off2++] & 255; c1 |= c2 >> 6 & 3; rs.push(BASE64_CODE[c1 & 63]); rs.push(BASE64_CODE[c2 & 63]); } return rs.join(""); } __name(base64_encode, "base64_encode"); function base64_decode(s, len) { var off2 = 0, slen = s.length, olen = 0, rs = [], c1, c2, c3, c4, o, code; if (len <= 0) throw Error("Illegal len: " + len); while (off2 < slen - 1 && olen < len) { code = s.charCodeAt(off2++); c1 = code < BASE64_INDEX.length ? BASE64_INDEX[code] : -1; code = s.charCodeAt(off2++); c2 = code < BASE64_INDEX.length ? BASE64_INDEX[code] : -1; if (c1 == -1 || c2 == -1) break; o = c1 << 2 >>> 0; o |= (c2 & 48) >> 4; rs.push(String.fromCharCode(o)); if (++olen >= len || off2 >= slen) break; code = s.charCodeAt(off2++); c3 = code < BASE64_INDEX.length ? BASE64_INDEX[code] : -1; if (c3 == -1) break; o = (c2 & 15) << 4 >>> 0; o |= (c3 & 60) >> 2; rs.push(String.fromCharCode(o)); if (++olen >= len || off2 >= slen) break; code = s.charCodeAt(off2++); c4 = code < BASE64_INDEX.length ? BASE64_INDEX[code] : -1; o = (c3 & 3) << 6 >>> 0; o |= c4; rs.push(String.fromCharCode(o)); ++olen; } var res = []; for (off2 = 0; off2 < olen; off2++) res.push(rs[off2].charCodeAt(0)); return res; } __name(base64_decode, "base64_decode"); var BCRYPT_SALT_LEN = 16; var GENSALT_DEFAULT_LOG2_ROUNDS = 10; var BLOWFISH_NUM_ROUNDS = 16; var MAX_EXECUTION_TIME = 100; var P_ORIG = [ 608135816, 2242054355, 320440878, 57701188, 2752067618, 698298832, 137296536, 3964562569, 1160258022, 953160567, 3193202383, 887688300, 3232508343, 3380367581, 1065670069, 3041331479, 2450970073, 2306472731 ]; var S_ORIG = [ 3509652390, 2564797868, 805139163, 3491422135, 3101798381, 1780907670, 3128725573, 4046225305, 614570311, 3012652279, 134345442, 2240740374, 1667834072, 1901547113, 2757295779, 4103290238, 227898511, 1921955416, 1904987480, 2182433518, 2069144605, 3260701109, 2620446009, 720527379, 3318853667, 677414384, 3393288472, 3101374703, 2390351024, 1614419982, 1822297739, 2954791486, 3608508353, 3174124327, 2024746970, 1432378464, 3864339955, 2857741204, 1464375394, 1676153920, 1439316330, 715854006, 3033291828, 289532110, 2706671279, 2087905683, 3018724369, 1668267050, 732546397, 1947742710, 3462151702, 2609353502, 2950085171, 1814351708, 2050118529, 680887927, 999245976, 1800124847, 3300911131, 1713906067, 1641548236, 4213287313, 1216130144, 1575780402, 4018429277, 3917837745, 3693486850, 3949271944, 596196993, 3549867205, 258830323, 2213823033, 772490370, 2760122372, 1774776394, 2652871518, 566650946, 4142492826, 1728879713, 2882767088, 1783734482, 3629395816, 2517608232, 2874225571, 1861159788, 326777828, 3124490320, 2130389656, 2716951837, 967770486, 1724537150, 2185432712, 2364442137, 1164943284, 2105845187, 998989502, 3765401048, 2244026483, 1075463327, 1455516326, 1322494562, 910128902, 469688178, 1117454909, 936433444, 3490320968, 3675253459, 1240580251, 122909385, 2157517691, 634681816, 4142456567, 3825094682, 3061402683, 2540495037, 79693498, 3249098678, 1084186820, 1583128258, 426386531, 1761308591, 1047286709, 322548459, 995290223, 1845252383, 2603652396, 3431023940, 2942221577, 3202600964, 3727903485, 1712269319, 422464435, 3234572375, 1170764815, 3523960633, 3117677531, 1434042557, 442511882, 3600875718, 1076654713, 1738483198, 4213154764, 2393238008, 3677496056, 1014306527, 4251020053, 793779912, 2902807211, 842905082, 4246964064, 1395751752, 1040244610, 2656851899, 3396308128, 445077038, 3742853595, 3577915638, 679411651, 2892444358, 2354009459, 1767581616, 3150600392, 3791627101, 3102740896, 284835224, 4246832056, 1258075500, 768725851, 2589189241, 3069724005, 3532540348, 1274779536, 3789419226, 2764799539, 1660621633, 3471099624, 4011903706, 913787905, 3497959166, 737222580, 2514213453, 2928710040, 3937242737, 1804850592, 3499020752, 2949064160, 2386320175, 2390070455, 2415321851, 4061277028, 2290661394, 2416832540, 1336762016, 1754252060, 3520065937, 3014181293, 791618072, 3188594551, 3933548030, 2332172193, 3852520463, 3043980520, 413987798, 3465142937, 3030929376, 4245938359, 2093235073, 3534596313, 375366246, 2157278981, 2479649556, 555357303, 3870105701, 2008414854, 3344188149, 4221384143, 3956125452, 2067696032, 3594591187, 2921233993, 2428461, 544322398, 577241275, 1471733935, 610547355, 4027169054, 1432588573, 1507829418, 2025931657, 3646575487, 545086370, 48609733, 2200306550, 1653985193, 298326376, 1316178497, 3007786442, 2064951626, 458293330, 2589141269, 3591329599, 3164325604, 727753846, 2179363840, 146436021, 1461446943, 4069977195, 705550613, 3059967265, 3887724982, 4281599278, 3313849956, 1404054877, 2845806497, 146425753, 1854211946, 1266315497, 3048417604, 3681880366, 3289982499, 290971e4, 1235738493, 2632868024, 2414719590, 3970600049, 1771706367, 1449415276, 3266420449, 422970021, 1963543593, 2690192192, 3826793022, 1062508698, 1531092325, 1804592342, 2583117782, 2714934279, 4024971509, 1294809318, 4028980673, 1289560198, 2221992742, 1669523910, 35572830, 157838143, 1052438473, 1016535060, 1802137761, 1753167236, 1386275462, 3080475397, 2857371447, 1040679964, 2145300060, 2390574316, 1461121720, 2956646967, 4031777805, 4028374788, 33600511, 2920084762, 1018524850, 629373528, 3691585981, 3515945977, 2091462646, 2486323059, 586499841, 988145025, 935516892, 3367335476, 2599673255, 2839830854, 265290510, 3972581182, 2759138881, 3795373465, 1005194799, 847297441, 406762289, 1314163512, 1332590856, 1866599683, 4127851711, 750260880, 613907577, 1450815602, 3165620655, 3734664991, 3650291728, 3012275730, 3704569646, 1427272223, 778793252, 1343938022, 2676280711, 2052605720, 1946737175, 3164576444, 3914038668, 3967478842, 3682934266, 1661551462, 3294938066, 4011595847, 840292616, 3712170807, 616741398, 312560963, 711312465, 1351876610, 322626781, 1910503582, 271666773, 2175563734, 1594956187, 70604529, 3617834859, 1007753275, 1495573769, 4069517037, 2549218298, 2663038764, 504708206, 2263041392, 3941167025, 2249088522, 1514023603, 1998579484, 1312622330, 694541497, 2582060303, 2151582166, 1382467621, 776784248, 2618340202, 3323268794, 2497899128, 2784771155, 503983604, 4076293799, 907881277, 423175695, 432175456, 1378068232, 4145222326, 3954048622, 3938656102, 3820766613, 2793130115, 2977904593, 26017576, 3274890735, 3194772133, 1700274565, 1756076034, 4006520079, 3677328699, 720338349, 1533947780, 354530856, 688349552, 3973924725, 1637815568, 332179504, 3949051286, 53804574, 2852348879, 3044236432, 1282449977, 3583942155, 3416972820, 4006381244, 1617046695, 2628476075, 3002303598, 1686838959, 431878346, 2686675385, 1700445008, 1080580658, 1009431731, 832498133, 3223435511, 2605976345, 2271191193, 2516031870, 1648197032, 4164389018, 2548247927, 300782431, 375919233, 238389289, 3353747414, 2531188641, 2019080857, 1475708069, 455242339, 2609103871, 448939670, 3451063019, 1395535956, 2413381860, 1841049896, 1491858159, 885456874, 4264095073, 4001119347, 1565136089, 3898914787, 1108368660, 540939232, 1173283510, 2745871338, 3681308437, 4207628240, 3343053890, 4016749493, 1699691293, 1103962373, 3625875870, 2256883143, 3830138730, 1031889488, 3479347698, 1535977030, 4236805024, 3251091107, 2132092099, 1774941330, 1199868427, 1452454533, 157007616, 2904115357, 342012276, 595725824, 1480756522, 206960106, 497939518, 591360097, 863170706, 2375253569, 3596610801, 1814182875, 2094937945, 3421402208, 1082520231, 3463918190, 2785509508, 435703966, 3908032597, 1641649973, 2842273706, 3305899714, 1510255612, 2148256476, 2655287854, 3276092548, 4258621189, 236887753, 3681803219, 274041037, 1734335097, 3815195456, 3317970021, 1899903192, 1026095262, 4050517792, 356393447, 2410691914, 3873677099, 3682840055, 3913112168, 2491498743, 4132185628, 2489919796, 1091903735, 1979897079, 3170134830, 3567386728, 3557303409, 857797738, 1136121015, 1342202287, 507115054, 2535736646, 337727348, 3213592640, 1301675037, 2528481711, 1895095763, 1721773893, 3216771564, 62756741, 2142006736, 835421444, 2531993523, 1442658625, 3659876326, 2882144922, 676362277, 1392781812, 170690266, 3921047035, 1759253602, 3611846912, 1745797284, 664899054, 1329594018, 3901205900, 3045908486, 2062866102, 2865634940, 3543621612, 3464012697, 1080764994, 553557557, 3656615353, 3996768171, 991055499, 499776247, 1265440854, 648242737, 3940784050, 980351604, 3713745714, 1749149687, 3396870395, 4211799374, 3640570775, 1161844396, 3125318951, 1431517754, 545492359, 4268468663, 3499529547, 1437099964, 2702547544, 3433638243, 2581715763, 2787789398, 1060185593, 1593081372, 2418618748, 4260947970, 69676912, 2159744348, 86519011, 2512459080, 3838209314, 1220612927, 3339683548, 133810670, 1090789135, 1078426020, 1569222167, 845107691, 3583754449, 4072456591, 1091646820, 628848692, 1613405280, 3757631651, 526609435, 236106946, 48312990, 2942717905, 3402727701, 1797494240, 859738849, 992217954, 4005476642, 2243076622, 3870952857, 3732016268, 765654824, 3490871365, 2511836413, 1685915746, 3888969200, 1414112111, 2273134842, 3281911079, 4080962846, 172450625, 2569994100, 980381355, 4109958455, 2819808352, 2716589560, 2568741196, 3681446669, 3329971472, 1835478071, 660984891, 3704678404, 4045999559, 3422617507, 3040415634, 1762651403, 1719377915, 3470491036, 2693910283, 3642056355, 3138596744, 1364962596, 2073328063, 1983633131, 926494387, 3423689081, 2150032023, 4096667949, 1749200295, 3328846651, 309677260, 2016342300, 1779581495, 3079819751, 111262694, 1274766160, 443224088, 298511866, 1025883608, 3806446537, 1145181785, 168956806, 3641502830, 3584813610, 1689216846, 3666258015, 3200248200, 1692713982, 2646376535, 4042768518, 1618508792, 1610833997, 3523052358, 4130873264, 2001055236, 3610705100, 2202168115, 4028541809, 2961195399, 1006657119, 2006996926, 3186142756, 1430667929, 3210227297, 1314452623, 4074634658, 4101304120, 2273951170, 1399257539, 3367210612, 3027628629, 1190975929, 2062231137, 2333990788, 2221543033, 2438960610, 1181637006, 548689776, 2362791313, 3372408396, 3104550113, 3145860560, 296247880, 1970579870, 3078560182, 3769228297, 1714227617, 3291629107, 3898220290, 166772364, 1251581989, 493813264, 448347421, 195405023, 2709975567, 677966185, 3703036547, 1463355134, 2715995803, 1338867538, 1343315457, 2802222074, 2684532164, 233230375, 2599980071, 2000651841, 3277868038, 1638401717, 4028070440, 3237316320, 6314154, 819756386, 300326615, 590932579, 1405279636, 3267499572, 3150704214, 2428286686, 3959192993, 3461946742, 1862657033, 1266418056, 963775037, 2089974820, 2263052895, 1917689273, 448879540, 3550394620, 3981727096, 150775221, 3627908307, 1303187396, 508620638, 2975983352, 2726630617, 1817252668, 1876281319, 1457606340, 908771278, 3720792119, 3617206836, 2455994898, 1729034894, 1080033504, 976866871, 3556439503, 2881648439, 1522871579, 1555064734, 1336096578, 3548522304, 2579274686, 3574697629, 3205460757, 3593280638, 3338716283, 3079412587, 564236357, 2993598910, 1781952180, 1464380207, 3163844217, 3332601554, 1699332808, 1393555694, 1183702653, 3581086237, 1288719814, 691649499, 2847557200, 2895455976, 3193889540, 2717570544, 1781354906, 1676643554, 2592534050, 3230253752, 1126444790, 2770207658, 2633158820, 2210423226, 2615765581, 2414155088, 3127139286, 673620729, 2805611233, 1269405062, 4015350505, 3341807571, 4149409754, 1057255273, 2012875353, 2162469141, 2276492801, 2601117357, 993977747, 3918593370, 2654263191, 753973209, 36408145, 2530585658, 25011837, 3520020182, 2088578344, 530523599, 2918365339, 1524020338, 1518925132, 3760827505, 3759777254, 1202760957, 3985898139, 3906192525, 674977740, 4174734889, 2031300136, 2019492241, 3983892565, 4153806404, 3822280332, 352677332, 2297720250, 60907813, 90501309, 3286998549, 1016092578, 2535922412, 2839152426, 457141659, 509813237, 4120667899, 652014361, 1966332200, 2975202805, 55981186, 2327461051, 676427537, 3255491064, 2882294119, 3433927263, 1307055953, 942726286, 933058658, 2468411793, 3933900994, 4215176142, 1361170020, 2001714738, 2830558078, 3274259782, 1222529897, 1679025792, 2729314320, 3714953764, 1770335741, 151462246, 3013232138, 1682292957, 1483529935, 471910574, 1539241949, 458788160, 3436315007, 1807016891, 3718408830, 978976581, 1043663428, 3165965781, 1927990952, 4200891579, 2372276910, 3208408903, 3533431907, 1412390302, 2931980059, 4132332400, 1947078029, 3881505623, 4168226417, 2941484381, 1077988104, 1320477388, 886195818, 18198404, 3786409e3, 2509781533, 112762804, 3463356488, 1866414978, 891333506, 18488651, 661792760, 1628790961, 3885187036, 3141171499, 876946877, 2693282273, 1372485963, 791857591, 2686433993, 3759982718, 3167212022, 3472953795, 2716379847, 445679433, 3561995674, 3504004811, 3574258232, 54117162, 3331405415, 2381918588, 3769707343, 4154350007, 1140177722, 4074052095, 668550556, 3214352940, 367459370, 261225585, 2610173221, 4209349473, 3468074219, 3265815641, 314222801, 3066103646, 3808782860, 282218597, 3406013506, 3773591054, 379116347, 1285071038, 846784868, 2669647154, 3771962079, 3550491691, 2305946142, 453669953, 1268987020, 3317592352, 3279303384, 3744833421, 2610507566, 3859509063, 266596637, 3847019092, 517658769, 3462560207, 3443424879, 370717030, 4247526661, 2224018117, 4143653529, 4112773975, 2788324899, 2477274417, 1456262402, 2901442914, 1517677493, 1846949527, 2295493580, 3734397586, 2176403920, 1280348187, 1908823572, 3871786941, 846861322, 1172426758, 3287448474, 3383383037, 1655181056, 3139813346, 901632758, 1897031941, 2986607138, 3066810236, 3447102507, 1393639104, 373351379, 950779232, 625454576, 3124240540, 4148612726, 2007998917, 544563296, 2244738638, 2330496472, 2058025392, 1291430526, 424198748, 50039436, 29584100, 3605783033, 2429876329, 2791104160, 1057563949, 3255363231, 3075367218, 3463963227, 1469046755, 985887462 ]; var C_ORIG = [ 1332899944, 1700884034, 1701343084, 1684370003, 1668446532, 1869963892 ]; function _encipher(lr, off2, P, S) { var n, l = lr[off2], r = lr[off2 + 1]; l ^= P[0]; n = S[l >>> 24]; n += S[256 | l >> 16 & 255]; n ^= S[512 | l >> 8 & 255]; n += S[768 | l & 255]; r ^= n ^ P[1]; n = S[r >>> 24]; n += S[256 | r >> 16 & 255]; n ^= S[512 | r >> 8 & 255]; n += S[768 | r & 255]; l ^= n ^ P[2]; n = S[l >>> 24]; n += S[256 | l >> 16 & 255]; n ^= S[512 | l >> 8 & 255]; n += S[768 | l & 255]; r ^= n ^ P[3]; n = S[r >>> 24]; n += S[256 | r >> 16 & 255]; n ^= S[512 | r >> 8 & 255]; n += S[768 | r & 255]; l ^= n ^ P[4]; n = S[l >>> 24]; n += S[256 | l >> 16 & 255]; n ^= S[512 | l >> 8 & 255]; n += S[768 | l & 255]; r ^= n ^ P[5]; n = S[r >>> 24]; n += S[256 | r >> 16 & 255]; n ^= S[512 | r >> 8 & 255]; n += S[768 | r & 255]; l ^= n ^ P[6]; n = S[l >>> 24]; n += S[256 | l >> 16 & 255]; n ^= S[512 | l >> 8 & 255]; n += S[768 | l & 255]; r ^= n ^ P[7]; n = S[r >>> 24]; n += S[256 | r >> 16 & 255]; n ^= S[512 | r >> 8 & 255]; n += S[768 | r & 255]; l ^= n ^ P[8]; n = S[l >>> 24]; n += S[256 | l >> 16 & 255]; n ^= S[512 | l >> 8 & 255]; n += S[768 | l & 255]; r ^= n ^ P[9]; n = S[r >>> 24]; n += S[256 | r >> 16 & 255]; n ^= S[512 | r >> 8 & 255]; n += S[768 | r & 255]; l ^= n ^ P[10]; n = S[l >>> 24]; n += S[256 | l >> 16 & 255]; n ^= S[512 | l >> 8 & 255]; n += S[768 | l & 255]; r ^= n ^ P[11]; n = S[r >>> 24]; n += S[256 | r >> 16 & 255]; n ^= S[512 | r >> 8 & 255]; n += S[768 | r & 255]; l ^= n ^ P[12]; n = S[l >>> 24]; n += S[256 | l >> 16 & 255]; n ^= S[512 | l >> 8 & 255]; n += S[768 | l & 255]; r ^= n ^ P[13]; n = S[r >>> 24]; n += S[256 | r >> 16 & 255]; n ^= S[512 | r >> 8 & 255]; n += S[768 | r & 255]; l ^= n ^ P[14]; n = S[l >>> 24]; n += S[256 | l >> 16 & 255]; n ^= S[512 | l >> 8 & 255]; n += S[768 | l & 255]; r ^= n ^ P[15]; n = S[r >>> 24]; n += S[256 | r >> 16 & 255]; n ^= S[512 | r >> 8 & 255]; n += S[768 | r & 255]; l ^= n ^ P[16]; lr[off2] = r ^ P[BLOWFISH_NUM_ROUNDS + 1]; lr[off2 + 1] = l; return lr; } __name(_encipher, "_encipher"); function _streamtoword(data, offp) { for (var i = 0, word = 0; i < 4; ++i) word = word << 8 | data[offp] & 255, offp = (offp + 1) % data.length; return { key: word, offp }; } __name(_streamtoword, "_streamtoword"); function _key(key, P, S) { var offset = 0, lr = [0, 0], plen = P.length, slen = S.length, sw; for (var i = 0; i < plen; i++) sw = _streamtoword(key, offset), offset = sw.offp, P[i] = P[i] ^ sw.key; for (i = 0; i < plen; i += 2) lr = _encipher(lr, 0, P, S), P[i] = lr[0], P[i + 1] = lr[1]; for (i = 0; i < slen; i += 2) lr = _encipher(lr, 0, P, S), S[i] = lr[0], S[i + 1] = lr[1]; } __name(_key, "_key"); function _ekskey(data, key, P, S) { var offp = 0, lr = [0, 0], plen = P.length, slen = S.length, sw; for (var i = 0; i < plen; i++) sw = _streamtoword(key, offp), offp = sw.offp, P[i] = P[i] ^ sw.key; offp = 0; for (i = 0; i < plen; i += 2) sw = _streamtoword(data, offp), offp = sw.offp, lr[0] ^= sw.key, sw = _streamtoword(data, offp), offp = sw.offp, lr[1] ^= sw.key, lr = _encipher(lr, 0, P, S), P[i] = lr[0], P[i + 1] = lr[1]; for (i = 0; i < slen; i += 2) sw = _streamtoword(data, offp), offp = sw.offp, lr[0] ^= sw.key, sw = _streamtoword(data, offp), offp = sw.offp, lr[1] ^= sw.key, lr = _encipher(lr, 0, P, S), S[i] = lr[0], S[i + 1] = lr[1]; } __name(_ekskey, "_ekskey"); function _crypt(b, salt, rounds, callback, progressCallback) { var cdata = C_ORIG.slice(), clen = cdata.length, err; if (rounds < 4 || rounds > 31) { err = Error("Illegal number of rounds (4-31): " + rounds); if (callback) { nextTick2(callback.bind(this, err)); return; } else throw err; } if (salt.length !== BCRYPT_SALT_LEN) { err = Error( "Illegal salt length: " + salt.length + " != " + BCRYPT_SALT_LEN ); if (callback) { nextTick2(callback.bind(this, err)); return; } else throw err; } rounds = 1 << rounds >>> 0; var P, S, i = 0, j; if (typeof Int32Array === "function") { P = new Int32Array(P_ORIG); S = new Int32Array(S_ORIG); } else { P = P_ORIG.slice(); S = S_ORIG.slice(); } _ekskey(salt, b, P, S); function next() { if (progressCallback) progressCallback(i / rounds); if (i < rounds) { var start = Date.now(); for (; i < rounds; ) { i = i + 1; _key(b, P, S); _key(salt, P, S); if (Date.now() - start > MAX_EXECUTION_TIME) break; } } else { for (i = 0; i < 64; i++) for (j = 0; j < clen >> 1; j++) _encipher(cdata, j << 1, P, S); var ret = []; for (i = 0; i < clen; i++) ret.push((cdata[i] >> 24 & 255) >>> 0), ret.push((cdata[i] >> 16 & 255) >>> 0), ret.push((cdata[i] >> 8 & 255) >>> 0), ret.push((cdata[i] & 255) >>> 0); if (callback) { callback(null, ret); return; } else return ret; } if (callback) nextTick2(next); } __name(next, "next"); if (typeof callback !== "undefined") { next(); } else { var res; while (true) if (typeof (res = next()) !== "undefined") return res || []; } } __name(_crypt, "_crypt"); function _hash(password, salt, callback, progressCallback) { var err; if (typeof password !== "string" || typeof salt !== "string") { err = Error("Invalid string / salt: Not a string"); if (callback) { nextTick2(callback.bind(this, err)); return; } else throw err; } var minor, offset; if (salt.charAt(0) !== "$" || salt.charAt(1) !== "2") { err = Error("Invalid salt version: " + salt.substring(0, 2)); if (callback) { nextTick2(callback.bind(this, err)); return; } else throw err; } if (salt.charAt(2) === "$") minor = String.fromCharCode(0), offset = 3; else { minor = salt.charAt(2); if (minor !== "a" && minor !== "b" && minor !== "y" || salt.charAt(3) !== "$") { err = Error("Invalid salt revision: " + salt.substring(2, 4)); if (callback) { nextTick2(callback.bind(this, err)); return; } else throw err; } offset = 4; } if (salt.charAt(offset + 2) > "$") { err = Error("Missing salt rounds"); if (callback) { nextTick2(callback.bind(this, err)); return; } else throw err; } var r1 = parseInt(salt.substring(offset, offset + 1), 10) * 10, r2 = parseInt(salt.substring(offset + 1, offset + 2), 10), rounds = r1 + r2, real_salt = salt.substring(offset + 3, offset + 25); password += minor >= "a" ? "\0" : ""; var passwordb = utf8Array(password), saltb = base64_decode(real_salt, BCRYPT_SALT_LEN); function finish(bytes) { var res = []; res.push("$2"); if (minor >= "a") res.push(minor); res.push("$"); if (rounds < 10) res.push("0"); res.push(rounds.toString()); res.push("$"); res.push(base64_encode(saltb, saltb.length)); res.push(base64_encode(bytes, C_ORIG.length * 4 - 1)); return res.join(""); } __name(finish, "finish"); if (typeof callback == "undefined") return finish(_crypt(passwordb, saltb, rounds)); else { _crypt( passwordb, saltb, rounds, function(err2, bytes) { if (err2) callback(err2, null); else callback(null, finish(bytes)); }, progressCallback ); } } __name(_hash, "_hash"); function encodeBase642(bytes, length) { return base64_encode(bytes, length); } __name(encodeBase642, "encodeBase64"); function decodeBase642(string4, length) { return base64_decode(string4, length); } __name(decodeBase642, "decodeBase64"); var bcryptjs_default = { setRandomFallback, genSaltSync, genSalt, hashSync, hash: hash2, compareSync, compare, getRounds, getSalt, truncates, encodeBase64: encodeBase642, decodeBase64: decodeBase642 }; // src/trpc/apis/admin-apis/apis/staff-user.ts var staffUserRouter = router2({ login: publicProcedure.input(external_exports.object({ name: external_exports.string(), password: external_exports.string() })).mutation(async ({ input }) => { const { name, password } = input; if (!name || !password) { throw new ApiError("Name and password are required", 400); } const staff = await getStaffUserByName(name); if (!staff) { throw new ApiError("Invalid credentials", 401); } const isPasswordValid = await bcryptjs_default.compare(password, staff.password); if (!isPasswordValid) { throw new ApiError("Invalid credentials", 401); } const token = await new SignJWT({ staffId: staff.id, name: staff.name }).setProtectedHeader({ alg: "HS256" }).setExpirationTime("30d").sign(encodedJwtSecret); return { message: "Login successful", token, staff: { id: staff.id, name: staff.name } }; }), getStaff: protectedProcedure.query(async ({ ctx }) => { const staff = await getAllStaff(); const transformedStaff = staff.map((user) => ({ id: user.id, name: user.name, role: user.role ? { id: user.role.id, name: user.role.roleName } : null, permissions: user.role?.rolePermissions.map((rp) => ({ id: rp.permission.id, name: rp.permission.permissionName })) || [] })); return { staff: transformedStaff }; }), getUsers: protectedProcedure.input(external_exports.object({ cursor: external_exports.number().optional(), limit: external_exports.number().default(20), search: external_exports.string().optional() })).query(async ({ input }) => { const { cursor, limit, search } = input; const { users: usersToReturn, hasMore } = await getAllUsers(cursor, limit, search); const formattedUsers = usersToReturn.map((user) => ({ id: user.id, name: user.name, email: user.email, mobile: user.mobile, image: user.userDetails?.profileImage || null })); return { users: formattedUsers, nextCursor: hasMore ? usersToReturn[usersToReturn.length - 1].id : void 0 }; }), getUserDetails: protectedProcedure.input(external_exports.object({ userId: external_exports.number() })).query(async ({ input }) => { const { userId } = input; const user = await getUserWithDetails(userId); if (!user) { throw new ApiError("User not found", 404); } const lastOrder = user.orders[0]; return { id: user.id, name: user.name, email: user.email, mobile: user.mobile, addedOn: user.createdAt, lastOrdered: lastOrder?.createdAt || null, isSuspended: user.userDetails?.isSuspended || false }; }), updateUserSuspension: protectedProcedure.input(external_exports.object({ userId: external_exports.number(), isSuspended: external_exports.boolean() })).mutation(async ({ input }) => { const { userId, isSuspended } = input; await upsertUserSuspension(userId, isSuspended); return { success: true }; }), createStaffUser: protectedProcedure.input(external_exports.object({ name: external_exports.string().min(1, "Name is required"), password: external_exports.string().min(6, "Password must be at least 6 characters"), roleId: external_exports.number().int().positive("Role is required") })).mutation(async ({ input, ctx }) => { const { name, password, roleId } = input; const existingUser = await checkStaffUserExists(name); if (existingUser) { throw new ApiError("Staff user with this name already exists", 409); } const roleExists = await checkStaffRoleExists(roleId); if (!roleExists) { throw new ApiError("Invalid role selected", 400); } const hashedPassword = await bcryptjs_default.hash(password, 12); const newUser = await createStaffUser(name, hashedPassword, roleId); return { success: true, user: { id: newUser.id, name: newUser.name } }; }), getRoles: protectedProcedure.query(async ({ ctx }) => { const roles = await getAllRoles(); return { roles: roles.map((role) => ({ id: role.id, name: role.roleName })) }; }) }); // src/trpc/apis/admin-apis/apis/store.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var storeRouter = router2({ getStores: protectedProcedure.query(async ({ ctx }) => { const stores = await getAllStores(); await Promise.all(stores.map(async (store) => { if (store.imageUrl) store.imageUrl = await generateSignedUrlFromS3Url(store.imageUrl); })).catch((e) => { throw new ApiError("Unable to find store image urls"); }); return { stores, count: stores.length }; }), getStoreById: protectedProcedure.input(external_exports.object({ id: external_exports.number() })).query(async ({ input, ctx }) => { const { id } = input; const store = await getStoreById(id); if (!store) { throw new ApiError("Store not found", 404); } store.imageUrl = await generateSignedUrlFromS3Url(store.imageUrl); return { store }; }), createStore: protectedProcedure.input(external_exports.object({ name: external_exports.string().min(1, "Name is required"), description: external_exports.string().optional(), imageUrl: external_exports.string().optional(), owner: external_exports.number().min(1, "Owner is required"), products: external_exports.array(external_exports.number()).optional() })).mutation(async ({ input, ctx }) => { const { name, description, imageUrl, owner, products } = input; const imageKey = imageUrl ? extractKeyFromPresignedUrl(imageUrl) : void 0; const newStore = await createStore( { name, description, imageUrl: imageKey, owner }, products ); scheduleStoreInitialization(); return { store: newStore, message: "Store created successfully" }; }), updateStore: protectedProcedure.input(external_exports.object({ id: external_exports.number(), name: external_exports.string().min(1, "Name is required"), description: external_exports.string().optional(), imageUrl: external_exports.string().optional(), owner: external_exports.number().min(1, "Owner is required"), products: external_exports.array(external_exports.number()).optional() })).mutation(async ({ input, ctx }) => { const { id, name, description, imageUrl, owner, products } = input; const existingStore = await getStoreById(id); if (!existingStore) { throw new ApiError("Store not found", 404); } const oldImageKey = existingStore.imageUrl; const newImageKey = imageUrl ? extractKeyFromPresignedUrl(imageUrl) : oldImageKey; if (oldImageKey && (newImageKey && newImageKey !== oldImageKey || !newImageKey)) { try { await deleteImageUtil({ keys: [oldImageKey] }); } catch (error50) { console.error("Failed to delete old image:", error50); } } const updatedStore = await updateStore( id, { name, description, imageUrl: newImageKey, owner }, products ); scheduleStoreInitialization(); return { store: updatedStore, message: "Store updated successfully" }; }), deleteStore: protectedProcedure.input(external_exports.object({ storeId: external_exports.number() })).mutation(async ({ input, ctx }) => { const { storeId } = input; const result = await deleteStore(storeId); scheduleStoreInitialization(); return result; }) }); // src/trpc/apis/admin-apis/apis/payments.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var initiateRefundSchema = external_exports.object({ orderId: external_exports.number(), refundPercent: external_exports.number().min(0).max(100).optional(), refundAmount: external_exports.number().min(0).optional() }).refine( (data) => { const hasPercent = data.refundPercent !== void 0; const hasAmount = data.refundAmount !== void 0; return hasPercent && !hasAmount || !hasPercent && hasAmount; }, { message: "Provide either refundPercent or refundAmount, not both or neither" } ); var adminPaymentsRouter = router2({ initiateRefund: protectedProcedure.input(initiateRefundSchema).mutation(async ({ input }) => { return {}; }) }); // src/trpc/apis/admin-apis/apis/banner.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var bannerRouter2 = router2({ // Get all banners getBanners: protectedProcedure.query(async () => { try { const banners = await getBanners(); const bannersWithSignedUrls = await Promise.all( banners.map(async (banner) => { try { return { ...banner, imageUrl: banner.imageUrl ? await generateSignedUrlFromS3Url(banner.imageUrl) : banner.imageUrl, // Ensure productIds is always an array productIds: banner.productIds || [] }; } catch (error50) { console.error(`Failed to generate signed URL for banner ${banner.id}:`, error50); return { ...banner, imageUrl: banner.imageUrl, // Keep original on error // Ensure productIds is always an array productIds: banner.productIds || [] }; } }) ); return { banners: bannersWithSignedUrls }; } catch (e) { console.log(e); throw new ApiError(e.message); } }), // Get single banner by ID getBanner: protectedProcedure.input(external_exports.object({ id: external_exports.number() })).query(async ({ input }) => { const banner = await getBannerById(input.id); if (banner) { try { if (banner.imageUrl) { banner.imageUrl = await generateSignedUrlFromS3Url(banner.imageUrl); } } catch (error50) { console.error(`Failed to generate signed URL for banner ${banner.id}:`, error50); } if (!banner.productIds) { banner.productIds = []; } } return banner; }), // Create new banner createBanner: protectedProcedure.input(external_exports.object({ name: external_exports.string().min(1), imageUrl: external_exports.string().url(), description: external_exports.string().optional(), productIds: external_exports.array(external_exports.number()).optional(), redirectUrl: external_exports.string().url().optional() // serialNum removed completely })).mutation(async ({ input }) => { try { const imageUrl = extractKeyFromPresignedUrl(input.imageUrl); const banner = await createBanner({ name: input.name, imageUrl, description: input.description ?? null, productIds: input.productIds || [], redirectUrl: input.redirectUrl ?? null, serialNum: 999, // Default value, not used isActive: false // Default to inactive }); scheduleStoreInitialization(); return banner; } catch (error50) { console.error("Error creating banner:", error50); throw error50; } }), // Update banner updateBanner: protectedProcedure.input(external_exports.object({ id: external_exports.number(), name: external_exports.string().min(1).optional(), imageUrl: external_exports.string().url().optional(), description: external_exports.string().optional(), productIds: external_exports.array(external_exports.number()).optional(), redirectUrl: external_exports.string().url().optional(), serialNum: external_exports.number().nullable().optional(), isActive: external_exports.boolean().optional() })).mutation(async ({ input }) => { try { const { id, ...updateData2 } = input; const processedData = { ...updateData2, ...updateData2.imageUrl && { imageUrl: extractKeyFromPresignedUrl(updateData2.imageUrl) } }; if ("serialNum" in processedData && processedData.serialNum === null) { processedData.serialNum = null; } const banner = await updateBanner(id, processedData); scheduleStoreInitialization(); return banner; } catch (error50) { console.error("Error updating banner:", error50); throw error50; } }), // Delete banner deleteBanner: protectedProcedure.input(external_exports.object({ id: external_exports.number() })).mutation(async ({ input }) => { await deleteBanner(input.id); scheduleStoreInitialization(); return { success: true }; }) }); // src/trpc/apis/admin-apis/apis/user.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var userRouter = { createUserByMobile: protectedProcedure.input(external_exports.object({ mobile: external_exports.string().min(1, "Mobile number is required") })).mutation(async ({ input }) => { const cleanMobile = input.mobile.replace(/\D/g, ""); if (cleanMobile.length !== 10) { throw new ApiError("Mobile number must be exactly 10 digits", 400); } const existingUser = await getUserByMobile(cleanMobile); if (existingUser) { throw new ApiError("User with this mobile number already exists", 409); } const newUser = await createUserByMobile(cleanMobile); return { success: true, data: newUser }; }), getEssentials: protectedProcedure.query(async () => { const count4 = await getUnresolvedComplaintsCount(); return { unresolvedComplaints: count4 }; }), getAllUsers: protectedProcedure.input(external_exports.object({ limit: external_exports.number().min(1).max(100).default(50), cursor: external_exports.number().optional(), search: external_exports.string().optional() })).query(async ({ input }) => { const { limit, cursor, search } = input; const { users: usersToReturn, hasMore } = await getAllUsersWithFilters(limit, cursor, search); const userIds = usersToReturn.map((u4) => u4.id); const orderCounts = await getOrderCountsByUserIds(userIds); const lastOrders = await getLastOrdersByUserIds(userIds); const suspensionStatuses = await getSuspensionStatusesByUserIds(userIds); const orderCountMap = new Map(orderCounts.map((o) => [o.userId, o.totalOrders])); const lastOrderMap = new Map(lastOrders.map((o) => [o.userId, o.lastOrderDate])); const suspensionMap = new Map(suspensionStatuses.map((s) => [s.userId, s.isSuspended])); const usersWithStats = usersToReturn.map((user) => ({ ...user, totalOrders: orderCountMap.get(user.id) || 0, lastOrderDate: lastOrderMap.get(user.id) || null, isSuspended: suspensionMap.get(user.id) ?? false })); const nextCursor = hasMore ? usersToReturn[usersToReturn.length - 1].id : void 0; return { users: usersWithStats, nextCursor, hasMore }; }), getUserDetails: protectedProcedure.input(external_exports.object({ userId: external_exports.number() })).query(async ({ input }) => { const { userId } = input; const user = await getUserBasicInfo(userId); if (!user) { throw new ApiError("User not found", 404); } const isSuspended = await getUserSuspensionStatus(userId); const userOrders = await getUserOrders(userId); const orderIds = userOrders.map((o) => o.id); const orderStatuses = await getOrderStatusesByOrderIds(orderIds); const itemCounts = await getItemCountsByOrderIds(orderIds); const statusMap = new Map(orderStatuses.map((s) => [s.orderId, s])); const itemCountMap = new Map(itemCounts.map((c) => [c.orderId, c.itemCount])); const getStatus = /* @__PURE__ */ __name((status) => { if (!status) return "pending"; if (status.isCancelled) return "cancelled"; if (status.isDelivered) return "delivered"; return "pending"; }, "getStatus"); const ordersWithDetails = userOrders.map((order) => { const status = statusMap.get(order.id); return { id: order.id, readableId: order.readableId, totalAmount: order.totalAmount, createdAt: order.createdAt, isFlashDelivery: order.isFlashDelivery, status: getStatus(status), itemCount: itemCountMap.get(order.id) || 0 }; }); return { user: { ...user, isSuspended }, orders: ordersWithDetails }; }), updateUserSuspension: protectedProcedure.input(external_exports.object({ userId: external_exports.number(), isSuspended: external_exports.boolean() })).mutation(async ({ input }) => { const { userId, isSuspended } = input; await upsertUserSuspension(userId, isSuspended); return { success: true, message: `User ${isSuspended ? "suspended" : "unsuspended"} successfully` }; }), getUsersForNotification: protectedProcedure.input(external_exports.object({ search: external_exports.string().optional() })).query(async ({ input }) => { const { search } = input; const usersList = await searchUsers(search); const eligibleUsers = await getAllNotifCreds(); const eligibleSet = new Set(eligibleUsers.map((u4) => u4.userId)); return { users: usersList.map((user) => ({ id: user.id, name: user.name, mobile: user.mobile, isEligibleForNotif: eligibleSet.has(user.id) })) }; }), sendNotification: protectedProcedure.input(external_exports.object({ userIds: external_exports.array(external_exports.number()).default([]), title: external_exports.string().min(1, "Title is required"), text: external_exports.string().min(1, "Message is required"), imageUrl: external_exports.string().optional() })).mutation(async ({ input }) => { const { userIds, title: title2, text: text2, imageUrl } = input; let tokens = []; if (userIds.length === 0) { const loggedInTokens = await getAllNotifCreds(); const unloggedTokens = await getAllUnloggedTokens(); tokens = [ ...loggedInTokens.map((t8) => t8.token), ...unloggedTokens.map((t8) => t8.token) ]; } else { const userTokens = await getNotifTokensByUserIds(userIds); tokens = userTokens.map((t8) => t8.token); } let queuedCount = 0; for (const token of tokens) { try { await notificationQueue.add("send-admin-notification", { token, title: title2, body: text2, imageUrl: imageUrl || null }, { attempts: 3, backoff: { type: "exponential", delay: 2e3 } }); queuedCount++; } catch (error50) { console.error(`Failed to queue notification for token:`, error50); } } return { success: true, message: `Notification queued for ${queuedCount} users` }; }), getUserIncidents: protectedProcedure.input(external_exports.object({ userId: external_exports.number() })).query(async ({ input }) => { const { userId } = input; const incidents = await getUserIncidentsWithRelations(userId); return { incidents: incidents.map((incident) => ({ id: incident.id, userId: incident.userId, orderId: incident.orderId, dateAdded: incident.dateAdded, adminComment: incident.adminComment, addedBy: incident.addedBy?.name || "Unknown", negativityScore: incident.negativityScore, orderStatus: incident.order?.orderStatus?.[0]?.isCancelled ? "cancelled" : "active" })) }; }), addUserIncident: protectedProcedure.input(external_exports.object({ userId: external_exports.number(), orderId: external_exports.number().optional(), adminComment: external_exports.string().optional(), negativityScore: external_exports.number().optional() })).mutation(async ({ input, ctx }) => { const { userId, orderId, adminComment, negativityScore } = input; const adminUserId = ctx.staffUser?.id; if (!adminUserId) { throw new ApiError("Admin user not authenticated", 401); } const incident = await createUserIncident( userId, orderId, adminComment, adminUserId, negativityScore ); recomputeUserNegativityScore(userId); return { success: true, data: incident }; }) }; // src/trpc/apis/admin-apis/apis/const.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var constRouter = router2({ getConstants: protectedProcedure.query(async () => { const constants = await getAllConstants(); return constants; }), updateConstants: protectedProcedure.input(external_exports.object({ constants: external_exports.array(external_exports.object({ key: external_exports.string(), value: external_exports.any() })) })).mutation(async ({ input }) => { const { constants } = input; const validKeys = Object.values(CONST_KEYS); const invalidKeys = constants.filter((c) => !validKeys.includes(c.key)).map((c) => c.key); if (invalidKeys.length > 0) { throw new Error(`Invalid constant keys: ${invalidKeys.join(", ")}`); } await upsertConstants(constants); await computeConstants(); return { success: true, updatedCount: constants.length, keys: constants.map((c) => c.key) }; }) }); // src/trpc/apis/admin-apis/apis/admin-trpc-index.ts var adminRouter = router2({ complaint: complaintRouter, coupon: couponRouter, order: orderRouter, vendorSnippets: vendorSnippetsRouter, slots: slotsRouter2, product: productRouter, staffUser: staffUserRouter, store: storeRouter, payments: adminPaymentsRouter, banner: bannerRouter2, user: userRouter, const: constRouter }); // src/trpc/apis/user-apis/apis/user-trpc-index.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // src/trpc/apis/user-apis/apis/address.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // src/lib/license-util.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); async function extractCoordsFromRedirectUrl(url2) { try { await axios_default.get(url2, { maxRedirects: 0 }); return null; } catch (error50) { if (error50.response?.status === 302 || error50.response?.status === 301) { const redirectUrl = error50.response.headers.location; const coordsMatch = redirectUrl.match(/!3d([-\d.]+)!4d([-\d.]+)/); if (coordsMatch) { return { latitude: coordsMatch[1], longitude: coordsMatch[2] }; } } return null; } } __name(extractCoordsFromRedirectUrl, "extractCoordsFromRedirectUrl"); // src/trpc/apis/user-apis/apis/address.ts var addressRouter = router2({ getDefaultAddress: protectedProcedure.query(async ({ ctx }) => { const userId = ctx.user.userId; const defaultAddress = await getDefaultAddress(userId); return { success: true, data: defaultAddress }; }), getUserAddresses: protectedProcedure.query(async ({ ctx }) => { const userId = ctx.user.userId; const userAddresses = await getUserAddresses(userId); return { success: true, data: userAddresses }; }), createAddress: protectedProcedure.input(external_exports.object({ name: external_exports.string().min(1, "Name is required"), phone: external_exports.string().min(1, "Phone is required"), addressLine1: external_exports.string().min(1, "Address line 1 is required"), addressLine2: external_exports.string().optional(), city: external_exports.string().min(1, "City is required"), state: external_exports.string().min(1, "State is required"), pincode: external_exports.string().min(1, "Pincode is required"), isDefault: external_exports.boolean().optional(), latitude: external_exports.number().optional(), longitude: external_exports.number().optional(), googleMapsUrl: external_exports.string().optional() })).mutation(async ({ input, ctx }) => { const userId = ctx.user.userId; const { name, phone, addressLine1, addressLine2, city, state, pincode, isDefault, googleMapsUrl } = input; let { latitude, longitude } = input; if (googleMapsUrl && latitude === void 0 && longitude === void 0) { const coords = await extractCoordsFromRedirectUrl(googleMapsUrl); if (coords) { latitude = Number(coords.latitude); longitude = Number(coords.longitude); } } if (!name || !phone || !addressLine1 || !city || !state || !pincode) { throw new Error("Missing required fields"); } if (isDefault) { await clearDefaultAddress(userId); } const newAddress = await createUserAddress({ userId, name, phone, addressLine1, addressLine2, city, state, pincode, isDefault: isDefault || false, latitude, longitude, googleMapsUrl }); return { success: true, data: newAddress }; }), updateAddress: protectedProcedure.input(external_exports.object({ id: external_exports.number().int().positive(), name: external_exports.string().min(1, "Name is required"), phone: external_exports.string().min(1, "Phone is required"), addressLine1: external_exports.string().min(1, "Address line 1 is required"), addressLine2: external_exports.string().optional(), city: external_exports.string().min(1, "City is required"), state: external_exports.string().min(1, "State is required"), pincode: external_exports.string().min(1, "Pincode is required"), isDefault: external_exports.boolean().optional(), latitude: external_exports.number().optional(), longitude: external_exports.number().optional(), googleMapsUrl: external_exports.string().optional() })).mutation(async ({ input, ctx }) => { const userId = ctx.user.userId; const { id, name, phone, addressLine1, addressLine2, city, state, pincode, isDefault, googleMapsUrl } = input; let { latitude, longitude } = input; if (googleMapsUrl && latitude === void 0 && longitude === void 0) { const coords = await extractCoordsFromRedirectUrl(googleMapsUrl); if (coords) { latitude = Number(coords.latitude); longitude = Number(coords.longitude); } } const existingAddress = await getUserAddressById(userId, id); if (!existingAddress) { throw new Error("Address not found"); } if (isDefault) { await clearDefaultAddress(userId); } const updatedAddress = await updateUserAddress({ userId, addressId: id, name, phone, addressLine1, addressLine2, city, state, pincode, isDefault: isDefault || false, googleMapsUrl, latitude, longitude }); return { success: true, data: updatedAddress }; }), deleteAddress: protectedProcedure.input(external_exports.object({ id: external_exports.number().int().positive() })).mutation(async ({ input, ctx }) => { const userId = ctx.user.userId; const { id } = input; const existingAddress = await getUserAddressById(userId, id); if (!existingAddress) { throw new Error("Address not found or does not belong to user"); } const hasOngoingOrders = await hasOngoingOrdersForAddress(id); if (hasOngoingOrders) { throw new Error("Address is attached to an ongoing order. Please cancel the order first."); } if (existingAddress.isDefault) { throw new Error("Cannot delete default address. Please set another address as default first."); } const deleted = await deleteUserAddress(userId, id); if (!deleted) { throw new Error("Address not found or does not belong to user"); } return { success: true, message: "Address deleted successfully" }; }) }); // src/trpc/apis/user-apis/apis/auth.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); // src/lib/otp-utils.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var otpStore = /* @__PURE__ */ new Map(); var setOtpCreds = /* @__PURE__ */ __name((phone, verificationId) => { otpStore.set(phone, verificationId); }, "setOtpCreds"); function getOtpCreds(mobile) { const authKey = otpStore.get(mobile); return authKey || null; } __name(getOtpCreds, "getOtpCreds"); var sendOtp = /* @__PURE__ */ __name(async (phone) => { if (!phone) { throw new ApiError("Phone number is required", 400); } const reqUrl = `https://cpaas.messagecentral.com/verification/v3/send?countryCode=91&flowType=SMS&mobileNumber=${phone}&timeout=300`; const resp = await fetch(reqUrl, { headers: { authToken: otpSenderAuthToken }, method: "POST" }); const data = await resp.json(); if (data.message === "SUCCESS") { setOtpCreds(phone, data.data.verificationId); return { success: true, message: "OTP sent successfully", verificationId: data.data.verificationId }; } if (data.message === "REQUEST_ALREADY_EXISTS") { return { success: true, message: "OTP already sent. Last OTP is still valid" }; } throw new ApiError("Error while sending OTP. Please try again", 500); }, "sendOtp"); async function verifyOtpUtil(mobile, otp, verifId) { const reqUrl = `https://cpaas.messagecentral.com/verification/v3/validateOtp?&verificationId=${verifId}&code=${otp}`; const resp = await fetch(reqUrl, { method: "GET", headers: { authToken: otpSenderAuthToken } }); const rawData = await resp.json(); if (rawData.data?.verificationStatus === "VERIFICATION_COMPLETED") { return true; } return false; } __name(verifyOtpUtil, "verifyOtpUtil"); // src/trpc/apis/user-apis/apis/auth.ts var generateToken = /* @__PURE__ */ __name(async (userId) => { return await new SignJWT({ userId }).setProtectedHeader({ alg: "HS256" }).setExpirationTime("7d").sign(encodedJwtSecret); }, "generateToken"); var authRouter = router2({ login: publicProcedure.input(external_exports.object({ identifier: external_exports.string().min(1, "Email/mobile is required"), password: external_exports.string().min(1, "Password is required") })).mutation(async ({ input }) => { const { identifier, password } = input; if (!identifier || !password) { throw new ApiError("Email/mobile and password are required", 400); } const user = await getUserByEmail(identifier.toLowerCase()); let foundUser = user || null; if (!foundUser) { const userByMobile = await getUserByMobile2(identifier); foundUser = userByMobile || null; } if (!foundUser) { throw new ApiError("Invalid credentials", 401); } const userCredentials = await getUserCreds(foundUser.id); if (!userCredentials) { throw new ApiError("Account setup incomplete. Please contact support.", 401); } const userDetail = await getUserDetails(foundUser.id); const profileImageSignedUrl = userDetail?.profileImage ? await generateSignedUrlFromS3Url(userDetail.profileImage) : null; const isPasswordValid = await bcryptjs_default.compare(password, userCredentials.userPassword); if (!isPasswordValid) { throw new ApiError("Invalid credentials", 401); } const token = await generateToken(foundUser.id); const response = { token, user: { id: foundUser.id, name: foundUser.name, email: foundUser.email, mobile: foundUser.mobile, createdAt: foundUser.createdAt.toISOString(), profileImage: profileImageSignedUrl, bio: userDetail?.bio || null, dateOfBirth: userDetail?.dateOfBirth ? new Date(userDetail.dateOfBirth).toISOString() : null, gender: userDetail?.gender || null, occupation: userDetail?.occupation || null } }; return { success: true, data: response }; }), register: publicProcedure.input(external_exports.object({ name: external_exports.string().min(1, "Name is required"), email: external_exports.string().email("Invalid email format"), mobile: external_exports.string().min(1, "Mobile is required"), password: external_exports.string().min(1, "Password is required"), profileImageUrl: external_exports.string().nullable().optional() })).mutation(async ({ input }) => { const { name, email: email3, mobile, password, profileImageUrl } = input; if (!name || !email3 || !mobile || !password) { throw new ApiError("All fields are required", 400); } const emailRegex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/; if (!emailRegex.test(email3)) { throw new ApiError("Invalid email format", 400); } const cleanMobile = mobile.replace(/\D/g, ""); if (cleanMobile.length !== 10 || !/^[6-9]/.test(cleanMobile)) { throw new ApiError("Invalid mobile number", 400); } const existingEmail = await getUserByEmail(email3.toLowerCase()); if (existingEmail) { throw new ApiError("Email already registered", 409); } const existingMobile = await getUserByMobile2(cleanMobile); if (existingMobile) { throw new ApiError("Mobile number already registered", 409); } const hashedPassword = await bcryptjs_default.hash(password, 12); const newUser = await createUserWithProfile({ name: name.trim(), email: email3.toLowerCase().trim(), mobile: cleanMobile, hashedPassword, profileImage: profileImageUrl ?? null }); const token = await generateToken(newUser.id); const profileImageSignedUrl = profileImageUrl ? await generateSignedUrlFromS3Url(profileImageUrl) : null; const response = { token, user: { id: newUser.id, name: newUser.name, email: newUser.email, mobile: newUser.mobile, createdAt: newUser.createdAt.toISOString(), profileImage: profileImageSignedUrl } }; return { success: true, data: response }; }), sendOtp: publicProcedure.input(external_exports.object({ mobile: external_exports.string() })).mutation(async ({ input }) => { return await sendOtp(input.mobile); }), verifyOtp: publicProcedure.input(external_exports.object({ mobile: external_exports.string(), otp: external_exports.string() })).mutation(async ({ input }) => { const verificationId = getOtpCreds(input.mobile); if (!verificationId) { throw new ApiError("OTP not sent or expired", 400); } const isVerified = await verifyOtpUtil(input.mobile, input.otp, verificationId); if (!isVerified) { throw new ApiError("Invalid OTP", 400); } let user = await getUserByMobile2(input.mobile); if (!user) { user = await createUserWithMobile(input.mobile); } const token = await generateToken(user.id); return { success: true, token, user: { id: user.id, name: user.name, email: user.email, mobile: user.mobile, createdAt: user.createdAt.toISOString(), profileImage: null } }; }), updatePassword: protectedProcedure.input(external_exports.object({ password: external_exports.string().min(6, "Password must be at least 6 characters") })).mutation(async ({ input, ctx }) => { const userId = ctx.user.userId; if (!userId) { throw new ApiError("User not authenticated", 401); } const hashedPassword = await bcryptjs_default.hash(input.password, 10); await upsertUserPassword(userId, hashedPassword); return { success: true, message: "Password updated successfully" }; }), updateProfile: protectedProcedure.input(external_exports.object({ name: external_exports.string().min(1).optional(), email: external_exports.string().email("Invalid email format").optional(), mobile: external_exports.string().min(1).optional(), password: external_exports.string().min(6, "Password must be at least 6 characters").optional(), bio: external_exports.string().optional().nullable(), dateOfBirth: external_exports.string().optional().nullable(), gender: external_exports.string().optional().nullable(), occupation: external_exports.string().optional().nullable(), profileImageUrl: external_exports.string().optional().nullable() })).mutation(async ({ input, ctx }) => { const userId = ctx.user.userId; if (!userId) { throw new ApiError("User not authenticated", 401); } const { name, email: email3, mobile, password, bio, dateOfBirth, gender, occupation, profileImageUrl } = input; if (email3) { const emailRegex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/; if (!emailRegex.test(email3)) { throw new ApiError("Invalid email format", 400); } } if (mobile) { const cleanMobile = mobile.replace(/\D/g, ""); if (cleanMobile.length !== 10 || !/^[6-9]/.test(cleanMobile)) { throw new ApiError("Invalid mobile number", 400); } } if (email3) { const existingEmail = await getUserByEmail(email3.toLowerCase()); if (existingEmail && existingEmail.id !== userId) { throw new ApiError("Email already registered", 409); } } if (mobile) { const cleanMobile = mobile.replace(/\D/g, ""); const existingMobile = await getUserByMobile2(cleanMobile); if (existingMobile && existingMobile.id !== userId) { throw new ApiError("Mobile number already registered", 409); } } let hashedPassword; if (password) { hashedPassword = await bcryptjs_default.hash(password, 12); } const updatedUser = await updateUserProfile(userId, { name: name?.trim(), email: email3?.toLowerCase().trim(), mobile: mobile?.replace(/\D/g, ""), hashedPassword, profileImage: profileImageUrl ?? void 0, bio: bio ?? void 0, dateOfBirth: dateOfBirth ? new Date(dateOfBirth) : void 0, gender: gender ?? void 0, occupation: occupation ?? void 0 }); const userDetail = await getUserDetailsByUserId(userId); const profileImageSignedUrl = userDetail?.profileImage ? await generateSignedUrlFromS3Url(userDetail.profileImage) : null; const authHeader = ctx.req.header("authorization"); const token = authHeader?.replace("Bearer ", "") || ""; const response = { token, user: { id: updatedUser.id, name: updatedUser.name, email: updatedUser.email, mobile: updatedUser.mobile, createdAt: updatedUser.createdAt?.toISOString?.() || (/* @__PURE__ */ new Date()).toISOString(), profileImage: profileImageSignedUrl, bio: userDetail?.bio || null, dateOfBirth: userDetail?.dateOfBirth ? new Date(userDetail.dateOfBirth).toISOString() : null, gender: userDetail?.gender || null, occupation: userDetail?.occupation || null } }; return { success: true, data: response }; }), getProfile: protectedProcedure.query(async ({ ctx }) => { const userId = ctx.user.userId; if (!userId) { throw new ApiError("User not authenticated", 401); } const user = await getUserById(userId); if (!user) { throw new ApiError("User not found", 404); } return { success: true, data: { id: user.id, name: user.name, email: user.email, mobile: user.mobile } }; }), deleteAccount: protectedProcedure.input(external_exports.object({ mobile: external_exports.string().min(10, "Mobile number is required") })).mutation(async ({ ctx, input }) => { const userId = ctx.user.userId; const { mobile } = input; if (!userId) { throw new ApiError("User not authenticated", 401); } const existingUser = await getUserById(userId); if (!existingUser) { throw new ApiError("User not found", 404); } if (existingUser.id !== userId) { throw new ApiError("Unauthorized: Cannot delete another user's account", 403); } const cleanInputMobile = mobile.replace(/\D/g, ""); const cleanUserMobile = existingUser.mobile?.replace(/\D/g, ""); if (cleanInputMobile !== cleanUserMobile) { throw new ApiError("Mobile number does not match your registered number", 400); } await deleteUserAccount(userId); return { success: true, message: "Account deleted successfully" }; }) }); // src/trpc/apis/user-apis/apis/cart.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var getCartData = /* @__PURE__ */ __name(async (userId) => { const cartItemsWithProducts = await getCartItemsWithProducts(userId); const cartWithSignedUrls = cartItemsWithProducts.map((item) => ({ ...item, product: { ...item.product, images: scaffoldAssetUrl(item.product.images || []) } })); const totalAmount = cartWithSignedUrls.reduce((sum2, item) => sum2 + item.subtotal, 0); return { items: cartWithSignedUrls, totalItems: cartWithSignedUrls.length, totalAmount }; }, "getCartData"); var cartRouter = router2({ getCart: protectedProcedure.query(async ({ ctx }) => { const userId = ctx.user.userId; return await getCartData(userId); }), addToCart: protectedProcedure.input(external_exports.object({ productId: external_exports.number().int().positive(), quantity: external_exports.number().int().positive() })).mutation(async ({ input, ctx }) => { const userId = ctx.user.userId; const { productId, quantity } = input; if (!productId || !quantity || quantity <= 0) { throw new ApiError("Product ID and positive quantity required", 400); } const product = await getProductById2(productId); if (!product) { throw new ApiError("Product not found", 404); } const existingItem = await getCartItemByUserProduct(userId, productId); if (existingItem) { await incrementCartItemQuantity(existingItem.id, quantity); } else { await insertCartItem(userId, productId, quantity); } return await getCartData(userId); }), updateCartItem: protectedProcedure.input(external_exports.object({ itemId: external_exports.number().int().positive(), quantity: external_exports.number().int().min(0) })).mutation(async ({ input, ctx }) => { const userId = ctx.user.userId; const { itemId, quantity } = input; if (!quantity || quantity <= 0) { throw new ApiError("Positive quantity required", 400); } const updated = await updateCartItemQuantity(userId, itemId, quantity); if (!updated) { throw new ApiError("Cart item not found", 404); } return await getCartData(userId); }), removeFromCart: protectedProcedure.input(external_exports.object({ itemId: external_exports.number().int().positive() })).mutation(async ({ input, ctx }) => { const userId = ctx.user.userId; const { itemId } = input; const deleted = await deleteCartItem(userId, itemId); if (!deleted) { throw new ApiError("Cart item not found", 404); } return await getCartData(userId); }), clearCart: protectedProcedure.mutation(async ({ ctx }) => { const userId = ctx.user.userId; await clearUserCart(userId); return { items: [], totalItems: 0, totalAmount: 0, message: "Cart cleared successfully" }; }), // Original DB-based getCartSlots (commented out) // getCartSlots: publicProcedure // .input(z.object({ // productIds: z.array(z.number().int().positive()) // })) // .query(async ({ input }) => { // const { productIds } = input; // // if (productIds.length === 0) { // return {}; // } // // // Get slots for these products where freeze time is after current time // const slotsData = await db // .select({ // productId: productSlots.productId, // slotId: deliverySlotInfo.id, // deliveryTime: deliverySlotInfo.deliveryTime, // freezeTime: deliverySlotInfo.freezeTime, // isActive: deliverySlotInfo.isActive, // }) // .from(productSlots) // .innerJoin(deliverySlotInfo, eq(productSlots.slotId, deliverySlotInfo.id)) // .where(and( // inArray(productSlots.productId, productIds), // gt(deliverySlotInfo.freezeTime, sql`NOW()`), // eq(deliverySlotInfo.isActive, true) // )); // // // Group by productId // const result: Record = {}; // slotsData.forEach(slot => { // if (!result[slot.productId]) { // result[slot.productId] = []; // } // result[slot.productId].push({ // id: slot.slotId, // deliveryTime: slot.deliveryTime, // freezeTime: slot.freezeTime, // }); // }); // // return result; // }), // Cache-based getCartSlots getCartSlots: publicProcedure.input(external_exports.object({ productIds: external_exports.array(external_exports.number().int().positive()) })).query(async ({ input }) => { const { productIds } = input; if (productIds.length === 0) { return {}; } return await getMultipleProductsSlots(productIds); }) }); // src/trpc/apis/user-apis/apis/complaint.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var complaintRouter2 = router2({ getAll: protectedProcedure.query(async ({ ctx }) => { const userId = ctx.user.userId; const userComplaints = await getUserComplaints(userId); return { complaints: userComplaints }; }), raise: protectedProcedure.input(external_exports.object({ orderId: external_exports.string().optional(), complaintBody: external_exports.string().min(1, "Complaint body is required"), imageUrls: external_exports.array(external_exports.string()).optional() })).mutation(async ({ input, ctx }) => { const userId = ctx.user.userId; const { orderId, complaintBody, imageUrls } = input; let orderIdNum = null; if (orderId) { const readableIdMatch = orderId.match(/^ORD(\d+)$/); if (readableIdMatch) { orderIdNum = parseInt(readableIdMatch[1]); } } await createComplaint( userId, orderIdNum, complaintBody.trim(), imageUrls && imageUrls.length > 0 ? imageUrls : null ); return { success: true, message: "Complaint raised successfully" }; }) }); // src/trpc/apis/user-apis/apis/order.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var placeOrderUtil = /* @__PURE__ */ __name(async (params) => { const { userId, selectedItems, addressId, paymentMethod, couponId, userNotes } = params; const constants = await getConstants([ CONST_KEYS.minRegularOrderValue, CONST_KEYS.deliveryCharge, CONST_KEYS.flashFreeDeliveryThreshold, CONST_KEYS.flashDeliveryCharge ]); const isFlashDelivery = params.isFlash; const minOrderValue2 = (isFlashDelivery ? constants[CONST_KEYS.flashFreeDeliveryThreshold] : constants[CONST_KEYS.minRegularOrderValue]) || 0; const deliveryCharge2 = (isFlashDelivery ? constants[CONST_KEYS.flashDeliveryCharge] : constants[CONST_KEYS.deliveryCharge]) || 0; const orderGroupId = `${Date.now()}-${userId}`; const address = await getAddressByIdAndUser(addressId, userId); if (!address) { throw new ApiError("Invalid address", 400); } const ordersBySlot = /* @__PURE__ */ new Map(); for (const item of selectedItems) { const product = await getProductById4(item.productId); if (!product) { throw new ApiError(`Product ${item.productId} not found`, 400); } if (!ordersBySlot.has(item.slotId)) { ordersBySlot.set(item.slotId, []); } ordersBySlot.get(item.slotId).push({ ...item, product }); } if (params.isFlash) { for (const item of selectedItems) { const product = await getProductById4(item.productId); if (!product?.isFlashAvailable) { throw new ApiError(`Product ${item.productId} is not available for flash delivery`, 400); } } } let totalAmount = 0; for (const [slotId, items] of ordersBySlot) { const orderTotal = items.reduce( (sum2, item) => { if (!item.product) return sum2; const basePrice = params.isFlash ? item.product.flashPrice ?? item.product.price : item.product.price; const itemPrice = parseFloat((basePrice ?? 0).toString()); return sum2 + itemPrice * item.quantity; }, 0 ); totalAmount += orderTotal; } const appliedCoupon = await validateAndGetCoupon(couponId, userId, totalAmount); const expectedDeliveryCharge = totalAmount < minOrderValue2 ? deliveryCharge2 : 0; const totalWithDelivery = totalAmount + expectedDeliveryCharge; const ordersData = []; let isFirstOrder = true; for (const [slotId, items] of ordersBySlot) { const subOrderTotal = items.reduce( (sum2, item) => { if (!item.product) return sum2; const basePrice = params.isFlash ? item.product.flashPrice ?? item.product.price : item.product.price; const itemPrice = parseFloat((basePrice ?? 0).toString()); return sum2 + itemPrice * item.quantity; }, 0 ); const subOrderTotalWithDelivery = subOrderTotal + expectedDeliveryCharge; const orderGroupProportion = subOrderTotal / totalAmount; const orderTotalAmount = isFirstOrder ? subOrderTotalWithDelivery : subOrderTotal; const { finalOrderTotal: finalOrderAmount } = applyDiscountToOrder( orderTotalAmount, appliedCoupon, orderGroupProportion ); const order = { userId, addressId, slotId: params.isFlash ? null : slotId, isCod: paymentMethod === "cod", isOnlinePayment: paymentMethod === "online", paymentInfoId: null, totalAmount: finalOrderAmount.toString(), deliveryCharge: isFirstOrder ? expectedDeliveryCharge.toString() : "0", readableId: -1, userNotes: userNotes || null, orderGroupId, orderGroupProportion: orderGroupProportion.toString(), isFlashDelivery: params.isFlash }; const validItems = items.filter( (item) => item.product !== null && item.product !== void 0 ); const orderItemsData = validItems.map( (item) => { const basePrice = params.isFlash ? item.product.flashPrice ?? item.product.price : item.product.price; const priceString = (basePrice ?? 0).toString(); return { orderId: 0, productId: item.productId, quantity: item.quantity.toString(), price: priceString, discountedPrice: priceString }; } ); const orderStatusData = { userId, orderId: 0, paymentStatus: paymentMethod === "cod" ? "cod" : "pending" }; ordersData.push({ order, orderItems: orderItemsData, orderStatus: orderStatusData }); isFirstOrder = false; } const createdOrders = await placeOrderTransaction({ userId, ordersData, paymentMethod, totalWithDelivery }); await deleteCartItemsForOrder( userId, selectedItems.map((item) => item.productId) ); if (appliedCoupon && createdOrders.length > 0) { await recordCouponUsage( userId, appliedCoupon.id, createdOrders[0].id ); } for (const order of createdOrders) { sendOrderPlacedNotification(userId, order.id.toString()); } await publishFormattedOrder(createdOrders, ordersBySlot); return { success: true, data: createdOrders }; }, "placeOrderUtil"); var orderRouter2 = router2({ placeOrder: protectedProcedure.input( external_exports.object({ selectedItems: external_exports.array( external_exports.object({ productId: external_exports.number().int().positive(), quantity: external_exports.number().int().positive(), slotId: external_exports.union([external_exports.number().int(), external_exports.null()]) }) ), addressId: external_exports.number().int().positive(), paymentMethod: external_exports.enum(["online", "cod"]), couponId: external_exports.number().int().positive().optional(), userNotes: external_exports.string().optional(), isFlashDelivery: external_exports.boolean().optional().default(false) }) ).mutation(async ({ input, ctx }) => { const userId = ctx.user.userId; const isSuspended = await checkUserSuspended(userId); if (isSuspended) { throw new ApiError("Unable to place order", 403); } const { selectedItems, addressId, paymentMethod, couponId, userNotes, isFlashDelivery } = input; if (isFlashDelivery) { const isFlashDeliveryEnabled = await getConstant(CONST_KEYS.isFlashDeliveryEnabled); if (!isFlashDeliveryEnabled) { throw new ApiError("Flash delivery is currently unavailable. Please opt for scheduled delivery.", 403); } } if (!isFlashDelivery) { const slotIds = [...new Set(selectedItems.filter((i) => i.slotId !== null).map((i) => i.slotId))]; for (const slotId of slotIds) { const isCapacityFull = await getSlotCapacityStatus(slotId); if (isCapacityFull) { throw new ApiError("Selected delivery slot is at full capacity. Please choose another slot.", 403); } } } let processedItems = selectedItems; if (isFlashDelivery) { processedItems = selectedItems.map((item) => ({ ...item, slotId: null })); } return await placeOrderUtil({ userId, selectedItems: processedItems, addressId, paymentMethod, couponId, userNotes, isFlash: isFlashDelivery }); }), getOrders: protectedProcedure.input( external_exports.object({ page: external_exports.number().min(1).default(1), pageSize: external_exports.number().min(1).max(50).default(10) }).optional() ).query(async ({ input, ctx }) => { const { page = 1, pageSize = 10 } = input || {}; const userId = ctx.user.userId; const offset = (page - 1) * pageSize; const totalCount = await getOrderCount(userId); const userOrders = await getOrdersWithRelations(userId, offset, pageSize); const mappedOrders = await Promise.all( userOrders.map(async (order) => { const status = order.orderStatus[0]; const refund = order.refunds[0]; let deliveryStatus; let orderStatus3; const allItemsPackaged = order.orderItems.every( (item) => item.is_packaged ); if (status?.isCancelled) { deliveryStatus = "cancelled"; orderStatus3 = "cancelled"; } else if (status?.isDelivered) { deliveryStatus = "success"; orderStatus3 = "success"; } else if (allItemsPackaged) { deliveryStatus = "packaged"; orderStatus3 = "success"; } else { deliveryStatus = "pending"; orderStatus3 = "success"; } const paymentMode = order.isCod ? "CoD" : "Online"; const paymentStatus = status?.paymentStatus || "pending"; const refundStatus = refund?.refundStatus || "none"; const refundAmount = refund?.refundAmount ? parseFloat(refund.refundAmount.toString()) : null; const items = await Promise.all( order.orderItems.map(async (item) => { const signedImages = item.product.images ? scaffoldAssetUrl( item.product.images ) : []; return { productName: item.product.name, quantity: parseFloat(item.quantity), price: parseFloat(item.price.toString()), discountedPrice: parseFloat( item.discountedPrice?.toString() || item.price.toString() ), amount: parseFloat(item.price.toString()) * parseFloat(item.quantity), image: signedImages[0] || null }; }) ); return { id: order.id, orderId: `ORD${order.id}`, orderDate: order.createdAt.toISOString(), deliveryStatus, deliveryDate: order.slot?.deliveryTime.toISOString(), orderStatus: orderStatus3, cancelReason: status?.cancelReason || null, paymentMode, totalAmount: Number(order.totalAmount), deliveryCharge: Number(order.deliveryCharge), paymentStatus, refundStatus, refundAmount, userNotes: order.userNotes || null, items, isFlashDelivery: order.isFlashDelivery, createdAt: order.createdAt.toISOString() }; }) ); return { success: true, data: mappedOrders, pagination: { page, pageSize, totalCount, totalPages: Math.ceil(totalCount / pageSize) } }; }), getOrderById: protectedProcedure.input(external_exports.object({ orderId: external_exports.string() })).query(async ({ input, ctx }) => { const { orderId } = input; const userId = ctx.user.userId; const order = await getOrderByIdWithRelations(parseInt(orderId), userId); if (!order) { throw new Error("Order not found"); } const couponUsageData = await getCouponUsageForOrder(order.id); let couponData = null; if (couponUsageData.length > 0) { let totalDiscountAmount = 0; const orderTotal = parseFloat(order.totalAmount.toString()); for (const usage of couponUsageData) { let discountAmount = 0; if (usage.coupon.discountPercent) { discountAmount = orderTotal * parseFloat(usage.coupon.discountPercent.toString()) / 100; } else if (usage.coupon.flatDiscount) { discountAmount = parseFloat(usage.coupon.flatDiscount.toString()); } if (usage.coupon.maxValue && discountAmount > parseFloat(usage.coupon.maxValue.toString())) { discountAmount = parseFloat(usage.coupon.maxValue.toString()); } totalDiscountAmount += discountAmount; } couponData = { couponCode: couponUsageData.map((u4) => u4.coupon.couponCode).join(", "), couponDescription: `${couponUsageData.length} coupons applied`, discountAmount: totalDiscountAmount }; } const status = order.orderStatus[0]; const refund = order.refunds[0]; let deliveryStatus; let orderStatusResult; const allItemsPackaged = order.orderItems.every( (item) => item.is_packaged ); if (status?.isCancelled) { deliveryStatus = "cancelled"; orderStatusResult = "cancelled"; } else if (status?.isDelivered) { deliveryStatus = "success"; orderStatusResult = "success"; } else if (allItemsPackaged) { deliveryStatus = "packaged"; orderStatusResult = "success"; } else { deliveryStatus = "pending"; orderStatusResult = "success"; } const paymentMode = order.isCod ? "CoD" : "Online"; const paymentStatus = status?.paymentStatus || "pending"; const refundStatus = refund?.refundStatus || "none"; const refundAmount = refund?.refundAmount ? parseFloat(refund.refundAmount.toString()) : null; const items = await Promise.all( order.orderItems.map(async (item) => { const signedImages = item.product.images ? scaffoldAssetUrl( item.product.images ) : []; return { productName: item.product.name, quantity: parseFloat(item.quantity), price: parseFloat(item.price.toString()), discountedPrice: parseFloat( item.discountedPrice?.toString() || item.price.toString() ), amount: parseFloat(item.price.toString()) * parseFloat(item.quantity), image: signedImages[0] || null }; }) ); return { id: order.id, orderId: `ORD${order.id}`, orderDate: order.createdAt.toISOString(), deliveryStatus, deliveryDate: order.slot?.deliveryTime.toISOString(), orderStatus: orderStatusResult, cancellationStatus: orderStatusResult, cancelReason: status?.cancelReason || null, paymentMode, paymentStatus, refundStatus, refundAmount, userNotes: order.userNotes || null, items, couponCode: couponData?.couponCode || null, couponDescription: couponData?.couponDescription || null, discountAmount: couponData?.discountAmount || null, orderAmount: parseFloat(order.totalAmount.toString()), isFlashDelivery: order.isFlashDelivery, createdAt: order.createdAt.toISOString(), totalAmount: parseFloat(order.totalAmount.toString()), deliveryCharge: parseFloat(order.deliveryCharge.toString()) }; }), cancelOrder: protectedProcedure.input( external_exports.object({ id: external_exports.number(), reason: external_exports.string().min(1, "Cancellation reason is required") }) ).mutation(async ({ input, ctx }) => { try { const userId = ctx.user.userId; const { id, reason } = input; const order = await getOrderBasic(id); if (!order) { console.error("Order not found:", id); throw new ApiError("Order not found", 404); } if (order.userId !== userId) { console.error("Order does not belong to user:", { orderId: id, orderUserId: order.userId, requestUserId: userId }); throw new ApiError("Order not found", 404); } const status = order.orderStatus[0]; if (!status) { console.error("Order status not found for order:", id); throw new ApiError("Order status not found", 400); } if (status.isCancelled) { console.error("Order is already cancelled:", id); throw new ApiError("Order is already cancelled", 400); } if (status.isDelivered) { console.error("Cannot cancel delivered order:", id); throw new ApiError("Cannot cancel delivered order", 400); } await cancelOrderTransaction(id, status.id, reason, order.isCod); await sendOrderCancelledNotification(userId, id.toString()); await publishCancellation(id, "user", reason); return { success: true, message: "Order cancelled successfully" }; } catch (e) { console.log(e); throw new ApiError("failed to cancel order"); } }), updateUserNotes: protectedProcedure.input( external_exports.object({ id: external_exports.number(), userNotes: external_exports.string() }) ).mutation(async ({ input, ctx }) => { const userId = ctx.user.userId; const { id, userNotes } = input; const order = await getOrderBasic(id); if (!order) { console.error("Order not found:", id); throw new ApiError("Order not found", 404); } if (order.userId !== userId) { console.error("Order does not belong to user:", { orderId: id, orderUserId: order.userId, requestUserId: userId }); throw new ApiError("Order not found", 404); } const status = order.orderStatus[0]; if (!status) { console.error("Order status not found for order:", id); throw new ApiError("Order status not found", 400); } if (status.isDelivered) { console.error("Cannot update notes for delivered order:", id); throw new ApiError("Cannot update notes for delivered order", 400); } if (status.isCancelled) { console.error("Cannot update notes for cancelled order:", id); throw new ApiError("Cannot update notes for cancelled order", 400); } await updateOrderNotes2(id, userNotes); return { success: true, message: "Notes updated successfully" }; }), getRecentlyOrderedProducts: protectedProcedure.input( external_exports.object({ limit: external_exports.number().min(1).max(50).default(20) }).optional() ).query(async ({ input, ctx }) => { const { limit = 20 } = input || {}; const userId = ctx.user.userId; const thirtyDaysAgo = /* @__PURE__ */ new Date(); thirtyDaysAgo.setDate(thirtyDaysAgo.getDate() - 30); const recentOrderIds = await getRecentlyDeliveredOrderIds(userId, 10, thirtyDaysAgo); if (recentOrderIds.length === 0) { return { success: true, products: [] }; } const productIds = await getProductIdsFromOrders(recentOrderIds); if (productIds.length === 0) { return { success: true, products: [] }; } const productsWithUnits = await getProductsForRecentOrders(productIds, limit); const formattedProducts = await Promise.all( productsWithUnits.map(async (product) => { const nextDeliveryDate = await getNextDeliveryDate(product.id); return { id: product.id, name: product.name, shortDescription: product.shortDescription, price: product.price, unit: product.unitShortNotation, incrementStep: product.incrementStep, isOutOfStock: product.isOutOfStock, nextDeliveryDate: nextDeliveryDate ? nextDeliveryDate.toISOString() : null, images: scaffoldAssetUrl( product.images || [] ) }; }) ); return { success: true, products: formattedProducts }; }) }); // src/trpc/apis/user-apis/apis/product.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var import_dayjs4 = __toESM(require_dayjs_min()); var signProductImages = /* @__PURE__ */ __name((product) => ({ ...product, images: scaffoldAssetUrl(product.images || []) }), "signProductImages"); var productRouter2 = router2({ getProductDetails: publicProcedure.input(external_exports.object({ id: external_exports.string().regex(/^\d+$/, "Invalid product ID") })).query(async ({ input }) => { const { id } = input; const productId = parseInt(id); if (isNaN(productId)) { throw new Error("Invalid product ID"); } console.log("from the api to get product details"); const cachedProduct = await getProductById5(productId); if (cachedProduct) { const currentTime = /* @__PURE__ */ new Date(); const filteredSlots = cachedProduct.deliverySlots.filter( (slot) => (0, import_dayjs4.default)(slot.freezeTime).isAfter(currentTime) && !slot.isCapacityFull ); return { ...cachedProduct, deliverySlots: filteredSlots }; } const productData = await getProductDetailById(productId); if (!productData) { throw new Error("Product not found"); } return signProductImages(productData); }), getProductReviews: publicProcedure.input(external_exports.object({ productId: external_exports.number().int().positive(), limit: external_exports.number().int().min(1).max(50).optional().default(10), offset: external_exports.number().int().min(0).optional().default(0) })).query(async ({ input }) => { const { productId, limit, offset } = input; const { reviews, totalCount } = await getProductReviews2(productId, limit, offset); const reviewsWithSignedUrls = reviews.map((review) => ({ ...review, signedImageUrls: scaffoldAssetUrl(review.imageUrls || []) })); const hasMore = offset + limit < totalCount; return { reviews: reviewsWithSignedUrls, hasMore }; }), createReview: protectedProcedure.input(external_exports.object({ productId: external_exports.number().int().positive(), reviewBody: external_exports.string().min(1, "Review body is required"), ratings: external_exports.number().int().min(1).max(5), imageUrls: external_exports.array(external_exports.string()).optional().default([]), uploadUrls: external_exports.array(external_exports.string()).optional().default([]) })).mutation(async ({ input, ctx }) => { const { productId, reviewBody, ratings, imageUrls, uploadUrls } = input; const userId = ctx.user.userId; const product = await getProductById3(productId); if (!product) { throw new ApiError("Product not found", 404); } const imageKeys = uploadUrls.map((item) => extractKeyFromPresignedUrl(item)); const newReview = await createProductReview(userId, productId, reviewBody, ratings, imageKeys); if (uploadUrls && uploadUrls.length > 0) { try { await Promise.all(uploadUrls.map((url2) => claimUploadUrl(url2))); } catch (error50) { console.error("Error claiming upload URLs:", error50); } } return { success: true, review: newReview }; }), getAllProductsSummary: publicProcedure.query(async () => { const allCachedProducts = await getAllProducts2(); const transformedProducts = allCachedProducts.map((product) => ({ ...product, images: product.images || [], deliverySlots: [], specialDeals: [] })); return transformedProducts; }) }); // src/trpc/apis/user-apis/apis/user.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var userRouter2 = router2({ getSelfData: protectedProcedure.query(async ({ ctx }) => { const userId = ctx.user.userId; if (!userId) { throw new ApiError("User not authenticated", 401); } const user = await getUserById2(userId); if (!user) { throw new ApiError("User not found", 404); } const userDetail = await getUserDetailByUserId(userId); const profileImageSignedUrl = userDetail?.profileImage ? await generateSignedUrlFromS3Url(userDetail.profileImage) : null; return { success: true, data: { user: { id: user.id, name: user.name, email: user.email, mobile: user.mobile, profileImage: profileImageSignedUrl, bio: userDetail?.bio || null, dateOfBirth: userDetail?.dateOfBirth ? new Date(userDetail.dateOfBirth).toISOString() : null, gender: userDetail?.gender || null, occupation: userDetail?.occupation || null } } }; }), checkProfileComplete: protectedProcedure.query(async ({ ctx }) => { const userId = ctx.user.userId; if (!userId) { throw new ApiError("User not authenticated", 401); } const result = await getUserWithCreds(userId); if (!result) { throw new ApiError("User not found", 404); } return { isComplete: !!(result.user.name && result.user.email && result.creds) }; }), savePushToken: publicProcedure.input(external_exports.object({ token: external_exports.string() })).mutation(async ({ input, ctx }) => { const { token } = input; const userId = ctx.user?.userId; if (userId) { await upsertNotifCred(userId, token); await deleteUnloggedToken(token); } else { const existing = await getUnloggedToken(token); if (existing) { await upsertUnloggedToken(token); } else { await upsertUnloggedToken(token); } } return { success: true }; }) }); // src/trpc/apis/user-apis/apis/coupon.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var generateCouponDescription = /* @__PURE__ */ __name((coupon) => { let desc2 = ""; if (coupon.discountPercent) { desc2 += `${coupon.discountPercent}% off`; } else if (coupon.flatDiscount) { desc2 += `\u20B9${coupon.flatDiscount} off`; } if (coupon.minOrder) { desc2 += ` on orders above \u20B9${coupon.minOrder}`; } if (coupon.maxValue) { desc2 += ` (max discount \u20B9${coupon.maxValue})`; } return desc2; }, "generateCouponDescription"); var userCouponRouter = router2({ getEligible: protectedProcedure.query(async ({ ctx }) => { try { const userId = ctx.user.userId; const allCoupons = await getActiveCouponsWithRelations(userId); const applicableCoupons = allCoupons.filter((coupon) => { if (!coupon.isUserBased) return true; const applicableUsers = coupon.applicableUsers || []; return applicableUsers.some((au) => au.userId === userId); }); return { success: true, data: applicableCoupons }; } catch (e) { console.log(e); throw new ApiError("Unable to get coupons"); } }), getProductCoupons: protectedProcedure.input(external_exports.object({ productId: external_exports.number().int().positive() })).query(async ({ input, ctx }) => { const userId = ctx.user.userId; const { productId } = input; const allCoupons = await getActiveCouponsWithRelations(userId); const applicableCoupons = allCoupons.filter((coupon) => { const applicableUsers = coupon.applicableUsers || []; const userApplicable = !coupon.isUserBased || applicableUsers.some((au) => au.userId === userId); const applicableProducts = coupon.applicableProducts || []; const productApplicable = applicableProducts.length === 0 || applicableProducts.some((ap) => ap.productId === productId); return userApplicable && productApplicable; }); return { success: true, data: applicableCoupons }; }), getMyCoupons: protectedProcedure.query(async ({ ctx }) => { const userId = ctx.user.userId; const allCoupons = await getAllCouponsWithRelations(userId); const applicableCoupons = allCoupons.filter((coupon) => { const isNotInvalidated = !coupon.isInvalidated; const applicableUsers = coupon.applicableUsers || []; const isApplicable = coupon.isApplyForAll || applicableUsers.some((au) => au.userId === userId); const isNotExpired = !coupon.validTill || new Date(coupon.validTill) > /* @__PURE__ */ new Date(); return isNotInvalidated && isApplicable && isNotExpired; }); const personalCoupons = []; const generalCoupons = []; applicableCoupons.forEach((coupon) => { const usageCount = coupon.usages.length; const isExpired = false; const isUsedUp = Boolean(coupon.maxLimitForUser && usageCount >= coupon.maxLimitForUser); const couponDisplay = { id: coupon.id, code: coupon.couponCode, discountType: coupon.discountPercent ? "percentage" : "flat", discountValue: parseFloat(coupon.discountPercent || coupon.flatDiscount || "0"), maxValue: coupon.maxValue ? parseFloat(coupon.maxValue) : void 0, minOrder: coupon.minOrder ? parseFloat(coupon.minOrder) : void 0, description: generateCouponDescription(coupon), validTill: coupon.validTill ? new Date(coupon.validTill) : void 0, usageCount, maxLimitForUser: coupon.maxLimitForUser ? parseInt(coupon.maxLimitForUser.toString()) : void 0, isExpired, isUsedUp }; if ((coupon.applicableUsers || []).some((au) => au.userId === userId) && !coupon.isApplyForAll) { personalCoupons.push(couponDisplay); } else if (coupon.isApplyForAll) { generalCoupons.push(couponDisplay); } }); return { success: true, data: { personal: personalCoupons, general: generalCoupons } }; }), redeemReservedCoupon: protectedProcedure.input(external_exports.object({ secretCode: external_exports.string() })).mutation(async ({ input, ctx }) => { const userId = ctx.user.userId; const { secretCode } = input; const reservedCoupon = await getReservedCouponByCode(secretCode); if (!reservedCoupon) { throw new ApiError("Invalid or already redeemed coupon code", 400); } if (reservedCoupon.redeemedBy === userId) { throw new ApiError("You have already redeemed this coupon", 400); } const couponResult = await redeemReservedCoupon(userId, reservedCoupon); return { success: true, coupon: couponResult }; }) }); // src/trpc/apis/user-apis/apis/payments.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); import crypto2 from "crypto"; // src/lib/payments-utils.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var RazorpayPaymentService = class { static { __name(this, "RazorpayPaymentService"); } // private static instance = new Razorpay({ // key_id: razorpayId, // key_secret: razorpaySecret, // }); // static async createOrder(orderId, amount) { } static async insertPaymentRecord(orderId, razorpayOrder, tx) { } static async initiateRefund(paymentId, amount) { } static async fetchRefund(refundId) { } }; // src/trpc/apis/user-apis/apis/payments.ts var paymentRouter = router2({ createRazorpayOrder: protectedProcedure.input(external_exports.object({ orderId: external_exports.string() })).mutation(async ({ input, ctx }) => { const userId = ctx.user.userId; const { orderId } = input; const order = await getOrderById(parseInt(orderId)); if (!order) { throw new ApiError("Order not found", 404); } if (order.userId !== userId) { throw new ApiError("Order does not belong to user", 403); } const existingPayment = await getPaymentByOrderId(parseInt(orderId)); if (existingPayment && existingPayment.status === "pending") { return { razorpayOrderId: existingPayment.merchantOrderId, key: razorpayId }; } if (order.totalAmount === null) { throw new ApiError("Order total is missing", 400); } const razorpayOrder = await RazorpayPaymentService.createOrder(parseInt(orderId), order.totalAmount); await RazorpayPaymentService.insertPaymentRecord(parseInt(orderId), razorpayOrder); return { razorpayOrderId: 0, key: razorpayId }; }), verifyPayment: protectedProcedure.input(external_exports.object({ razorpay_payment_id: external_exports.string(), razorpay_order_id: external_exports.string(), razorpay_signature: external_exports.string() })).mutation(async ({ input, ctx }) => { const { razorpay_payment_id, razorpay_order_id, razorpay_signature } = input; const expectedSignature = crypto2.createHmac("sha256", razorpaySecret).update(razorpay_order_id + "|" + razorpay_payment_id).digest("hex"); if (expectedSignature !== razorpay_signature) { throw new ApiError("Invalid payment signature", 400); } const currentPayment = await getPaymentByMerchantOrderId(razorpay_order_id); if (!currentPayment) { throw new ApiError("Payment record not found", 404); } const updatedPayload = { ...currentPayment.payload || {}, payment_id: razorpay_payment_id, signature: razorpay_signature }; const updatedPayment = await updatePaymentSuccess(razorpay_order_id, updatedPayload); if (!updatedPayment) { throw new ApiError("Payment record not found", 404); } await updateOrderPaymentStatus(updatedPayment.orderId, "success"); return { success: true, message: "Payment verified successfully" }; }), markPaymentFailed: protectedProcedure.input(external_exports.object({ merchantOrderId: external_exports.string() })).mutation(async ({ input, ctx }) => { const userId = ctx.user.userId; const { merchantOrderId } = input; const payment = await getPaymentByMerchantOrderId(merchantOrderId); if (!payment) { throw new ApiError("Payment not found", 404); } const order = await getOrderById(payment.orderId); if (!order || order.userId !== userId) { throw new ApiError("Payment does not belong to user", 403); } await markPaymentFailed(payment.id); return { success: true, message: "Payment marked as failed" }; }) }); // src/trpc/apis/user-apis/apis/file-upload.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var fileUploadRouter = router2({ generateUploadUrls: protectedProcedure.input(external_exports.object({ contextString: external_exports.enum(["review", "product_info", "notification", "complaint", "profile", "tags"]), mimeTypes: external_exports.array(external_exports.string()) })).mutation(async ({ input }) => { const { contextString, mimeTypes } = input; const uploadUrls = []; const keys = []; for (const mimeType of mimeTypes) { let folder; if (contextString === "review") { folder = "review-images"; } else if (contextString === "product_info") { folder = "product-images"; } else if (contextString === "notification") { folder = "notification-images"; } else if (contextString === "complaint") { folder = "complaint-images"; } else if (contextString === "profile") { folder = "profile-images"; } else if (contextString === "tags") { folder = "tags"; } else { folder = ""; } const extension = mimeType === "image/jpeg" ? ".jpg" : mimeType === "image/png" ? ".png" : mimeType === "image/gif" ? ".gif" : ".jpg"; const key = `${folder}/${Date.now()}${extension}`; try { const uploadUrl = await generateUploadUrl(key, mimeType); uploadUrls.push(uploadUrl); keys.push(key); } catch (error50) { console.error("Error generating upload URL:", error50); throw new ApiError("Failed to generate upload URL", 500); } } return { uploadUrls }; }) }); // src/trpc/apis/user-apis/apis/tags.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var tagsRouter = router2({ getTagsByStore: publicProcedure.input(external_exports.object({ storeId: external_exports.number() })).query(async ({ input }) => { const { storeId } = input; const tags = await getTagsByStoreId(storeId); return { tags: tags.map((tag2) => ({ id: tag2.id, tagName: tag2.tagName, tagDescription: tag2.tagDescription, imageUrl: tag2.imageUrl, productIds: tag2.productIds })) }; }) }); // src/trpc/apis/user-apis/apis/user-trpc-index.ts var userRouter3 = router2({ address: addressRouter, auth: authRouter, banner: bannerRouter, cart: cartRouter, complaint: complaintRouter2, order: orderRouter2, product: productRouter2, slots: slotsRouter, user: userRouter2, coupon: userCouponRouter, payment: paymentRouter, stores: storesRouter, fileUpload: fileUploadRouter, tags: tagsRouter }); // src/trpc/router.ts var appRouter = router2({ hello: publicProcedure.input(external_exports.object({ name: external_exports.string() })).query(({ input }) => { return { greeting: `Hello ${input.name}!` }; }), admin: adminRouter, user: userRouter3, common: commonApiRouter }); // src/app.ts var createApp = /* @__PURE__ */ __name(() => { const app = new Hono2(); app.use(cors({ origin: "http://localhost:5174", allowMethods: ["GET", "POST", "PUT", "PATCH", "DELETE", "OPTIONS"], allowHeaders: ["Origin", "X-Requested-With", "Content-Type", "Accept", "Authorization"], credentials: true })); app.use(logger()); app.use("/api/trpc", trpcServer({ router: appRouter, createContext: /* @__PURE__ */ __name(async ({ req }) => { let user = null; let staffUser = null; const authHeader = req.headers.get("authorization"); if (authHeader?.startsWith("Bearer ")) { const token = authHeader.substring(7); try { const { payload } = await jwtVerify(token, encodedJwtSecret); const decoded = payload; if (decoded.staffId) { const staff = await getStaffUserById(decoded.staffId); if (staff) { user = staffUser; staffUser = { id: staff.id, name: staff.name }; } } else { user = decoded; const suspended = await isUserSuspended(user.userId); if (suspended) { throw new TRPCError({ code: "FORBIDDEN", message: "Account suspended" }); } } } catch (err) { } } return { req, user, staffUser }; }, "createContext"), onError({ error: error50, path: path3, type, ctx }) { console.error("\u{1F6A8} tRPC Error :", { path: path3, type, code: error50.code, message: error50.message, userId: ctx?.user?.userId, stack: error50.stack }); } })); app.route("/api", main_router_default); app.onError((err, c) => { console.error(err); let status = 500; let message2 = "Internal Server Error"; if (err instanceof TRPCError) { const trpcStatusMap = { BAD_REQUEST: 400, UNAUTHORIZED: 401, FORBIDDEN: 403, NOT_FOUND: 404, TIMEOUT: 408, CONFLICT: 409, PRECONDITION_FAILED: 412, PAYLOAD_TOO_LARGE: 413, METHOD_NOT_SUPPORTED: 405, UNPROCESSABLE_CONTENT: 422, TOO_MANY_REQUESTS: 429, INTERNAL_SERVER_ERROR: 500 }; status = trpcStatusMap[err.code] || 500; message2 = err.message; } else if (err.statusCode) { status = err.statusCode; message2 = err.message; } else if (err.status) { status = err.status; message2 = err.message; } else if (err.message) { message2 = err.message; } return c.json({ message: message2 }, status); }); return app; }, "createApp"); // worker.ts var worker_default = { async fetch(request, env2, ctx) { ; globalThis.ENV = env2; if (env2.DB) { initDb(env2.DB); } const app = createApp(); return app.fetch(request, env2, ctx); } }; // ../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/wrangler/templates/middleware/middleware-ensure-req-body-drained.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var drainBody = /* @__PURE__ */ __name(async (request, env2, _ctx, middlewareCtx) => { try { return await middlewareCtx.next(request, env2); } finally { try { if (request.body !== null && !request.bodyUsed) { const reader = request.body.getReader(); while (!(await reader.read()).done) { } } } catch (e) { console.error("Failed to drain the unused request body.", e); } } }, "drainBody"); var middleware_ensure_req_body_drained_default = drainBody; // ../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/wrangler/templates/middleware/middleware-miniflare3-json-error.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); function reduceError(e) { return { name: e?.name, message: e?.message ?? String(e), stack: e?.stack, cause: e?.cause === void 0 ? void 0 : reduceError(e.cause) }; } __name(reduceError, "reduceError"); var jsonError = /* @__PURE__ */ __name(async (request, env2, _ctx, middlewareCtx) => { try { return await middlewareCtx.next(request, env2); } catch (e) { const error50 = reduceError(e); return Response.json(error50, { status: 500, headers: { "MF-Experimental-Error-Stack": "true" } }); } }, "jsonError"); var middleware_miniflare3_json_error_default = jsonError; // .wrangler/tmp/bundle-rJ86wI/middleware-insertion-facade.js var __INTERNAL_WRANGLER_MIDDLEWARE__ = [ middleware_ensure_req_body_drained_default, middleware_miniflare3_json_error_default ]; var middleware_insertion_facade_default = worker_default; // ../../../../../../private/tmp/bunx-501-wrangler@latest/node_modules/wrangler/templates/middleware/common.ts init_modules_watch_stub(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_process(); init_virtual_unenv_global_polyfill_cloudflare_unenv_preset_node_console(); init_performance2(); var __facade_middleware__ = []; function __facade_register__(...args) { __facade_middleware__.push(...args.flat()); } __name(__facade_register__, "__facade_register__"); function __facade_invokeChain__(request, env2, ctx, dispatch, middlewareChain) { const [head, ...tail] = middlewareChain; const middlewareCtx = { dispatch, next(newRequest, newEnv) { return __facade_invokeChain__(newRequest, newEnv, ctx, dispatch, tail); } }; return head(request, env2, ctx, middlewareCtx); } __name(__facade_invokeChain__, "__facade_invokeChain__"); function __facade_invoke__(request, env2, ctx, dispatch, finalMiddleware) { return __facade_invokeChain__(request, env2, ctx, dispatch, [ ...__facade_middleware__, finalMiddleware ]); } __name(__facade_invoke__, "__facade_invoke__"); // .wrangler/tmp/bundle-rJ86wI/middleware-loader.entry.ts var __Facade_ScheduledController__ = class ___Facade_ScheduledController__ { constructor(scheduledTime, cron, noRetry) { this.scheduledTime = scheduledTime; this.cron = cron; this.#noRetry = noRetry; } static { __name(this, "__Facade_ScheduledController__"); } #noRetry; noRetry() { if (!(this instanceof ___Facade_ScheduledController__)) { throw new TypeError("Illegal invocation"); } this.#noRetry(); } }; function wrapExportedHandler(worker) { if (__INTERNAL_WRANGLER_MIDDLEWARE__ === void 0 || __INTERNAL_WRANGLER_MIDDLEWARE__.length === 0) { return worker; } for (const middleware2 of __INTERNAL_WRANGLER_MIDDLEWARE__) { __facade_register__(middleware2); } const fetchDispatcher = /* @__PURE__ */ __name(function(request, env2, ctx) { if (worker.fetch === void 0) { throw new Error("Handler does not export a fetch() function."); } return worker.fetch(request, env2, ctx); }, "fetchDispatcher"); return { ...worker, fetch(request, env2, ctx) { const dispatcher = /* @__PURE__ */ __name(function(type, init) { if (type === "scheduled" && worker.scheduled !== void 0) { const controller = new __Facade_ScheduledController__( Date.now(), init.cron ?? "", () => { } ); return worker.scheduled(controller, env2, ctx); } }, "dispatcher"); return __facade_invoke__(request, env2, ctx, dispatcher, fetchDispatcher); } }; } __name(wrapExportedHandler, "wrapExportedHandler"); function wrapWorkerEntrypoint(klass) { if (__INTERNAL_WRANGLER_MIDDLEWARE__ === void 0 || __INTERNAL_WRANGLER_MIDDLEWARE__.length === 0) { return klass; } for (const middleware2 of __INTERNAL_WRANGLER_MIDDLEWARE__) { __facade_register__(middleware2); } return class extends klass { #fetchDispatcher = /* @__PURE__ */ __name((request, env2, ctx) => { this.env = env2; this.ctx = ctx; if (super.fetch === void 0) { throw new Error("Entrypoint class does not define a fetch() function."); } return super.fetch(request); }, "#fetchDispatcher"); #dispatcher = /* @__PURE__ */ __name((type, init) => { if (type === "scheduled" && super.scheduled !== void 0) { const controller = new __Facade_ScheduledController__( Date.now(), init.cron ?? "", () => { } ); return super.scheduled(controller); } }, "#dispatcher"); fetch(request) { return __facade_invoke__( request, this.env, this.ctx, this.#dispatcher, this.#fetchDispatcher ); } }; } __name(wrapWorkerEntrypoint, "wrapWorkerEntrypoint"); var WRAPPED_ENTRY; if (typeof middleware_insertion_facade_default === "object") { WRAPPED_ENTRY = wrapExportedHandler(middleware_insertion_facade_default); } else if (typeof middleware_insertion_facade_default === "function") { WRAPPED_ENTRY = wrapWorkerEntrypoint(middleware_insertion_facade_default); } var middleware_loader_entry_default = WRAPPED_ENTRY; export { __INTERNAL_WRANGLER_MIDDLEWARE__, middleware_loader_entry_default as default }; /*! Bundled license information: @trpc/server/dist/resolveResponse-CHqBlAgR.mjs: (* istanbul ignore if -- @preserve *) (*! * is-plain-object * * Copyright (c) 2014-2017, Jon Schlinkert. * Released under the MIT License. *) @trpc/server/dist/resolveResponse-CHqBlAgR.mjs: (* istanbul ignore if -- @preserve *) */ //# sourceMappingURL=worker.js.map