El endpoint queda abierto para que cualquier servicio local pueda solicitar tokens sin necesitar el SERVER_TOKEN.
27001 lines
895 KiB
JavaScript
Executable File
27001 lines
895 KiB
JavaScript
Executable File
#!/usr/bin/env node
|
|
import { createRequire } from "module"; const require = createRequire(import.meta.url);
|
|
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 __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 __commonJS = (cb, mod) => function __require2() {
|
|
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
|
};
|
|
var __export = (target, all) => {
|
|
for (var name in all)
|
|
__defProp(target, name, { get: all[name], enumerable: true });
|
|
};
|
|
var __copyProps = (to, from, except, desc) => {
|
|
if (from && typeof from === "object" || typeof from === "function") {
|
|
for (let key of __getOwnPropNames(from))
|
|
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
}
|
|
return to;
|
|
};
|
|
var __toESM = (mod, isNodeMode, target) => (target = 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(target, "default", { value: mod, enumerable: true }) : target,
|
|
mod
|
|
));
|
|
|
|
// node_modules/ws/lib/constants.js
|
|
var require_constants = __commonJS({
|
|
"node_modules/ws/lib/constants.js"(exports, module) {
|
|
"use strict";
|
|
var BINARY_TYPES = ["nodebuffer", "arraybuffer", "fragments"];
|
|
var hasBlob = typeof Blob !== "undefined";
|
|
if (hasBlob) BINARY_TYPES.push("blob");
|
|
module.exports = {
|
|
BINARY_TYPES,
|
|
CLOSE_TIMEOUT: 3e4,
|
|
EMPTY_BUFFER: Buffer.alloc(0),
|
|
GUID: "258EAFA5-E914-47DA-95CA-C5AB0DC85B11",
|
|
hasBlob,
|
|
kForOnEventAttribute: Symbol("kIsForOnEventAttribute"),
|
|
kListener: Symbol("kListener"),
|
|
kStatusCode: Symbol("status-code"),
|
|
kWebSocket: Symbol("websocket"),
|
|
NOOP: () => {
|
|
}
|
|
};
|
|
}
|
|
});
|
|
|
|
// node_modules/ws/lib/buffer-util.js
|
|
var require_buffer_util = __commonJS({
|
|
"node_modules/ws/lib/buffer-util.js"(exports, module) {
|
|
"use strict";
|
|
var { EMPTY_BUFFER } = require_constants();
|
|
var FastBuffer = Buffer[Symbol.species];
|
|
function concat(list, totalLength) {
|
|
if (list.length === 0) return EMPTY_BUFFER;
|
|
if (list.length === 1) return list[0];
|
|
const target = Buffer.allocUnsafe(totalLength);
|
|
let offset = 0;
|
|
for (let i = 0; i < list.length; i++) {
|
|
const buf = list[i];
|
|
target.set(buf, offset);
|
|
offset += buf.length;
|
|
}
|
|
if (offset < totalLength) {
|
|
return new FastBuffer(target.buffer, target.byteOffset, offset);
|
|
}
|
|
return target;
|
|
}
|
|
function _mask(source, mask, output, offset, length) {
|
|
for (let i = 0; i < length; i++) {
|
|
output[offset + i] = source[i] ^ mask[i & 3];
|
|
}
|
|
}
|
|
function _unmask(buffer, mask) {
|
|
for (let i = 0; i < buffer.length; i++) {
|
|
buffer[i] ^= mask[i & 3];
|
|
}
|
|
}
|
|
function toArrayBuffer(buf) {
|
|
if (buf.length === buf.buffer.byteLength) {
|
|
return buf.buffer;
|
|
}
|
|
return buf.buffer.slice(buf.byteOffset, buf.byteOffset + buf.length);
|
|
}
|
|
function toBuffer(data) {
|
|
toBuffer.readOnly = true;
|
|
if (Buffer.isBuffer(data)) return data;
|
|
let buf;
|
|
if (data instanceof ArrayBuffer) {
|
|
buf = new FastBuffer(data);
|
|
} else if (ArrayBuffer.isView(data)) {
|
|
buf = new FastBuffer(data.buffer, data.byteOffset, data.byteLength);
|
|
} else {
|
|
buf = Buffer.from(data);
|
|
toBuffer.readOnly = false;
|
|
}
|
|
return buf;
|
|
}
|
|
module.exports = {
|
|
concat,
|
|
mask: _mask,
|
|
toArrayBuffer,
|
|
toBuffer,
|
|
unmask: _unmask
|
|
};
|
|
if (!process.env.WS_NO_BUFFER_UTIL) {
|
|
try {
|
|
const bufferUtil = __require("bufferutil");
|
|
module.exports.mask = function(source, mask, output, offset, length) {
|
|
if (length < 48) _mask(source, mask, output, offset, length);
|
|
else bufferUtil.mask(source, mask, output, offset, length);
|
|
};
|
|
module.exports.unmask = function(buffer, mask) {
|
|
if (buffer.length < 32) _unmask(buffer, mask);
|
|
else bufferUtil.unmask(buffer, mask);
|
|
};
|
|
} catch (e) {
|
|
}
|
|
}
|
|
}
|
|
});
|
|
|
|
// node_modules/ws/lib/limiter.js
|
|
var require_limiter = __commonJS({
|
|
"node_modules/ws/lib/limiter.js"(exports, module) {
|
|
"use strict";
|
|
var kDone = Symbol("kDone");
|
|
var kRun = Symbol("kRun");
|
|
var Limiter = class {
|
|
/**
|
|
* Creates a new `Limiter`.
|
|
*
|
|
* @param {Number} [concurrency=Infinity] The maximum number of jobs allowed
|
|
* to run concurrently
|
|
*/
|
|
constructor(concurrency) {
|
|
this[kDone] = () => {
|
|
this.pending--;
|
|
this[kRun]();
|
|
};
|
|
this.concurrency = concurrency || Infinity;
|
|
this.jobs = [];
|
|
this.pending = 0;
|
|
}
|
|
/**
|
|
* Adds a job to the queue.
|
|
*
|
|
* @param {Function} job The job to run
|
|
* @public
|
|
*/
|
|
add(job) {
|
|
this.jobs.push(job);
|
|
this[kRun]();
|
|
}
|
|
/**
|
|
* Removes a job from the queue and runs it if possible.
|
|
*
|
|
* @private
|
|
*/
|
|
[kRun]() {
|
|
if (this.pending === this.concurrency) return;
|
|
if (this.jobs.length) {
|
|
const job = this.jobs.shift();
|
|
this.pending++;
|
|
job(this[kDone]);
|
|
}
|
|
}
|
|
};
|
|
module.exports = Limiter;
|
|
}
|
|
});
|
|
|
|
// node_modules/ws/lib/permessage-deflate.js
|
|
var require_permessage_deflate = __commonJS({
|
|
"node_modules/ws/lib/permessage-deflate.js"(exports, module) {
|
|
"use strict";
|
|
var zlib = __require("zlib");
|
|
var bufferUtil = require_buffer_util();
|
|
var Limiter = require_limiter();
|
|
var { kStatusCode } = require_constants();
|
|
var FastBuffer = Buffer[Symbol.species];
|
|
var TRAILER = Buffer.from([0, 0, 255, 255]);
|
|
var kPerMessageDeflate = Symbol("permessage-deflate");
|
|
var kTotalLength = Symbol("total-length");
|
|
var kCallback = Symbol("callback");
|
|
var kBuffers = Symbol("buffers");
|
|
var kError = Symbol("error");
|
|
var zlibLimiter;
|
|
var PerMessageDeflate = class {
|
|
/**
|
|
* Creates a PerMessageDeflate instance.
|
|
*
|
|
* @param {Object} [options] Configuration options
|
|
* @param {(Boolean|Number)} [options.clientMaxWindowBits] Advertise support
|
|
* for, or request, a custom client window size
|
|
* @param {Boolean} [options.clientNoContextTakeover=false] Advertise/
|
|
* acknowledge disabling of client context takeover
|
|
* @param {Number} [options.concurrencyLimit=10] The number of concurrent
|
|
* calls to zlib
|
|
* @param {(Boolean|Number)} [options.serverMaxWindowBits] Request/confirm the
|
|
* use of a custom server window size
|
|
* @param {Boolean} [options.serverNoContextTakeover=false] Request/accept
|
|
* disabling of server context takeover
|
|
* @param {Number} [options.threshold=1024] Size (in bytes) below which
|
|
* messages should not be compressed if context takeover is disabled
|
|
* @param {Object} [options.zlibDeflateOptions] Options to pass to zlib on
|
|
* deflate
|
|
* @param {Object} [options.zlibInflateOptions] Options to pass to zlib on
|
|
* inflate
|
|
* @param {Boolean} [isServer=false] Create the instance in either server or
|
|
* client mode
|
|
* @param {Number} [maxPayload=0] The maximum allowed message length
|
|
*/
|
|
constructor(options, isServer, maxPayload) {
|
|
this._maxPayload = maxPayload | 0;
|
|
this._options = options || {};
|
|
this._threshold = this._options.threshold !== void 0 ? this._options.threshold : 1024;
|
|
this._isServer = !!isServer;
|
|
this._deflate = null;
|
|
this._inflate = null;
|
|
this.params = null;
|
|
if (!zlibLimiter) {
|
|
const concurrency = this._options.concurrencyLimit !== void 0 ? this._options.concurrencyLimit : 10;
|
|
zlibLimiter = new Limiter(concurrency);
|
|
}
|
|
}
|
|
/**
|
|
* @type {String}
|
|
*/
|
|
static get extensionName() {
|
|
return "permessage-deflate";
|
|
}
|
|
/**
|
|
* Create an extension negotiation offer.
|
|
*
|
|
* @return {Object} Extension parameters
|
|
* @public
|
|
*/
|
|
offer() {
|
|
const params = {};
|
|
if (this._options.serverNoContextTakeover) {
|
|
params.server_no_context_takeover = true;
|
|
}
|
|
if (this._options.clientNoContextTakeover) {
|
|
params.client_no_context_takeover = true;
|
|
}
|
|
if (this._options.serverMaxWindowBits) {
|
|
params.server_max_window_bits = this._options.serverMaxWindowBits;
|
|
}
|
|
if (this._options.clientMaxWindowBits) {
|
|
params.client_max_window_bits = this._options.clientMaxWindowBits;
|
|
} else if (this._options.clientMaxWindowBits == null) {
|
|
params.client_max_window_bits = true;
|
|
}
|
|
return params;
|
|
}
|
|
/**
|
|
* Accept an extension negotiation offer/response.
|
|
*
|
|
* @param {Array} configurations The extension negotiation offers/reponse
|
|
* @return {Object} Accepted configuration
|
|
* @public
|
|
*/
|
|
accept(configurations) {
|
|
configurations = this.normalizeParams(configurations);
|
|
this.params = this._isServer ? this.acceptAsServer(configurations) : this.acceptAsClient(configurations);
|
|
return this.params;
|
|
}
|
|
/**
|
|
* Releases all resources used by the extension.
|
|
*
|
|
* @public
|
|
*/
|
|
cleanup() {
|
|
if (this._inflate) {
|
|
this._inflate.close();
|
|
this._inflate = null;
|
|
}
|
|
if (this._deflate) {
|
|
const callback = this._deflate[kCallback];
|
|
this._deflate.close();
|
|
this._deflate = null;
|
|
if (callback) {
|
|
callback(
|
|
new Error(
|
|
"The deflate stream was closed while data was being processed"
|
|
)
|
|
);
|
|
}
|
|
}
|
|
}
|
|
/**
|
|
* Accept an extension negotiation offer.
|
|
*
|
|
* @param {Array} offers The extension negotiation offers
|
|
* @return {Object} Accepted configuration
|
|
* @private
|
|
*/
|
|
acceptAsServer(offers) {
|
|
const opts = this._options;
|
|
const accepted = offers.find((params) => {
|
|
if (opts.serverNoContextTakeover === false && params.server_no_context_takeover || params.server_max_window_bits && (opts.serverMaxWindowBits === false || typeof opts.serverMaxWindowBits === "number" && opts.serverMaxWindowBits > params.server_max_window_bits) || typeof opts.clientMaxWindowBits === "number" && !params.client_max_window_bits) {
|
|
return false;
|
|
}
|
|
return true;
|
|
});
|
|
if (!accepted) {
|
|
throw new Error("None of the extension offers can be accepted");
|
|
}
|
|
if (opts.serverNoContextTakeover) {
|
|
accepted.server_no_context_takeover = true;
|
|
}
|
|
if (opts.clientNoContextTakeover) {
|
|
accepted.client_no_context_takeover = true;
|
|
}
|
|
if (typeof opts.serverMaxWindowBits === "number") {
|
|
accepted.server_max_window_bits = opts.serverMaxWindowBits;
|
|
}
|
|
if (typeof opts.clientMaxWindowBits === "number") {
|
|
accepted.client_max_window_bits = opts.clientMaxWindowBits;
|
|
} else if (accepted.client_max_window_bits === true || opts.clientMaxWindowBits === false) {
|
|
delete accepted.client_max_window_bits;
|
|
}
|
|
return accepted;
|
|
}
|
|
/**
|
|
* Accept the extension negotiation response.
|
|
*
|
|
* @param {Array} response The extension negotiation response
|
|
* @return {Object} Accepted configuration
|
|
* @private
|
|
*/
|
|
acceptAsClient(response) {
|
|
const params = response[0];
|
|
if (this._options.clientNoContextTakeover === false && params.client_no_context_takeover) {
|
|
throw new Error('Unexpected parameter "client_no_context_takeover"');
|
|
}
|
|
if (!params.client_max_window_bits) {
|
|
if (typeof this._options.clientMaxWindowBits === "number") {
|
|
params.client_max_window_bits = this._options.clientMaxWindowBits;
|
|
}
|
|
} else if (this._options.clientMaxWindowBits === false || typeof this._options.clientMaxWindowBits === "number" && params.client_max_window_bits > this._options.clientMaxWindowBits) {
|
|
throw new Error(
|
|
'Unexpected or invalid parameter "client_max_window_bits"'
|
|
);
|
|
}
|
|
return params;
|
|
}
|
|
/**
|
|
* Normalize parameters.
|
|
*
|
|
* @param {Array} configurations The extension negotiation offers/reponse
|
|
* @return {Array} The offers/response with normalized parameters
|
|
* @private
|
|
*/
|
|
normalizeParams(configurations) {
|
|
configurations.forEach((params) => {
|
|
Object.keys(params).forEach((key) => {
|
|
let value = params[key];
|
|
if (value.length > 1) {
|
|
throw new Error(`Parameter "${key}" must have only a single value`);
|
|
}
|
|
value = value[0];
|
|
if (key === "client_max_window_bits") {
|
|
if (value !== true) {
|
|
const num = +value;
|
|
if (!Number.isInteger(num) || num < 8 || num > 15) {
|
|
throw new TypeError(
|
|
`Invalid value for parameter "${key}": ${value}`
|
|
);
|
|
}
|
|
value = num;
|
|
} else if (!this._isServer) {
|
|
throw new TypeError(
|
|
`Invalid value for parameter "${key}": ${value}`
|
|
);
|
|
}
|
|
} else if (key === "server_max_window_bits") {
|
|
const num = +value;
|
|
if (!Number.isInteger(num) || num < 8 || num > 15) {
|
|
throw new TypeError(
|
|
`Invalid value for parameter "${key}": ${value}`
|
|
);
|
|
}
|
|
value = num;
|
|
} else if (key === "client_no_context_takeover" || key === "server_no_context_takeover") {
|
|
if (value !== true) {
|
|
throw new TypeError(
|
|
`Invalid value for parameter "${key}": ${value}`
|
|
);
|
|
}
|
|
} else {
|
|
throw new Error(`Unknown parameter "${key}"`);
|
|
}
|
|
params[key] = value;
|
|
});
|
|
});
|
|
return configurations;
|
|
}
|
|
/**
|
|
* Decompress data. Concurrency limited.
|
|
*
|
|
* @param {Buffer} data Compressed data
|
|
* @param {Boolean} fin Specifies whether or not this is the last fragment
|
|
* @param {Function} callback Callback
|
|
* @public
|
|
*/
|
|
decompress(data, fin, callback) {
|
|
zlibLimiter.add((done) => {
|
|
this._decompress(data, fin, (err, result) => {
|
|
done();
|
|
callback(err, result);
|
|
});
|
|
});
|
|
}
|
|
/**
|
|
* Compress data. Concurrency limited.
|
|
*
|
|
* @param {(Buffer|String)} data Data to compress
|
|
* @param {Boolean} fin Specifies whether or not this is the last fragment
|
|
* @param {Function} callback Callback
|
|
* @public
|
|
*/
|
|
compress(data, fin, callback) {
|
|
zlibLimiter.add((done) => {
|
|
this._compress(data, fin, (err, result) => {
|
|
done();
|
|
callback(err, result);
|
|
});
|
|
});
|
|
}
|
|
/**
|
|
* Decompress data.
|
|
*
|
|
* @param {Buffer} data Compressed data
|
|
* @param {Boolean} fin Specifies whether or not this is the last fragment
|
|
* @param {Function} callback Callback
|
|
* @private
|
|
*/
|
|
_decompress(data, fin, callback) {
|
|
const endpoint = this._isServer ? "client" : "server";
|
|
if (!this._inflate) {
|
|
const key = `${endpoint}_max_window_bits`;
|
|
const windowBits = typeof this.params[key] !== "number" ? zlib.Z_DEFAULT_WINDOWBITS : this.params[key];
|
|
this._inflate = zlib.createInflateRaw({
|
|
...this._options.zlibInflateOptions,
|
|
windowBits
|
|
});
|
|
this._inflate[kPerMessageDeflate] = this;
|
|
this._inflate[kTotalLength] = 0;
|
|
this._inflate[kBuffers] = [];
|
|
this._inflate.on("error", inflateOnError);
|
|
this._inflate.on("data", inflateOnData);
|
|
}
|
|
this._inflate[kCallback] = callback;
|
|
this._inflate.write(data);
|
|
if (fin) this._inflate.write(TRAILER);
|
|
this._inflate.flush(() => {
|
|
const err = this._inflate[kError];
|
|
if (err) {
|
|
this._inflate.close();
|
|
this._inflate = null;
|
|
callback(err);
|
|
return;
|
|
}
|
|
const data2 = bufferUtil.concat(
|
|
this._inflate[kBuffers],
|
|
this._inflate[kTotalLength]
|
|
);
|
|
if (this._inflate._readableState.endEmitted) {
|
|
this._inflate.close();
|
|
this._inflate = null;
|
|
} else {
|
|
this._inflate[kTotalLength] = 0;
|
|
this._inflate[kBuffers] = [];
|
|
if (fin && this.params[`${endpoint}_no_context_takeover`]) {
|
|
this._inflate.reset();
|
|
}
|
|
}
|
|
callback(null, data2);
|
|
});
|
|
}
|
|
/**
|
|
* Compress data.
|
|
*
|
|
* @param {(Buffer|String)} data Data to compress
|
|
* @param {Boolean} fin Specifies whether or not this is the last fragment
|
|
* @param {Function} callback Callback
|
|
* @private
|
|
*/
|
|
_compress(data, fin, callback) {
|
|
const endpoint = this._isServer ? "server" : "client";
|
|
if (!this._deflate) {
|
|
const key = `${endpoint}_max_window_bits`;
|
|
const windowBits = typeof this.params[key] !== "number" ? zlib.Z_DEFAULT_WINDOWBITS : this.params[key];
|
|
this._deflate = zlib.createDeflateRaw({
|
|
...this._options.zlibDeflateOptions,
|
|
windowBits
|
|
});
|
|
this._deflate[kTotalLength] = 0;
|
|
this._deflate[kBuffers] = [];
|
|
this._deflate.on("data", deflateOnData);
|
|
}
|
|
this._deflate[kCallback] = callback;
|
|
this._deflate.write(data);
|
|
this._deflate.flush(zlib.Z_SYNC_FLUSH, () => {
|
|
if (!this._deflate) {
|
|
return;
|
|
}
|
|
let data2 = bufferUtil.concat(
|
|
this._deflate[kBuffers],
|
|
this._deflate[kTotalLength]
|
|
);
|
|
if (fin) {
|
|
data2 = new FastBuffer(data2.buffer, data2.byteOffset, data2.length - 4);
|
|
}
|
|
this._deflate[kCallback] = null;
|
|
this._deflate[kTotalLength] = 0;
|
|
this._deflate[kBuffers] = [];
|
|
if (fin && this.params[`${endpoint}_no_context_takeover`]) {
|
|
this._deflate.reset();
|
|
}
|
|
callback(null, data2);
|
|
});
|
|
}
|
|
};
|
|
module.exports = PerMessageDeflate;
|
|
function deflateOnData(chunk) {
|
|
this[kBuffers].push(chunk);
|
|
this[kTotalLength] += chunk.length;
|
|
}
|
|
function inflateOnData(chunk) {
|
|
this[kTotalLength] += chunk.length;
|
|
if (this[kPerMessageDeflate]._maxPayload < 1 || this[kTotalLength] <= this[kPerMessageDeflate]._maxPayload) {
|
|
this[kBuffers].push(chunk);
|
|
return;
|
|
}
|
|
this[kError] = new RangeError("Max payload size exceeded");
|
|
this[kError].code = "WS_ERR_UNSUPPORTED_MESSAGE_LENGTH";
|
|
this[kError][kStatusCode] = 1009;
|
|
this.removeListener("data", inflateOnData);
|
|
this.reset();
|
|
}
|
|
function inflateOnError(err) {
|
|
this[kPerMessageDeflate]._inflate = null;
|
|
if (this[kError]) {
|
|
this[kCallback](this[kError]);
|
|
return;
|
|
}
|
|
err[kStatusCode] = 1007;
|
|
this[kCallback](err);
|
|
}
|
|
}
|
|
});
|
|
|
|
// node_modules/ws/lib/validation.js
|
|
var require_validation = __commonJS({
|
|
"node_modules/ws/lib/validation.js"(exports, module) {
|
|
"use strict";
|
|
var { isUtf8 } = __require("buffer");
|
|
var { hasBlob } = require_constants();
|
|
var tokenChars = [
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
// 0 - 15
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
// 16 - 31
|
|
0,
|
|
1,
|
|
0,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
0,
|
|
0,
|
|
1,
|
|
1,
|
|
0,
|
|
1,
|
|
1,
|
|
0,
|
|
// 32 - 47
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
// 48 - 63
|
|
0,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
// 64 - 79
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
0,
|
|
0,
|
|
0,
|
|
1,
|
|
1,
|
|
// 80 - 95
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
// 96 - 111
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
0,
|
|
1,
|
|
0,
|
|
1,
|
|
0
|
|
// 112 - 127
|
|
];
|
|
function isValidStatusCode(code) {
|
|
return code >= 1e3 && code <= 1014 && code !== 1004 && code !== 1005 && code !== 1006 || code >= 3e3 && code <= 4999;
|
|
}
|
|
function _isValidUTF8(buf) {
|
|
const len = buf.length;
|
|
let i = 0;
|
|
while (i < len) {
|
|
if ((buf[i] & 128) === 0) {
|
|
i++;
|
|
} else if ((buf[i] & 224) === 192) {
|
|
if (i + 1 === len || (buf[i + 1] & 192) !== 128 || (buf[i] & 254) === 192) {
|
|
return false;
|
|
}
|
|
i += 2;
|
|
} else if ((buf[i] & 240) === 224) {
|
|
if (i + 2 >= len || (buf[i + 1] & 192) !== 128 || (buf[i + 2] & 192) !== 128 || buf[i] === 224 && (buf[i + 1] & 224) === 128 || // Overlong
|
|
buf[i] === 237 && (buf[i + 1] & 224) === 160) {
|
|
return false;
|
|
}
|
|
i += 3;
|
|
} else if ((buf[i] & 248) === 240) {
|
|
if (i + 3 >= len || (buf[i + 1] & 192) !== 128 || (buf[i + 2] & 192) !== 128 || (buf[i + 3] & 192) !== 128 || buf[i] === 240 && (buf[i + 1] & 240) === 128 || // Overlong
|
|
buf[i] === 244 && buf[i + 1] > 143 || buf[i] > 244) {
|
|
return false;
|
|
}
|
|
i += 4;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
function isBlob(value) {
|
|
return hasBlob && typeof value === "object" && typeof value.arrayBuffer === "function" && typeof value.type === "string" && typeof value.stream === "function" && (value[Symbol.toStringTag] === "Blob" || value[Symbol.toStringTag] === "File");
|
|
}
|
|
module.exports = {
|
|
isBlob,
|
|
isValidStatusCode,
|
|
isValidUTF8: _isValidUTF8,
|
|
tokenChars
|
|
};
|
|
if (isUtf8) {
|
|
module.exports.isValidUTF8 = function(buf) {
|
|
return buf.length < 24 ? _isValidUTF8(buf) : isUtf8(buf);
|
|
};
|
|
} else if (!process.env.WS_NO_UTF_8_VALIDATE) {
|
|
try {
|
|
const isValidUTF8 = __require("utf-8-validate");
|
|
module.exports.isValidUTF8 = function(buf) {
|
|
return buf.length < 32 ? _isValidUTF8(buf) : isValidUTF8(buf);
|
|
};
|
|
} catch (e) {
|
|
}
|
|
}
|
|
}
|
|
});
|
|
|
|
// node_modules/ws/lib/receiver.js
|
|
var require_receiver = __commonJS({
|
|
"node_modules/ws/lib/receiver.js"(exports, module) {
|
|
"use strict";
|
|
var { Writable } = __require("stream");
|
|
var PerMessageDeflate = require_permessage_deflate();
|
|
var {
|
|
BINARY_TYPES,
|
|
EMPTY_BUFFER,
|
|
kStatusCode,
|
|
kWebSocket
|
|
} = require_constants();
|
|
var { concat, toArrayBuffer, unmask } = require_buffer_util();
|
|
var { isValidStatusCode, isValidUTF8 } = require_validation();
|
|
var FastBuffer = Buffer[Symbol.species];
|
|
var GET_INFO = 0;
|
|
var GET_PAYLOAD_LENGTH_16 = 1;
|
|
var GET_PAYLOAD_LENGTH_64 = 2;
|
|
var GET_MASK = 3;
|
|
var GET_DATA = 4;
|
|
var INFLATING = 5;
|
|
var DEFER_EVENT = 6;
|
|
var Receiver2 = class extends Writable {
|
|
/**
|
|
* Creates a Receiver instance.
|
|
*
|
|
* @param {Object} [options] Options object
|
|
* @param {Boolean} [options.allowSynchronousEvents=true] Specifies whether
|
|
* any of the `'message'`, `'ping'`, and `'pong'` events can be emitted
|
|
* multiple times in the same tick
|
|
* @param {String} [options.binaryType=nodebuffer] The type for binary data
|
|
* @param {Object} [options.extensions] An object containing the negotiated
|
|
* extensions
|
|
* @param {Boolean} [options.isServer=false] Specifies whether to operate in
|
|
* client or server mode
|
|
* @param {Number} [options.maxPayload=0] The maximum allowed message length
|
|
* @param {Boolean} [options.skipUTF8Validation=false] Specifies whether or
|
|
* not to skip UTF-8 validation for text and close messages
|
|
*/
|
|
constructor(options = {}) {
|
|
super();
|
|
this._allowSynchronousEvents = options.allowSynchronousEvents !== void 0 ? options.allowSynchronousEvents : true;
|
|
this._binaryType = options.binaryType || BINARY_TYPES[0];
|
|
this._extensions = options.extensions || {};
|
|
this._isServer = !!options.isServer;
|
|
this._maxPayload = options.maxPayload | 0;
|
|
this._skipUTF8Validation = !!options.skipUTF8Validation;
|
|
this[kWebSocket] = void 0;
|
|
this._bufferedBytes = 0;
|
|
this._buffers = [];
|
|
this._compressed = false;
|
|
this._payloadLength = 0;
|
|
this._mask = void 0;
|
|
this._fragmented = 0;
|
|
this._masked = false;
|
|
this._fin = false;
|
|
this._opcode = 0;
|
|
this._totalPayloadLength = 0;
|
|
this._messageLength = 0;
|
|
this._fragments = [];
|
|
this._errored = false;
|
|
this._loop = false;
|
|
this._state = GET_INFO;
|
|
}
|
|
/**
|
|
* Implements `Writable.prototype._write()`.
|
|
*
|
|
* @param {Buffer} chunk The chunk of data to write
|
|
* @param {String} encoding The character encoding of `chunk`
|
|
* @param {Function} cb Callback
|
|
* @private
|
|
*/
|
|
_write(chunk, encoding, cb) {
|
|
if (this._opcode === 8 && this._state == GET_INFO) return cb();
|
|
this._bufferedBytes += chunk.length;
|
|
this._buffers.push(chunk);
|
|
this.startLoop(cb);
|
|
}
|
|
/**
|
|
* Consumes `n` bytes from the buffered data.
|
|
*
|
|
* @param {Number} n The number of bytes to consume
|
|
* @return {Buffer} The consumed bytes
|
|
* @private
|
|
*/
|
|
consume(n) {
|
|
this._bufferedBytes -= n;
|
|
if (n === this._buffers[0].length) return this._buffers.shift();
|
|
if (n < this._buffers[0].length) {
|
|
const buf = this._buffers[0];
|
|
this._buffers[0] = new FastBuffer(
|
|
buf.buffer,
|
|
buf.byteOffset + n,
|
|
buf.length - n
|
|
);
|
|
return new FastBuffer(buf.buffer, buf.byteOffset, n);
|
|
}
|
|
const dst = Buffer.allocUnsafe(n);
|
|
do {
|
|
const buf = this._buffers[0];
|
|
const offset = dst.length - n;
|
|
if (n >= buf.length) {
|
|
dst.set(this._buffers.shift(), offset);
|
|
} else {
|
|
dst.set(new Uint8Array(buf.buffer, buf.byteOffset, n), offset);
|
|
this._buffers[0] = new FastBuffer(
|
|
buf.buffer,
|
|
buf.byteOffset + n,
|
|
buf.length - n
|
|
);
|
|
}
|
|
n -= buf.length;
|
|
} while (n > 0);
|
|
return dst;
|
|
}
|
|
/**
|
|
* Starts the parsing loop.
|
|
*
|
|
* @param {Function} cb Callback
|
|
* @private
|
|
*/
|
|
startLoop(cb) {
|
|
this._loop = true;
|
|
do {
|
|
switch (this._state) {
|
|
case GET_INFO:
|
|
this.getInfo(cb);
|
|
break;
|
|
case GET_PAYLOAD_LENGTH_16:
|
|
this.getPayloadLength16(cb);
|
|
break;
|
|
case GET_PAYLOAD_LENGTH_64:
|
|
this.getPayloadLength64(cb);
|
|
break;
|
|
case GET_MASK:
|
|
this.getMask();
|
|
break;
|
|
case GET_DATA:
|
|
this.getData(cb);
|
|
break;
|
|
case INFLATING:
|
|
case DEFER_EVENT:
|
|
this._loop = false;
|
|
return;
|
|
}
|
|
} while (this._loop);
|
|
if (!this._errored) cb();
|
|
}
|
|
/**
|
|
* Reads the first two bytes of a frame.
|
|
*
|
|
* @param {Function} cb Callback
|
|
* @private
|
|
*/
|
|
getInfo(cb) {
|
|
if (this._bufferedBytes < 2) {
|
|
this._loop = false;
|
|
return;
|
|
}
|
|
const buf = this.consume(2);
|
|
if ((buf[0] & 48) !== 0) {
|
|
const error2 = this.createError(
|
|
RangeError,
|
|
"RSV2 and RSV3 must be clear",
|
|
true,
|
|
1002,
|
|
"WS_ERR_UNEXPECTED_RSV_2_3"
|
|
);
|
|
cb(error2);
|
|
return;
|
|
}
|
|
const compressed = (buf[0] & 64) === 64;
|
|
if (compressed && !this._extensions[PerMessageDeflate.extensionName]) {
|
|
const error2 = this.createError(
|
|
RangeError,
|
|
"RSV1 must be clear",
|
|
true,
|
|
1002,
|
|
"WS_ERR_UNEXPECTED_RSV_1"
|
|
);
|
|
cb(error2);
|
|
return;
|
|
}
|
|
this._fin = (buf[0] & 128) === 128;
|
|
this._opcode = buf[0] & 15;
|
|
this._payloadLength = buf[1] & 127;
|
|
if (this._opcode === 0) {
|
|
if (compressed) {
|
|
const error2 = this.createError(
|
|
RangeError,
|
|
"RSV1 must be clear",
|
|
true,
|
|
1002,
|
|
"WS_ERR_UNEXPECTED_RSV_1"
|
|
);
|
|
cb(error2);
|
|
return;
|
|
}
|
|
if (!this._fragmented) {
|
|
const error2 = this.createError(
|
|
RangeError,
|
|
"invalid opcode 0",
|
|
true,
|
|
1002,
|
|
"WS_ERR_INVALID_OPCODE"
|
|
);
|
|
cb(error2);
|
|
return;
|
|
}
|
|
this._opcode = this._fragmented;
|
|
} else if (this._opcode === 1 || this._opcode === 2) {
|
|
if (this._fragmented) {
|
|
const error2 = this.createError(
|
|
RangeError,
|
|
`invalid opcode ${this._opcode}`,
|
|
true,
|
|
1002,
|
|
"WS_ERR_INVALID_OPCODE"
|
|
);
|
|
cb(error2);
|
|
return;
|
|
}
|
|
this._compressed = compressed;
|
|
} else if (this._opcode > 7 && this._opcode < 11) {
|
|
if (!this._fin) {
|
|
const error2 = this.createError(
|
|
RangeError,
|
|
"FIN must be set",
|
|
true,
|
|
1002,
|
|
"WS_ERR_EXPECTED_FIN"
|
|
);
|
|
cb(error2);
|
|
return;
|
|
}
|
|
if (compressed) {
|
|
const error2 = this.createError(
|
|
RangeError,
|
|
"RSV1 must be clear",
|
|
true,
|
|
1002,
|
|
"WS_ERR_UNEXPECTED_RSV_1"
|
|
);
|
|
cb(error2);
|
|
return;
|
|
}
|
|
if (this._payloadLength > 125 || this._opcode === 8 && this._payloadLength === 1) {
|
|
const error2 = this.createError(
|
|
RangeError,
|
|
`invalid payload length ${this._payloadLength}`,
|
|
true,
|
|
1002,
|
|
"WS_ERR_INVALID_CONTROL_PAYLOAD_LENGTH"
|
|
);
|
|
cb(error2);
|
|
return;
|
|
}
|
|
} else {
|
|
const error2 = this.createError(
|
|
RangeError,
|
|
`invalid opcode ${this._opcode}`,
|
|
true,
|
|
1002,
|
|
"WS_ERR_INVALID_OPCODE"
|
|
);
|
|
cb(error2);
|
|
return;
|
|
}
|
|
if (!this._fin && !this._fragmented) this._fragmented = this._opcode;
|
|
this._masked = (buf[1] & 128) === 128;
|
|
if (this._isServer) {
|
|
if (!this._masked) {
|
|
const error2 = this.createError(
|
|
RangeError,
|
|
"MASK must be set",
|
|
true,
|
|
1002,
|
|
"WS_ERR_EXPECTED_MASK"
|
|
);
|
|
cb(error2);
|
|
return;
|
|
}
|
|
} else if (this._masked) {
|
|
const error2 = this.createError(
|
|
RangeError,
|
|
"MASK must be clear",
|
|
true,
|
|
1002,
|
|
"WS_ERR_UNEXPECTED_MASK"
|
|
);
|
|
cb(error2);
|
|
return;
|
|
}
|
|
if (this._payloadLength === 126) this._state = GET_PAYLOAD_LENGTH_16;
|
|
else if (this._payloadLength === 127) this._state = GET_PAYLOAD_LENGTH_64;
|
|
else this.haveLength(cb);
|
|
}
|
|
/**
|
|
* Gets extended payload length (7+16).
|
|
*
|
|
* @param {Function} cb Callback
|
|
* @private
|
|
*/
|
|
getPayloadLength16(cb) {
|
|
if (this._bufferedBytes < 2) {
|
|
this._loop = false;
|
|
return;
|
|
}
|
|
this._payloadLength = this.consume(2).readUInt16BE(0);
|
|
this.haveLength(cb);
|
|
}
|
|
/**
|
|
* Gets extended payload length (7+64).
|
|
*
|
|
* @param {Function} cb Callback
|
|
* @private
|
|
*/
|
|
getPayloadLength64(cb) {
|
|
if (this._bufferedBytes < 8) {
|
|
this._loop = false;
|
|
return;
|
|
}
|
|
const buf = this.consume(8);
|
|
const num = buf.readUInt32BE(0);
|
|
if (num > Math.pow(2, 53 - 32) - 1) {
|
|
const error2 = this.createError(
|
|
RangeError,
|
|
"Unsupported WebSocket frame: payload length > 2^53 - 1",
|
|
false,
|
|
1009,
|
|
"WS_ERR_UNSUPPORTED_DATA_PAYLOAD_LENGTH"
|
|
);
|
|
cb(error2);
|
|
return;
|
|
}
|
|
this._payloadLength = num * Math.pow(2, 32) + buf.readUInt32BE(4);
|
|
this.haveLength(cb);
|
|
}
|
|
/**
|
|
* Payload length has been read.
|
|
*
|
|
* @param {Function} cb Callback
|
|
* @private
|
|
*/
|
|
haveLength(cb) {
|
|
if (this._payloadLength && this._opcode < 8) {
|
|
this._totalPayloadLength += this._payloadLength;
|
|
if (this._totalPayloadLength > this._maxPayload && this._maxPayload > 0) {
|
|
const error2 = this.createError(
|
|
RangeError,
|
|
"Max payload size exceeded",
|
|
false,
|
|
1009,
|
|
"WS_ERR_UNSUPPORTED_MESSAGE_LENGTH"
|
|
);
|
|
cb(error2);
|
|
return;
|
|
}
|
|
}
|
|
if (this._masked) this._state = GET_MASK;
|
|
else this._state = GET_DATA;
|
|
}
|
|
/**
|
|
* Reads mask bytes.
|
|
*
|
|
* @private
|
|
*/
|
|
getMask() {
|
|
if (this._bufferedBytes < 4) {
|
|
this._loop = false;
|
|
return;
|
|
}
|
|
this._mask = this.consume(4);
|
|
this._state = GET_DATA;
|
|
}
|
|
/**
|
|
* Reads data bytes.
|
|
*
|
|
* @param {Function} cb Callback
|
|
* @private
|
|
*/
|
|
getData(cb) {
|
|
let data = EMPTY_BUFFER;
|
|
if (this._payloadLength) {
|
|
if (this._bufferedBytes < this._payloadLength) {
|
|
this._loop = false;
|
|
return;
|
|
}
|
|
data = this.consume(this._payloadLength);
|
|
if (this._masked && (this._mask[0] | this._mask[1] | this._mask[2] | this._mask[3]) !== 0) {
|
|
unmask(data, this._mask);
|
|
}
|
|
}
|
|
if (this._opcode > 7) {
|
|
this.controlMessage(data, cb);
|
|
return;
|
|
}
|
|
if (this._compressed) {
|
|
this._state = INFLATING;
|
|
this.decompress(data, cb);
|
|
return;
|
|
}
|
|
if (data.length) {
|
|
this._messageLength = this._totalPayloadLength;
|
|
this._fragments.push(data);
|
|
}
|
|
this.dataMessage(cb);
|
|
}
|
|
/**
|
|
* Decompresses data.
|
|
*
|
|
* @param {Buffer} data Compressed data
|
|
* @param {Function} cb Callback
|
|
* @private
|
|
*/
|
|
decompress(data, cb) {
|
|
const perMessageDeflate = this._extensions[PerMessageDeflate.extensionName];
|
|
perMessageDeflate.decompress(data, this._fin, (err, buf) => {
|
|
if (err) return cb(err);
|
|
if (buf.length) {
|
|
this._messageLength += buf.length;
|
|
if (this._messageLength > this._maxPayload && this._maxPayload > 0) {
|
|
const error2 = this.createError(
|
|
RangeError,
|
|
"Max payload size exceeded",
|
|
false,
|
|
1009,
|
|
"WS_ERR_UNSUPPORTED_MESSAGE_LENGTH"
|
|
);
|
|
cb(error2);
|
|
return;
|
|
}
|
|
this._fragments.push(buf);
|
|
}
|
|
this.dataMessage(cb);
|
|
if (this._state === GET_INFO) this.startLoop(cb);
|
|
});
|
|
}
|
|
/**
|
|
* Handles a data message.
|
|
*
|
|
* @param {Function} cb Callback
|
|
* @private
|
|
*/
|
|
dataMessage(cb) {
|
|
if (!this._fin) {
|
|
this._state = GET_INFO;
|
|
return;
|
|
}
|
|
const messageLength = this._messageLength;
|
|
const fragments = this._fragments;
|
|
this._totalPayloadLength = 0;
|
|
this._messageLength = 0;
|
|
this._fragmented = 0;
|
|
this._fragments = [];
|
|
if (this._opcode === 2) {
|
|
let data;
|
|
if (this._binaryType === "nodebuffer") {
|
|
data = concat(fragments, messageLength);
|
|
} else if (this._binaryType === "arraybuffer") {
|
|
data = toArrayBuffer(concat(fragments, messageLength));
|
|
} else if (this._binaryType === "blob") {
|
|
data = new Blob(fragments);
|
|
} else {
|
|
data = fragments;
|
|
}
|
|
if (this._allowSynchronousEvents) {
|
|
this.emit("message", data, true);
|
|
this._state = GET_INFO;
|
|
} else {
|
|
this._state = DEFER_EVENT;
|
|
setImmediate(() => {
|
|
this.emit("message", data, true);
|
|
this._state = GET_INFO;
|
|
this.startLoop(cb);
|
|
});
|
|
}
|
|
} else {
|
|
const buf = concat(fragments, messageLength);
|
|
if (!this._skipUTF8Validation && !isValidUTF8(buf)) {
|
|
const error2 = this.createError(
|
|
Error,
|
|
"invalid UTF-8 sequence",
|
|
true,
|
|
1007,
|
|
"WS_ERR_INVALID_UTF8"
|
|
);
|
|
cb(error2);
|
|
return;
|
|
}
|
|
if (this._state === INFLATING || this._allowSynchronousEvents) {
|
|
this.emit("message", buf, false);
|
|
this._state = GET_INFO;
|
|
} else {
|
|
this._state = DEFER_EVENT;
|
|
setImmediate(() => {
|
|
this.emit("message", buf, false);
|
|
this._state = GET_INFO;
|
|
this.startLoop(cb);
|
|
});
|
|
}
|
|
}
|
|
}
|
|
/**
|
|
* Handles a control message.
|
|
*
|
|
* @param {Buffer} data Data to handle
|
|
* @return {(Error|RangeError|undefined)} A possible error
|
|
* @private
|
|
*/
|
|
controlMessage(data, cb) {
|
|
if (this._opcode === 8) {
|
|
if (data.length === 0) {
|
|
this._loop = false;
|
|
this.emit("conclude", 1005, EMPTY_BUFFER);
|
|
this.end();
|
|
} else {
|
|
const code = data.readUInt16BE(0);
|
|
if (!isValidStatusCode(code)) {
|
|
const error2 = this.createError(
|
|
RangeError,
|
|
`invalid status code ${code}`,
|
|
true,
|
|
1002,
|
|
"WS_ERR_INVALID_CLOSE_CODE"
|
|
);
|
|
cb(error2);
|
|
return;
|
|
}
|
|
const buf = new FastBuffer(
|
|
data.buffer,
|
|
data.byteOffset + 2,
|
|
data.length - 2
|
|
);
|
|
if (!this._skipUTF8Validation && !isValidUTF8(buf)) {
|
|
const error2 = this.createError(
|
|
Error,
|
|
"invalid UTF-8 sequence",
|
|
true,
|
|
1007,
|
|
"WS_ERR_INVALID_UTF8"
|
|
);
|
|
cb(error2);
|
|
return;
|
|
}
|
|
this._loop = false;
|
|
this.emit("conclude", code, buf);
|
|
this.end();
|
|
}
|
|
this._state = GET_INFO;
|
|
return;
|
|
}
|
|
if (this._allowSynchronousEvents) {
|
|
this.emit(this._opcode === 9 ? "ping" : "pong", data);
|
|
this._state = GET_INFO;
|
|
} else {
|
|
this._state = DEFER_EVENT;
|
|
setImmediate(() => {
|
|
this.emit(this._opcode === 9 ? "ping" : "pong", data);
|
|
this._state = GET_INFO;
|
|
this.startLoop(cb);
|
|
});
|
|
}
|
|
}
|
|
/**
|
|
* Builds an error object.
|
|
*
|
|
* @param {function(new:Error|RangeError)} ErrorCtor The error constructor
|
|
* @param {String} message The error message
|
|
* @param {Boolean} prefix Specifies whether or not to add a default prefix to
|
|
* `message`
|
|
* @param {Number} statusCode The status code
|
|
* @param {String} errorCode The exposed error code
|
|
* @return {(Error|RangeError)} The error
|
|
* @private
|
|
*/
|
|
createError(ErrorCtor, message, prefix, statusCode, errorCode) {
|
|
this._loop = false;
|
|
this._errored = true;
|
|
const err = new ErrorCtor(
|
|
prefix ? `Invalid WebSocket frame: ${message}` : message
|
|
);
|
|
Error.captureStackTrace(err, this.createError);
|
|
err.code = errorCode;
|
|
err[kStatusCode] = statusCode;
|
|
return err;
|
|
}
|
|
};
|
|
module.exports = Receiver2;
|
|
}
|
|
});
|
|
|
|
// node_modules/ws/lib/sender.js
|
|
var require_sender = __commonJS({
|
|
"node_modules/ws/lib/sender.js"(exports, module) {
|
|
"use strict";
|
|
var { Duplex } = __require("stream");
|
|
var { randomFillSync } = __require("crypto");
|
|
var PerMessageDeflate = require_permessage_deflate();
|
|
var { EMPTY_BUFFER, kWebSocket, NOOP } = require_constants();
|
|
var { isBlob, isValidStatusCode } = require_validation();
|
|
var { mask: applyMask, toBuffer } = require_buffer_util();
|
|
var kByteLength = Symbol("kByteLength");
|
|
var maskBuffer = Buffer.alloc(4);
|
|
var RANDOM_POOL_SIZE = 8 * 1024;
|
|
var randomPool;
|
|
var randomPoolPointer = RANDOM_POOL_SIZE;
|
|
var DEFAULT = 0;
|
|
var DEFLATING = 1;
|
|
var GET_BLOB_DATA = 2;
|
|
var Sender2 = class _Sender {
|
|
/**
|
|
* Creates a Sender instance.
|
|
*
|
|
* @param {Duplex} socket The connection socket
|
|
* @param {Object} [extensions] An object containing the negotiated extensions
|
|
* @param {Function} [generateMask] The function used to generate the masking
|
|
* key
|
|
*/
|
|
constructor(socket, extensions, generateMask) {
|
|
this._extensions = extensions || {};
|
|
if (generateMask) {
|
|
this._generateMask = generateMask;
|
|
this._maskBuffer = Buffer.alloc(4);
|
|
}
|
|
this._socket = socket;
|
|
this._firstFragment = true;
|
|
this._compress = false;
|
|
this._bufferedBytes = 0;
|
|
this._queue = [];
|
|
this._state = DEFAULT;
|
|
this.onerror = NOOP;
|
|
this[kWebSocket] = void 0;
|
|
}
|
|
/**
|
|
* Frames a piece of data according to the HyBi WebSocket protocol.
|
|
*
|
|
* @param {(Buffer|String)} data The data to frame
|
|
* @param {Object} options Options object
|
|
* @param {Boolean} [options.fin=false] Specifies whether or not to set the
|
|
* FIN bit
|
|
* @param {Function} [options.generateMask] The function used to generate the
|
|
* masking key
|
|
* @param {Boolean} [options.mask=false] Specifies whether or not to mask
|
|
* `data`
|
|
* @param {Buffer} [options.maskBuffer] The buffer used to store the masking
|
|
* key
|
|
* @param {Number} options.opcode The opcode
|
|
* @param {Boolean} [options.readOnly=false] Specifies whether `data` can be
|
|
* modified
|
|
* @param {Boolean} [options.rsv1=false] Specifies whether or not to set the
|
|
* RSV1 bit
|
|
* @return {(Buffer|String)[]} The framed data
|
|
* @public
|
|
*/
|
|
static frame(data, options) {
|
|
let mask;
|
|
let merge2 = false;
|
|
let offset = 2;
|
|
let skipMasking = false;
|
|
if (options.mask) {
|
|
mask = options.maskBuffer || maskBuffer;
|
|
if (options.generateMask) {
|
|
options.generateMask(mask);
|
|
} else {
|
|
if (randomPoolPointer === RANDOM_POOL_SIZE) {
|
|
if (randomPool === void 0) {
|
|
randomPool = Buffer.alloc(RANDOM_POOL_SIZE);
|
|
}
|
|
randomFillSync(randomPool, 0, RANDOM_POOL_SIZE);
|
|
randomPoolPointer = 0;
|
|
}
|
|
mask[0] = randomPool[randomPoolPointer++];
|
|
mask[1] = randomPool[randomPoolPointer++];
|
|
mask[2] = randomPool[randomPoolPointer++];
|
|
mask[3] = randomPool[randomPoolPointer++];
|
|
}
|
|
skipMasking = (mask[0] | mask[1] | mask[2] | mask[3]) === 0;
|
|
offset = 6;
|
|
}
|
|
let dataLength;
|
|
if (typeof data === "string") {
|
|
if ((!options.mask || skipMasking) && options[kByteLength] !== void 0) {
|
|
dataLength = options[kByteLength];
|
|
} else {
|
|
data = Buffer.from(data);
|
|
dataLength = data.length;
|
|
}
|
|
} else {
|
|
dataLength = data.length;
|
|
merge2 = options.mask && options.readOnly && !skipMasking;
|
|
}
|
|
let payloadLength = dataLength;
|
|
if (dataLength >= 65536) {
|
|
offset += 8;
|
|
payloadLength = 127;
|
|
} else if (dataLength > 125) {
|
|
offset += 2;
|
|
payloadLength = 126;
|
|
}
|
|
const target = Buffer.allocUnsafe(merge2 ? dataLength + offset : offset);
|
|
target[0] = options.fin ? options.opcode | 128 : options.opcode;
|
|
if (options.rsv1) target[0] |= 64;
|
|
target[1] = payloadLength;
|
|
if (payloadLength === 126) {
|
|
target.writeUInt16BE(dataLength, 2);
|
|
} else if (payloadLength === 127) {
|
|
target[2] = target[3] = 0;
|
|
target.writeUIntBE(dataLength, 4, 6);
|
|
}
|
|
if (!options.mask) return [target, data];
|
|
target[1] |= 128;
|
|
target[offset - 4] = mask[0];
|
|
target[offset - 3] = mask[1];
|
|
target[offset - 2] = mask[2];
|
|
target[offset - 1] = mask[3];
|
|
if (skipMasking) return [target, data];
|
|
if (merge2) {
|
|
applyMask(data, mask, target, offset, dataLength);
|
|
return [target];
|
|
}
|
|
applyMask(data, mask, data, 0, dataLength);
|
|
return [target, data];
|
|
}
|
|
/**
|
|
* Sends a close message to the other peer.
|
|
*
|
|
* @param {Number} [code] The status code component of the body
|
|
* @param {(String|Buffer)} [data] The message component of the body
|
|
* @param {Boolean} [mask=false] Specifies whether or not to mask the message
|
|
* @param {Function} [cb] Callback
|
|
* @public
|
|
*/
|
|
close(code, data, mask, cb) {
|
|
let buf;
|
|
if (code === void 0) {
|
|
buf = EMPTY_BUFFER;
|
|
} else if (typeof code !== "number" || !isValidStatusCode(code)) {
|
|
throw new TypeError("First argument must be a valid error code number");
|
|
} else if (data === void 0 || !data.length) {
|
|
buf = Buffer.allocUnsafe(2);
|
|
buf.writeUInt16BE(code, 0);
|
|
} else {
|
|
const length = Buffer.byteLength(data);
|
|
if (length > 123) {
|
|
throw new RangeError("The message must not be greater than 123 bytes");
|
|
}
|
|
buf = Buffer.allocUnsafe(2 + length);
|
|
buf.writeUInt16BE(code, 0);
|
|
if (typeof data === "string") {
|
|
buf.write(data, 2);
|
|
} else {
|
|
buf.set(data, 2);
|
|
}
|
|
}
|
|
const options = {
|
|
[kByteLength]: buf.length,
|
|
fin: true,
|
|
generateMask: this._generateMask,
|
|
mask,
|
|
maskBuffer: this._maskBuffer,
|
|
opcode: 8,
|
|
readOnly: false,
|
|
rsv1: false
|
|
};
|
|
if (this._state !== DEFAULT) {
|
|
this.enqueue([this.dispatch, buf, false, options, cb]);
|
|
} else {
|
|
this.sendFrame(_Sender.frame(buf, options), cb);
|
|
}
|
|
}
|
|
/**
|
|
* Sends a ping message to the other peer.
|
|
*
|
|
* @param {*} data The message to send
|
|
* @param {Boolean} [mask=false] Specifies whether or not to mask `data`
|
|
* @param {Function} [cb] Callback
|
|
* @public
|
|
*/
|
|
ping(data, mask, cb) {
|
|
let byteLength;
|
|
let readOnly;
|
|
if (typeof data === "string") {
|
|
byteLength = Buffer.byteLength(data);
|
|
readOnly = false;
|
|
} else if (isBlob(data)) {
|
|
byteLength = data.size;
|
|
readOnly = false;
|
|
} else {
|
|
data = toBuffer(data);
|
|
byteLength = data.length;
|
|
readOnly = toBuffer.readOnly;
|
|
}
|
|
if (byteLength > 125) {
|
|
throw new RangeError("The data size must not be greater than 125 bytes");
|
|
}
|
|
const options = {
|
|
[kByteLength]: byteLength,
|
|
fin: true,
|
|
generateMask: this._generateMask,
|
|
mask,
|
|
maskBuffer: this._maskBuffer,
|
|
opcode: 9,
|
|
readOnly,
|
|
rsv1: false
|
|
};
|
|
if (isBlob(data)) {
|
|
if (this._state !== DEFAULT) {
|
|
this.enqueue([this.getBlobData, data, false, options, cb]);
|
|
} else {
|
|
this.getBlobData(data, false, options, cb);
|
|
}
|
|
} else if (this._state !== DEFAULT) {
|
|
this.enqueue([this.dispatch, data, false, options, cb]);
|
|
} else {
|
|
this.sendFrame(_Sender.frame(data, options), cb);
|
|
}
|
|
}
|
|
/**
|
|
* Sends a pong message to the other peer.
|
|
*
|
|
* @param {*} data The message to send
|
|
* @param {Boolean} [mask=false] Specifies whether or not to mask `data`
|
|
* @param {Function} [cb] Callback
|
|
* @public
|
|
*/
|
|
pong(data, mask, cb) {
|
|
let byteLength;
|
|
let readOnly;
|
|
if (typeof data === "string") {
|
|
byteLength = Buffer.byteLength(data);
|
|
readOnly = false;
|
|
} else if (isBlob(data)) {
|
|
byteLength = data.size;
|
|
readOnly = false;
|
|
} else {
|
|
data = toBuffer(data);
|
|
byteLength = data.length;
|
|
readOnly = toBuffer.readOnly;
|
|
}
|
|
if (byteLength > 125) {
|
|
throw new RangeError("The data size must not be greater than 125 bytes");
|
|
}
|
|
const options = {
|
|
[kByteLength]: byteLength,
|
|
fin: true,
|
|
generateMask: this._generateMask,
|
|
mask,
|
|
maskBuffer: this._maskBuffer,
|
|
opcode: 10,
|
|
readOnly,
|
|
rsv1: false
|
|
};
|
|
if (isBlob(data)) {
|
|
if (this._state !== DEFAULT) {
|
|
this.enqueue([this.getBlobData, data, false, options, cb]);
|
|
} else {
|
|
this.getBlobData(data, false, options, cb);
|
|
}
|
|
} else if (this._state !== DEFAULT) {
|
|
this.enqueue([this.dispatch, data, false, options, cb]);
|
|
} else {
|
|
this.sendFrame(_Sender.frame(data, options), cb);
|
|
}
|
|
}
|
|
/**
|
|
* Sends a data message to the other peer.
|
|
*
|
|
* @param {*} data The message to send
|
|
* @param {Object} options Options object
|
|
* @param {Boolean} [options.binary=false] Specifies whether `data` is binary
|
|
* or text
|
|
* @param {Boolean} [options.compress=false] Specifies whether or not to
|
|
* compress `data`
|
|
* @param {Boolean} [options.fin=false] Specifies whether the fragment is the
|
|
* last one
|
|
* @param {Boolean} [options.mask=false] Specifies whether or not to mask
|
|
* `data`
|
|
* @param {Function} [cb] Callback
|
|
* @public
|
|
*/
|
|
send(data, options, cb) {
|
|
const perMessageDeflate = this._extensions[PerMessageDeflate.extensionName];
|
|
let opcode = options.binary ? 2 : 1;
|
|
let rsv1 = options.compress;
|
|
let byteLength;
|
|
let readOnly;
|
|
if (typeof data === "string") {
|
|
byteLength = Buffer.byteLength(data);
|
|
readOnly = false;
|
|
} else if (isBlob(data)) {
|
|
byteLength = data.size;
|
|
readOnly = false;
|
|
} else {
|
|
data = toBuffer(data);
|
|
byteLength = data.length;
|
|
readOnly = toBuffer.readOnly;
|
|
}
|
|
if (this._firstFragment) {
|
|
this._firstFragment = false;
|
|
if (rsv1 && perMessageDeflate && perMessageDeflate.params[perMessageDeflate._isServer ? "server_no_context_takeover" : "client_no_context_takeover"]) {
|
|
rsv1 = byteLength >= perMessageDeflate._threshold;
|
|
}
|
|
this._compress = rsv1;
|
|
} else {
|
|
rsv1 = false;
|
|
opcode = 0;
|
|
}
|
|
if (options.fin) this._firstFragment = true;
|
|
const opts = {
|
|
[kByteLength]: byteLength,
|
|
fin: options.fin,
|
|
generateMask: this._generateMask,
|
|
mask: options.mask,
|
|
maskBuffer: this._maskBuffer,
|
|
opcode,
|
|
readOnly,
|
|
rsv1
|
|
};
|
|
if (isBlob(data)) {
|
|
if (this._state !== DEFAULT) {
|
|
this.enqueue([this.getBlobData, data, this._compress, opts, cb]);
|
|
} else {
|
|
this.getBlobData(data, this._compress, opts, cb);
|
|
}
|
|
} else if (this._state !== DEFAULT) {
|
|
this.enqueue([this.dispatch, data, this._compress, opts, cb]);
|
|
} else {
|
|
this.dispatch(data, this._compress, opts, cb);
|
|
}
|
|
}
|
|
/**
|
|
* Gets the contents of a blob as binary data.
|
|
*
|
|
* @param {Blob} blob The blob
|
|
* @param {Boolean} [compress=false] Specifies whether or not to compress
|
|
* the data
|
|
* @param {Object} options Options object
|
|
* @param {Boolean} [options.fin=false] Specifies whether or not to set the
|
|
* FIN bit
|
|
* @param {Function} [options.generateMask] The function used to generate the
|
|
* masking key
|
|
* @param {Boolean} [options.mask=false] Specifies whether or not to mask
|
|
* `data`
|
|
* @param {Buffer} [options.maskBuffer] The buffer used to store the masking
|
|
* key
|
|
* @param {Number} options.opcode The opcode
|
|
* @param {Boolean} [options.readOnly=false] Specifies whether `data` can be
|
|
* modified
|
|
* @param {Boolean} [options.rsv1=false] Specifies whether or not to set the
|
|
* RSV1 bit
|
|
* @param {Function} [cb] Callback
|
|
* @private
|
|
*/
|
|
getBlobData(blob, compress, options, cb) {
|
|
this._bufferedBytes += options[kByteLength];
|
|
this._state = GET_BLOB_DATA;
|
|
blob.arrayBuffer().then((arrayBuffer) => {
|
|
if (this._socket.destroyed) {
|
|
const err = new Error(
|
|
"The socket was closed while the blob was being read"
|
|
);
|
|
process.nextTick(callCallbacks, this, err, cb);
|
|
return;
|
|
}
|
|
this._bufferedBytes -= options[kByteLength];
|
|
const data = toBuffer(arrayBuffer);
|
|
if (!compress) {
|
|
this._state = DEFAULT;
|
|
this.sendFrame(_Sender.frame(data, options), cb);
|
|
this.dequeue();
|
|
} else {
|
|
this.dispatch(data, compress, options, cb);
|
|
}
|
|
}).catch((err) => {
|
|
process.nextTick(onError, this, err, cb);
|
|
});
|
|
}
|
|
/**
|
|
* Dispatches a message.
|
|
*
|
|
* @param {(Buffer|String)} data The message to send
|
|
* @param {Boolean} [compress=false] Specifies whether or not to compress
|
|
* `data`
|
|
* @param {Object} options Options object
|
|
* @param {Boolean} [options.fin=false] Specifies whether or not to set the
|
|
* FIN bit
|
|
* @param {Function} [options.generateMask] The function used to generate the
|
|
* masking key
|
|
* @param {Boolean} [options.mask=false] Specifies whether or not to mask
|
|
* `data`
|
|
* @param {Buffer} [options.maskBuffer] The buffer used to store the masking
|
|
* key
|
|
* @param {Number} options.opcode The opcode
|
|
* @param {Boolean} [options.readOnly=false] Specifies whether `data` can be
|
|
* modified
|
|
* @param {Boolean} [options.rsv1=false] Specifies whether or not to set the
|
|
* RSV1 bit
|
|
* @param {Function} [cb] Callback
|
|
* @private
|
|
*/
|
|
dispatch(data, compress, options, cb) {
|
|
if (!compress) {
|
|
this.sendFrame(_Sender.frame(data, options), cb);
|
|
return;
|
|
}
|
|
const perMessageDeflate = this._extensions[PerMessageDeflate.extensionName];
|
|
this._bufferedBytes += options[kByteLength];
|
|
this._state = DEFLATING;
|
|
perMessageDeflate.compress(data, options.fin, (_, buf) => {
|
|
if (this._socket.destroyed) {
|
|
const err = new Error(
|
|
"The socket was closed while data was being compressed"
|
|
);
|
|
callCallbacks(this, err, cb);
|
|
return;
|
|
}
|
|
this._bufferedBytes -= options[kByteLength];
|
|
this._state = DEFAULT;
|
|
options.readOnly = false;
|
|
this.sendFrame(_Sender.frame(buf, options), cb);
|
|
this.dequeue();
|
|
});
|
|
}
|
|
/**
|
|
* Executes queued send operations.
|
|
*
|
|
* @private
|
|
*/
|
|
dequeue() {
|
|
while (this._state === DEFAULT && this._queue.length) {
|
|
const params = this._queue.shift();
|
|
this._bufferedBytes -= params[3][kByteLength];
|
|
Reflect.apply(params[0], this, params.slice(1));
|
|
}
|
|
}
|
|
/**
|
|
* Enqueues a send operation.
|
|
*
|
|
* @param {Array} params Send operation parameters.
|
|
* @private
|
|
*/
|
|
enqueue(params) {
|
|
this._bufferedBytes += params[3][kByteLength];
|
|
this._queue.push(params);
|
|
}
|
|
/**
|
|
* Sends a frame.
|
|
*
|
|
* @param {(Buffer | String)[]} list The frame to send
|
|
* @param {Function} [cb] Callback
|
|
* @private
|
|
*/
|
|
sendFrame(list, cb) {
|
|
if (list.length === 2) {
|
|
this._socket.cork();
|
|
this._socket.write(list[0]);
|
|
this._socket.write(list[1], cb);
|
|
this._socket.uncork();
|
|
} else {
|
|
this._socket.write(list[0], cb);
|
|
}
|
|
}
|
|
};
|
|
module.exports = Sender2;
|
|
function callCallbacks(sender, err, cb) {
|
|
if (typeof cb === "function") cb(err);
|
|
for (let i = 0; i < sender._queue.length; i++) {
|
|
const params = sender._queue[i];
|
|
const callback = params[params.length - 1];
|
|
if (typeof callback === "function") callback(err);
|
|
}
|
|
}
|
|
function onError(sender, err, cb) {
|
|
callCallbacks(sender, err, cb);
|
|
sender.onerror(err);
|
|
}
|
|
}
|
|
});
|
|
|
|
// node_modules/ws/lib/event-target.js
|
|
var require_event_target = __commonJS({
|
|
"node_modules/ws/lib/event-target.js"(exports, module) {
|
|
"use strict";
|
|
var { kForOnEventAttribute, kListener } = require_constants();
|
|
var kCode = Symbol("kCode");
|
|
var kData = Symbol("kData");
|
|
var kError = Symbol("kError");
|
|
var kMessage = Symbol("kMessage");
|
|
var kReason = Symbol("kReason");
|
|
var kTarget = Symbol("kTarget");
|
|
var kType = Symbol("kType");
|
|
var kWasClean = Symbol("kWasClean");
|
|
var Event = class {
|
|
/**
|
|
* Create a new `Event`.
|
|
*
|
|
* @param {String} type The name of the event
|
|
* @throws {TypeError} If the `type` argument is not specified
|
|
*/
|
|
constructor(type) {
|
|
this[kTarget] = null;
|
|
this[kType] = type;
|
|
}
|
|
/**
|
|
* @type {*}
|
|
*/
|
|
get target() {
|
|
return this[kTarget];
|
|
}
|
|
/**
|
|
* @type {String}
|
|
*/
|
|
get type() {
|
|
return this[kType];
|
|
}
|
|
};
|
|
Object.defineProperty(Event.prototype, "target", { enumerable: true });
|
|
Object.defineProperty(Event.prototype, "type", { enumerable: true });
|
|
var CloseEvent = class extends Event {
|
|
/**
|
|
* Create a new `CloseEvent`.
|
|
*
|
|
* @param {String} type The name of the event
|
|
* @param {Object} [options] A dictionary object that allows for setting
|
|
* attributes via object members of the same name
|
|
* @param {Number} [options.code=0] The status code explaining why the
|
|
* connection was closed
|
|
* @param {String} [options.reason=''] A human-readable string explaining why
|
|
* the connection was closed
|
|
* @param {Boolean} [options.wasClean=false] Indicates whether or not the
|
|
* connection was cleanly closed
|
|
*/
|
|
constructor(type, options = {}) {
|
|
super(type);
|
|
this[kCode] = options.code === void 0 ? 0 : options.code;
|
|
this[kReason] = options.reason === void 0 ? "" : options.reason;
|
|
this[kWasClean] = options.wasClean === void 0 ? false : options.wasClean;
|
|
}
|
|
/**
|
|
* @type {Number}
|
|
*/
|
|
get code() {
|
|
return this[kCode];
|
|
}
|
|
/**
|
|
* @type {String}
|
|
*/
|
|
get reason() {
|
|
return this[kReason];
|
|
}
|
|
/**
|
|
* @type {Boolean}
|
|
*/
|
|
get wasClean() {
|
|
return this[kWasClean];
|
|
}
|
|
};
|
|
Object.defineProperty(CloseEvent.prototype, "code", { enumerable: true });
|
|
Object.defineProperty(CloseEvent.prototype, "reason", { enumerable: true });
|
|
Object.defineProperty(CloseEvent.prototype, "wasClean", { enumerable: true });
|
|
var ErrorEvent = class extends Event {
|
|
/**
|
|
* Create a new `ErrorEvent`.
|
|
*
|
|
* @param {String} type The name of the event
|
|
* @param {Object} [options] A dictionary object that allows for setting
|
|
* attributes via object members of the same name
|
|
* @param {*} [options.error=null] The error that generated this event
|
|
* @param {String} [options.message=''] The error message
|
|
*/
|
|
constructor(type, options = {}) {
|
|
super(type);
|
|
this[kError] = options.error === void 0 ? null : options.error;
|
|
this[kMessage] = options.message === void 0 ? "" : options.message;
|
|
}
|
|
/**
|
|
* @type {*}
|
|
*/
|
|
get error() {
|
|
return this[kError];
|
|
}
|
|
/**
|
|
* @type {String}
|
|
*/
|
|
get message() {
|
|
return this[kMessage];
|
|
}
|
|
};
|
|
Object.defineProperty(ErrorEvent.prototype, "error", { enumerable: true });
|
|
Object.defineProperty(ErrorEvent.prototype, "message", { enumerable: true });
|
|
var MessageEvent = class extends Event {
|
|
/**
|
|
* Create a new `MessageEvent`.
|
|
*
|
|
* @param {String} type The name of the event
|
|
* @param {Object} [options] A dictionary object that allows for setting
|
|
* attributes via object members of the same name
|
|
* @param {*} [options.data=null] The message content
|
|
*/
|
|
constructor(type, options = {}) {
|
|
super(type);
|
|
this[kData] = options.data === void 0 ? null : options.data;
|
|
}
|
|
/**
|
|
* @type {*}
|
|
*/
|
|
get data() {
|
|
return this[kData];
|
|
}
|
|
};
|
|
Object.defineProperty(MessageEvent.prototype, "data", { enumerable: true });
|
|
var EventTarget = {
|
|
/**
|
|
* Register an event listener.
|
|
*
|
|
* @param {String} type A string representing the event type to listen for
|
|
* @param {(Function|Object)} handler The listener to add
|
|
* @param {Object} [options] An options object specifies characteristics about
|
|
* the event listener
|
|
* @param {Boolean} [options.once=false] A `Boolean` indicating that the
|
|
* listener should be invoked at most once after being added. If `true`,
|
|
* the listener would be automatically removed when invoked.
|
|
* @public
|
|
*/
|
|
addEventListener(type, handler, options = {}) {
|
|
for (const listener of this.listeners(type)) {
|
|
if (!options[kForOnEventAttribute] && listener[kListener] === handler && !listener[kForOnEventAttribute]) {
|
|
return;
|
|
}
|
|
}
|
|
let wrapper;
|
|
if (type === "message") {
|
|
wrapper = function onMessage(data, isBinary) {
|
|
const event = new MessageEvent("message", {
|
|
data: isBinary ? data : data.toString()
|
|
});
|
|
event[kTarget] = this;
|
|
callListener(handler, this, event);
|
|
};
|
|
} else if (type === "close") {
|
|
wrapper = function onClose(code, message) {
|
|
const event = new CloseEvent("close", {
|
|
code,
|
|
reason: message.toString(),
|
|
wasClean: this._closeFrameReceived && this._closeFrameSent
|
|
});
|
|
event[kTarget] = this;
|
|
callListener(handler, this, event);
|
|
};
|
|
} else if (type === "error") {
|
|
wrapper = function onError(error2) {
|
|
const event = new ErrorEvent("error", {
|
|
error: error2,
|
|
message: error2.message
|
|
});
|
|
event[kTarget] = this;
|
|
callListener(handler, this, event);
|
|
};
|
|
} else if (type === "open") {
|
|
wrapper = function onOpen() {
|
|
const event = new Event("open");
|
|
event[kTarget] = this;
|
|
callListener(handler, this, event);
|
|
};
|
|
} else {
|
|
return;
|
|
}
|
|
wrapper[kForOnEventAttribute] = !!options[kForOnEventAttribute];
|
|
wrapper[kListener] = handler;
|
|
if (options.once) {
|
|
this.once(type, wrapper);
|
|
} else {
|
|
this.on(type, wrapper);
|
|
}
|
|
},
|
|
/**
|
|
* Remove an event listener.
|
|
*
|
|
* @param {String} type A string representing the event type to remove
|
|
* @param {(Function|Object)} handler The listener to remove
|
|
* @public
|
|
*/
|
|
removeEventListener(type, handler) {
|
|
for (const listener of this.listeners(type)) {
|
|
if (listener[kListener] === handler && !listener[kForOnEventAttribute]) {
|
|
this.removeListener(type, listener);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
};
|
|
module.exports = {
|
|
CloseEvent,
|
|
ErrorEvent,
|
|
Event,
|
|
EventTarget,
|
|
MessageEvent
|
|
};
|
|
function callListener(listener, thisArg, event) {
|
|
if (typeof listener === "object" && listener.handleEvent) {
|
|
listener.handleEvent.call(listener, event);
|
|
} else {
|
|
listener.call(thisArg, event);
|
|
}
|
|
}
|
|
}
|
|
});
|
|
|
|
// node_modules/ws/lib/extension.js
|
|
var require_extension = __commonJS({
|
|
"node_modules/ws/lib/extension.js"(exports, module) {
|
|
"use strict";
|
|
var { tokenChars } = require_validation();
|
|
function push(dest, name, elem) {
|
|
if (dest[name] === void 0) dest[name] = [elem];
|
|
else dest[name].push(elem);
|
|
}
|
|
function parse4(header) {
|
|
const offers = /* @__PURE__ */ Object.create(null);
|
|
let params = /* @__PURE__ */ Object.create(null);
|
|
let mustUnescape = false;
|
|
let isEscaping = false;
|
|
let inQuotes = false;
|
|
let extensionName;
|
|
let paramName;
|
|
let start = -1;
|
|
let code = -1;
|
|
let end = -1;
|
|
let i = 0;
|
|
for (; i < header.length; i++) {
|
|
code = header.charCodeAt(i);
|
|
if (extensionName === void 0) {
|
|
if (end === -1 && tokenChars[code] === 1) {
|
|
if (start === -1) start = i;
|
|
} else if (i !== 0 && (code === 32 || code === 9)) {
|
|
if (end === -1 && start !== -1) end = i;
|
|
} else if (code === 59 || code === 44) {
|
|
if (start === -1) {
|
|
throw new SyntaxError(`Unexpected character at index ${i}`);
|
|
}
|
|
if (end === -1) end = i;
|
|
const name = header.slice(start, end);
|
|
if (code === 44) {
|
|
push(offers, name, params);
|
|
params = /* @__PURE__ */ Object.create(null);
|
|
} else {
|
|
extensionName = name;
|
|
}
|
|
start = end = -1;
|
|
} else {
|
|
throw new SyntaxError(`Unexpected character at index ${i}`);
|
|
}
|
|
} else if (paramName === void 0) {
|
|
if (end === -1 && tokenChars[code] === 1) {
|
|
if (start === -1) start = i;
|
|
} else if (code === 32 || code === 9) {
|
|
if (end === -1 && start !== -1) end = i;
|
|
} else if (code === 59 || code === 44) {
|
|
if (start === -1) {
|
|
throw new SyntaxError(`Unexpected character at index ${i}`);
|
|
}
|
|
if (end === -1) end = i;
|
|
push(params, header.slice(start, end), true);
|
|
if (code === 44) {
|
|
push(offers, extensionName, params);
|
|
params = /* @__PURE__ */ Object.create(null);
|
|
extensionName = void 0;
|
|
}
|
|
start = end = -1;
|
|
} else if (code === 61 && start !== -1 && end === -1) {
|
|
paramName = header.slice(start, i);
|
|
start = end = -1;
|
|
} else {
|
|
throw new SyntaxError(`Unexpected character at index ${i}`);
|
|
}
|
|
} else {
|
|
if (isEscaping) {
|
|
if (tokenChars[code] !== 1) {
|
|
throw new SyntaxError(`Unexpected character at index ${i}`);
|
|
}
|
|
if (start === -1) start = i;
|
|
else if (!mustUnescape) mustUnescape = true;
|
|
isEscaping = false;
|
|
} else if (inQuotes) {
|
|
if (tokenChars[code] === 1) {
|
|
if (start === -1) start = i;
|
|
} else if (code === 34 && start !== -1) {
|
|
inQuotes = false;
|
|
end = i;
|
|
} else if (code === 92) {
|
|
isEscaping = true;
|
|
} else {
|
|
throw new SyntaxError(`Unexpected character at index ${i}`);
|
|
}
|
|
} else if (code === 34 && header.charCodeAt(i - 1) === 61) {
|
|
inQuotes = true;
|
|
} else if (end === -1 && tokenChars[code] === 1) {
|
|
if (start === -1) start = i;
|
|
} else if (start !== -1 && (code === 32 || code === 9)) {
|
|
if (end === -1) end = i;
|
|
} else if (code === 59 || code === 44) {
|
|
if (start === -1) {
|
|
throw new SyntaxError(`Unexpected character at index ${i}`);
|
|
}
|
|
if (end === -1) end = i;
|
|
let value = header.slice(start, end);
|
|
if (mustUnescape) {
|
|
value = value.replace(/\\/g, "");
|
|
mustUnescape = false;
|
|
}
|
|
push(params, paramName, value);
|
|
if (code === 44) {
|
|
push(offers, extensionName, params);
|
|
params = /* @__PURE__ */ Object.create(null);
|
|
extensionName = void 0;
|
|
}
|
|
paramName = void 0;
|
|
start = end = -1;
|
|
} else {
|
|
throw new SyntaxError(`Unexpected character at index ${i}`);
|
|
}
|
|
}
|
|
}
|
|
if (start === -1 || inQuotes || code === 32 || code === 9) {
|
|
throw new SyntaxError("Unexpected end of input");
|
|
}
|
|
if (end === -1) end = i;
|
|
const token = header.slice(start, end);
|
|
if (extensionName === void 0) {
|
|
push(offers, token, params);
|
|
} else {
|
|
if (paramName === void 0) {
|
|
push(params, token, true);
|
|
} else if (mustUnescape) {
|
|
push(params, paramName, token.replace(/\\/g, ""));
|
|
} else {
|
|
push(params, paramName, token);
|
|
}
|
|
push(offers, extensionName, params);
|
|
}
|
|
return offers;
|
|
}
|
|
function format(extensions) {
|
|
return Object.keys(extensions).map((extension) => {
|
|
let configurations = extensions[extension];
|
|
if (!Array.isArray(configurations)) configurations = [configurations];
|
|
return configurations.map((params) => {
|
|
return [extension].concat(
|
|
Object.keys(params).map((k) => {
|
|
let values = params[k];
|
|
if (!Array.isArray(values)) values = [values];
|
|
return values.map((v) => v === true ? k : `${k}=${v}`).join("; ");
|
|
})
|
|
).join("; ");
|
|
}).join(", ");
|
|
}).join(", ");
|
|
}
|
|
module.exports = { format, parse: parse4 };
|
|
}
|
|
});
|
|
|
|
// node_modules/ws/lib/websocket.js
|
|
var require_websocket = __commonJS({
|
|
"node_modules/ws/lib/websocket.js"(exports, module) {
|
|
"use strict";
|
|
var EventEmitter = __require("events");
|
|
var https = __require("https");
|
|
var http = __require("http");
|
|
var net = __require("net");
|
|
var tls = __require("tls");
|
|
var { randomBytes: randomBytes2, createHash } = __require("crypto");
|
|
var { Duplex, Readable } = __require("stream");
|
|
var { URL: URL2 } = __require("url");
|
|
var PerMessageDeflate = require_permessage_deflate();
|
|
var Receiver2 = require_receiver();
|
|
var Sender2 = require_sender();
|
|
var { isBlob } = require_validation();
|
|
var {
|
|
BINARY_TYPES,
|
|
CLOSE_TIMEOUT,
|
|
EMPTY_BUFFER,
|
|
GUID,
|
|
kForOnEventAttribute,
|
|
kListener,
|
|
kStatusCode,
|
|
kWebSocket,
|
|
NOOP
|
|
} = require_constants();
|
|
var {
|
|
EventTarget: { addEventListener, removeEventListener }
|
|
} = require_event_target();
|
|
var { format, parse: parse4 } = require_extension();
|
|
var { toBuffer } = require_buffer_util();
|
|
var kAborted = Symbol("kAborted");
|
|
var protocolVersions = [8, 13];
|
|
var readyStates = ["CONNECTING", "OPEN", "CLOSING", "CLOSED"];
|
|
var subprotocolRegex = /^[!#$%&'*+\-.0-9A-Z^_`|a-z~]+$/;
|
|
var WebSocket2 = class _WebSocket extends EventEmitter {
|
|
/**
|
|
* Create a new `WebSocket`.
|
|
*
|
|
* @param {(String|URL)} address The URL to which to connect
|
|
* @param {(String|String[])} [protocols] The subprotocols
|
|
* @param {Object} [options] Connection options
|
|
*/
|
|
constructor(address, protocols, options) {
|
|
super();
|
|
this._binaryType = BINARY_TYPES[0];
|
|
this._closeCode = 1006;
|
|
this._closeFrameReceived = false;
|
|
this._closeFrameSent = false;
|
|
this._closeMessage = EMPTY_BUFFER;
|
|
this._closeTimer = null;
|
|
this._errorEmitted = false;
|
|
this._extensions = {};
|
|
this._paused = false;
|
|
this._protocol = "";
|
|
this._readyState = _WebSocket.CONNECTING;
|
|
this._receiver = null;
|
|
this._sender = null;
|
|
this._socket = null;
|
|
if (address !== null) {
|
|
this._bufferedAmount = 0;
|
|
this._isServer = false;
|
|
this._redirects = 0;
|
|
if (protocols === void 0) {
|
|
protocols = [];
|
|
} else if (!Array.isArray(protocols)) {
|
|
if (typeof protocols === "object" && protocols !== null) {
|
|
options = protocols;
|
|
protocols = [];
|
|
} else {
|
|
protocols = [protocols];
|
|
}
|
|
}
|
|
initAsClient(this, address, protocols, options);
|
|
} else {
|
|
this._autoPong = options.autoPong;
|
|
this._closeTimeout = options.closeTimeout;
|
|
this._isServer = true;
|
|
}
|
|
}
|
|
/**
|
|
* For historical reasons, the custom "nodebuffer" type is used by the default
|
|
* instead of "blob".
|
|
*
|
|
* @type {String}
|
|
*/
|
|
get binaryType() {
|
|
return this._binaryType;
|
|
}
|
|
set binaryType(type) {
|
|
if (!BINARY_TYPES.includes(type)) return;
|
|
this._binaryType = type;
|
|
if (this._receiver) this._receiver._binaryType = type;
|
|
}
|
|
/**
|
|
* @type {Number}
|
|
*/
|
|
get bufferedAmount() {
|
|
if (!this._socket) return this._bufferedAmount;
|
|
return this._socket._writableState.length + this._sender._bufferedBytes;
|
|
}
|
|
/**
|
|
* @type {String}
|
|
*/
|
|
get extensions() {
|
|
return Object.keys(this._extensions).join();
|
|
}
|
|
/**
|
|
* @type {Boolean}
|
|
*/
|
|
get isPaused() {
|
|
return this._paused;
|
|
}
|
|
/**
|
|
* @type {Function}
|
|
*/
|
|
/* istanbul ignore next */
|
|
get onclose() {
|
|
return null;
|
|
}
|
|
/**
|
|
* @type {Function}
|
|
*/
|
|
/* istanbul ignore next */
|
|
get onerror() {
|
|
return null;
|
|
}
|
|
/**
|
|
* @type {Function}
|
|
*/
|
|
/* istanbul ignore next */
|
|
get onopen() {
|
|
return null;
|
|
}
|
|
/**
|
|
* @type {Function}
|
|
*/
|
|
/* istanbul ignore next */
|
|
get onmessage() {
|
|
return null;
|
|
}
|
|
/**
|
|
* @type {String}
|
|
*/
|
|
get protocol() {
|
|
return this._protocol;
|
|
}
|
|
/**
|
|
* @type {Number}
|
|
*/
|
|
get readyState() {
|
|
return this._readyState;
|
|
}
|
|
/**
|
|
* @type {String}
|
|
*/
|
|
get url() {
|
|
return this._url;
|
|
}
|
|
/**
|
|
* Set up the socket and the internal resources.
|
|
*
|
|
* @param {Duplex} socket The network socket between the server and client
|
|
* @param {Buffer} head The first packet of the upgraded stream
|
|
* @param {Object} options Options object
|
|
* @param {Boolean} [options.allowSynchronousEvents=false] Specifies whether
|
|
* any of the `'message'`, `'ping'`, and `'pong'` events can be emitted
|
|
* multiple times in the same tick
|
|
* @param {Function} [options.generateMask] The function used to generate the
|
|
* masking key
|
|
* @param {Number} [options.maxPayload=0] The maximum allowed message size
|
|
* @param {Boolean} [options.skipUTF8Validation=false] Specifies whether or
|
|
* not to skip UTF-8 validation for text and close messages
|
|
* @private
|
|
*/
|
|
setSocket(socket, head, options) {
|
|
const receiver = new Receiver2({
|
|
allowSynchronousEvents: options.allowSynchronousEvents,
|
|
binaryType: this.binaryType,
|
|
extensions: this._extensions,
|
|
isServer: this._isServer,
|
|
maxPayload: options.maxPayload,
|
|
skipUTF8Validation: options.skipUTF8Validation
|
|
});
|
|
const sender = new Sender2(socket, this._extensions, options.generateMask);
|
|
this._receiver = receiver;
|
|
this._sender = sender;
|
|
this._socket = socket;
|
|
receiver[kWebSocket] = this;
|
|
sender[kWebSocket] = this;
|
|
socket[kWebSocket] = this;
|
|
receiver.on("conclude", receiverOnConclude);
|
|
receiver.on("drain", receiverOnDrain);
|
|
receiver.on("error", receiverOnError);
|
|
receiver.on("message", receiverOnMessage);
|
|
receiver.on("ping", receiverOnPing);
|
|
receiver.on("pong", receiverOnPong);
|
|
sender.onerror = senderOnError;
|
|
if (socket.setTimeout) socket.setTimeout(0);
|
|
if (socket.setNoDelay) socket.setNoDelay();
|
|
if (head.length > 0) socket.unshift(head);
|
|
socket.on("close", socketOnClose);
|
|
socket.on("data", socketOnData);
|
|
socket.on("end", socketOnEnd);
|
|
socket.on("error", socketOnError);
|
|
this._readyState = _WebSocket.OPEN;
|
|
this.emit("open");
|
|
}
|
|
/**
|
|
* Emit the `'close'` event.
|
|
*
|
|
* @private
|
|
*/
|
|
emitClose() {
|
|
if (!this._socket) {
|
|
this._readyState = _WebSocket.CLOSED;
|
|
this.emit("close", this._closeCode, this._closeMessage);
|
|
return;
|
|
}
|
|
if (this._extensions[PerMessageDeflate.extensionName]) {
|
|
this._extensions[PerMessageDeflate.extensionName].cleanup();
|
|
}
|
|
this._receiver.removeAllListeners();
|
|
this._readyState = _WebSocket.CLOSED;
|
|
this.emit("close", this._closeCode, this._closeMessage);
|
|
}
|
|
/**
|
|
* Start a closing handshake.
|
|
*
|
|
* +----------+ +-----------+ +----------+
|
|
* - - -|ws.close()|-->|close frame|-->|ws.close()|- - -
|
|
* | +----------+ +-----------+ +----------+ |
|
|
* +----------+ +-----------+ |
|
|
* CLOSING |ws.close()|<--|close frame|<--+-----+ CLOSING
|
|
* +----------+ +-----------+ |
|
|
* | | | +---+ |
|
|
* +------------------------+-->|fin| - - - -
|
|
* | +---+ | +---+
|
|
* - - - - -|fin|<---------------------+
|
|
* +---+
|
|
*
|
|
* @param {Number} [code] Status code explaining why the connection is closing
|
|
* @param {(String|Buffer)} [data] The reason why the connection is
|
|
* closing
|
|
* @public
|
|
*/
|
|
close(code, data) {
|
|
if (this.readyState === _WebSocket.CLOSED) return;
|
|
if (this.readyState === _WebSocket.CONNECTING) {
|
|
const msg = "WebSocket was closed before the connection was established";
|
|
abortHandshake(this, this._req, msg);
|
|
return;
|
|
}
|
|
if (this.readyState === _WebSocket.CLOSING) {
|
|
if (this._closeFrameSent && (this._closeFrameReceived || this._receiver._writableState.errorEmitted)) {
|
|
this._socket.end();
|
|
}
|
|
return;
|
|
}
|
|
this._readyState = _WebSocket.CLOSING;
|
|
this._sender.close(code, data, !this._isServer, (err) => {
|
|
if (err) return;
|
|
this._closeFrameSent = true;
|
|
if (this._closeFrameReceived || this._receiver._writableState.errorEmitted) {
|
|
this._socket.end();
|
|
}
|
|
});
|
|
setCloseTimer(this);
|
|
}
|
|
/**
|
|
* Pause the socket.
|
|
*
|
|
* @public
|
|
*/
|
|
pause() {
|
|
if (this.readyState === _WebSocket.CONNECTING || this.readyState === _WebSocket.CLOSED) {
|
|
return;
|
|
}
|
|
this._paused = true;
|
|
this._socket.pause();
|
|
}
|
|
/**
|
|
* Send a ping.
|
|
*
|
|
* @param {*} [data] The data to send
|
|
* @param {Boolean} [mask] Indicates whether or not to mask `data`
|
|
* @param {Function} [cb] Callback which is executed when the ping is sent
|
|
* @public
|
|
*/
|
|
ping(data, mask, cb) {
|
|
if (this.readyState === _WebSocket.CONNECTING) {
|
|
throw new Error("WebSocket is not open: readyState 0 (CONNECTING)");
|
|
}
|
|
if (typeof data === "function") {
|
|
cb = data;
|
|
data = mask = void 0;
|
|
} else if (typeof mask === "function") {
|
|
cb = mask;
|
|
mask = void 0;
|
|
}
|
|
if (typeof data === "number") data = data.toString();
|
|
if (this.readyState !== _WebSocket.OPEN) {
|
|
sendAfterClose(this, data, cb);
|
|
return;
|
|
}
|
|
if (mask === void 0) mask = !this._isServer;
|
|
this._sender.ping(data || EMPTY_BUFFER, mask, cb);
|
|
}
|
|
/**
|
|
* Send a pong.
|
|
*
|
|
* @param {*} [data] The data to send
|
|
* @param {Boolean} [mask] Indicates whether or not to mask `data`
|
|
* @param {Function} [cb] Callback which is executed when the pong is sent
|
|
* @public
|
|
*/
|
|
pong(data, mask, cb) {
|
|
if (this.readyState === _WebSocket.CONNECTING) {
|
|
throw new Error("WebSocket is not open: readyState 0 (CONNECTING)");
|
|
}
|
|
if (typeof data === "function") {
|
|
cb = data;
|
|
data = mask = void 0;
|
|
} else if (typeof mask === "function") {
|
|
cb = mask;
|
|
mask = void 0;
|
|
}
|
|
if (typeof data === "number") data = data.toString();
|
|
if (this.readyState !== _WebSocket.OPEN) {
|
|
sendAfterClose(this, data, cb);
|
|
return;
|
|
}
|
|
if (mask === void 0) mask = !this._isServer;
|
|
this._sender.pong(data || EMPTY_BUFFER, mask, cb);
|
|
}
|
|
/**
|
|
* Resume the socket.
|
|
*
|
|
* @public
|
|
*/
|
|
resume() {
|
|
if (this.readyState === _WebSocket.CONNECTING || this.readyState === _WebSocket.CLOSED) {
|
|
return;
|
|
}
|
|
this._paused = false;
|
|
if (!this._receiver._writableState.needDrain) this._socket.resume();
|
|
}
|
|
/**
|
|
* Send a data message.
|
|
*
|
|
* @param {*} data The message to send
|
|
* @param {Object} [options] Options object
|
|
* @param {Boolean} [options.binary] Specifies whether `data` is binary or
|
|
* text
|
|
* @param {Boolean} [options.compress] Specifies whether or not to compress
|
|
* `data`
|
|
* @param {Boolean} [options.fin=true] Specifies whether the fragment is the
|
|
* last one
|
|
* @param {Boolean} [options.mask] Specifies whether or not to mask `data`
|
|
* @param {Function} [cb] Callback which is executed when data is written out
|
|
* @public
|
|
*/
|
|
send(data, options, cb) {
|
|
if (this.readyState === _WebSocket.CONNECTING) {
|
|
throw new Error("WebSocket is not open: readyState 0 (CONNECTING)");
|
|
}
|
|
if (typeof options === "function") {
|
|
cb = options;
|
|
options = {};
|
|
}
|
|
if (typeof data === "number") data = data.toString();
|
|
if (this.readyState !== _WebSocket.OPEN) {
|
|
sendAfterClose(this, data, cb);
|
|
return;
|
|
}
|
|
const opts = {
|
|
binary: typeof data !== "string",
|
|
mask: !this._isServer,
|
|
compress: true,
|
|
fin: true,
|
|
...options
|
|
};
|
|
if (!this._extensions[PerMessageDeflate.extensionName]) {
|
|
opts.compress = false;
|
|
}
|
|
this._sender.send(data || EMPTY_BUFFER, opts, cb);
|
|
}
|
|
/**
|
|
* Forcibly close the connection.
|
|
*
|
|
* @public
|
|
*/
|
|
terminate() {
|
|
if (this.readyState === _WebSocket.CLOSED) return;
|
|
if (this.readyState === _WebSocket.CONNECTING) {
|
|
const msg = "WebSocket was closed before the connection was established";
|
|
abortHandshake(this, this._req, msg);
|
|
return;
|
|
}
|
|
if (this._socket) {
|
|
this._readyState = _WebSocket.CLOSING;
|
|
this._socket.destroy();
|
|
}
|
|
}
|
|
};
|
|
Object.defineProperty(WebSocket2, "CONNECTING", {
|
|
enumerable: true,
|
|
value: readyStates.indexOf("CONNECTING")
|
|
});
|
|
Object.defineProperty(WebSocket2.prototype, "CONNECTING", {
|
|
enumerable: true,
|
|
value: readyStates.indexOf("CONNECTING")
|
|
});
|
|
Object.defineProperty(WebSocket2, "OPEN", {
|
|
enumerable: true,
|
|
value: readyStates.indexOf("OPEN")
|
|
});
|
|
Object.defineProperty(WebSocket2.prototype, "OPEN", {
|
|
enumerable: true,
|
|
value: readyStates.indexOf("OPEN")
|
|
});
|
|
Object.defineProperty(WebSocket2, "CLOSING", {
|
|
enumerable: true,
|
|
value: readyStates.indexOf("CLOSING")
|
|
});
|
|
Object.defineProperty(WebSocket2.prototype, "CLOSING", {
|
|
enumerable: true,
|
|
value: readyStates.indexOf("CLOSING")
|
|
});
|
|
Object.defineProperty(WebSocket2, "CLOSED", {
|
|
enumerable: true,
|
|
value: readyStates.indexOf("CLOSED")
|
|
});
|
|
Object.defineProperty(WebSocket2.prototype, "CLOSED", {
|
|
enumerable: true,
|
|
value: readyStates.indexOf("CLOSED")
|
|
});
|
|
[
|
|
"binaryType",
|
|
"bufferedAmount",
|
|
"extensions",
|
|
"isPaused",
|
|
"protocol",
|
|
"readyState",
|
|
"url"
|
|
].forEach((property) => {
|
|
Object.defineProperty(WebSocket2.prototype, property, { enumerable: true });
|
|
});
|
|
["open", "error", "close", "message"].forEach((method) => {
|
|
Object.defineProperty(WebSocket2.prototype, `on${method}`, {
|
|
enumerable: true,
|
|
get() {
|
|
for (const listener of this.listeners(method)) {
|
|
if (listener[kForOnEventAttribute]) return listener[kListener];
|
|
}
|
|
return null;
|
|
},
|
|
set(handler) {
|
|
for (const listener of this.listeners(method)) {
|
|
if (listener[kForOnEventAttribute]) {
|
|
this.removeListener(method, listener);
|
|
break;
|
|
}
|
|
}
|
|
if (typeof handler !== "function") return;
|
|
this.addEventListener(method, handler, {
|
|
[kForOnEventAttribute]: true
|
|
});
|
|
}
|
|
});
|
|
});
|
|
WebSocket2.prototype.addEventListener = addEventListener;
|
|
WebSocket2.prototype.removeEventListener = removeEventListener;
|
|
module.exports = WebSocket2;
|
|
function initAsClient(websocket, address, protocols, options) {
|
|
const opts = {
|
|
allowSynchronousEvents: true,
|
|
autoPong: true,
|
|
closeTimeout: CLOSE_TIMEOUT,
|
|
protocolVersion: protocolVersions[1],
|
|
maxPayload: 100 * 1024 * 1024,
|
|
skipUTF8Validation: false,
|
|
perMessageDeflate: true,
|
|
followRedirects: false,
|
|
maxRedirects: 10,
|
|
...options,
|
|
socketPath: void 0,
|
|
hostname: void 0,
|
|
protocol: void 0,
|
|
timeout: void 0,
|
|
method: "GET",
|
|
host: void 0,
|
|
path: void 0,
|
|
port: void 0
|
|
};
|
|
websocket._autoPong = opts.autoPong;
|
|
websocket._closeTimeout = opts.closeTimeout;
|
|
if (!protocolVersions.includes(opts.protocolVersion)) {
|
|
throw new RangeError(
|
|
`Unsupported protocol version: ${opts.protocolVersion} (supported versions: ${protocolVersions.join(", ")})`
|
|
);
|
|
}
|
|
let parsedUrl;
|
|
if (address instanceof URL2) {
|
|
parsedUrl = address;
|
|
} else {
|
|
try {
|
|
parsedUrl = new URL2(address);
|
|
} catch (e) {
|
|
throw new SyntaxError(`Invalid URL: ${address}`);
|
|
}
|
|
}
|
|
if (parsedUrl.protocol === "http:") {
|
|
parsedUrl.protocol = "ws:";
|
|
} else if (parsedUrl.protocol === "https:") {
|
|
parsedUrl.protocol = "wss:";
|
|
}
|
|
websocket._url = parsedUrl.href;
|
|
const isSecure = parsedUrl.protocol === "wss:";
|
|
const isIpcUrl = parsedUrl.protocol === "ws+unix:";
|
|
let invalidUrlMessage;
|
|
if (parsedUrl.protocol !== "ws:" && !isSecure && !isIpcUrl) {
|
|
invalidUrlMessage = `The URL's protocol must be one of "ws:", "wss:", "http:", "https:", or "ws+unix:"`;
|
|
} else if (isIpcUrl && !parsedUrl.pathname) {
|
|
invalidUrlMessage = "The URL's pathname is empty";
|
|
} else if (parsedUrl.hash) {
|
|
invalidUrlMessage = "The URL contains a fragment identifier";
|
|
}
|
|
if (invalidUrlMessage) {
|
|
const err = new SyntaxError(invalidUrlMessage);
|
|
if (websocket._redirects === 0) {
|
|
throw err;
|
|
} else {
|
|
emitErrorAndClose(websocket, err);
|
|
return;
|
|
}
|
|
}
|
|
const defaultPort = isSecure ? 443 : 80;
|
|
const key = randomBytes2(16).toString("base64");
|
|
const request = isSecure ? https.request : http.request;
|
|
const protocolSet = /* @__PURE__ */ new Set();
|
|
let perMessageDeflate;
|
|
opts.createConnection = opts.createConnection || (isSecure ? tlsConnect : netConnect);
|
|
opts.defaultPort = opts.defaultPort || defaultPort;
|
|
opts.port = parsedUrl.port || defaultPort;
|
|
opts.host = parsedUrl.hostname.startsWith("[") ? parsedUrl.hostname.slice(1, -1) : parsedUrl.hostname;
|
|
opts.headers = {
|
|
...opts.headers,
|
|
"Sec-WebSocket-Version": opts.protocolVersion,
|
|
"Sec-WebSocket-Key": key,
|
|
Connection: "Upgrade",
|
|
Upgrade: "websocket"
|
|
};
|
|
opts.path = parsedUrl.pathname + parsedUrl.search;
|
|
opts.timeout = opts.handshakeTimeout;
|
|
if (opts.perMessageDeflate) {
|
|
perMessageDeflate = new PerMessageDeflate(
|
|
opts.perMessageDeflate !== true ? opts.perMessageDeflate : {},
|
|
false,
|
|
opts.maxPayload
|
|
);
|
|
opts.headers["Sec-WebSocket-Extensions"] = format({
|
|
[PerMessageDeflate.extensionName]: perMessageDeflate.offer()
|
|
});
|
|
}
|
|
if (protocols.length) {
|
|
for (const protocol of protocols) {
|
|
if (typeof protocol !== "string" || !subprotocolRegex.test(protocol) || protocolSet.has(protocol)) {
|
|
throw new SyntaxError(
|
|
"An invalid or duplicated subprotocol was specified"
|
|
);
|
|
}
|
|
protocolSet.add(protocol);
|
|
}
|
|
opts.headers["Sec-WebSocket-Protocol"] = protocols.join(",");
|
|
}
|
|
if (opts.origin) {
|
|
if (opts.protocolVersion < 13) {
|
|
opts.headers["Sec-WebSocket-Origin"] = opts.origin;
|
|
} else {
|
|
opts.headers.Origin = opts.origin;
|
|
}
|
|
}
|
|
if (parsedUrl.username || parsedUrl.password) {
|
|
opts.auth = `${parsedUrl.username}:${parsedUrl.password}`;
|
|
}
|
|
if (isIpcUrl) {
|
|
const parts = opts.path.split(":");
|
|
opts.socketPath = parts[0];
|
|
opts.path = parts[1];
|
|
}
|
|
let req;
|
|
if (opts.followRedirects) {
|
|
if (websocket._redirects === 0) {
|
|
websocket._originalIpc = isIpcUrl;
|
|
websocket._originalSecure = isSecure;
|
|
websocket._originalHostOrSocketPath = isIpcUrl ? opts.socketPath : parsedUrl.host;
|
|
const headers = options && options.headers;
|
|
options = { ...options, headers: {} };
|
|
if (headers) {
|
|
for (const [key2, value] of Object.entries(headers)) {
|
|
options.headers[key2.toLowerCase()] = value;
|
|
}
|
|
}
|
|
} else if (websocket.listenerCount("redirect") === 0) {
|
|
const isSameHost = isIpcUrl ? websocket._originalIpc ? opts.socketPath === websocket._originalHostOrSocketPath : false : websocket._originalIpc ? false : parsedUrl.host === websocket._originalHostOrSocketPath;
|
|
if (!isSameHost || websocket._originalSecure && !isSecure) {
|
|
delete opts.headers.authorization;
|
|
delete opts.headers.cookie;
|
|
if (!isSameHost) delete opts.headers.host;
|
|
opts.auth = void 0;
|
|
}
|
|
}
|
|
if (opts.auth && !options.headers.authorization) {
|
|
options.headers.authorization = "Basic " + Buffer.from(opts.auth).toString("base64");
|
|
}
|
|
req = websocket._req = request(opts);
|
|
if (websocket._redirects) {
|
|
websocket.emit("redirect", websocket.url, req);
|
|
}
|
|
} else {
|
|
req = websocket._req = request(opts);
|
|
}
|
|
if (opts.timeout) {
|
|
req.on("timeout", () => {
|
|
abortHandshake(websocket, req, "Opening handshake has timed out");
|
|
});
|
|
}
|
|
req.on("error", (err) => {
|
|
if (req === null || req[kAborted]) return;
|
|
req = websocket._req = null;
|
|
emitErrorAndClose(websocket, err);
|
|
});
|
|
req.on("response", (res) => {
|
|
const location = res.headers.location;
|
|
const statusCode = res.statusCode;
|
|
if (location && opts.followRedirects && statusCode >= 300 && statusCode < 400) {
|
|
if (++websocket._redirects > opts.maxRedirects) {
|
|
abortHandshake(websocket, req, "Maximum redirects exceeded");
|
|
return;
|
|
}
|
|
req.abort();
|
|
let addr;
|
|
try {
|
|
addr = new URL2(location, address);
|
|
} catch (e) {
|
|
const err = new SyntaxError(`Invalid URL: ${location}`);
|
|
emitErrorAndClose(websocket, err);
|
|
return;
|
|
}
|
|
initAsClient(websocket, addr, protocols, options);
|
|
} else if (!websocket.emit("unexpected-response", req, res)) {
|
|
abortHandshake(
|
|
websocket,
|
|
req,
|
|
`Unexpected server response: ${res.statusCode}`
|
|
);
|
|
}
|
|
});
|
|
req.on("upgrade", (res, socket, head) => {
|
|
websocket.emit("upgrade", res);
|
|
if (websocket.readyState !== WebSocket2.CONNECTING) return;
|
|
req = websocket._req = null;
|
|
const upgrade = res.headers.upgrade;
|
|
if (upgrade === void 0 || upgrade.toLowerCase() !== "websocket") {
|
|
abortHandshake(websocket, socket, "Invalid Upgrade header");
|
|
return;
|
|
}
|
|
const digest = createHash("sha1").update(key + GUID).digest("base64");
|
|
if (res.headers["sec-websocket-accept"] !== digest) {
|
|
abortHandshake(websocket, socket, "Invalid Sec-WebSocket-Accept header");
|
|
return;
|
|
}
|
|
const serverProt = res.headers["sec-websocket-protocol"];
|
|
let protError;
|
|
if (serverProt !== void 0) {
|
|
if (!protocolSet.size) {
|
|
protError = "Server sent a subprotocol but none was requested";
|
|
} else if (!protocolSet.has(serverProt)) {
|
|
protError = "Server sent an invalid subprotocol";
|
|
}
|
|
} else if (protocolSet.size) {
|
|
protError = "Server sent no subprotocol";
|
|
}
|
|
if (protError) {
|
|
abortHandshake(websocket, socket, protError);
|
|
return;
|
|
}
|
|
if (serverProt) websocket._protocol = serverProt;
|
|
const secWebSocketExtensions = res.headers["sec-websocket-extensions"];
|
|
if (secWebSocketExtensions !== void 0) {
|
|
if (!perMessageDeflate) {
|
|
const message = "Server sent a Sec-WebSocket-Extensions header but no extension was requested";
|
|
abortHandshake(websocket, socket, message);
|
|
return;
|
|
}
|
|
let extensions;
|
|
try {
|
|
extensions = parse4(secWebSocketExtensions);
|
|
} catch (err) {
|
|
const message = "Invalid Sec-WebSocket-Extensions header";
|
|
abortHandshake(websocket, socket, message);
|
|
return;
|
|
}
|
|
const extensionNames = Object.keys(extensions);
|
|
if (extensionNames.length !== 1 || extensionNames[0] !== PerMessageDeflate.extensionName) {
|
|
const message = "Server indicated an extension that was not requested";
|
|
abortHandshake(websocket, socket, message);
|
|
return;
|
|
}
|
|
try {
|
|
perMessageDeflate.accept(extensions[PerMessageDeflate.extensionName]);
|
|
} catch (err) {
|
|
const message = "Invalid Sec-WebSocket-Extensions header";
|
|
abortHandshake(websocket, socket, message);
|
|
return;
|
|
}
|
|
websocket._extensions[PerMessageDeflate.extensionName] = perMessageDeflate;
|
|
}
|
|
websocket.setSocket(socket, head, {
|
|
allowSynchronousEvents: opts.allowSynchronousEvents,
|
|
generateMask: opts.generateMask,
|
|
maxPayload: opts.maxPayload,
|
|
skipUTF8Validation: opts.skipUTF8Validation
|
|
});
|
|
});
|
|
if (opts.finishRequest) {
|
|
opts.finishRequest(req, websocket);
|
|
} else {
|
|
req.end();
|
|
}
|
|
}
|
|
function emitErrorAndClose(websocket, err) {
|
|
websocket._readyState = WebSocket2.CLOSING;
|
|
websocket._errorEmitted = true;
|
|
websocket.emit("error", err);
|
|
websocket.emitClose();
|
|
}
|
|
function netConnect(options) {
|
|
options.path = options.socketPath;
|
|
return net.connect(options);
|
|
}
|
|
function tlsConnect(options) {
|
|
options.path = void 0;
|
|
if (!options.servername && options.servername !== "") {
|
|
options.servername = net.isIP(options.host) ? "" : options.host;
|
|
}
|
|
return tls.connect(options);
|
|
}
|
|
function abortHandshake(websocket, stream, message) {
|
|
websocket._readyState = WebSocket2.CLOSING;
|
|
const err = new Error(message);
|
|
Error.captureStackTrace(err, abortHandshake);
|
|
if (stream.setHeader) {
|
|
stream[kAborted] = true;
|
|
stream.abort();
|
|
if (stream.socket && !stream.socket.destroyed) {
|
|
stream.socket.destroy();
|
|
}
|
|
process.nextTick(emitErrorAndClose, websocket, err);
|
|
} else {
|
|
stream.destroy(err);
|
|
stream.once("error", websocket.emit.bind(websocket, "error"));
|
|
stream.once("close", websocket.emitClose.bind(websocket));
|
|
}
|
|
}
|
|
function sendAfterClose(websocket, data, cb) {
|
|
if (data) {
|
|
const length = isBlob(data) ? data.size : toBuffer(data).length;
|
|
if (websocket._socket) websocket._sender._bufferedBytes += length;
|
|
else websocket._bufferedAmount += length;
|
|
}
|
|
if (cb) {
|
|
const err = new Error(
|
|
`WebSocket is not open: readyState ${websocket.readyState} (${readyStates[websocket.readyState]})`
|
|
);
|
|
process.nextTick(cb, err);
|
|
}
|
|
}
|
|
function receiverOnConclude(code, reason) {
|
|
const websocket = this[kWebSocket];
|
|
websocket._closeFrameReceived = true;
|
|
websocket._closeMessage = reason;
|
|
websocket._closeCode = code;
|
|
if (websocket._socket[kWebSocket] === void 0) return;
|
|
websocket._socket.removeListener("data", socketOnData);
|
|
process.nextTick(resume, websocket._socket);
|
|
if (code === 1005) websocket.close();
|
|
else websocket.close(code, reason);
|
|
}
|
|
function receiverOnDrain() {
|
|
const websocket = this[kWebSocket];
|
|
if (!websocket.isPaused) websocket._socket.resume();
|
|
}
|
|
function receiverOnError(err) {
|
|
const websocket = this[kWebSocket];
|
|
if (websocket._socket[kWebSocket] !== void 0) {
|
|
websocket._socket.removeListener("data", socketOnData);
|
|
process.nextTick(resume, websocket._socket);
|
|
websocket.close(err[kStatusCode]);
|
|
}
|
|
if (!websocket._errorEmitted) {
|
|
websocket._errorEmitted = true;
|
|
websocket.emit("error", err);
|
|
}
|
|
}
|
|
function receiverOnFinish() {
|
|
this[kWebSocket].emitClose();
|
|
}
|
|
function receiverOnMessage(data, isBinary) {
|
|
this[kWebSocket].emit("message", data, isBinary);
|
|
}
|
|
function receiverOnPing(data) {
|
|
const websocket = this[kWebSocket];
|
|
if (websocket._autoPong) websocket.pong(data, !this._isServer, NOOP);
|
|
websocket.emit("ping", data);
|
|
}
|
|
function receiverOnPong(data) {
|
|
this[kWebSocket].emit("pong", data);
|
|
}
|
|
function resume(stream) {
|
|
stream.resume();
|
|
}
|
|
function senderOnError(err) {
|
|
const websocket = this[kWebSocket];
|
|
if (websocket.readyState === WebSocket2.CLOSED) return;
|
|
if (websocket.readyState === WebSocket2.OPEN) {
|
|
websocket._readyState = WebSocket2.CLOSING;
|
|
setCloseTimer(websocket);
|
|
}
|
|
this._socket.end();
|
|
if (!websocket._errorEmitted) {
|
|
websocket._errorEmitted = true;
|
|
websocket.emit("error", err);
|
|
}
|
|
}
|
|
function setCloseTimer(websocket) {
|
|
websocket._closeTimer = setTimeout(
|
|
websocket._socket.destroy.bind(websocket._socket),
|
|
websocket._closeTimeout
|
|
);
|
|
}
|
|
function socketOnClose() {
|
|
const websocket = this[kWebSocket];
|
|
this.removeListener("close", socketOnClose);
|
|
this.removeListener("data", socketOnData);
|
|
this.removeListener("end", socketOnEnd);
|
|
websocket._readyState = WebSocket2.CLOSING;
|
|
if (!this._readableState.endEmitted && !websocket._closeFrameReceived && !websocket._receiver._writableState.errorEmitted && this._readableState.length !== 0) {
|
|
const chunk = this.read(this._readableState.length);
|
|
websocket._receiver.write(chunk);
|
|
}
|
|
websocket._receiver.end();
|
|
this[kWebSocket] = void 0;
|
|
clearTimeout(websocket._closeTimer);
|
|
if (websocket._receiver._writableState.finished || websocket._receiver._writableState.errorEmitted) {
|
|
websocket.emitClose();
|
|
} else {
|
|
websocket._receiver.on("error", receiverOnFinish);
|
|
websocket._receiver.on("finish", receiverOnFinish);
|
|
}
|
|
}
|
|
function socketOnData(chunk) {
|
|
if (!this[kWebSocket]._receiver.write(chunk)) {
|
|
this.pause();
|
|
}
|
|
}
|
|
function socketOnEnd() {
|
|
const websocket = this[kWebSocket];
|
|
websocket._readyState = WebSocket2.CLOSING;
|
|
websocket._receiver.end();
|
|
this.end();
|
|
}
|
|
function socketOnError() {
|
|
const websocket = this[kWebSocket];
|
|
this.removeListener("error", socketOnError);
|
|
this.on("error", NOOP);
|
|
if (websocket) {
|
|
websocket._readyState = WebSocket2.CLOSING;
|
|
this.destroy();
|
|
}
|
|
}
|
|
}
|
|
});
|
|
|
|
// node_modules/ws/lib/stream.js
|
|
var require_stream = __commonJS({
|
|
"node_modules/ws/lib/stream.js"(exports, module) {
|
|
"use strict";
|
|
var WebSocket2 = require_websocket();
|
|
var { Duplex } = __require("stream");
|
|
function emitClose(stream) {
|
|
stream.emit("close");
|
|
}
|
|
function duplexOnEnd() {
|
|
if (!this.destroyed && this._writableState.finished) {
|
|
this.destroy();
|
|
}
|
|
}
|
|
function duplexOnError(err) {
|
|
this.removeListener("error", duplexOnError);
|
|
this.destroy();
|
|
if (this.listenerCount("error") === 0) {
|
|
this.emit("error", err);
|
|
}
|
|
}
|
|
function createWebSocketStream2(ws, options) {
|
|
let terminateOnDestroy = true;
|
|
const duplex = new Duplex({
|
|
...options,
|
|
autoDestroy: false,
|
|
emitClose: false,
|
|
objectMode: false,
|
|
writableObjectMode: false
|
|
});
|
|
ws.on("message", function message(msg, isBinary) {
|
|
const data = !isBinary && duplex._readableState.objectMode ? msg.toString() : msg;
|
|
if (!duplex.push(data)) ws.pause();
|
|
});
|
|
ws.once("error", function error2(err) {
|
|
if (duplex.destroyed) return;
|
|
terminateOnDestroy = false;
|
|
duplex.destroy(err);
|
|
});
|
|
ws.once("close", function close() {
|
|
if (duplex.destroyed) return;
|
|
duplex.push(null);
|
|
});
|
|
duplex._destroy = function(err, callback) {
|
|
if (ws.readyState === ws.CLOSED) {
|
|
callback(err);
|
|
process.nextTick(emitClose, duplex);
|
|
return;
|
|
}
|
|
let called = false;
|
|
ws.once("error", function error2(err2) {
|
|
called = true;
|
|
callback(err2);
|
|
});
|
|
ws.once("close", function close() {
|
|
if (!called) callback(err);
|
|
process.nextTick(emitClose, duplex);
|
|
});
|
|
if (terminateOnDestroy) ws.terminate();
|
|
};
|
|
duplex._final = function(callback) {
|
|
if (ws.readyState === ws.CONNECTING) {
|
|
ws.once("open", function open() {
|
|
duplex._final(callback);
|
|
});
|
|
return;
|
|
}
|
|
if (ws._socket === null) return;
|
|
if (ws._socket._writableState.finished) {
|
|
callback();
|
|
if (duplex._readableState.endEmitted) duplex.destroy();
|
|
} else {
|
|
ws._socket.once("finish", function finish() {
|
|
callback();
|
|
});
|
|
ws.close();
|
|
}
|
|
};
|
|
duplex._read = function() {
|
|
if (ws.isPaused) ws.resume();
|
|
};
|
|
duplex._write = function(chunk, encoding, callback) {
|
|
if (ws.readyState === ws.CONNECTING) {
|
|
ws.once("open", function open() {
|
|
duplex._write(chunk, encoding, callback);
|
|
});
|
|
return;
|
|
}
|
|
ws.send(chunk, callback);
|
|
};
|
|
duplex.on("end", duplexOnEnd);
|
|
duplex.on("error", duplexOnError);
|
|
return duplex;
|
|
}
|
|
module.exports = createWebSocketStream2;
|
|
}
|
|
});
|
|
|
|
// node_modules/ws/lib/subprotocol.js
|
|
var require_subprotocol = __commonJS({
|
|
"node_modules/ws/lib/subprotocol.js"(exports, module) {
|
|
"use strict";
|
|
var { tokenChars } = require_validation();
|
|
function parse4(header) {
|
|
const protocols = /* @__PURE__ */ new Set();
|
|
let start = -1;
|
|
let end = -1;
|
|
let i = 0;
|
|
for (i; i < header.length; i++) {
|
|
const code = header.charCodeAt(i);
|
|
if (end === -1 && tokenChars[code] === 1) {
|
|
if (start === -1) start = i;
|
|
} else if (i !== 0 && (code === 32 || code === 9)) {
|
|
if (end === -1 && start !== -1) end = i;
|
|
} else if (code === 44) {
|
|
if (start === -1) {
|
|
throw new SyntaxError(`Unexpected character at index ${i}`);
|
|
}
|
|
if (end === -1) end = i;
|
|
const protocol2 = header.slice(start, end);
|
|
if (protocols.has(protocol2)) {
|
|
throw new SyntaxError(`The "${protocol2}" subprotocol is duplicated`);
|
|
}
|
|
protocols.add(protocol2);
|
|
start = end = -1;
|
|
} else {
|
|
throw new SyntaxError(`Unexpected character at index ${i}`);
|
|
}
|
|
}
|
|
if (start === -1 || end !== -1) {
|
|
throw new SyntaxError("Unexpected end of input");
|
|
}
|
|
const protocol = header.slice(start, i);
|
|
if (protocols.has(protocol)) {
|
|
throw new SyntaxError(`The "${protocol}" subprotocol is duplicated`);
|
|
}
|
|
protocols.add(protocol);
|
|
return protocols;
|
|
}
|
|
module.exports = { parse: parse4 };
|
|
}
|
|
});
|
|
|
|
// node_modules/ws/lib/websocket-server.js
|
|
var require_websocket_server = __commonJS({
|
|
"node_modules/ws/lib/websocket-server.js"(exports, module) {
|
|
"use strict";
|
|
var EventEmitter = __require("events");
|
|
var http = __require("http");
|
|
var { Duplex } = __require("stream");
|
|
var { createHash } = __require("crypto");
|
|
var extension = require_extension();
|
|
var PerMessageDeflate = require_permessage_deflate();
|
|
var subprotocol = require_subprotocol();
|
|
var WebSocket2 = require_websocket();
|
|
var { CLOSE_TIMEOUT, GUID, kWebSocket } = require_constants();
|
|
var keyRegex = /^[+/0-9A-Za-z]{22}==$/;
|
|
var RUNNING = 0;
|
|
var CLOSING = 1;
|
|
var CLOSED = 2;
|
|
var WebSocketServer2 = class extends EventEmitter {
|
|
/**
|
|
* Create a `WebSocketServer` instance.
|
|
*
|
|
* @param {Object} options Configuration options
|
|
* @param {Boolean} [options.allowSynchronousEvents=true] Specifies whether
|
|
* any of the `'message'`, `'ping'`, and `'pong'` events can be emitted
|
|
* multiple times in the same tick
|
|
* @param {Boolean} [options.autoPong=true] Specifies whether or not to
|
|
* automatically send a pong in response to a ping
|
|
* @param {Number} [options.backlog=511] The maximum length of the queue of
|
|
* pending connections
|
|
* @param {Boolean} [options.clientTracking=true] Specifies whether or not to
|
|
* track clients
|
|
* @param {Number} [options.closeTimeout=30000] Duration in milliseconds to
|
|
* wait for the closing handshake to finish after `websocket.close()` is
|
|
* called
|
|
* @param {Function} [options.handleProtocols] A hook to handle protocols
|
|
* @param {String} [options.host] The hostname where to bind the server
|
|
* @param {Number} [options.maxPayload=104857600] The maximum allowed message
|
|
* size
|
|
* @param {Boolean} [options.noServer=false] Enable no server mode
|
|
* @param {String} [options.path] Accept only connections matching this path
|
|
* @param {(Boolean|Object)} [options.perMessageDeflate=false] Enable/disable
|
|
* permessage-deflate
|
|
* @param {Number} [options.port] The port where to bind the server
|
|
* @param {(http.Server|https.Server)} [options.server] A pre-created HTTP/S
|
|
* server to use
|
|
* @param {Boolean} [options.skipUTF8Validation=false] Specifies whether or
|
|
* not to skip UTF-8 validation for text and close messages
|
|
* @param {Function} [options.verifyClient] A hook to reject connections
|
|
* @param {Function} [options.WebSocket=WebSocket] Specifies the `WebSocket`
|
|
* class to use. It must be the `WebSocket` class or class that extends it
|
|
* @param {Function} [callback] A listener for the `listening` event
|
|
*/
|
|
constructor(options, callback) {
|
|
super();
|
|
options = {
|
|
allowSynchronousEvents: true,
|
|
autoPong: true,
|
|
maxPayload: 100 * 1024 * 1024,
|
|
skipUTF8Validation: false,
|
|
perMessageDeflate: false,
|
|
handleProtocols: null,
|
|
clientTracking: true,
|
|
closeTimeout: CLOSE_TIMEOUT,
|
|
verifyClient: null,
|
|
noServer: false,
|
|
backlog: null,
|
|
// use default (511 as implemented in net.js)
|
|
server: null,
|
|
host: null,
|
|
path: null,
|
|
port: null,
|
|
WebSocket: WebSocket2,
|
|
...options
|
|
};
|
|
if (options.port == null && !options.server && !options.noServer || options.port != null && (options.server || options.noServer) || options.server && options.noServer) {
|
|
throw new TypeError(
|
|
'One and only one of the "port", "server", or "noServer" options must be specified'
|
|
);
|
|
}
|
|
if (options.port != null) {
|
|
this._server = http.createServer((req, res) => {
|
|
const body = http.STATUS_CODES[426];
|
|
res.writeHead(426, {
|
|
"Content-Length": body.length,
|
|
"Content-Type": "text/plain"
|
|
});
|
|
res.end(body);
|
|
});
|
|
this._server.listen(
|
|
options.port,
|
|
options.host,
|
|
options.backlog,
|
|
callback
|
|
);
|
|
} else if (options.server) {
|
|
this._server = options.server;
|
|
}
|
|
if (this._server) {
|
|
const emitConnection = this.emit.bind(this, "connection");
|
|
this._removeListeners = addListeners(this._server, {
|
|
listening: this.emit.bind(this, "listening"),
|
|
error: this.emit.bind(this, "error"),
|
|
upgrade: (req, socket, head) => {
|
|
this.handleUpgrade(req, socket, head, emitConnection);
|
|
}
|
|
});
|
|
}
|
|
if (options.perMessageDeflate === true) options.perMessageDeflate = {};
|
|
if (options.clientTracking) {
|
|
this.clients = /* @__PURE__ */ new Set();
|
|
this._shouldEmitClose = false;
|
|
}
|
|
this.options = options;
|
|
this._state = RUNNING;
|
|
}
|
|
/**
|
|
* Returns the bound address, the address family name, and port of the server
|
|
* as reported by the operating system if listening on an IP socket.
|
|
* If the server is listening on a pipe or UNIX domain socket, the name is
|
|
* returned as a string.
|
|
*
|
|
* @return {(Object|String|null)} The address of the server
|
|
* @public
|
|
*/
|
|
address() {
|
|
if (this.options.noServer) {
|
|
throw new Error('The server is operating in "noServer" mode');
|
|
}
|
|
if (!this._server) return null;
|
|
return this._server.address();
|
|
}
|
|
/**
|
|
* Stop the server from accepting new connections and emit the `'close'` event
|
|
* when all existing connections are closed.
|
|
*
|
|
* @param {Function} [cb] A one-time listener for the `'close'` event
|
|
* @public
|
|
*/
|
|
close(cb) {
|
|
if (this._state === CLOSED) {
|
|
if (cb) {
|
|
this.once("close", () => {
|
|
cb(new Error("The server is not running"));
|
|
});
|
|
}
|
|
process.nextTick(emitClose, this);
|
|
return;
|
|
}
|
|
if (cb) this.once("close", cb);
|
|
if (this._state === CLOSING) return;
|
|
this._state = CLOSING;
|
|
if (this.options.noServer || this.options.server) {
|
|
if (this._server) {
|
|
this._removeListeners();
|
|
this._removeListeners = this._server = null;
|
|
}
|
|
if (this.clients) {
|
|
if (!this.clients.size) {
|
|
process.nextTick(emitClose, this);
|
|
} else {
|
|
this._shouldEmitClose = true;
|
|
}
|
|
} else {
|
|
process.nextTick(emitClose, this);
|
|
}
|
|
} else {
|
|
const server = this._server;
|
|
this._removeListeners();
|
|
this._removeListeners = this._server = null;
|
|
server.close(() => {
|
|
emitClose(this);
|
|
});
|
|
}
|
|
}
|
|
/**
|
|
* See if a given request should be handled by this server instance.
|
|
*
|
|
* @param {http.IncomingMessage} req Request object to inspect
|
|
* @return {Boolean} `true` if the request is valid, else `false`
|
|
* @public
|
|
*/
|
|
shouldHandle(req) {
|
|
if (this.options.path) {
|
|
const index = req.url.indexOf("?");
|
|
const pathname = index !== -1 ? req.url.slice(0, index) : req.url;
|
|
if (pathname !== this.options.path) return false;
|
|
}
|
|
return true;
|
|
}
|
|
/**
|
|
* Handle a HTTP Upgrade request.
|
|
*
|
|
* @param {http.IncomingMessage} req The request object
|
|
* @param {Duplex} socket The network socket between the server and client
|
|
* @param {Buffer} head The first packet of the upgraded stream
|
|
* @param {Function} cb Callback
|
|
* @public
|
|
*/
|
|
handleUpgrade(req, socket, head, cb) {
|
|
socket.on("error", socketOnError);
|
|
const key = req.headers["sec-websocket-key"];
|
|
const upgrade = req.headers.upgrade;
|
|
const version2 = +req.headers["sec-websocket-version"];
|
|
if (req.method !== "GET") {
|
|
const message = "Invalid HTTP method";
|
|
abortHandshakeOrEmitwsClientError(this, req, socket, 405, message);
|
|
return;
|
|
}
|
|
if (upgrade === void 0 || upgrade.toLowerCase() !== "websocket") {
|
|
const message = "Invalid Upgrade header";
|
|
abortHandshakeOrEmitwsClientError(this, req, socket, 400, message);
|
|
return;
|
|
}
|
|
if (key === void 0 || !keyRegex.test(key)) {
|
|
const message = "Missing or invalid Sec-WebSocket-Key header";
|
|
abortHandshakeOrEmitwsClientError(this, req, socket, 400, message);
|
|
return;
|
|
}
|
|
if (version2 !== 13 && version2 !== 8) {
|
|
const message = "Missing or invalid Sec-WebSocket-Version header";
|
|
abortHandshakeOrEmitwsClientError(this, req, socket, 400, message, {
|
|
"Sec-WebSocket-Version": "13, 8"
|
|
});
|
|
return;
|
|
}
|
|
if (!this.shouldHandle(req)) {
|
|
abortHandshake(socket, 400);
|
|
return;
|
|
}
|
|
const secWebSocketProtocol = req.headers["sec-websocket-protocol"];
|
|
let protocols = /* @__PURE__ */ new Set();
|
|
if (secWebSocketProtocol !== void 0) {
|
|
try {
|
|
protocols = subprotocol.parse(secWebSocketProtocol);
|
|
} catch (err) {
|
|
const message = "Invalid Sec-WebSocket-Protocol header";
|
|
abortHandshakeOrEmitwsClientError(this, req, socket, 400, message);
|
|
return;
|
|
}
|
|
}
|
|
const secWebSocketExtensions = req.headers["sec-websocket-extensions"];
|
|
const extensions = {};
|
|
if (this.options.perMessageDeflate && secWebSocketExtensions !== void 0) {
|
|
const perMessageDeflate = new PerMessageDeflate(
|
|
this.options.perMessageDeflate,
|
|
true,
|
|
this.options.maxPayload
|
|
);
|
|
try {
|
|
const offers = extension.parse(secWebSocketExtensions);
|
|
if (offers[PerMessageDeflate.extensionName]) {
|
|
perMessageDeflate.accept(offers[PerMessageDeflate.extensionName]);
|
|
extensions[PerMessageDeflate.extensionName] = perMessageDeflate;
|
|
}
|
|
} catch (err) {
|
|
const message = "Invalid or unacceptable Sec-WebSocket-Extensions header";
|
|
abortHandshakeOrEmitwsClientError(this, req, socket, 400, message);
|
|
return;
|
|
}
|
|
}
|
|
if (this.options.verifyClient) {
|
|
const info = {
|
|
origin: req.headers[`${version2 === 8 ? "sec-websocket-origin" : "origin"}`],
|
|
secure: !!(req.socket.authorized || req.socket.encrypted),
|
|
req
|
|
};
|
|
if (this.options.verifyClient.length === 2) {
|
|
this.options.verifyClient(info, (verified, code, message, headers) => {
|
|
if (!verified) {
|
|
return abortHandshake(socket, code || 401, message, headers);
|
|
}
|
|
this.completeUpgrade(
|
|
extensions,
|
|
key,
|
|
protocols,
|
|
req,
|
|
socket,
|
|
head,
|
|
cb
|
|
);
|
|
});
|
|
return;
|
|
}
|
|
if (!this.options.verifyClient(info)) return abortHandshake(socket, 401);
|
|
}
|
|
this.completeUpgrade(extensions, key, protocols, req, socket, head, cb);
|
|
}
|
|
/**
|
|
* Upgrade the connection to WebSocket.
|
|
*
|
|
* @param {Object} extensions The accepted extensions
|
|
* @param {String} key The value of the `Sec-WebSocket-Key` header
|
|
* @param {Set} protocols The subprotocols
|
|
* @param {http.IncomingMessage} req The request object
|
|
* @param {Duplex} socket The network socket between the server and client
|
|
* @param {Buffer} head The first packet of the upgraded stream
|
|
* @param {Function} cb Callback
|
|
* @throws {Error} If called more than once with the same socket
|
|
* @private
|
|
*/
|
|
completeUpgrade(extensions, key, protocols, req, socket, head, cb) {
|
|
if (!socket.readable || !socket.writable) return socket.destroy();
|
|
if (socket[kWebSocket]) {
|
|
throw new Error(
|
|
"server.handleUpgrade() was called more than once with the same socket, possibly due to a misconfiguration"
|
|
);
|
|
}
|
|
if (this._state > RUNNING) return abortHandshake(socket, 503);
|
|
const digest = createHash("sha1").update(key + GUID).digest("base64");
|
|
const headers = [
|
|
"HTTP/1.1 101 Switching Protocols",
|
|
"Upgrade: websocket",
|
|
"Connection: Upgrade",
|
|
`Sec-WebSocket-Accept: ${digest}`
|
|
];
|
|
const ws = new this.options.WebSocket(null, void 0, this.options);
|
|
if (protocols.size) {
|
|
const protocol = this.options.handleProtocols ? this.options.handleProtocols(protocols, req) : protocols.values().next().value;
|
|
if (protocol) {
|
|
headers.push(`Sec-WebSocket-Protocol: ${protocol}`);
|
|
ws._protocol = protocol;
|
|
}
|
|
}
|
|
if (extensions[PerMessageDeflate.extensionName]) {
|
|
const params = extensions[PerMessageDeflate.extensionName].params;
|
|
const value = extension.format({
|
|
[PerMessageDeflate.extensionName]: [params]
|
|
});
|
|
headers.push(`Sec-WebSocket-Extensions: ${value}`);
|
|
ws._extensions = extensions;
|
|
}
|
|
this.emit("headers", headers, req);
|
|
socket.write(headers.concat("\r\n").join("\r\n"));
|
|
socket.removeListener("error", socketOnError);
|
|
ws.setSocket(socket, head, {
|
|
allowSynchronousEvents: this.options.allowSynchronousEvents,
|
|
maxPayload: this.options.maxPayload,
|
|
skipUTF8Validation: this.options.skipUTF8Validation
|
|
});
|
|
if (this.clients) {
|
|
this.clients.add(ws);
|
|
ws.on("close", () => {
|
|
this.clients.delete(ws);
|
|
if (this._shouldEmitClose && !this.clients.size) {
|
|
process.nextTick(emitClose, this);
|
|
}
|
|
});
|
|
}
|
|
cb(ws, req);
|
|
}
|
|
};
|
|
module.exports = WebSocketServer2;
|
|
function addListeners(server, map2) {
|
|
for (const event of Object.keys(map2)) server.on(event, map2[event]);
|
|
return function removeListeners() {
|
|
for (const event of Object.keys(map2)) {
|
|
server.removeListener(event, map2[event]);
|
|
}
|
|
};
|
|
}
|
|
function emitClose(server) {
|
|
server._state = CLOSED;
|
|
server.emit("close");
|
|
}
|
|
function socketOnError() {
|
|
this.destroy();
|
|
}
|
|
function abortHandshake(socket, code, message, headers) {
|
|
message = message || http.STATUS_CODES[code];
|
|
headers = {
|
|
Connection: "close",
|
|
"Content-Type": "text/html",
|
|
"Content-Length": Buffer.byteLength(message),
|
|
...headers
|
|
};
|
|
socket.once("finish", socket.destroy);
|
|
socket.end(
|
|
`HTTP/1.1 ${code} ${http.STATUS_CODES[code]}\r
|
|
` + Object.keys(headers).map((h) => `${h}: ${headers[h]}`).join("\r\n") + "\r\n\r\n" + message
|
|
);
|
|
}
|
|
function abortHandshakeOrEmitwsClientError(server, req, socket, code, message, headers) {
|
|
if (server.listenerCount("wsClientError")) {
|
|
const err = new Error(message);
|
|
Error.captureStackTrace(err, abortHandshakeOrEmitwsClientError);
|
|
server.emit("wsClientError", err, socket, req);
|
|
} else {
|
|
abortHandshake(socket, code, message, headers);
|
|
}
|
|
}
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/compile/codegen/code.js
|
|
var require_code = __commonJS({
|
|
"node_modules/ajv/dist/compile/codegen/code.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.regexpCode = exports.getEsmExportName = exports.getProperty = exports.safeStringify = exports.stringify = exports.strConcat = exports.addCodeArg = exports.str = exports._ = exports.nil = exports._Code = exports.Name = exports.IDENTIFIER = exports._CodeOrName = void 0;
|
|
var _CodeOrName = class {
|
|
};
|
|
exports._CodeOrName = _CodeOrName;
|
|
exports.IDENTIFIER = /^[a-z$_][a-z$_0-9]*$/i;
|
|
var Name = class extends _CodeOrName {
|
|
constructor(s) {
|
|
super();
|
|
if (!exports.IDENTIFIER.test(s))
|
|
throw new Error("CodeGen: name must be a valid identifier");
|
|
this.str = s;
|
|
}
|
|
toString() {
|
|
return this.str;
|
|
}
|
|
emptyStr() {
|
|
return false;
|
|
}
|
|
get names() {
|
|
return { [this.str]: 1 };
|
|
}
|
|
};
|
|
exports.Name = Name;
|
|
var _Code = class extends _CodeOrName {
|
|
constructor(code) {
|
|
super();
|
|
this._items = typeof code === "string" ? [code] : code;
|
|
}
|
|
toString() {
|
|
return this.str;
|
|
}
|
|
emptyStr() {
|
|
if (this._items.length > 1)
|
|
return false;
|
|
const item = this._items[0];
|
|
return item === "" || item === '""';
|
|
}
|
|
get str() {
|
|
var _a2;
|
|
return (_a2 = this._str) !== null && _a2 !== void 0 ? _a2 : this._str = this._items.reduce((s, c) => `${s}${c}`, "");
|
|
}
|
|
get names() {
|
|
var _a2;
|
|
return (_a2 = this._names) !== null && _a2 !== void 0 ? _a2 : this._names = this._items.reduce((names, c) => {
|
|
if (c instanceof Name)
|
|
names[c.str] = (names[c.str] || 0) + 1;
|
|
return names;
|
|
}, {});
|
|
}
|
|
};
|
|
exports._Code = _Code;
|
|
exports.nil = new _Code("");
|
|
function _(strs, ...args) {
|
|
const code = [strs[0]];
|
|
let i = 0;
|
|
while (i < args.length) {
|
|
addCodeArg(code, args[i]);
|
|
code.push(strs[++i]);
|
|
}
|
|
return new _Code(code);
|
|
}
|
|
exports._ = _;
|
|
var plus = new _Code("+");
|
|
function str(strs, ...args) {
|
|
const expr = [safeStringify(strs[0])];
|
|
let i = 0;
|
|
while (i < args.length) {
|
|
expr.push(plus);
|
|
addCodeArg(expr, args[i]);
|
|
expr.push(plus, safeStringify(strs[++i]));
|
|
}
|
|
optimize(expr);
|
|
return new _Code(expr);
|
|
}
|
|
exports.str = str;
|
|
function addCodeArg(code, arg) {
|
|
if (arg instanceof _Code)
|
|
code.push(...arg._items);
|
|
else if (arg instanceof Name)
|
|
code.push(arg);
|
|
else
|
|
code.push(interpolate(arg));
|
|
}
|
|
exports.addCodeArg = addCodeArg;
|
|
function optimize(expr) {
|
|
let i = 1;
|
|
while (i < expr.length - 1) {
|
|
if (expr[i] === plus) {
|
|
const res = mergeExprItems(expr[i - 1], expr[i + 1]);
|
|
if (res !== void 0) {
|
|
expr.splice(i - 1, 3, res);
|
|
continue;
|
|
}
|
|
expr[i++] = "+";
|
|
}
|
|
i++;
|
|
}
|
|
}
|
|
function mergeExprItems(a, b) {
|
|
if (b === '""')
|
|
return a;
|
|
if (a === '""')
|
|
return b;
|
|
if (typeof a == "string") {
|
|
if (b instanceof Name || a[a.length - 1] !== '"')
|
|
return;
|
|
if (typeof b != "string")
|
|
return `${a.slice(0, -1)}${b}"`;
|
|
if (b[0] === '"')
|
|
return a.slice(0, -1) + b.slice(1);
|
|
return;
|
|
}
|
|
if (typeof b == "string" && b[0] === '"' && !(a instanceof Name))
|
|
return `"${a}${b.slice(1)}`;
|
|
return;
|
|
}
|
|
function strConcat(c1, c2) {
|
|
return c2.emptyStr() ? c1 : c1.emptyStr() ? c2 : str`${c1}${c2}`;
|
|
}
|
|
exports.strConcat = strConcat;
|
|
function interpolate(x) {
|
|
return typeof x == "number" || typeof x == "boolean" || x === null ? x : safeStringify(Array.isArray(x) ? x.join(",") : x);
|
|
}
|
|
function stringify(x) {
|
|
return new _Code(safeStringify(x));
|
|
}
|
|
exports.stringify = stringify;
|
|
function safeStringify(x) {
|
|
return JSON.stringify(x).replace(/\u2028/g, "\\u2028").replace(/\u2029/g, "\\u2029");
|
|
}
|
|
exports.safeStringify = safeStringify;
|
|
function getProperty(key) {
|
|
return typeof key == "string" && exports.IDENTIFIER.test(key) ? new _Code(`.${key}`) : _`[${key}]`;
|
|
}
|
|
exports.getProperty = getProperty;
|
|
function getEsmExportName(key) {
|
|
if (typeof key == "string" && exports.IDENTIFIER.test(key)) {
|
|
return new _Code(`${key}`);
|
|
}
|
|
throw new Error(`CodeGen: invalid export name: ${key}, use explicit $id name mapping`);
|
|
}
|
|
exports.getEsmExportName = getEsmExportName;
|
|
function regexpCode(rx) {
|
|
return new _Code(rx.toString());
|
|
}
|
|
exports.regexpCode = regexpCode;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/compile/codegen/scope.js
|
|
var require_scope = __commonJS({
|
|
"node_modules/ajv/dist/compile/codegen/scope.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.ValueScope = exports.ValueScopeName = exports.Scope = exports.varKinds = exports.UsedValueState = void 0;
|
|
var code_1 = require_code();
|
|
var ValueError = class extends Error {
|
|
constructor(name) {
|
|
super(`CodeGen: "code" for ${name} not defined`);
|
|
this.value = name.value;
|
|
}
|
|
};
|
|
var UsedValueState;
|
|
(function(UsedValueState2) {
|
|
UsedValueState2[UsedValueState2["Started"] = 0] = "Started";
|
|
UsedValueState2[UsedValueState2["Completed"] = 1] = "Completed";
|
|
})(UsedValueState || (exports.UsedValueState = UsedValueState = {}));
|
|
exports.varKinds = {
|
|
const: new code_1.Name("const"),
|
|
let: new code_1.Name("let"),
|
|
var: new code_1.Name("var")
|
|
};
|
|
var Scope = class {
|
|
constructor({ prefixes, parent } = {}) {
|
|
this._names = {};
|
|
this._prefixes = prefixes;
|
|
this._parent = parent;
|
|
}
|
|
toName(nameOrPrefix) {
|
|
return nameOrPrefix instanceof code_1.Name ? nameOrPrefix : this.name(nameOrPrefix);
|
|
}
|
|
name(prefix) {
|
|
return new code_1.Name(this._newName(prefix));
|
|
}
|
|
_newName(prefix) {
|
|
const ng = this._names[prefix] || this._nameGroup(prefix);
|
|
return `${prefix}${ng.index++}`;
|
|
}
|
|
_nameGroup(prefix) {
|
|
var _a2, _b;
|
|
if (((_b = (_a2 = this._parent) === null || _a2 === void 0 ? void 0 : _a2._prefixes) === null || _b === void 0 ? void 0 : _b.has(prefix)) || this._prefixes && !this._prefixes.has(prefix)) {
|
|
throw new Error(`CodeGen: prefix "${prefix}" is not allowed in this scope`);
|
|
}
|
|
return this._names[prefix] = { prefix, index: 0 };
|
|
}
|
|
};
|
|
exports.Scope = Scope;
|
|
var ValueScopeName = class extends code_1.Name {
|
|
constructor(prefix, nameStr) {
|
|
super(nameStr);
|
|
this.prefix = prefix;
|
|
}
|
|
setValue(value, { property, itemIndex }) {
|
|
this.value = value;
|
|
this.scopePath = (0, code_1._)`.${new code_1.Name(property)}[${itemIndex}]`;
|
|
}
|
|
};
|
|
exports.ValueScopeName = ValueScopeName;
|
|
var line = (0, code_1._)`\n`;
|
|
var ValueScope = class extends Scope {
|
|
constructor(opts) {
|
|
super(opts);
|
|
this._values = {};
|
|
this._scope = opts.scope;
|
|
this.opts = { ...opts, _n: opts.lines ? line : code_1.nil };
|
|
}
|
|
get() {
|
|
return this._scope;
|
|
}
|
|
name(prefix) {
|
|
return new ValueScopeName(prefix, this._newName(prefix));
|
|
}
|
|
value(nameOrPrefix, value) {
|
|
var _a2;
|
|
if (value.ref === void 0)
|
|
throw new Error("CodeGen: ref must be passed in value");
|
|
const name = this.toName(nameOrPrefix);
|
|
const { prefix } = name;
|
|
const valueKey = (_a2 = value.key) !== null && _a2 !== void 0 ? _a2 : value.ref;
|
|
let vs = this._values[prefix];
|
|
if (vs) {
|
|
const _name = vs.get(valueKey);
|
|
if (_name)
|
|
return _name;
|
|
} else {
|
|
vs = this._values[prefix] = /* @__PURE__ */ new Map();
|
|
}
|
|
vs.set(valueKey, name);
|
|
const s = this._scope[prefix] || (this._scope[prefix] = []);
|
|
const itemIndex = s.length;
|
|
s[itemIndex] = value.ref;
|
|
name.setValue(value, { property: prefix, itemIndex });
|
|
return name;
|
|
}
|
|
getValue(prefix, keyOrRef) {
|
|
const vs = this._values[prefix];
|
|
if (!vs)
|
|
return;
|
|
return vs.get(keyOrRef);
|
|
}
|
|
scopeRefs(scopeName, values = this._values) {
|
|
return this._reduceValues(values, (name) => {
|
|
if (name.scopePath === void 0)
|
|
throw new Error(`CodeGen: name "${name}" has no value`);
|
|
return (0, code_1._)`${scopeName}${name.scopePath}`;
|
|
});
|
|
}
|
|
scopeCode(values = this._values, usedValues, getCode) {
|
|
return this._reduceValues(values, (name) => {
|
|
if (name.value === void 0)
|
|
throw new Error(`CodeGen: name "${name}" has no value`);
|
|
return name.value.code;
|
|
}, usedValues, getCode);
|
|
}
|
|
_reduceValues(values, valueCode, usedValues = {}, getCode) {
|
|
let code = code_1.nil;
|
|
for (const prefix in values) {
|
|
const vs = values[prefix];
|
|
if (!vs)
|
|
continue;
|
|
const nameSet = usedValues[prefix] = usedValues[prefix] || /* @__PURE__ */ new Map();
|
|
vs.forEach((name) => {
|
|
if (nameSet.has(name))
|
|
return;
|
|
nameSet.set(name, UsedValueState.Started);
|
|
let c = valueCode(name);
|
|
if (c) {
|
|
const def = this.opts.es5 ? exports.varKinds.var : exports.varKinds.const;
|
|
code = (0, code_1._)`${code}${def} ${name} = ${c};${this.opts._n}`;
|
|
} else if (c = getCode === null || getCode === void 0 ? void 0 : getCode(name)) {
|
|
code = (0, code_1._)`${code}${c}${this.opts._n}`;
|
|
} else {
|
|
throw new ValueError(name);
|
|
}
|
|
nameSet.set(name, UsedValueState.Completed);
|
|
});
|
|
}
|
|
return code;
|
|
}
|
|
};
|
|
exports.ValueScope = ValueScope;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/compile/codegen/index.js
|
|
var require_codegen = __commonJS({
|
|
"node_modules/ajv/dist/compile/codegen/index.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.or = exports.and = exports.not = exports.CodeGen = exports.operators = exports.varKinds = exports.ValueScopeName = exports.ValueScope = exports.Scope = exports.Name = exports.regexpCode = exports.stringify = exports.getProperty = exports.nil = exports.strConcat = exports.str = exports._ = void 0;
|
|
var code_1 = require_code();
|
|
var scope_1 = require_scope();
|
|
var code_2 = require_code();
|
|
Object.defineProperty(exports, "_", { enumerable: true, get: function() {
|
|
return code_2._;
|
|
} });
|
|
Object.defineProperty(exports, "str", { enumerable: true, get: function() {
|
|
return code_2.str;
|
|
} });
|
|
Object.defineProperty(exports, "strConcat", { enumerable: true, get: function() {
|
|
return code_2.strConcat;
|
|
} });
|
|
Object.defineProperty(exports, "nil", { enumerable: true, get: function() {
|
|
return code_2.nil;
|
|
} });
|
|
Object.defineProperty(exports, "getProperty", { enumerable: true, get: function() {
|
|
return code_2.getProperty;
|
|
} });
|
|
Object.defineProperty(exports, "stringify", { enumerable: true, get: function() {
|
|
return code_2.stringify;
|
|
} });
|
|
Object.defineProperty(exports, "regexpCode", { enumerable: true, get: function() {
|
|
return code_2.regexpCode;
|
|
} });
|
|
Object.defineProperty(exports, "Name", { enumerable: true, get: function() {
|
|
return code_2.Name;
|
|
} });
|
|
var scope_2 = require_scope();
|
|
Object.defineProperty(exports, "Scope", { enumerable: true, get: function() {
|
|
return scope_2.Scope;
|
|
} });
|
|
Object.defineProperty(exports, "ValueScope", { enumerable: true, get: function() {
|
|
return scope_2.ValueScope;
|
|
} });
|
|
Object.defineProperty(exports, "ValueScopeName", { enumerable: true, get: function() {
|
|
return scope_2.ValueScopeName;
|
|
} });
|
|
Object.defineProperty(exports, "varKinds", { enumerable: true, get: function() {
|
|
return scope_2.varKinds;
|
|
} });
|
|
exports.operators = {
|
|
GT: new code_1._Code(">"),
|
|
GTE: new code_1._Code(">="),
|
|
LT: new code_1._Code("<"),
|
|
LTE: new code_1._Code("<="),
|
|
EQ: new code_1._Code("==="),
|
|
NEQ: new code_1._Code("!=="),
|
|
NOT: new code_1._Code("!"),
|
|
OR: new code_1._Code("||"),
|
|
AND: new code_1._Code("&&"),
|
|
ADD: new code_1._Code("+")
|
|
};
|
|
var Node = class {
|
|
optimizeNodes() {
|
|
return this;
|
|
}
|
|
optimizeNames(_names, _constants) {
|
|
return this;
|
|
}
|
|
};
|
|
var Def = class extends Node {
|
|
constructor(varKind, name, rhs) {
|
|
super();
|
|
this.varKind = varKind;
|
|
this.name = name;
|
|
this.rhs = rhs;
|
|
}
|
|
render({ es5, _n }) {
|
|
const varKind = es5 ? scope_1.varKinds.var : this.varKind;
|
|
const rhs = this.rhs === void 0 ? "" : ` = ${this.rhs}`;
|
|
return `${varKind} ${this.name}${rhs};` + _n;
|
|
}
|
|
optimizeNames(names, constants) {
|
|
if (!names[this.name.str])
|
|
return;
|
|
if (this.rhs)
|
|
this.rhs = optimizeExpr(this.rhs, names, constants);
|
|
return this;
|
|
}
|
|
get names() {
|
|
return this.rhs instanceof code_1._CodeOrName ? this.rhs.names : {};
|
|
}
|
|
};
|
|
var Assign = class extends Node {
|
|
constructor(lhs, rhs, sideEffects) {
|
|
super();
|
|
this.lhs = lhs;
|
|
this.rhs = rhs;
|
|
this.sideEffects = sideEffects;
|
|
}
|
|
render({ _n }) {
|
|
return `${this.lhs} = ${this.rhs};` + _n;
|
|
}
|
|
optimizeNames(names, constants) {
|
|
if (this.lhs instanceof code_1.Name && !names[this.lhs.str] && !this.sideEffects)
|
|
return;
|
|
this.rhs = optimizeExpr(this.rhs, names, constants);
|
|
return this;
|
|
}
|
|
get names() {
|
|
const names = this.lhs instanceof code_1.Name ? {} : { ...this.lhs.names };
|
|
return addExprNames(names, this.rhs);
|
|
}
|
|
};
|
|
var AssignOp = class extends Assign {
|
|
constructor(lhs, op, rhs, sideEffects) {
|
|
super(lhs, rhs, sideEffects);
|
|
this.op = op;
|
|
}
|
|
render({ _n }) {
|
|
return `${this.lhs} ${this.op}= ${this.rhs};` + _n;
|
|
}
|
|
};
|
|
var Label = class extends Node {
|
|
constructor(label) {
|
|
super();
|
|
this.label = label;
|
|
this.names = {};
|
|
}
|
|
render({ _n }) {
|
|
return `${this.label}:` + _n;
|
|
}
|
|
};
|
|
var Break = class extends Node {
|
|
constructor(label) {
|
|
super();
|
|
this.label = label;
|
|
this.names = {};
|
|
}
|
|
render({ _n }) {
|
|
const label = this.label ? ` ${this.label}` : "";
|
|
return `break${label};` + _n;
|
|
}
|
|
};
|
|
var Throw = class extends Node {
|
|
constructor(error2) {
|
|
super();
|
|
this.error = error2;
|
|
}
|
|
render({ _n }) {
|
|
return `throw ${this.error};` + _n;
|
|
}
|
|
get names() {
|
|
return this.error.names;
|
|
}
|
|
};
|
|
var AnyCode = class extends Node {
|
|
constructor(code) {
|
|
super();
|
|
this.code = code;
|
|
}
|
|
render({ _n }) {
|
|
return `${this.code};` + _n;
|
|
}
|
|
optimizeNodes() {
|
|
return `${this.code}` ? this : void 0;
|
|
}
|
|
optimizeNames(names, constants) {
|
|
this.code = optimizeExpr(this.code, names, constants);
|
|
return this;
|
|
}
|
|
get names() {
|
|
return this.code instanceof code_1._CodeOrName ? this.code.names : {};
|
|
}
|
|
};
|
|
var ParentNode = class extends Node {
|
|
constructor(nodes = []) {
|
|
super();
|
|
this.nodes = nodes;
|
|
}
|
|
render(opts) {
|
|
return this.nodes.reduce((code, n) => code + n.render(opts), "");
|
|
}
|
|
optimizeNodes() {
|
|
const { nodes } = this;
|
|
let i = nodes.length;
|
|
while (i--) {
|
|
const n = nodes[i].optimizeNodes();
|
|
if (Array.isArray(n))
|
|
nodes.splice(i, 1, ...n);
|
|
else if (n)
|
|
nodes[i] = n;
|
|
else
|
|
nodes.splice(i, 1);
|
|
}
|
|
return nodes.length > 0 ? this : void 0;
|
|
}
|
|
optimizeNames(names, constants) {
|
|
const { nodes } = this;
|
|
let i = nodes.length;
|
|
while (i--) {
|
|
const n = nodes[i];
|
|
if (n.optimizeNames(names, constants))
|
|
continue;
|
|
subtractNames(names, n.names);
|
|
nodes.splice(i, 1);
|
|
}
|
|
return nodes.length > 0 ? this : void 0;
|
|
}
|
|
get names() {
|
|
return this.nodes.reduce((names, n) => addNames(names, n.names), {});
|
|
}
|
|
};
|
|
var BlockNode = class extends ParentNode {
|
|
render(opts) {
|
|
return "{" + opts._n + super.render(opts) + "}" + opts._n;
|
|
}
|
|
};
|
|
var Root = class extends ParentNode {
|
|
};
|
|
var Else = class extends BlockNode {
|
|
};
|
|
Else.kind = "else";
|
|
var If = class _If extends BlockNode {
|
|
constructor(condition, nodes) {
|
|
super(nodes);
|
|
this.condition = condition;
|
|
}
|
|
render(opts) {
|
|
let code = `if(${this.condition})` + super.render(opts);
|
|
if (this.else)
|
|
code += "else " + this.else.render(opts);
|
|
return code;
|
|
}
|
|
optimizeNodes() {
|
|
super.optimizeNodes();
|
|
const cond = this.condition;
|
|
if (cond === true)
|
|
return this.nodes;
|
|
let e = this.else;
|
|
if (e) {
|
|
const ns = e.optimizeNodes();
|
|
e = this.else = Array.isArray(ns) ? new Else(ns) : ns;
|
|
}
|
|
if (e) {
|
|
if (cond === false)
|
|
return e instanceof _If ? e : e.nodes;
|
|
if (this.nodes.length)
|
|
return this;
|
|
return new _If(not(cond), e instanceof _If ? [e] : e.nodes);
|
|
}
|
|
if (cond === false || !this.nodes.length)
|
|
return void 0;
|
|
return this;
|
|
}
|
|
optimizeNames(names, constants) {
|
|
var _a2;
|
|
this.else = (_a2 = this.else) === null || _a2 === void 0 ? void 0 : _a2.optimizeNames(names, constants);
|
|
if (!(super.optimizeNames(names, constants) || this.else))
|
|
return;
|
|
this.condition = optimizeExpr(this.condition, names, constants);
|
|
return this;
|
|
}
|
|
get names() {
|
|
const names = super.names;
|
|
addExprNames(names, this.condition);
|
|
if (this.else)
|
|
addNames(names, this.else.names);
|
|
return names;
|
|
}
|
|
};
|
|
If.kind = "if";
|
|
var For = class extends BlockNode {
|
|
};
|
|
For.kind = "for";
|
|
var ForLoop = class extends For {
|
|
constructor(iteration) {
|
|
super();
|
|
this.iteration = iteration;
|
|
}
|
|
render(opts) {
|
|
return `for(${this.iteration})` + super.render(opts);
|
|
}
|
|
optimizeNames(names, constants) {
|
|
if (!super.optimizeNames(names, constants))
|
|
return;
|
|
this.iteration = optimizeExpr(this.iteration, names, constants);
|
|
return this;
|
|
}
|
|
get names() {
|
|
return addNames(super.names, this.iteration.names);
|
|
}
|
|
};
|
|
var ForRange = class extends For {
|
|
constructor(varKind, name, from, to) {
|
|
super();
|
|
this.varKind = varKind;
|
|
this.name = name;
|
|
this.from = from;
|
|
this.to = to;
|
|
}
|
|
render(opts) {
|
|
const varKind = opts.es5 ? scope_1.varKinds.var : this.varKind;
|
|
const { name, from, to } = this;
|
|
return `for(${varKind} ${name}=${from}; ${name}<${to}; ${name}++)` + super.render(opts);
|
|
}
|
|
get names() {
|
|
const names = addExprNames(super.names, this.from);
|
|
return addExprNames(names, this.to);
|
|
}
|
|
};
|
|
var ForIter = class extends For {
|
|
constructor(loop, varKind, name, iterable) {
|
|
super();
|
|
this.loop = loop;
|
|
this.varKind = varKind;
|
|
this.name = name;
|
|
this.iterable = iterable;
|
|
}
|
|
render(opts) {
|
|
return `for(${this.varKind} ${this.name} ${this.loop} ${this.iterable})` + super.render(opts);
|
|
}
|
|
optimizeNames(names, constants) {
|
|
if (!super.optimizeNames(names, constants))
|
|
return;
|
|
this.iterable = optimizeExpr(this.iterable, names, constants);
|
|
return this;
|
|
}
|
|
get names() {
|
|
return addNames(super.names, this.iterable.names);
|
|
}
|
|
};
|
|
var Func = class extends BlockNode {
|
|
constructor(name, args, async) {
|
|
super();
|
|
this.name = name;
|
|
this.args = args;
|
|
this.async = async;
|
|
}
|
|
render(opts) {
|
|
const _async = this.async ? "async " : "";
|
|
return `${_async}function ${this.name}(${this.args})` + super.render(opts);
|
|
}
|
|
};
|
|
Func.kind = "func";
|
|
var Return = class extends ParentNode {
|
|
render(opts) {
|
|
return "return " + super.render(opts);
|
|
}
|
|
};
|
|
Return.kind = "return";
|
|
var Try = class extends BlockNode {
|
|
render(opts) {
|
|
let code = "try" + super.render(opts);
|
|
if (this.catch)
|
|
code += this.catch.render(opts);
|
|
if (this.finally)
|
|
code += this.finally.render(opts);
|
|
return code;
|
|
}
|
|
optimizeNodes() {
|
|
var _a2, _b;
|
|
super.optimizeNodes();
|
|
(_a2 = this.catch) === null || _a2 === void 0 ? void 0 : _a2.optimizeNodes();
|
|
(_b = this.finally) === null || _b === void 0 ? void 0 : _b.optimizeNodes();
|
|
return this;
|
|
}
|
|
optimizeNames(names, constants) {
|
|
var _a2, _b;
|
|
super.optimizeNames(names, constants);
|
|
(_a2 = this.catch) === null || _a2 === void 0 ? void 0 : _a2.optimizeNames(names, constants);
|
|
(_b = this.finally) === null || _b === void 0 ? void 0 : _b.optimizeNames(names, constants);
|
|
return this;
|
|
}
|
|
get names() {
|
|
const names = super.names;
|
|
if (this.catch)
|
|
addNames(names, this.catch.names);
|
|
if (this.finally)
|
|
addNames(names, this.finally.names);
|
|
return names;
|
|
}
|
|
};
|
|
var Catch = class extends BlockNode {
|
|
constructor(error2) {
|
|
super();
|
|
this.error = error2;
|
|
}
|
|
render(opts) {
|
|
return `catch(${this.error})` + super.render(opts);
|
|
}
|
|
};
|
|
Catch.kind = "catch";
|
|
var Finally = class extends BlockNode {
|
|
render(opts) {
|
|
return "finally" + super.render(opts);
|
|
}
|
|
};
|
|
Finally.kind = "finally";
|
|
var CodeGen = class {
|
|
constructor(extScope, opts = {}) {
|
|
this._values = {};
|
|
this._blockStarts = [];
|
|
this._constants = {};
|
|
this.opts = { ...opts, _n: opts.lines ? "\n" : "" };
|
|
this._extScope = extScope;
|
|
this._scope = new scope_1.Scope({ parent: extScope });
|
|
this._nodes = [new Root()];
|
|
}
|
|
toString() {
|
|
return this._root.render(this.opts);
|
|
}
|
|
// returns unique name in the internal scope
|
|
name(prefix) {
|
|
return this._scope.name(prefix);
|
|
}
|
|
// reserves unique name in the external scope
|
|
scopeName(prefix) {
|
|
return this._extScope.name(prefix);
|
|
}
|
|
// reserves unique name in the external scope and assigns value to it
|
|
scopeValue(prefixOrName, value) {
|
|
const name = this._extScope.value(prefixOrName, value);
|
|
const vs = this._values[name.prefix] || (this._values[name.prefix] = /* @__PURE__ */ new Set());
|
|
vs.add(name);
|
|
return name;
|
|
}
|
|
getScopeValue(prefix, keyOrRef) {
|
|
return this._extScope.getValue(prefix, keyOrRef);
|
|
}
|
|
// return code that assigns values in the external scope to the names that are used internally
|
|
// (same names that were returned by gen.scopeName or gen.scopeValue)
|
|
scopeRefs(scopeName) {
|
|
return this._extScope.scopeRefs(scopeName, this._values);
|
|
}
|
|
scopeCode() {
|
|
return this._extScope.scopeCode(this._values);
|
|
}
|
|
_def(varKind, nameOrPrefix, rhs, constant) {
|
|
const name = this._scope.toName(nameOrPrefix);
|
|
if (rhs !== void 0 && constant)
|
|
this._constants[name.str] = rhs;
|
|
this._leafNode(new Def(varKind, name, rhs));
|
|
return name;
|
|
}
|
|
// `const` declaration (`var` in es5 mode)
|
|
const(nameOrPrefix, rhs, _constant) {
|
|
return this._def(scope_1.varKinds.const, nameOrPrefix, rhs, _constant);
|
|
}
|
|
// `let` declaration with optional assignment (`var` in es5 mode)
|
|
let(nameOrPrefix, rhs, _constant) {
|
|
return this._def(scope_1.varKinds.let, nameOrPrefix, rhs, _constant);
|
|
}
|
|
// `var` declaration with optional assignment
|
|
var(nameOrPrefix, rhs, _constant) {
|
|
return this._def(scope_1.varKinds.var, nameOrPrefix, rhs, _constant);
|
|
}
|
|
// assignment code
|
|
assign(lhs, rhs, sideEffects) {
|
|
return this._leafNode(new Assign(lhs, rhs, sideEffects));
|
|
}
|
|
// `+=` code
|
|
add(lhs, rhs) {
|
|
return this._leafNode(new AssignOp(lhs, exports.operators.ADD, rhs));
|
|
}
|
|
// appends passed SafeExpr to code or executes Block
|
|
code(c) {
|
|
if (typeof c == "function")
|
|
c();
|
|
else if (c !== code_1.nil)
|
|
this._leafNode(new AnyCode(c));
|
|
return this;
|
|
}
|
|
// returns code for object literal for the passed argument list of key-value pairs
|
|
object(...keyValues) {
|
|
const code = ["{"];
|
|
for (const [key, value] of keyValues) {
|
|
if (code.length > 1)
|
|
code.push(",");
|
|
code.push(key);
|
|
if (key !== value || this.opts.es5) {
|
|
code.push(":");
|
|
(0, code_1.addCodeArg)(code, value);
|
|
}
|
|
}
|
|
code.push("}");
|
|
return new code_1._Code(code);
|
|
}
|
|
// `if` clause (or statement if `thenBody` and, optionally, `elseBody` are passed)
|
|
if(condition, thenBody, elseBody) {
|
|
this._blockNode(new If(condition));
|
|
if (thenBody && elseBody) {
|
|
this.code(thenBody).else().code(elseBody).endIf();
|
|
} else if (thenBody) {
|
|
this.code(thenBody).endIf();
|
|
} else if (elseBody) {
|
|
throw new Error('CodeGen: "else" body without "then" body');
|
|
}
|
|
return this;
|
|
}
|
|
// `else if` clause - invalid without `if` or after `else` clauses
|
|
elseIf(condition) {
|
|
return this._elseNode(new If(condition));
|
|
}
|
|
// `else` clause - only valid after `if` or `else if` clauses
|
|
else() {
|
|
return this._elseNode(new Else());
|
|
}
|
|
// end `if` statement (needed if gen.if was used only with condition)
|
|
endIf() {
|
|
return this._endBlockNode(If, Else);
|
|
}
|
|
_for(node, forBody) {
|
|
this._blockNode(node);
|
|
if (forBody)
|
|
this.code(forBody).endFor();
|
|
return this;
|
|
}
|
|
// a generic `for` clause (or statement if `forBody` is passed)
|
|
for(iteration, forBody) {
|
|
return this._for(new ForLoop(iteration), forBody);
|
|
}
|
|
// `for` statement for a range of values
|
|
forRange(nameOrPrefix, from, to, forBody, varKind = this.opts.es5 ? scope_1.varKinds.var : scope_1.varKinds.let) {
|
|
const name = this._scope.toName(nameOrPrefix);
|
|
return this._for(new ForRange(varKind, name, from, to), () => forBody(name));
|
|
}
|
|
// `for-of` statement (in es5 mode replace with a normal for loop)
|
|
forOf(nameOrPrefix, iterable, forBody, varKind = scope_1.varKinds.const) {
|
|
const name = this._scope.toName(nameOrPrefix);
|
|
if (this.opts.es5) {
|
|
const arr = iterable instanceof code_1.Name ? iterable : this.var("_arr", iterable);
|
|
return this.forRange("_i", 0, (0, code_1._)`${arr}.length`, (i) => {
|
|
this.var(name, (0, code_1._)`${arr}[${i}]`);
|
|
forBody(name);
|
|
});
|
|
}
|
|
return this._for(new ForIter("of", varKind, name, iterable), () => forBody(name));
|
|
}
|
|
// `for-in` statement.
|
|
// With option `ownProperties` replaced with a `for-of` loop for object keys
|
|
forIn(nameOrPrefix, obj, forBody, varKind = this.opts.es5 ? scope_1.varKinds.var : scope_1.varKinds.const) {
|
|
if (this.opts.ownProperties) {
|
|
return this.forOf(nameOrPrefix, (0, code_1._)`Object.keys(${obj})`, forBody);
|
|
}
|
|
const name = this._scope.toName(nameOrPrefix);
|
|
return this._for(new ForIter("in", varKind, name, obj), () => forBody(name));
|
|
}
|
|
// end `for` loop
|
|
endFor() {
|
|
return this._endBlockNode(For);
|
|
}
|
|
// `label` statement
|
|
label(label) {
|
|
return this._leafNode(new Label(label));
|
|
}
|
|
// `break` statement
|
|
break(label) {
|
|
return this._leafNode(new Break(label));
|
|
}
|
|
// `return` statement
|
|
return(value) {
|
|
const node = new Return();
|
|
this._blockNode(node);
|
|
this.code(value);
|
|
if (node.nodes.length !== 1)
|
|
throw new Error('CodeGen: "return" should have one node');
|
|
return this._endBlockNode(Return);
|
|
}
|
|
// `try` statement
|
|
try(tryBody, catchCode, finallyCode) {
|
|
if (!catchCode && !finallyCode)
|
|
throw new Error('CodeGen: "try" without "catch" and "finally"');
|
|
const node = new Try();
|
|
this._blockNode(node);
|
|
this.code(tryBody);
|
|
if (catchCode) {
|
|
const error2 = this.name("e");
|
|
this._currNode = node.catch = new Catch(error2);
|
|
catchCode(error2);
|
|
}
|
|
if (finallyCode) {
|
|
this._currNode = node.finally = new Finally();
|
|
this.code(finallyCode);
|
|
}
|
|
return this._endBlockNode(Catch, Finally);
|
|
}
|
|
// `throw` statement
|
|
throw(error2) {
|
|
return this._leafNode(new Throw(error2));
|
|
}
|
|
// start self-balancing block
|
|
block(body, nodeCount) {
|
|
this._blockStarts.push(this._nodes.length);
|
|
if (body)
|
|
this.code(body).endBlock(nodeCount);
|
|
return this;
|
|
}
|
|
// end the current self-balancing block
|
|
endBlock(nodeCount) {
|
|
const len = this._blockStarts.pop();
|
|
if (len === void 0)
|
|
throw new Error("CodeGen: not in self-balancing block");
|
|
const toClose = this._nodes.length - len;
|
|
if (toClose < 0 || nodeCount !== void 0 && toClose !== nodeCount) {
|
|
throw new Error(`CodeGen: wrong number of nodes: ${toClose} vs ${nodeCount} expected`);
|
|
}
|
|
this._nodes.length = len;
|
|
return this;
|
|
}
|
|
// `function` heading (or definition if funcBody is passed)
|
|
func(name, args = code_1.nil, async, funcBody) {
|
|
this._blockNode(new Func(name, args, async));
|
|
if (funcBody)
|
|
this.code(funcBody).endFunc();
|
|
return this;
|
|
}
|
|
// end function definition
|
|
endFunc() {
|
|
return this._endBlockNode(Func);
|
|
}
|
|
optimize(n = 1) {
|
|
while (n-- > 0) {
|
|
this._root.optimizeNodes();
|
|
this._root.optimizeNames(this._root.names, this._constants);
|
|
}
|
|
}
|
|
_leafNode(node) {
|
|
this._currNode.nodes.push(node);
|
|
return this;
|
|
}
|
|
_blockNode(node) {
|
|
this._currNode.nodes.push(node);
|
|
this._nodes.push(node);
|
|
}
|
|
_endBlockNode(N1, N2) {
|
|
const n = this._currNode;
|
|
if (n instanceof N1 || N2 && n instanceof N2) {
|
|
this._nodes.pop();
|
|
return this;
|
|
}
|
|
throw new Error(`CodeGen: not in block "${N2 ? `${N1.kind}/${N2.kind}` : N1.kind}"`);
|
|
}
|
|
_elseNode(node) {
|
|
const n = this._currNode;
|
|
if (!(n instanceof If)) {
|
|
throw new Error('CodeGen: "else" without "if"');
|
|
}
|
|
this._currNode = n.else = node;
|
|
return this;
|
|
}
|
|
get _root() {
|
|
return this._nodes[0];
|
|
}
|
|
get _currNode() {
|
|
const ns = this._nodes;
|
|
return ns[ns.length - 1];
|
|
}
|
|
set _currNode(node) {
|
|
const ns = this._nodes;
|
|
ns[ns.length - 1] = node;
|
|
}
|
|
};
|
|
exports.CodeGen = CodeGen;
|
|
function addNames(names, from) {
|
|
for (const n in from)
|
|
names[n] = (names[n] || 0) + (from[n] || 0);
|
|
return names;
|
|
}
|
|
function addExprNames(names, from) {
|
|
return from instanceof code_1._CodeOrName ? addNames(names, from.names) : names;
|
|
}
|
|
function optimizeExpr(expr, names, constants) {
|
|
if (expr instanceof code_1.Name)
|
|
return replaceName(expr);
|
|
if (!canOptimize(expr))
|
|
return expr;
|
|
return new code_1._Code(expr._items.reduce((items, c) => {
|
|
if (c instanceof code_1.Name)
|
|
c = replaceName(c);
|
|
if (c instanceof code_1._Code)
|
|
items.push(...c._items);
|
|
else
|
|
items.push(c);
|
|
return items;
|
|
}, []));
|
|
function replaceName(n) {
|
|
const c = constants[n.str];
|
|
if (c === void 0 || names[n.str] !== 1)
|
|
return n;
|
|
delete names[n.str];
|
|
return c;
|
|
}
|
|
function canOptimize(e) {
|
|
return e instanceof code_1._Code && e._items.some((c) => c instanceof code_1.Name && names[c.str] === 1 && constants[c.str] !== void 0);
|
|
}
|
|
}
|
|
function subtractNames(names, from) {
|
|
for (const n in from)
|
|
names[n] = (names[n] || 0) - (from[n] || 0);
|
|
}
|
|
function not(x) {
|
|
return typeof x == "boolean" || typeof x == "number" || x === null ? !x : (0, code_1._)`!${par(x)}`;
|
|
}
|
|
exports.not = not;
|
|
var andCode = mappend(exports.operators.AND);
|
|
function and(...args) {
|
|
return args.reduce(andCode);
|
|
}
|
|
exports.and = and;
|
|
var orCode = mappend(exports.operators.OR);
|
|
function or(...args) {
|
|
return args.reduce(orCode);
|
|
}
|
|
exports.or = or;
|
|
function mappend(op) {
|
|
return (x, y) => x === code_1.nil ? y : y === code_1.nil ? x : (0, code_1._)`${par(x)} ${op} ${par(y)}`;
|
|
}
|
|
function par(x) {
|
|
return x instanceof code_1.Name ? x : (0, code_1._)`(${x})`;
|
|
}
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/compile/util.js
|
|
var require_util = __commonJS({
|
|
"node_modules/ajv/dist/compile/util.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.checkStrictMode = exports.getErrorPath = exports.Type = exports.useFunc = exports.setEvaluated = exports.evaluatedPropsToName = exports.mergeEvaluated = exports.eachItem = exports.unescapeJsonPointer = exports.escapeJsonPointer = exports.escapeFragment = exports.unescapeFragment = exports.schemaRefOrVal = exports.schemaHasRulesButRef = exports.schemaHasRules = exports.checkUnknownRules = exports.alwaysValidSchema = exports.toHash = void 0;
|
|
var codegen_1 = require_codegen();
|
|
var code_1 = require_code();
|
|
function toHash(arr) {
|
|
const hash2 = {};
|
|
for (const item of arr)
|
|
hash2[item] = true;
|
|
return hash2;
|
|
}
|
|
exports.toHash = toHash;
|
|
function alwaysValidSchema(it, schema) {
|
|
if (typeof schema == "boolean")
|
|
return schema;
|
|
if (Object.keys(schema).length === 0)
|
|
return true;
|
|
checkUnknownRules(it, schema);
|
|
return !schemaHasRules(schema, it.self.RULES.all);
|
|
}
|
|
exports.alwaysValidSchema = alwaysValidSchema;
|
|
function checkUnknownRules(it, schema = it.schema) {
|
|
const { opts, self } = it;
|
|
if (!opts.strictSchema)
|
|
return;
|
|
if (typeof schema === "boolean")
|
|
return;
|
|
const rules = self.RULES.keywords;
|
|
for (const key in schema) {
|
|
if (!rules[key])
|
|
checkStrictMode(it, `unknown keyword: "${key}"`);
|
|
}
|
|
}
|
|
exports.checkUnknownRules = checkUnknownRules;
|
|
function schemaHasRules(schema, rules) {
|
|
if (typeof schema == "boolean")
|
|
return !schema;
|
|
for (const key in schema)
|
|
if (rules[key])
|
|
return true;
|
|
return false;
|
|
}
|
|
exports.schemaHasRules = schemaHasRules;
|
|
function schemaHasRulesButRef(schema, RULES) {
|
|
if (typeof schema == "boolean")
|
|
return !schema;
|
|
for (const key in schema)
|
|
if (key !== "$ref" && RULES.all[key])
|
|
return true;
|
|
return false;
|
|
}
|
|
exports.schemaHasRulesButRef = schemaHasRulesButRef;
|
|
function schemaRefOrVal({ topSchemaRef, schemaPath }, schema, keyword, $data) {
|
|
if (!$data) {
|
|
if (typeof schema == "number" || typeof schema == "boolean")
|
|
return schema;
|
|
if (typeof schema == "string")
|
|
return (0, codegen_1._)`${schema}`;
|
|
}
|
|
return (0, codegen_1._)`${topSchemaRef}${schemaPath}${(0, codegen_1.getProperty)(keyword)}`;
|
|
}
|
|
exports.schemaRefOrVal = schemaRefOrVal;
|
|
function unescapeFragment(str) {
|
|
return unescapeJsonPointer(decodeURIComponent(str));
|
|
}
|
|
exports.unescapeFragment = unescapeFragment;
|
|
function escapeFragment(str) {
|
|
return encodeURIComponent(escapeJsonPointer(str));
|
|
}
|
|
exports.escapeFragment = escapeFragment;
|
|
function escapeJsonPointer(str) {
|
|
if (typeof str == "number")
|
|
return `${str}`;
|
|
return str.replace(/~/g, "~0").replace(/\//g, "~1");
|
|
}
|
|
exports.escapeJsonPointer = escapeJsonPointer;
|
|
function unescapeJsonPointer(str) {
|
|
return str.replace(/~1/g, "/").replace(/~0/g, "~");
|
|
}
|
|
exports.unescapeJsonPointer = unescapeJsonPointer;
|
|
function eachItem(xs, f) {
|
|
if (Array.isArray(xs)) {
|
|
for (const x of xs)
|
|
f(x);
|
|
} else {
|
|
f(xs);
|
|
}
|
|
}
|
|
exports.eachItem = eachItem;
|
|
function makeMergeEvaluated({ mergeNames, mergeToName, mergeValues: mergeValues3, resultToName }) {
|
|
return (gen, from, to, toName) => {
|
|
const res = to === void 0 ? from : to instanceof codegen_1.Name ? (from instanceof codegen_1.Name ? mergeNames(gen, from, to) : mergeToName(gen, from, to), to) : from instanceof codegen_1.Name ? (mergeToName(gen, to, from), from) : mergeValues3(from, to);
|
|
return toName === codegen_1.Name && !(res instanceof codegen_1.Name) ? resultToName(gen, res) : res;
|
|
};
|
|
}
|
|
exports.mergeEvaluated = {
|
|
props: makeMergeEvaluated({
|
|
mergeNames: (gen, from, to) => gen.if((0, codegen_1._)`${to} !== true && ${from} !== undefined`, () => {
|
|
gen.if((0, codegen_1._)`${from} === true`, () => gen.assign(to, true), () => gen.assign(to, (0, codegen_1._)`${to} || {}`).code((0, codegen_1._)`Object.assign(${to}, ${from})`));
|
|
}),
|
|
mergeToName: (gen, from, to) => gen.if((0, codegen_1._)`${to} !== true`, () => {
|
|
if (from === true) {
|
|
gen.assign(to, true);
|
|
} else {
|
|
gen.assign(to, (0, codegen_1._)`${to} || {}`);
|
|
setEvaluated(gen, to, from);
|
|
}
|
|
}),
|
|
mergeValues: (from, to) => from === true ? true : { ...from, ...to },
|
|
resultToName: evaluatedPropsToName
|
|
}),
|
|
items: makeMergeEvaluated({
|
|
mergeNames: (gen, from, to) => gen.if((0, codegen_1._)`${to} !== true && ${from} !== undefined`, () => gen.assign(to, (0, codegen_1._)`${from} === true ? true : ${to} > ${from} ? ${to} : ${from}`)),
|
|
mergeToName: (gen, from, to) => gen.if((0, codegen_1._)`${to} !== true`, () => gen.assign(to, from === true ? true : (0, codegen_1._)`${to} > ${from} ? ${to} : ${from}`)),
|
|
mergeValues: (from, to) => from === true ? true : Math.max(from, to),
|
|
resultToName: (gen, items) => gen.var("items", items)
|
|
})
|
|
};
|
|
function evaluatedPropsToName(gen, ps) {
|
|
if (ps === true)
|
|
return gen.var("props", true);
|
|
const props = gen.var("props", (0, codegen_1._)`{}`);
|
|
if (ps !== void 0)
|
|
setEvaluated(gen, props, ps);
|
|
return props;
|
|
}
|
|
exports.evaluatedPropsToName = evaluatedPropsToName;
|
|
function setEvaluated(gen, props, ps) {
|
|
Object.keys(ps).forEach((p) => gen.assign((0, codegen_1._)`${props}${(0, codegen_1.getProperty)(p)}`, true));
|
|
}
|
|
exports.setEvaluated = setEvaluated;
|
|
var snippets = {};
|
|
function useFunc(gen, f) {
|
|
return gen.scopeValue("func", {
|
|
ref: f,
|
|
code: snippets[f.code] || (snippets[f.code] = new code_1._Code(f.code))
|
|
});
|
|
}
|
|
exports.useFunc = useFunc;
|
|
var Type;
|
|
(function(Type2) {
|
|
Type2[Type2["Num"] = 0] = "Num";
|
|
Type2[Type2["Str"] = 1] = "Str";
|
|
})(Type || (exports.Type = Type = {}));
|
|
function getErrorPath(dataProp, dataPropType, jsPropertySyntax) {
|
|
if (dataProp instanceof codegen_1.Name) {
|
|
const isNumber = dataPropType === Type.Num;
|
|
return jsPropertySyntax ? isNumber ? (0, codegen_1._)`"[" + ${dataProp} + "]"` : (0, codegen_1._)`"['" + ${dataProp} + "']"` : isNumber ? (0, codegen_1._)`"/" + ${dataProp}` : (0, codegen_1._)`"/" + ${dataProp}.replace(/~/g, "~0").replace(/\\//g, "~1")`;
|
|
}
|
|
return jsPropertySyntax ? (0, codegen_1.getProperty)(dataProp).toString() : "/" + escapeJsonPointer(dataProp);
|
|
}
|
|
exports.getErrorPath = getErrorPath;
|
|
function checkStrictMode(it, msg, mode = it.opts.strictSchema) {
|
|
if (!mode)
|
|
return;
|
|
msg = `strict mode: ${msg}`;
|
|
if (mode === true)
|
|
throw new Error(msg);
|
|
it.self.logger.warn(msg);
|
|
}
|
|
exports.checkStrictMode = checkStrictMode;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/compile/names.js
|
|
var require_names = __commonJS({
|
|
"node_modules/ajv/dist/compile/names.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var codegen_1 = require_codegen();
|
|
var names = {
|
|
// validation function arguments
|
|
data: new codegen_1.Name("data"),
|
|
// data passed to validation function
|
|
// args passed from referencing schema
|
|
valCxt: new codegen_1.Name("valCxt"),
|
|
// validation/data context - should not be used directly, it is destructured to the names below
|
|
instancePath: new codegen_1.Name("instancePath"),
|
|
parentData: new codegen_1.Name("parentData"),
|
|
parentDataProperty: new codegen_1.Name("parentDataProperty"),
|
|
rootData: new codegen_1.Name("rootData"),
|
|
// root data - same as the data passed to the first/top validation function
|
|
dynamicAnchors: new codegen_1.Name("dynamicAnchors"),
|
|
// used to support recursiveRef and dynamicRef
|
|
// function scoped variables
|
|
vErrors: new codegen_1.Name("vErrors"),
|
|
// null or array of validation errors
|
|
errors: new codegen_1.Name("errors"),
|
|
// counter of validation errors
|
|
this: new codegen_1.Name("this"),
|
|
// "globals"
|
|
self: new codegen_1.Name("self"),
|
|
scope: new codegen_1.Name("scope"),
|
|
// JTD serialize/parse name for JSON string and position
|
|
json: new codegen_1.Name("json"),
|
|
jsonPos: new codegen_1.Name("jsonPos"),
|
|
jsonLen: new codegen_1.Name("jsonLen"),
|
|
jsonPart: new codegen_1.Name("jsonPart")
|
|
};
|
|
exports.default = names;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/compile/errors.js
|
|
var require_errors = __commonJS({
|
|
"node_modules/ajv/dist/compile/errors.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.extendErrors = exports.resetErrorsCount = exports.reportExtraError = exports.reportError = exports.keyword$DataError = exports.keywordError = void 0;
|
|
var codegen_1 = require_codegen();
|
|
var util_1 = require_util();
|
|
var names_1 = require_names();
|
|
exports.keywordError = {
|
|
message: ({ keyword }) => (0, codegen_1.str)`must pass "${keyword}" keyword validation`
|
|
};
|
|
exports.keyword$DataError = {
|
|
message: ({ keyword, schemaType }) => schemaType ? (0, codegen_1.str)`"${keyword}" keyword must be ${schemaType} ($data)` : (0, codegen_1.str)`"${keyword}" keyword is invalid ($data)`
|
|
};
|
|
function reportError(cxt, error2 = exports.keywordError, errorPaths, overrideAllErrors) {
|
|
const { it } = cxt;
|
|
const { gen, compositeRule, allErrors } = it;
|
|
const errObj = errorObjectCode(cxt, error2, errorPaths);
|
|
if (overrideAllErrors !== null && overrideAllErrors !== void 0 ? overrideAllErrors : compositeRule || allErrors) {
|
|
addError(gen, errObj);
|
|
} else {
|
|
returnErrors(it, (0, codegen_1._)`[${errObj}]`);
|
|
}
|
|
}
|
|
exports.reportError = reportError;
|
|
function reportExtraError(cxt, error2 = exports.keywordError, errorPaths) {
|
|
const { it } = cxt;
|
|
const { gen, compositeRule, allErrors } = it;
|
|
const errObj = errorObjectCode(cxt, error2, errorPaths);
|
|
addError(gen, errObj);
|
|
if (!(compositeRule || allErrors)) {
|
|
returnErrors(it, names_1.default.vErrors);
|
|
}
|
|
}
|
|
exports.reportExtraError = reportExtraError;
|
|
function resetErrorsCount(gen, errsCount) {
|
|
gen.assign(names_1.default.errors, errsCount);
|
|
gen.if((0, codegen_1._)`${names_1.default.vErrors} !== null`, () => gen.if(errsCount, () => gen.assign((0, codegen_1._)`${names_1.default.vErrors}.length`, errsCount), () => gen.assign(names_1.default.vErrors, null)));
|
|
}
|
|
exports.resetErrorsCount = resetErrorsCount;
|
|
function extendErrors({ gen, keyword, schemaValue, data, errsCount, it }) {
|
|
if (errsCount === void 0)
|
|
throw new Error("ajv implementation error");
|
|
const err = gen.name("err");
|
|
gen.forRange("i", errsCount, names_1.default.errors, (i) => {
|
|
gen.const(err, (0, codegen_1._)`${names_1.default.vErrors}[${i}]`);
|
|
gen.if((0, codegen_1._)`${err}.instancePath === undefined`, () => gen.assign((0, codegen_1._)`${err}.instancePath`, (0, codegen_1.strConcat)(names_1.default.instancePath, it.errorPath)));
|
|
gen.assign((0, codegen_1._)`${err}.schemaPath`, (0, codegen_1.str)`${it.errSchemaPath}/${keyword}`);
|
|
if (it.opts.verbose) {
|
|
gen.assign((0, codegen_1._)`${err}.schema`, schemaValue);
|
|
gen.assign((0, codegen_1._)`${err}.data`, data);
|
|
}
|
|
});
|
|
}
|
|
exports.extendErrors = extendErrors;
|
|
function addError(gen, errObj) {
|
|
const err = gen.const("err", errObj);
|
|
gen.if((0, codegen_1._)`${names_1.default.vErrors} === null`, () => gen.assign(names_1.default.vErrors, (0, codegen_1._)`[${err}]`), (0, codegen_1._)`${names_1.default.vErrors}.push(${err})`);
|
|
gen.code((0, codegen_1._)`${names_1.default.errors}++`);
|
|
}
|
|
function returnErrors(it, errs) {
|
|
const { gen, validateName, schemaEnv } = it;
|
|
if (schemaEnv.$async) {
|
|
gen.throw((0, codegen_1._)`new ${it.ValidationError}(${errs})`);
|
|
} else {
|
|
gen.assign((0, codegen_1._)`${validateName}.errors`, errs);
|
|
gen.return(false);
|
|
}
|
|
}
|
|
var E = {
|
|
keyword: new codegen_1.Name("keyword"),
|
|
schemaPath: new codegen_1.Name("schemaPath"),
|
|
// also used in JTD errors
|
|
params: new codegen_1.Name("params"),
|
|
propertyName: new codegen_1.Name("propertyName"),
|
|
message: new codegen_1.Name("message"),
|
|
schema: new codegen_1.Name("schema"),
|
|
parentSchema: new codegen_1.Name("parentSchema")
|
|
};
|
|
function errorObjectCode(cxt, error2, errorPaths) {
|
|
const { createErrors } = cxt.it;
|
|
if (createErrors === false)
|
|
return (0, codegen_1._)`{}`;
|
|
return errorObject(cxt, error2, errorPaths);
|
|
}
|
|
function errorObject(cxt, error2, errorPaths = {}) {
|
|
const { gen, it } = cxt;
|
|
const keyValues = [
|
|
errorInstancePath(it, errorPaths),
|
|
errorSchemaPath(cxt, errorPaths)
|
|
];
|
|
extraErrorProps(cxt, error2, keyValues);
|
|
return gen.object(...keyValues);
|
|
}
|
|
function errorInstancePath({ errorPath }, { instancePath }) {
|
|
const instPath = instancePath ? (0, codegen_1.str)`${errorPath}${(0, util_1.getErrorPath)(instancePath, util_1.Type.Str)}` : errorPath;
|
|
return [names_1.default.instancePath, (0, codegen_1.strConcat)(names_1.default.instancePath, instPath)];
|
|
}
|
|
function errorSchemaPath({ keyword, it: { errSchemaPath } }, { schemaPath, parentSchema }) {
|
|
let schPath = parentSchema ? errSchemaPath : (0, codegen_1.str)`${errSchemaPath}/${keyword}`;
|
|
if (schemaPath) {
|
|
schPath = (0, codegen_1.str)`${schPath}${(0, util_1.getErrorPath)(schemaPath, util_1.Type.Str)}`;
|
|
}
|
|
return [E.schemaPath, schPath];
|
|
}
|
|
function extraErrorProps(cxt, { params, message }, keyValues) {
|
|
const { keyword, data, schemaValue, it } = cxt;
|
|
const { opts, propertyName, topSchemaRef, schemaPath } = it;
|
|
keyValues.push([E.keyword, keyword], [E.params, typeof params == "function" ? params(cxt) : params || (0, codegen_1._)`{}`]);
|
|
if (opts.messages) {
|
|
keyValues.push([E.message, typeof message == "function" ? message(cxt) : message]);
|
|
}
|
|
if (opts.verbose) {
|
|
keyValues.push([E.schema, schemaValue], [E.parentSchema, (0, codegen_1._)`${topSchemaRef}${schemaPath}`], [names_1.default.data, data]);
|
|
}
|
|
if (propertyName)
|
|
keyValues.push([E.propertyName, propertyName]);
|
|
}
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/compile/validate/boolSchema.js
|
|
var require_boolSchema = __commonJS({
|
|
"node_modules/ajv/dist/compile/validate/boolSchema.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.boolOrEmptySchema = exports.topBoolOrEmptySchema = void 0;
|
|
var errors_1 = require_errors();
|
|
var codegen_1 = require_codegen();
|
|
var names_1 = require_names();
|
|
var boolError = {
|
|
message: "boolean schema is false"
|
|
};
|
|
function topBoolOrEmptySchema(it) {
|
|
const { gen, schema, validateName } = it;
|
|
if (schema === false) {
|
|
falseSchemaError(it, false);
|
|
} else if (typeof schema == "object" && schema.$async === true) {
|
|
gen.return(names_1.default.data);
|
|
} else {
|
|
gen.assign((0, codegen_1._)`${validateName}.errors`, null);
|
|
gen.return(true);
|
|
}
|
|
}
|
|
exports.topBoolOrEmptySchema = topBoolOrEmptySchema;
|
|
function boolOrEmptySchema(it, valid) {
|
|
const { gen, schema } = it;
|
|
if (schema === false) {
|
|
gen.var(valid, false);
|
|
falseSchemaError(it);
|
|
} else {
|
|
gen.var(valid, true);
|
|
}
|
|
}
|
|
exports.boolOrEmptySchema = boolOrEmptySchema;
|
|
function falseSchemaError(it, overrideAllErrors) {
|
|
const { gen, data } = it;
|
|
const cxt = {
|
|
gen,
|
|
keyword: "false schema",
|
|
data,
|
|
schema: false,
|
|
schemaCode: false,
|
|
schemaValue: false,
|
|
params: {},
|
|
it
|
|
};
|
|
(0, errors_1.reportError)(cxt, boolError, void 0, overrideAllErrors);
|
|
}
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/compile/rules.js
|
|
var require_rules = __commonJS({
|
|
"node_modules/ajv/dist/compile/rules.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.getRules = exports.isJSONType = void 0;
|
|
var _jsonTypes = ["string", "number", "integer", "boolean", "null", "object", "array"];
|
|
var jsonTypes = new Set(_jsonTypes);
|
|
function isJSONType(x) {
|
|
return typeof x == "string" && jsonTypes.has(x);
|
|
}
|
|
exports.isJSONType = isJSONType;
|
|
function getRules() {
|
|
const groups = {
|
|
number: { type: "number", rules: [] },
|
|
string: { type: "string", rules: [] },
|
|
array: { type: "array", rules: [] },
|
|
object: { type: "object", rules: [] }
|
|
};
|
|
return {
|
|
types: { ...groups, integer: true, boolean: true, null: true },
|
|
rules: [{ rules: [] }, groups.number, groups.string, groups.array, groups.object],
|
|
post: { rules: [] },
|
|
all: {},
|
|
keywords: {}
|
|
};
|
|
}
|
|
exports.getRules = getRules;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/compile/validate/applicability.js
|
|
var require_applicability = __commonJS({
|
|
"node_modules/ajv/dist/compile/validate/applicability.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.shouldUseRule = exports.shouldUseGroup = exports.schemaHasRulesForType = void 0;
|
|
function schemaHasRulesForType({ schema, self }, type) {
|
|
const group = self.RULES.types[type];
|
|
return group && group !== true && shouldUseGroup(schema, group);
|
|
}
|
|
exports.schemaHasRulesForType = schemaHasRulesForType;
|
|
function shouldUseGroup(schema, group) {
|
|
return group.rules.some((rule) => shouldUseRule(schema, rule));
|
|
}
|
|
exports.shouldUseGroup = shouldUseGroup;
|
|
function shouldUseRule(schema, rule) {
|
|
var _a2;
|
|
return schema[rule.keyword] !== void 0 || ((_a2 = rule.definition.implements) === null || _a2 === void 0 ? void 0 : _a2.some((kwd) => schema[kwd] !== void 0));
|
|
}
|
|
exports.shouldUseRule = shouldUseRule;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/compile/validate/dataType.js
|
|
var require_dataType = __commonJS({
|
|
"node_modules/ajv/dist/compile/validate/dataType.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.reportTypeError = exports.checkDataTypes = exports.checkDataType = exports.coerceAndCheckDataType = exports.getJSONTypes = exports.getSchemaTypes = exports.DataType = void 0;
|
|
var rules_1 = require_rules();
|
|
var applicability_1 = require_applicability();
|
|
var errors_1 = require_errors();
|
|
var codegen_1 = require_codegen();
|
|
var util_1 = require_util();
|
|
var DataType;
|
|
(function(DataType2) {
|
|
DataType2[DataType2["Correct"] = 0] = "Correct";
|
|
DataType2[DataType2["Wrong"] = 1] = "Wrong";
|
|
})(DataType || (exports.DataType = DataType = {}));
|
|
function getSchemaTypes(schema) {
|
|
const types = getJSONTypes(schema.type);
|
|
const hasNull = types.includes("null");
|
|
if (hasNull) {
|
|
if (schema.nullable === false)
|
|
throw new Error("type: null contradicts nullable: false");
|
|
} else {
|
|
if (!types.length && schema.nullable !== void 0) {
|
|
throw new Error('"nullable" cannot be used without "type"');
|
|
}
|
|
if (schema.nullable === true)
|
|
types.push("null");
|
|
}
|
|
return types;
|
|
}
|
|
exports.getSchemaTypes = getSchemaTypes;
|
|
function getJSONTypes(ts) {
|
|
const types = Array.isArray(ts) ? ts : ts ? [ts] : [];
|
|
if (types.every(rules_1.isJSONType))
|
|
return types;
|
|
throw new Error("type must be JSONType or JSONType[]: " + types.join(","));
|
|
}
|
|
exports.getJSONTypes = getJSONTypes;
|
|
function coerceAndCheckDataType(it, types) {
|
|
const { gen, data, opts } = it;
|
|
const coerceTo = coerceToTypes(types, opts.coerceTypes);
|
|
const checkTypes = types.length > 0 && !(coerceTo.length === 0 && types.length === 1 && (0, applicability_1.schemaHasRulesForType)(it, types[0]));
|
|
if (checkTypes) {
|
|
const wrongType = checkDataTypes(types, data, opts.strictNumbers, DataType.Wrong);
|
|
gen.if(wrongType, () => {
|
|
if (coerceTo.length)
|
|
coerceData(it, types, coerceTo);
|
|
else
|
|
reportTypeError(it);
|
|
});
|
|
}
|
|
return checkTypes;
|
|
}
|
|
exports.coerceAndCheckDataType = coerceAndCheckDataType;
|
|
var COERCIBLE = /* @__PURE__ */ new Set(["string", "number", "integer", "boolean", "null"]);
|
|
function coerceToTypes(types, coerceTypes) {
|
|
return coerceTypes ? types.filter((t) => COERCIBLE.has(t) || coerceTypes === "array" && t === "array") : [];
|
|
}
|
|
function coerceData(it, types, coerceTo) {
|
|
const { gen, data, opts } = it;
|
|
const dataType = gen.let("dataType", (0, codegen_1._)`typeof ${data}`);
|
|
const coerced = gen.let("coerced", (0, codegen_1._)`undefined`);
|
|
if (opts.coerceTypes === "array") {
|
|
gen.if((0, codegen_1._)`${dataType} == 'object' && Array.isArray(${data}) && ${data}.length == 1`, () => gen.assign(data, (0, codegen_1._)`${data}[0]`).assign(dataType, (0, codegen_1._)`typeof ${data}`).if(checkDataTypes(types, data, opts.strictNumbers), () => gen.assign(coerced, data)));
|
|
}
|
|
gen.if((0, codegen_1._)`${coerced} !== undefined`);
|
|
for (const t of coerceTo) {
|
|
if (COERCIBLE.has(t) || t === "array" && opts.coerceTypes === "array") {
|
|
coerceSpecificType(t);
|
|
}
|
|
}
|
|
gen.else();
|
|
reportTypeError(it);
|
|
gen.endIf();
|
|
gen.if((0, codegen_1._)`${coerced} !== undefined`, () => {
|
|
gen.assign(data, coerced);
|
|
assignParentData(it, coerced);
|
|
});
|
|
function coerceSpecificType(t) {
|
|
switch (t) {
|
|
case "string":
|
|
gen.elseIf((0, codegen_1._)`${dataType} == "number" || ${dataType} == "boolean"`).assign(coerced, (0, codegen_1._)`"" + ${data}`).elseIf((0, codegen_1._)`${data} === null`).assign(coerced, (0, codegen_1._)`""`);
|
|
return;
|
|
case "number":
|
|
gen.elseIf((0, codegen_1._)`${dataType} == "boolean" || ${data} === null
|
|
|| (${dataType} == "string" && ${data} && ${data} == +${data})`).assign(coerced, (0, codegen_1._)`+${data}`);
|
|
return;
|
|
case "integer":
|
|
gen.elseIf((0, codegen_1._)`${dataType} === "boolean" || ${data} === null
|
|
|| (${dataType} === "string" && ${data} && ${data} == +${data} && !(${data} % 1))`).assign(coerced, (0, codegen_1._)`+${data}`);
|
|
return;
|
|
case "boolean":
|
|
gen.elseIf((0, codegen_1._)`${data} === "false" || ${data} === 0 || ${data} === null`).assign(coerced, false).elseIf((0, codegen_1._)`${data} === "true" || ${data} === 1`).assign(coerced, true);
|
|
return;
|
|
case "null":
|
|
gen.elseIf((0, codegen_1._)`${data} === "" || ${data} === 0 || ${data} === false`);
|
|
gen.assign(coerced, null);
|
|
return;
|
|
case "array":
|
|
gen.elseIf((0, codegen_1._)`${dataType} === "string" || ${dataType} === "number"
|
|
|| ${dataType} === "boolean" || ${data} === null`).assign(coerced, (0, codegen_1._)`[${data}]`);
|
|
}
|
|
}
|
|
}
|
|
function assignParentData({ gen, parentData, parentDataProperty }, expr) {
|
|
gen.if((0, codegen_1._)`${parentData} !== undefined`, () => gen.assign((0, codegen_1._)`${parentData}[${parentDataProperty}]`, expr));
|
|
}
|
|
function checkDataType(dataType, data, strictNums, correct = DataType.Correct) {
|
|
const EQ = correct === DataType.Correct ? codegen_1.operators.EQ : codegen_1.operators.NEQ;
|
|
let cond;
|
|
switch (dataType) {
|
|
case "null":
|
|
return (0, codegen_1._)`${data} ${EQ} null`;
|
|
case "array":
|
|
cond = (0, codegen_1._)`Array.isArray(${data})`;
|
|
break;
|
|
case "object":
|
|
cond = (0, codegen_1._)`${data} && typeof ${data} == "object" && !Array.isArray(${data})`;
|
|
break;
|
|
case "integer":
|
|
cond = numCond((0, codegen_1._)`!(${data} % 1) && !isNaN(${data})`);
|
|
break;
|
|
case "number":
|
|
cond = numCond();
|
|
break;
|
|
default:
|
|
return (0, codegen_1._)`typeof ${data} ${EQ} ${dataType}`;
|
|
}
|
|
return correct === DataType.Correct ? cond : (0, codegen_1.not)(cond);
|
|
function numCond(_cond = codegen_1.nil) {
|
|
return (0, codegen_1.and)((0, codegen_1._)`typeof ${data} == "number"`, _cond, strictNums ? (0, codegen_1._)`isFinite(${data})` : codegen_1.nil);
|
|
}
|
|
}
|
|
exports.checkDataType = checkDataType;
|
|
function checkDataTypes(dataTypes, data, strictNums, correct) {
|
|
if (dataTypes.length === 1) {
|
|
return checkDataType(dataTypes[0], data, strictNums, correct);
|
|
}
|
|
let cond;
|
|
const types = (0, util_1.toHash)(dataTypes);
|
|
if (types.array && types.object) {
|
|
const notObj = (0, codegen_1._)`typeof ${data} != "object"`;
|
|
cond = types.null ? notObj : (0, codegen_1._)`!${data} || ${notObj}`;
|
|
delete types.null;
|
|
delete types.array;
|
|
delete types.object;
|
|
} else {
|
|
cond = codegen_1.nil;
|
|
}
|
|
if (types.number)
|
|
delete types.integer;
|
|
for (const t in types)
|
|
cond = (0, codegen_1.and)(cond, checkDataType(t, data, strictNums, correct));
|
|
return cond;
|
|
}
|
|
exports.checkDataTypes = checkDataTypes;
|
|
var typeError = {
|
|
message: ({ schema }) => `must be ${schema}`,
|
|
params: ({ schema, schemaValue }) => typeof schema == "string" ? (0, codegen_1._)`{type: ${schema}}` : (0, codegen_1._)`{type: ${schemaValue}}`
|
|
};
|
|
function reportTypeError(it) {
|
|
const cxt = getTypeErrorContext(it);
|
|
(0, errors_1.reportError)(cxt, typeError);
|
|
}
|
|
exports.reportTypeError = reportTypeError;
|
|
function getTypeErrorContext(it) {
|
|
const { gen, data, schema } = it;
|
|
const schemaCode = (0, util_1.schemaRefOrVal)(it, schema, "type");
|
|
return {
|
|
gen,
|
|
keyword: "type",
|
|
data,
|
|
schema: schema.type,
|
|
schemaCode,
|
|
schemaValue: schemaCode,
|
|
parentSchema: schema,
|
|
params: {},
|
|
it
|
|
};
|
|
}
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/compile/validate/defaults.js
|
|
var require_defaults = __commonJS({
|
|
"node_modules/ajv/dist/compile/validate/defaults.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.assignDefaults = void 0;
|
|
var codegen_1 = require_codegen();
|
|
var util_1 = require_util();
|
|
function assignDefaults(it, ty) {
|
|
const { properties, items } = it.schema;
|
|
if (ty === "object" && properties) {
|
|
for (const key in properties) {
|
|
assignDefault(it, key, properties[key].default);
|
|
}
|
|
} else if (ty === "array" && Array.isArray(items)) {
|
|
items.forEach((sch, i) => assignDefault(it, i, sch.default));
|
|
}
|
|
}
|
|
exports.assignDefaults = assignDefaults;
|
|
function assignDefault(it, prop, defaultValue) {
|
|
const { gen, compositeRule, data, opts } = it;
|
|
if (defaultValue === void 0)
|
|
return;
|
|
const childData = (0, codegen_1._)`${data}${(0, codegen_1.getProperty)(prop)}`;
|
|
if (compositeRule) {
|
|
(0, util_1.checkStrictMode)(it, `default is ignored for: ${childData}`);
|
|
return;
|
|
}
|
|
let condition = (0, codegen_1._)`${childData} === undefined`;
|
|
if (opts.useDefaults === "empty") {
|
|
condition = (0, codegen_1._)`${condition} || ${childData} === null || ${childData} === ""`;
|
|
}
|
|
gen.if(condition, (0, codegen_1._)`${childData} = ${(0, codegen_1.stringify)(defaultValue)}`);
|
|
}
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/vocabularies/code.js
|
|
var require_code2 = __commonJS({
|
|
"node_modules/ajv/dist/vocabularies/code.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.validateUnion = exports.validateArray = exports.usePattern = exports.callValidateCode = exports.schemaProperties = exports.allSchemaProperties = exports.noPropertyInData = exports.propertyInData = exports.isOwnProperty = exports.hasPropFunc = exports.reportMissingProp = exports.checkMissingProp = exports.checkReportMissingProp = void 0;
|
|
var codegen_1 = require_codegen();
|
|
var util_1 = require_util();
|
|
var names_1 = require_names();
|
|
var util_2 = require_util();
|
|
function checkReportMissingProp(cxt, prop) {
|
|
const { gen, data, it } = cxt;
|
|
gen.if(noPropertyInData(gen, data, prop, it.opts.ownProperties), () => {
|
|
cxt.setParams({ missingProperty: (0, codegen_1._)`${prop}` }, true);
|
|
cxt.error();
|
|
});
|
|
}
|
|
exports.checkReportMissingProp = checkReportMissingProp;
|
|
function checkMissingProp({ gen, data, it: { opts } }, properties, missing) {
|
|
return (0, codegen_1.or)(...properties.map((prop) => (0, codegen_1.and)(noPropertyInData(gen, data, prop, opts.ownProperties), (0, codegen_1._)`${missing} = ${prop}`)));
|
|
}
|
|
exports.checkMissingProp = checkMissingProp;
|
|
function reportMissingProp(cxt, missing) {
|
|
cxt.setParams({ missingProperty: missing }, true);
|
|
cxt.error();
|
|
}
|
|
exports.reportMissingProp = reportMissingProp;
|
|
function hasPropFunc(gen) {
|
|
return gen.scopeValue("func", {
|
|
// eslint-disable-next-line @typescript-eslint/unbound-method
|
|
ref: Object.prototype.hasOwnProperty,
|
|
code: (0, codegen_1._)`Object.prototype.hasOwnProperty`
|
|
});
|
|
}
|
|
exports.hasPropFunc = hasPropFunc;
|
|
function isOwnProperty(gen, data, property) {
|
|
return (0, codegen_1._)`${hasPropFunc(gen)}.call(${data}, ${property})`;
|
|
}
|
|
exports.isOwnProperty = isOwnProperty;
|
|
function propertyInData(gen, data, property, ownProperties) {
|
|
const cond = (0, codegen_1._)`${data}${(0, codegen_1.getProperty)(property)} !== undefined`;
|
|
return ownProperties ? (0, codegen_1._)`${cond} && ${isOwnProperty(gen, data, property)}` : cond;
|
|
}
|
|
exports.propertyInData = propertyInData;
|
|
function noPropertyInData(gen, data, property, ownProperties) {
|
|
const cond = (0, codegen_1._)`${data}${(0, codegen_1.getProperty)(property)} === undefined`;
|
|
return ownProperties ? (0, codegen_1.or)(cond, (0, codegen_1.not)(isOwnProperty(gen, data, property))) : cond;
|
|
}
|
|
exports.noPropertyInData = noPropertyInData;
|
|
function allSchemaProperties(schemaMap) {
|
|
return schemaMap ? Object.keys(schemaMap).filter((p) => p !== "__proto__") : [];
|
|
}
|
|
exports.allSchemaProperties = allSchemaProperties;
|
|
function schemaProperties(it, schemaMap) {
|
|
return allSchemaProperties(schemaMap).filter((p) => !(0, util_1.alwaysValidSchema)(it, schemaMap[p]));
|
|
}
|
|
exports.schemaProperties = schemaProperties;
|
|
function callValidateCode({ schemaCode, data, it: { gen, topSchemaRef, schemaPath, errorPath }, it }, func, context, passSchema) {
|
|
const dataAndSchema = passSchema ? (0, codegen_1._)`${schemaCode}, ${data}, ${topSchemaRef}${schemaPath}` : data;
|
|
const valCxt = [
|
|
[names_1.default.instancePath, (0, codegen_1.strConcat)(names_1.default.instancePath, errorPath)],
|
|
[names_1.default.parentData, it.parentData],
|
|
[names_1.default.parentDataProperty, it.parentDataProperty],
|
|
[names_1.default.rootData, names_1.default.rootData]
|
|
];
|
|
if (it.opts.dynamicRef)
|
|
valCxt.push([names_1.default.dynamicAnchors, names_1.default.dynamicAnchors]);
|
|
const args = (0, codegen_1._)`${dataAndSchema}, ${gen.object(...valCxt)}`;
|
|
return context !== codegen_1.nil ? (0, codegen_1._)`${func}.call(${context}, ${args})` : (0, codegen_1._)`${func}(${args})`;
|
|
}
|
|
exports.callValidateCode = callValidateCode;
|
|
var newRegExp = (0, codegen_1._)`new RegExp`;
|
|
function usePattern({ gen, it: { opts } }, pattern) {
|
|
const u = opts.unicodeRegExp ? "u" : "";
|
|
const { regExp } = opts.code;
|
|
const rx = regExp(pattern, u);
|
|
return gen.scopeValue("pattern", {
|
|
key: rx.toString(),
|
|
ref: rx,
|
|
code: (0, codegen_1._)`${regExp.code === "new RegExp" ? newRegExp : (0, util_2.useFunc)(gen, regExp)}(${pattern}, ${u})`
|
|
});
|
|
}
|
|
exports.usePattern = usePattern;
|
|
function validateArray(cxt) {
|
|
const { gen, data, keyword, it } = cxt;
|
|
const valid = gen.name("valid");
|
|
if (it.allErrors) {
|
|
const validArr = gen.let("valid", true);
|
|
validateItems(() => gen.assign(validArr, false));
|
|
return validArr;
|
|
}
|
|
gen.var(valid, true);
|
|
validateItems(() => gen.break());
|
|
return valid;
|
|
function validateItems(notValid) {
|
|
const len = gen.const("len", (0, codegen_1._)`${data}.length`);
|
|
gen.forRange("i", 0, len, (i) => {
|
|
cxt.subschema({
|
|
keyword,
|
|
dataProp: i,
|
|
dataPropType: util_1.Type.Num
|
|
}, valid);
|
|
gen.if((0, codegen_1.not)(valid), notValid);
|
|
});
|
|
}
|
|
}
|
|
exports.validateArray = validateArray;
|
|
function validateUnion(cxt) {
|
|
const { gen, schema, keyword, it } = cxt;
|
|
if (!Array.isArray(schema))
|
|
throw new Error("ajv implementation error");
|
|
const alwaysValid = schema.some((sch) => (0, util_1.alwaysValidSchema)(it, sch));
|
|
if (alwaysValid && !it.opts.unevaluated)
|
|
return;
|
|
const valid = gen.let("valid", false);
|
|
const schValid = gen.name("_valid");
|
|
gen.block(() => schema.forEach((_sch, i) => {
|
|
const schCxt = cxt.subschema({
|
|
keyword,
|
|
schemaProp: i,
|
|
compositeRule: true
|
|
}, schValid);
|
|
gen.assign(valid, (0, codegen_1._)`${valid} || ${schValid}`);
|
|
const merged = cxt.mergeValidEvaluated(schCxt, schValid);
|
|
if (!merged)
|
|
gen.if((0, codegen_1.not)(valid));
|
|
}));
|
|
cxt.result(valid, () => cxt.reset(), () => cxt.error(true));
|
|
}
|
|
exports.validateUnion = validateUnion;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/compile/validate/keyword.js
|
|
var require_keyword = __commonJS({
|
|
"node_modules/ajv/dist/compile/validate/keyword.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.validateKeywordUsage = exports.validSchemaType = exports.funcKeywordCode = exports.macroKeywordCode = void 0;
|
|
var codegen_1 = require_codegen();
|
|
var names_1 = require_names();
|
|
var code_1 = require_code2();
|
|
var errors_1 = require_errors();
|
|
function macroKeywordCode(cxt, def) {
|
|
const { gen, keyword, schema, parentSchema, it } = cxt;
|
|
const macroSchema = def.macro.call(it.self, schema, parentSchema, it);
|
|
const schemaRef = useKeyword(gen, keyword, macroSchema);
|
|
if (it.opts.validateSchema !== false)
|
|
it.self.validateSchema(macroSchema, true);
|
|
const valid = gen.name("valid");
|
|
cxt.subschema({
|
|
schema: macroSchema,
|
|
schemaPath: codegen_1.nil,
|
|
errSchemaPath: `${it.errSchemaPath}/${keyword}`,
|
|
topSchemaRef: schemaRef,
|
|
compositeRule: true
|
|
}, valid);
|
|
cxt.pass(valid, () => cxt.error(true));
|
|
}
|
|
exports.macroKeywordCode = macroKeywordCode;
|
|
function funcKeywordCode(cxt, def) {
|
|
var _a2;
|
|
const { gen, keyword, schema, parentSchema, $data, it } = cxt;
|
|
checkAsyncKeyword(it, def);
|
|
const validate = !$data && def.compile ? def.compile.call(it.self, schema, parentSchema, it) : def.validate;
|
|
const validateRef = useKeyword(gen, keyword, validate);
|
|
const valid = gen.let("valid");
|
|
cxt.block$data(valid, validateKeyword);
|
|
cxt.ok((_a2 = def.valid) !== null && _a2 !== void 0 ? _a2 : valid);
|
|
function validateKeyword() {
|
|
if (def.errors === false) {
|
|
assignValid();
|
|
if (def.modifying)
|
|
modifyData(cxt);
|
|
reportErrs(() => cxt.error());
|
|
} else {
|
|
const ruleErrs = def.async ? validateAsync() : validateSync();
|
|
if (def.modifying)
|
|
modifyData(cxt);
|
|
reportErrs(() => addErrs(cxt, ruleErrs));
|
|
}
|
|
}
|
|
function validateAsync() {
|
|
const ruleErrs = gen.let("ruleErrs", null);
|
|
gen.try(() => assignValid((0, codegen_1._)`await `), (e) => gen.assign(valid, false).if((0, codegen_1._)`${e} instanceof ${it.ValidationError}`, () => gen.assign(ruleErrs, (0, codegen_1._)`${e}.errors`), () => gen.throw(e)));
|
|
return ruleErrs;
|
|
}
|
|
function validateSync() {
|
|
const validateErrs = (0, codegen_1._)`${validateRef}.errors`;
|
|
gen.assign(validateErrs, null);
|
|
assignValid(codegen_1.nil);
|
|
return validateErrs;
|
|
}
|
|
function assignValid(_await = def.async ? (0, codegen_1._)`await ` : codegen_1.nil) {
|
|
const passCxt = it.opts.passContext ? names_1.default.this : names_1.default.self;
|
|
const passSchema = !("compile" in def && !$data || def.schema === false);
|
|
gen.assign(valid, (0, codegen_1._)`${_await}${(0, code_1.callValidateCode)(cxt, validateRef, passCxt, passSchema)}`, def.modifying);
|
|
}
|
|
function reportErrs(errors) {
|
|
var _a3;
|
|
gen.if((0, codegen_1.not)((_a3 = def.valid) !== null && _a3 !== void 0 ? _a3 : valid), errors);
|
|
}
|
|
}
|
|
exports.funcKeywordCode = funcKeywordCode;
|
|
function modifyData(cxt) {
|
|
const { gen, data, it } = cxt;
|
|
gen.if(it.parentData, () => gen.assign(data, (0, codegen_1._)`${it.parentData}[${it.parentDataProperty}]`));
|
|
}
|
|
function addErrs(cxt, errs) {
|
|
const { gen } = cxt;
|
|
gen.if((0, codegen_1._)`Array.isArray(${errs})`, () => {
|
|
gen.assign(names_1.default.vErrors, (0, codegen_1._)`${names_1.default.vErrors} === null ? ${errs} : ${names_1.default.vErrors}.concat(${errs})`).assign(names_1.default.errors, (0, codegen_1._)`${names_1.default.vErrors}.length`);
|
|
(0, errors_1.extendErrors)(cxt);
|
|
}, () => cxt.error());
|
|
}
|
|
function checkAsyncKeyword({ schemaEnv }, def) {
|
|
if (def.async && !schemaEnv.$async)
|
|
throw new Error("async keyword in sync schema");
|
|
}
|
|
function useKeyword(gen, keyword, result) {
|
|
if (result === void 0)
|
|
throw new Error(`keyword "${keyword}" failed to compile`);
|
|
return gen.scopeValue("keyword", typeof result == "function" ? { ref: result } : { ref: result, code: (0, codegen_1.stringify)(result) });
|
|
}
|
|
function validSchemaType(schema, schemaType, allowUndefined = false) {
|
|
return !schemaType.length || schemaType.some((st) => st === "array" ? Array.isArray(schema) : st === "object" ? schema && typeof schema == "object" && !Array.isArray(schema) : typeof schema == st || allowUndefined && typeof schema == "undefined");
|
|
}
|
|
exports.validSchemaType = validSchemaType;
|
|
function validateKeywordUsage({ schema, opts, self, errSchemaPath }, def, keyword) {
|
|
if (Array.isArray(def.keyword) ? !def.keyword.includes(keyword) : def.keyword !== keyword) {
|
|
throw new Error("ajv implementation error");
|
|
}
|
|
const deps = def.dependencies;
|
|
if (deps === null || deps === void 0 ? void 0 : deps.some((kwd) => !Object.prototype.hasOwnProperty.call(schema, kwd))) {
|
|
throw new Error(`parent schema must have dependencies of ${keyword}: ${deps.join(",")}`);
|
|
}
|
|
if (def.validateSchema) {
|
|
const valid = def.validateSchema(schema[keyword]);
|
|
if (!valid) {
|
|
const msg = `keyword "${keyword}" value is invalid at path "${errSchemaPath}": ` + self.errorsText(def.validateSchema.errors);
|
|
if (opts.validateSchema === "log")
|
|
self.logger.error(msg);
|
|
else
|
|
throw new Error(msg);
|
|
}
|
|
}
|
|
}
|
|
exports.validateKeywordUsage = validateKeywordUsage;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/compile/validate/subschema.js
|
|
var require_subschema = __commonJS({
|
|
"node_modules/ajv/dist/compile/validate/subschema.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.extendSubschemaMode = exports.extendSubschemaData = exports.getSubschema = void 0;
|
|
var codegen_1 = require_codegen();
|
|
var util_1 = require_util();
|
|
function getSubschema(it, { keyword, schemaProp, schema, schemaPath, errSchemaPath, topSchemaRef }) {
|
|
if (keyword !== void 0 && schema !== void 0) {
|
|
throw new Error('both "keyword" and "schema" passed, only one allowed');
|
|
}
|
|
if (keyword !== void 0) {
|
|
const sch = it.schema[keyword];
|
|
return schemaProp === void 0 ? {
|
|
schema: sch,
|
|
schemaPath: (0, codegen_1._)`${it.schemaPath}${(0, codegen_1.getProperty)(keyword)}`,
|
|
errSchemaPath: `${it.errSchemaPath}/${keyword}`
|
|
} : {
|
|
schema: sch[schemaProp],
|
|
schemaPath: (0, codegen_1._)`${it.schemaPath}${(0, codegen_1.getProperty)(keyword)}${(0, codegen_1.getProperty)(schemaProp)}`,
|
|
errSchemaPath: `${it.errSchemaPath}/${keyword}/${(0, util_1.escapeFragment)(schemaProp)}`
|
|
};
|
|
}
|
|
if (schema !== void 0) {
|
|
if (schemaPath === void 0 || errSchemaPath === void 0 || topSchemaRef === void 0) {
|
|
throw new Error('"schemaPath", "errSchemaPath" and "topSchemaRef" are required with "schema"');
|
|
}
|
|
return {
|
|
schema,
|
|
schemaPath,
|
|
topSchemaRef,
|
|
errSchemaPath
|
|
};
|
|
}
|
|
throw new Error('either "keyword" or "schema" must be passed');
|
|
}
|
|
exports.getSubschema = getSubschema;
|
|
function extendSubschemaData(subschema, it, { dataProp, dataPropType: dpType, data, dataTypes, propertyName }) {
|
|
if (data !== void 0 && dataProp !== void 0) {
|
|
throw new Error('both "data" and "dataProp" passed, only one allowed');
|
|
}
|
|
const { gen } = it;
|
|
if (dataProp !== void 0) {
|
|
const { errorPath, dataPathArr, opts } = it;
|
|
const nextData = gen.let("data", (0, codegen_1._)`${it.data}${(0, codegen_1.getProperty)(dataProp)}`, true);
|
|
dataContextProps(nextData);
|
|
subschema.errorPath = (0, codegen_1.str)`${errorPath}${(0, util_1.getErrorPath)(dataProp, dpType, opts.jsPropertySyntax)}`;
|
|
subschema.parentDataProperty = (0, codegen_1._)`${dataProp}`;
|
|
subschema.dataPathArr = [...dataPathArr, subschema.parentDataProperty];
|
|
}
|
|
if (data !== void 0) {
|
|
const nextData = data instanceof codegen_1.Name ? data : gen.let("data", data, true);
|
|
dataContextProps(nextData);
|
|
if (propertyName !== void 0)
|
|
subschema.propertyName = propertyName;
|
|
}
|
|
if (dataTypes)
|
|
subschema.dataTypes = dataTypes;
|
|
function dataContextProps(_nextData) {
|
|
subschema.data = _nextData;
|
|
subschema.dataLevel = it.dataLevel + 1;
|
|
subschema.dataTypes = [];
|
|
it.definedProperties = /* @__PURE__ */ new Set();
|
|
subschema.parentData = it.data;
|
|
subschema.dataNames = [...it.dataNames, _nextData];
|
|
}
|
|
}
|
|
exports.extendSubschemaData = extendSubschemaData;
|
|
function extendSubschemaMode(subschema, { jtdDiscriminator, jtdMetadata, compositeRule, createErrors, allErrors }) {
|
|
if (compositeRule !== void 0)
|
|
subschema.compositeRule = compositeRule;
|
|
if (createErrors !== void 0)
|
|
subschema.createErrors = createErrors;
|
|
if (allErrors !== void 0)
|
|
subschema.allErrors = allErrors;
|
|
subschema.jtdDiscriminator = jtdDiscriminator;
|
|
subschema.jtdMetadata = jtdMetadata;
|
|
}
|
|
exports.extendSubschemaMode = extendSubschemaMode;
|
|
}
|
|
});
|
|
|
|
// node_modules/fast-deep-equal/index.js
|
|
var require_fast_deep_equal = __commonJS({
|
|
"node_modules/fast-deep-equal/index.js"(exports, module) {
|
|
"use strict";
|
|
module.exports = function equal(a, b) {
|
|
if (a === b) return true;
|
|
if (a && b && typeof a == "object" && typeof b == "object") {
|
|
if (a.constructor !== b.constructor) return false;
|
|
var length, i, keys;
|
|
if (Array.isArray(a)) {
|
|
length = a.length;
|
|
if (length != b.length) return false;
|
|
for (i = length; i-- !== 0; )
|
|
if (!equal(a[i], b[i])) return false;
|
|
return true;
|
|
}
|
|
if (a.constructor === RegExp) return a.source === b.source && a.flags === b.flags;
|
|
if (a.valueOf !== Object.prototype.valueOf) return a.valueOf() === b.valueOf();
|
|
if (a.toString !== Object.prototype.toString) return a.toString() === b.toString();
|
|
keys = Object.keys(a);
|
|
length = keys.length;
|
|
if (length !== Object.keys(b).length) return false;
|
|
for (i = length; i-- !== 0; )
|
|
if (!Object.prototype.hasOwnProperty.call(b, keys[i])) return false;
|
|
for (i = length; i-- !== 0; ) {
|
|
var key = keys[i];
|
|
if (!equal(a[key], b[key])) return false;
|
|
}
|
|
return true;
|
|
}
|
|
return a !== a && b !== b;
|
|
};
|
|
}
|
|
});
|
|
|
|
// node_modules/json-schema-traverse/index.js
|
|
var require_json_schema_traverse = __commonJS({
|
|
"node_modules/json-schema-traverse/index.js"(exports, module) {
|
|
"use strict";
|
|
var traverse = module.exports = function(schema, opts, cb) {
|
|
if (typeof opts == "function") {
|
|
cb = opts;
|
|
opts = {};
|
|
}
|
|
cb = opts.cb || cb;
|
|
var pre = typeof cb == "function" ? cb : cb.pre || function() {
|
|
};
|
|
var post = cb.post || function() {
|
|
};
|
|
_traverse(opts, pre, post, schema, "", schema);
|
|
};
|
|
traverse.keywords = {
|
|
additionalItems: true,
|
|
items: true,
|
|
contains: true,
|
|
additionalProperties: true,
|
|
propertyNames: true,
|
|
not: true,
|
|
if: true,
|
|
then: true,
|
|
else: true
|
|
};
|
|
traverse.arrayKeywords = {
|
|
items: true,
|
|
allOf: true,
|
|
anyOf: true,
|
|
oneOf: true
|
|
};
|
|
traverse.propsKeywords = {
|
|
$defs: true,
|
|
definitions: true,
|
|
properties: true,
|
|
patternProperties: true,
|
|
dependencies: true
|
|
};
|
|
traverse.skipKeywords = {
|
|
default: true,
|
|
enum: true,
|
|
const: true,
|
|
required: true,
|
|
maximum: true,
|
|
minimum: true,
|
|
exclusiveMaximum: true,
|
|
exclusiveMinimum: true,
|
|
multipleOf: true,
|
|
maxLength: true,
|
|
minLength: true,
|
|
pattern: true,
|
|
format: true,
|
|
maxItems: true,
|
|
minItems: true,
|
|
uniqueItems: true,
|
|
maxProperties: true,
|
|
minProperties: true
|
|
};
|
|
function _traverse(opts, pre, post, schema, jsonPtr, rootSchema, parentJsonPtr, parentKeyword, parentSchema, keyIndex) {
|
|
if (schema && typeof schema == "object" && !Array.isArray(schema)) {
|
|
pre(schema, jsonPtr, rootSchema, parentJsonPtr, parentKeyword, parentSchema, keyIndex);
|
|
for (var key in schema) {
|
|
var sch = schema[key];
|
|
if (Array.isArray(sch)) {
|
|
if (key in traverse.arrayKeywords) {
|
|
for (var i = 0; i < sch.length; i++)
|
|
_traverse(opts, pre, post, sch[i], jsonPtr + "/" + key + "/" + i, rootSchema, jsonPtr, key, schema, i);
|
|
}
|
|
} else if (key in traverse.propsKeywords) {
|
|
if (sch && typeof sch == "object") {
|
|
for (var prop in sch)
|
|
_traverse(opts, pre, post, sch[prop], jsonPtr + "/" + key + "/" + escapeJsonPtr(prop), rootSchema, jsonPtr, key, schema, prop);
|
|
}
|
|
} else if (key in traverse.keywords || opts.allKeys && !(key in traverse.skipKeywords)) {
|
|
_traverse(opts, pre, post, sch, jsonPtr + "/" + key, rootSchema, jsonPtr, key, schema);
|
|
}
|
|
}
|
|
post(schema, jsonPtr, rootSchema, parentJsonPtr, parentKeyword, parentSchema, keyIndex);
|
|
}
|
|
}
|
|
function escapeJsonPtr(str) {
|
|
return str.replace(/~/g, "~0").replace(/\//g, "~1");
|
|
}
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/compile/resolve.js
|
|
var require_resolve = __commonJS({
|
|
"node_modules/ajv/dist/compile/resolve.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.getSchemaRefs = exports.resolveUrl = exports.normalizeId = exports._getFullPath = exports.getFullPath = exports.inlineRef = void 0;
|
|
var util_1 = require_util();
|
|
var equal = require_fast_deep_equal();
|
|
var traverse = require_json_schema_traverse();
|
|
var SIMPLE_INLINED = /* @__PURE__ */ new Set([
|
|
"type",
|
|
"format",
|
|
"pattern",
|
|
"maxLength",
|
|
"minLength",
|
|
"maxProperties",
|
|
"minProperties",
|
|
"maxItems",
|
|
"minItems",
|
|
"maximum",
|
|
"minimum",
|
|
"uniqueItems",
|
|
"multipleOf",
|
|
"required",
|
|
"enum",
|
|
"const"
|
|
]);
|
|
function inlineRef(schema, limit = true) {
|
|
if (typeof schema == "boolean")
|
|
return true;
|
|
if (limit === true)
|
|
return !hasRef(schema);
|
|
if (!limit)
|
|
return false;
|
|
return countKeys(schema) <= limit;
|
|
}
|
|
exports.inlineRef = inlineRef;
|
|
var REF_KEYWORDS = /* @__PURE__ */ new Set([
|
|
"$ref",
|
|
"$recursiveRef",
|
|
"$recursiveAnchor",
|
|
"$dynamicRef",
|
|
"$dynamicAnchor"
|
|
]);
|
|
function hasRef(schema) {
|
|
for (const key in schema) {
|
|
if (REF_KEYWORDS.has(key))
|
|
return true;
|
|
const sch = schema[key];
|
|
if (Array.isArray(sch) && sch.some(hasRef))
|
|
return true;
|
|
if (typeof sch == "object" && hasRef(sch))
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
function countKeys(schema) {
|
|
let count = 0;
|
|
for (const key in schema) {
|
|
if (key === "$ref")
|
|
return Infinity;
|
|
count++;
|
|
if (SIMPLE_INLINED.has(key))
|
|
continue;
|
|
if (typeof schema[key] == "object") {
|
|
(0, util_1.eachItem)(schema[key], (sch) => count += countKeys(sch));
|
|
}
|
|
if (count === Infinity)
|
|
return Infinity;
|
|
}
|
|
return count;
|
|
}
|
|
function getFullPath(resolver, id = "", normalize) {
|
|
if (normalize !== false)
|
|
id = normalizeId(id);
|
|
const p = resolver.parse(id);
|
|
return _getFullPath(resolver, p);
|
|
}
|
|
exports.getFullPath = getFullPath;
|
|
function _getFullPath(resolver, p) {
|
|
const serialized = resolver.serialize(p);
|
|
return serialized.split("#")[0] + "#";
|
|
}
|
|
exports._getFullPath = _getFullPath;
|
|
var TRAILING_SLASH_HASH = /#\/?$/;
|
|
function normalizeId(id) {
|
|
return id ? id.replace(TRAILING_SLASH_HASH, "") : "";
|
|
}
|
|
exports.normalizeId = normalizeId;
|
|
function resolveUrl(resolver, baseId, id) {
|
|
id = normalizeId(id);
|
|
return resolver.resolve(baseId, id);
|
|
}
|
|
exports.resolveUrl = resolveUrl;
|
|
var ANCHOR = /^[a-z_][-a-z0-9._]*$/i;
|
|
function getSchemaRefs(schema, baseId) {
|
|
if (typeof schema == "boolean")
|
|
return {};
|
|
const { schemaId, uriResolver } = this.opts;
|
|
const schId = normalizeId(schema[schemaId] || baseId);
|
|
const baseIds = { "": schId };
|
|
const pathPrefix = getFullPath(uriResolver, schId, false);
|
|
const localRefs = {};
|
|
const schemaRefs = /* @__PURE__ */ new Set();
|
|
traverse(schema, { allKeys: true }, (sch, jsonPtr, _, parentJsonPtr) => {
|
|
if (parentJsonPtr === void 0)
|
|
return;
|
|
const fullPath = pathPrefix + jsonPtr;
|
|
let innerBaseId = baseIds[parentJsonPtr];
|
|
if (typeof sch[schemaId] == "string")
|
|
innerBaseId = addRef.call(this, sch[schemaId]);
|
|
addAnchor.call(this, sch.$anchor);
|
|
addAnchor.call(this, sch.$dynamicAnchor);
|
|
baseIds[jsonPtr] = innerBaseId;
|
|
function addRef(ref) {
|
|
const _resolve = this.opts.uriResolver.resolve;
|
|
ref = normalizeId(innerBaseId ? _resolve(innerBaseId, ref) : ref);
|
|
if (schemaRefs.has(ref))
|
|
throw ambiguos(ref);
|
|
schemaRefs.add(ref);
|
|
let schOrRef = this.refs[ref];
|
|
if (typeof schOrRef == "string")
|
|
schOrRef = this.refs[schOrRef];
|
|
if (typeof schOrRef == "object") {
|
|
checkAmbiguosRef(sch, schOrRef.schema, ref);
|
|
} else if (ref !== normalizeId(fullPath)) {
|
|
if (ref[0] === "#") {
|
|
checkAmbiguosRef(sch, localRefs[ref], ref);
|
|
localRefs[ref] = sch;
|
|
} else {
|
|
this.refs[ref] = fullPath;
|
|
}
|
|
}
|
|
return ref;
|
|
}
|
|
function addAnchor(anchor) {
|
|
if (typeof anchor == "string") {
|
|
if (!ANCHOR.test(anchor))
|
|
throw new Error(`invalid anchor "${anchor}"`);
|
|
addRef.call(this, `#${anchor}`);
|
|
}
|
|
}
|
|
});
|
|
return localRefs;
|
|
function checkAmbiguosRef(sch1, sch2, ref) {
|
|
if (sch2 !== void 0 && !equal(sch1, sch2))
|
|
throw ambiguos(ref);
|
|
}
|
|
function ambiguos(ref) {
|
|
return new Error(`reference "${ref}" resolves to more than one schema`);
|
|
}
|
|
}
|
|
exports.getSchemaRefs = getSchemaRefs;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/compile/validate/index.js
|
|
var require_validate = __commonJS({
|
|
"node_modules/ajv/dist/compile/validate/index.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.getData = exports.KeywordCxt = exports.validateFunctionCode = void 0;
|
|
var boolSchema_1 = require_boolSchema();
|
|
var dataType_1 = require_dataType();
|
|
var applicability_1 = require_applicability();
|
|
var dataType_2 = require_dataType();
|
|
var defaults_1 = require_defaults();
|
|
var keyword_1 = require_keyword();
|
|
var subschema_1 = require_subschema();
|
|
var codegen_1 = require_codegen();
|
|
var names_1 = require_names();
|
|
var resolve_1 = require_resolve();
|
|
var util_1 = require_util();
|
|
var errors_1 = require_errors();
|
|
function validateFunctionCode(it) {
|
|
if (isSchemaObj(it)) {
|
|
checkKeywords(it);
|
|
if (schemaCxtHasRules(it)) {
|
|
topSchemaObjCode(it);
|
|
return;
|
|
}
|
|
}
|
|
validateFunction(it, () => (0, boolSchema_1.topBoolOrEmptySchema)(it));
|
|
}
|
|
exports.validateFunctionCode = validateFunctionCode;
|
|
function validateFunction({ gen, validateName, schema, schemaEnv, opts }, body) {
|
|
if (opts.code.es5) {
|
|
gen.func(validateName, (0, codegen_1._)`${names_1.default.data}, ${names_1.default.valCxt}`, schemaEnv.$async, () => {
|
|
gen.code((0, codegen_1._)`"use strict"; ${funcSourceUrl(schema, opts)}`);
|
|
destructureValCxtES5(gen, opts);
|
|
gen.code(body);
|
|
});
|
|
} else {
|
|
gen.func(validateName, (0, codegen_1._)`${names_1.default.data}, ${destructureValCxt(opts)}`, schemaEnv.$async, () => gen.code(funcSourceUrl(schema, opts)).code(body));
|
|
}
|
|
}
|
|
function destructureValCxt(opts) {
|
|
return (0, codegen_1._)`{${names_1.default.instancePath}="", ${names_1.default.parentData}, ${names_1.default.parentDataProperty}, ${names_1.default.rootData}=${names_1.default.data}${opts.dynamicRef ? (0, codegen_1._)`, ${names_1.default.dynamicAnchors}={}` : codegen_1.nil}}={}`;
|
|
}
|
|
function destructureValCxtES5(gen, opts) {
|
|
gen.if(names_1.default.valCxt, () => {
|
|
gen.var(names_1.default.instancePath, (0, codegen_1._)`${names_1.default.valCxt}.${names_1.default.instancePath}`);
|
|
gen.var(names_1.default.parentData, (0, codegen_1._)`${names_1.default.valCxt}.${names_1.default.parentData}`);
|
|
gen.var(names_1.default.parentDataProperty, (0, codegen_1._)`${names_1.default.valCxt}.${names_1.default.parentDataProperty}`);
|
|
gen.var(names_1.default.rootData, (0, codegen_1._)`${names_1.default.valCxt}.${names_1.default.rootData}`);
|
|
if (opts.dynamicRef)
|
|
gen.var(names_1.default.dynamicAnchors, (0, codegen_1._)`${names_1.default.valCxt}.${names_1.default.dynamicAnchors}`);
|
|
}, () => {
|
|
gen.var(names_1.default.instancePath, (0, codegen_1._)`""`);
|
|
gen.var(names_1.default.parentData, (0, codegen_1._)`undefined`);
|
|
gen.var(names_1.default.parentDataProperty, (0, codegen_1._)`undefined`);
|
|
gen.var(names_1.default.rootData, names_1.default.data);
|
|
if (opts.dynamicRef)
|
|
gen.var(names_1.default.dynamicAnchors, (0, codegen_1._)`{}`);
|
|
});
|
|
}
|
|
function topSchemaObjCode(it) {
|
|
const { schema, opts, gen } = it;
|
|
validateFunction(it, () => {
|
|
if (opts.$comment && schema.$comment)
|
|
commentKeyword(it);
|
|
checkNoDefault(it);
|
|
gen.let(names_1.default.vErrors, null);
|
|
gen.let(names_1.default.errors, 0);
|
|
if (opts.unevaluated)
|
|
resetEvaluated(it);
|
|
typeAndKeywords(it);
|
|
returnResults(it);
|
|
});
|
|
return;
|
|
}
|
|
function resetEvaluated(it) {
|
|
const { gen, validateName } = it;
|
|
it.evaluated = gen.const("evaluated", (0, codegen_1._)`${validateName}.evaluated`);
|
|
gen.if((0, codegen_1._)`${it.evaluated}.dynamicProps`, () => gen.assign((0, codegen_1._)`${it.evaluated}.props`, (0, codegen_1._)`undefined`));
|
|
gen.if((0, codegen_1._)`${it.evaluated}.dynamicItems`, () => gen.assign((0, codegen_1._)`${it.evaluated}.items`, (0, codegen_1._)`undefined`));
|
|
}
|
|
function funcSourceUrl(schema, opts) {
|
|
const schId = typeof schema == "object" && schema[opts.schemaId];
|
|
return schId && (opts.code.source || opts.code.process) ? (0, codegen_1._)`/*# sourceURL=${schId} */` : codegen_1.nil;
|
|
}
|
|
function subschemaCode(it, valid) {
|
|
if (isSchemaObj(it)) {
|
|
checkKeywords(it);
|
|
if (schemaCxtHasRules(it)) {
|
|
subSchemaObjCode(it, valid);
|
|
return;
|
|
}
|
|
}
|
|
(0, boolSchema_1.boolOrEmptySchema)(it, valid);
|
|
}
|
|
function schemaCxtHasRules({ schema, self }) {
|
|
if (typeof schema == "boolean")
|
|
return !schema;
|
|
for (const key in schema)
|
|
if (self.RULES.all[key])
|
|
return true;
|
|
return false;
|
|
}
|
|
function isSchemaObj(it) {
|
|
return typeof it.schema != "boolean";
|
|
}
|
|
function subSchemaObjCode(it, valid) {
|
|
const { schema, gen, opts } = it;
|
|
if (opts.$comment && schema.$comment)
|
|
commentKeyword(it);
|
|
updateContext(it);
|
|
checkAsyncSchema(it);
|
|
const errsCount = gen.const("_errs", names_1.default.errors);
|
|
typeAndKeywords(it, errsCount);
|
|
gen.var(valid, (0, codegen_1._)`${errsCount} === ${names_1.default.errors}`);
|
|
}
|
|
function checkKeywords(it) {
|
|
(0, util_1.checkUnknownRules)(it);
|
|
checkRefsAndKeywords(it);
|
|
}
|
|
function typeAndKeywords(it, errsCount) {
|
|
if (it.opts.jtd)
|
|
return schemaKeywords(it, [], false, errsCount);
|
|
const types = (0, dataType_1.getSchemaTypes)(it.schema);
|
|
const checkedTypes = (0, dataType_1.coerceAndCheckDataType)(it, types);
|
|
schemaKeywords(it, types, !checkedTypes, errsCount);
|
|
}
|
|
function checkRefsAndKeywords(it) {
|
|
const { schema, errSchemaPath, opts, self } = it;
|
|
if (schema.$ref && opts.ignoreKeywordsWithRef && (0, util_1.schemaHasRulesButRef)(schema, self.RULES)) {
|
|
self.logger.warn(`$ref: keywords ignored in schema at path "${errSchemaPath}"`);
|
|
}
|
|
}
|
|
function checkNoDefault(it) {
|
|
const { schema, opts } = it;
|
|
if (schema.default !== void 0 && opts.useDefaults && opts.strictSchema) {
|
|
(0, util_1.checkStrictMode)(it, "default is ignored in the schema root");
|
|
}
|
|
}
|
|
function updateContext(it) {
|
|
const schId = it.schema[it.opts.schemaId];
|
|
if (schId)
|
|
it.baseId = (0, resolve_1.resolveUrl)(it.opts.uriResolver, it.baseId, schId);
|
|
}
|
|
function checkAsyncSchema(it) {
|
|
if (it.schema.$async && !it.schemaEnv.$async)
|
|
throw new Error("async schema in sync schema");
|
|
}
|
|
function commentKeyword({ gen, schemaEnv, schema, errSchemaPath, opts }) {
|
|
const msg = schema.$comment;
|
|
if (opts.$comment === true) {
|
|
gen.code((0, codegen_1._)`${names_1.default.self}.logger.log(${msg})`);
|
|
} else if (typeof opts.$comment == "function") {
|
|
const schemaPath = (0, codegen_1.str)`${errSchemaPath}/$comment`;
|
|
const rootName = gen.scopeValue("root", { ref: schemaEnv.root });
|
|
gen.code((0, codegen_1._)`${names_1.default.self}.opts.$comment(${msg}, ${schemaPath}, ${rootName}.schema)`);
|
|
}
|
|
}
|
|
function returnResults(it) {
|
|
const { gen, schemaEnv, validateName, ValidationError, opts } = it;
|
|
if (schemaEnv.$async) {
|
|
gen.if((0, codegen_1._)`${names_1.default.errors} === 0`, () => gen.return(names_1.default.data), () => gen.throw((0, codegen_1._)`new ${ValidationError}(${names_1.default.vErrors})`));
|
|
} else {
|
|
gen.assign((0, codegen_1._)`${validateName}.errors`, names_1.default.vErrors);
|
|
if (opts.unevaluated)
|
|
assignEvaluated(it);
|
|
gen.return((0, codegen_1._)`${names_1.default.errors} === 0`);
|
|
}
|
|
}
|
|
function assignEvaluated({ gen, evaluated, props, items }) {
|
|
if (props instanceof codegen_1.Name)
|
|
gen.assign((0, codegen_1._)`${evaluated}.props`, props);
|
|
if (items instanceof codegen_1.Name)
|
|
gen.assign((0, codegen_1._)`${evaluated}.items`, items);
|
|
}
|
|
function schemaKeywords(it, types, typeErrors, errsCount) {
|
|
const { gen, schema, data, allErrors, opts, self } = it;
|
|
const { RULES } = self;
|
|
if (schema.$ref && (opts.ignoreKeywordsWithRef || !(0, util_1.schemaHasRulesButRef)(schema, RULES))) {
|
|
gen.block(() => keywordCode(it, "$ref", RULES.all.$ref.definition));
|
|
return;
|
|
}
|
|
if (!opts.jtd)
|
|
checkStrictTypes(it, types);
|
|
gen.block(() => {
|
|
for (const group of RULES.rules)
|
|
groupKeywords(group);
|
|
groupKeywords(RULES.post);
|
|
});
|
|
function groupKeywords(group) {
|
|
if (!(0, applicability_1.shouldUseGroup)(schema, group))
|
|
return;
|
|
if (group.type) {
|
|
gen.if((0, dataType_2.checkDataType)(group.type, data, opts.strictNumbers));
|
|
iterateKeywords(it, group);
|
|
if (types.length === 1 && types[0] === group.type && typeErrors) {
|
|
gen.else();
|
|
(0, dataType_2.reportTypeError)(it);
|
|
}
|
|
gen.endIf();
|
|
} else {
|
|
iterateKeywords(it, group);
|
|
}
|
|
if (!allErrors)
|
|
gen.if((0, codegen_1._)`${names_1.default.errors} === ${errsCount || 0}`);
|
|
}
|
|
}
|
|
function iterateKeywords(it, group) {
|
|
const { gen, schema, opts: { useDefaults } } = it;
|
|
if (useDefaults)
|
|
(0, defaults_1.assignDefaults)(it, group.type);
|
|
gen.block(() => {
|
|
for (const rule of group.rules) {
|
|
if ((0, applicability_1.shouldUseRule)(schema, rule)) {
|
|
keywordCode(it, rule.keyword, rule.definition, group.type);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
function checkStrictTypes(it, types) {
|
|
if (it.schemaEnv.meta || !it.opts.strictTypes)
|
|
return;
|
|
checkContextTypes(it, types);
|
|
if (!it.opts.allowUnionTypes)
|
|
checkMultipleTypes(it, types);
|
|
checkKeywordTypes(it, it.dataTypes);
|
|
}
|
|
function checkContextTypes(it, types) {
|
|
if (!types.length)
|
|
return;
|
|
if (!it.dataTypes.length) {
|
|
it.dataTypes = types;
|
|
return;
|
|
}
|
|
types.forEach((t) => {
|
|
if (!includesType(it.dataTypes, t)) {
|
|
strictTypesError(it, `type "${t}" not allowed by context "${it.dataTypes.join(",")}"`);
|
|
}
|
|
});
|
|
narrowSchemaTypes(it, types);
|
|
}
|
|
function checkMultipleTypes(it, ts) {
|
|
if (ts.length > 1 && !(ts.length === 2 && ts.includes("null"))) {
|
|
strictTypesError(it, "use allowUnionTypes to allow union type keyword");
|
|
}
|
|
}
|
|
function checkKeywordTypes(it, ts) {
|
|
const rules = it.self.RULES.all;
|
|
for (const keyword in rules) {
|
|
const rule = rules[keyword];
|
|
if (typeof rule == "object" && (0, applicability_1.shouldUseRule)(it.schema, rule)) {
|
|
const { type } = rule.definition;
|
|
if (type.length && !type.some((t) => hasApplicableType(ts, t))) {
|
|
strictTypesError(it, `missing type "${type.join(",")}" for keyword "${keyword}"`);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
function hasApplicableType(schTs, kwdT) {
|
|
return schTs.includes(kwdT) || kwdT === "number" && schTs.includes("integer");
|
|
}
|
|
function includesType(ts, t) {
|
|
return ts.includes(t) || t === "integer" && ts.includes("number");
|
|
}
|
|
function narrowSchemaTypes(it, withTypes) {
|
|
const ts = [];
|
|
for (const t of it.dataTypes) {
|
|
if (includesType(withTypes, t))
|
|
ts.push(t);
|
|
else if (withTypes.includes("integer") && t === "number")
|
|
ts.push("integer");
|
|
}
|
|
it.dataTypes = ts;
|
|
}
|
|
function strictTypesError(it, msg) {
|
|
const schemaPath = it.schemaEnv.baseId + it.errSchemaPath;
|
|
msg += ` at "${schemaPath}" (strictTypes)`;
|
|
(0, util_1.checkStrictMode)(it, msg, it.opts.strictTypes);
|
|
}
|
|
var KeywordCxt = class {
|
|
constructor(it, def, keyword) {
|
|
(0, keyword_1.validateKeywordUsage)(it, def, keyword);
|
|
this.gen = it.gen;
|
|
this.allErrors = it.allErrors;
|
|
this.keyword = keyword;
|
|
this.data = it.data;
|
|
this.schema = it.schema[keyword];
|
|
this.$data = def.$data && it.opts.$data && this.schema && this.schema.$data;
|
|
this.schemaValue = (0, util_1.schemaRefOrVal)(it, this.schema, keyword, this.$data);
|
|
this.schemaType = def.schemaType;
|
|
this.parentSchema = it.schema;
|
|
this.params = {};
|
|
this.it = it;
|
|
this.def = def;
|
|
if (this.$data) {
|
|
this.schemaCode = it.gen.const("vSchema", getData(this.$data, it));
|
|
} else {
|
|
this.schemaCode = this.schemaValue;
|
|
if (!(0, keyword_1.validSchemaType)(this.schema, def.schemaType, def.allowUndefined)) {
|
|
throw new Error(`${keyword} value must be ${JSON.stringify(def.schemaType)}`);
|
|
}
|
|
}
|
|
if ("code" in def ? def.trackErrors : def.errors !== false) {
|
|
this.errsCount = it.gen.const("_errs", names_1.default.errors);
|
|
}
|
|
}
|
|
result(condition, successAction, failAction) {
|
|
this.failResult((0, codegen_1.not)(condition), successAction, failAction);
|
|
}
|
|
failResult(condition, successAction, failAction) {
|
|
this.gen.if(condition);
|
|
if (failAction)
|
|
failAction();
|
|
else
|
|
this.error();
|
|
if (successAction) {
|
|
this.gen.else();
|
|
successAction();
|
|
if (this.allErrors)
|
|
this.gen.endIf();
|
|
} else {
|
|
if (this.allErrors)
|
|
this.gen.endIf();
|
|
else
|
|
this.gen.else();
|
|
}
|
|
}
|
|
pass(condition, failAction) {
|
|
this.failResult((0, codegen_1.not)(condition), void 0, failAction);
|
|
}
|
|
fail(condition) {
|
|
if (condition === void 0) {
|
|
this.error();
|
|
if (!this.allErrors)
|
|
this.gen.if(false);
|
|
return;
|
|
}
|
|
this.gen.if(condition);
|
|
this.error();
|
|
if (this.allErrors)
|
|
this.gen.endIf();
|
|
else
|
|
this.gen.else();
|
|
}
|
|
fail$data(condition) {
|
|
if (!this.$data)
|
|
return this.fail(condition);
|
|
const { schemaCode } = this;
|
|
this.fail((0, codegen_1._)`${schemaCode} !== undefined && (${(0, codegen_1.or)(this.invalid$data(), condition)})`);
|
|
}
|
|
error(append, errorParams, errorPaths) {
|
|
if (errorParams) {
|
|
this.setParams(errorParams);
|
|
this._error(append, errorPaths);
|
|
this.setParams({});
|
|
return;
|
|
}
|
|
this._error(append, errorPaths);
|
|
}
|
|
_error(append, errorPaths) {
|
|
;
|
|
(append ? errors_1.reportExtraError : errors_1.reportError)(this, this.def.error, errorPaths);
|
|
}
|
|
$dataError() {
|
|
(0, errors_1.reportError)(this, this.def.$dataError || errors_1.keyword$DataError);
|
|
}
|
|
reset() {
|
|
if (this.errsCount === void 0)
|
|
throw new Error('add "trackErrors" to keyword definition');
|
|
(0, errors_1.resetErrorsCount)(this.gen, this.errsCount);
|
|
}
|
|
ok(cond) {
|
|
if (!this.allErrors)
|
|
this.gen.if(cond);
|
|
}
|
|
setParams(obj, assign) {
|
|
if (assign)
|
|
Object.assign(this.params, obj);
|
|
else
|
|
this.params = obj;
|
|
}
|
|
block$data(valid, codeBlock, $dataValid = codegen_1.nil) {
|
|
this.gen.block(() => {
|
|
this.check$data(valid, $dataValid);
|
|
codeBlock();
|
|
});
|
|
}
|
|
check$data(valid = codegen_1.nil, $dataValid = codegen_1.nil) {
|
|
if (!this.$data)
|
|
return;
|
|
const { gen, schemaCode, schemaType, def } = this;
|
|
gen.if((0, codegen_1.or)((0, codegen_1._)`${schemaCode} === undefined`, $dataValid));
|
|
if (valid !== codegen_1.nil)
|
|
gen.assign(valid, true);
|
|
if (schemaType.length || def.validateSchema) {
|
|
gen.elseIf(this.invalid$data());
|
|
this.$dataError();
|
|
if (valid !== codegen_1.nil)
|
|
gen.assign(valid, false);
|
|
}
|
|
gen.else();
|
|
}
|
|
invalid$data() {
|
|
const { gen, schemaCode, schemaType, def, it } = this;
|
|
return (0, codegen_1.or)(wrong$DataType(), invalid$DataSchema());
|
|
function wrong$DataType() {
|
|
if (schemaType.length) {
|
|
if (!(schemaCode instanceof codegen_1.Name))
|
|
throw new Error("ajv implementation error");
|
|
const st = Array.isArray(schemaType) ? schemaType : [schemaType];
|
|
return (0, codegen_1._)`${(0, dataType_2.checkDataTypes)(st, schemaCode, it.opts.strictNumbers, dataType_2.DataType.Wrong)}`;
|
|
}
|
|
return codegen_1.nil;
|
|
}
|
|
function invalid$DataSchema() {
|
|
if (def.validateSchema) {
|
|
const validateSchemaRef = gen.scopeValue("validate$data", { ref: def.validateSchema });
|
|
return (0, codegen_1._)`!${validateSchemaRef}(${schemaCode})`;
|
|
}
|
|
return codegen_1.nil;
|
|
}
|
|
}
|
|
subschema(appl, valid) {
|
|
const subschema = (0, subschema_1.getSubschema)(this.it, appl);
|
|
(0, subschema_1.extendSubschemaData)(subschema, this.it, appl);
|
|
(0, subschema_1.extendSubschemaMode)(subschema, appl);
|
|
const nextContext = { ...this.it, ...subschema, items: void 0, props: void 0 };
|
|
subschemaCode(nextContext, valid);
|
|
return nextContext;
|
|
}
|
|
mergeEvaluated(schemaCxt, toName) {
|
|
const { it, gen } = this;
|
|
if (!it.opts.unevaluated)
|
|
return;
|
|
if (it.props !== true && schemaCxt.props !== void 0) {
|
|
it.props = util_1.mergeEvaluated.props(gen, schemaCxt.props, it.props, toName);
|
|
}
|
|
if (it.items !== true && schemaCxt.items !== void 0) {
|
|
it.items = util_1.mergeEvaluated.items(gen, schemaCxt.items, it.items, toName);
|
|
}
|
|
}
|
|
mergeValidEvaluated(schemaCxt, valid) {
|
|
const { it, gen } = this;
|
|
if (it.opts.unevaluated && (it.props !== true || it.items !== true)) {
|
|
gen.if(valid, () => this.mergeEvaluated(schemaCxt, codegen_1.Name));
|
|
return true;
|
|
}
|
|
}
|
|
};
|
|
exports.KeywordCxt = KeywordCxt;
|
|
function keywordCode(it, keyword, def, ruleType) {
|
|
const cxt = new KeywordCxt(it, def, keyword);
|
|
if ("code" in def) {
|
|
def.code(cxt, ruleType);
|
|
} else if (cxt.$data && def.validate) {
|
|
(0, keyword_1.funcKeywordCode)(cxt, def);
|
|
} else if ("macro" in def) {
|
|
(0, keyword_1.macroKeywordCode)(cxt, def);
|
|
} else if (def.compile || def.validate) {
|
|
(0, keyword_1.funcKeywordCode)(cxt, def);
|
|
}
|
|
}
|
|
var JSON_POINTER = /^\/(?:[^~]|~0|~1)*$/;
|
|
var RELATIVE_JSON_POINTER = /^([0-9]+)(#|\/(?:[^~]|~0|~1)*)?$/;
|
|
function getData($data, { dataLevel, dataNames, dataPathArr }) {
|
|
let jsonPointer;
|
|
let data;
|
|
if ($data === "")
|
|
return names_1.default.rootData;
|
|
if ($data[0] === "/") {
|
|
if (!JSON_POINTER.test($data))
|
|
throw new Error(`Invalid JSON-pointer: ${$data}`);
|
|
jsonPointer = $data;
|
|
data = names_1.default.rootData;
|
|
} else {
|
|
const matches = RELATIVE_JSON_POINTER.exec($data);
|
|
if (!matches)
|
|
throw new Error(`Invalid JSON-pointer: ${$data}`);
|
|
const up = +matches[1];
|
|
jsonPointer = matches[2];
|
|
if (jsonPointer === "#") {
|
|
if (up >= dataLevel)
|
|
throw new Error(errorMsg("property/index", up));
|
|
return dataPathArr[dataLevel - up];
|
|
}
|
|
if (up > dataLevel)
|
|
throw new Error(errorMsg("data", up));
|
|
data = dataNames[dataLevel - up];
|
|
if (!jsonPointer)
|
|
return data;
|
|
}
|
|
let expr = data;
|
|
const segments = jsonPointer.split("/");
|
|
for (const segment of segments) {
|
|
if (segment) {
|
|
data = (0, codegen_1._)`${data}${(0, codegen_1.getProperty)((0, util_1.unescapeJsonPointer)(segment))}`;
|
|
expr = (0, codegen_1._)`${expr} && ${data}`;
|
|
}
|
|
}
|
|
return expr;
|
|
function errorMsg(pointerType, up) {
|
|
return `Cannot access ${pointerType} ${up} levels up, current level is ${dataLevel}`;
|
|
}
|
|
}
|
|
exports.getData = getData;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/runtime/validation_error.js
|
|
var require_validation_error = __commonJS({
|
|
"node_modules/ajv/dist/runtime/validation_error.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var ValidationError = class extends Error {
|
|
constructor(errors) {
|
|
super("validation failed");
|
|
this.errors = errors;
|
|
this.ajv = this.validation = true;
|
|
}
|
|
};
|
|
exports.default = ValidationError;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/compile/ref_error.js
|
|
var require_ref_error = __commonJS({
|
|
"node_modules/ajv/dist/compile/ref_error.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var resolve_1 = require_resolve();
|
|
var MissingRefError = class extends Error {
|
|
constructor(resolver, baseId, ref, msg) {
|
|
super(msg || `can't resolve reference ${ref} from id ${baseId}`);
|
|
this.missingRef = (0, resolve_1.resolveUrl)(resolver, baseId, ref);
|
|
this.missingSchema = (0, resolve_1.normalizeId)((0, resolve_1.getFullPath)(resolver, this.missingRef));
|
|
}
|
|
};
|
|
exports.default = MissingRefError;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/compile/index.js
|
|
var require_compile = __commonJS({
|
|
"node_modules/ajv/dist/compile/index.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.resolveSchema = exports.getCompilingSchema = exports.resolveRef = exports.compileSchema = exports.SchemaEnv = void 0;
|
|
var codegen_1 = require_codegen();
|
|
var validation_error_1 = require_validation_error();
|
|
var names_1 = require_names();
|
|
var resolve_1 = require_resolve();
|
|
var util_1 = require_util();
|
|
var validate_1 = require_validate();
|
|
var SchemaEnv = class {
|
|
constructor(env2) {
|
|
var _a2;
|
|
this.refs = {};
|
|
this.dynamicAnchors = {};
|
|
let schema;
|
|
if (typeof env2.schema == "object")
|
|
schema = env2.schema;
|
|
this.schema = env2.schema;
|
|
this.schemaId = env2.schemaId;
|
|
this.root = env2.root || this;
|
|
this.baseId = (_a2 = env2.baseId) !== null && _a2 !== void 0 ? _a2 : (0, resolve_1.normalizeId)(schema === null || schema === void 0 ? void 0 : schema[env2.schemaId || "$id"]);
|
|
this.schemaPath = env2.schemaPath;
|
|
this.localRefs = env2.localRefs;
|
|
this.meta = env2.meta;
|
|
this.$async = schema === null || schema === void 0 ? void 0 : schema.$async;
|
|
this.refs = {};
|
|
}
|
|
};
|
|
exports.SchemaEnv = SchemaEnv;
|
|
function compileSchema(sch) {
|
|
const _sch = getCompilingSchema.call(this, sch);
|
|
if (_sch)
|
|
return _sch;
|
|
const rootId = (0, resolve_1.getFullPath)(this.opts.uriResolver, sch.root.baseId);
|
|
const { es5, lines } = this.opts.code;
|
|
const { ownProperties } = this.opts;
|
|
const gen = new codegen_1.CodeGen(this.scope, { es5, lines, ownProperties });
|
|
let _ValidationError;
|
|
if (sch.$async) {
|
|
_ValidationError = gen.scopeValue("Error", {
|
|
ref: validation_error_1.default,
|
|
code: (0, codegen_1._)`require("ajv/dist/runtime/validation_error").default`
|
|
});
|
|
}
|
|
const validateName = gen.scopeName("validate");
|
|
sch.validateName = validateName;
|
|
const schemaCxt = {
|
|
gen,
|
|
allErrors: this.opts.allErrors,
|
|
data: names_1.default.data,
|
|
parentData: names_1.default.parentData,
|
|
parentDataProperty: names_1.default.parentDataProperty,
|
|
dataNames: [names_1.default.data],
|
|
dataPathArr: [codegen_1.nil],
|
|
// TODO can its length be used as dataLevel if nil is removed?
|
|
dataLevel: 0,
|
|
dataTypes: [],
|
|
definedProperties: /* @__PURE__ */ new Set(),
|
|
topSchemaRef: gen.scopeValue("schema", this.opts.code.source === true ? { ref: sch.schema, code: (0, codegen_1.stringify)(sch.schema) } : { ref: sch.schema }),
|
|
validateName,
|
|
ValidationError: _ValidationError,
|
|
schema: sch.schema,
|
|
schemaEnv: sch,
|
|
rootId,
|
|
baseId: sch.baseId || rootId,
|
|
schemaPath: codegen_1.nil,
|
|
errSchemaPath: sch.schemaPath || (this.opts.jtd ? "" : "#"),
|
|
errorPath: (0, codegen_1._)`""`,
|
|
opts: this.opts,
|
|
self: this
|
|
};
|
|
let sourceCode;
|
|
try {
|
|
this._compilations.add(sch);
|
|
(0, validate_1.validateFunctionCode)(schemaCxt);
|
|
gen.optimize(this.opts.code.optimize);
|
|
const validateCode = gen.toString();
|
|
sourceCode = `${gen.scopeRefs(names_1.default.scope)}return ${validateCode}`;
|
|
if (this.opts.code.process)
|
|
sourceCode = this.opts.code.process(sourceCode, sch);
|
|
const makeValidate = new Function(`${names_1.default.self}`, `${names_1.default.scope}`, sourceCode);
|
|
const validate = makeValidate(this, this.scope.get());
|
|
this.scope.value(validateName, { ref: validate });
|
|
validate.errors = null;
|
|
validate.schema = sch.schema;
|
|
validate.schemaEnv = sch;
|
|
if (sch.$async)
|
|
validate.$async = true;
|
|
if (this.opts.code.source === true) {
|
|
validate.source = { validateName, validateCode, scopeValues: gen._values };
|
|
}
|
|
if (this.opts.unevaluated) {
|
|
const { props, items } = schemaCxt;
|
|
validate.evaluated = {
|
|
props: props instanceof codegen_1.Name ? void 0 : props,
|
|
items: items instanceof codegen_1.Name ? void 0 : items,
|
|
dynamicProps: props instanceof codegen_1.Name,
|
|
dynamicItems: items instanceof codegen_1.Name
|
|
};
|
|
if (validate.source)
|
|
validate.source.evaluated = (0, codegen_1.stringify)(validate.evaluated);
|
|
}
|
|
sch.validate = validate;
|
|
return sch;
|
|
} catch (e) {
|
|
delete sch.validate;
|
|
delete sch.validateName;
|
|
if (sourceCode)
|
|
this.logger.error("Error compiling schema, function code:", sourceCode);
|
|
throw e;
|
|
} finally {
|
|
this._compilations.delete(sch);
|
|
}
|
|
}
|
|
exports.compileSchema = compileSchema;
|
|
function resolveRef(root, baseId, ref) {
|
|
var _a2;
|
|
ref = (0, resolve_1.resolveUrl)(this.opts.uriResolver, baseId, ref);
|
|
const schOrFunc = root.refs[ref];
|
|
if (schOrFunc)
|
|
return schOrFunc;
|
|
let _sch = resolve.call(this, root, ref);
|
|
if (_sch === void 0) {
|
|
const schema = (_a2 = root.localRefs) === null || _a2 === void 0 ? void 0 : _a2[ref];
|
|
const { schemaId } = this.opts;
|
|
if (schema)
|
|
_sch = new SchemaEnv({ schema, schemaId, root, baseId });
|
|
}
|
|
if (_sch === void 0)
|
|
return;
|
|
return root.refs[ref] = inlineOrCompile.call(this, _sch);
|
|
}
|
|
exports.resolveRef = resolveRef;
|
|
function inlineOrCompile(sch) {
|
|
if ((0, resolve_1.inlineRef)(sch.schema, this.opts.inlineRefs))
|
|
return sch.schema;
|
|
return sch.validate ? sch : compileSchema.call(this, sch);
|
|
}
|
|
function getCompilingSchema(schEnv) {
|
|
for (const sch of this._compilations) {
|
|
if (sameSchemaEnv(sch, schEnv))
|
|
return sch;
|
|
}
|
|
}
|
|
exports.getCompilingSchema = getCompilingSchema;
|
|
function sameSchemaEnv(s1, s2) {
|
|
return s1.schema === s2.schema && s1.root === s2.root && s1.baseId === s2.baseId;
|
|
}
|
|
function resolve(root, ref) {
|
|
let sch;
|
|
while (typeof (sch = this.refs[ref]) == "string")
|
|
ref = sch;
|
|
return sch || this.schemas[ref] || resolveSchema.call(this, root, ref);
|
|
}
|
|
function resolveSchema(root, ref) {
|
|
const p = this.opts.uriResolver.parse(ref);
|
|
const refPath = (0, resolve_1._getFullPath)(this.opts.uriResolver, p);
|
|
let baseId = (0, resolve_1.getFullPath)(this.opts.uriResolver, root.baseId, void 0);
|
|
if (Object.keys(root.schema).length > 0 && refPath === baseId) {
|
|
return getJsonPointer.call(this, p, root);
|
|
}
|
|
const id = (0, resolve_1.normalizeId)(refPath);
|
|
const schOrRef = this.refs[id] || this.schemas[id];
|
|
if (typeof schOrRef == "string") {
|
|
const sch = resolveSchema.call(this, root, schOrRef);
|
|
if (typeof (sch === null || sch === void 0 ? void 0 : sch.schema) !== "object")
|
|
return;
|
|
return getJsonPointer.call(this, p, sch);
|
|
}
|
|
if (typeof (schOrRef === null || schOrRef === void 0 ? void 0 : schOrRef.schema) !== "object")
|
|
return;
|
|
if (!schOrRef.validate)
|
|
compileSchema.call(this, schOrRef);
|
|
if (id === (0, resolve_1.normalizeId)(ref)) {
|
|
const { schema } = schOrRef;
|
|
const { schemaId } = this.opts;
|
|
const schId = schema[schemaId];
|
|
if (schId)
|
|
baseId = (0, resolve_1.resolveUrl)(this.opts.uriResolver, baseId, schId);
|
|
return new SchemaEnv({ schema, schemaId, root, baseId });
|
|
}
|
|
return getJsonPointer.call(this, p, schOrRef);
|
|
}
|
|
exports.resolveSchema = resolveSchema;
|
|
var PREVENT_SCOPE_CHANGE = /* @__PURE__ */ new Set([
|
|
"properties",
|
|
"patternProperties",
|
|
"enum",
|
|
"dependencies",
|
|
"definitions"
|
|
]);
|
|
function getJsonPointer(parsedRef, { baseId, schema, root }) {
|
|
var _a2;
|
|
if (((_a2 = parsedRef.fragment) === null || _a2 === void 0 ? void 0 : _a2[0]) !== "/")
|
|
return;
|
|
for (const part of parsedRef.fragment.slice(1).split("/")) {
|
|
if (typeof schema === "boolean")
|
|
return;
|
|
const partSchema = schema[(0, util_1.unescapeFragment)(part)];
|
|
if (partSchema === void 0)
|
|
return;
|
|
schema = partSchema;
|
|
const schId = typeof schema === "object" && schema[this.opts.schemaId];
|
|
if (!PREVENT_SCOPE_CHANGE.has(part) && schId) {
|
|
baseId = (0, resolve_1.resolveUrl)(this.opts.uriResolver, baseId, schId);
|
|
}
|
|
}
|
|
let env2;
|
|
if (typeof schema != "boolean" && schema.$ref && !(0, util_1.schemaHasRulesButRef)(schema, this.RULES)) {
|
|
const $ref = (0, resolve_1.resolveUrl)(this.opts.uriResolver, baseId, schema.$ref);
|
|
env2 = resolveSchema.call(this, root, $ref);
|
|
}
|
|
const { schemaId } = this.opts;
|
|
env2 = env2 || new SchemaEnv({ schema, schemaId, root, baseId });
|
|
if (env2.schema !== env2.root.schema)
|
|
return env2;
|
|
return void 0;
|
|
}
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/refs/data.json
|
|
var require_data = __commonJS({
|
|
"node_modules/ajv/dist/refs/data.json"(exports, module) {
|
|
module.exports = {
|
|
$id: "https://raw.githubusercontent.com/ajv-validator/ajv/master/lib/refs/data.json#",
|
|
description: "Meta-schema for $data reference (JSON AnySchema extension proposal)",
|
|
type: "object",
|
|
required: ["$data"],
|
|
properties: {
|
|
$data: {
|
|
type: "string",
|
|
anyOf: [{ format: "relative-json-pointer" }, { format: "json-pointer" }]
|
|
}
|
|
},
|
|
additionalProperties: false
|
|
};
|
|
}
|
|
});
|
|
|
|
// node_modules/fast-uri/lib/utils.js
|
|
var require_utils = __commonJS({
|
|
"node_modules/fast-uri/lib/utils.js"(exports, module) {
|
|
"use strict";
|
|
var isUUID = RegExp.prototype.test.bind(/^[\da-f]{8}-[\da-f]{4}-[\da-f]{4}-[\da-f]{4}-[\da-f]{12}$/iu);
|
|
var isIPv4 = RegExp.prototype.test.bind(/^(?:(?:25[0-5]|2[0-4]\d|1\d{2}|[1-9]\d|\d)\.){3}(?:25[0-5]|2[0-4]\d|1\d{2}|[1-9]\d|\d)$/u);
|
|
function stringArrayToHexStripped(input) {
|
|
let acc = "";
|
|
let code = 0;
|
|
let i = 0;
|
|
for (i = 0; i < input.length; i++) {
|
|
code = input[i].charCodeAt(0);
|
|
if (code === 48) {
|
|
continue;
|
|
}
|
|
if (!(code >= 48 && code <= 57 || code >= 65 && code <= 70 || code >= 97 && code <= 102)) {
|
|
return "";
|
|
}
|
|
acc += input[i];
|
|
break;
|
|
}
|
|
for (i += 1; i < input.length; i++) {
|
|
code = input[i].charCodeAt(0);
|
|
if (!(code >= 48 && code <= 57 || code >= 65 && code <= 70 || code >= 97 && code <= 102)) {
|
|
return "";
|
|
}
|
|
acc += input[i];
|
|
}
|
|
return acc;
|
|
}
|
|
var nonSimpleDomain = RegExp.prototype.test.bind(/[^!"$&'()*+,\-.;=_`a-z{}~]/u);
|
|
function consumeIsZone(buffer) {
|
|
buffer.length = 0;
|
|
return true;
|
|
}
|
|
function consumeHextets(buffer, address, output) {
|
|
if (buffer.length) {
|
|
const hex3 = stringArrayToHexStripped(buffer);
|
|
if (hex3 !== "") {
|
|
address.push(hex3);
|
|
} else {
|
|
output.error = true;
|
|
return false;
|
|
}
|
|
buffer.length = 0;
|
|
}
|
|
return true;
|
|
}
|
|
function getIPV6(input) {
|
|
let tokenCount = 0;
|
|
const output = { error: false, address: "", zone: "" };
|
|
const address = [];
|
|
const buffer = [];
|
|
let endipv6Encountered = false;
|
|
let endIpv6 = false;
|
|
let consume = consumeHextets;
|
|
for (let i = 0; i < input.length; i++) {
|
|
const cursor = input[i];
|
|
if (cursor === "[" || cursor === "]") {
|
|
continue;
|
|
}
|
|
if (cursor === ":") {
|
|
if (endipv6Encountered === true) {
|
|
endIpv6 = true;
|
|
}
|
|
if (!consume(buffer, address, output)) {
|
|
break;
|
|
}
|
|
if (++tokenCount > 7) {
|
|
output.error = true;
|
|
break;
|
|
}
|
|
if (i > 0 && input[i - 1] === ":") {
|
|
endipv6Encountered = true;
|
|
}
|
|
address.push(":");
|
|
continue;
|
|
} else if (cursor === "%") {
|
|
if (!consume(buffer, address, output)) {
|
|
break;
|
|
}
|
|
consume = consumeIsZone;
|
|
} else {
|
|
buffer.push(cursor);
|
|
continue;
|
|
}
|
|
}
|
|
if (buffer.length) {
|
|
if (consume === consumeIsZone) {
|
|
output.zone = buffer.join("");
|
|
} else if (endIpv6) {
|
|
address.push(buffer.join(""));
|
|
} else {
|
|
address.push(stringArrayToHexStripped(buffer));
|
|
}
|
|
}
|
|
output.address = address.join("");
|
|
return output;
|
|
}
|
|
function normalizeIPv6(host) {
|
|
if (findToken(host, ":") < 2) {
|
|
return { host, isIPV6: false };
|
|
}
|
|
const ipv63 = getIPV6(host);
|
|
if (!ipv63.error) {
|
|
let newHost = ipv63.address;
|
|
let escapedHost = ipv63.address;
|
|
if (ipv63.zone) {
|
|
newHost += "%" + ipv63.zone;
|
|
escapedHost += "%25" + ipv63.zone;
|
|
}
|
|
return { host: newHost, isIPV6: true, escapedHost };
|
|
} else {
|
|
return { host, isIPV6: false };
|
|
}
|
|
}
|
|
function findToken(str, token) {
|
|
let ind = 0;
|
|
for (let i = 0; i < str.length; i++) {
|
|
if (str[i] === token) ind++;
|
|
}
|
|
return ind;
|
|
}
|
|
function removeDotSegments(path3) {
|
|
let input = path3;
|
|
const output = [];
|
|
let nextSlash = -1;
|
|
let len = 0;
|
|
while (len = input.length) {
|
|
if (len === 1) {
|
|
if (input === ".") {
|
|
break;
|
|
} else if (input === "/") {
|
|
output.push("/");
|
|
break;
|
|
} else {
|
|
output.push(input);
|
|
break;
|
|
}
|
|
} else if (len === 2) {
|
|
if (input[0] === ".") {
|
|
if (input[1] === ".") {
|
|
break;
|
|
} else if (input[1] === "/") {
|
|
input = input.slice(2);
|
|
continue;
|
|
}
|
|
} else if (input[0] === "/") {
|
|
if (input[1] === "." || input[1] === "/") {
|
|
output.push("/");
|
|
break;
|
|
}
|
|
}
|
|
} else if (len === 3) {
|
|
if (input === "/..") {
|
|
if (output.length !== 0) {
|
|
output.pop();
|
|
}
|
|
output.push("/");
|
|
break;
|
|
}
|
|
}
|
|
if (input[0] === ".") {
|
|
if (input[1] === ".") {
|
|
if (input[2] === "/") {
|
|
input = input.slice(3);
|
|
continue;
|
|
}
|
|
} else if (input[1] === "/") {
|
|
input = input.slice(2);
|
|
continue;
|
|
}
|
|
} else if (input[0] === "/") {
|
|
if (input[1] === ".") {
|
|
if (input[2] === "/") {
|
|
input = input.slice(2);
|
|
continue;
|
|
} else if (input[2] === ".") {
|
|
if (input[3] === "/") {
|
|
input = input.slice(3);
|
|
if (output.length !== 0) {
|
|
output.pop();
|
|
}
|
|
continue;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if ((nextSlash = input.indexOf("/", 1)) === -1) {
|
|
output.push(input);
|
|
break;
|
|
} else {
|
|
output.push(input.slice(0, nextSlash));
|
|
input = input.slice(nextSlash);
|
|
}
|
|
}
|
|
return output.join("");
|
|
}
|
|
function normalizeComponentEncoding(component, esc2) {
|
|
const func = esc2 !== true ? escape : unescape;
|
|
if (component.scheme !== void 0) {
|
|
component.scheme = func(component.scheme);
|
|
}
|
|
if (component.userinfo !== void 0) {
|
|
component.userinfo = func(component.userinfo);
|
|
}
|
|
if (component.host !== void 0) {
|
|
component.host = func(component.host);
|
|
}
|
|
if (component.path !== void 0) {
|
|
component.path = func(component.path);
|
|
}
|
|
if (component.query !== void 0) {
|
|
component.query = func(component.query);
|
|
}
|
|
if (component.fragment !== void 0) {
|
|
component.fragment = func(component.fragment);
|
|
}
|
|
return component;
|
|
}
|
|
function recomposeAuthority(component) {
|
|
const uriTokens = [];
|
|
if (component.userinfo !== void 0) {
|
|
uriTokens.push(component.userinfo);
|
|
uriTokens.push("@");
|
|
}
|
|
if (component.host !== void 0) {
|
|
let host = unescape(component.host);
|
|
if (!isIPv4(host)) {
|
|
const ipV6res = normalizeIPv6(host);
|
|
if (ipV6res.isIPV6 === true) {
|
|
host = `[${ipV6res.escapedHost}]`;
|
|
} else {
|
|
host = component.host;
|
|
}
|
|
}
|
|
uriTokens.push(host);
|
|
}
|
|
if (typeof component.port === "number" || typeof component.port === "string") {
|
|
uriTokens.push(":");
|
|
uriTokens.push(String(component.port));
|
|
}
|
|
return uriTokens.length ? uriTokens.join("") : void 0;
|
|
}
|
|
module.exports = {
|
|
nonSimpleDomain,
|
|
recomposeAuthority,
|
|
normalizeComponentEncoding,
|
|
removeDotSegments,
|
|
isIPv4,
|
|
isUUID,
|
|
normalizeIPv6,
|
|
stringArrayToHexStripped
|
|
};
|
|
}
|
|
});
|
|
|
|
// node_modules/fast-uri/lib/schemes.js
|
|
var require_schemes = __commonJS({
|
|
"node_modules/fast-uri/lib/schemes.js"(exports, module) {
|
|
"use strict";
|
|
var { isUUID } = require_utils();
|
|
var URN_REG = /([\da-z][\d\-a-z]{0,31}):((?:[\w!$'()*+,\-.:;=@]|%[\da-f]{2})+)/iu;
|
|
var supportedSchemeNames = (
|
|
/** @type {const} */
|
|
[
|
|
"http",
|
|
"https",
|
|
"ws",
|
|
"wss",
|
|
"urn",
|
|
"urn:uuid"
|
|
]
|
|
);
|
|
function isValidSchemeName(name) {
|
|
return supportedSchemeNames.indexOf(
|
|
/** @type {*} */
|
|
name
|
|
) !== -1;
|
|
}
|
|
function wsIsSecure(wsComponent) {
|
|
if (wsComponent.secure === true) {
|
|
return true;
|
|
} else if (wsComponent.secure === false) {
|
|
return false;
|
|
} else if (wsComponent.scheme) {
|
|
return wsComponent.scheme.length === 3 && (wsComponent.scheme[0] === "w" || wsComponent.scheme[0] === "W") && (wsComponent.scheme[1] === "s" || wsComponent.scheme[1] === "S") && (wsComponent.scheme[2] === "s" || wsComponent.scheme[2] === "S");
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
function httpParse(component) {
|
|
if (!component.host) {
|
|
component.error = component.error || "HTTP URIs must have a host.";
|
|
}
|
|
return component;
|
|
}
|
|
function httpSerialize(component) {
|
|
const secure = String(component.scheme).toLowerCase() === "https";
|
|
if (component.port === (secure ? 443 : 80) || component.port === "") {
|
|
component.port = void 0;
|
|
}
|
|
if (!component.path) {
|
|
component.path = "/";
|
|
}
|
|
return component;
|
|
}
|
|
function wsParse(wsComponent) {
|
|
wsComponent.secure = wsIsSecure(wsComponent);
|
|
wsComponent.resourceName = (wsComponent.path || "/") + (wsComponent.query ? "?" + wsComponent.query : "");
|
|
wsComponent.path = void 0;
|
|
wsComponent.query = void 0;
|
|
return wsComponent;
|
|
}
|
|
function wsSerialize(wsComponent) {
|
|
if (wsComponent.port === (wsIsSecure(wsComponent) ? 443 : 80) || wsComponent.port === "") {
|
|
wsComponent.port = void 0;
|
|
}
|
|
if (typeof wsComponent.secure === "boolean") {
|
|
wsComponent.scheme = wsComponent.secure ? "wss" : "ws";
|
|
wsComponent.secure = void 0;
|
|
}
|
|
if (wsComponent.resourceName) {
|
|
const [path3, query] = wsComponent.resourceName.split("?");
|
|
wsComponent.path = path3 && path3 !== "/" ? path3 : void 0;
|
|
wsComponent.query = query;
|
|
wsComponent.resourceName = void 0;
|
|
}
|
|
wsComponent.fragment = void 0;
|
|
return wsComponent;
|
|
}
|
|
function urnParse(urnComponent, options) {
|
|
if (!urnComponent.path) {
|
|
urnComponent.error = "URN can not be parsed";
|
|
return urnComponent;
|
|
}
|
|
const matches = urnComponent.path.match(URN_REG);
|
|
if (matches) {
|
|
const scheme = options.scheme || urnComponent.scheme || "urn";
|
|
urnComponent.nid = matches[1].toLowerCase();
|
|
urnComponent.nss = matches[2];
|
|
const urnScheme = `${scheme}:${options.nid || urnComponent.nid}`;
|
|
const schemeHandler = getSchemeHandler(urnScheme);
|
|
urnComponent.path = void 0;
|
|
if (schemeHandler) {
|
|
urnComponent = schemeHandler.parse(urnComponent, options);
|
|
}
|
|
} else {
|
|
urnComponent.error = urnComponent.error || "URN can not be parsed.";
|
|
}
|
|
return urnComponent;
|
|
}
|
|
function urnSerialize(urnComponent, options) {
|
|
if (urnComponent.nid === void 0) {
|
|
throw new Error("URN without nid cannot be serialized");
|
|
}
|
|
const scheme = options.scheme || urnComponent.scheme || "urn";
|
|
const nid = urnComponent.nid.toLowerCase();
|
|
const urnScheme = `${scheme}:${options.nid || nid}`;
|
|
const schemeHandler = getSchemeHandler(urnScheme);
|
|
if (schemeHandler) {
|
|
urnComponent = schemeHandler.serialize(urnComponent, options);
|
|
}
|
|
const uriComponent = urnComponent;
|
|
const nss = urnComponent.nss;
|
|
uriComponent.path = `${nid || options.nid}:${nss}`;
|
|
options.skipEscape = true;
|
|
return uriComponent;
|
|
}
|
|
function urnuuidParse(urnComponent, options) {
|
|
const uuidComponent = urnComponent;
|
|
uuidComponent.uuid = uuidComponent.nss;
|
|
uuidComponent.nss = void 0;
|
|
if (!options.tolerant && (!uuidComponent.uuid || !isUUID(uuidComponent.uuid))) {
|
|
uuidComponent.error = uuidComponent.error || "UUID is not valid.";
|
|
}
|
|
return uuidComponent;
|
|
}
|
|
function urnuuidSerialize(uuidComponent) {
|
|
const urnComponent = uuidComponent;
|
|
urnComponent.nss = (uuidComponent.uuid || "").toLowerCase();
|
|
return urnComponent;
|
|
}
|
|
var http = (
|
|
/** @type {SchemeHandler} */
|
|
{
|
|
scheme: "http",
|
|
domainHost: true,
|
|
parse: httpParse,
|
|
serialize: httpSerialize
|
|
}
|
|
);
|
|
var https = (
|
|
/** @type {SchemeHandler} */
|
|
{
|
|
scheme: "https",
|
|
domainHost: http.domainHost,
|
|
parse: httpParse,
|
|
serialize: httpSerialize
|
|
}
|
|
);
|
|
var ws = (
|
|
/** @type {SchemeHandler} */
|
|
{
|
|
scheme: "ws",
|
|
domainHost: true,
|
|
parse: wsParse,
|
|
serialize: wsSerialize
|
|
}
|
|
);
|
|
var wss2 = (
|
|
/** @type {SchemeHandler} */
|
|
{
|
|
scheme: "wss",
|
|
domainHost: ws.domainHost,
|
|
parse: ws.parse,
|
|
serialize: ws.serialize
|
|
}
|
|
);
|
|
var urn = (
|
|
/** @type {SchemeHandler} */
|
|
{
|
|
scheme: "urn",
|
|
parse: urnParse,
|
|
serialize: urnSerialize,
|
|
skipNormalize: true
|
|
}
|
|
);
|
|
var urnuuid = (
|
|
/** @type {SchemeHandler} */
|
|
{
|
|
scheme: "urn:uuid",
|
|
parse: urnuuidParse,
|
|
serialize: urnuuidSerialize,
|
|
skipNormalize: true
|
|
}
|
|
);
|
|
var SCHEMES = (
|
|
/** @type {Record<SchemeName, SchemeHandler>} */
|
|
{
|
|
http,
|
|
https,
|
|
ws,
|
|
wss: wss2,
|
|
urn,
|
|
"urn:uuid": urnuuid
|
|
}
|
|
);
|
|
Object.setPrototypeOf(SCHEMES, null);
|
|
function getSchemeHandler(scheme) {
|
|
return scheme && (SCHEMES[
|
|
/** @type {SchemeName} */
|
|
scheme
|
|
] || SCHEMES[
|
|
/** @type {SchemeName} */
|
|
scheme.toLowerCase()
|
|
]) || void 0;
|
|
}
|
|
module.exports = {
|
|
wsIsSecure,
|
|
SCHEMES,
|
|
isValidSchemeName,
|
|
getSchemeHandler
|
|
};
|
|
}
|
|
});
|
|
|
|
// node_modules/fast-uri/index.js
|
|
var require_fast_uri = __commonJS({
|
|
"node_modules/fast-uri/index.js"(exports, module) {
|
|
"use strict";
|
|
var { normalizeIPv6, removeDotSegments, recomposeAuthority, normalizeComponentEncoding, isIPv4, nonSimpleDomain } = require_utils();
|
|
var { SCHEMES, getSchemeHandler } = require_schemes();
|
|
function normalize(uri, options) {
|
|
if (typeof uri === "string") {
|
|
uri = /** @type {T} */
|
|
serialize(parse4(uri, options), options);
|
|
} else if (typeof uri === "object") {
|
|
uri = /** @type {T} */
|
|
parse4(serialize(uri, options), options);
|
|
}
|
|
return uri;
|
|
}
|
|
function resolve(baseURI, relativeURI, options) {
|
|
const schemelessOptions = options ? Object.assign({ scheme: "null" }, options) : { scheme: "null" };
|
|
const resolved = resolveComponent(parse4(baseURI, schemelessOptions), parse4(relativeURI, schemelessOptions), schemelessOptions, true);
|
|
schemelessOptions.skipEscape = true;
|
|
return serialize(resolved, schemelessOptions);
|
|
}
|
|
function resolveComponent(base, relative, options, skipNormalization) {
|
|
const target = {};
|
|
if (!skipNormalization) {
|
|
base = parse4(serialize(base, options), options);
|
|
relative = parse4(serialize(relative, options), options);
|
|
}
|
|
options = options || {};
|
|
if (!options.tolerant && relative.scheme) {
|
|
target.scheme = relative.scheme;
|
|
target.userinfo = relative.userinfo;
|
|
target.host = relative.host;
|
|
target.port = relative.port;
|
|
target.path = removeDotSegments(relative.path || "");
|
|
target.query = relative.query;
|
|
} else {
|
|
if (relative.userinfo !== void 0 || relative.host !== void 0 || relative.port !== void 0) {
|
|
target.userinfo = relative.userinfo;
|
|
target.host = relative.host;
|
|
target.port = relative.port;
|
|
target.path = removeDotSegments(relative.path || "");
|
|
target.query = relative.query;
|
|
} else {
|
|
if (!relative.path) {
|
|
target.path = base.path;
|
|
if (relative.query !== void 0) {
|
|
target.query = relative.query;
|
|
} else {
|
|
target.query = base.query;
|
|
}
|
|
} else {
|
|
if (relative.path[0] === "/") {
|
|
target.path = removeDotSegments(relative.path);
|
|
} else {
|
|
if ((base.userinfo !== void 0 || base.host !== void 0 || base.port !== void 0) && !base.path) {
|
|
target.path = "/" + relative.path;
|
|
} else if (!base.path) {
|
|
target.path = relative.path;
|
|
} else {
|
|
target.path = base.path.slice(0, base.path.lastIndexOf("/") + 1) + relative.path;
|
|
}
|
|
target.path = removeDotSegments(target.path);
|
|
}
|
|
target.query = relative.query;
|
|
}
|
|
target.userinfo = base.userinfo;
|
|
target.host = base.host;
|
|
target.port = base.port;
|
|
}
|
|
target.scheme = base.scheme;
|
|
}
|
|
target.fragment = relative.fragment;
|
|
return target;
|
|
}
|
|
function equal(uriA, uriB, options) {
|
|
if (typeof uriA === "string") {
|
|
uriA = unescape(uriA);
|
|
uriA = serialize(normalizeComponentEncoding(parse4(uriA, options), true), { ...options, skipEscape: true });
|
|
} else if (typeof uriA === "object") {
|
|
uriA = serialize(normalizeComponentEncoding(uriA, true), { ...options, skipEscape: true });
|
|
}
|
|
if (typeof uriB === "string") {
|
|
uriB = unescape(uriB);
|
|
uriB = serialize(normalizeComponentEncoding(parse4(uriB, options), true), { ...options, skipEscape: true });
|
|
} else if (typeof uriB === "object") {
|
|
uriB = serialize(normalizeComponentEncoding(uriB, true), { ...options, skipEscape: true });
|
|
}
|
|
return uriA.toLowerCase() === uriB.toLowerCase();
|
|
}
|
|
function serialize(cmpts, opts) {
|
|
const component = {
|
|
host: cmpts.host,
|
|
scheme: cmpts.scheme,
|
|
userinfo: cmpts.userinfo,
|
|
port: cmpts.port,
|
|
path: cmpts.path,
|
|
query: cmpts.query,
|
|
nid: cmpts.nid,
|
|
nss: cmpts.nss,
|
|
uuid: cmpts.uuid,
|
|
fragment: cmpts.fragment,
|
|
reference: cmpts.reference,
|
|
resourceName: cmpts.resourceName,
|
|
secure: cmpts.secure,
|
|
error: ""
|
|
};
|
|
const options = Object.assign({}, opts);
|
|
const uriTokens = [];
|
|
const schemeHandler = getSchemeHandler(options.scheme || component.scheme);
|
|
if (schemeHandler && schemeHandler.serialize) schemeHandler.serialize(component, options);
|
|
if (component.path !== void 0) {
|
|
if (!options.skipEscape) {
|
|
component.path = escape(component.path);
|
|
if (component.scheme !== void 0) {
|
|
component.path = component.path.split("%3A").join(":");
|
|
}
|
|
} else {
|
|
component.path = unescape(component.path);
|
|
}
|
|
}
|
|
if (options.reference !== "suffix" && component.scheme) {
|
|
uriTokens.push(component.scheme, ":");
|
|
}
|
|
const authority = recomposeAuthority(component);
|
|
if (authority !== void 0) {
|
|
if (options.reference !== "suffix") {
|
|
uriTokens.push("//");
|
|
}
|
|
uriTokens.push(authority);
|
|
if (component.path && component.path[0] !== "/") {
|
|
uriTokens.push("/");
|
|
}
|
|
}
|
|
if (component.path !== void 0) {
|
|
let s = component.path;
|
|
if (!options.absolutePath && (!schemeHandler || !schemeHandler.absolutePath)) {
|
|
s = removeDotSegments(s);
|
|
}
|
|
if (authority === void 0 && s[0] === "/" && s[1] === "/") {
|
|
s = "/%2F" + s.slice(2);
|
|
}
|
|
uriTokens.push(s);
|
|
}
|
|
if (component.query !== void 0) {
|
|
uriTokens.push("?", component.query);
|
|
}
|
|
if (component.fragment !== void 0) {
|
|
uriTokens.push("#", component.fragment);
|
|
}
|
|
return uriTokens.join("");
|
|
}
|
|
var URI_PARSE = /^(?:([^#/:?]+):)?(?:\/\/((?:([^#/?@]*)@)?(\[[^#/?\]]+\]|[^#/:?]*)(?::(\d*))?))?([^#?]*)(?:\?([^#]*))?(?:#((?:.|[\n\r])*))?/u;
|
|
function parse4(uri, opts) {
|
|
const options = Object.assign({}, opts);
|
|
const parsed = {
|
|
scheme: void 0,
|
|
userinfo: void 0,
|
|
host: "",
|
|
port: void 0,
|
|
path: "",
|
|
query: void 0,
|
|
fragment: void 0
|
|
};
|
|
let isIP = false;
|
|
if (options.reference === "suffix") {
|
|
if (options.scheme) {
|
|
uri = options.scheme + ":" + uri;
|
|
} else {
|
|
uri = "//" + uri;
|
|
}
|
|
}
|
|
const matches = uri.match(URI_PARSE);
|
|
if (matches) {
|
|
parsed.scheme = matches[1];
|
|
parsed.userinfo = matches[3];
|
|
parsed.host = matches[4];
|
|
parsed.port = parseInt(matches[5], 10);
|
|
parsed.path = matches[6] || "";
|
|
parsed.query = matches[7];
|
|
parsed.fragment = matches[8];
|
|
if (isNaN(parsed.port)) {
|
|
parsed.port = matches[5];
|
|
}
|
|
if (parsed.host) {
|
|
const ipv4result = isIPv4(parsed.host);
|
|
if (ipv4result === false) {
|
|
const ipv6result = normalizeIPv6(parsed.host);
|
|
parsed.host = ipv6result.host.toLowerCase();
|
|
isIP = ipv6result.isIPV6;
|
|
} else {
|
|
isIP = true;
|
|
}
|
|
}
|
|
if (parsed.scheme === void 0 && parsed.userinfo === void 0 && parsed.host === void 0 && parsed.port === void 0 && parsed.query === void 0 && !parsed.path) {
|
|
parsed.reference = "same-document";
|
|
} else if (parsed.scheme === void 0) {
|
|
parsed.reference = "relative";
|
|
} else if (parsed.fragment === void 0) {
|
|
parsed.reference = "absolute";
|
|
} else {
|
|
parsed.reference = "uri";
|
|
}
|
|
if (options.reference && options.reference !== "suffix" && options.reference !== parsed.reference) {
|
|
parsed.error = parsed.error || "URI is not a " + options.reference + " reference.";
|
|
}
|
|
const schemeHandler = getSchemeHandler(options.scheme || parsed.scheme);
|
|
if (!options.unicodeSupport && (!schemeHandler || !schemeHandler.unicodeSupport)) {
|
|
if (parsed.host && (options.domainHost || schemeHandler && schemeHandler.domainHost) && isIP === false && nonSimpleDomain(parsed.host)) {
|
|
try {
|
|
parsed.host = URL.domainToASCII(parsed.host.toLowerCase());
|
|
} catch (e) {
|
|
parsed.error = parsed.error || "Host's domain name can not be converted to ASCII: " + e;
|
|
}
|
|
}
|
|
}
|
|
if (!schemeHandler || schemeHandler && !schemeHandler.skipNormalize) {
|
|
if (uri.indexOf("%") !== -1) {
|
|
if (parsed.scheme !== void 0) {
|
|
parsed.scheme = unescape(parsed.scheme);
|
|
}
|
|
if (parsed.host !== void 0) {
|
|
parsed.host = unescape(parsed.host);
|
|
}
|
|
}
|
|
if (parsed.path) {
|
|
parsed.path = escape(unescape(parsed.path));
|
|
}
|
|
if (parsed.fragment) {
|
|
parsed.fragment = encodeURI(decodeURIComponent(parsed.fragment));
|
|
}
|
|
}
|
|
if (schemeHandler && schemeHandler.parse) {
|
|
schemeHandler.parse(parsed, options);
|
|
}
|
|
} else {
|
|
parsed.error = parsed.error || "URI can not be parsed.";
|
|
}
|
|
return parsed;
|
|
}
|
|
var fastUri = {
|
|
SCHEMES,
|
|
normalize,
|
|
resolve,
|
|
resolveComponent,
|
|
equal,
|
|
serialize,
|
|
parse: parse4
|
|
};
|
|
module.exports = fastUri;
|
|
module.exports.default = fastUri;
|
|
module.exports.fastUri = fastUri;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/runtime/uri.js
|
|
var require_uri = __commonJS({
|
|
"node_modules/ajv/dist/runtime/uri.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var uri = require_fast_uri();
|
|
uri.code = 'require("ajv/dist/runtime/uri").default';
|
|
exports.default = uri;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/core.js
|
|
var require_core = __commonJS({
|
|
"node_modules/ajv/dist/core.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.CodeGen = exports.Name = exports.nil = exports.stringify = exports.str = exports._ = exports.KeywordCxt = void 0;
|
|
var validate_1 = require_validate();
|
|
Object.defineProperty(exports, "KeywordCxt", { enumerable: true, get: function() {
|
|
return validate_1.KeywordCxt;
|
|
} });
|
|
var codegen_1 = require_codegen();
|
|
Object.defineProperty(exports, "_", { enumerable: true, get: function() {
|
|
return codegen_1._;
|
|
} });
|
|
Object.defineProperty(exports, "str", { enumerable: true, get: function() {
|
|
return codegen_1.str;
|
|
} });
|
|
Object.defineProperty(exports, "stringify", { enumerable: true, get: function() {
|
|
return codegen_1.stringify;
|
|
} });
|
|
Object.defineProperty(exports, "nil", { enumerable: true, get: function() {
|
|
return codegen_1.nil;
|
|
} });
|
|
Object.defineProperty(exports, "Name", { enumerable: true, get: function() {
|
|
return codegen_1.Name;
|
|
} });
|
|
Object.defineProperty(exports, "CodeGen", { enumerable: true, get: function() {
|
|
return codegen_1.CodeGen;
|
|
} });
|
|
var validation_error_1 = require_validation_error();
|
|
var ref_error_1 = require_ref_error();
|
|
var rules_1 = require_rules();
|
|
var compile_1 = require_compile();
|
|
var codegen_2 = require_codegen();
|
|
var resolve_1 = require_resolve();
|
|
var dataType_1 = require_dataType();
|
|
var util_1 = require_util();
|
|
var $dataRefSchema = require_data();
|
|
var uri_1 = require_uri();
|
|
var defaultRegExp = (str, flags) => new RegExp(str, flags);
|
|
defaultRegExp.code = "new RegExp";
|
|
var META_IGNORE_OPTIONS = ["removeAdditional", "useDefaults", "coerceTypes"];
|
|
var EXT_SCOPE_NAMES = /* @__PURE__ */ new Set([
|
|
"validate",
|
|
"serialize",
|
|
"parse",
|
|
"wrapper",
|
|
"root",
|
|
"schema",
|
|
"keyword",
|
|
"pattern",
|
|
"formats",
|
|
"validate$data",
|
|
"func",
|
|
"obj",
|
|
"Error"
|
|
]);
|
|
var removedOptions = {
|
|
errorDataPath: "",
|
|
format: "`validateFormats: false` can be used instead.",
|
|
nullable: '"nullable" keyword is supported by default.',
|
|
jsonPointers: "Deprecated jsPropertySyntax can be used instead.",
|
|
extendRefs: "Deprecated ignoreKeywordsWithRef can be used instead.",
|
|
missingRefs: "Pass empty schema with $id that should be ignored to ajv.addSchema.",
|
|
processCode: "Use option `code: {process: (code, schemaEnv: object) => string}`",
|
|
sourceCode: "Use option `code: {source: true}`",
|
|
strictDefaults: "It is default now, see option `strict`.",
|
|
strictKeywords: "It is default now, see option `strict`.",
|
|
uniqueItems: '"uniqueItems" keyword is always validated.',
|
|
unknownFormats: "Disable strict mode or pass `true` to `ajv.addFormat` (or `formats` option).",
|
|
cache: "Map is used as cache, schema object as key.",
|
|
serialize: "Map is used as cache, schema object as key.",
|
|
ajvErrors: "It is default now."
|
|
};
|
|
var deprecatedOptions = {
|
|
ignoreKeywordsWithRef: "",
|
|
jsPropertySyntax: "",
|
|
unicode: '"minLength"/"maxLength" account for unicode characters by default.'
|
|
};
|
|
var MAX_EXPRESSION = 200;
|
|
function requiredOptions(o) {
|
|
var _a2, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0;
|
|
const s = o.strict;
|
|
const _optz = (_a2 = o.code) === null || _a2 === void 0 ? void 0 : _a2.optimize;
|
|
const optimize = _optz === true || _optz === void 0 ? 1 : _optz || 0;
|
|
const regExp = (_c = (_b = o.code) === null || _b === void 0 ? void 0 : _b.regExp) !== null && _c !== void 0 ? _c : defaultRegExp;
|
|
const uriResolver = (_d = o.uriResolver) !== null && _d !== void 0 ? _d : uri_1.default;
|
|
return {
|
|
strictSchema: (_f = (_e = o.strictSchema) !== null && _e !== void 0 ? _e : s) !== null && _f !== void 0 ? _f : true,
|
|
strictNumbers: (_h = (_g = o.strictNumbers) !== null && _g !== void 0 ? _g : s) !== null && _h !== void 0 ? _h : true,
|
|
strictTypes: (_k = (_j = o.strictTypes) !== null && _j !== void 0 ? _j : s) !== null && _k !== void 0 ? _k : "log",
|
|
strictTuples: (_m = (_l = o.strictTuples) !== null && _l !== void 0 ? _l : s) !== null && _m !== void 0 ? _m : "log",
|
|
strictRequired: (_p = (_o = o.strictRequired) !== null && _o !== void 0 ? _o : s) !== null && _p !== void 0 ? _p : false,
|
|
code: o.code ? { ...o.code, optimize, regExp } : { optimize, regExp },
|
|
loopRequired: (_q = o.loopRequired) !== null && _q !== void 0 ? _q : MAX_EXPRESSION,
|
|
loopEnum: (_r = o.loopEnum) !== null && _r !== void 0 ? _r : MAX_EXPRESSION,
|
|
meta: (_s = o.meta) !== null && _s !== void 0 ? _s : true,
|
|
messages: (_t = o.messages) !== null && _t !== void 0 ? _t : true,
|
|
inlineRefs: (_u = o.inlineRefs) !== null && _u !== void 0 ? _u : true,
|
|
schemaId: (_v = o.schemaId) !== null && _v !== void 0 ? _v : "$id",
|
|
addUsedSchema: (_w = o.addUsedSchema) !== null && _w !== void 0 ? _w : true,
|
|
validateSchema: (_x = o.validateSchema) !== null && _x !== void 0 ? _x : true,
|
|
validateFormats: (_y = o.validateFormats) !== null && _y !== void 0 ? _y : true,
|
|
unicodeRegExp: (_z = o.unicodeRegExp) !== null && _z !== void 0 ? _z : true,
|
|
int32range: (_0 = o.int32range) !== null && _0 !== void 0 ? _0 : true,
|
|
uriResolver
|
|
};
|
|
}
|
|
var Ajv2 = class {
|
|
constructor(opts = {}) {
|
|
this.schemas = {};
|
|
this.refs = {};
|
|
this.formats = {};
|
|
this._compilations = /* @__PURE__ */ new Set();
|
|
this._loading = {};
|
|
this._cache = /* @__PURE__ */ new Map();
|
|
opts = this.opts = { ...opts, ...requiredOptions(opts) };
|
|
const { es5, lines } = this.opts.code;
|
|
this.scope = new codegen_2.ValueScope({ scope: {}, prefixes: EXT_SCOPE_NAMES, es5, lines });
|
|
this.logger = getLogger(opts.logger);
|
|
const formatOpt = opts.validateFormats;
|
|
opts.validateFormats = false;
|
|
this.RULES = (0, rules_1.getRules)();
|
|
checkOptions.call(this, removedOptions, opts, "NOT SUPPORTED");
|
|
checkOptions.call(this, deprecatedOptions, opts, "DEPRECATED", "warn");
|
|
this._metaOpts = getMetaSchemaOptions.call(this);
|
|
if (opts.formats)
|
|
addInitialFormats.call(this);
|
|
this._addVocabularies();
|
|
this._addDefaultMetaSchema();
|
|
if (opts.keywords)
|
|
addInitialKeywords.call(this, opts.keywords);
|
|
if (typeof opts.meta == "object")
|
|
this.addMetaSchema(opts.meta);
|
|
addInitialSchemas.call(this);
|
|
opts.validateFormats = formatOpt;
|
|
}
|
|
_addVocabularies() {
|
|
this.addKeyword("$async");
|
|
}
|
|
_addDefaultMetaSchema() {
|
|
const { $data, meta: meta3, schemaId } = this.opts;
|
|
let _dataRefSchema = $dataRefSchema;
|
|
if (schemaId === "id") {
|
|
_dataRefSchema = { ...$dataRefSchema };
|
|
_dataRefSchema.id = _dataRefSchema.$id;
|
|
delete _dataRefSchema.$id;
|
|
}
|
|
if (meta3 && $data)
|
|
this.addMetaSchema(_dataRefSchema, _dataRefSchema[schemaId], false);
|
|
}
|
|
defaultMeta() {
|
|
const { meta: meta3, schemaId } = this.opts;
|
|
return this.opts.defaultMeta = typeof meta3 == "object" ? meta3[schemaId] || meta3 : void 0;
|
|
}
|
|
validate(schemaKeyRef, data) {
|
|
let v;
|
|
if (typeof schemaKeyRef == "string") {
|
|
v = this.getSchema(schemaKeyRef);
|
|
if (!v)
|
|
throw new Error(`no schema with key or ref "${schemaKeyRef}"`);
|
|
} else {
|
|
v = this.compile(schemaKeyRef);
|
|
}
|
|
const valid = v(data);
|
|
if (!("$async" in v))
|
|
this.errors = v.errors;
|
|
return valid;
|
|
}
|
|
compile(schema, _meta) {
|
|
const sch = this._addSchema(schema, _meta);
|
|
return sch.validate || this._compileSchemaEnv(sch);
|
|
}
|
|
compileAsync(schema, meta3) {
|
|
if (typeof this.opts.loadSchema != "function") {
|
|
throw new Error("options.loadSchema should be a function");
|
|
}
|
|
const { loadSchema } = this.opts;
|
|
return runCompileAsync.call(this, schema, meta3);
|
|
async function runCompileAsync(_schema, _meta) {
|
|
await loadMetaSchema.call(this, _schema.$schema);
|
|
const sch = this._addSchema(_schema, _meta);
|
|
return sch.validate || _compileAsync.call(this, sch);
|
|
}
|
|
async function loadMetaSchema($ref) {
|
|
if ($ref && !this.getSchema($ref)) {
|
|
await runCompileAsync.call(this, { $ref }, true);
|
|
}
|
|
}
|
|
async function _compileAsync(sch) {
|
|
try {
|
|
return this._compileSchemaEnv(sch);
|
|
} catch (e) {
|
|
if (!(e instanceof ref_error_1.default))
|
|
throw e;
|
|
checkLoaded.call(this, e);
|
|
await loadMissingSchema.call(this, e.missingSchema);
|
|
return _compileAsync.call(this, sch);
|
|
}
|
|
}
|
|
function checkLoaded({ missingSchema: ref, missingRef }) {
|
|
if (this.refs[ref]) {
|
|
throw new Error(`AnySchema ${ref} is loaded but ${missingRef} cannot be resolved`);
|
|
}
|
|
}
|
|
async function loadMissingSchema(ref) {
|
|
const _schema = await _loadSchema.call(this, ref);
|
|
if (!this.refs[ref])
|
|
await loadMetaSchema.call(this, _schema.$schema);
|
|
if (!this.refs[ref])
|
|
this.addSchema(_schema, ref, meta3);
|
|
}
|
|
async function _loadSchema(ref) {
|
|
const p = this._loading[ref];
|
|
if (p)
|
|
return p;
|
|
try {
|
|
return await (this._loading[ref] = loadSchema(ref));
|
|
} finally {
|
|
delete this._loading[ref];
|
|
}
|
|
}
|
|
}
|
|
// Adds schema to the instance
|
|
addSchema(schema, key, _meta, _validateSchema = this.opts.validateSchema) {
|
|
if (Array.isArray(schema)) {
|
|
for (const sch of schema)
|
|
this.addSchema(sch, void 0, _meta, _validateSchema);
|
|
return this;
|
|
}
|
|
let id;
|
|
if (typeof schema === "object") {
|
|
const { schemaId } = this.opts;
|
|
id = schema[schemaId];
|
|
if (id !== void 0 && typeof id != "string") {
|
|
throw new Error(`schema ${schemaId} must be string`);
|
|
}
|
|
}
|
|
key = (0, resolve_1.normalizeId)(key || id);
|
|
this._checkUnique(key);
|
|
this.schemas[key] = this._addSchema(schema, _meta, key, _validateSchema, true);
|
|
return this;
|
|
}
|
|
// Add schema that will be used to validate other schemas
|
|
// options in META_IGNORE_OPTIONS are alway set to false
|
|
addMetaSchema(schema, key, _validateSchema = this.opts.validateSchema) {
|
|
this.addSchema(schema, key, true, _validateSchema);
|
|
return this;
|
|
}
|
|
// Validate schema against its meta-schema
|
|
validateSchema(schema, throwOrLogError) {
|
|
if (typeof schema == "boolean")
|
|
return true;
|
|
let $schema;
|
|
$schema = schema.$schema;
|
|
if ($schema !== void 0 && typeof $schema != "string") {
|
|
throw new Error("$schema must be a string");
|
|
}
|
|
$schema = $schema || this.opts.defaultMeta || this.defaultMeta();
|
|
if (!$schema) {
|
|
this.logger.warn("meta-schema not available");
|
|
this.errors = null;
|
|
return true;
|
|
}
|
|
const valid = this.validate($schema, schema);
|
|
if (!valid && throwOrLogError) {
|
|
const message = "schema is invalid: " + this.errorsText();
|
|
if (this.opts.validateSchema === "log")
|
|
this.logger.error(message);
|
|
else
|
|
throw new Error(message);
|
|
}
|
|
return valid;
|
|
}
|
|
// Get compiled schema by `key` or `ref`.
|
|
// (`key` that was passed to `addSchema` or full schema reference - `schema.$id` or resolved id)
|
|
getSchema(keyRef) {
|
|
let sch;
|
|
while (typeof (sch = getSchEnv.call(this, keyRef)) == "string")
|
|
keyRef = sch;
|
|
if (sch === void 0) {
|
|
const { schemaId } = this.opts;
|
|
const root = new compile_1.SchemaEnv({ schema: {}, schemaId });
|
|
sch = compile_1.resolveSchema.call(this, root, keyRef);
|
|
if (!sch)
|
|
return;
|
|
this.refs[keyRef] = sch;
|
|
}
|
|
return sch.validate || this._compileSchemaEnv(sch);
|
|
}
|
|
// Remove cached schema(s).
|
|
// If no parameter is passed all schemas but meta-schemas are removed.
|
|
// If RegExp is passed all schemas with key/id matching pattern but meta-schemas are removed.
|
|
// Even if schema is referenced by other schemas it still can be removed as other schemas have local references.
|
|
removeSchema(schemaKeyRef) {
|
|
if (schemaKeyRef instanceof RegExp) {
|
|
this._removeAllSchemas(this.schemas, schemaKeyRef);
|
|
this._removeAllSchemas(this.refs, schemaKeyRef);
|
|
return this;
|
|
}
|
|
switch (typeof schemaKeyRef) {
|
|
case "undefined":
|
|
this._removeAllSchemas(this.schemas);
|
|
this._removeAllSchemas(this.refs);
|
|
this._cache.clear();
|
|
return this;
|
|
case "string": {
|
|
const sch = getSchEnv.call(this, schemaKeyRef);
|
|
if (typeof sch == "object")
|
|
this._cache.delete(sch.schema);
|
|
delete this.schemas[schemaKeyRef];
|
|
delete this.refs[schemaKeyRef];
|
|
return this;
|
|
}
|
|
case "object": {
|
|
const cacheKey = schemaKeyRef;
|
|
this._cache.delete(cacheKey);
|
|
let id = schemaKeyRef[this.opts.schemaId];
|
|
if (id) {
|
|
id = (0, resolve_1.normalizeId)(id);
|
|
delete this.schemas[id];
|
|
delete this.refs[id];
|
|
}
|
|
return this;
|
|
}
|
|
default:
|
|
throw new Error("ajv.removeSchema: invalid parameter");
|
|
}
|
|
}
|
|
// add "vocabulary" - a collection of keywords
|
|
addVocabulary(definitions) {
|
|
for (const def of definitions)
|
|
this.addKeyword(def);
|
|
return this;
|
|
}
|
|
addKeyword(kwdOrDef, def) {
|
|
let keyword;
|
|
if (typeof kwdOrDef == "string") {
|
|
keyword = kwdOrDef;
|
|
if (typeof def == "object") {
|
|
this.logger.warn("these parameters are deprecated, see docs for addKeyword");
|
|
def.keyword = keyword;
|
|
}
|
|
} else if (typeof kwdOrDef == "object" && def === void 0) {
|
|
def = kwdOrDef;
|
|
keyword = def.keyword;
|
|
if (Array.isArray(keyword) && !keyword.length) {
|
|
throw new Error("addKeywords: keyword must be string or non-empty array");
|
|
}
|
|
} else {
|
|
throw new Error("invalid addKeywords parameters");
|
|
}
|
|
checkKeyword.call(this, keyword, def);
|
|
if (!def) {
|
|
(0, util_1.eachItem)(keyword, (kwd) => addRule.call(this, kwd));
|
|
return this;
|
|
}
|
|
keywordMetaschema.call(this, def);
|
|
const definition = {
|
|
...def,
|
|
type: (0, dataType_1.getJSONTypes)(def.type),
|
|
schemaType: (0, dataType_1.getJSONTypes)(def.schemaType)
|
|
};
|
|
(0, util_1.eachItem)(keyword, definition.type.length === 0 ? (k) => addRule.call(this, k, definition) : (k) => definition.type.forEach((t) => addRule.call(this, k, definition, t)));
|
|
return this;
|
|
}
|
|
getKeyword(keyword) {
|
|
const rule = this.RULES.all[keyword];
|
|
return typeof rule == "object" ? rule.definition : !!rule;
|
|
}
|
|
// Remove keyword
|
|
removeKeyword(keyword) {
|
|
const { RULES } = this;
|
|
delete RULES.keywords[keyword];
|
|
delete RULES.all[keyword];
|
|
for (const group of RULES.rules) {
|
|
const i = group.rules.findIndex((rule) => rule.keyword === keyword);
|
|
if (i >= 0)
|
|
group.rules.splice(i, 1);
|
|
}
|
|
return this;
|
|
}
|
|
// Add format
|
|
addFormat(name, format) {
|
|
if (typeof format == "string")
|
|
format = new RegExp(format);
|
|
this.formats[name] = format;
|
|
return this;
|
|
}
|
|
errorsText(errors = this.errors, { separator = ", ", dataVar = "data" } = {}) {
|
|
if (!errors || errors.length === 0)
|
|
return "No errors";
|
|
return errors.map((e) => `${dataVar}${e.instancePath} ${e.message}`).reduce((text, msg) => text + separator + msg);
|
|
}
|
|
$dataMetaSchema(metaSchema, keywordsJsonPointers) {
|
|
const rules = this.RULES.all;
|
|
metaSchema = JSON.parse(JSON.stringify(metaSchema));
|
|
for (const jsonPointer of keywordsJsonPointers) {
|
|
const segments = jsonPointer.split("/").slice(1);
|
|
let keywords = metaSchema;
|
|
for (const seg of segments)
|
|
keywords = keywords[seg];
|
|
for (const key in rules) {
|
|
const rule = rules[key];
|
|
if (typeof rule != "object")
|
|
continue;
|
|
const { $data } = rule.definition;
|
|
const schema = keywords[key];
|
|
if ($data && schema)
|
|
keywords[key] = schemaOrData(schema);
|
|
}
|
|
}
|
|
return metaSchema;
|
|
}
|
|
_removeAllSchemas(schemas, regex) {
|
|
for (const keyRef in schemas) {
|
|
const sch = schemas[keyRef];
|
|
if (!regex || regex.test(keyRef)) {
|
|
if (typeof sch == "string") {
|
|
delete schemas[keyRef];
|
|
} else if (sch && !sch.meta) {
|
|
this._cache.delete(sch.schema);
|
|
delete schemas[keyRef];
|
|
}
|
|
}
|
|
}
|
|
}
|
|
_addSchema(schema, meta3, baseId, validateSchema = this.opts.validateSchema, addSchema = this.opts.addUsedSchema) {
|
|
let id;
|
|
const { schemaId } = this.opts;
|
|
if (typeof schema == "object") {
|
|
id = schema[schemaId];
|
|
} else {
|
|
if (this.opts.jtd)
|
|
throw new Error("schema must be object");
|
|
else if (typeof schema != "boolean")
|
|
throw new Error("schema must be object or boolean");
|
|
}
|
|
let sch = this._cache.get(schema);
|
|
if (sch !== void 0)
|
|
return sch;
|
|
baseId = (0, resolve_1.normalizeId)(id || baseId);
|
|
const localRefs = resolve_1.getSchemaRefs.call(this, schema, baseId);
|
|
sch = new compile_1.SchemaEnv({ schema, schemaId, meta: meta3, baseId, localRefs });
|
|
this._cache.set(sch.schema, sch);
|
|
if (addSchema && !baseId.startsWith("#")) {
|
|
if (baseId)
|
|
this._checkUnique(baseId);
|
|
this.refs[baseId] = sch;
|
|
}
|
|
if (validateSchema)
|
|
this.validateSchema(schema, true);
|
|
return sch;
|
|
}
|
|
_checkUnique(id) {
|
|
if (this.schemas[id] || this.refs[id]) {
|
|
throw new Error(`schema with key or id "${id}" already exists`);
|
|
}
|
|
}
|
|
_compileSchemaEnv(sch) {
|
|
if (sch.meta)
|
|
this._compileMetaSchema(sch);
|
|
else
|
|
compile_1.compileSchema.call(this, sch);
|
|
if (!sch.validate)
|
|
throw new Error("ajv implementation error");
|
|
return sch.validate;
|
|
}
|
|
_compileMetaSchema(sch) {
|
|
const currentOpts = this.opts;
|
|
this.opts = this._metaOpts;
|
|
try {
|
|
compile_1.compileSchema.call(this, sch);
|
|
} finally {
|
|
this.opts = currentOpts;
|
|
}
|
|
}
|
|
};
|
|
Ajv2.ValidationError = validation_error_1.default;
|
|
Ajv2.MissingRefError = ref_error_1.default;
|
|
exports.default = Ajv2;
|
|
function checkOptions(checkOpts, options, msg, log = "error") {
|
|
for (const key in checkOpts) {
|
|
const opt = key;
|
|
if (opt in options)
|
|
this.logger[log](`${msg}: option ${key}. ${checkOpts[opt]}`);
|
|
}
|
|
}
|
|
function getSchEnv(keyRef) {
|
|
keyRef = (0, resolve_1.normalizeId)(keyRef);
|
|
return this.schemas[keyRef] || this.refs[keyRef];
|
|
}
|
|
function addInitialSchemas() {
|
|
const optsSchemas = this.opts.schemas;
|
|
if (!optsSchemas)
|
|
return;
|
|
if (Array.isArray(optsSchemas))
|
|
this.addSchema(optsSchemas);
|
|
else
|
|
for (const key in optsSchemas)
|
|
this.addSchema(optsSchemas[key], key);
|
|
}
|
|
function addInitialFormats() {
|
|
for (const name in this.opts.formats) {
|
|
const format = this.opts.formats[name];
|
|
if (format)
|
|
this.addFormat(name, format);
|
|
}
|
|
}
|
|
function addInitialKeywords(defs) {
|
|
if (Array.isArray(defs)) {
|
|
this.addVocabulary(defs);
|
|
return;
|
|
}
|
|
this.logger.warn("keywords option as map is deprecated, pass array");
|
|
for (const keyword in defs) {
|
|
const def = defs[keyword];
|
|
if (!def.keyword)
|
|
def.keyword = keyword;
|
|
this.addKeyword(def);
|
|
}
|
|
}
|
|
function getMetaSchemaOptions() {
|
|
const metaOpts = { ...this.opts };
|
|
for (const opt of META_IGNORE_OPTIONS)
|
|
delete metaOpts[opt];
|
|
return metaOpts;
|
|
}
|
|
var noLogs = { log() {
|
|
}, warn() {
|
|
}, error() {
|
|
} };
|
|
function getLogger(logger) {
|
|
if (logger === false)
|
|
return noLogs;
|
|
if (logger === void 0)
|
|
return console;
|
|
if (logger.log && logger.warn && logger.error)
|
|
return logger;
|
|
throw new Error("logger must implement log, warn and error methods");
|
|
}
|
|
var KEYWORD_NAME = /^[a-z_$][a-z0-9_$:-]*$/i;
|
|
function checkKeyword(keyword, def) {
|
|
const { RULES } = this;
|
|
(0, util_1.eachItem)(keyword, (kwd) => {
|
|
if (RULES.keywords[kwd])
|
|
throw new Error(`Keyword ${kwd} is already defined`);
|
|
if (!KEYWORD_NAME.test(kwd))
|
|
throw new Error(`Keyword ${kwd} has invalid name`);
|
|
});
|
|
if (!def)
|
|
return;
|
|
if (def.$data && !("code" in def || "validate" in def)) {
|
|
throw new Error('$data keyword must have "code" or "validate" function');
|
|
}
|
|
}
|
|
function addRule(keyword, definition, dataType) {
|
|
var _a2;
|
|
const post = definition === null || definition === void 0 ? void 0 : definition.post;
|
|
if (dataType && post)
|
|
throw new Error('keyword with "post" flag cannot have "type"');
|
|
const { RULES } = this;
|
|
let ruleGroup = post ? RULES.post : RULES.rules.find(({ type: t }) => t === dataType);
|
|
if (!ruleGroup) {
|
|
ruleGroup = { type: dataType, rules: [] };
|
|
RULES.rules.push(ruleGroup);
|
|
}
|
|
RULES.keywords[keyword] = true;
|
|
if (!definition)
|
|
return;
|
|
const rule = {
|
|
keyword,
|
|
definition: {
|
|
...definition,
|
|
type: (0, dataType_1.getJSONTypes)(definition.type),
|
|
schemaType: (0, dataType_1.getJSONTypes)(definition.schemaType)
|
|
}
|
|
};
|
|
if (definition.before)
|
|
addBeforeRule.call(this, ruleGroup, rule, definition.before);
|
|
else
|
|
ruleGroup.rules.push(rule);
|
|
RULES.all[keyword] = rule;
|
|
(_a2 = definition.implements) === null || _a2 === void 0 ? void 0 : _a2.forEach((kwd) => this.addKeyword(kwd));
|
|
}
|
|
function addBeforeRule(ruleGroup, rule, before) {
|
|
const i = ruleGroup.rules.findIndex((_rule) => _rule.keyword === before);
|
|
if (i >= 0) {
|
|
ruleGroup.rules.splice(i, 0, rule);
|
|
} else {
|
|
ruleGroup.rules.push(rule);
|
|
this.logger.warn(`rule ${before} is not defined`);
|
|
}
|
|
}
|
|
function keywordMetaschema(def) {
|
|
let { metaSchema } = def;
|
|
if (metaSchema === void 0)
|
|
return;
|
|
if (def.$data && this.opts.$data)
|
|
metaSchema = schemaOrData(metaSchema);
|
|
def.validateSchema = this.compile(metaSchema, true);
|
|
}
|
|
var $dataRef = {
|
|
$ref: "https://raw.githubusercontent.com/ajv-validator/ajv/master/lib/refs/data.json#"
|
|
};
|
|
function schemaOrData(schema) {
|
|
return { anyOf: [schema, $dataRef] };
|
|
}
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/vocabularies/core/id.js
|
|
var require_id = __commonJS({
|
|
"node_modules/ajv/dist/vocabularies/core/id.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var def = {
|
|
keyword: "id",
|
|
code() {
|
|
throw new Error('NOT SUPPORTED: keyword "id", use "$id" for schema ID');
|
|
}
|
|
};
|
|
exports.default = def;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/vocabularies/core/ref.js
|
|
var require_ref = __commonJS({
|
|
"node_modules/ajv/dist/vocabularies/core/ref.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.callRef = exports.getValidate = void 0;
|
|
var ref_error_1 = require_ref_error();
|
|
var code_1 = require_code2();
|
|
var codegen_1 = require_codegen();
|
|
var names_1 = require_names();
|
|
var compile_1 = require_compile();
|
|
var util_1 = require_util();
|
|
var def = {
|
|
keyword: "$ref",
|
|
schemaType: "string",
|
|
code(cxt) {
|
|
const { gen, schema: $ref, it } = cxt;
|
|
const { baseId, schemaEnv: env2, validateName, opts, self } = it;
|
|
const { root } = env2;
|
|
if (($ref === "#" || $ref === "#/") && baseId === root.baseId)
|
|
return callRootRef();
|
|
const schOrEnv = compile_1.resolveRef.call(self, root, baseId, $ref);
|
|
if (schOrEnv === void 0)
|
|
throw new ref_error_1.default(it.opts.uriResolver, baseId, $ref);
|
|
if (schOrEnv instanceof compile_1.SchemaEnv)
|
|
return callValidate(schOrEnv);
|
|
return inlineRefSchema(schOrEnv);
|
|
function callRootRef() {
|
|
if (env2 === root)
|
|
return callRef(cxt, validateName, env2, env2.$async);
|
|
const rootName = gen.scopeValue("root", { ref: root });
|
|
return callRef(cxt, (0, codegen_1._)`${rootName}.validate`, root, root.$async);
|
|
}
|
|
function callValidate(sch) {
|
|
const v = getValidate(cxt, sch);
|
|
callRef(cxt, v, sch, sch.$async);
|
|
}
|
|
function inlineRefSchema(sch) {
|
|
const schName = gen.scopeValue("schema", opts.code.source === true ? { ref: sch, code: (0, codegen_1.stringify)(sch) } : { ref: sch });
|
|
const valid = gen.name("valid");
|
|
const schCxt = cxt.subschema({
|
|
schema: sch,
|
|
dataTypes: [],
|
|
schemaPath: codegen_1.nil,
|
|
topSchemaRef: schName,
|
|
errSchemaPath: $ref
|
|
}, valid);
|
|
cxt.mergeEvaluated(schCxt);
|
|
cxt.ok(valid);
|
|
}
|
|
}
|
|
};
|
|
function getValidate(cxt, sch) {
|
|
const { gen } = cxt;
|
|
return sch.validate ? gen.scopeValue("validate", { ref: sch.validate }) : (0, codegen_1._)`${gen.scopeValue("wrapper", { ref: sch })}.validate`;
|
|
}
|
|
exports.getValidate = getValidate;
|
|
function callRef(cxt, v, sch, $async) {
|
|
const { gen, it } = cxt;
|
|
const { allErrors, schemaEnv: env2, opts } = it;
|
|
const passCxt = opts.passContext ? names_1.default.this : codegen_1.nil;
|
|
if ($async)
|
|
callAsyncRef();
|
|
else
|
|
callSyncRef();
|
|
function callAsyncRef() {
|
|
if (!env2.$async)
|
|
throw new Error("async schema referenced by sync schema");
|
|
const valid = gen.let("valid");
|
|
gen.try(() => {
|
|
gen.code((0, codegen_1._)`await ${(0, code_1.callValidateCode)(cxt, v, passCxt)}`);
|
|
addEvaluatedFrom(v);
|
|
if (!allErrors)
|
|
gen.assign(valid, true);
|
|
}, (e) => {
|
|
gen.if((0, codegen_1._)`!(${e} instanceof ${it.ValidationError})`, () => gen.throw(e));
|
|
addErrorsFrom(e);
|
|
if (!allErrors)
|
|
gen.assign(valid, false);
|
|
});
|
|
cxt.ok(valid);
|
|
}
|
|
function callSyncRef() {
|
|
cxt.result((0, code_1.callValidateCode)(cxt, v, passCxt), () => addEvaluatedFrom(v), () => addErrorsFrom(v));
|
|
}
|
|
function addErrorsFrom(source) {
|
|
const errs = (0, codegen_1._)`${source}.errors`;
|
|
gen.assign(names_1.default.vErrors, (0, codegen_1._)`${names_1.default.vErrors} === null ? ${errs} : ${names_1.default.vErrors}.concat(${errs})`);
|
|
gen.assign(names_1.default.errors, (0, codegen_1._)`${names_1.default.vErrors}.length`);
|
|
}
|
|
function addEvaluatedFrom(source) {
|
|
var _a2;
|
|
if (!it.opts.unevaluated)
|
|
return;
|
|
const schEvaluated = (_a2 = sch === null || sch === void 0 ? void 0 : sch.validate) === null || _a2 === void 0 ? void 0 : _a2.evaluated;
|
|
if (it.props !== true) {
|
|
if (schEvaluated && !schEvaluated.dynamicProps) {
|
|
if (schEvaluated.props !== void 0) {
|
|
it.props = util_1.mergeEvaluated.props(gen, schEvaluated.props, it.props);
|
|
}
|
|
} else {
|
|
const props = gen.var("props", (0, codegen_1._)`${source}.evaluated.props`);
|
|
it.props = util_1.mergeEvaluated.props(gen, props, it.props, codegen_1.Name);
|
|
}
|
|
}
|
|
if (it.items !== true) {
|
|
if (schEvaluated && !schEvaluated.dynamicItems) {
|
|
if (schEvaluated.items !== void 0) {
|
|
it.items = util_1.mergeEvaluated.items(gen, schEvaluated.items, it.items);
|
|
}
|
|
} else {
|
|
const items = gen.var("items", (0, codegen_1._)`${source}.evaluated.items`);
|
|
it.items = util_1.mergeEvaluated.items(gen, items, it.items, codegen_1.Name);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
exports.callRef = callRef;
|
|
exports.default = def;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/vocabularies/core/index.js
|
|
var require_core2 = __commonJS({
|
|
"node_modules/ajv/dist/vocabularies/core/index.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var id_1 = require_id();
|
|
var ref_1 = require_ref();
|
|
var core = [
|
|
"$schema",
|
|
"$id",
|
|
"$defs",
|
|
"$vocabulary",
|
|
{ keyword: "$comment" },
|
|
"definitions",
|
|
id_1.default,
|
|
ref_1.default
|
|
];
|
|
exports.default = core;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/vocabularies/validation/limitNumber.js
|
|
var require_limitNumber = __commonJS({
|
|
"node_modules/ajv/dist/vocabularies/validation/limitNumber.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var codegen_1 = require_codegen();
|
|
var ops = codegen_1.operators;
|
|
var KWDs = {
|
|
maximum: { okStr: "<=", ok: ops.LTE, fail: ops.GT },
|
|
minimum: { okStr: ">=", ok: ops.GTE, fail: ops.LT },
|
|
exclusiveMaximum: { okStr: "<", ok: ops.LT, fail: ops.GTE },
|
|
exclusiveMinimum: { okStr: ">", ok: ops.GT, fail: ops.LTE }
|
|
};
|
|
var error2 = {
|
|
message: ({ keyword, schemaCode }) => (0, codegen_1.str)`must be ${KWDs[keyword].okStr} ${schemaCode}`,
|
|
params: ({ keyword, schemaCode }) => (0, codegen_1._)`{comparison: ${KWDs[keyword].okStr}, limit: ${schemaCode}}`
|
|
};
|
|
var def = {
|
|
keyword: Object.keys(KWDs),
|
|
type: "number",
|
|
schemaType: "number",
|
|
$data: true,
|
|
error: error2,
|
|
code(cxt) {
|
|
const { keyword, data, schemaCode } = cxt;
|
|
cxt.fail$data((0, codegen_1._)`${data} ${KWDs[keyword].fail} ${schemaCode} || isNaN(${data})`);
|
|
}
|
|
};
|
|
exports.default = def;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/vocabularies/validation/multipleOf.js
|
|
var require_multipleOf = __commonJS({
|
|
"node_modules/ajv/dist/vocabularies/validation/multipleOf.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var codegen_1 = require_codegen();
|
|
var error2 = {
|
|
message: ({ schemaCode }) => (0, codegen_1.str)`must be multiple of ${schemaCode}`,
|
|
params: ({ schemaCode }) => (0, codegen_1._)`{multipleOf: ${schemaCode}}`
|
|
};
|
|
var def = {
|
|
keyword: "multipleOf",
|
|
type: "number",
|
|
schemaType: "number",
|
|
$data: true,
|
|
error: error2,
|
|
code(cxt) {
|
|
const { gen, data, schemaCode, it } = cxt;
|
|
const prec = it.opts.multipleOfPrecision;
|
|
const res = gen.let("res");
|
|
const invalid = prec ? (0, codegen_1._)`Math.abs(Math.round(${res}) - ${res}) > 1e-${prec}` : (0, codegen_1._)`${res} !== parseInt(${res})`;
|
|
cxt.fail$data((0, codegen_1._)`(${schemaCode} === 0 || (${res} = ${data}/${schemaCode}, ${invalid}))`);
|
|
}
|
|
};
|
|
exports.default = def;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/runtime/ucs2length.js
|
|
var require_ucs2length = __commonJS({
|
|
"node_modules/ajv/dist/runtime/ucs2length.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
function ucs2length(str) {
|
|
const len = str.length;
|
|
let length = 0;
|
|
let pos = 0;
|
|
let value;
|
|
while (pos < len) {
|
|
length++;
|
|
value = str.charCodeAt(pos++);
|
|
if (value >= 55296 && value <= 56319 && pos < len) {
|
|
value = str.charCodeAt(pos);
|
|
if ((value & 64512) === 56320)
|
|
pos++;
|
|
}
|
|
}
|
|
return length;
|
|
}
|
|
exports.default = ucs2length;
|
|
ucs2length.code = 'require("ajv/dist/runtime/ucs2length").default';
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/vocabularies/validation/limitLength.js
|
|
var require_limitLength = __commonJS({
|
|
"node_modules/ajv/dist/vocabularies/validation/limitLength.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var codegen_1 = require_codegen();
|
|
var util_1 = require_util();
|
|
var ucs2length_1 = require_ucs2length();
|
|
var error2 = {
|
|
message({ keyword, schemaCode }) {
|
|
const comp = keyword === "maxLength" ? "more" : "fewer";
|
|
return (0, codegen_1.str)`must NOT have ${comp} than ${schemaCode} characters`;
|
|
},
|
|
params: ({ schemaCode }) => (0, codegen_1._)`{limit: ${schemaCode}}`
|
|
};
|
|
var def = {
|
|
keyword: ["maxLength", "minLength"],
|
|
type: "string",
|
|
schemaType: "number",
|
|
$data: true,
|
|
error: error2,
|
|
code(cxt) {
|
|
const { keyword, data, schemaCode, it } = cxt;
|
|
const op = keyword === "maxLength" ? codegen_1.operators.GT : codegen_1.operators.LT;
|
|
const len = it.opts.unicode === false ? (0, codegen_1._)`${data}.length` : (0, codegen_1._)`${(0, util_1.useFunc)(cxt.gen, ucs2length_1.default)}(${data})`;
|
|
cxt.fail$data((0, codegen_1._)`${len} ${op} ${schemaCode}`);
|
|
}
|
|
};
|
|
exports.default = def;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/vocabularies/validation/pattern.js
|
|
var require_pattern = __commonJS({
|
|
"node_modules/ajv/dist/vocabularies/validation/pattern.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var code_1 = require_code2();
|
|
var codegen_1 = require_codegen();
|
|
var error2 = {
|
|
message: ({ schemaCode }) => (0, codegen_1.str)`must match pattern "${schemaCode}"`,
|
|
params: ({ schemaCode }) => (0, codegen_1._)`{pattern: ${schemaCode}}`
|
|
};
|
|
var def = {
|
|
keyword: "pattern",
|
|
type: "string",
|
|
schemaType: "string",
|
|
$data: true,
|
|
error: error2,
|
|
code(cxt) {
|
|
const { data, $data, schema, schemaCode, it } = cxt;
|
|
const u = it.opts.unicodeRegExp ? "u" : "";
|
|
const regExp = $data ? (0, codegen_1._)`(new RegExp(${schemaCode}, ${u}))` : (0, code_1.usePattern)(cxt, schema);
|
|
cxt.fail$data((0, codegen_1._)`!${regExp}.test(${data})`);
|
|
}
|
|
};
|
|
exports.default = def;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/vocabularies/validation/limitProperties.js
|
|
var require_limitProperties = __commonJS({
|
|
"node_modules/ajv/dist/vocabularies/validation/limitProperties.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var codegen_1 = require_codegen();
|
|
var error2 = {
|
|
message({ keyword, schemaCode }) {
|
|
const comp = keyword === "maxProperties" ? "more" : "fewer";
|
|
return (0, codegen_1.str)`must NOT have ${comp} than ${schemaCode} properties`;
|
|
},
|
|
params: ({ schemaCode }) => (0, codegen_1._)`{limit: ${schemaCode}}`
|
|
};
|
|
var def = {
|
|
keyword: ["maxProperties", "minProperties"],
|
|
type: "object",
|
|
schemaType: "number",
|
|
$data: true,
|
|
error: error2,
|
|
code(cxt) {
|
|
const { keyword, data, schemaCode } = cxt;
|
|
const op = keyword === "maxProperties" ? codegen_1.operators.GT : codegen_1.operators.LT;
|
|
cxt.fail$data((0, codegen_1._)`Object.keys(${data}).length ${op} ${schemaCode}`);
|
|
}
|
|
};
|
|
exports.default = def;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/vocabularies/validation/required.js
|
|
var require_required = __commonJS({
|
|
"node_modules/ajv/dist/vocabularies/validation/required.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var code_1 = require_code2();
|
|
var codegen_1 = require_codegen();
|
|
var util_1 = require_util();
|
|
var error2 = {
|
|
message: ({ params: { missingProperty } }) => (0, codegen_1.str)`must have required property '${missingProperty}'`,
|
|
params: ({ params: { missingProperty } }) => (0, codegen_1._)`{missingProperty: ${missingProperty}}`
|
|
};
|
|
var def = {
|
|
keyword: "required",
|
|
type: "object",
|
|
schemaType: "array",
|
|
$data: true,
|
|
error: error2,
|
|
code(cxt) {
|
|
const { gen, schema, schemaCode, data, $data, it } = cxt;
|
|
const { opts } = it;
|
|
if (!$data && schema.length === 0)
|
|
return;
|
|
const useLoop = schema.length >= opts.loopRequired;
|
|
if (it.allErrors)
|
|
allErrorsMode();
|
|
else
|
|
exitOnErrorMode();
|
|
if (opts.strictRequired) {
|
|
const props = cxt.parentSchema.properties;
|
|
const { definedProperties } = cxt.it;
|
|
for (const requiredKey of schema) {
|
|
if ((props === null || props === void 0 ? void 0 : props[requiredKey]) === void 0 && !definedProperties.has(requiredKey)) {
|
|
const schemaPath = it.schemaEnv.baseId + it.errSchemaPath;
|
|
const msg = `required property "${requiredKey}" is not defined at "${schemaPath}" (strictRequired)`;
|
|
(0, util_1.checkStrictMode)(it, msg, it.opts.strictRequired);
|
|
}
|
|
}
|
|
}
|
|
function allErrorsMode() {
|
|
if (useLoop || $data) {
|
|
cxt.block$data(codegen_1.nil, loopAllRequired);
|
|
} else {
|
|
for (const prop of schema) {
|
|
(0, code_1.checkReportMissingProp)(cxt, prop);
|
|
}
|
|
}
|
|
}
|
|
function exitOnErrorMode() {
|
|
const missing = gen.let("missing");
|
|
if (useLoop || $data) {
|
|
const valid = gen.let("valid", true);
|
|
cxt.block$data(valid, () => loopUntilMissing(missing, valid));
|
|
cxt.ok(valid);
|
|
} else {
|
|
gen.if((0, code_1.checkMissingProp)(cxt, schema, missing));
|
|
(0, code_1.reportMissingProp)(cxt, missing);
|
|
gen.else();
|
|
}
|
|
}
|
|
function loopAllRequired() {
|
|
gen.forOf("prop", schemaCode, (prop) => {
|
|
cxt.setParams({ missingProperty: prop });
|
|
gen.if((0, code_1.noPropertyInData)(gen, data, prop, opts.ownProperties), () => cxt.error());
|
|
});
|
|
}
|
|
function loopUntilMissing(missing, valid) {
|
|
cxt.setParams({ missingProperty: missing });
|
|
gen.forOf(missing, schemaCode, () => {
|
|
gen.assign(valid, (0, code_1.propertyInData)(gen, data, missing, opts.ownProperties));
|
|
gen.if((0, codegen_1.not)(valid), () => {
|
|
cxt.error();
|
|
gen.break();
|
|
});
|
|
}, codegen_1.nil);
|
|
}
|
|
}
|
|
};
|
|
exports.default = def;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/vocabularies/validation/limitItems.js
|
|
var require_limitItems = __commonJS({
|
|
"node_modules/ajv/dist/vocabularies/validation/limitItems.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var codegen_1 = require_codegen();
|
|
var error2 = {
|
|
message({ keyword, schemaCode }) {
|
|
const comp = keyword === "maxItems" ? "more" : "fewer";
|
|
return (0, codegen_1.str)`must NOT have ${comp} than ${schemaCode} items`;
|
|
},
|
|
params: ({ schemaCode }) => (0, codegen_1._)`{limit: ${schemaCode}}`
|
|
};
|
|
var def = {
|
|
keyword: ["maxItems", "minItems"],
|
|
type: "array",
|
|
schemaType: "number",
|
|
$data: true,
|
|
error: error2,
|
|
code(cxt) {
|
|
const { keyword, data, schemaCode } = cxt;
|
|
const op = keyword === "maxItems" ? codegen_1.operators.GT : codegen_1.operators.LT;
|
|
cxt.fail$data((0, codegen_1._)`${data}.length ${op} ${schemaCode}`);
|
|
}
|
|
};
|
|
exports.default = def;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/runtime/equal.js
|
|
var require_equal = __commonJS({
|
|
"node_modules/ajv/dist/runtime/equal.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var equal = require_fast_deep_equal();
|
|
equal.code = 'require("ajv/dist/runtime/equal").default';
|
|
exports.default = equal;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/vocabularies/validation/uniqueItems.js
|
|
var require_uniqueItems = __commonJS({
|
|
"node_modules/ajv/dist/vocabularies/validation/uniqueItems.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var dataType_1 = require_dataType();
|
|
var codegen_1 = require_codegen();
|
|
var util_1 = require_util();
|
|
var equal_1 = require_equal();
|
|
var error2 = {
|
|
message: ({ params: { i, j } }) => (0, codegen_1.str)`must NOT have duplicate items (items ## ${j} and ${i} are identical)`,
|
|
params: ({ params: { i, j } }) => (0, codegen_1._)`{i: ${i}, j: ${j}}`
|
|
};
|
|
var def = {
|
|
keyword: "uniqueItems",
|
|
type: "array",
|
|
schemaType: "boolean",
|
|
$data: true,
|
|
error: error2,
|
|
code(cxt) {
|
|
const { gen, data, $data, schema, parentSchema, schemaCode, it } = cxt;
|
|
if (!$data && !schema)
|
|
return;
|
|
const valid = gen.let("valid");
|
|
const itemTypes = parentSchema.items ? (0, dataType_1.getSchemaTypes)(parentSchema.items) : [];
|
|
cxt.block$data(valid, validateUniqueItems, (0, codegen_1._)`${schemaCode} === false`);
|
|
cxt.ok(valid);
|
|
function validateUniqueItems() {
|
|
const i = gen.let("i", (0, codegen_1._)`${data}.length`);
|
|
const j = gen.let("j");
|
|
cxt.setParams({ i, j });
|
|
gen.assign(valid, true);
|
|
gen.if((0, codegen_1._)`${i} > 1`, () => (canOptimize() ? loopN : loopN2)(i, j));
|
|
}
|
|
function canOptimize() {
|
|
return itemTypes.length > 0 && !itemTypes.some((t) => t === "object" || t === "array");
|
|
}
|
|
function loopN(i, j) {
|
|
const item = gen.name("item");
|
|
const wrongType = (0, dataType_1.checkDataTypes)(itemTypes, item, it.opts.strictNumbers, dataType_1.DataType.Wrong);
|
|
const indices = gen.const("indices", (0, codegen_1._)`{}`);
|
|
gen.for((0, codegen_1._)`;${i}--;`, () => {
|
|
gen.let(item, (0, codegen_1._)`${data}[${i}]`);
|
|
gen.if(wrongType, (0, codegen_1._)`continue`);
|
|
if (itemTypes.length > 1)
|
|
gen.if((0, codegen_1._)`typeof ${item} == "string"`, (0, codegen_1._)`${item} += "_"`);
|
|
gen.if((0, codegen_1._)`typeof ${indices}[${item}] == "number"`, () => {
|
|
gen.assign(j, (0, codegen_1._)`${indices}[${item}]`);
|
|
cxt.error();
|
|
gen.assign(valid, false).break();
|
|
}).code((0, codegen_1._)`${indices}[${item}] = ${i}`);
|
|
});
|
|
}
|
|
function loopN2(i, j) {
|
|
const eql = (0, util_1.useFunc)(gen, equal_1.default);
|
|
const outer = gen.name("outer");
|
|
gen.label(outer).for((0, codegen_1._)`;${i}--;`, () => gen.for((0, codegen_1._)`${j} = ${i}; ${j}--;`, () => gen.if((0, codegen_1._)`${eql}(${data}[${i}], ${data}[${j}])`, () => {
|
|
cxt.error();
|
|
gen.assign(valid, false).break(outer);
|
|
})));
|
|
}
|
|
}
|
|
};
|
|
exports.default = def;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/vocabularies/validation/const.js
|
|
var require_const = __commonJS({
|
|
"node_modules/ajv/dist/vocabularies/validation/const.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var codegen_1 = require_codegen();
|
|
var util_1 = require_util();
|
|
var equal_1 = require_equal();
|
|
var error2 = {
|
|
message: "must be equal to constant",
|
|
params: ({ schemaCode }) => (0, codegen_1._)`{allowedValue: ${schemaCode}}`
|
|
};
|
|
var def = {
|
|
keyword: "const",
|
|
$data: true,
|
|
error: error2,
|
|
code(cxt) {
|
|
const { gen, data, $data, schemaCode, schema } = cxt;
|
|
if ($data || schema && typeof schema == "object") {
|
|
cxt.fail$data((0, codegen_1._)`!${(0, util_1.useFunc)(gen, equal_1.default)}(${data}, ${schemaCode})`);
|
|
} else {
|
|
cxt.fail((0, codegen_1._)`${schema} !== ${data}`);
|
|
}
|
|
}
|
|
};
|
|
exports.default = def;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/vocabularies/validation/enum.js
|
|
var require_enum = __commonJS({
|
|
"node_modules/ajv/dist/vocabularies/validation/enum.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var codegen_1 = require_codegen();
|
|
var util_1 = require_util();
|
|
var equal_1 = require_equal();
|
|
var error2 = {
|
|
message: "must be equal to one of the allowed values",
|
|
params: ({ schemaCode }) => (0, codegen_1._)`{allowedValues: ${schemaCode}}`
|
|
};
|
|
var def = {
|
|
keyword: "enum",
|
|
schemaType: "array",
|
|
$data: true,
|
|
error: error2,
|
|
code(cxt) {
|
|
const { gen, data, $data, schema, schemaCode, it } = cxt;
|
|
if (!$data && schema.length === 0)
|
|
throw new Error("enum must have non-empty array");
|
|
const useLoop = schema.length >= it.opts.loopEnum;
|
|
let eql;
|
|
const getEql = () => eql !== null && eql !== void 0 ? eql : eql = (0, util_1.useFunc)(gen, equal_1.default);
|
|
let valid;
|
|
if (useLoop || $data) {
|
|
valid = gen.let("valid");
|
|
cxt.block$data(valid, loopEnum);
|
|
} else {
|
|
if (!Array.isArray(schema))
|
|
throw new Error("ajv implementation error");
|
|
const vSchema = gen.const("vSchema", schemaCode);
|
|
valid = (0, codegen_1.or)(...schema.map((_x, i) => equalCode(vSchema, i)));
|
|
}
|
|
cxt.pass(valid);
|
|
function loopEnum() {
|
|
gen.assign(valid, false);
|
|
gen.forOf("v", schemaCode, (v) => gen.if((0, codegen_1._)`${getEql()}(${data}, ${v})`, () => gen.assign(valid, true).break()));
|
|
}
|
|
function equalCode(vSchema, i) {
|
|
const sch = schema[i];
|
|
return typeof sch === "object" && sch !== null ? (0, codegen_1._)`${getEql()}(${data}, ${vSchema}[${i}])` : (0, codegen_1._)`${data} === ${sch}`;
|
|
}
|
|
}
|
|
};
|
|
exports.default = def;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/vocabularies/validation/index.js
|
|
var require_validation2 = __commonJS({
|
|
"node_modules/ajv/dist/vocabularies/validation/index.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var limitNumber_1 = require_limitNumber();
|
|
var multipleOf_1 = require_multipleOf();
|
|
var limitLength_1 = require_limitLength();
|
|
var pattern_1 = require_pattern();
|
|
var limitProperties_1 = require_limitProperties();
|
|
var required_1 = require_required();
|
|
var limitItems_1 = require_limitItems();
|
|
var uniqueItems_1 = require_uniqueItems();
|
|
var const_1 = require_const();
|
|
var enum_1 = require_enum();
|
|
var validation = [
|
|
// number
|
|
limitNumber_1.default,
|
|
multipleOf_1.default,
|
|
// string
|
|
limitLength_1.default,
|
|
pattern_1.default,
|
|
// object
|
|
limitProperties_1.default,
|
|
required_1.default,
|
|
// array
|
|
limitItems_1.default,
|
|
uniqueItems_1.default,
|
|
// any
|
|
{ keyword: "type", schemaType: ["string", "array"] },
|
|
{ keyword: "nullable", schemaType: "boolean" },
|
|
const_1.default,
|
|
enum_1.default
|
|
];
|
|
exports.default = validation;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/vocabularies/applicator/additionalItems.js
|
|
var require_additionalItems = __commonJS({
|
|
"node_modules/ajv/dist/vocabularies/applicator/additionalItems.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.validateAdditionalItems = void 0;
|
|
var codegen_1 = require_codegen();
|
|
var util_1 = require_util();
|
|
var error2 = {
|
|
message: ({ params: { len } }) => (0, codegen_1.str)`must NOT have more than ${len} items`,
|
|
params: ({ params: { len } }) => (0, codegen_1._)`{limit: ${len}}`
|
|
};
|
|
var def = {
|
|
keyword: "additionalItems",
|
|
type: "array",
|
|
schemaType: ["boolean", "object"],
|
|
before: "uniqueItems",
|
|
error: error2,
|
|
code(cxt) {
|
|
const { parentSchema, it } = cxt;
|
|
const { items } = parentSchema;
|
|
if (!Array.isArray(items)) {
|
|
(0, util_1.checkStrictMode)(it, '"additionalItems" is ignored when "items" is not an array of schemas');
|
|
return;
|
|
}
|
|
validateAdditionalItems(cxt, items);
|
|
}
|
|
};
|
|
function validateAdditionalItems(cxt, items) {
|
|
const { gen, schema, data, keyword, it } = cxt;
|
|
it.items = true;
|
|
const len = gen.const("len", (0, codegen_1._)`${data}.length`);
|
|
if (schema === false) {
|
|
cxt.setParams({ len: items.length });
|
|
cxt.pass((0, codegen_1._)`${len} <= ${items.length}`);
|
|
} else if (typeof schema == "object" && !(0, util_1.alwaysValidSchema)(it, schema)) {
|
|
const valid = gen.var("valid", (0, codegen_1._)`${len} <= ${items.length}`);
|
|
gen.if((0, codegen_1.not)(valid), () => validateItems(valid));
|
|
cxt.ok(valid);
|
|
}
|
|
function validateItems(valid) {
|
|
gen.forRange("i", items.length, len, (i) => {
|
|
cxt.subschema({ keyword, dataProp: i, dataPropType: util_1.Type.Num }, valid);
|
|
if (!it.allErrors)
|
|
gen.if((0, codegen_1.not)(valid), () => gen.break());
|
|
});
|
|
}
|
|
}
|
|
exports.validateAdditionalItems = validateAdditionalItems;
|
|
exports.default = def;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/vocabularies/applicator/items.js
|
|
var require_items = __commonJS({
|
|
"node_modules/ajv/dist/vocabularies/applicator/items.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.validateTuple = void 0;
|
|
var codegen_1 = require_codegen();
|
|
var util_1 = require_util();
|
|
var code_1 = require_code2();
|
|
var def = {
|
|
keyword: "items",
|
|
type: "array",
|
|
schemaType: ["object", "array", "boolean"],
|
|
before: "uniqueItems",
|
|
code(cxt) {
|
|
const { schema, it } = cxt;
|
|
if (Array.isArray(schema))
|
|
return validateTuple(cxt, "additionalItems", schema);
|
|
it.items = true;
|
|
if ((0, util_1.alwaysValidSchema)(it, schema))
|
|
return;
|
|
cxt.ok((0, code_1.validateArray)(cxt));
|
|
}
|
|
};
|
|
function validateTuple(cxt, extraItems, schArr = cxt.schema) {
|
|
const { gen, parentSchema, data, keyword, it } = cxt;
|
|
checkStrictTuple(parentSchema);
|
|
if (it.opts.unevaluated && schArr.length && it.items !== true) {
|
|
it.items = util_1.mergeEvaluated.items(gen, schArr.length, it.items);
|
|
}
|
|
const valid = gen.name("valid");
|
|
const len = gen.const("len", (0, codegen_1._)`${data}.length`);
|
|
schArr.forEach((sch, i) => {
|
|
if ((0, util_1.alwaysValidSchema)(it, sch))
|
|
return;
|
|
gen.if((0, codegen_1._)`${len} > ${i}`, () => cxt.subschema({
|
|
keyword,
|
|
schemaProp: i,
|
|
dataProp: i
|
|
}, valid));
|
|
cxt.ok(valid);
|
|
});
|
|
function checkStrictTuple(sch) {
|
|
const { opts, errSchemaPath } = it;
|
|
const l = schArr.length;
|
|
const fullTuple = l === sch.minItems && (l === sch.maxItems || sch[extraItems] === false);
|
|
if (opts.strictTuples && !fullTuple) {
|
|
const msg = `"${keyword}" is ${l}-tuple, but minItems or maxItems/${extraItems} are not specified or different at path "${errSchemaPath}"`;
|
|
(0, util_1.checkStrictMode)(it, msg, opts.strictTuples);
|
|
}
|
|
}
|
|
}
|
|
exports.validateTuple = validateTuple;
|
|
exports.default = def;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/vocabularies/applicator/prefixItems.js
|
|
var require_prefixItems = __commonJS({
|
|
"node_modules/ajv/dist/vocabularies/applicator/prefixItems.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var items_1 = require_items();
|
|
var def = {
|
|
keyword: "prefixItems",
|
|
type: "array",
|
|
schemaType: ["array"],
|
|
before: "uniqueItems",
|
|
code: (cxt) => (0, items_1.validateTuple)(cxt, "items")
|
|
};
|
|
exports.default = def;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/vocabularies/applicator/items2020.js
|
|
var require_items2020 = __commonJS({
|
|
"node_modules/ajv/dist/vocabularies/applicator/items2020.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var codegen_1 = require_codegen();
|
|
var util_1 = require_util();
|
|
var code_1 = require_code2();
|
|
var additionalItems_1 = require_additionalItems();
|
|
var error2 = {
|
|
message: ({ params: { len } }) => (0, codegen_1.str)`must NOT have more than ${len} items`,
|
|
params: ({ params: { len } }) => (0, codegen_1._)`{limit: ${len}}`
|
|
};
|
|
var def = {
|
|
keyword: "items",
|
|
type: "array",
|
|
schemaType: ["object", "boolean"],
|
|
before: "uniqueItems",
|
|
error: error2,
|
|
code(cxt) {
|
|
const { schema, parentSchema, it } = cxt;
|
|
const { prefixItems } = parentSchema;
|
|
it.items = true;
|
|
if ((0, util_1.alwaysValidSchema)(it, schema))
|
|
return;
|
|
if (prefixItems)
|
|
(0, additionalItems_1.validateAdditionalItems)(cxt, prefixItems);
|
|
else
|
|
cxt.ok((0, code_1.validateArray)(cxt));
|
|
}
|
|
};
|
|
exports.default = def;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/vocabularies/applicator/contains.js
|
|
var require_contains = __commonJS({
|
|
"node_modules/ajv/dist/vocabularies/applicator/contains.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var codegen_1 = require_codegen();
|
|
var util_1 = require_util();
|
|
var error2 = {
|
|
message: ({ params: { min, max } }) => max === void 0 ? (0, codegen_1.str)`must contain at least ${min} valid item(s)` : (0, codegen_1.str)`must contain at least ${min} and no more than ${max} valid item(s)`,
|
|
params: ({ params: { min, max } }) => max === void 0 ? (0, codegen_1._)`{minContains: ${min}}` : (0, codegen_1._)`{minContains: ${min}, maxContains: ${max}}`
|
|
};
|
|
var def = {
|
|
keyword: "contains",
|
|
type: "array",
|
|
schemaType: ["object", "boolean"],
|
|
before: "uniqueItems",
|
|
trackErrors: true,
|
|
error: error2,
|
|
code(cxt) {
|
|
const { gen, schema, parentSchema, data, it } = cxt;
|
|
let min;
|
|
let max;
|
|
const { minContains, maxContains } = parentSchema;
|
|
if (it.opts.next) {
|
|
min = minContains === void 0 ? 1 : minContains;
|
|
max = maxContains;
|
|
} else {
|
|
min = 1;
|
|
}
|
|
const len = gen.const("len", (0, codegen_1._)`${data}.length`);
|
|
cxt.setParams({ min, max });
|
|
if (max === void 0 && min === 0) {
|
|
(0, util_1.checkStrictMode)(it, `"minContains" == 0 without "maxContains": "contains" keyword ignored`);
|
|
return;
|
|
}
|
|
if (max !== void 0 && min > max) {
|
|
(0, util_1.checkStrictMode)(it, `"minContains" > "maxContains" is always invalid`);
|
|
cxt.fail();
|
|
return;
|
|
}
|
|
if ((0, util_1.alwaysValidSchema)(it, schema)) {
|
|
let cond = (0, codegen_1._)`${len} >= ${min}`;
|
|
if (max !== void 0)
|
|
cond = (0, codegen_1._)`${cond} && ${len} <= ${max}`;
|
|
cxt.pass(cond);
|
|
return;
|
|
}
|
|
it.items = true;
|
|
const valid = gen.name("valid");
|
|
if (max === void 0 && min === 1) {
|
|
validateItems(valid, () => gen.if(valid, () => gen.break()));
|
|
} else if (min === 0) {
|
|
gen.let(valid, true);
|
|
if (max !== void 0)
|
|
gen.if((0, codegen_1._)`${data}.length > 0`, validateItemsWithCount);
|
|
} else {
|
|
gen.let(valid, false);
|
|
validateItemsWithCount();
|
|
}
|
|
cxt.result(valid, () => cxt.reset());
|
|
function validateItemsWithCount() {
|
|
const schValid = gen.name("_valid");
|
|
const count = gen.let("count", 0);
|
|
validateItems(schValid, () => gen.if(schValid, () => checkLimits(count)));
|
|
}
|
|
function validateItems(_valid, block) {
|
|
gen.forRange("i", 0, len, (i) => {
|
|
cxt.subschema({
|
|
keyword: "contains",
|
|
dataProp: i,
|
|
dataPropType: util_1.Type.Num,
|
|
compositeRule: true
|
|
}, _valid);
|
|
block();
|
|
});
|
|
}
|
|
function checkLimits(count) {
|
|
gen.code((0, codegen_1._)`${count}++`);
|
|
if (max === void 0) {
|
|
gen.if((0, codegen_1._)`${count} >= ${min}`, () => gen.assign(valid, true).break());
|
|
} else {
|
|
gen.if((0, codegen_1._)`${count} > ${max}`, () => gen.assign(valid, false).break());
|
|
if (min === 1)
|
|
gen.assign(valid, true);
|
|
else
|
|
gen.if((0, codegen_1._)`${count} >= ${min}`, () => gen.assign(valid, true));
|
|
}
|
|
}
|
|
}
|
|
};
|
|
exports.default = def;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/vocabularies/applicator/dependencies.js
|
|
var require_dependencies = __commonJS({
|
|
"node_modules/ajv/dist/vocabularies/applicator/dependencies.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.validateSchemaDeps = exports.validatePropertyDeps = exports.error = void 0;
|
|
var codegen_1 = require_codegen();
|
|
var util_1 = require_util();
|
|
var code_1 = require_code2();
|
|
exports.error = {
|
|
message: ({ params: { property, depsCount, deps } }) => {
|
|
const property_ies = depsCount === 1 ? "property" : "properties";
|
|
return (0, codegen_1.str)`must have ${property_ies} ${deps} when property ${property} is present`;
|
|
},
|
|
params: ({ params: { property, depsCount, deps, missingProperty } }) => (0, codegen_1._)`{property: ${property},
|
|
missingProperty: ${missingProperty},
|
|
depsCount: ${depsCount},
|
|
deps: ${deps}}`
|
|
// TODO change to reference
|
|
};
|
|
var def = {
|
|
keyword: "dependencies",
|
|
type: "object",
|
|
schemaType: "object",
|
|
error: exports.error,
|
|
code(cxt) {
|
|
const [propDeps, schDeps] = splitDependencies(cxt);
|
|
validatePropertyDeps(cxt, propDeps);
|
|
validateSchemaDeps(cxt, schDeps);
|
|
}
|
|
};
|
|
function splitDependencies({ schema }) {
|
|
const propertyDeps = {};
|
|
const schemaDeps = {};
|
|
for (const key in schema) {
|
|
if (key === "__proto__")
|
|
continue;
|
|
const deps = Array.isArray(schema[key]) ? propertyDeps : schemaDeps;
|
|
deps[key] = schema[key];
|
|
}
|
|
return [propertyDeps, schemaDeps];
|
|
}
|
|
function validatePropertyDeps(cxt, propertyDeps = cxt.schema) {
|
|
const { gen, data, it } = cxt;
|
|
if (Object.keys(propertyDeps).length === 0)
|
|
return;
|
|
const missing = gen.let("missing");
|
|
for (const prop in propertyDeps) {
|
|
const deps = propertyDeps[prop];
|
|
if (deps.length === 0)
|
|
continue;
|
|
const hasProperty = (0, code_1.propertyInData)(gen, data, prop, it.opts.ownProperties);
|
|
cxt.setParams({
|
|
property: prop,
|
|
depsCount: deps.length,
|
|
deps: deps.join(", ")
|
|
});
|
|
if (it.allErrors) {
|
|
gen.if(hasProperty, () => {
|
|
for (const depProp of deps) {
|
|
(0, code_1.checkReportMissingProp)(cxt, depProp);
|
|
}
|
|
});
|
|
} else {
|
|
gen.if((0, codegen_1._)`${hasProperty} && (${(0, code_1.checkMissingProp)(cxt, deps, missing)})`);
|
|
(0, code_1.reportMissingProp)(cxt, missing);
|
|
gen.else();
|
|
}
|
|
}
|
|
}
|
|
exports.validatePropertyDeps = validatePropertyDeps;
|
|
function validateSchemaDeps(cxt, schemaDeps = cxt.schema) {
|
|
const { gen, data, keyword, it } = cxt;
|
|
const valid = gen.name("valid");
|
|
for (const prop in schemaDeps) {
|
|
if ((0, util_1.alwaysValidSchema)(it, schemaDeps[prop]))
|
|
continue;
|
|
gen.if(
|
|
(0, code_1.propertyInData)(gen, data, prop, it.opts.ownProperties),
|
|
() => {
|
|
const schCxt = cxt.subschema({ keyword, schemaProp: prop }, valid);
|
|
cxt.mergeValidEvaluated(schCxt, valid);
|
|
},
|
|
() => gen.var(valid, true)
|
|
// TODO var
|
|
);
|
|
cxt.ok(valid);
|
|
}
|
|
}
|
|
exports.validateSchemaDeps = validateSchemaDeps;
|
|
exports.default = def;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/vocabularies/applicator/propertyNames.js
|
|
var require_propertyNames = __commonJS({
|
|
"node_modules/ajv/dist/vocabularies/applicator/propertyNames.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var codegen_1 = require_codegen();
|
|
var util_1 = require_util();
|
|
var error2 = {
|
|
message: "property name must be valid",
|
|
params: ({ params }) => (0, codegen_1._)`{propertyName: ${params.propertyName}}`
|
|
};
|
|
var def = {
|
|
keyword: "propertyNames",
|
|
type: "object",
|
|
schemaType: ["object", "boolean"],
|
|
error: error2,
|
|
code(cxt) {
|
|
const { gen, schema, data, it } = cxt;
|
|
if ((0, util_1.alwaysValidSchema)(it, schema))
|
|
return;
|
|
const valid = gen.name("valid");
|
|
gen.forIn("key", data, (key) => {
|
|
cxt.setParams({ propertyName: key });
|
|
cxt.subschema({
|
|
keyword: "propertyNames",
|
|
data: key,
|
|
dataTypes: ["string"],
|
|
propertyName: key,
|
|
compositeRule: true
|
|
}, valid);
|
|
gen.if((0, codegen_1.not)(valid), () => {
|
|
cxt.error(true);
|
|
if (!it.allErrors)
|
|
gen.break();
|
|
});
|
|
});
|
|
cxt.ok(valid);
|
|
}
|
|
};
|
|
exports.default = def;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js
|
|
var require_additionalProperties = __commonJS({
|
|
"node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var code_1 = require_code2();
|
|
var codegen_1 = require_codegen();
|
|
var names_1 = require_names();
|
|
var util_1 = require_util();
|
|
var error2 = {
|
|
message: "must NOT have additional properties",
|
|
params: ({ params }) => (0, codegen_1._)`{additionalProperty: ${params.additionalProperty}}`
|
|
};
|
|
var def = {
|
|
keyword: "additionalProperties",
|
|
type: ["object"],
|
|
schemaType: ["boolean", "object"],
|
|
allowUndefined: true,
|
|
trackErrors: true,
|
|
error: error2,
|
|
code(cxt) {
|
|
const { gen, schema, parentSchema, data, errsCount, it } = cxt;
|
|
if (!errsCount)
|
|
throw new Error("ajv implementation error");
|
|
const { allErrors, opts } = it;
|
|
it.props = true;
|
|
if (opts.removeAdditional !== "all" && (0, util_1.alwaysValidSchema)(it, schema))
|
|
return;
|
|
const props = (0, code_1.allSchemaProperties)(parentSchema.properties);
|
|
const patProps = (0, code_1.allSchemaProperties)(parentSchema.patternProperties);
|
|
checkAdditionalProperties();
|
|
cxt.ok((0, codegen_1._)`${errsCount} === ${names_1.default.errors}`);
|
|
function checkAdditionalProperties() {
|
|
gen.forIn("key", data, (key) => {
|
|
if (!props.length && !patProps.length)
|
|
additionalPropertyCode(key);
|
|
else
|
|
gen.if(isAdditional(key), () => additionalPropertyCode(key));
|
|
});
|
|
}
|
|
function isAdditional(key) {
|
|
let definedProp;
|
|
if (props.length > 8) {
|
|
const propsSchema = (0, util_1.schemaRefOrVal)(it, parentSchema.properties, "properties");
|
|
definedProp = (0, code_1.isOwnProperty)(gen, propsSchema, key);
|
|
} else if (props.length) {
|
|
definedProp = (0, codegen_1.or)(...props.map((p) => (0, codegen_1._)`${key} === ${p}`));
|
|
} else {
|
|
definedProp = codegen_1.nil;
|
|
}
|
|
if (patProps.length) {
|
|
definedProp = (0, codegen_1.or)(definedProp, ...patProps.map((p) => (0, codegen_1._)`${(0, code_1.usePattern)(cxt, p)}.test(${key})`));
|
|
}
|
|
return (0, codegen_1.not)(definedProp);
|
|
}
|
|
function deleteAdditional(key) {
|
|
gen.code((0, codegen_1._)`delete ${data}[${key}]`);
|
|
}
|
|
function additionalPropertyCode(key) {
|
|
if (opts.removeAdditional === "all" || opts.removeAdditional && schema === false) {
|
|
deleteAdditional(key);
|
|
return;
|
|
}
|
|
if (schema === false) {
|
|
cxt.setParams({ additionalProperty: key });
|
|
cxt.error();
|
|
if (!allErrors)
|
|
gen.break();
|
|
return;
|
|
}
|
|
if (typeof schema == "object" && !(0, util_1.alwaysValidSchema)(it, schema)) {
|
|
const valid = gen.name("valid");
|
|
if (opts.removeAdditional === "failing") {
|
|
applyAdditionalSchema(key, valid, false);
|
|
gen.if((0, codegen_1.not)(valid), () => {
|
|
cxt.reset();
|
|
deleteAdditional(key);
|
|
});
|
|
} else {
|
|
applyAdditionalSchema(key, valid);
|
|
if (!allErrors)
|
|
gen.if((0, codegen_1.not)(valid), () => gen.break());
|
|
}
|
|
}
|
|
}
|
|
function applyAdditionalSchema(key, valid, errors) {
|
|
const subschema = {
|
|
keyword: "additionalProperties",
|
|
dataProp: key,
|
|
dataPropType: util_1.Type.Str
|
|
};
|
|
if (errors === false) {
|
|
Object.assign(subschema, {
|
|
compositeRule: true,
|
|
createErrors: false,
|
|
allErrors: false
|
|
});
|
|
}
|
|
cxt.subschema(subschema, valid);
|
|
}
|
|
}
|
|
};
|
|
exports.default = def;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/vocabularies/applicator/properties.js
|
|
var require_properties = __commonJS({
|
|
"node_modules/ajv/dist/vocabularies/applicator/properties.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var validate_1 = require_validate();
|
|
var code_1 = require_code2();
|
|
var util_1 = require_util();
|
|
var additionalProperties_1 = require_additionalProperties();
|
|
var def = {
|
|
keyword: "properties",
|
|
type: "object",
|
|
schemaType: "object",
|
|
code(cxt) {
|
|
const { gen, schema, parentSchema, data, it } = cxt;
|
|
if (it.opts.removeAdditional === "all" && parentSchema.additionalProperties === void 0) {
|
|
additionalProperties_1.default.code(new validate_1.KeywordCxt(it, additionalProperties_1.default, "additionalProperties"));
|
|
}
|
|
const allProps = (0, code_1.allSchemaProperties)(schema);
|
|
for (const prop of allProps) {
|
|
it.definedProperties.add(prop);
|
|
}
|
|
if (it.opts.unevaluated && allProps.length && it.props !== true) {
|
|
it.props = util_1.mergeEvaluated.props(gen, (0, util_1.toHash)(allProps), it.props);
|
|
}
|
|
const properties = allProps.filter((p) => !(0, util_1.alwaysValidSchema)(it, schema[p]));
|
|
if (properties.length === 0)
|
|
return;
|
|
const valid = gen.name("valid");
|
|
for (const prop of properties) {
|
|
if (hasDefault(prop)) {
|
|
applyPropertySchema(prop);
|
|
} else {
|
|
gen.if((0, code_1.propertyInData)(gen, data, prop, it.opts.ownProperties));
|
|
applyPropertySchema(prop);
|
|
if (!it.allErrors)
|
|
gen.else().var(valid, true);
|
|
gen.endIf();
|
|
}
|
|
cxt.it.definedProperties.add(prop);
|
|
cxt.ok(valid);
|
|
}
|
|
function hasDefault(prop) {
|
|
return it.opts.useDefaults && !it.compositeRule && schema[prop].default !== void 0;
|
|
}
|
|
function applyPropertySchema(prop) {
|
|
cxt.subschema({
|
|
keyword: "properties",
|
|
schemaProp: prop,
|
|
dataProp: prop
|
|
}, valid);
|
|
}
|
|
}
|
|
};
|
|
exports.default = def;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/vocabularies/applicator/patternProperties.js
|
|
var require_patternProperties = __commonJS({
|
|
"node_modules/ajv/dist/vocabularies/applicator/patternProperties.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var code_1 = require_code2();
|
|
var codegen_1 = require_codegen();
|
|
var util_1 = require_util();
|
|
var util_2 = require_util();
|
|
var def = {
|
|
keyword: "patternProperties",
|
|
type: "object",
|
|
schemaType: "object",
|
|
code(cxt) {
|
|
const { gen, schema, data, parentSchema, it } = cxt;
|
|
const { opts } = it;
|
|
const patterns = (0, code_1.allSchemaProperties)(schema);
|
|
const alwaysValidPatterns = patterns.filter((p) => (0, util_1.alwaysValidSchema)(it, schema[p]));
|
|
if (patterns.length === 0 || alwaysValidPatterns.length === patterns.length && (!it.opts.unevaluated || it.props === true)) {
|
|
return;
|
|
}
|
|
const checkProperties = opts.strictSchema && !opts.allowMatchingProperties && parentSchema.properties;
|
|
const valid = gen.name("valid");
|
|
if (it.props !== true && !(it.props instanceof codegen_1.Name)) {
|
|
it.props = (0, util_2.evaluatedPropsToName)(gen, it.props);
|
|
}
|
|
const { props } = it;
|
|
validatePatternProperties();
|
|
function validatePatternProperties() {
|
|
for (const pat of patterns) {
|
|
if (checkProperties)
|
|
checkMatchingProperties(pat);
|
|
if (it.allErrors) {
|
|
validateProperties(pat);
|
|
} else {
|
|
gen.var(valid, true);
|
|
validateProperties(pat);
|
|
gen.if(valid);
|
|
}
|
|
}
|
|
}
|
|
function checkMatchingProperties(pat) {
|
|
for (const prop in checkProperties) {
|
|
if (new RegExp(pat).test(prop)) {
|
|
(0, util_1.checkStrictMode)(it, `property ${prop} matches pattern ${pat} (use allowMatchingProperties)`);
|
|
}
|
|
}
|
|
}
|
|
function validateProperties(pat) {
|
|
gen.forIn("key", data, (key) => {
|
|
gen.if((0, codegen_1._)`${(0, code_1.usePattern)(cxt, pat)}.test(${key})`, () => {
|
|
const alwaysValid = alwaysValidPatterns.includes(pat);
|
|
if (!alwaysValid) {
|
|
cxt.subschema({
|
|
keyword: "patternProperties",
|
|
schemaProp: pat,
|
|
dataProp: key,
|
|
dataPropType: util_2.Type.Str
|
|
}, valid);
|
|
}
|
|
if (it.opts.unevaluated && props !== true) {
|
|
gen.assign((0, codegen_1._)`${props}[${key}]`, true);
|
|
} else if (!alwaysValid && !it.allErrors) {
|
|
gen.if((0, codegen_1.not)(valid), () => gen.break());
|
|
}
|
|
});
|
|
});
|
|
}
|
|
}
|
|
};
|
|
exports.default = def;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/vocabularies/applicator/not.js
|
|
var require_not = __commonJS({
|
|
"node_modules/ajv/dist/vocabularies/applicator/not.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var util_1 = require_util();
|
|
var def = {
|
|
keyword: "not",
|
|
schemaType: ["object", "boolean"],
|
|
trackErrors: true,
|
|
code(cxt) {
|
|
const { gen, schema, it } = cxt;
|
|
if ((0, util_1.alwaysValidSchema)(it, schema)) {
|
|
cxt.fail();
|
|
return;
|
|
}
|
|
const valid = gen.name("valid");
|
|
cxt.subschema({
|
|
keyword: "not",
|
|
compositeRule: true,
|
|
createErrors: false,
|
|
allErrors: false
|
|
}, valid);
|
|
cxt.failResult(valid, () => cxt.reset(), () => cxt.error());
|
|
},
|
|
error: { message: "must NOT be valid" }
|
|
};
|
|
exports.default = def;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/vocabularies/applicator/anyOf.js
|
|
var require_anyOf = __commonJS({
|
|
"node_modules/ajv/dist/vocabularies/applicator/anyOf.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var code_1 = require_code2();
|
|
var def = {
|
|
keyword: "anyOf",
|
|
schemaType: "array",
|
|
trackErrors: true,
|
|
code: code_1.validateUnion,
|
|
error: { message: "must match a schema in anyOf" }
|
|
};
|
|
exports.default = def;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/vocabularies/applicator/oneOf.js
|
|
var require_oneOf = __commonJS({
|
|
"node_modules/ajv/dist/vocabularies/applicator/oneOf.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var codegen_1 = require_codegen();
|
|
var util_1 = require_util();
|
|
var error2 = {
|
|
message: "must match exactly one schema in oneOf",
|
|
params: ({ params }) => (0, codegen_1._)`{passingSchemas: ${params.passing}}`
|
|
};
|
|
var def = {
|
|
keyword: "oneOf",
|
|
schemaType: "array",
|
|
trackErrors: true,
|
|
error: error2,
|
|
code(cxt) {
|
|
const { gen, schema, parentSchema, it } = cxt;
|
|
if (!Array.isArray(schema))
|
|
throw new Error("ajv implementation error");
|
|
if (it.opts.discriminator && parentSchema.discriminator)
|
|
return;
|
|
const schArr = schema;
|
|
const valid = gen.let("valid", false);
|
|
const passing = gen.let("passing", null);
|
|
const schValid = gen.name("_valid");
|
|
cxt.setParams({ passing });
|
|
gen.block(validateOneOf);
|
|
cxt.result(valid, () => cxt.reset(), () => cxt.error(true));
|
|
function validateOneOf() {
|
|
schArr.forEach((sch, i) => {
|
|
let schCxt;
|
|
if ((0, util_1.alwaysValidSchema)(it, sch)) {
|
|
gen.var(schValid, true);
|
|
} else {
|
|
schCxt = cxt.subschema({
|
|
keyword: "oneOf",
|
|
schemaProp: i,
|
|
compositeRule: true
|
|
}, schValid);
|
|
}
|
|
if (i > 0) {
|
|
gen.if((0, codegen_1._)`${schValid} && ${valid}`).assign(valid, false).assign(passing, (0, codegen_1._)`[${passing}, ${i}]`).else();
|
|
}
|
|
gen.if(schValid, () => {
|
|
gen.assign(valid, true);
|
|
gen.assign(passing, i);
|
|
if (schCxt)
|
|
cxt.mergeEvaluated(schCxt, codegen_1.Name);
|
|
});
|
|
});
|
|
}
|
|
}
|
|
};
|
|
exports.default = def;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/vocabularies/applicator/allOf.js
|
|
var require_allOf = __commonJS({
|
|
"node_modules/ajv/dist/vocabularies/applicator/allOf.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var util_1 = require_util();
|
|
var def = {
|
|
keyword: "allOf",
|
|
schemaType: "array",
|
|
code(cxt) {
|
|
const { gen, schema, it } = cxt;
|
|
if (!Array.isArray(schema))
|
|
throw new Error("ajv implementation error");
|
|
const valid = gen.name("valid");
|
|
schema.forEach((sch, i) => {
|
|
if ((0, util_1.alwaysValidSchema)(it, sch))
|
|
return;
|
|
const schCxt = cxt.subschema({ keyword: "allOf", schemaProp: i }, valid);
|
|
cxt.ok(valid);
|
|
cxt.mergeEvaluated(schCxt);
|
|
});
|
|
}
|
|
};
|
|
exports.default = def;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/vocabularies/applicator/if.js
|
|
var require_if = __commonJS({
|
|
"node_modules/ajv/dist/vocabularies/applicator/if.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var codegen_1 = require_codegen();
|
|
var util_1 = require_util();
|
|
var error2 = {
|
|
message: ({ params }) => (0, codegen_1.str)`must match "${params.ifClause}" schema`,
|
|
params: ({ params }) => (0, codegen_1._)`{failingKeyword: ${params.ifClause}}`
|
|
};
|
|
var def = {
|
|
keyword: "if",
|
|
schemaType: ["object", "boolean"],
|
|
trackErrors: true,
|
|
error: error2,
|
|
code(cxt) {
|
|
const { gen, parentSchema, it } = cxt;
|
|
if (parentSchema.then === void 0 && parentSchema.else === void 0) {
|
|
(0, util_1.checkStrictMode)(it, '"if" without "then" and "else" is ignored');
|
|
}
|
|
const hasThen = hasSchema(it, "then");
|
|
const hasElse = hasSchema(it, "else");
|
|
if (!hasThen && !hasElse)
|
|
return;
|
|
const valid = gen.let("valid", true);
|
|
const schValid = gen.name("_valid");
|
|
validateIf();
|
|
cxt.reset();
|
|
if (hasThen && hasElse) {
|
|
const ifClause = gen.let("ifClause");
|
|
cxt.setParams({ ifClause });
|
|
gen.if(schValid, validateClause("then", ifClause), validateClause("else", ifClause));
|
|
} else if (hasThen) {
|
|
gen.if(schValid, validateClause("then"));
|
|
} else {
|
|
gen.if((0, codegen_1.not)(schValid), validateClause("else"));
|
|
}
|
|
cxt.pass(valid, () => cxt.error(true));
|
|
function validateIf() {
|
|
const schCxt = cxt.subschema({
|
|
keyword: "if",
|
|
compositeRule: true,
|
|
createErrors: false,
|
|
allErrors: false
|
|
}, schValid);
|
|
cxt.mergeEvaluated(schCxt);
|
|
}
|
|
function validateClause(keyword, ifClause) {
|
|
return () => {
|
|
const schCxt = cxt.subschema({ keyword }, schValid);
|
|
gen.assign(valid, schValid);
|
|
cxt.mergeValidEvaluated(schCxt, valid);
|
|
if (ifClause)
|
|
gen.assign(ifClause, (0, codegen_1._)`${keyword}`);
|
|
else
|
|
cxt.setParams({ ifClause: keyword });
|
|
};
|
|
}
|
|
}
|
|
};
|
|
function hasSchema(it, keyword) {
|
|
const schema = it.schema[keyword];
|
|
return schema !== void 0 && !(0, util_1.alwaysValidSchema)(it, schema);
|
|
}
|
|
exports.default = def;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/vocabularies/applicator/thenElse.js
|
|
var require_thenElse = __commonJS({
|
|
"node_modules/ajv/dist/vocabularies/applicator/thenElse.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var util_1 = require_util();
|
|
var def = {
|
|
keyword: ["then", "else"],
|
|
schemaType: ["object", "boolean"],
|
|
code({ keyword, parentSchema, it }) {
|
|
if (parentSchema.if === void 0)
|
|
(0, util_1.checkStrictMode)(it, `"${keyword}" without "if" is ignored`);
|
|
}
|
|
};
|
|
exports.default = def;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/vocabularies/applicator/index.js
|
|
var require_applicator = __commonJS({
|
|
"node_modules/ajv/dist/vocabularies/applicator/index.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var additionalItems_1 = require_additionalItems();
|
|
var prefixItems_1 = require_prefixItems();
|
|
var items_1 = require_items();
|
|
var items2020_1 = require_items2020();
|
|
var contains_1 = require_contains();
|
|
var dependencies_1 = require_dependencies();
|
|
var propertyNames_1 = require_propertyNames();
|
|
var additionalProperties_1 = require_additionalProperties();
|
|
var properties_1 = require_properties();
|
|
var patternProperties_1 = require_patternProperties();
|
|
var not_1 = require_not();
|
|
var anyOf_1 = require_anyOf();
|
|
var oneOf_1 = require_oneOf();
|
|
var allOf_1 = require_allOf();
|
|
var if_1 = require_if();
|
|
var thenElse_1 = require_thenElse();
|
|
function getApplicator(draft2020 = false) {
|
|
const applicator = [
|
|
// any
|
|
not_1.default,
|
|
anyOf_1.default,
|
|
oneOf_1.default,
|
|
allOf_1.default,
|
|
if_1.default,
|
|
thenElse_1.default,
|
|
// object
|
|
propertyNames_1.default,
|
|
additionalProperties_1.default,
|
|
dependencies_1.default,
|
|
properties_1.default,
|
|
patternProperties_1.default
|
|
];
|
|
if (draft2020)
|
|
applicator.push(prefixItems_1.default, items2020_1.default);
|
|
else
|
|
applicator.push(additionalItems_1.default, items_1.default);
|
|
applicator.push(contains_1.default);
|
|
return applicator;
|
|
}
|
|
exports.default = getApplicator;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/vocabularies/format/format.js
|
|
var require_format = __commonJS({
|
|
"node_modules/ajv/dist/vocabularies/format/format.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var codegen_1 = require_codegen();
|
|
var error2 = {
|
|
message: ({ schemaCode }) => (0, codegen_1.str)`must match format "${schemaCode}"`,
|
|
params: ({ schemaCode }) => (0, codegen_1._)`{format: ${schemaCode}}`
|
|
};
|
|
var def = {
|
|
keyword: "format",
|
|
type: ["number", "string"],
|
|
schemaType: "string",
|
|
$data: true,
|
|
error: error2,
|
|
code(cxt, ruleType) {
|
|
const { gen, data, $data, schema, schemaCode, it } = cxt;
|
|
const { opts, errSchemaPath, schemaEnv, self } = it;
|
|
if (!opts.validateFormats)
|
|
return;
|
|
if ($data)
|
|
validate$DataFormat();
|
|
else
|
|
validateFormat();
|
|
function validate$DataFormat() {
|
|
const fmts = gen.scopeValue("formats", {
|
|
ref: self.formats,
|
|
code: opts.code.formats
|
|
});
|
|
const fDef = gen.const("fDef", (0, codegen_1._)`${fmts}[${schemaCode}]`);
|
|
const fType = gen.let("fType");
|
|
const format = gen.let("format");
|
|
gen.if((0, codegen_1._)`typeof ${fDef} == "object" && !(${fDef} instanceof RegExp)`, () => gen.assign(fType, (0, codegen_1._)`${fDef}.type || "string"`).assign(format, (0, codegen_1._)`${fDef}.validate`), () => gen.assign(fType, (0, codegen_1._)`"string"`).assign(format, fDef));
|
|
cxt.fail$data((0, codegen_1.or)(unknownFmt(), invalidFmt()));
|
|
function unknownFmt() {
|
|
if (opts.strictSchema === false)
|
|
return codegen_1.nil;
|
|
return (0, codegen_1._)`${schemaCode} && !${format}`;
|
|
}
|
|
function invalidFmt() {
|
|
const callFormat = schemaEnv.$async ? (0, codegen_1._)`(${fDef}.async ? await ${format}(${data}) : ${format}(${data}))` : (0, codegen_1._)`${format}(${data})`;
|
|
const validData = (0, codegen_1._)`(typeof ${format} == "function" ? ${callFormat} : ${format}.test(${data}))`;
|
|
return (0, codegen_1._)`${format} && ${format} !== true && ${fType} === ${ruleType} && !${validData}`;
|
|
}
|
|
}
|
|
function validateFormat() {
|
|
const formatDef = self.formats[schema];
|
|
if (!formatDef) {
|
|
unknownFormat();
|
|
return;
|
|
}
|
|
if (formatDef === true)
|
|
return;
|
|
const [fmtType, format, fmtRef] = getFormat(formatDef);
|
|
if (fmtType === ruleType)
|
|
cxt.pass(validCondition());
|
|
function unknownFormat() {
|
|
if (opts.strictSchema === false) {
|
|
self.logger.warn(unknownMsg());
|
|
return;
|
|
}
|
|
throw new Error(unknownMsg());
|
|
function unknownMsg() {
|
|
return `unknown format "${schema}" ignored in schema at path "${errSchemaPath}"`;
|
|
}
|
|
}
|
|
function getFormat(fmtDef) {
|
|
const code = fmtDef instanceof RegExp ? (0, codegen_1.regexpCode)(fmtDef) : opts.code.formats ? (0, codegen_1._)`${opts.code.formats}${(0, codegen_1.getProperty)(schema)}` : void 0;
|
|
const fmt = gen.scopeValue("formats", { key: schema, ref: fmtDef, code });
|
|
if (typeof fmtDef == "object" && !(fmtDef instanceof RegExp)) {
|
|
return [fmtDef.type || "string", fmtDef.validate, (0, codegen_1._)`${fmt}.validate`];
|
|
}
|
|
return ["string", fmtDef, fmt];
|
|
}
|
|
function validCondition() {
|
|
if (typeof formatDef == "object" && !(formatDef instanceof RegExp) && formatDef.async) {
|
|
if (!schemaEnv.$async)
|
|
throw new Error("async format in sync schema");
|
|
return (0, codegen_1._)`await ${fmtRef}(${data})`;
|
|
}
|
|
return typeof format == "function" ? (0, codegen_1._)`${fmtRef}(${data})` : (0, codegen_1._)`${fmtRef}.test(${data})`;
|
|
}
|
|
}
|
|
}
|
|
};
|
|
exports.default = def;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/vocabularies/format/index.js
|
|
var require_format2 = __commonJS({
|
|
"node_modules/ajv/dist/vocabularies/format/index.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var format_1 = require_format();
|
|
var format = [format_1.default];
|
|
exports.default = format;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/vocabularies/metadata.js
|
|
var require_metadata = __commonJS({
|
|
"node_modules/ajv/dist/vocabularies/metadata.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.contentVocabulary = exports.metadataVocabulary = void 0;
|
|
exports.metadataVocabulary = [
|
|
"title",
|
|
"description",
|
|
"default",
|
|
"deprecated",
|
|
"readOnly",
|
|
"writeOnly",
|
|
"examples"
|
|
];
|
|
exports.contentVocabulary = [
|
|
"contentMediaType",
|
|
"contentEncoding",
|
|
"contentSchema"
|
|
];
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/vocabularies/draft7.js
|
|
var require_draft7 = __commonJS({
|
|
"node_modules/ajv/dist/vocabularies/draft7.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var core_1 = require_core2();
|
|
var validation_1 = require_validation2();
|
|
var applicator_1 = require_applicator();
|
|
var format_1 = require_format2();
|
|
var metadata_1 = require_metadata();
|
|
var draft7Vocabularies = [
|
|
core_1.default,
|
|
validation_1.default,
|
|
(0, applicator_1.default)(),
|
|
format_1.default,
|
|
metadata_1.metadataVocabulary,
|
|
metadata_1.contentVocabulary
|
|
];
|
|
exports.default = draft7Vocabularies;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/vocabularies/discriminator/types.js
|
|
var require_types = __commonJS({
|
|
"node_modules/ajv/dist/vocabularies/discriminator/types.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.DiscrError = void 0;
|
|
var DiscrError;
|
|
(function(DiscrError2) {
|
|
DiscrError2["Tag"] = "tag";
|
|
DiscrError2["Mapping"] = "mapping";
|
|
})(DiscrError || (exports.DiscrError = DiscrError = {}));
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/vocabularies/discriminator/index.js
|
|
var require_discriminator = __commonJS({
|
|
"node_modules/ajv/dist/vocabularies/discriminator/index.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var codegen_1 = require_codegen();
|
|
var types_1 = require_types();
|
|
var compile_1 = require_compile();
|
|
var ref_error_1 = require_ref_error();
|
|
var util_1 = require_util();
|
|
var error2 = {
|
|
message: ({ params: { discrError, tagName } }) => discrError === types_1.DiscrError.Tag ? `tag "${tagName}" must be string` : `value of tag "${tagName}" must be in oneOf`,
|
|
params: ({ params: { discrError, tag, tagName } }) => (0, codegen_1._)`{error: ${discrError}, tag: ${tagName}, tagValue: ${tag}}`
|
|
};
|
|
var def = {
|
|
keyword: "discriminator",
|
|
type: "object",
|
|
schemaType: "object",
|
|
error: error2,
|
|
code(cxt) {
|
|
const { gen, data, schema, parentSchema, it } = cxt;
|
|
const { oneOf } = parentSchema;
|
|
if (!it.opts.discriminator) {
|
|
throw new Error("discriminator: requires discriminator option");
|
|
}
|
|
const tagName = schema.propertyName;
|
|
if (typeof tagName != "string")
|
|
throw new Error("discriminator: requires propertyName");
|
|
if (schema.mapping)
|
|
throw new Error("discriminator: mapping is not supported");
|
|
if (!oneOf)
|
|
throw new Error("discriminator: requires oneOf keyword");
|
|
const valid = gen.let("valid", false);
|
|
const tag = gen.const("tag", (0, codegen_1._)`${data}${(0, codegen_1.getProperty)(tagName)}`);
|
|
gen.if((0, codegen_1._)`typeof ${tag} == "string"`, () => validateMapping(), () => cxt.error(false, { discrError: types_1.DiscrError.Tag, tag, tagName }));
|
|
cxt.ok(valid);
|
|
function validateMapping() {
|
|
const mapping = getMapping();
|
|
gen.if(false);
|
|
for (const tagValue in mapping) {
|
|
gen.elseIf((0, codegen_1._)`${tag} === ${tagValue}`);
|
|
gen.assign(valid, applyTagSchema(mapping[tagValue]));
|
|
}
|
|
gen.else();
|
|
cxt.error(false, { discrError: types_1.DiscrError.Mapping, tag, tagName });
|
|
gen.endIf();
|
|
}
|
|
function applyTagSchema(schemaProp) {
|
|
const _valid = gen.name("valid");
|
|
const schCxt = cxt.subschema({ keyword: "oneOf", schemaProp }, _valid);
|
|
cxt.mergeEvaluated(schCxt, codegen_1.Name);
|
|
return _valid;
|
|
}
|
|
function getMapping() {
|
|
var _a2;
|
|
const oneOfMapping = {};
|
|
const topRequired = hasRequired(parentSchema);
|
|
let tagRequired = true;
|
|
for (let i = 0; i < oneOf.length; i++) {
|
|
let sch = oneOf[i];
|
|
if ((sch === null || sch === void 0 ? void 0 : sch.$ref) && !(0, util_1.schemaHasRulesButRef)(sch, it.self.RULES)) {
|
|
const ref = sch.$ref;
|
|
sch = compile_1.resolveRef.call(it.self, it.schemaEnv.root, it.baseId, ref);
|
|
if (sch instanceof compile_1.SchemaEnv)
|
|
sch = sch.schema;
|
|
if (sch === void 0)
|
|
throw new ref_error_1.default(it.opts.uriResolver, it.baseId, ref);
|
|
}
|
|
const propSch = (_a2 = sch === null || sch === void 0 ? void 0 : sch.properties) === null || _a2 === void 0 ? void 0 : _a2[tagName];
|
|
if (typeof propSch != "object") {
|
|
throw new Error(`discriminator: oneOf subschemas (or referenced schemas) must have "properties/${tagName}"`);
|
|
}
|
|
tagRequired = tagRequired && (topRequired || hasRequired(sch));
|
|
addMappings(propSch, i);
|
|
}
|
|
if (!tagRequired)
|
|
throw new Error(`discriminator: "${tagName}" must be required`);
|
|
return oneOfMapping;
|
|
function hasRequired({ required: required2 }) {
|
|
return Array.isArray(required2) && required2.includes(tagName);
|
|
}
|
|
function addMappings(sch, i) {
|
|
if (sch.const) {
|
|
addMapping(sch.const, i);
|
|
} else if (sch.enum) {
|
|
for (const tagValue of sch.enum) {
|
|
addMapping(tagValue, i);
|
|
}
|
|
} else {
|
|
throw new Error(`discriminator: "properties/${tagName}" must have "const" or "enum"`);
|
|
}
|
|
}
|
|
function addMapping(tagValue, i) {
|
|
if (typeof tagValue != "string" || tagValue in oneOfMapping) {
|
|
throw new Error(`discriminator: "${tagName}" values must be unique strings`);
|
|
}
|
|
oneOfMapping[tagValue] = i;
|
|
}
|
|
}
|
|
}
|
|
};
|
|
exports.default = def;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/refs/json-schema-draft-07.json
|
|
var require_json_schema_draft_07 = __commonJS({
|
|
"node_modules/ajv/dist/refs/json-schema-draft-07.json"(exports, module) {
|
|
module.exports = {
|
|
$schema: "http://json-schema.org/draft-07/schema#",
|
|
$id: "http://json-schema.org/draft-07/schema#",
|
|
title: "Core schema meta-schema",
|
|
definitions: {
|
|
schemaArray: {
|
|
type: "array",
|
|
minItems: 1,
|
|
items: { $ref: "#" }
|
|
},
|
|
nonNegativeInteger: {
|
|
type: "integer",
|
|
minimum: 0
|
|
},
|
|
nonNegativeIntegerDefault0: {
|
|
allOf: [{ $ref: "#/definitions/nonNegativeInteger" }, { default: 0 }]
|
|
},
|
|
simpleTypes: {
|
|
enum: ["array", "boolean", "integer", "null", "number", "object", "string"]
|
|
},
|
|
stringArray: {
|
|
type: "array",
|
|
items: { type: "string" },
|
|
uniqueItems: true,
|
|
default: []
|
|
}
|
|
},
|
|
type: ["object", "boolean"],
|
|
properties: {
|
|
$id: {
|
|
type: "string",
|
|
format: "uri-reference"
|
|
},
|
|
$schema: {
|
|
type: "string",
|
|
format: "uri"
|
|
},
|
|
$ref: {
|
|
type: "string",
|
|
format: "uri-reference"
|
|
},
|
|
$comment: {
|
|
type: "string"
|
|
},
|
|
title: {
|
|
type: "string"
|
|
},
|
|
description: {
|
|
type: "string"
|
|
},
|
|
default: true,
|
|
readOnly: {
|
|
type: "boolean",
|
|
default: false
|
|
},
|
|
examples: {
|
|
type: "array",
|
|
items: true
|
|
},
|
|
multipleOf: {
|
|
type: "number",
|
|
exclusiveMinimum: 0
|
|
},
|
|
maximum: {
|
|
type: "number"
|
|
},
|
|
exclusiveMaximum: {
|
|
type: "number"
|
|
},
|
|
minimum: {
|
|
type: "number"
|
|
},
|
|
exclusiveMinimum: {
|
|
type: "number"
|
|
},
|
|
maxLength: { $ref: "#/definitions/nonNegativeInteger" },
|
|
minLength: { $ref: "#/definitions/nonNegativeIntegerDefault0" },
|
|
pattern: {
|
|
type: "string",
|
|
format: "regex"
|
|
},
|
|
additionalItems: { $ref: "#" },
|
|
items: {
|
|
anyOf: [{ $ref: "#" }, { $ref: "#/definitions/schemaArray" }],
|
|
default: true
|
|
},
|
|
maxItems: { $ref: "#/definitions/nonNegativeInteger" },
|
|
minItems: { $ref: "#/definitions/nonNegativeIntegerDefault0" },
|
|
uniqueItems: {
|
|
type: "boolean",
|
|
default: false
|
|
},
|
|
contains: { $ref: "#" },
|
|
maxProperties: { $ref: "#/definitions/nonNegativeInteger" },
|
|
minProperties: { $ref: "#/definitions/nonNegativeIntegerDefault0" },
|
|
required: { $ref: "#/definitions/stringArray" },
|
|
additionalProperties: { $ref: "#" },
|
|
definitions: {
|
|
type: "object",
|
|
additionalProperties: { $ref: "#" },
|
|
default: {}
|
|
},
|
|
properties: {
|
|
type: "object",
|
|
additionalProperties: { $ref: "#" },
|
|
default: {}
|
|
},
|
|
patternProperties: {
|
|
type: "object",
|
|
additionalProperties: { $ref: "#" },
|
|
propertyNames: { format: "regex" },
|
|
default: {}
|
|
},
|
|
dependencies: {
|
|
type: "object",
|
|
additionalProperties: {
|
|
anyOf: [{ $ref: "#" }, { $ref: "#/definitions/stringArray" }]
|
|
}
|
|
},
|
|
propertyNames: { $ref: "#" },
|
|
const: true,
|
|
enum: {
|
|
type: "array",
|
|
items: true,
|
|
minItems: 1,
|
|
uniqueItems: true
|
|
},
|
|
type: {
|
|
anyOf: [
|
|
{ $ref: "#/definitions/simpleTypes" },
|
|
{
|
|
type: "array",
|
|
items: { $ref: "#/definitions/simpleTypes" },
|
|
minItems: 1,
|
|
uniqueItems: true
|
|
}
|
|
]
|
|
},
|
|
format: { type: "string" },
|
|
contentMediaType: { type: "string" },
|
|
contentEncoding: { type: "string" },
|
|
if: { $ref: "#" },
|
|
then: { $ref: "#" },
|
|
else: { $ref: "#" },
|
|
allOf: { $ref: "#/definitions/schemaArray" },
|
|
anyOf: { $ref: "#/definitions/schemaArray" },
|
|
oneOf: { $ref: "#/definitions/schemaArray" },
|
|
not: { $ref: "#" }
|
|
},
|
|
default: true
|
|
};
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv/dist/ajv.js
|
|
var require_ajv = __commonJS({
|
|
"node_modules/ajv/dist/ajv.js"(exports, module) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.MissingRefError = exports.ValidationError = exports.CodeGen = exports.Name = exports.nil = exports.stringify = exports.str = exports._ = exports.KeywordCxt = exports.Ajv = void 0;
|
|
var core_1 = require_core();
|
|
var draft7_1 = require_draft7();
|
|
var discriminator_1 = require_discriminator();
|
|
var draft7MetaSchema = require_json_schema_draft_07();
|
|
var META_SUPPORT_DATA = ["/properties"];
|
|
var META_SCHEMA_ID = "http://json-schema.org/draft-07/schema";
|
|
var Ajv2 = class extends core_1.default {
|
|
_addVocabularies() {
|
|
super._addVocabularies();
|
|
draft7_1.default.forEach((v) => this.addVocabulary(v));
|
|
if (this.opts.discriminator)
|
|
this.addKeyword(discriminator_1.default);
|
|
}
|
|
_addDefaultMetaSchema() {
|
|
super._addDefaultMetaSchema();
|
|
if (!this.opts.meta)
|
|
return;
|
|
const metaSchema = this.opts.$data ? this.$dataMetaSchema(draft7MetaSchema, META_SUPPORT_DATA) : draft7MetaSchema;
|
|
this.addMetaSchema(metaSchema, META_SCHEMA_ID, false);
|
|
this.refs["http://json-schema.org/schema"] = META_SCHEMA_ID;
|
|
}
|
|
defaultMeta() {
|
|
return this.opts.defaultMeta = super.defaultMeta() || (this.getSchema(META_SCHEMA_ID) ? META_SCHEMA_ID : void 0);
|
|
}
|
|
};
|
|
exports.Ajv = Ajv2;
|
|
module.exports = exports = Ajv2;
|
|
module.exports.Ajv = Ajv2;
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.default = Ajv2;
|
|
var validate_1 = require_validate();
|
|
Object.defineProperty(exports, "KeywordCxt", { enumerable: true, get: function() {
|
|
return validate_1.KeywordCxt;
|
|
} });
|
|
var codegen_1 = require_codegen();
|
|
Object.defineProperty(exports, "_", { enumerable: true, get: function() {
|
|
return codegen_1._;
|
|
} });
|
|
Object.defineProperty(exports, "str", { enumerable: true, get: function() {
|
|
return codegen_1.str;
|
|
} });
|
|
Object.defineProperty(exports, "stringify", { enumerable: true, get: function() {
|
|
return codegen_1.stringify;
|
|
} });
|
|
Object.defineProperty(exports, "nil", { enumerable: true, get: function() {
|
|
return codegen_1.nil;
|
|
} });
|
|
Object.defineProperty(exports, "Name", { enumerable: true, get: function() {
|
|
return codegen_1.Name;
|
|
} });
|
|
Object.defineProperty(exports, "CodeGen", { enumerable: true, get: function() {
|
|
return codegen_1.CodeGen;
|
|
} });
|
|
var validation_error_1 = require_validation_error();
|
|
Object.defineProperty(exports, "ValidationError", { enumerable: true, get: function() {
|
|
return validation_error_1.default;
|
|
} });
|
|
var ref_error_1 = require_ref_error();
|
|
Object.defineProperty(exports, "MissingRefError", { enumerable: true, get: function() {
|
|
return ref_error_1.default;
|
|
} });
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv-formats/dist/formats.js
|
|
var require_formats = __commonJS({
|
|
"node_modules/ajv-formats/dist/formats.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.formatNames = exports.fastFormats = exports.fullFormats = void 0;
|
|
function fmtDef(validate, compare) {
|
|
return { validate, compare };
|
|
}
|
|
exports.fullFormats = {
|
|
// date: http://tools.ietf.org/html/rfc3339#section-5.6
|
|
date: fmtDef(date4, compareDate),
|
|
// date-time: http://tools.ietf.org/html/rfc3339#section-5.6
|
|
time: fmtDef(getTime(true), compareTime),
|
|
"date-time": fmtDef(getDateTime(true), compareDateTime),
|
|
"iso-time": fmtDef(getTime(), compareIsoTime),
|
|
"iso-date-time": fmtDef(getDateTime(), compareIsoDateTime),
|
|
// duration: https://tools.ietf.org/html/rfc3339#appendix-A
|
|
duration: /^P(?!$)((\d+Y)?(\d+M)?(\d+D)?(T(?=\d)(\d+H)?(\d+M)?(\d+S)?)?|(\d+W)?)$/,
|
|
uri,
|
|
"uri-reference": /^(?:[a-z][a-z0-9+\-.]*:)?(?:\/?\/(?:(?:[a-z0-9\-._~!$&'()*+,;=:]|%[0-9a-f]{2})*@)?(?:\[(?:(?:(?:(?:[0-9a-f]{1,4}:){6}|::(?:[0-9a-f]{1,4}:){5}|(?:[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){4}|(?:(?:[0-9a-f]{1,4}:){0,1}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){3}|(?:(?:[0-9a-f]{1,4}:){0,2}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){2}|(?:(?:[0-9a-f]{1,4}:){0,3}[0-9a-f]{1,4})?::[0-9a-f]{1,4}:|(?:(?:[0-9a-f]{1,4}:){0,4}[0-9a-f]{1,4})?::)(?:[0-9a-f]{1,4}:[0-9a-f]{1,4}|(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?))|(?:(?:[0-9a-f]{1,4}:){0,5}[0-9a-f]{1,4})?::[0-9a-f]{1,4}|(?:(?:[0-9a-f]{1,4}:){0,6}[0-9a-f]{1,4})?::)|[Vv][0-9a-f]+\.[a-z0-9\-._~!$&'()*+,;=:]+)\]|(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?)|(?:[a-z0-9\-._~!$&'"()*+,;=]|%[0-9a-f]{2})*)(?::\d*)?(?:\/(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})*)*|\/(?:(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})+(?:\/(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})*)*)?|(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})+(?:\/(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})*)*)?(?:\?(?:[a-z0-9\-._~!$&'"()*+,;=:@/?]|%[0-9a-f]{2})*)?(?:#(?:[a-z0-9\-._~!$&'"()*+,;=:@/?]|%[0-9a-f]{2})*)?$/i,
|
|
// uri-template: https://tools.ietf.org/html/rfc6570
|
|
"uri-template": /^(?:(?:[^\x00-\x20"'<>%\\^`{|}]|%[0-9a-f]{2})|\{[+#./;?&=,!@|]?(?:[a-z0-9_]|%[0-9a-f]{2})+(?::[1-9][0-9]{0,3}|\*)?(?:,(?:[a-z0-9_]|%[0-9a-f]{2})+(?::[1-9][0-9]{0,3}|\*)?)*\})*$/i,
|
|
// For the source: https://gist.github.com/dperini/729294
|
|
// For test cases: https://mathiasbynens.be/demo/url-regex
|
|
url: /^(?:https?|ftp):\/\/(?:\S+(?::\S*)?@)?(?:(?!(?:10|127)(?:\.\d{1,3}){3})(?!(?:169\.254|192\.168)(?:\.\d{1,3}){2})(?!172\.(?:1[6-9]|2\d|3[0-1])(?:\.\d{1,3}){2})(?:[1-9]\d?|1\d\d|2[01]\d|22[0-3])(?:\.(?:1?\d{1,2}|2[0-4]\d|25[0-5])){2}(?:\.(?:[1-9]\d?|1\d\d|2[0-4]\d|25[0-4]))|(?:(?:[a-z0-9\u{00a1}-\u{ffff}]+-)*[a-z0-9\u{00a1}-\u{ffff}]+)(?:\.(?:[a-z0-9\u{00a1}-\u{ffff}]+-)*[a-z0-9\u{00a1}-\u{ffff}]+)*(?:\.(?:[a-z\u{00a1}-\u{ffff}]{2,})))(?::\d{2,5})?(?:\/[^\s]*)?$/iu,
|
|
email: /^[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?$/i,
|
|
hostname: /^(?=.{1,253}\.?$)[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?(?:\.[a-z0-9](?:[-0-9a-z]{0,61}[0-9a-z])?)*\.?$/i,
|
|
// optimized https://www.safaribooksonline.com/library/view/regular-expressions-cookbook/9780596802837/ch07s16.html
|
|
ipv4: /^(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)\.){3}(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)$/,
|
|
ipv6: /^((([0-9a-f]{1,4}:){7}([0-9a-f]{1,4}|:))|(([0-9a-f]{1,4}:){6}(:[0-9a-f]{1,4}|((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9a-f]{1,4}:){5}(((:[0-9a-f]{1,4}){1,2})|:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9a-f]{1,4}:){4}(((:[0-9a-f]{1,4}){1,3})|((:[0-9a-f]{1,4})?:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9a-f]{1,4}:){3}(((:[0-9a-f]{1,4}){1,4})|((:[0-9a-f]{1,4}){0,2}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9a-f]{1,4}:){2}(((:[0-9a-f]{1,4}){1,5})|((:[0-9a-f]{1,4}){0,3}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9a-f]{1,4}:){1}(((:[0-9a-f]{1,4}){1,6})|((:[0-9a-f]{1,4}){0,4}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(:(((:[0-9a-f]{1,4}){1,7})|((:[0-9a-f]{1,4}){0,5}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:)))$/i,
|
|
regex,
|
|
// uuid: http://tools.ietf.org/html/rfc4122
|
|
uuid: /^(?:urn:uuid:)?[0-9a-f]{8}-(?:[0-9a-f]{4}-){3}[0-9a-f]{12}$/i,
|
|
// JSON-pointer: https://tools.ietf.org/html/rfc6901
|
|
// uri fragment: https://tools.ietf.org/html/rfc3986#appendix-A
|
|
"json-pointer": /^(?:\/(?:[^~/]|~0|~1)*)*$/,
|
|
"json-pointer-uri-fragment": /^#(?:\/(?:[a-z0-9_\-.!$&'()*+,;:=@]|%[0-9a-f]{2}|~0|~1)*)*$/i,
|
|
// relative JSON-pointer: http://tools.ietf.org/html/draft-luff-relative-json-pointer-00
|
|
"relative-json-pointer": /^(?:0|[1-9][0-9]*)(?:#|(?:\/(?:[^~/]|~0|~1)*)*)$/,
|
|
// the following formats are used by the openapi specification: https://spec.openapis.org/oas/v3.0.0#data-types
|
|
// byte: https://github.com/miguelmota/is-base64
|
|
byte,
|
|
// signed 32 bit integer
|
|
int32: { type: "number", validate: validateInt32 },
|
|
// signed 64 bit integer
|
|
int64: { type: "number", validate: validateInt64 },
|
|
// C-type float
|
|
float: { type: "number", validate: validateNumber },
|
|
// C-type double
|
|
double: { type: "number", validate: validateNumber },
|
|
// hint to the UI to hide input strings
|
|
password: true,
|
|
// unchecked string payload
|
|
binary: true
|
|
};
|
|
exports.fastFormats = {
|
|
...exports.fullFormats,
|
|
date: fmtDef(/^\d\d\d\d-[0-1]\d-[0-3]\d$/, compareDate),
|
|
time: fmtDef(/^(?:[0-2]\d:[0-5]\d:[0-5]\d|23:59:60)(?:\.\d+)?(?:z|[+-]\d\d(?::?\d\d)?)$/i, compareTime),
|
|
"date-time": fmtDef(/^\d\d\d\d-[0-1]\d-[0-3]\dt(?:[0-2]\d:[0-5]\d:[0-5]\d|23:59:60)(?:\.\d+)?(?:z|[+-]\d\d(?::?\d\d)?)$/i, compareDateTime),
|
|
"iso-time": fmtDef(/^(?:[0-2]\d:[0-5]\d:[0-5]\d|23:59:60)(?:\.\d+)?(?:z|[+-]\d\d(?::?\d\d)?)?$/i, compareIsoTime),
|
|
"iso-date-time": fmtDef(/^\d\d\d\d-[0-1]\d-[0-3]\d[t\s](?:[0-2]\d:[0-5]\d:[0-5]\d|23:59:60)(?:\.\d+)?(?:z|[+-]\d\d(?::?\d\d)?)?$/i, compareIsoDateTime),
|
|
// uri: https://github.com/mafintosh/is-my-json-valid/blob/master/formats.js
|
|
uri: /^(?:[a-z][a-z0-9+\-.]*:)(?:\/?\/)?[^\s]*$/i,
|
|
"uri-reference": /^(?:(?:[a-z][a-z0-9+\-.]*:)?\/?\/)?(?:[^\\\s#][^\s#]*)?(?:#[^\\\s]*)?$/i,
|
|
// email (sources from jsen validator):
|
|
// http://stackoverflow.com/questions/201323/using-a-regular-expression-to-validate-an-email-address#answer-8829363
|
|
// http://www.w3.org/TR/html5/forms.html#valid-e-mail-address (search for 'wilful violation')
|
|
email: /^[a-z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?(?:\.[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?)*$/i
|
|
};
|
|
exports.formatNames = Object.keys(exports.fullFormats);
|
|
function isLeapYear(year) {
|
|
return year % 4 === 0 && (year % 100 !== 0 || year % 400 === 0);
|
|
}
|
|
var DATE = /^(\d\d\d\d)-(\d\d)-(\d\d)$/;
|
|
var DAYS = [0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
|
|
function date4(str) {
|
|
const matches = DATE.exec(str);
|
|
if (!matches)
|
|
return false;
|
|
const year = +matches[1];
|
|
const month = +matches[2];
|
|
const day = +matches[3];
|
|
return month >= 1 && month <= 12 && day >= 1 && day <= (month === 2 && isLeapYear(year) ? 29 : DAYS[month]);
|
|
}
|
|
function compareDate(d1, d2) {
|
|
if (!(d1 && d2))
|
|
return void 0;
|
|
if (d1 > d2)
|
|
return 1;
|
|
if (d1 < d2)
|
|
return -1;
|
|
return 0;
|
|
}
|
|
var TIME = /^(\d\d):(\d\d):(\d\d(?:\.\d+)?)(z|([+-])(\d\d)(?::?(\d\d))?)?$/i;
|
|
function getTime(strictTimeZone) {
|
|
return function time3(str) {
|
|
const matches = TIME.exec(str);
|
|
if (!matches)
|
|
return false;
|
|
const hr = +matches[1];
|
|
const min = +matches[2];
|
|
const sec = +matches[3];
|
|
const tz = matches[4];
|
|
const tzSign = matches[5] === "-" ? -1 : 1;
|
|
const tzH = +(matches[6] || 0);
|
|
const tzM = +(matches[7] || 0);
|
|
if (tzH > 23 || tzM > 59 || strictTimeZone && !tz)
|
|
return false;
|
|
if (hr <= 23 && min <= 59 && sec < 60)
|
|
return true;
|
|
const utcMin = min - tzM * tzSign;
|
|
const utcHr = hr - tzH * tzSign - (utcMin < 0 ? 1 : 0);
|
|
return (utcHr === 23 || utcHr === -1) && (utcMin === 59 || utcMin === -1) && sec < 61;
|
|
};
|
|
}
|
|
function compareTime(s1, s2) {
|
|
if (!(s1 && s2))
|
|
return void 0;
|
|
const t1 = (/* @__PURE__ */ new Date("2020-01-01T" + s1)).valueOf();
|
|
const t2 = (/* @__PURE__ */ new Date("2020-01-01T" + s2)).valueOf();
|
|
if (!(t1 && t2))
|
|
return void 0;
|
|
return t1 - t2;
|
|
}
|
|
function compareIsoTime(t1, t2) {
|
|
if (!(t1 && t2))
|
|
return void 0;
|
|
const a1 = TIME.exec(t1);
|
|
const a2 = TIME.exec(t2);
|
|
if (!(a1 && a2))
|
|
return void 0;
|
|
t1 = a1[1] + a1[2] + a1[3];
|
|
t2 = a2[1] + a2[2] + a2[3];
|
|
if (t1 > t2)
|
|
return 1;
|
|
if (t1 < t2)
|
|
return -1;
|
|
return 0;
|
|
}
|
|
var DATE_TIME_SEPARATOR = /t|\s/i;
|
|
function getDateTime(strictTimeZone) {
|
|
const time3 = getTime(strictTimeZone);
|
|
return function date_time(str) {
|
|
const dateTime = str.split(DATE_TIME_SEPARATOR);
|
|
return dateTime.length === 2 && date4(dateTime[0]) && time3(dateTime[1]);
|
|
};
|
|
}
|
|
function compareDateTime(dt1, dt2) {
|
|
if (!(dt1 && dt2))
|
|
return void 0;
|
|
const d1 = new Date(dt1).valueOf();
|
|
const d2 = new Date(dt2).valueOf();
|
|
if (!(d1 && d2))
|
|
return void 0;
|
|
return d1 - d2;
|
|
}
|
|
function compareIsoDateTime(dt1, dt2) {
|
|
if (!(dt1 && dt2))
|
|
return void 0;
|
|
const [d1, t1] = dt1.split(DATE_TIME_SEPARATOR);
|
|
const [d2, t2] = dt2.split(DATE_TIME_SEPARATOR);
|
|
const res = compareDate(d1, d2);
|
|
if (res === void 0)
|
|
return void 0;
|
|
return res || compareTime(t1, t2);
|
|
}
|
|
var NOT_URI_FRAGMENT = /\/|:/;
|
|
var URI = /^(?:[a-z][a-z0-9+\-.]*:)(?:\/?\/(?:(?:[a-z0-9\-._~!$&'()*+,;=:]|%[0-9a-f]{2})*@)?(?:\[(?:(?:(?:(?:[0-9a-f]{1,4}:){6}|::(?:[0-9a-f]{1,4}:){5}|(?:[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){4}|(?:(?:[0-9a-f]{1,4}:){0,1}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){3}|(?:(?:[0-9a-f]{1,4}:){0,2}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){2}|(?:(?:[0-9a-f]{1,4}:){0,3}[0-9a-f]{1,4})?::[0-9a-f]{1,4}:|(?:(?:[0-9a-f]{1,4}:){0,4}[0-9a-f]{1,4})?::)(?:[0-9a-f]{1,4}:[0-9a-f]{1,4}|(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?))|(?:(?:[0-9a-f]{1,4}:){0,5}[0-9a-f]{1,4})?::[0-9a-f]{1,4}|(?:(?:[0-9a-f]{1,4}:){0,6}[0-9a-f]{1,4})?::)|[Vv][0-9a-f]+\.[a-z0-9\-._~!$&'()*+,;=:]+)\]|(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?)|(?:[a-z0-9\-._~!$&'()*+,;=]|%[0-9a-f]{2})*)(?::\d*)?(?:\/(?:[a-z0-9\-._~!$&'()*+,;=:@]|%[0-9a-f]{2})*)*|\/(?:(?:[a-z0-9\-._~!$&'()*+,;=:@]|%[0-9a-f]{2})+(?:\/(?:[a-z0-9\-._~!$&'()*+,;=:@]|%[0-9a-f]{2})*)*)?|(?:[a-z0-9\-._~!$&'()*+,;=:@]|%[0-9a-f]{2})+(?:\/(?:[a-z0-9\-._~!$&'()*+,;=:@]|%[0-9a-f]{2})*)*)(?:\?(?:[a-z0-9\-._~!$&'()*+,;=:@/?]|%[0-9a-f]{2})*)?(?:#(?:[a-z0-9\-._~!$&'()*+,;=:@/?]|%[0-9a-f]{2})*)?$/i;
|
|
function uri(str) {
|
|
return NOT_URI_FRAGMENT.test(str) && URI.test(str);
|
|
}
|
|
var BYTE = /^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$/gm;
|
|
function byte(str) {
|
|
BYTE.lastIndex = 0;
|
|
return BYTE.test(str);
|
|
}
|
|
var MIN_INT32 = -(2 ** 31);
|
|
var MAX_INT32 = 2 ** 31 - 1;
|
|
function validateInt32(value) {
|
|
return Number.isInteger(value) && value <= MAX_INT32 && value >= MIN_INT32;
|
|
}
|
|
function validateInt64(value) {
|
|
return Number.isInteger(value);
|
|
}
|
|
function validateNumber() {
|
|
return true;
|
|
}
|
|
var Z_ANCHOR = /[^\\]\\Z/;
|
|
function regex(str) {
|
|
if (Z_ANCHOR.test(str))
|
|
return false;
|
|
try {
|
|
new RegExp(str);
|
|
return true;
|
|
} catch (e) {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv-formats/dist/limit.js
|
|
var require_limit = __commonJS({
|
|
"node_modules/ajv-formats/dist/limit.js"(exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.formatLimitDefinition = void 0;
|
|
var ajv_1 = require_ajv();
|
|
var codegen_1 = require_codegen();
|
|
var ops = codegen_1.operators;
|
|
var KWDs = {
|
|
formatMaximum: { okStr: "<=", ok: ops.LTE, fail: ops.GT },
|
|
formatMinimum: { okStr: ">=", ok: ops.GTE, fail: ops.LT },
|
|
formatExclusiveMaximum: { okStr: "<", ok: ops.LT, fail: ops.GTE },
|
|
formatExclusiveMinimum: { okStr: ">", ok: ops.GT, fail: ops.LTE }
|
|
};
|
|
var error2 = {
|
|
message: ({ keyword, schemaCode }) => (0, codegen_1.str)`should be ${KWDs[keyword].okStr} ${schemaCode}`,
|
|
params: ({ keyword, schemaCode }) => (0, codegen_1._)`{comparison: ${KWDs[keyword].okStr}, limit: ${schemaCode}}`
|
|
};
|
|
exports.formatLimitDefinition = {
|
|
keyword: Object.keys(KWDs),
|
|
type: "string",
|
|
schemaType: "string",
|
|
$data: true,
|
|
error: error2,
|
|
code(cxt) {
|
|
const { gen, data, schemaCode, keyword, it } = cxt;
|
|
const { opts, self } = it;
|
|
if (!opts.validateFormats)
|
|
return;
|
|
const fCxt = new ajv_1.KeywordCxt(it, self.RULES.all.format.definition, "format");
|
|
if (fCxt.$data)
|
|
validate$DataFormat();
|
|
else
|
|
validateFormat();
|
|
function validate$DataFormat() {
|
|
const fmts = gen.scopeValue("formats", {
|
|
ref: self.formats,
|
|
code: opts.code.formats
|
|
});
|
|
const fmt = gen.const("fmt", (0, codegen_1._)`${fmts}[${fCxt.schemaCode}]`);
|
|
cxt.fail$data((0, codegen_1.or)((0, codegen_1._)`typeof ${fmt} != "object"`, (0, codegen_1._)`${fmt} instanceof RegExp`, (0, codegen_1._)`typeof ${fmt}.compare != "function"`, compareCode(fmt)));
|
|
}
|
|
function validateFormat() {
|
|
const format = fCxt.schema;
|
|
const fmtDef = self.formats[format];
|
|
if (!fmtDef || fmtDef === true)
|
|
return;
|
|
if (typeof fmtDef != "object" || fmtDef instanceof RegExp || typeof fmtDef.compare != "function") {
|
|
throw new Error(`"${keyword}": format "${format}" does not define "compare" function`);
|
|
}
|
|
const fmt = gen.scopeValue("formats", {
|
|
key: format,
|
|
ref: fmtDef,
|
|
code: opts.code.formats ? (0, codegen_1._)`${opts.code.formats}${(0, codegen_1.getProperty)(format)}` : void 0
|
|
});
|
|
cxt.fail$data(compareCode(fmt));
|
|
}
|
|
function compareCode(fmt) {
|
|
return (0, codegen_1._)`${fmt}.compare(${data}, ${schemaCode}) ${KWDs[keyword].fail} 0`;
|
|
}
|
|
},
|
|
dependencies: ["format"]
|
|
};
|
|
var formatLimitPlugin = (ajv) => {
|
|
ajv.addKeyword(exports.formatLimitDefinition);
|
|
return ajv;
|
|
};
|
|
exports.default = formatLimitPlugin;
|
|
}
|
|
});
|
|
|
|
// node_modules/ajv-formats/dist/index.js
|
|
var require_dist = __commonJS({
|
|
"node_modules/ajv-formats/dist/index.js"(exports, module) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var formats_1 = require_formats();
|
|
var limit_1 = require_limit();
|
|
var codegen_1 = require_codegen();
|
|
var fullName = new codegen_1.Name("fullFormats");
|
|
var fastName = new codegen_1.Name("fastFormats");
|
|
var formatsPlugin = (ajv, opts = { keywords: true }) => {
|
|
if (Array.isArray(opts)) {
|
|
addFormats(ajv, opts, formats_1.fullFormats, fullName);
|
|
return ajv;
|
|
}
|
|
const [formats, exportName] = opts.mode === "fast" ? [formats_1.fastFormats, fastName] : [formats_1.fullFormats, fullName];
|
|
const list = opts.formats || formats_1.formatNames;
|
|
addFormats(ajv, list, formats, exportName);
|
|
if (opts.keywords)
|
|
(0, limit_1.default)(ajv);
|
|
return ajv;
|
|
};
|
|
formatsPlugin.get = (name, mode = "full") => {
|
|
const formats = mode === "fast" ? formats_1.fastFormats : formats_1.fullFormats;
|
|
const f = formats[name];
|
|
if (!f)
|
|
throw new Error(`Unknown format "${name}"`);
|
|
return f;
|
|
};
|
|
function addFormats(ajv, list, fs4, exportName) {
|
|
var _a2;
|
|
var _b;
|
|
(_a2 = (_b = ajv.opts.code).formats) !== null && _a2 !== void 0 ? _a2 : _b.formats = (0, codegen_1._)`require("ajv-formats/dist/formats").${exportName}`;
|
|
for (const f of list)
|
|
ajv.addFormat(f, fs4[f]);
|
|
}
|
|
module.exports = exports = formatsPlugin;
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.default = formatsPlugin;
|
|
}
|
|
});
|
|
|
|
// node_modules/dotenv/package.json
|
|
var require_package = __commonJS({
|
|
"node_modules/dotenv/package.json"(exports, module) {
|
|
module.exports = {
|
|
name: "dotenv",
|
|
version: "16.6.1",
|
|
description: "Loads environment variables from .env file",
|
|
main: "lib/main.js",
|
|
types: "lib/main.d.ts",
|
|
exports: {
|
|
".": {
|
|
types: "./lib/main.d.ts",
|
|
require: "./lib/main.js",
|
|
default: "./lib/main.js"
|
|
},
|
|
"./config": "./config.js",
|
|
"./config.js": "./config.js",
|
|
"./lib/env-options": "./lib/env-options.js",
|
|
"./lib/env-options.js": "./lib/env-options.js",
|
|
"./lib/cli-options": "./lib/cli-options.js",
|
|
"./lib/cli-options.js": "./lib/cli-options.js",
|
|
"./package.json": "./package.json"
|
|
},
|
|
scripts: {
|
|
"dts-check": "tsc --project tests/types/tsconfig.json",
|
|
lint: "standard",
|
|
pretest: "npm run lint && npm run dts-check",
|
|
test: "tap run --allow-empty-coverage --disable-coverage --timeout=60000",
|
|
"test:coverage": "tap run --show-full-coverage --timeout=60000 --coverage-report=text --coverage-report=lcov",
|
|
prerelease: "npm test",
|
|
release: "standard-version"
|
|
},
|
|
repository: {
|
|
type: "git",
|
|
url: "git://github.com/motdotla/dotenv.git"
|
|
},
|
|
homepage: "https://github.com/motdotla/dotenv#readme",
|
|
funding: "https://dotenvx.com",
|
|
keywords: [
|
|
"dotenv",
|
|
"env",
|
|
".env",
|
|
"environment",
|
|
"variables",
|
|
"config",
|
|
"settings"
|
|
],
|
|
readmeFilename: "README.md",
|
|
license: "BSD-2-Clause",
|
|
devDependencies: {
|
|
"@types/node": "^18.11.3",
|
|
decache: "^4.6.2",
|
|
sinon: "^14.0.1",
|
|
standard: "^17.0.0",
|
|
"standard-version": "^9.5.0",
|
|
tap: "^19.2.0",
|
|
typescript: "^4.8.4"
|
|
},
|
|
engines: {
|
|
node: ">=12"
|
|
},
|
|
browser: {
|
|
fs: false
|
|
}
|
|
};
|
|
}
|
|
});
|
|
|
|
// node_modules/dotenv/lib/main.js
|
|
var require_main = __commonJS({
|
|
"node_modules/dotenv/lib/main.js"(exports, module) {
|
|
var fs4 = __require("fs");
|
|
var path3 = __require("path");
|
|
var os3 = __require("os");
|
|
var crypto2 = __require("crypto");
|
|
var packageJson = require_package();
|
|
var version2 = packageJson.version;
|
|
var LINE = /(?:^|^)\s*(?:export\s+)?([\w.-]+)(?:\s*=\s*?|:\s+?)(\s*'(?:\\'|[^'])*'|\s*"(?:\\"|[^"])*"|\s*`(?:\\`|[^`])*`|[^#\r\n]+)?\s*(?:#.*)?(?:$|$)/mg;
|
|
function parse4(src) {
|
|
const obj = {};
|
|
let lines = src.toString();
|
|
lines = lines.replace(/\r\n?/mg, "\n");
|
|
let match;
|
|
while ((match = LINE.exec(lines)) != null) {
|
|
const key = match[1];
|
|
let value = match[2] || "";
|
|
value = value.trim();
|
|
const maybeQuote = value[0];
|
|
value = value.replace(/^(['"`])([\s\S]*)\1$/mg, "$2");
|
|
if (maybeQuote === '"') {
|
|
value = value.replace(/\\n/g, "\n");
|
|
value = value.replace(/\\r/g, "\r");
|
|
}
|
|
obj[key] = value;
|
|
}
|
|
return obj;
|
|
}
|
|
function _parseVault(options) {
|
|
options = options || {};
|
|
const vaultPath = _vaultPath(options);
|
|
options.path = vaultPath;
|
|
const result = DotenvModule.configDotenv(options);
|
|
if (!result.parsed) {
|
|
const err = new Error(`MISSING_DATA: Cannot parse ${vaultPath} for an unknown reason`);
|
|
err.code = "MISSING_DATA";
|
|
throw err;
|
|
}
|
|
const keys = _dotenvKey(options).split(",");
|
|
const length = keys.length;
|
|
let decrypted;
|
|
for (let i = 0; i < length; i++) {
|
|
try {
|
|
const key = keys[i].trim();
|
|
const attrs = _instructions(result, key);
|
|
decrypted = DotenvModule.decrypt(attrs.ciphertext, attrs.key);
|
|
break;
|
|
} catch (error2) {
|
|
if (i + 1 >= length) {
|
|
throw error2;
|
|
}
|
|
}
|
|
}
|
|
return DotenvModule.parse(decrypted);
|
|
}
|
|
function _warn(message) {
|
|
console.log(`[dotenv@${version2}][WARN] ${message}`);
|
|
}
|
|
function _debug(message) {
|
|
console.log(`[dotenv@${version2}][DEBUG] ${message}`);
|
|
}
|
|
function _log(message) {
|
|
console.log(`[dotenv@${version2}] ${message}`);
|
|
}
|
|
function _dotenvKey(options) {
|
|
if (options && options.DOTENV_KEY && options.DOTENV_KEY.length > 0) {
|
|
return options.DOTENV_KEY;
|
|
}
|
|
if (process.env.DOTENV_KEY && process.env.DOTENV_KEY.length > 0) {
|
|
return process.env.DOTENV_KEY;
|
|
}
|
|
return "";
|
|
}
|
|
function _instructions(result, dotenvKey) {
|
|
let uri;
|
|
try {
|
|
uri = new URL(dotenvKey);
|
|
} catch (error2) {
|
|
if (error2.code === "ERR_INVALID_URL") {
|
|
const err = new Error("INVALID_DOTENV_KEY: Wrong format. Must be in valid uri format like dotenv://:key_1234@dotenvx.com/vault/.env.vault?environment=development");
|
|
err.code = "INVALID_DOTENV_KEY";
|
|
throw err;
|
|
}
|
|
throw error2;
|
|
}
|
|
const key = uri.password;
|
|
if (!key) {
|
|
const err = new Error("INVALID_DOTENV_KEY: Missing key part");
|
|
err.code = "INVALID_DOTENV_KEY";
|
|
throw err;
|
|
}
|
|
const environment = uri.searchParams.get("environment");
|
|
if (!environment) {
|
|
const err = new Error("INVALID_DOTENV_KEY: Missing environment part");
|
|
err.code = "INVALID_DOTENV_KEY";
|
|
throw err;
|
|
}
|
|
const environmentKey = `DOTENV_VAULT_${environment.toUpperCase()}`;
|
|
const ciphertext = result.parsed[environmentKey];
|
|
if (!ciphertext) {
|
|
const err = new Error(`NOT_FOUND_DOTENV_ENVIRONMENT: Cannot locate environment ${environmentKey} in your .env.vault file.`);
|
|
err.code = "NOT_FOUND_DOTENV_ENVIRONMENT";
|
|
throw err;
|
|
}
|
|
return { ciphertext, key };
|
|
}
|
|
function _vaultPath(options) {
|
|
let possibleVaultPath = null;
|
|
if (options && options.path && options.path.length > 0) {
|
|
if (Array.isArray(options.path)) {
|
|
for (const filepath of options.path) {
|
|
if (fs4.existsSync(filepath)) {
|
|
possibleVaultPath = filepath.endsWith(".vault") ? filepath : `${filepath}.vault`;
|
|
}
|
|
}
|
|
} else {
|
|
possibleVaultPath = options.path.endsWith(".vault") ? options.path : `${options.path}.vault`;
|
|
}
|
|
} else {
|
|
possibleVaultPath = path3.resolve(process.cwd(), ".env.vault");
|
|
}
|
|
if (fs4.existsSync(possibleVaultPath)) {
|
|
return possibleVaultPath;
|
|
}
|
|
return null;
|
|
}
|
|
function _resolveHome(envPath) {
|
|
return envPath[0] === "~" ? path3.join(os3.homedir(), envPath.slice(1)) : envPath;
|
|
}
|
|
function _configVault(options) {
|
|
const debug = Boolean(options && options.debug);
|
|
const quiet = options && "quiet" in options ? options.quiet : true;
|
|
if (debug || !quiet) {
|
|
_log("Loading env from encrypted .env.vault");
|
|
}
|
|
const parsed = DotenvModule._parseVault(options);
|
|
let processEnv = process.env;
|
|
if (options && options.processEnv != null) {
|
|
processEnv = options.processEnv;
|
|
}
|
|
DotenvModule.populate(processEnv, parsed, options);
|
|
return { parsed };
|
|
}
|
|
function configDotenv(options) {
|
|
const dotenvPath = path3.resolve(process.cwd(), ".env");
|
|
let encoding = "utf8";
|
|
const debug = Boolean(options && options.debug);
|
|
const quiet = options && "quiet" in options ? options.quiet : true;
|
|
if (options && options.encoding) {
|
|
encoding = options.encoding;
|
|
} else {
|
|
if (debug) {
|
|
_debug("No encoding is specified. UTF-8 is used by default");
|
|
}
|
|
}
|
|
let optionPaths = [dotenvPath];
|
|
if (options && options.path) {
|
|
if (!Array.isArray(options.path)) {
|
|
optionPaths = [_resolveHome(options.path)];
|
|
} else {
|
|
optionPaths = [];
|
|
for (const filepath of options.path) {
|
|
optionPaths.push(_resolveHome(filepath));
|
|
}
|
|
}
|
|
}
|
|
let lastError;
|
|
const parsedAll = {};
|
|
for (const path4 of optionPaths) {
|
|
try {
|
|
const parsed = DotenvModule.parse(fs4.readFileSync(path4, { encoding }));
|
|
DotenvModule.populate(parsedAll, parsed, options);
|
|
} catch (e) {
|
|
if (debug) {
|
|
_debug(`Failed to load ${path4} ${e.message}`);
|
|
}
|
|
lastError = e;
|
|
}
|
|
}
|
|
let processEnv = process.env;
|
|
if (options && options.processEnv != null) {
|
|
processEnv = options.processEnv;
|
|
}
|
|
DotenvModule.populate(processEnv, parsedAll, options);
|
|
if (debug || !quiet) {
|
|
const keysCount = Object.keys(parsedAll).length;
|
|
const shortPaths = [];
|
|
for (const filePath of optionPaths) {
|
|
try {
|
|
const relative = path3.relative(process.cwd(), filePath);
|
|
shortPaths.push(relative);
|
|
} catch (e) {
|
|
if (debug) {
|
|
_debug(`Failed to load ${filePath} ${e.message}`);
|
|
}
|
|
lastError = e;
|
|
}
|
|
}
|
|
_log(`injecting env (${keysCount}) from ${shortPaths.join(",")}`);
|
|
}
|
|
if (lastError) {
|
|
return { parsed: parsedAll, error: lastError };
|
|
} else {
|
|
return { parsed: parsedAll };
|
|
}
|
|
}
|
|
function config3(options) {
|
|
if (_dotenvKey(options).length === 0) {
|
|
return DotenvModule.configDotenv(options);
|
|
}
|
|
const vaultPath = _vaultPath(options);
|
|
if (!vaultPath) {
|
|
_warn(`You set DOTENV_KEY but you are missing a .env.vault file at ${vaultPath}. Did you forget to build it?`);
|
|
return DotenvModule.configDotenv(options);
|
|
}
|
|
return DotenvModule._configVault(options);
|
|
}
|
|
function decrypt(encrypted, keyStr) {
|
|
const key = Buffer.from(keyStr.slice(-64), "hex");
|
|
let ciphertext = Buffer.from(encrypted, "base64");
|
|
const nonce = ciphertext.subarray(0, 12);
|
|
const authTag = ciphertext.subarray(-16);
|
|
ciphertext = ciphertext.subarray(12, -16);
|
|
try {
|
|
const aesgcm = crypto2.createDecipheriv("aes-256-gcm", key, nonce);
|
|
aesgcm.setAuthTag(authTag);
|
|
return `${aesgcm.update(ciphertext)}${aesgcm.final()}`;
|
|
} catch (error2) {
|
|
const isRange = error2 instanceof RangeError;
|
|
const invalidKeyLength = error2.message === "Invalid key length";
|
|
const decryptionFailed = error2.message === "Unsupported state or unable to authenticate data";
|
|
if (isRange || invalidKeyLength) {
|
|
const err = new Error("INVALID_DOTENV_KEY: It must be 64 characters long (or more)");
|
|
err.code = "INVALID_DOTENV_KEY";
|
|
throw err;
|
|
} else if (decryptionFailed) {
|
|
const err = new Error("DECRYPTION_FAILED: Please check your DOTENV_KEY");
|
|
err.code = "DECRYPTION_FAILED";
|
|
throw err;
|
|
} else {
|
|
throw error2;
|
|
}
|
|
}
|
|
}
|
|
function populate(processEnv, parsed, options = {}) {
|
|
const debug = Boolean(options && options.debug);
|
|
const override = Boolean(options && options.override);
|
|
if (typeof parsed !== "object") {
|
|
const err = new Error("OBJECT_REQUIRED: Please check the processEnv argument being passed to populate");
|
|
err.code = "OBJECT_REQUIRED";
|
|
throw err;
|
|
}
|
|
for (const key of Object.keys(parsed)) {
|
|
if (Object.prototype.hasOwnProperty.call(processEnv, key)) {
|
|
if (override === true) {
|
|
processEnv[key] = parsed[key];
|
|
}
|
|
if (debug) {
|
|
if (override === true) {
|
|
_debug(`"${key}" is already defined and WAS overwritten`);
|
|
} else {
|
|
_debug(`"${key}" is already defined and was NOT overwritten`);
|
|
}
|
|
}
|
|
} else {
|
|
processEnv[key] = parsed[key];
|
|
}
|
|
}
|
|
}
|
|
var DotenvModule = {
|
|
configDotenv,
|
|
_configVault,
|
|
_parseVault,
|
|
config: config3,
|
|
decrypt,
|
|
parse: parse4,
|
|
populate
|
|
};
|
|
module.exports.configDotenv = DotenvModule.configDotenv;
|
|
module.exports._configVault = DotenvModule._configVault;
|
|
module.exports._parseVault = DotenvModule._parseVault;
|
|
module.exports.config = DotenvModule.config;
|
|
module.exports.decrypt = DotenvModule.decrypt;
|
|
module.exports.parse = DotenvModule.parse;
|
|
module.exports.populate = DotenvModule.populate;
|
|
module.exports = DotenvModule;
|
|
}
|
|
});
|
|
|
|
// src/websocket-server.js
|
|
import * as fs3 from "fs/promises";
|
|
|
|
// node_modules/ws/wrapper.mjs
|
|
var import_stream = __toESM(require_stream(), 1);
|
|
var import_receiver = __toESM(require_receiver(), 1);
|
|
var import_sender = __toESM(require_sender(), 1);
|
|
var import_websocket = __toESM(require_websocket(), 1);
|
|
var import_websocket_server = __toESM(require_websocket_server(), 1);
|
|
var wrapper_default = import_websocket.default;
|
|
|
|
// src/websocket-server.js
|
|
import { createServer } from "http";
|
|
import { parse as parse3 } from "url";
|
|
import { fork, execSync as execSync2 } from "child_process";
|
|
|
|
// node_modules/zod/v3/helpers/util.js
|
|
var util;
|
|
(function(util2) {
|
|
util2.assertEqual = (_) => {
|
|
};
|
|
function assertIs2(_arg) {
|
|
}
|
|
util2.assertIs = assertIs2;
|
|
function assertNever2(_x) {
|
|
throw new Error();
|
|
}
|
|
util2.assertNever = assertNever2;
|
|
util2.arrayToEnum = (items) => {
|
|
const obj = {};
|
|
for (const item of items) {
|
|
obj[item] = item;
|
|
}
|
|
return obj;
|
|
};
|
|
util2.getValidEnumValues = (obj) => {
|
|
const validKeys = util2.objectKeys(obj).filter((k) => typeof obj[obj[k]] !== "number");
|
|
const filtered = {};
|
|
for (const k of validKeys) {
|
|
filtered[k] = obj[k];
|
|
}
|
|
return util2.objectValues(filtered);
|
|
};
|
|
util2.objectValues = (obj) => {
|
|
return util2.objectKeys(obj).map(function(e) {
|
|
return obj[e];
|
|
});
|
|
};
|
|
util2.objectKeys = typeof Object.keys === "function" ? (obj) => Object.keys(obj) : (object3) => {
|
|
const keys = [];
|
|
for (const key in object3) {
|
|
if (Object.prototype.hasOwnProperty.call(object3, key)) {
|
|
keys.push(key);
|
|
}
|
|
}
|
|
return keys;
|
|
};
|
|
util2.find = (arr, checker) => {
|
|
for (const item of arr) {
|
|
if (checker(item))
|
|
return item;
|
|
}
|
|
return void 0;
|
|
};
|
|
util2.isInteger = typeof Number.isInteger === "function" ? (val) => Number.isInteger(val) : (val) => typeof val === "number" && Number.isFinite(val) && Math.floor(val) === val;
|
|
function joinValues2(array2, separator = " | ") {
|
|
return array2.map((val) => typeof val === "string" ? `'${val}'` : val).join(separator);
|
|
}
|
|
util2.joinValues = joinValues2;
|
|
util2.jsonStringifyReplacer = (_, value) => {
|
|
if (typeof value === "bigint") {
|
|
return value.toString();
|
|
}
|
|
return value;
|
|
};
|
|
})(util || (util = {}));
|
|
var objectUtil;
|
|
(function(objectUtil2) {
|
|
objectUtil2.mergeShapes = (first, second) => {
|
|
return {
|
|
...first,
|
|
...second
|
|
// second overwrites first
|
|
};
|
|
};
|
|
})(objectUtil || (objectUtil = {}));
|
|
var ZodParsedType = util.arrayToEnum([
|
|
"string",
|
|
"nan",
|
|
"number",
|
|
"integer",
|
|
"float",
|
|
"boolean",
|
|
"date",
|
|
"bigint",
|
|
"symbol",
|
|
"function",
|
|
"undefined",
|
|
"null",
|
|
"array",
|
|
"object",
|
|
"unknown",
|
|
"promise",
|
|
"void",
|
|
"never",
|
|
"map",
|
|
"set"
|
|
]);
|
|
var getParsedType = (data) => {
|
|
const t = typeof data;
|
|
switch (t) {
|
|
case "undefined":
|
|
return ZodParsedType.undefined;
|
|
case "string":
|
|
return ZodParsedType.string;
|
|
case "number":
|
|
return Number.isNaN(data) ? ZodParsedType.nan : ZodParsedType.number;
|
|
case "boolean":
|
|
return ZodParsedType.boolean;
|
|
case "function":
|
|
return ZodParsedType.function;
|
|
case "bigint":
|
|
return ZodParsedType.bigint;
|
|
case "symbol":
|
|
return ZodParsedType.symbol;
|
|
case "object":
|
|
if (Array.isArray(data)) {
|
|
return ZodParsedType.array;
|
|
}
|
|
if (data === null) {
|
|
return ZodParsedType.null;
|
|
}
|
|
if (data.then && typeof data.then === "function" && data.catch && typeof data.catch === "function") {
|
|
return ZodParsedType.promise;
|
|
}
|
|
if (typeof Map !== "undefined" && data instanceof Map) {
|
|
return ZodParsedType.map;
|
|
}
|
|
if (typeof Set !== "undefined" && data instanceof Set) {
|
|
return ZodParsedType.set;
|
|
}
|
|
if (typeof Date !== "undefined" && data instanceof Date) {
|
|
return ZodParsedType.date;
|
|
}
|
|
return ZodParsedType.object;
|
|
default:
|
|
return ZodParsedType.unknown;
|
|
}
|
|
};
|
|
|
|
// node_modules/zod/v3/ZodError.js
|
|
var ZodIssueCode = util.arrayToEnum([
|
|
"invalid_type",
|
|
"invalid_literal",
|
|
"custom",
|
|
"invalid_union",
|
|
"invalid_union_discriminator",
|
|
"invalid_enum_value",
|
|
"unrecognized_keys",
|
|
"invalid_arguments",
|
|
"invalid_return_type",
|
|
"invalid_date",
|
|
"invalid_string",
|
|
"too_small",
|
|
"too_big",
|
|
"invalid_intersection_types",
|
|
"not_multiple_of",
|
|
"not_finite"
|
|
]);
|
|
var ZodError = class _ZodError extends Error {
|
|
get errors() {
|
|
return this.issues;
|
|
}
|
|
constructor(issues) {
|
|
super();
|
|
this.issues = [];
|
|
this.addIssue = (sub) => {
|
|
this.issues = [...this.issues, sub];
|
|
};
|
|
this.addIssues = (subs = []) => {
|
|
this.issues = [...this.issues, ...subs];
|
|
};
|
|
const actualProto = new.target.prototype;
|
|
if (Object.setPrototypeOf) {
|
|
Object.setPrototypeOf(this, actualProto);
|
|
} else {
|
|
this.__proto__ = actualProto;
|
|
}
|
|
this.name = "ZodError";
|
|
this.issues = issues;
|
|
}
|
|
format(_mapper) {
|
|
const mapper = _mapper || function(issue2) {
|
|
return issue2.message;
|
|
};
|
|
const fieldErrors = { _errors: [] };
|
|
const processError = (error2) => {
|
|
for (const issue2 of error2.issues) {
|
|
if (issue2.code === "invalid_union") {
|
|
issue2.unionErrors.map(processError);
|
|
} else if (issue2.code === "invalid_return_type") {
|
|
processError(issue2.returnTypeError);
|
|
} else if (issue2.code === "invalid_arguments") {
|
|
processError(issue2.argumentsError);
|
|
} 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(this);
|
|
return fieldErrors;
|
|
}
|
|
static assert(value) {
|
|
if (!(value instanceof _ZodError)) {
|
|
throw new Error(`Not a ZodError: ${value}`);
|
|
}
|
|
}
|
|
toString() {
|
|
return this.message;
|
|
}
|
|
get message() {
|
|
return JSON.stringify(this.issues, util.jsonStringifyReplacer, 2);
|
|
}
|
|
get isEmpty() {
|
|
return this.issues.length === 0;
|
|
}
|
|
flatten(mapper = (issue2) => issue2.message) {
|
|
const fieldErrors = /* @__PURE__ */ Object.create(null);
|
|
const formErrors = [];
|
|
for (const sub of this.issues) {
|
|
if (sub.path.length > 0) {
|
|
const firstEl = sub.path[0];
|
|
fieldErrors[firstEl] = fieldErrors[firstEl] || [];
|
|
fieldErrors[firstEl].push(mapper(sub));
|
|
} else {
|
|
formErrors.push(mapper(sub));
|
|
}
|
|
}
|
|
return { formErrors, fieldErrors };
|
|
}
|
|
get formErrors() {
|
|
return this.flatten();
|
|
}
|
|
};
|
|
ZodError.create = (issues) => {
|
|
const error2 = new ZodError(issues);
|
|
return error2;
|
|
};
|
|
|
|
// node_modules/zod/v3/locales/en.js
|
|
var errorMap = (issue2, _ctx) => {
|
|
let message;
|
|
switch (issue2.code) {
|
|
case ZodIssueCode.invalid_type:
|
|
if (issue2.received === ZodParsedType.undefined) {
|
|
message = "Required";
|
|
} else {
|
|
message = `Expected ${issue2.expected}, received ${issue2.received}`;
|
|
}
|
|
break;
|
|
case ZodIssueCode.invalid_literal:
|
|
message = `Invalid literal value, expected ${JSON.stringify(issue2.expected, util.jsonStringifyReplacer)}`;
|
|
break;
|
|
case ZodIssueCode.unrecognized_keys:
|
|
message = `Unrecognized key(s) in object: ${util.joinValues(issue2.keys, ", ")}`;
|
|
break;
|
|
case ZodIssueCode.invalid_union:
|
|
message = `Invalid input`;
|
|
break;
|
|
case ZodIssueCode.invalid_union_discriminator:
|
|
message = `Invalid discriminator value. Expected ${util.joinValues(issue2.options)}`;
|
|
break;
|
|
case ZodIssueCode.invalid_enum_value:
|
|
message = `Invalid enum value. Expected ${util.joinValues(issue2.options)}, received '${issue2.received}'`;
|
|
break;
|
|
case ZodIssueCode.invalid_arguments:
|
|
message = `Invalid function arguments`;
|
|
break;
|
|
case ZodIssueCode.invalid_return_type:
|
|
message = `Invalid function return type`;
|
|
break;
|
|
case ZodIssueCode.invalid_date:
|
|
message = `Invalid date`;
|
|
break;
|
|
case ZodIssueCode.invalid_string:
|
|
if (typeof issue2.validation === "object") {
|
|
if ("includes" in issue2.validation) {
|
|
message = `Invalid input: must include "${issue2.validation.includes}"`;
|
|
if (typeof issue2.validation.position === "number") {
|
|
message = `${message} at one or more positions greater than or equal to ${issue2.validation.position}`;
|
|
}
|
|
} else if ("startsWith" in issue2.validation) {
|
|
message = `Invalid input: must start with "${issue2.validation.startsWith}"`;
|
|
} else if ("endsWith" in issue2.validation) {
|
|
message = `Invalid input: must end with "${issue2.validation.endsWith}"`;
|
|
} else {
|
|
util.assertNever(issue2.validation);
|
|
}
|
|
} else if (issue2.validation !== "regex") {
|
|
message = `Invalid ${issue2.validation}`;
|
|
} else {
|
|
message = "Invalid";
|
|
}
|
|
break;
|
|
case ZodIssueCode.too_small:
|
|
if (issue2.type === "array")
|
|
message = `Array must contain ${issue2.exact ? "exactly" : issue2.inclusive ? `at least` : `more than`} ${issue2.minimum} element(s)`;
|
|
else if (issue2.type === "string")
|
|
message = `String must contain ${issue2.exact ? "exactly" : issue2.inclusive ? `at least` : `over`} ${issue2.minimum} character(s)`;
|
|
else if (issue2.type === "number")
|
|
message = `Number must be ${issue2.exact ? `exactly equal to ` : issue2.inclusive ? `greater than or equal to ` : `greater than `}${issue2.minimum}`;
|
|
else if (issue2.type === "bigint")
|
|
message = `Number must be ${issue2.exact ? `exactly equal to ` : issue2.inclusive ? `greater than or equal to ` : `greater than `}${issue2.minimum}`;
|
|
else if (issue2.type === "date")
|
|
message = `Date must be ${issue2.exact ? `exactly equal to ` : issue2.inclusive ? `greater than or equal to ` : `greater than `}${new Date(Number(issue2.minimum))}`;
|
|
else
|
|
message = "Invalid input";
|
|
break;
|
|
case ZodIssueCode.too_big:
|
|
if (issue2.type === "array")
|
|
message = `Array must contain ${issue2.exact ? `exactly` : issue2.inclusive ? `at most` : `less than`} ${issue2.maximum} element(s)`;
|
|
else if (issue2.type === "string")
|
|
message = `String must contain ${issue2.exact ? `exactly` : issue2.inclusive ? `at most` : `under`} ${issue2.maximum} character(s)`;
|
|
else if (issue2.type === "number")
|
|
message = `Number must be ${issue2.exact ? `exactly` : issue2.inclusive ? `less than or equal to` : `less than`} ${issue2.maximum}`;
|
|
else if (issue2.type === "bigint")
|
|
message = `BigInt must be ${issue2.exact ? `exactly` : issue2.inclusive ? `less than or equal to` : `less than`} ${issue2.maximum}`;
|
|
else if (issue2.type === "date")
|
|
message = `Date must be ${issue2.exact ? `exactly` : issue2.inclusive ? `smaller than or equal to` : `smaller than`} ${new Date(Number(issue2.maximum))}`;
|
|
else
|
|
message = "Invalid input";
|
|
break;
|
|
case ZodIssueCode.custom:
|
|
message = `Invalid input`;
|
|
break;
|
|
case ZodIssueCode.invalid_intersection_types:
|
|
message = `Intersection results could not be merged`;
|
|
break;
|
|
case ZodIssueCode.not_multiple_of:
|
|
message = `Number must be a multiple of ${issue2.multipleOf}`;
|
|
break;
|
|
case ZodIssueCode.not_finite:
|
|
message = "Number must be finite";
|
|
break;
|
|
default:
|
|
message = _ctx.defaultError;
|
|
util.assertNever(issue2);
|
|
}
|
|
return { message };
|
|
};
|
|
var en_default = errorMap;
|
|
|
|
// node_modules/zod/v3/errors.js
|
|
var overrideErrorMap = en_default;
|
|
function getErrorMap() {
|
|
return overrideErrorMap;
|
|
}
|
|
|
|
// node_modules/zod/v3/helpers/parseUtil.js
|
|
var makeIssue = (params) => {
|
|
const { data, path: path3, errorMaps, issueData } = params;
|
|
const fullPath = [...path3, ...issueData.path || []];
|
|
const fullIssue = {
|
|
...issueData,
|
|
path: fullPath
|
|
};
|
|
if (issueData.message !== void 0) {
|
|
return {
|
|
...issueData,
|
|
path: fullPath,
|
|
message: issueData.message
|
|
};
|
|
}
|
|
let errorMessage = "";
|
|
const maps = errorMaps.filter((m) => !!m).slice().reverse();
|
|
for (const map2 of maps) {
|
|
errorMessage = map2(fullIssue, { data, defaultError: errorMessage }).message;
|
|
}
|
|
return {
|
|
...issueData,
|
|
path: fullPath,
|
|
message: errorMessage
|
|
};
|
|
};
|
|
function addIssueToContext(ctx, issueData) {
|
|
const overrideMap = getErrorMap();
|
|
const issue2 = makeIssue({
|
|
issueData,
|
|
data: ctx.data,
|
|
path: ctx.path,
|
|
errorMaps: [
|
|
ctx.common.contextualErrorMap,
|
|
// contextual error map is first priority
|
|
ctx.schemaErrorMap,
|
|
// then schema-bound map if available
|
|
overrideMap,
|
|
// then global override map
|
|
overrideMap === en_default ? void 0 : en_default
|
|
// then global default map
|
|
].filter((x) => !!x)
|
|
});
|
|
ctx.common.issues.push(issue2);
|
|
}
|
|
var ParseStatus = class _ParseStatus {
|
|
constructor() {
|
|
this.value = "valid";
|
|
}
|
|
dirty() {
|
|
if (this.value === "valid")
|
|
this.value = "dirty";
|
|
}
|
|
abort() {
|
|
if (this.value !== "aborted")
|
|
this.value = "aborted";
|
|
}
|
|
static mergeArray(status, results) {
|
|
const arrayValue = [];
|
|
for (const s of results) {
|
|
if (s.status === "aborted")
|
|
return INVALID;
|
|
if (s.status === "dirty")
|
|
status.dirty();
|
|
arrayValue.push(s.value);
|
|
}
|
|
return { status: status.value, value: arrayValue };
|
|
}
|
|
static async mergeObjectAsync(status, pairs) {
|
|
const syncPairs = [];
|
|
for (const pair of pairs) {
|
|
const key = await pair.key;
|
|
const value = await pair.value;
|
|
syncPairs.push({
|
|
key,
|
|
value
|
|
});
|
|
}
|
|
return _ParseStatus.mergeObjectSync(status, syncPairs);
|
|
}
|
|
static mergeObjectSync(status, pairs) {
|
|
const finalObject = {};
|
|
for (const pair of pairs) {
|
|
const { key, value } = pair;
|
|
if (key.status === "aborted")
|
|
return INVALID;
|
|
if (value.status === "aborted")
|
|
return INVALID;
|
|
if (key.status === "dirty")
|
|
status.dirty();
|
|
if (value.status === "dirty")
|
|
status.dirty();
|
|
if (key.value !== "__proto__" && (typeof value.value !== "undefined" || pair.alwaysSet)) {
|
|
finalObject[key.value] = value.value;
|
|
}
|
|
}
|
|
return { status: status.value, value: finalObject };
|
|
}
|
|
};
|
|
var INVALID = Object.freeze({
|
|
status: "aborted"
|
|
});
|
|
var DIRTY = (value) => ({ status: "dirty", value });
|
|
var OK = (value) => ({ status: "valid", value });
|
|
var isAborted = (x) => x.status === "aborted";
|
|
var isDirty = (x) => x.status === "dirty";
|
|
var isValid = (x) => x.status === "valid";
|
|
var isAsync = (x) => typeof Promise !== "undefined" && x instanceof Promise;
|
|
|
|
// node_modules/zod/v3/helpers/errorUtil.js
|
|
var errorUtil;
|
|
(function(errorUtil2) {
|
|
errorUtil2.errToObj = (message) => typeof message === "string" ? { message } : message || {};
|
|
errorUtil2.toString = (message) => typeof message === "string" ? message : message?.message;
|
|
})(errorUtil || (errorUtil = {}));
|
|
|
|
// node_modules/zod/v3/types.js
|
|
var ParseInputLazyPath = class {
|
|
constructor(parent, value, path3, key) {
|
|
this._cachedPath = [];
|
|
this.parent = parent;
|
|
this.data = value;
|
|
this._path = path3;
|
|
this._key = key;
|
|
}
|
|
get path() {
|
|
if (!this._cachedPath.length) {
|
|
if (Array.isArray(this._key)) {
|
|
this._cachedPath.push(...this._path, ...this._key);
|
|
} else {
|
|
this._cachedPath.push(...this._path, this._key);
|
|
}
|
|
}
|
|
return this._cachedPath;
|
|
}
|
|
};
|
|
var handleResult = (ctx, result) => {
|
|
if (isValid(result)) {
|
|
return { success: true, data: result.value };
|
|
} else {
|
|
if (!ctx.common.issues.length) {
|
|
throw new Error("Validation failed but no issues detected.");
|
|
}
|
|
return {
|
|
success: false,
|
|
get error() {
|
|
if (this._error)
|
|
return this._error;
|
|
const error2 = new ZodError(ctx.common.issues);
|
|
this._error = error2;
|
|
return this._error;
|
|
}
|
|
};
|
|
}
|
|
};
|
|
function processCreateParams(params) {
|
|
if (!params)
|
|
return {};
|
|
const { errorMap: errorMap2, invalid_type_error, required_error, description } = params;
|
|
if (errorMap2 && (invalid_type_error || required_error)) {
|
|
throw new Error(`Can't use "invalid_type_error" or "required_error" in conjunction with custom error map.`);
|
|
}
|
|
if (errorMap2)
|
|
return { errorMap: errorMap2, description };
|
|
const customMap = (iss, ctx) => {
|
|
const { message } = params;
|
|
if (iss.code === "invalid_enum_value") {
|
|
return { message: message ?? ctx.defaultError };
|
|
}
|
|
if (typeof ctx.data === "undefined") {
|
|
return { message: message ?? required_error ?? ctx.defaultError };
|
|
}
|
|
if (iss.code !== "invalid_type")
|
|
return { message: ctx.defaultError };
|
|
return { message: message ?? invalid_type_error ?? ctx.defaultError };
|
|
};
|
|
return { errorMap: customMap, description };
|
|
}
|
|
var ZodType = class {
|
|
get description() {
|
|
return this._def.description;
|
|
}
|
|
_getType(input) {
|
|
return getParsedType(input.data);
|
|
}
|
|
_getOrReturnCtx(input, ctx) {
|
|
return ctx || {
|
|
common: input.parent.common,
|
|
data: input.data,
|
|
parsedType: getParsedType(input.data),
|
|
schemaErrorMap: this._def.errorMap,
|
|
path: input.path,
|
|
parent: input.parent
|
|
};
|
|
}
|
|
_processInputParams(input) {
|
|
return {
|
|
status: new ParseStatus(),
|
|
ctx: {
|
|
common: input.parent.common,
|
|
data: input.data,
|
|
parsedType: getParsedType(input.data),
|
|
schemaErrorMap: this._def.errorMap,
|
|
path: input.path,
|
|
parent: input.parent
|
|
}
|
|
};
|
|
}
|
|
_parseSync(input) {
|
|
const result = this._parse(input);
|
|
if (isAsync(result)) {
|
|
throw new Error("Synchronous parse encountered promise.");
|
|
}
|
|
return result;
|
|
}
|
|
_parseAsync(input) {
|
|
const result = this._parse(input);
|
|
return Promise.resolve(result);
|
|
}
|
|
parse(data, params) {
|
|
const result = this.safeParse(data, params);
|
|
if (result.success)
|
|
return result.data;
|
|
throw result.error;
|
|
}
|
|
safeParse(data, params) {
|
|
const ctx = {
|
|
common: {
|
|
issues: [],
|
|
async: params?.async ?? false,
|
|
contextualErrorMap: params?.errorMap
|
|
},
|
|
path: params?.path || [],
|
|
schemaErrorMap: this._def.errorMap,
|
|
parent: null,
|
|
data,
|
|
parsedType: getParsedType(data)
|
|
};
|
|
const result = this._parseSync({ data, path: ctx.path, parent: ctx });
|
|
return handleResult(ctx, result);
|
|
}
|
|
"~validate"(data) {
|
|
const ctx = {
|
|
common: {
|
|
issues: [],
|
|
async: !!this["~standard"].async
|
|
},
|
|
path: [],
|
|
schemaErrorMap: this._def.errorMap,
|
|
parent: null,
|
|
data,
|
|
parsedType: getParsedType(data)
|
|
};
|
|
if (!this["~standard"].async) {
|
|
try {
|
|
const result = this._parseSync({ data, path: [], parent: ctx });
|
|
return isValid(result) ? {
|
|
value: result.value
|
|
} : {
|
|
issues: ctx.common.issues
|
|
};
|
|
} catch (err) {
|
|
if (err?.message?.toLowerCase()?.includes("encountered")) {
|
|
this["~standard"].async = true;
|
|
}
|
|
ctx.common = {
|
|
issues: [],
|
|
async: true
|
|
};
|
|
}
|
|
}
|
|
return this._parseAsync({ data, path: [], parent: ctx }).then((result) => isValid(result) ? {
|
|
value: result.value
|
|
} : {
|
|
issues: ctx.common.issues
|
|
});
|
|
}
|
|
async parseAsync(data, params) {
|
|
const result = await this.safeParseAsync(data, params);
|
|
if (result.success)
|
|
return result.data;
|
|
throw result.error;
|
|
}
|
|
async safeParseAsync(data, params) {
|
|
const ctx = {
|
|
common: {
|
|
issues: [],
|
|
contextualErrorMap: params?.errorMap,
|
|
async: true
|
|
},
|
|
path: params?.path || [],
|
|
schemaErrorMap: this._def.errorMap,
|
|
parent: null,
|
|
data,
|
|
parsedType: getParsedType(data)
|
|
};
|
|
const maybeAsyncResult = this._parse({ data, path: ctx.path, parent: ctx });
|
|
const result = await (isAsync(maybeAsyncResult) ? maybeAsyncResult : Promise.resolve(maybeAsyncResult));
|
|
return handleResult(ctx, result);
|
|
}
|
|
refine(check2, message) {
|
|
const getIssueProperties = (val) => {
|
|
if (typeof message === "string" || typeof message === "undefined") {
|
|
return { message };
|
|
} else if (typeof message === "function") {
|
|
return message(val);
|
|
} else {
|
|
return message;
|
|
}
|
|
};
|
|
return this._refinement((val, ctx) => {
|
|
const result = check2(val);
|
|
const setError = () => ctx.addIssue({
|
|
code: ZodIssueCode.custom,
|
|
...getIssueProperties(val)
|
|
});
|
|
if (typeof Promise !== "undefined" && result instanceof Promise) {
|
|
return result.then((data) => {
|
|
if (!data) {
|
|
setError();
|
|
return false;
|
|
} else {
|
|
return true;
|
|
}
|
|
});
|
|
}
|
|
if (!result) {
|
|
setError();
|
|
return false;
|
|
} else {
|
|
return true;
|
|
}
|
|
});
|
|
}
|
|
refinement(check2, refinementData) {
|
|
return this._refinement((val, ctx) => {
|
|
if (!check2(val)) {
|
|
ctx.addIssue(typeof refinementData === "function" ? refinementData(val, ctx) : refinementData);
|
|
return false;
|
|
} else {
|
|
return true;
|
|
}
|
|
});
|
|
}
|
|
_refinement(refinement) {
|
|
return new ZodEffects({
|
|
schema: this,
|
|
typeName: ZodFirstPartyTypeKind.ZodEffects,
|
|
effect: { type: "refinement", refinement }
|
|
});
|
|
}
|
|
superRefine(refinement) {
|
|
return this._refinement(refinement);
|
|
}
|
|
constructor(def) {
|
|
this.spa = this.safeParseAsync;
|
|
this._def = def;
|
|
this.parse = this.parse.bind(this);
|
|
this.safeParse = this.safeParse.bind(this);
|
|
this.parseAsync = this.parseAsync.bind(this);
|
|
this.safeParseAsync = this.safeParseAsync.bind(this);
|
|
this.spa = this.spa.bind(this);
|
|
this.refine = this.refine.bind(this);
|
|
this.refinement = this.refinement.bind(this);
|
|
this.superRefine = this.superRefine.bind(this);
|
|
this.optional = this.optional.bind(this);
|
|
this.nullable = this.nullable.bind(this);
|
|
this.nullish = this.nullish.bind(this);
|
|
this.array = this.array.bind(this);
|
|
this.promise = this.promise.bind(this);
|
|
this.or = this.or.bind(this);
|
|
this.and = this.and.bind(this);
|
|
this.transform = this.transform.bind(this);
|
|
this.brand = this.brand.bind(this);
|
|
this.default = this.default.bind(this);
|
|
this.catch = this.catch.bind(this);
|
|
this.describe = this.describe.bind(this);
|
|
this.pipe = this.pipe.bind(this);
|
|
this.readonly = this.readonly.bind(this);
|
|
this.isNullable = this.isNullable.bind(this);
|
|
this.isOptional = this.isOptional.bind(this);
|
|
this["~standard"] = {
|
|
version: 1,
|
|
vendor: "zod",
|
|
validate: (data) => this["~validate"](data)
|
|
};
|
|
}
|
|
optional() {
|
|
return ZodOptional.create(this, this._def);
|
|
}
|
|
nullable() {
|
|
return ZodNullable.create(this, this._def);
|
|
}
|
|
nullish() {
|
|
return this.nullable().optional();
|
|
}
|
|
array() {
|
|
return ZodArray.create(this);
|
|
}
|
|
promise() {
|
|
return ZodPromise.create(this, this._def);
|
|
}
|
|
or(option) {
|
|
return ZodUnion.create([this, option], this._def);
|
|
}
|
|
and(incoming) {
|
|
return ZodIntersection.create(this, incoming, this._def);
|
|
}
|
|
transform(transform2) {
|
|
return new ZodEffects({
|
|
...processCreateParams(this._def),
|
|
schema: this,
|
|
typeName: ZodFirstPartyTypeKind.ZodEffects,
|
|
effect: { type: "transform", transform: transform2 }
|
|
});
|
|
}
|
|
default(def) {
|
|
const defaultValueFunc = typeof def === "function" ? def : () => def;
|
|
return new ZodDefault({
|
|
...processCreateParams(this._def),
|
|
innerType: this,
|
|
defaultValue: defaultValueFunc,
|
|
typeName: ZodFirstPartyTypeKind.ZodDefault
|
|
});
|
|
}
|
|
brand() {
|
|
return new ZodBranded({
|
|
typeName: ZodFirstPartyTypeKind.ZodBranded,
|
|
type: this,
|
|
...processCreateParams(this._def)
|
|
});
|
|
}
|
|
catch(def) {
|
|
const catchValueFunc = typeof def === "function" ? def : () => def;
|
|
return new ZodCatch({
|
|
...processCreateParams(this._def),
|
|
innerType: this,
|
|
catchValue: catchValueFunc,
|
|
typeName: ZodFirstPartyTypeKind.ZodCatch
|
|
});
|
|
}
|
|
describe(description) {
|
|
const This = this.constructor;
|
|
return new This({
|
|
...this._def,
|
|
description
|
|
});
|
|
}
|
|
pipe(target) {
|
|
return ZodPipeline.create(this, target);
|
|
}
|
|
readonly() {
|
|
return ZodReadonly.create(this);
|
|
}
|
|
isOptional() {
|
|
return this.safeParse(void 0).success;
|
|
}
|
|
isNullable() {
|
|
return this.safeParse(null).success;
|
|
}
|
|
};
|
|
var cuidRegex = /^c[^\s-]{8,}$/i;
|
|
var cuid2Regex = /^[0-9a-z]+$/;
|
|
var ulidRegex = /^[0-9A-HJKMNP-TV-Z]{26}$/i;
|
|
var uuidRegex = /^[0-9a-fA-F]{8}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{12}$/i;
|
|
var nanoidRegex = /^[a-z0-9_-]{21}$/i;
|
|
var jwtRegex = /^[A-Za-z0-9-_]+\.[A-Za-z0-9-_]+\.[A-Za-z0-9-_]*$/;
|
|
var durationRegex = /^[-+]?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 emailRegex = /^(?!\.)(?!.*\.\.)([A-Z0-9_'+\-\.]*)[A-Z0-9_+-]@([A-Z0-9][A-Z0-9\-]*\.)+[A-Z]{2,}$/i;
|
|
var _emojiRegex = `^(\\p{Extended_Pictographic}|\\p{Emoji_Component})+$`;
|
|
var emojiRegex;
|
|
var ipv4Regex = /^(?:(?: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 ipv4CidrRegex = /^(?:(?: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])\/(3[0-2]|[12]?[0-9])$/;
|
|
var ipv6Regex = /^(([0-9a-fA-F]{1,4}:){7,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}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))$/;
|
|
var ipv6CidrRegex = /^(([0-9a-fA-F]{1,4}:){7,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}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))\/(12[0-8]|1[01][0-9]|[1-9]?[0-9])$/;
|
|
var base64Regex = /^([0-9a-zA-Z+/]{4})*(([0-9a-zA-Z+/]{2}==)|([0-9a-zA-Z+/]{3}=))?$/;
|
|
var base64urlRegex = /^([0-9a-zA-Z-_]{4})*(([0-9a-zA-Z-_]{2}(==)?)|([0-9a-zA-Z-_]{3}(=)?))?$/;
|
|
var dateRegexSource = `((\\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 dateRegex = new RegExp(`^${dateRegexSource}$`);
|
|
function timeRegexSource(args) {
|
|
let secondsRegexSource = `[0-5]\\d`;
|
|
if (args.precision) {
|
|
secondsRegexSource = `${secondsRegexSource}\\.\\d{${args.precision}}`;
|
|
} else if (args.precision == null) {
|
|
secondsRegexSource = `${secondsRegexSource}(\\.\\d+)?`;
|
|
}
|
|
const secondsQuantifier = args.precision ? "+" : "?";
|
|
return `([01]\\d|2[0-3]):[0-5]\\d(:${secondsRegexSource})${secondsQuantifier}`;
|
|
}
|
|
function timeRegex(args) {
|
|
return new RegExp(`^${timeRegexSource(args)}$`);
|
|
}
|
|
function datetimeRegex(args) {
|
|
let regex = `${dateRegexSource}T${timeRegexSource(args)}`;
|
|
const opts = [];
|
|
opts.push(args.local ? `Z?` : `Z`);
|
|
if (args.offset)
|
|
opts.push(`([+-]\\d{2}:?\\d{2})`);
|
|
regex = `${regex}(${opts.join("|")})`;
|
|
return new RegExp(`^${regex}$`);
|
|
}
|
|
function isValidIP(ip, version2) {
|
|
if ((version2 === "v4" || !version2) && ipv4Regex.test(ip)) {
|
|
return true;
|
|
}
|
|
if ((version2 === "v6" || !version2) && ipv6Regex.test(ip)) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
function isValidJWT(jwt2, alg) {
|
|
if (!jwtRegex.test(jwt2))
|
|
return false;
|
|
try {
|
|
const [header] = jwt2.split(".");
|
|
if (!header)
|
|
return false;
|
|
const base643 = header.replace(/-/g, "+").replace(/_/g, "/").padEnd(header.length + (4 - header.length % 4) % 4, "=");
|
|
const decoded = JSON.parse(atob(base643));
|
|
if (typeof decoded !== "object" || decoded === null)
|
|
return false;
|
|
if ("typ" in decoded && decoded?.typ !== "JWT")
|
|
return false;
|
|
if (!decoded.alg)
|
|
return false;
|
|
if (alg && decoded.alg !== alg)
|
|
return false;
|
|
return true;
|
|
} catch {
|
|
return false;
|
|
}
|
|
}
|
|
function isValidCidr(ip, version2) {
|
|
if ((version2 === "v4" || !version2) && ipv4CidrRegex.test(ip)) {
|
|
return true;
|
|
}
|
|
if ((version2 === "v6" || !version2) && ipv6CidrRegex.test(ip)) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
var ZodString = class _ZodString2 extends ZodType {
|
|
_parse(input) {
|
|
if (this._def.coerce) {
|
|
input.data = String(input.data);
|
|
}
|
|
const parsedType2 = this._getType(input);
|
|
if (parsedType2 !== ZodParsedType.string) {
|
|
const ctx2 = this._getOrReturnCtx(input);
|
|
addIssueToContext(ctx2, {
|
|
code: ZodIssueCode.invalid_type,
|
|
expected: ZodParsedType.string,
|
|
received: ctx2.parsedType
|
|
});
|
|
return INVALID;
|
|
}
|
|
const status = new ParseStatus();
|
|
let ctx = void 0;
|
|
for (const check2 of this._def.checks) {
|
|
if (check2.kind === "min") {
|
|
if (input.data.length < check2.value) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.too_small,
|
|
minimum: check2.value,
|
|
type: "string",
|
|
inclusive: true,
|
|
exact: false,
|
|
message: check2.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check2.kind === "max") {
|
|
if (input.data.length > check2.value) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.too_big,
|
|
maximum: check2.value,
|
|
type: "string",
|
|
inclusive: true,
|
|
exact: false,
|
|
message: check2.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check2.kind === "length") {
|
|
const tooBig = input.data.length > check2.value;
|
|
const tooSmall = input.data.length < check2.value;
|
|
if (tooBig || tooSmall) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
if (tooBig) {
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.too_big,
|
|
maximum: check2.value,
|
|
type: "string",
|
|
inclusive: true,
|
|
exact: true,
|
|
message: check2.message
|
|
});
|
|
} else if (tooSmall) {
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.too_small,
|
|
minimum: check2.value,
|
|
type: "string",
|
|
inclusive: true,
|
|
exact: true,
|
|
message: check2.message
|
|
});
|
|
}
|
|
status.dirty();
|
|
}
|
|
} else if (check2.kind === "email") {
|
|
if (!emailRegex.test(input.data)) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
validation: "email",
|
|
code: ZodIssueCode.invalid_string,
|
|
message: check2.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check2.kind === "emoji") {
|
|
if (!emojiRegex) {
|
|
emojiRegex = new RegExp(_emojiRegex, "u");
|
|
}
|
|
if (!emojiRegex.test(input.data)) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
validation: "emoji",
|
|
code: ZodIssueCode.invalid_string,
|
|
message: check2.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check2.kind === "uuid") {
|
|
if (!uuidRegex.test(input.data)) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
validation: "uuid",
|
|
code: ZodIssueCode.invalid_string,
|
|
message: check2.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check2.kind === "nanoid") {
|
|
if (!nanoidRegex.test(input.data)) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
validation: "nanoid",
|
|
code: ZodIssueCode.invalid_string,
|
|
message: check2.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check2.kind === "cuid") {
|
|
if (!cuidRegex.test(input.data)) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
validation: "cuid",
|
|
code: ZodIssueCode.invalid_string,
|
|
message: check2.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check2.kind === "cuid2") {
|
|
if (!cuid2Regex.test(input.data)) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
validation: "cuid2",
|
|
code: ZodIssueCode.invalid_string,
|
|
message: check2.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check2.kind === "ulid") {
|
|
if (!ulidRegex.test(input.data)) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
validation: "ulid",
|
|
code: ZodIssueCode.invalid_string,
|
|
message: check2.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check2.kind === "url") {
|
|
try {
|
|
new URL(input.data);
|
|
} catch {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
validation: "url",
|
|
code: ZodIssueCode.invalid_string,
|
|
message: check2.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check2.kind === "regex") {
|
|
check2.regex.lastIndex = 0;
|
|
const testResult = check2.regex.test(input.data);
|
|
if (!testResult) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
validation: "regex",
|
|
code: ZodIssueCode.invalid_string,
|
|
message: check2.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check2.kind === "trim") {
|
|
input.data = input.data.trim();
|
|
} else if (check2.kind === "includes") {
|
|
if (!input.data.includes(check2.value, check2.position)) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_string,
|
|
validation: { includes: check2.value, position: check2.position },
|
|
message: check2.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check2.kind === "toLowerCase") {
|
|
input.data = input.data.toLowerCase();
|
|
} else if (check2.kind === "toUpperCase") {
|
|
input.data = input.data.toUpperCase();
|
|
} else if (check2.kind === "startsWith") {
|
|
if (!input.data.startsWith(check2.value)) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_string,
|
|
validation: { startsWith: check2.value },
|
|
message: check2.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check2.kind === "endsWith") {
|
|
if (!input.data.endsWith(check2.value)) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_string,
|
|
validation: { endsWith: check2.value },
|
|
message: check2.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check2.kind === "datetime") {
|
|
const regex = datetimeRegex(check2);
|
|
if (!regex.test(input.data)) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_string,
|
|
validation: "datetime",
|
|
message: check2.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check2.kind === "date") {
|
|
const regex = dateRegex;
|
|
if (!regex.test(input.data)) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_string,
|
|
validation: "date",
|
|
message: check2.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check2.kind === "time") {
|
|
const regex = timeRegex(check2);
|
|
if (!regex.test(input.data)) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_string,
|
|
validation: "time",
|
|
message: check2.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check2.kind === "duration") {
|
|
if (!durationRegex.test(input.data)) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
validation: "duration",
|
|
code: ZodIssueCode.invalid_string,
|
|
message: check2.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check2.kind === "ip") {
|
|
if (!isValidIP(input.data, check2.version)) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
validation: "ip",
|
|
code: ZodIssueCode.invalid_string,
|
|
message: check2.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check2.kind === "jwt") {
|
|
if (!isValidJWT(input.data, check2.alg)) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
validation: "jwt",
|
|
code: ZodIssueCode.invalid_string,
|
|
message: check2.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check2.kind === "cidr") {
|
|
if (!isValidCidr(input.data, check2.version)) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
validation: "cidr",
|
|
code: ZodIssueCode.invalid_string,
|
|
message: check2.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check2.kind === "base64") {
|
|
if (!base64Regex.test(input.data)) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
validation: "base64",
|
|
code: ZodIssueCode.invalid_string,
|
|
message: check2.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check2.kind === "base64url") {
|
|
if (!base64urlRegex.test(input.data)) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
validation: "base64url",
|
|
code: ZodIssueCode.invalid_string,
|
|
message: check2.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else {
|
|
util.assertNever(check2);
|
|
}
|
|
}
|
|
return { status: status.value, value: input.data };
|
|
}
|
|
_regex(regex, validation, message) {
|
|
return this.refinement((data) => regex.test(data), {
|
|
validation,
|
|
code: ZodIssueCode.invalid_string,
|
|
...errorUtil.errToObj(message)
|
|
});
|
|
}
|
|
_addCheck(check2) {
|
|
return new _ZodString2({
|
|
...this._def,
|
|
checks: [...this._def.checks, check2]
|
|
});
|
|
}
|
|
email(message) {
|
|
return this._addCheck({ kind: "email", ...errorUtil.errToObj(message) });
|
|
}
|
|
url(message) {
|
|
return this._addCheck({ kind: "url", ...errorUtil.errToObj(message) });
|
|
}
|
|
emoji(message) {
|
|
return this._addCheck({ kind: "emoji", ...errorUtil.errToObj(message) });
|
|
}
|
|
uuid(message) {
|
|
return this._addCheck({ kind: "uuid", ...errorUtil.errToObj(message) });
|
|
}
|
|
nanoid(message) {
|
|
return this._addCheck({ kind: "nanoid", ...errorUtil.errToObj(message) });
|
|
}
|
|
cuid(message) {
|
|
return this._addCheck({ kind: "cuid", ...errorUtil.errToObj(message) });
|
|
}
|
|
cuid2(message) {
|
|
return this._addCheck({ kind: "cuid2", ...errorUtil.errToObj(message) });
|
|
}
|
|
ulid(message) {
|
|
return this._addCheck({ kind: "ulid", ...errorUtil.errToObj(message) });
|
|
}
|
|
base64(message) {
|
|
return this._addCheck({ kind: "base64", ...errorUtil.errToObj(message) });
|
|
}
|
|
base64url(message) {
|
|
return this._addCheck({
|
|
kind: "base64url",
|
|
...errorUtil.errToObj(message)
|
|
});
|
|
}
|
|
jwt(options) {
|
|
return this._addCheck({ kind: "jwt", ...errorUtil.errToObj(options) });
|
|
}
|
|
ip(options) {
|
|
return this._addCheck({ kind: "ip", ...errorUtil.errToObj(options) });
|
|
}
|
|
cidr(options) {
|
|
return this._addCheck({ kind: "cidr", ...errorUtil.errToObj(options) });
|
|
}
|
|
datetime(options) {
|
|
if (typeof options === "string") {
|
|
return this._addCheck({
|
|
kind: "datetime",
|
|
precision: null,
|
|
offset: false,
|
|
local: false,
|
|
message: options
|
|
});
|
|
}
|
|
return this._addCheck({
|
|
kind: "datetime",
|
|
precision: typeof options?.precision === "undefined" ? null : options?.precision,
|
|
offset: options?.offset ?? false,
|
|
local: options?.local ?? false,
|
|
...errorUtil.errToObj(options?.message)
|
|
});
|
|
}
|
|
date(message) {
|
|
return this._addCheck({ kind: "date", message });
|
|
}
|
|
time(options) {
|
|
if (typeof options === "string") {
|
|
return this._addCheck({
|
|
kind: "time",
|
|
precision: null,
|
|
message: options
|
|
});
|
|
}
|
|
return this._addCheck({
|
|
kind: "time",
|
|
precision: typeof options?.precision === "undefined" ? null : options?.precision,
|
|
...errorUtil.errToObj(options?.message)
|
|
});
|
|
}
|
|
duration(message) {
|
|
return this._addCheck({ kind: "duration", ...errorUtil.errToObj(message) });
|
|
}
|
|
regex(regex, message) {
|
|
return this._addCheck({
|
|
kind: "regex",
|
|
regex,
|
|
...errorUtil.errToObj(message)
|
|
});
|
|
}
|
|
includes(value, options) {
|
|
return this._addCheck({
|
|
kind: "includes",
|
|
value,
|
|
position: options?.position,
|
|
...errorUtil.errToObj(options?.message)
|
|
});
|
|
}
|
|
startsWith(value, message) {
|
|
return this._addCheck({
|
|
kind: "startsWith",
|
|
value,
|
|
...errorUtil.errToObj(message)
|
|
});
|
|
}
|
|
endsWith(value, message) {
|
|
return this._addCheck({
|
|
kind: "endsWith",
|
|
value,
|
|
...errorUtil.errToObj(message)
|
|
});
|
|
}
|
|
min(minLength, message) {
|
|
return this._addCheck({
|
|
kind: "min",
|
|
value: minLength,
|
|
...errorUtil.errToObj(message)
|
|
});
|
|
}
|
|
max(maxLength, message) {
|
|
return this._addCheck({
|
|
kind: "max",
|
|
value: maxLength,
|
|
...errorUtil.errToObj(message)
|
|
});
|
|
}
|
|
length(len, message) {
|
|
return this._addCheck({
|
|
kind: "length",
|
|
value: len,
|
|
...errorUtil.errToObj(message)
|
|
});
|
|
}
|
|
/**
|
|
* Equivalent to `.min(1)`
|
|
*/
|
|
nonempty(message) {
|
|
return this.min(1, errorUtil.errToObj(message));
|
|
}
|
|
trim() {
|
|
return new _ZodString2({
|
|
...this._def,
|
|
checks: [...this._def.checks, { kind: "trim" }]
|
|
});
|
|
}
|
|
toLowerCase() {
|
|
return new _ZodString2({
|
|
...this._def,
|
|
checks: [...this._def.checks, { kind: "toLowerCase" }]
|
|
});
|
|
}
|
|
toUpperCase() {
|
|
return new _ZodString2({
|
|
...this._def,
|
|
checks: [...this._def.checks, { kind: "toUpperCase" }]
|
|
});
|
|
}
|
|
get isDatetime() {
|
|
return !!this._def.checks.find((ch) => ch.kind === "datetime");
|
|
}
|
|
get isDate() {
|
|
return !!this._def.checks.find((ch) => ch.kind === "date");
|
|
}
|
|
get isTime() {
|
|
return !!this._def.checks.find((ch) => ch.kind === "time");
|
|
}
|
|
get isDuration() {
|
|
return !!this._def.checks.find((ch) => ch.kind === "duration");
|
|
}
|
|
get isEmail() {
|
|
return !!this._def.checks.find((ch) => ch.kind === "email");
|
|
}
|
|
get isURL() {
|
|
return !!this._def.checks.find((ch) => ch.kind === "url");
|
|
}
|
|
get isEmoji() {
|
|
return !!this._def.checks.find((ch) => ch.kind === "emoji");
|
|
}
|
|
get isUUID() {
|
|
return !!this._def.checks.find((ch) => ch.kind === "uuid");
|
|
}
|
|
get isNANOID() {
|
|
return !!this._def.checks.find((ch) => ch.kind === "nanoid");
|
|
}
|
|
get isCUID() {
|
|
return !!this._def.checks.find((ch) => ch.kind === "cuid");
|
|
}
|
|
get isCUID2() {
|
|
return !!this._def.checks.find((ch) => ch.kind === "cuid2");
|
|
}
|
|
get isULID() {
|
|
return !!this._def.checks.find((ch) => ch.kind === "ulid");
|
|
}
|
|
get isIP() {
|
|
return !!this._def.checks.find((ch) => ch.kind === "ip");
|
|
}
|
|
get isCIDR() {
|
|
return !!this._def.checks.find((ch) => ch.kind === "cidr");
|
|
}
|
|
get isBase64() {
|
|
return !!this._def.checks.find((ch) => ch.kind === "base64");
|
|
}
|
|
get isBase64url() {
|
|
return !!this._def.checks.find((ch) => ch.kind === "base64url");
|
|
}
|
|
get minLength() {
|
|
let min = null;
|
|
for (const ch of this._def.checks) {
|
|
if (ch.kind === "min") {
|
|
if (min === null || ch.value > min)
|
|
min = ch.value;
|
|
}
|
|
}
|
|
return min;
|
|
}
|
|
get maxLength() {
|
|
let max = null;
|
|
for (const ch of this._def.checks) {
|
|
if (ch.kind === "max") {
|
|
if (max === null || ch.value < max)
|
|
max = ch.value;
|
|
}
|
|
}
|
|
return max;
|
|
}
|
|
};
|
|
ZodString.create = (params) => {
|
|
return new ZodString({
|
|
checks: [],
|
|
typeName: ZodFirstPartyTypeKind.ZodString,
|
|
coerce: params?.coerce ?? false,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
function floatSafeRemainder(val, step) {
|
|
const valDecCount = (val.toString().split(".")[1] || "").length;
|
|
const stepDecCount = (step.toString().split(".")[1] || "").length;
|
|
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;
|
|
}
|
|
var ZodNumber = class _ZodNumber extends ZodType {
|
|
constructor() {
|
|
super(...arguments);
|
|
this.min = this.gte;
|
|
this.max = this.lte;
|
|
this.step = this.multipleOf;
|
|
}
|
|
_parse(input) {
|
|
if (this._def.coerce) {
|
|
input.data = Number(input.data);
|
|
}
|
|
const parsedType2 = this._getType(input);
|
|
if (parsedType2 !== ZodParsedType.number) {
|
|
const ctx2 = this._getOrReturnCtx(input);
|
|
addIssueToContext(ctx2, {
|
|
code: ZodIssueCode.invalid_type,
|
|
expected: ZodParsedType.number,
|
|
received: ctx2.parsedType
|
|
});
|
|
return INVALID;
|
|
}
|
|
let ctx = void 0;
|
|
const status = new ParseStatus();
|
|
for (const check2 of this._def.checks) {
|
|
if (check2.kind === "int") {
|
|
if (!util.isInteger(input.data)) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_type,
|
|
expected: "integer",
|
|
received: "float",
|
|
message: check2.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check2.kind === "min") {
|
|
const tooSmall = check2.inclusive ? input.data < check2.value : input.data <= check2.value;
|
|
if (tooSmall) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.too_small,
|
|
minimum: check2.value,
|
|
type: "number",
|
|
inclusive: check2.inclusive,
|
|
exact: false,
|
|
message: check2.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check2.kind === "max") {
|
|
const tooBig = check2.inclusive ? input.data > check2.value : input.data >= check2.value;
|
|
if (tooBig) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.too_big,
|
|
maximum: check2.value,
|
|
type: "number",
|
|
inclusive: check2.inclusive,
|
|
exact: false,
|
|
message: check2.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check2.kind === "multipleOf") {
|
|
if (floatSafeRemainder(input.data, check2.value) !== 0) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.not_multiple_of,
|
|
multipleOf: check2.value,
|
|
message: check2.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check2.kind === "finite") {
|
|
if (!Number.isFinite(input.data)) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.not_finite,
|
|
message: check2.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else {
|
|
util.assertNever(check2);
|
|
}
|
|
}
|
|
return { status: status.value, value: input.data };
|
|
}
|
|
gte(value, message) {
|
|
return this.setLimit("min", value, true, errorUtil.toString(message));
|
|
}
|
|
gt(value, message) {
|
|
return this.setLimit("min", value, false, errorUtil.toString(message));
|
|
}
|
|
lte(value, message) {
|
|
return this.setLimit("max", value, true, errorUtil.toString(message));
|
|
}
|
|
lt(value, message) {
|
|
return this.setLimit("max", value, false, errorUtil.toString(message));
|
|
}
|
|
setLimit(kind, value, inclusive, message) {
|
|
return new _ZodNumber({
|
|
...this._def,
|
|
checks: [
|
|
...this._def.checks,
|
|
{
|
|
kind,
|
|
value,
|
|
inclusive,
|
|
message: errorUtil.toString(message)
|
|
}
|
|
]
|
|
});
|
|
}
|
|
_addCheck(check2) {
|
|
return new _ZodNumber({
|
|
...this._def,
|
|
checks: [...this._def.checks, check2]
|
|
});
|
|
}
|
|
int(message) {
|
|
return this._addCheck({
|
|
kind: "int",
|
|
message: errorUtil.toString(message)
|
|
});
|
|
}
|
|
positive(message) {
|
|
return this._addCheck({
|
|
kind: "min",
|
|
value: 0,
|
|
inclusive: false,
|
|
message: errorUtil.toString(message)
|
|
});
|
|
}
|
|
negative(message) {
|
|
return this._addCheck({
|
|
kind: "max",
|
|
value: 0,
|
|
inclusive: false,
|
|
message: errorUtil.toString(message)
|
|
});
|
|
}
|
|
nonpositive(message) {
|
|
return this._addCheck({
|
|
kind: "max",
|
|
value: 0,
|
|
inclusive: true,
|
|
message: errorUtil.toString(message)
|
|
});
|
|
}
|
|
nonnegative(message) {
|
|
return this._addCheck({
|
|
kind: "min",
|
|
value: 0,
|
|
inclusive: true,
|
|
message: errorUtil.toString(message)
|
|
});
|
|
}
|
|
multipleOf(value, message) {
|
|
return this._addCheck({
|
|
kind: "multipleOf",
|
|
value,
|
|
message: errorUtil.toString(message)
|
|
});
|
|
}
|
|
finite(message) {
|
|
return this._addCheck({
|
|
kind: "finite",
|
|
message: errorUtil.toString(message)
|
|
});
|
|
}
|
|
safe(message) {
|
|
return this._addCheck({
|
|
kind: "min",
|
|
inclusive: true,
|
|
value: Number.MIN_SAFE_INTEGER,
|
|
message: errorUtil.toString(message)
|
|
})._addCheck({
|
|
kind: "max",
|
|
inclusive: true,
|
|
value: Number.MAX_SAFE_INTEGER,
|
|
message: errorUtil.toString(message)
|
|
});
|
|
}
|
|
get minValue() {
|
|
let min = null;
|
|
for (const ch of this._def.checks) {
|
|
if (ch.kind === "min") {
|
|
if (min === null || ch.value > min)
|
|
min = ch.value;
|
|
}
|
|
}
|
|
return min;
|
|
}
|
|
get maxValue() {
|
|
let max = null;
|
|
for (const ch of this._def.checks) {
|
|
if (ch.kind === "max") {
|
|
if (max === null || ch.value < max)
|
|
max = ch.value;
|
|
}
|
|
}
|
|
return max;
|
|
}
|
|
get isInt() {
|
|
return !!this._def.checks.find((ch) => ch.kind === "int" || ch.kind === "multipleOf" && util.isInteger(ch.value));
|
|
}
|
|
get isFinite() {
|
|
let max = null;
|
|
let min = null;
|
|
for (const ch of this._def.checks) {
|
|
if (ch.kind === "finite" || ch.kind === "int" || ch.kind === "multipleOf") {
|
|
return true;
|
|
} else if (ch.kind === "min") {
|
|
if (min === null || ch.value > min)
|
|
min = ch.value;
|
|
} else if (ch.kind === "max") {
|
|
if (max === null || ch.value < max)
|
|
max = ch.value;
|
|
}
|
|
}
|
|
return Number.isFinite(min) && Number.isFinite(max);
|
|
}
|
|
};
|
|
ZodNumber.create = (params) => {
|
|
return new ZodNumber({
|
|
checks: [],
|
|
typeName: ZodFirstPartyTypeKind.ZodNumber,
|
|
coerce: params?.coerce || false,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodBigInt = class _ZodBigInt extends ZodType {
|
|
constructor() {
|
|
super(...arguments);
|
|
this.min = this.gte;
|
|
this.max = this.lte;
|
|
}
|
|
_parse(input) {
|
|
if (this._def.coerce) {
|
|
try {
|
|
input.data = BigInt(input.data);
|
|
} catch {
|
|
return this._getInvalidInput(input);
|
|
}
|
|
}
|
|
const parsedType2 = this._getType(input);
|
|
if (parsedType2 !== ZodParsedType.bigint) {
|
|
return this._getInvalidInput(input);
|
|
}
|
|
let ctx = void 0;
|
|
const status = new ParseStatus();
|
|
for (const check2 of this._def.checks) {
|
|
if (check2.kind === "min") {
|
|
const tooSmall = check2.inclusive ? input.data < check2.value : input.data <= check2.value;
|
|
if (tooSmall) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.too_small,
|
|
type: "bigint",
|
|
minimum: check2.value,
|
|
inclusive: check2.inclusive,
|
|
message: check2.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check2.kind === "max") {
|
|
const tooBig = check2.inclusive ? input.data > check2.value : input.data >= check2.value;
|
|
if (tooBig) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.too_big,
|
|
type: "bigint",
|
|
maximum: check2.value,
|
|
inclusive: check2.inclusive,
|
|
message: check2.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check2.kind === "multipleOf") {
|
|
if (input.data % check2.value !== BigInt(0)) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.not_multiple_of,
|
|
multipleOf: check2.value,
|
|
message: check2.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else {
|
|
util.assertNever(check2);
|
|
}
|
|
}
|
|
return { status: status.value, value: input.data };
|
|
}
|
|
_getInvalidInput(input) {
|
|
const ctx = this._getOrReturnCtx(input);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_type,
|
|
expected: ZodParsedType.bigint,
|
|
received: ctx.parsedType
|
|
});
|
|
return INVALID;
|
|
}
|
|
gte(value, message) {
|
|
return this.setLimit("min", value, true, errorUtil.toString(message));
|
|
}
|
|
gt(value, message) {
|
|
return this.setLimit("min", value, false, errorUtil.toString(message));
|
|
}
|
|
lte(value, message) {
|
|
return this.setLimit("max", value, true, errorUtil.toString(message));
|
|
}
|
|
lt(value, message) {
|
|
return this.setLimit("max", value, false, errorUtil.toString(message));
|
|
}
|
|
setLimit(kind, value, inclusive, message) {
|
|
return new _ZodBigInt({
|
|
...this._def,
|
|
checks: [
|
|
...this._def.checks,
|
|
{
|
|
kind,
|
|
value,
|
|
inclusive,
|
|
message: errorUtil.toString(message)
|
|
}
|
|
]
|
|
});
|
|
}
|
|
_addCheck(check2) {
|
|
return new _ZodBigInt({
|
|
...this._def,
|
|
checks: [...this._def.checks, check2]
|
|
});
|
|
}
|
|
positive(message) {
|
|
return this._addCheck({
|
|
kind: "min",
|
|
value: BigInt(0),
|
|
inclusive: false,
|
|
message: errorUtil.toString(message)
|
|
});
|
|
}
|
|
negative(message) {
|
|
return this._addCheck({
|
|
kind: "max",
|
|
value: BigInt(0),
|
|
inclusive: false,
|
|
message: errorUtil.toString(message)
|
|
});
|
|
}
|
|
nonpositive(message) {
|
|
return this._addCheck({
|
|
kind: "max",
|
|
value: BigInt(0),
|
|
inclusive: true,
|
|
message: errorUtil.toString(message)
|
|
});
|
|
}
|
|
nonnegative(message) {
|
|
return this._addCheck({
|
|
kind: "min",
|
|
value: BigInt(0),
|
|
inclusive: true,
|
|
message: errorUtil.toString(message)
|
|
});
|
|
}
|
|
multipleOf(value, message) {
|
|
return this._addCheck({
|
|
kind: "multipleOf",
|
|
value,
|
|
message: errorUtil.toString(message)
|
|
});
|
|
}
|
|
get minValue() {
|
|
let min = null;
|
|
for (const ch of this._def.checks) {
|
|
if (ch.kind === "min") {
|
|
if (min === null || ch.value > min)
|
|
min = ch.value;
|
|
}
|
|
}
|
|
return min;
|
|
}
|
|
get maxValue() {
|
|
let max = null;
|
|
for (const ch of this._def.checks) {
|
|
if (ch.kind === "max") {
|
|
if (max === null || ch.value < max)
|
|
max = ch.value;
|
|
}
|
|
}
|
|
return max;
|
|
}
|
|
};
|
|
ZodBigInt.create = (params) => {
|
|
return new ZodBigInt({
|
|
checks: [],
|
|
typeName: ZodFirstPartyTypeKind.ZodBigInt,
|
|
coerce: params?.coerce ?? false,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodBoolean = class extends ZodType {
|
|
_parse(input) {
|
|
if (this._def.coerce) {
|
|
input.data = Boolean(input.data);
|
|
}
|
|
const parsedType2 = this._getType(input);
|
|
if (parsedType2 !== ZodParsedType.boolean) {
|
|
const ctx = this._getOrReturnCtx(input);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_type,
|
|
expected: ZodParsedType.boolean,
|
|
received: ctx.parsedType
|
|
});
|
|
return INVALID;
|
|
}
|
|
return OK(input.data);
|
|
}
|
|
};
|
|
ZodBoolean.create = (params) => {
|
|
return new ZodBoolean({
|
|
typeName: ZodFirstPartyTypeKind.ZodBoolean,
|
|
coerce: params?.coerce || false,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodDate = class _ZodDate extends ZodType {
|
|
_parse(input) {
|
|
if (this._def.coerce) {
|
|
input.data = new Date(input.data);
|
|
}
|
|
const parsedType2 = this._getType(input);
|
|
if (parsedType2 !== ZodParsedType.date) {
|
|
const ctx2 = this._getOrReturnCtx(input);
|
|
addIssueToContext(ctx2, {
|
|
code: ZodIssueCode.invalid_type,
|
|
expected: ZodParsedType.date,
|
|
received: ctx2.parsedType
|
|
});
|
|
return INVALID;
|
|
}
|
|
if (Number.isNaN(input.data.getTime())) {
|
|
const ctx2 = this._getOrReturnCtx(input);
|
|
addIssueToContext(ctx2, {
|
|
code: ZodIssueCode.invalid_date
|
|
});
|
|
return INVALID;
|
|
}
|
|
const status = new ParseStatus();
|
|
let ctx = void 0;
|
|
for (const check2 of this._def.checks) {
|
|
if (check2.kind === "min") {
|
|
if (input.data.getTime() < check2.value) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.too_small,
|
|
message: check2.message,
|
|
inclusive: true,
|
|
exact: false,
|
|
minimum: check2.value,
|
|
type: "date"
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check2.kind === "max") {
|
|
if (input.data.getTime() > check2.value) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.too_big,
|
|
message: check2.message,
|
|
inclusive: true,
|
|
exact: false,
|
|
maximum: check2.value,
|
|
type: "date"
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else {
|
|
util.assertNever(check2);
|
|
}
|
|
}
|
|
return {
|
|
status: status.value,
|
|
value: new Date(input.data.getTime())
|
|
};
|
|
}
|
|
_addCheck(check2) {
|
|
return new _ZodDate({
|
|
...this._def,
|
|
checks: [...this._def.checks, check2]
|
|
});
|
|
}
|
|
min(minDate, message) {
|
|
return this._addCheck({
|
|
kind: "min",
|
|
value: minDate.getTime(),
|
|
message: errorUtil.toString(message)
|
|
});
|
|
}
|
|
max(maxDate, message) {
|
|
return this._addCheck({
|
|
kind: "max",
|
|
value: maxDate.getTime(),
|
|
message: errorUtil.toString(message)
|
|
});
|
|
}
|
|
get minDate() {
|
|
let min = null;
|
|
for (const ch of this._def.checks) {
|
|
if (ch.kind === "min") {
|
|
if (min === null || ch.value > min)
|
|
min = ch.value;
|
|
}
|
|
}
|
|
return min != null ? new Date(min) : null;
|
|
}
|
|
get maxDate() {
|
|
let max = null;
|
|
for (const ch of this._def.checks) {
|
|
if (ch.kind === "max") {
|
|
if (max === null || ch.value < max)
|
|
max = ch.value;
|
|
}
|
|
}
|
|
return max != null ? new Date(max) : null;
|
|
}
|
|
};
|
|
ZodDate.create = (params) => {
|
|
return new ZodDate({
|
|
checks: [],
|
|
coerce: params?.coerce || false,
|
|
typeName: ZodFirstPartyTypeKind.ZodDate,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodSymbol = class extends ZodType {
|
|
_parse(input) {
|
|
const parsedType2 = this._getType(input);
|
|
if (parsedType2 !== ZodParsedType.symbol) {
|
|
const ctx = this._getOrReturnCtx(input);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_type,
|
|
expected: ZodParsedType.symbol,
|
|
received: ctx.parsedType
|
|
});
|
|
return INVALID;
|
|
}
|
|
return OK(input.data);
|
|
}
|
|
};
|
|
ZodSymbol.create = (params) => {
|
|
return new ZodSymbol({
|
|
typeName: ZodFirstPartyTypeKind.ZodSymbol,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodUndefined = class extends ZodType {
|
|
_parse(input) {
|
|
const parsedType2 = this._getType(input);
|
|
if (parsedType2 !== ZodParsedType.undefined) {
|
|
const ctx = this._getOrReturnCtx(input);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_type,
|
|
expected: ZodParsedType.undefined,
|
|
received: ctx.parsedType
|
|
});
|
|
return INVALID;
|
|
}
|
|
return OK(input.data);
|
|
}
|
|
};
|
|
ZodUndefined.create = (params) => {
|
|
return new ZodUndefined({
|
|
typeName: ZodFirstPartyTypeKind.ZodUndefined,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodNull = class extends ZodType {
|
|
_parse(input) {
|
|
const parsedType2 = this._getType(input);
|
|
if (parsedType2 !== ZodParsedType.null) {
|
|
const ctx = this._getOrReturnCtx(input);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_type,
|
|
expected: ZodParsedType.null,
|
|
received: ctx.parsedType
|
|
});
|
|
return INVALID;
|
|
}
|
|
return OK(input.data);
|
|
}
|
|
};
|
|
ZodNull.create = (params) => {
|
|
return new ZodNull({
|
|
typeName: ZodFirstPartyTypeKind.ZodNull,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodAny = class extends ZodType {
|
|
constructor() {
|
|
super(...arguments);
|
|
this._any = true;
|
|
}
|
|
_parse(input) {
|
|
return OK(input.data);
|
|
}
|
|
};
|
|
ZodAny.create = (params) => {
|
|
return new ZodAny({
|
|
typeName: ZodFirstPartyTypeKind.ZodAny,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodUnknown = class extends ZodType {
|
|
constructor() {
|
|
super(...arguments);
|
|
this._unknown = true;
|
|
}
|
|
_parse(input) {
|
|
return OK(input.data);
|
|
}
|
|
};
|
|
ZodUnknown.create = (params) => {
|
|
return new ZodUnknown({
|
|
typeName: ZodFirstPartyTypeKind.ZodUnknown,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodNever = class extends ZodType {
|
|
_parse(input) {
|
|
const ctx = this._getOrReturnCtx(input);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_type,
|
|
expected: ZodParsedType.never,
|
|
received: ctx.parsedType
|
|
});
|
|
return INVALID;
|
|
}
|
|
};
|
|
ZodNever.create = (params) => {
|
|
return new ZodNever({
|
|
typeName: ZodFirstPartyTypeKind.ZodNever,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodVoid = class extends ZodType {
|
|
_parse(input) {
|
|
const parsedType2 = this._getType(input);
|
|
if (parsedType2 !== ZodParsedType.undefined) {
|
|
const ctx = this._getOrReturnCtx(input);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_type,
|
|
expected: ZodParsedType.void,
|
|
received: ctx.parsedType
|
|
});
|
|
return INVALID;
|
|
}
|
|
return OK(input.data);
|
|
}
|
|
};
|
|
ZodVoid.create = (params) => {
|
|
return new ZodVoid({
|
|
typeName: ZodFirstPartyTypeKind.ZodVoid,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodArray = class _ZodArray extends ZodType {
|
|
_parse(input) {
|
|
const { ctx, status } = this._processInputParams(input);
|
|
const def = this._def;
|
|
if (ctx.parsedType !== ZodParsedType.array) {
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_type,
|
|
expected: ZodParsedType.array,
|
|
received: ctx.parsedType
|
|
});
|
|
return INVALID;
|
|
}
|
|
if (def.exactLength !== null) {
|
|
const tooBig = ctx.data.length > def.exactLength.value;
|
|
const tooSmall = ctx.data.length < def.exactLength.value;
|
|
if (tooBig || tooSmall) {
|
|
addIssueToContext(ctx, {
|
|
code: tooBig ? ZodIssueCode.too_big : ZodIssueCode.too_small,
|
|
minimum: tooSmall ? def.exactLength.value : void 0,
|
|
maximum: tooBig ? def.exactLength.value : void 0,
|
|
type: "array",
|
|
inclusive: true,
|
|
exact: true,
|
|
message: def.exactLength.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
}
|
|
if (def.minLength !== null) {
|
|
if (ctx.data.length < def.minLength.value) {
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.too_small,
|
|
minimum: def.minLength.value,
|
|
type: "array",
|
|
inclusive: true,
|
|
exact: false,
|
|
message: def.minLength.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
}
|
|
if (def.maxLength !== null) {
|
|
if (ctx.data.length > def.maxLength.value) {
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.too_big,
|
|
maximum: def.maxLength.value,
|
|
type: "array",
|
|
inclusive: true,
|
|
exact: false,
|
|
message: def.maxLength.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
}
|
|
if (ctx.common.async) {
|
|
return Promise.all([...ctx.data].map((item, i) => {
|
|
return def.type._parseAsync(new ParseInputLazyPath(ctx, item, ctx.path, i));
|
|
})).then((result2) => {
|
|
return ParseStatus.mergeArray(status, result2);
|
|
});
|
|
}
|
|
const result = [...ctx.data].map((item, i) => {
|
|
return def.type._parseSync(new ParseInputLazyPath(ctx, item, ctx.path, i));
|
|
});
|
|
return ParseStatus.mergeArray(status, result);
|
|
}
|
|
get element() {
|
|
return this._def.type;
|
|
}
|
|
min(minLength, message) {
|
|
return new _ZodArray({
|
|
...this._def,
|
|
minLength: { value: minLength, message: errorUtil.toString(message) }
|
|
});
|
|
}
|
|
max(maxLength, message) {
|
|
return new _ZodArray({
|
|
...this._def,
|
|
maxLength: { value: maxLength, message: errorUtil.toString(message) }
|
|
});
|
|
}
|
|
length(len, message) {
|
|
return new _ZodArray({
|
|
...this._def,
|
|
exactLength: { value: len, message: errorUtil.toString(message) }
|
|
});
|
|
}
|
|
nonempty(message) {
|
|
return this.min(1, message);
|
|
}
|
|
};
|
|
ZodArray.create = (schema, params) => {
|
|
return new ZodArray({
|
|
type: schema,
|
|
minLength: null,
|
|
maxLength: null,
|
|
exactLength: null,
|
|
typeName: ZodFirstPartyTypeKind.ZodArray,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
function deepPartialify(schema) {
|
|
if (schema instanceof ZodObject) {
|
|
const newShape = {};
|
|
for (const key in schema.shape) {
|
|
const fieldSchema = schema.shape[key];
|
|
newShape[key] = ZodOptional.create(deepPartialify(fieldSchema));
|
|
}
|
|
return new ZodObject({
|
|
...schema._def,
|
|
shape: () => newShape
|
|
});
|
|
} else if (schema instanceof ZodArray) {
|
|
return new ZodArray({
|
|
...schema._def,
|
|
type: deepPartialify(schema.element)
|
|
});
|
|
} else if (schema instanceof ZodOptional) {
|
|
return ZodOptional.create(deepPartialify(schema.unwrap()));
|
|
} else if (schema instanceof ZodNullable) {
|
|
return ZodNullable.create(deepPartialify(schema.unwrap()));
|
|
} else if (schema instanceof ZodTuple) {
|
|
return ZodTuple.create(schema.items.map((item) => deepPartialify(item)));
|
|
} else {
|
|
return schema;
|
|
}
|
|
}
|
|
var ZodObject = class _ZodObject extends ZodType {
|
|
constructor() {
|
|
super(...arguments);
|
|
this._cached = null;
|
|
this.nonstrict = this.passthrough;
|
|
this.augment = this.extend;
|
|
}
|
|
_getCached() {
|
|
if (this._cached !== null)
|
|
return this._cached;
|
|
const shape = this._def.shape();
|
|
const keys = util.objectKeys(shape);
|
|
this._cached = { shape, keys };
|
|
return this._cached;
|
|
}
|
|
_parse(input) {
|
|
const parsedType2 = this._getType(input);
|
|
if (parsedType2 !== ZodParsedType.object) {
|
|
const ctx2 = this._getOrReturnCtx(input);
|
|
addIssueToContext(ctx2, {
|
|
code: ZodIssueCode.invalid_type,
|
|
expected: ZodParsedType.object,
|
|
received: ctx2.parsedType
|
|
});
|
|
return INVALID;
|
|
}
|
|
const { status, ctx } = this._processInputParams(input);
|
|
const { shape, keys: shapeKeys } = this._getCached();
|
|
const extraKeys = [];
|
|
if (!(this._def.catchall instanceof ZodNever && this._def.unknownKeys === "strip")) {
|
|
for (const key in ctx.data) {
|
|
if (!shapeKeys.includes(key)) {
|
|
extraKeys.push(key);
|
|
}
|
|
}
|
|
}
|
|
const pairs = [];
|
|
for (const key of shapeKeys) {
|
|
const keyValidator = shape[key];
|
|
const value = ctx.data[key];
|
|
pairs.push({
|
|
key: { status: "valid", value: key },
|
|
value: keyValidator._parse(new ParseInputLazyPath(ctx, value, ctx.path, key)),
|
|
alwaysSet: key in ctx.data
|
|
});
|
|
}
|
|
if (this._def.catchall instanceof ZodNever) {
|
|
const unknownKeys = this._def.unknownKeys;
|
|
if (unknownKeys === "passthrough") {
|
|
for (const key of extraKeys) {
|
|
pairs.push({
|
|
key: { status: "valid", value: key },
|
|
value: { status: "valid", value: ctx.data[key] }
|
|
});
|
|
}
|
|
} else if (unknownKeys === "strict") {
|
|
if (extraKeys.length > 0) {
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.unrecognized_keys,
|
|
keys: extraKeys
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (unknownKeys === "strip") {
|
|
} else {
|
|
throw new Error(`Internal ZodObject error: invalid unknownKeys value.`);
|
|
}
|
|
} else {
|
|
const catchall = this._def.catchall;
|
|
for (const key of extraKeys) {
|
|
const value = ctx.data[key];
|
|
pairs.push({
|
|
key: { status: "valid", value: key },
|
|
value: catchall._parse(
|
|
new ParseInputLazyPath(ctx, value, ctx.path, key)
|
|
//, ctx.child(key), value, getParsedType(value)
|
|
),
|
|
alwaysSet: key in ctx.data
|
|
});
|
|
}
|
|
}
|
|
if (ctx.common.async) {
|
|
return Promise.resolve().then(async () => {
|
|
const syncPairs = [];
|
|
for (const pair of pairs) {
|
|
const key = await pair.key;
|
|
const value = await pair.value;
|
|
syncPairs.push({
|
|
key,
|
|
value,
|
|
alwaysSet: pair.alwaysSet
|
|
});
|
|
}
|
|
return syncPairs;
|
|
}).then((syncPairs) => {
|
|
return ParseStatus.mergeObjectSync(status, syncPairs);
|
|
});
|
|
} else {
|
|
return ParseStatus.mergeObjectSync(status, pairs);
|
|
}
|
|
}
|
|
get shape() {
|
|
return this._def.shape();
|
|
}
|
|
strict(message) {
|
|
errorUtil.errToObj;
|
|
return new _ZodObject({
|
|
...this._def,
|
|
unknownKeys: "strict",
|
|
...message !== void 0 ? {
|
|
errorMap: (issue2, ctx) => {
|
|
const defaultError = this._def.errorMap?.(issue2, ctx).message ?? ctx.defaultError;
|
|
if (issue2.code === "unrecognized_keys")
|
|
return {
|
|
message: errorUtil.errToObj(message).message ?? defaultError
|
|
};
|
|
return {
|
|
message: defaultError
|
|
};
|
|
}
|
|
} : {}
|
|
});
|
|
}
|
|
strip() {
|
|
return new _ZodObject({
|
|
...this._def,
|
|
unknownKeys: "strip"
|
|
});
|
|
}
|
|
passthrough() {
|
|
return new _ZodObject({
|
|
...this._def,
|
|
unknownKeys: "passthrough"
|
|
});
|
|
}
|
|
// const AugmentFactory =
|
|
// <Def extends ZodObjectDef>(def: Def) =>
|
|
// <Augmentation extends ZodRawShape>(
|
|
// augmentation: Augmentation
|
|
// ): ZodObject<
|
|
// extendShape<ReturnType<Def["shape"]>, Augmentation>,
|
|
// Def["unknownKeys"],
|
|
// Def["catchall"]
|
|
// > => {
|
|
// return new ZodObject({
|
|
// ...def,
|
|
// shape: () => ({
|
|
// ...def.shape(),
|
|
// ...augmentation,
|
|
// }),
|
|
// }) as any;
|
|
// };
|
|
extend(augmentation) {
|
|
return new _ZodObject({
|
|
...this._def,
|
|
shape: () => ({
|
|
...this._def.shape(),
|
|
...augmentation
|
|
})
|
|
});
|
|
}
|
|
/**
|
|
* Prior to zod@1.0.12 there was a bug in the
|
|
* inferred type of merged objects. Please
|
|
* upgrade if you are experiencing issues.
|
|
*/
|
|
merge(merging) {
|
|
const merged = new _ZodObject({
|
|
unknownKeys: merging._def.unknownKeys,
|
|
catchall: merging._def.catchall,
|
|
shape: () => ({
|
|
...this._def.shape(),
|
|
...merging._def.shape()
|
|
}),
|
|
typeName: ZodFirstPartyTypeKind.ZodObject
|
|
});
|
|
return merged;
|
|
}
|
|
// merge<
|
|
// Incoming extends AnyZodObject,
|
|
// Augmentation extends Incoming["shape"],
|
|
// NewOutput extends {
|
|
// [k in keyof Augmentation | keyof Output]: k extends keyof Augmentation
|
|
// ? Augmentation[k]["_output"]
|
|
// : k extends keyof Output
|
|
// ? Output[k]
|
|
// : never;
|
|
// },
|
|
// NewInput extends {
|
|
// [k in keyof Augmentation | keyof Input]: k extends keyof Augmentation
|
|
// ? Augmentation[k]["_input"]
|
|
// : k extends keyof Input
|
|
// ? Input[k]
|
|
// : never;
|
|
// }
|
|
// >(
|
|
// merging: Incoming
|
|
// ): ZodObject<
|
|
// extendShape<T, ReturnType<Incoming["_def"]["shape"]>>,
|
|
// Incoming["_def"]["unknownKeys"],
|
|
// Incoming["_def"]["catchall"],
|
|
// NewOutput,
|
|
// NewInput
|
|
// > {
|
|
// const merged: any = new ZodObject({
|
|
// unknownKeys: merging._def.unknownKeys,
|
|
// catchall: merging._def.catchall,
|
|
// shape: () =>
|
|
// objectUtil.mergeShapes(this._def.shape(), merging._def.shape()),
|
|
// typeName: ZodFirstPartyTypeKind.ZodObject,
|
|
// }) as any;
|
|
// return merged;
|
|
// }
|
|
setKey(key, schema) {
|
|
return this.augment({ [key]: schema });
|
|
}
|
|
// merge<Incoming extends AnyZodObject>(
|
|
// merging: Incoming
|
|
// ): //ZodObject<T & Incoming["_shape"], UnknownKeys, Catchall> = (merging) => {
|
|
// ZodObject<
|
|
// extendShape<T, ReturnType<Incoming["_def"]["shape"]>>,
|
|
// Incoming["_def"]["unknownKeys"],
|
|
// Incoming["_def"]["catchall"]
|
|
// > {
|
|
// // const mergedShape = objectUtil.mergeShapes(
|
|
// // this._def.shape(),
|
|
// // merging._def.shape()
|
|
// // );
|
|
// const merged: any = new ZodObject({
|
|
// unknownKeys: merging._def.unknownKeys,
|
|
// catchall: merging._def.catchall,
|
|
// shape: () =>
|
|
// objectUtil.mergeShapes(this._def.shape(), merging._def.shape()),
|
|
// typeName: ZodFirstPartyTypeKind.ZodObject,
|
|
// }) as any;
|
|
// return merged;
|
|
// }
|
|
catchall(index) {
|
|
return new _ZodObject({
|
|
...this._def,
|
|
catchall: index
|
|
});
|
|
}
|
|
pick(mask) {
|
|
const shape = {};
|
|
for (const key of util.objectKeys(mask)) {
|
|
if (mask[key] && this.shape[key]) {
|
|
shape[key] = this.shape[key];
|
|
}
|
|
}
|
|
return new _ZodObject({
|
|
...this._def,
|
|
shape: () => shape
|
|
});
|
|
}
|
|
omit(mask) {
|
|
const shape = {};
|
|
for (const key of util.objectKeys(this.shape)) {
|
|
if (!mask[key]) {
|
|
shape[key] = this.shape[key];
|
|
}
|
|
}
|
|
return new _ZodObject({
|
|
...this._def,
|
|
shape: () => shape
|
|
});
|
|
}
|
|
/**
|
|
* @deprecated
|
|
*/
|
|
deepPartial() {
|
|
return deepPartialify(this);
|
|
}
|
|
partial(mask) {
|
|
const newShape = {};
|
|
for (const key of util.objectKeys(this.shape)) {
|
|
const fieldSchema = this.shape[key];
|
|
if (mask && !mask[key]) {
|
|
newShape[key] = fieldSchema;
|
|
} else {
|
|
newShape[key] = fieldSchema.optional();
|
|
}
|
|
}
|
|
return new _ZodObject({
|
|
...this._def,
|
|
shape: () => newShape
|
|
});
|
|
}
|
|
required(mask) {
|
|
const newShape = {};
|
|
for (const key of util.objectKeys(this.shape)) {
|
|
if (mask && !mask[key]) {
|
|
newShape[key] = this.shape[key];
|
|
} else {
|
|
const fieldSchema = this.shape[key];
|
|
let newField = fieldSchema;
|
|
while (newField instanceof ZodOptional) {
|
|
newField = newField._def.innerType;
|
|
}
|
|
newShape[key] = newField;
|
|
}
|
|
}
|
|
return new _ZodObject({
|
|
...this._def,
|
|
shape: () => newShape
|
|
});
|
|
}
|
|
keyof() {
|
|
return createZodEnum(util.objectKeys(this.shape));
|
|
}
|
|
};
|
|
ZodObject.create = (shape, params) => {
|
|
return new ZodObject({
|
|
shape: () => shape,
|
|
unknownKeys: "strip",
|
|
catchall: ZodNever.create(),
|
|
typeName: ZodFirstPartyTypeKind.ZodObject,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
ZodObject.strictCreate = (shape, params) => {
|
|
return new ZodObject({
|
|
shape: () => shape,
|
|
unknownKeys: "strict",
|
|
catchall: ZodNever.create(),
|
|
typeName: ZodFirstPartyTypeKind.ZodObject,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
ZodObject.lazycreate = (shape, params) => {
|
|
return new ZodObject({
|
|
shape,
|
|
unknownKeys: "strip",
|
|
catchall: ZodNever.create(),
|
|
typeName: ZodFirstPartyTypeKind.ZodObject,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodUnion = class extends ZodType {
|
|
_parse(input) {
|
|
const { ctx } = this._processInputParams(input);
|
|
const options = this._def.options;
|
|
function handleResults(results) {
|
|
for (const result of results) {
|
|
if (result.result.status === "valid") {
|
|
return result.result;
|
|
}
|
|
}
|
|
for (const result of results) {
|
|
if (result.result.status === "dirty") {
|
|
ctx.common.issues.push(...result.ctx.common.issues);
|
|
return result.result;
|
|
}
|
|
}
|
|
const unionErrors = results.map((result) => new ZodError(result.ctx.common.issues));
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_union,
|
|
unionErrors
|
|
});
|
|
return INVALID;
|
|
}
|
|
if (ctx.common.async) {
|
|
return Promise.all(options.map(async (option) => {
|
|
const childCtx = {
|
|
...ctx,
|
|
common: {
|
|
...ctx.common,
|
|
issues: []
|
|
},
|
|
parent: null
|
|
};
|
|
return {
|
|
result: await option._parseAsync({
|
|
data: ctx.data,
|
|
path: ctx.path,
|
|
parent: childCtx
|
|
}),
|
|
ctx: childCtx
|
|
};
|
|
})).then(handleResults);
|
|
} else {
|
|
let dirty = void 0;
|
|
const issues = [];
|
|
for (const option of options) {
|
|
const childCtx = {
|
|
...ctx,
|
|
common: {
|
|
...ctx.common,
|
|
issues: []
|
|
},
|
|
parent: null
|
|
};
|
|
const result = option._parseSync({
|
|
data: ctx.data,
|
|
path: ctx.path,
|
|
parent: childCtx
|
|
});
|
|
if (result.status === "valid") {
|
|
return result;
|
|
} else if (result.status === "dirty" && !dirty) {
|
|
dirty = { result, ctx: childCtx };
|
|
}
|
|
if (childCtx.common.issues.length) {
|
|
issues.push(childCtx.common.issues);
|
|
}
|
|
}
|
|
if (dirty) {
|
|
ctx.common.issues.push(...dirty.ctx.common.issues);
|
|
return dirty.result;
|
|
}
|
|
const unionErrors = issues.map((issues2) => new ZodError(issues2));
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_union,
|
|
unionErrors
|
|
});
|
|
return INVALID;
|
|
}
|
|
}
|
|
get options() {
|
|
return this._def.options;
|
|
}
|
|
};
|
|
ZodUnion.create = (types, params) => {
|
|
return new ZodUnion({
|
|
options: types,
|
|
typeName: ZodFirstPartyTypeKind.ZodUnion,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var getDiscriminator = (type) => {
|
|
if (type instanceof ZodLazy) {
|
|
return getDiscriminator(type.schema);
|
|
} else if (type instanceof ZodEffects) {
|
|
return getDiscriminator(type.innerType());
|
|
} else if (type instanceof ZodLiteral) {
|
|
return [type.value];
|
|
} else if (type instanceof ZodEnum) {
|
|
return type.options;
|
|
} else if (type instanceof ZodNativeEnum) {
|
|
return util.objectValues(type.enum);
|
|
} else if (type instanceof ZodDefault) {
|
|
return getDiscriminator(type._def.innerType);
|
|
} else if (type instanceof ZodUndefined) {
|
|
return [void 0];
|
|
} else if (type instanceof ZodNull) {
|
|
return [null];
|
|
} else if (type instanceof ZodOptional) {
|
|
return [void 0, ...getDiscriminator(type.unwrap())];
|
|
} else if (type instanceof ZodNullable) {
|
|
return [null, ...getDiscriminator(type.unwrap())];
|
|
} else if (type instanceof ZodBranded) {
|
|
return getDiscriminator(type.unwrap());
|
|
} else if (type instanceof ZodReadonly) {
|
|
return getDiscriminator(type.unwrap());
|
|
} else if (type instanceof ZodCatch) {
|
|
return getDiscriminator(type._def.innerType);
|
|
} else {
|
|
return [];
|
|
}
|
|
};
|
|
var ZodDiscriminatedUnion = class _ZodDiscriminatedUnion extends ZodType {
|
|
_parse(input) {
|
|
const { ctx } = this._processInputParams(input);
|
|
if (ctx.parsedType !== ZodParsedType.object) {
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_type,
|
|
expected: ZodParsedType.object,
|
|
received: ctx.parsedType
|
|
});
|
|
return INVALID;
|
|
}
|
|
const discriminator = this.discriminator;
|
|
const discriminatorValue = ctx.data[discriminator];
|
|
const option = this.optionsMap.get(discriminatorValue);
|
|
if (!option) {
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_union_discriminator,
|
|
options: Array.from(this.optionsMap.keys()),
|
|
path: [discriminator]
|
|
});
|
|
return INVALID;
|
|
}
|
|
if (ctx.common.async) {
|
|
return option._parseAsync({
|
|
data: ctx.data,
|
|
path: ctx.path,
|
|
parent: ctx
|
|
});
|
|
} else {
|
|
return option._parseSync({
|
|
data: ctx.data,
|
|
path: ctx.path,
|
|
parent: ctx
|
|
});
|
|
}
|
|
}
|
|
get discriminator() {
|
|
return this._def.discriminator;
|
|
}
|
|
get options() {
|
|
return this._def.options;
|
|
}
|
|
get optionsMap() {
|
|
return this._def.optionsMap;
|
|
}
|
|
/**
|
|
* The constructor of the discriminated union schema. Its behaviour is very similar to that of the normal z.union() constructor.
|
|
* However, it only allows a union of objects, all of which need to share a discriminator property. This property must
|
|
* have a different value for each object in the union.
|
|
* @param discriminator the name of the discriminator property
|
|
* @param types an array of object schemas
|
|
* @param params
|
|
*/
|
|
static create(discriminator, options, params) {
|
|
const optionsMap = /* @__PURE__ */ new Map();
|
|
for (const type of options) {
|
|
const discriminatorValues = getDiscriminator(type.shape[discriminator]);
|
|
if (!discriminatorValues.length) {
|
|
throw new Error(`A discriminator value for key \`${discriminator}\` could not be extracted from all schema options`);
|
|
}
|
|
for (const value of discriminatorValues) {
|
|
if (optionsMap.has(value)) {
|
|
throw new Error(`Discriminator property ${String(discriminator)} has duplicate value ${String(value)}`);
|
|
}
|
|
optionsMap.set(value, type);
|
|
}
|
|
}
|
|
return new _ZodDiscriminatedUnion({
|
|
typeName: ZodFirstPartyTypeKind.ZodDiscriminatedUnion,
|
|
discriminator,
|
|
options,
|
|
optionsMap,
|
|
...processCreateParams(params)
|
|
});
|
|
}
|
|
};
|
|
function mergeValues(a, b) {
|
|
const aType = getParsedType(a);
|
|
const bType = getParsedType(b);
|
|
if (a === b) {
|
|
return { valid: true, data: a };
|
|
} else if (aType === ZodParsedType.object && bType === ZodParsedType.object) {
|
|
const bKeys = util.objectKeys(b);
|
|
const sharedKeys = util.objectKeys(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 };
|
|
}
|
|
newObj[key] = sharedValue.data;
|
|
}
|
|
return { valid: true, data: newObj };
|
|
} else if (aType === ZodParsedType.array && bType === ZodParsedType.array) {
|
|
if (a.length !== b.length) {
|
|
return { valid: false };
|
|
}
|
|
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 };
|
|
}
|
|
newArray.push(sharedValue.data);
|
|
}
|
|
return { valid: true, data: newArray };
|
|
} else if (aType === ZodParsedType.date && bType === ZodParsedType.date && +a === +b) {
|
|
return { valid: true, data: a };
|
|
} else {
|
|
return { valid: false };
|
|
}
|
|
}
|
|
var ZodIntersection = class extends ZodType {
|
|
_parse(input) {
|
|
const { status, ctx } = this._processInputParams(input);
|
|
const handleParsed = (parsedLeft, parsedRight) => {
|
|
if (isAborted(parsedLeft) || isAborted(parsedRight)) {
|
|
return INVALID;
|
|
}
|
|
const merged = mergeValues(parsedLeft.value, parsedRight.value);
|
|
if (!merged.valid) {
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_intersection_types
|
|
});
|
|
return INVALID;
|
|
}
|
|
if (isDirty(parsedLeft) || isDirty(parsedRight)) {
|
|
status.dirty();
|
|
}
|
|
return { status: status.value, value: merged.data };
|
|
};
|
|
if (ctx.common.async) {
|
|
return Promise.all([
|
|
this._def.left._parseAsync({
|
|
data: ctx.data,
|
|
path: ctx.path,
|
|
parent: ctx
|
|
}),
|
|
this._def.right._parseAsync({
|
|
data: ctx.data,
|
|
path: ctx.path,
|
|
parent: ctx
|
|
})
|
|
]).then(([left, right]) => handleParsed(left, right));
|
|
} else {
|
|
return handleParsed(this._def.left._parseSync({
|
|
data: ctx.data,
|
|
path: ctx.path,
|
|
parent: ctx
|
|
}), this._def.right._parseSync({
|
|
data: ctx.data,
|
|
path: ctx.path,
|
|
parent: ctx
|
|
}));
|
|
}
|
|
}
|
|
};
|
|
ZodIntersection.create = (left, right, params) => {
|
|
return new ZodIntersection({
|
|
left,
|
|
right,
|
|
typeName: ZodFirstPartyTypeKind.ZodIntersection,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodTuple = class _ZodTuple extends ZodType {
|
|
_parse(input) {
|
|
const { status, ctx } = this._processInputParams(input);
|
|
if (ctx.parsedType !== ZodParsedType.array) {
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_type,
|
|
expected: ZodParsedType.array,
|
|
received: ctx.parsedType
|
|
});
|
|
return INVALID;
|
|
}
|
|
if (ctx.data.length < this._def.items.length) {
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.too_small,
|
|
minimum: this._def.items.length,
|
|
inclusive: true,
|
|
exact: false,
|
|
type: "array"
|
|
});
|
|
return INVALID;
|
|
}
|
|
const rest = this._def.rest;
|
|
if (!rest && ctx.data.length > this._def.items.length) {
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.too_big,
|
|
maximum: this._def.items.length,
|
|
inclusive: true,
|
|
exact: false,
|
|
type: "array"
|
|
});
|
|
status.dirty();
|
|
}
|
|
const items = [...ctx.data].map((item, itemIndex) => {
|
|
const schema = this._def.items[itemIndex] || this._def.rest;
|
|
if (!schema)
|
|
return null;
|
|
return schema._parse(new ParseInputLazyPath(ctx, item, ctx.path, itemIndex));
|
|
}).filter((x) => !!x);
|
|
if (ctx.common.async) {
|
|
return Promise.all(items).then((results) => {
|
|
return ParseStatus.mergeArray(status, results);
|
|
});
|
|
} else {
|
|
return ParseStatus.mergeArray(status, items);
|
|
}
|
|
}
|
|
get items() {
|
|
return this._def.items;
|
|
}
|
|
rest(rest) {
|
|
return new _ZodTuple({
|
|
...this._def,
|
|
rest
|
|
});
|
|
}
|
|
};
|
|
ZodTuple.create = (schemas, params) => {
|
|
if (!Array.isArray(schemas)) {
|
|
throw new Error("You must pass an array of schemas to z.tuple([ ... ])");
|
|
}
|
|
return new ZodTuple({
|
|
items: schemas,
|
|
typeName: ZodFirstPartyTypeKind.ZodTuple,
|
|
rest: null,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodRecord = class _ZodRecord extends ZodType {
|
|
get keySchema() {
|
|
return this._def.keyType;
|
|
}
|
|
get valueSchema() {
|
|
return this._def.valueType;
|
|
}
|
|
_parse(input) {
|
|
const { status, ctx } = this._processInputParams(input);
|
|
if (ctx.parsedType !== ZodParsedType.object) {
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_type,
|
|
expected: ZodParsedType.object,
|
|
received: ctx.parsedType
|
|
});
|
|
return INVALID;
|
|
}
|
|
const pairs = [];
|
|
const keyType = this._def.keyType;
|
|
const valueType = this._def.valueType;
|
|
for (const key in ctx.data) {
|
|
pairs.push({
|
|
key: keyType._parse(new ParseInputLazyPath(ctx, key, ctx.path, key)),
|
|
value: valueType._parse(new ParseInputLazyPath(ctx, ctx.data[key], ctx.path, key)),
|
|
alwaysSet: key in ctx.data
|
|
});
|
|
}
|
|
if (ctx.common.async) {
|
|
return ParseStatus.mergeObjectAsync(status, pairs);
|
|
} else {
|
|
return ParseStatus.mergeObjectSync(status, pairs);
|
|
}
|
|
}
|
|
get element() {
|
|
return this._def.valueType;
|
|
}
|
|
static create(first, second, third) {
|
|
if (second instanceof ZodType) {
|
|
return new _ZodRecord({
|
|
keyType: first,
|
|
valueType: second,
|
|
typeName: ZodFirstPartyTypeKind.ZodRecord,
|
|
...processCreateParams(third)
|
|
});
|
|
}
|
|
return new _ZodRecord({
|
|
keyType: ZodString.create(),
|
|
valueType: first,
|
|
typeName: ZodFirstPartyTypeKind.ZodRecord,
|
|
...processCreateParams(second)
|
|
});
|
|
}
|
|
};
|
|
var ZodMap = class extends ZodType {
|
|
get keySchema() {
|
|
return this._def.keyType;
|
|
}
|
|
get valueSchema() {
|
|
return this._def.valueType;
|
|
}
|
|
_parse(input) {
|
|
const { status, ctx } = this._processInputParams(input);
|
|
if (ctx.parsedType !== ZodParsedType.map) {
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_type,
|
|
expected: ZodParsedType.map,
|
|
received: ctx.parsedType
|
|
});
|
|
return INVALID;
|
|
}
|
|
const keyType = this._def.keyType;
|
|
const valueType = this._def.valueType;
|
|
const pairs = [...ctx.data.entries()].map(([key, value], index) => {
|
|
return {
|
|
key: keyType._parse(new ParseInputLazyPath(ctx, key, ctx.path, [index, "key"])),
|
|
value: valueType._parse(new ParseInputLazyPath(ctx, value, ctx.path, [index, "value"]))
|
|
};
|
|
});
|
|
if (ctx.common.async) {
|
|
const finalMap = /* @__PURE__ */ new Map();
|
|
return Promise.resolve().then(async () => {
|
|
for (const pair of pairs) {
|
|
const key = await pair.key;
|
|
const value = await pair.value;
|
|
if (key.status === "aborted" || value.status === "aborted") {
|
|
return INVALID;
|
|
}
|
|
if (key.status === "dirty" || value.status === "dirty") {
|
|
status.dirty();
|
|
}
|
|
finalMap.set(key.value, value.value);
|
|
}
|
|
return { status: status.value, value: finalMap };
|
|
});
|
|
} else {
|
|
const finalMap = /* @__PURE__ */ new Map();
|
|
for (const pair of pairs) {
|
|
const key = pair.key;
|
|
const value = pair.value;
|
|
if (key.status === "aborted" || value.status === "aborted") {
|
|
return INVALID;
|
|
}
|
|
if (key.status === "dirty" || value.status === "dirty") {
|
|
status.dirty();
|
|
}
|
|
finalMap.set(key.value, value.value);
|
|
}
|
|
return { status: status.value, value: finalMap };
|
|
}
|
|
}
|
|
};
|
|
ZodMap.create = (keyType, valueType, params) => {
|
|
return new ZodMap({
|
|
valueType,
|
|
keyType,
|
|
typeName: ZodFirstPartyTypeKind.ZodMap,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodSet = class _ZodSet extends ZodType {
|
|
_parse(input) {
|
|
const { status, ctx } = this._processInputParams(input);
|
|
if (ctx.parsedType !== ZodParsedType.set) {
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_type,
|
|
expected: ZodParsedType.set,
|
|
received: ctx.parsedType
|
|
});
|
|
return INVALID;
|
|
}
|
|
const def = this._def;
|
|
if (def.minSize !== null) {
|
|
if (ctx.data.size < def.minSize.value) {
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.too_small,
|
|
minimum: def.minSize.value,
|
|
type: "set",
|
|
inclusive: true,
|
|
exact: false,
|
|
message: def.minSize.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
}
|
|
if (def.maxSize !== null) {
|
|
if (ctx.data.size > def.maxSize.value) {
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.too_big,
|
|
maximum: def.maxSize.value,
|
|
type: "set",
|
|
inclusive: true,
|
|
exact: false,
|
|
message: def.maxSize.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
}
|
|
const valueType = this._def.valueType;
|
|
function finalizeSet(elements2) {
|
|
const parsedSet = /* @__PURE__ */ new Set();
|
|
for (const element of elements2) {
|
|
if (element.status === "aborted")
|
|
return INVALID;
|
|
if (element.status === "dirty")
|
|
status.dirty();
|
|
parsedSet.add(element.value);
|
|
}
|
|
return { status: status.value, value: parsedSet };
|
|
}
|
|
const elements = [...ctx.data.values()].map((item, i) => valueType._parse(new ParseInputLazyPath(ctx, item, ctx.path, i)));
|
|
if (ctx.common.async) {
|
|
return Promise.all(elements).then((elements2) => finalizeSet(elements2));
|
|
} else {
|
|
return finalizeSet(elements);
|
|
}
|
|
}
|
|
min(minSize, message) {
|
|
return new _ZodSet({
|
|
...this._def,
|
|
minSize: { value: minSize, message: errorUtil.toString(message) }
|
|
});
|
|
}
|
|
max(maxSize, message) {
|
|
return new _ZodSet({
|
|
...this._def,
|
|
maxSize: { value: maxSize, message: errorUtil.toString(message) }
|
|
});
|
|
}
|
|
size(size, message) {
|
|
return this.min(size, message).max(size, message);
|
|
}
|
|
nonempty(message) {
|
|
return this.min(1, message);
|
|
}
|
|
};
|
|
ZodSet.create = (valueType, params) => {
|
|
return new ZodSet({
|
|
valueType,
|
|
minSize: null,
|
|
maxSize: null,
|
|
typeName: ZodFirstPartyTypeKind.ZodSet,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodFunction = class _ZodFunction extends ZodType {
|
|
constructor() {
|
|
super(...arguments);
|
|
this.validate = this.implement;
|
|
}
|
|
_parse(input) {
|
|
const { ctx } = this._processInputParams(input);
|
|
if (ctx.parsedType !== ZodParsedType.function) {
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_type,
|
|
expected: ZodParsedType.function,
|
|
received: ctx.parsedType
|
|
});
|
|
return INVALID;
|
|
}
|
|
function makeArgsIssue(args, error2) {
|
|
return makeIssue({
|
|
data: args,
|
|
path: ctx.path,
|
|
errorMaps: [ctx.common.contextualErrorMap, ctx.schemaErrorMap, getErrorMap(), en_default].filter((x) => !!x),
|
|
issueData: {
|
|
code: ZodIssueCode.invalid_arguments,
|
|
argumentsError: error2
|
|
}
|
|
});
|
|
}
|
|
function makeReturnsIssue(returns, error2) {
|
|
return makeIssue({
|
|
data: returns,
|
|
path: ctx.path,
|
|
errorMaps: [ctx.common.contextualErrorMap, ctx.schemaErrorMap, getErrorMap(), en_default].filter((x) => !!x),
|
|
issueData: {
|
|
code: ZodIssueCode.invalid_return_type,
|
|
returnTypeError: error2
|
|
}
|
|
});
|
|
}
|
|
const params = { errorMap: ctx.common.contextualErrorMap };
|
|
const fn = ctx.data;
|
|
if (this._def.returns instanceof ZodPromise) {
|
|
const me = this;
|
|
return OK(async function(...args) {
|
|
const error2 = new ZodError([]);
|
|
const parsedArgs = await me._def.args.parseAsync(args, params).catch((e) => {
|
|
error2.addIssue(makeArgsIssue(args, e));
|
|
throw error2;
|
|
});
|
|
const result = await Reflect.apply(fn, this, parsedArgs);
|
|
const parsedReturns = await me._def.returns._def.type.parseAsync(result, params).catch((e) => {
|
|
error2.addIssue(makeReturnsIssue(result, e));
|
|
throw error2;
|
|
});
|
|
return parsedReturns;
|
|
});
|
|
} else {
|
|
const me = this;
|
|
return OK(function(...args) {
|
|
const parsedArgs = me._def.args.safeParse(args, params);
|
|
if (!parsedArgs.success) {
|
|
throw new ZodError([makeArgsIssue(args, parsedArgs.error)]);
|
|
}
|
|
const result = Reflect.apply(fn, this, parsedArgs.data);
|
|
const parsedReturns = me._def.returns.safeParse(result, params);
|
|
if (!parsedReturns.success) {
|
|
throw new ZodError([makeReturnsIssue(result, parsedReturns.error)]);
|
|
}
|
|
return parsedReturns.data;
|
|
});
|
|
}
|
|
}
|
|
parameters() {
|
|
return this._def.args;
|
|
}
|
|
returnType() {
|
|
return this._def.returns;
|
|
}
|
|
args(...items) {
|
|
return new _ZodFunction({
|
|
...this._def,
|
|
args: ZodTuple.create(items).rest(ZodUnknown.create())
|
|
});
|
|
}
|
|
returns(returnType) {
|
|
return new _ZodFunction({
|
|
...this._def,
|
|
returns: returnType
|
|
});
|
|
}
|
|
implement(func) {
|
|
const validatedFunc = this.parse(func);
|
|
return validatedFunc;
|
|
}
|
|
strictImplement(func) {
|
|
const validatedFunc = this.parse(func);
|
|
return validatedFunc;
|
|
}
|
|
static create(args, returns, params) {
|
|
return new _ZodFunction({
|
|
args: args ? args : ZodTuple.create([]).rest(ZodUnknown.create()),
|
|
returns: returns || ZodUnknown.create(),
|
|
typeName: ZodFirstPartyTypeKind.ZodFunction,
|
|
...processCreateParams(params)
|
|
});
|
|
}
|
|
};
|
|
var ZodLazy = class extends ZodType {
|
|
get schema() {
|
|
return this._def.getter();
|
|
}
|
|
_parse(input) {
|
|
const { ctx } = this._processInputParams(input);
|
|
const lazySchema = this._def.getter();
|
|
return lazySchema._parse({ data: ctx.data, path: ctx.path, parent: ctx });
|
|
}
|
|
};
|
|
ZodLazy.create = (getter, params) => {
|
|
return new ZodLazy({
|
|
getter,
|
|
typeName: ZodFirstPartyTypeKind.ZodLazy,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodLiteral = class extends ZodType {
|
|
_parse(input) {
|
|
if (input.data !== this._def.value) {
|
|
const ctx = this._getOrReturnCtx(input);
|
|
addIssueToContext(ctx, {
|
|
received: ctx.data,
|
|
code: ZodIssueCode.invalid_literal,
|
|
expected: this._def.value
|
|
});
|
|
return INVALID;
|
|
}
|
|
return { status: "valid", value: input.data };
|
|
}
|
|
get value() {
|
|
return this._def.value;
|
|
}
|
|
};
|
|
ZodLiteral.create = (value, params) => {
|
|
return new ZodLiteral({
|
|
value,
|
|
typeName: ZodFirstPartyTypeKind.ZodLiteral,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
function createZodEnum(values, params) {
|
|
return new ZodEnum({
|
|
values,
|
|
typeName: ZodFirstPartyTypeKind.ZodEnum,
|
|
...processCreateParams(params)
|
|
});
|
|
}
|
|
var ZodEnum = class _ZodEnum extends ZodType {
|
|
_parse(input) {
|
|
if (typeof input.data !== "string") {
|
|
const ctx = this._getOrReturnCtx(input);
|
|
const expectedValues = this._def.values;
|
|
addIssueToContext(ctx, {
|
|
expected: util.joinValues(expectedValues),
|
|
received: ctx.parsedType,
|
|
code: ZodIssueCode.invalid_type
|
|
});
|
|
return INVALID;
|
|
}
|
|
if (!this._cache) {
|
|
this._cache = new Set(this._def.values);
|
|
}
|
|
if (!this._cache.has(input.data)) {
|
|
const ctx = this._getOrReturnCtx(input);
|
|
const expectedValues = this._def.values;
|
|
addIssueToContext(ctx, {
|
|
received: ctx.data,
|
|
code: ZodIssueCode.invalid_enum_value,
|
|
options: expectedValues
|
|
});
|
|
return INVALID;
|
|
}
|
|
return OK(input.data);
|
|
}
|
|
get options() {
|
|
return this._def.values;
|
|
}
|
|
get enum() {
|
|
const enumValues = {};
|
|
for (const val of this._def.values) {
|
|
enumValues[val] = val;
|
|
}
|
|
return enumValues;
|
|
}
|
|
get Values() {
|
|
const enumValues = {};
|
|
for (const val of this._def.values) {
|
|
enumValues[val] = val;
|
|
}
|
|
return enumValues;
|
|
}
|
|
get Enum() {
|
|
const enumValues = {};
|
|
for (const val of this._def.values) {
|
|
enumValues[val] = val;
|
|
}
|
|
return enumValues;
|
|
}
|
|
extract(values, newDef = this._def) {
|
|
return _ZodEnum.create(values, {
|
|
...this._def,
|
|
...newDef
|
|
});
|
|
}
|
|
exclude(values, newDef = this._def) {
|
|
return _ZodEnum.create(this.options.filter((opt) => !values.includes(opt)), {
|
|
...this._def,
|
|
...newDef
|
|
});
|
|
}
|
|
};
|
|
ZodEnum.create = createZodEnum;
|
|
var ZodNativeEnum = class extends ZodType {
|
|
_parse(input) {
|
|
const nativeEnumValues = util.getValidEnumValues(this._def.values);
|
|
const ctx = this._getOrReturnCtx(input);
|
|
if (ctx.parsedType !== ZodParsedType.string && ctx.parsedType !== ZodParsedType.number) {
|
|
const expectedValues = util.objectValues(nativeEnumValues);
|
|
addIssueToContext(ctx, {
|
|
expected: util.joinValues(expectedValues),
|
|
received: ctx.parsedType,
|
|
code: ZodIssueCode.invalid_type
|
|
});
|
|
return INVALID;
|
|
}
|
|
if (!this._cache) {
|
|
this._cache = new Set(util.getValidEnumValues(this._def.values));
|
|
}
|
|
if (!this._cache.has(input.data)) {
|
|
const expectedValues = util.objectValues(nativeEnumValues);
|
|
addIssueToContext(ctx, {
|
|
received: ctx.data,
|
|
code: ZodIssueCode.invalid_enum_value,
|
|
options: expectedValues
|
|
});
|
|
return INVALID;
|
|
}
|
|
return OK(input.data);
|
|
}
|
|
get enum() {
|
|
return this._def.values;
|
|
}
|
|
};
|
|
ZodNativeEnum.create = (values, params) => {
|
|
return new ZodNativeEnum({
|
|
values,
|
|
typeName: ZodFirstPartyTypeKind.ZodNativeEnum,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodPromise = class extends ZodType {
|
|
unwrap() {
|
|
return this._def.type;
|
|
}
|
|
_parse(input) {
|
|
const { ctx } = this._processInputParams(input);
|
|
if (ctx.parsedType !== ZodParsedType.promise && ctx.common.async === false) {
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_type,
|
|
expected: ZodParsedType.promise,
|
|
received: ctx.parsedType
|
|
});
|
|
return INVALID;
|
|
}
|
|
const promisified = ctx.parsedType === ZodParsedType.promise ? ctx.data : Promise.resolve(ctx.data);
|
|
return OK(promisified.then((data) => {
|
|
return this._def.type.parseAsync(data, {
|
|
path: ctx.path,
|
|
errorMap: ctx.common.contextualErrorMap
|
|
});
|
|
}));
|
|
}
|
|
};
|
|
ZodPromise.create = (schema, params) => {
|
|
return new ZodPromise({
|
|
type: schema,
|
|
typeName: ZodFirstPartyTypeKind.ZodPromise,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodEffects = class extends ZodType {
|
|
innerType() {
|
|
return this._def.schema;
|
|
}
|
|
sourceType() {
|
|
return this._def.schema._def.typeName === ZodFirstPartyTypeKind.ZodEffects ? this._def.schema.sourceType() : this._def.schema;
|
|
}
|
|
_parse(input) {
|
|
const { status, ctx } = this._processInputParams(input);
|
|
const effect = this._def.effect || null;
|
|
const checkCtx = {
|
|
addIssue: (arg) => {
|
|
addIssueToContext(ctx, arg);
|
|
if (arg.fatal) {
|
|
status.abort();
|
|
} else {
|
|
status.dirty();
|
|
}
|
|
},
|
|
get path() {
|
|
return ctx.path;
|
|
}
|
|
};
|
|
checkCtx.addIssue = checkCtx.addIssue.bind(checkCtx);
|
|
if (effect.type === "preprocess") {
|
|
const processed = effect.transform(ctx.data, checkCtx);
|
|
if (ctx.common.async) {
|
|
return Promise.resolve(processed).then(async (processed2) => {
|
|
if (status.value === "aborted")
|
|
return INVALID;
|
|
const result = await this._def.schema._parseAsync({
|
|
data: processed2,
|
|
path: ctx.path,
|
|
parent: ctx
|
|
});
|
|
if (result.status === "aborted")
|
|
return INVALID;
|
|
if (result.status === "dirty")
|
|
return DIRTY(result.value);
|
|
if (status.value === "dirty")
|
|
return DIRTY(result.value);
|
|
return result;
|
|
});
|
|
} else {
|
|
if (status.value === "aborted")
|
|
return INVALID;
|
|
const result = this._def.schema._parseSync({
|
|
data: processed,
|
|
path: ctx.path,
|
|
parent: ctx
|
|
});
|
|
if (result.status === "aborted")
|
|
return INVALID;
|
|
if (result.status === "dirty")
|
|
return DIRTY(result.value);
|
|
if (status.value === "dirty")
|
|
return DIRTY(result.value);
|
|
return result;
|
|
}
|
|
}
|
|
if (effect.type === "refinement") {
|
|
const executeRefinement = (acc) => {
|
|
const result = effect.refinement(acc, checkCtx);
|
|
if (ctx.common.async) {
|
|
return Promise.resolve(result);
|
|
}
|
|
if (result instanceof Promise) {
|
|
throw new Error("Async refinement encountered during synchronous parse operation. Use .parseAsync instead.");
|
|
}
|
|
return acc;
|
|
};
|
|
if (ctx.common.async === false) {
|
|
const inner = this._def.schema._parseSync({
|
|
data: ctx.data,
|
|
path: ctx.path,
|
|
parent: ctx
|
|
});
|
|
if (inner.status === "aborted")
|
|
return INVALID;
|
|
if (inner.status === "dirty")
|
|
status.dirty();
|
|
executeRefinement(inner.value);
|
|
return { status: status.value, value: inner.value };
|
|
} else {
|
|
return this._def.schema._parseAsync({ data: ctx.data, path: ctx.path, parent: ctx }).then((inner) => {
|
|
if (inner.status === "aborted")
|
|
return INVALID;
|
|
if (inner.status === "dirty")
|
|
status.dirty();
|
|
return executeRefinement(inner.value).then(() => {
|
|
return { status: status.value, value: inner.value };
|
|
});
|
|
});
|
|
}
|
|
}
|
|
if (effect.type === "transform") {
|
|
if (ctx.common.async === false) {
|
|
const base = this._def.schema._parseSync({
|
|
data: ctx.data,
|
|
path: ctx.path,
|
|
parent: ctx
|
|
});
|
|
if (!isValid(base))
|
|
return INVALID;
|
|
const result = effect.transform(base.value, checkCtx);
|
|
if (result instanceof Promise) {
|
|
throw new Error(`Asynchronous transform encountered during synchronous parse operation. Use .parseAsync instead.`);
|
|
}
|
|
return { status: status.value, value: result };
|
|
} else {
|
|
return this._def.schema._parseAsync({ data: ctx.data, path: ctx.path, parent: ctx }).then((base) => {
|
|
if (!isValid(base))
|
|
return INVALID;
|
|
return Promise.resolve(effect.transform(base.value, checkCtx)).then((result) => ({
|
|
status: status.value,
|
|
value: result
|
|
}));
|
|
});
|
|
}
|
|
}
|
|
util.assertNever(effect);
|
|
}
|
|
};
|
|
ZodEffects.create = (schema, effect, params) => {
|
|
return new ZodEffects({
|
|
schema,
|
|
typeName: ZodFirstPartyTypeKind.ZodEffects,
|
|
effect,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
ZodEffects.createWithPreprocess = (preprocess2, schema, params) => {
|
|
return new ZodEffects({
|
|
schema,
|
|
effect: { type: "preprocess", transform: preprocess2 },
|
|
typeName: ZodFirstPartyTypeKind.ZodEffects,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodOptional = class extends ZodType {
|
|
_parse(input) {
|
|
const parsedType2 = this._getType(input);
|
|
if (parsedType2 === ZodParsedType.undefined) {
|
|
return OK(void 0);
|
|
}
|
|
return this._def.innerType._parse(input);
|
|
}
|
|
unwrap() {
|
|
return this._def.innerType;
|
|
}
|
|
};
|
|
ZodOptional.create = (type, params) => {
|
|
return new ZodOptional({
|
|
innerType: type,
|
|
typeName: ZodFirstPartyTypeKind.ZodOptional,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodNullable = class extends ZodType {
|
|
_parse(input) {
|
|
const parsedType2 = this._getType(input);
|
|
if (parsedType2 === ZodParsedType.null) {
|
|
return OK(null);
|
|
}
|
|
return this._def.innerType._parse(input);
|
|
}
|
|
unwrap() {
|
|
return this._def.innerType;
|
|
}
|
|
};
|
|
ZodNullable.create = (type, params) => {
|
|
return new ZodNullable({
|
|
innerType: type,
|
|
typeName: ZodFirstPartyTypeKind.ZodNullable,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodDefault = class extends ZodType {
|
|
_parse(input) {
|
|
const { ctx } = this._processInputParams(input);
|
|
let data = ctx.data;
|
|
if (ctx.parsedType === ZodParsedType.undefined) {
|
|
data = this._def.defaultValue();
|
|
}
|
|
return this._def.innerType._parse({
|
|
data,
|
|
path: ctx.path,
|
|
parent: ctx
|
|
});
|
|
}
|
|
removeDefault() {
|
|
return this._def.innerType;
|
|
}
|
|
};
|
|
ZodDefault.create = (type, params) => {
|
|
return new ZodDefault({
|
|
innerType: type,
|
|
typeName: ZodFirstPartyTypeKind.ZodDefault,
|
|
defaultValue: typeof params.default === "function" ? params.default : () => params.default,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodCatch = class extends ZodType {
|
|
_parse(input) {
|
|
const { ctx } = this._processInputParams(input);
|
|
const newCtx = {
|
|
...ctx,
|
|
common: {
|
|
...ctx.common,
|
|
issues: []
|
|
}
|
|
};
|
|
const result = this._def.innerType._parse({
|
|
data: newCtx.data,
|
|
path: newCtx.path,
|
|
parent: {
|
|
...newCtx
|
|
}
|
|
});
|
|
if (isAsync(result)) {
|
|
return result.then((result2) => {
|
|
return {
|
|
status: "valid",
|
|
value: result2.status === "valid" ? result2.value : this._def.catchValue({
|
|
get error() {
|
|
return new ZodError(newCtx.common.issues);
|
|
},
|
|
input: newCtx.data
|
|
})
|
|
};
|
|
});
|
|
} else {
|
|
return {
|
|
status: "valid",
|
|
value: result.status === "valid" ? result.value : this._def.catchValue({
|
|
get error() {
|
|
return new ZodError(newCtx.common.issues);
|
|
},
|
|
input: newCtx.data
|
|
})
|
|
};
|
|
}
|
|
}
|
|
removeCatch() {
|
|
return this._def.innerType;
|
|
}
|
|
};
|
|
ZodCatch.create = (type, params) => {
|
|
return new ZodCatch({
|
|
innerType: type,
|
|
typeName: ZodFirstPartyTypeKind.ZodCatch,
|
|
catchValue: typeof params.catch === "function" ? params.catch : () => params.catch,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodNaN = class extends ZodType {
|
|
_parse(input) {
|
|
const parsedType2 = this._getType(input);
|
|
if (parsedType2 !== ZodParsedType.nan) {
|
|
const ctx = this._getOrReturnCtx(input);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_type,
|
|
expected: ZodParsedType.nan,
|
|
received: ctx.parsedType
|
|
});
|
|
return INVALID;
|
|
}
|
|
return { status: "valid", value: input.data };
|
|
}
|
|
};
|
|
ZodNaN.create = (params) => {
|
|
return new ZodNaN({
|
|
typeName: ZodFirstPartyTypeKind.ZodNaN,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var BRAND = Symbol("zod_brand");
|
|
var ZodBranded = class extends ZodType {
|
|
_parse(input) {
|
|
const { ctx } = this._processInputParams(input);
|
|
const data = ctx.data;
|
|
return this._def.type._parse({
|
|
data,
|
|
path: ctx.path,
|
|
parent: ctx
|
|
});
|
|
}
|
|
unwrap() {
|
|
return this._def.type;
|
|
}
|
|
};
|
|
var ZodPipeline = class _ZodPipeline extends ZodType {
|
|
_parse(input) {
|
|
const { status, ctx } = this._processInputParams(input);
|
|
if (ctx.common.async) {
|
|
const handleAsync = async () => {
|
|
const inResult = await this._def.in._parseAsync({
|
|
data: ctx.data,
|
|
path: ctx.path,
|
|
parent: ctx
|
|
});
|
|
if (inResult.status === "aborted")
|
|
return INVALID;
|
|
if (inResult.status === "dirty") {
|
|
status.dirty();
|
|
return DIRTY(inResult.value);
|
|
} else {
|
|
return this._def.out._parseAsync({
|
|
data: inResult.value,
|
|
path: ctx.path,
|
|
parent: ctx
|
|
});
|
|
}
|
|
};
|
|
return handleAsync();
|
|
} else {
|
|
const inResult = this._def.in._parseSync({
|
|
data: ctx.data,
|
|
path: ctx.path,
|
|
parent: ctx
|
|
});
|
|
if (inResult.status === "aborted")
|
|
return INVALID;
|
|
if (inResult.status === "dirty") {
|
|
status.dirty();
|
|
return {
|
|
status: "dirty",
|
|
value: inResult.value
|
|
};
|
|
} else {
|
|
return this._def.out._parseSync({
|
|
data: inResult.value,
|
|
path: ctx.path,
|
|
parent: ctx
|
|
});
|
|
}
|
|
}
|
|
}
|
|
static create(a, b) {
|
|
return new _ZodPipeline({
|
|
in: a,
|
|
out: b,
|
|
typeName: ZodFirstPartyTypeKind.ZodPipeline
|
|
});
|
|
}
|
|
};
|
|
var ZodReadonly = class extends ZodType {
|
|
_parse(input) {
|
|
const result = this._def.innerType._parse(input);
|
|
const freeze = (data) => {
|
|
if (isValid(data)) {
|
|
data.value = Object.freeze(data.value);
|
|
}
|
|
return data;
|
|
};
|
|
return isAsync(result) ? result.then((data) => freeze(data)) : freeze(result);
|
|
}
|
|
unwrap() {
|
|
return this._def.innerType;
|
|
}
|
|
};
|
|
ZodReadonly.create = (type, params) => {
|
|
return new ZodReadonly({
|
|
innerType: type,
|
|
typeName: ZodFirstPartyTypeKind.ZodReadonly,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var late = {
|
|
object: ZodObject.lazycreate
|
|
};
|
|
var ZodFirstPartyTypeKind;
|
|
(function(ZodFirstPartyTypeKind3) {
|
|
ZodFirstPartyTypeKind3["ZodString"] = "ZodString";
|
|
ZodFirstPartyTypeKind3["ZodNumber"] = "ZodNumber";
|
|
ZodFirstPartyTypeKind3["ZodNaN"] = "ZodNaN";
|
|
ZodFirstPartyTypeKind3["ZodBigInt"] = "ZodBigInt";
|
|
ZodFirstPartyTypeKind3["ZodBoolean"] = "ZodBoolean";
|
|
ZodFirstPartyTypeKind3["ZodDate"] = "ZodDate";
|
|
ZodFirstPartyTypeKind3["ZodSymbol"] = "ZodSymbol";
|
|
ZodFirstPartyTypeKind3["ZodUndefined"] = "ZodUndefined";
|
|
ZodFirstPartyTypeKind3["ZodNull"] = "ZodNull";
|
|
ZodFirstPartyTypeKind3["ZodAny"] = "ZodAny";
|
|
ZodFirstPartyTypeKind3["ZodUnknown"] = "ZodUnknown";
|
|
ZodFirstPartyTypeKind3["ZodNever"] = "ZodNever";
|
|
ZodFirstPartyTypeKind3["ZodVoid"] = "ZodVoid";
|
|
ZodFirstPartyTypeKind3["ZodArray"] = "ZodArray";
|
|
ZodFirstPartyTypeKind3["ZodObject"] = "ZodObject";
|
|
ZodFirstPartyTypeKind3["ZodUnion"] = "ZodUnion";
|
|
ZodFirstPartyTypeKind3["ZodDiscriminatedUnion"] = "ZodDiscriminatedUnion";
|
|
ZodFirstPartyTypeKind3["ZodIntersection"] = "ZodIntersection";
|
|
ZodFirstPartyTypeKind3["ZodTuple"] = "ZodTuple";
|
|
ZodFirstPartyTypeKind3["ZodRecord"] = "ZodRecord";
|
|
ZodFirstPartyTypeKind3["ZodMap"] = "ZodMap";
|
|
ZodFirstPartyTypeKind3["ZodSet"] = "ZodSet";
|
|
ZodFirstPartyTypeKind3["ZodFunction"] = "ZodFunction";
|
|
ZodFirstPartyTypeKind3["ZodLazy"] = "ZodLazy";
|
|
ZodFirstPartyTypeKind3["ZodLiteral"] = "ZodLiteral";
|
|
ZodFirstPartyTypeKind3["ZodEnum"] = "ZodEnum";
|
|
ZodFirstPartyTypeKind3["ZodEffects"] = "ZodEffects";
|
|
ZodFirstPartyTypeKind3["ZodNativeEnum"] = "ZodNativeEnum";
|
|
ZodFirstPartyTypeKind3["ZodOptional"] = "ZodOptional";
|
|
ZodFirstPartyTypeKind3["ZodNullable"] = "ZodNullable";
|
|
ZodFirstPartyTypeKind3["ZodDefault"] = "ZodDefault";
|
|
ZodFirstPartyTypeKind3["ZodCatch"] = "ZodCatch";
|
|
ZodFirstPartyTypeKind3["ZodPromise"] = "ZodPromise";
|
|
ZodFirstPartyTypeKind3["ZodBranded"] = "ZodBranded";
|
|
ZodFirstPartyTypeKind3["ZodPipeline"] = "ZodPipeline";
|
|
ZodFirstPartyTypeKind3["ZodReadonly"] = "ZodReadonly";
|
|
})(ZodFirstPartyTypeKind || (ZodFirstPartyTypeKind = {}));
|
|
var stringType = ZodString.create;
|
|
var numberType = ZodNumber.create;
|
|
var nanType = ZodNaN.create;
|
|
var bigIntType = ZodBigInt.create;
|
|
var booleanType = ZodBoolean.create;
|
|
var dateType = ZodDate.create;
|
|
var symbolType = ZodSymbol.create;
|
|
var undefinedType = ZodUndefined.create;
|
|
var nullType = ZodNull.create;
|
|
var anyType = ZodAny.create;
|
|
var unknownType = ZodUnknown.create;
|
|
var neverType = ZodNever.create;
|
|
var voidType = ZodVoid.create;
|
|
var arrayType = ZodArray.create;
|
|
var objectType = ZodObject.create;
|
|
var strictObjectType = ZodObject.strictCreate;
|
|
var unionType = ZodUnion.create;
|
|
var discriminatedUnionType = ZodDiscriminatedUnion.create;
|
|
var intersectionType = ZodIntersection.create;
|
|
var tupleType = ZodTuple.create;
|
|
var recordType = ZodRecord.create;
|
|
var mapType = ZodMap.create;
|
|
var setType = ZodSet.create;
|
|
var functionType = ZodFunction.create;
|
|
var lazyType = ZodLazy.create;
|
|
var literalType = ZodLiteral.create;
|
|
var enumType = ZodEnum.create;
|
|
var nativeEnumType = ZodNativeEnum.create;
|
|
var promiseType = ZodPromise.create;
|
|
var effectsType = ZodEffects.create;
|
|
var optionalType = ZodOptional.create;
|
|
var nullableType = ZodNullable.create;
|
|
var preprocessType = ZodEffects.createWithPreprocess;
|
|
var pipelineType = ZodPipeline.create;
|
|
|
|
// node_modules/zod/v4/core/core.js
|
|
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);
|
|
}
|
|
}
|
|
}
|
|
const Parent = params?.Parent ?? Object;
|
|
class Definition extends Parent {
|
|
}
|
|
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;
|
|
}
|
|
Object.defineProperty(_, "init", { value: init });
|
|
Object.defineProperty(_, Symbol.hasInstance, {
|
|
value: (inst) => {
|
|
if (params?.Parent && inst instanceof params.Parent)
|
|
return true;
|
|
return inst?._zod?.traits?.has(name);
|
|
}
|
|
});
|
|
Object.defineProperty(_, "name", { value: name });
|
|
return _;
|
|
}
|
|
var $brand = Symbol("zod_brand");
|
|
var $ZodAsyncError = class extends Error {
|
|
constructor() {
|
|
super(`Encountered Promise during synchronous parse. Use .parseAsync() instead.`);
|
|
}
|
|
};
|
|
var $ZodEncodeError = class extends Error {
|
|
constructor(name) {
|
|
super(`Encountered unidirectional transform during encode: ${name}`);
|
|
this.name = "ZodEncodeError";
|
|
}
|
|
};
|
|
var globalConfig = {};
|
|
function config(newConfig) {
|
|
if (newConfig)
|
|
Object.assign(globalConfig, newConfig);
|
|
return globalConfig;
|
|
}
|
|
|
|
// 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: () => assert,
|
|
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: () => floatSafeRemainder2,
|
|
getElementAtPath: () => getElementAtPath,
|
|
getEnumValues: () => getEnumValues,
|
|
getLengthableOrigin: () => getLengthableOrigin,
|
|
getParsedType: () => getParsedType2,
|
|
getSizableOrigin: () => getSizableOrigin,
|
|
hexToUint8Array: () => hexToUint8Array,
|
|
isObject: () => isObject,
|
|
isPlainObject: () => isPlainObject,
|
|
issue: () => issue,
|
|
joinValues: () => joinValues,
|
|
jsonStringifyReplacer: () => jsonStringifyReplacer,
|
|
merge: () => merge,
|
|
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
|
|
});
|
|
function assertEqual(val) {
|
|
return val;
|
|
}
|
|
function assertNotEqual(val) {
|
|
return val;
|
|
}
|
|
function assertIs(_arg) {
|
|
}
|
|
function assertNever(_x) {
|
|
throw new Error("Unexpected value in exhaustive check");
|
|
}
|
|
function assert(_) {
|
|
}
|
|
function getEnumValues(entries) {
|
|
const numericValues = Object.values(entries).filter((v) => typeof v === "number");
|
|
const values = Object.entries(entries).filter(([k, _]) => numericValues.indexOf(+k) === -1).map(([_, v]) => v);
|
|
return values;
|
|
}
|
|
function joinValues(array2, separator = "|") {
|
|
return array2.map((val) => stringifyPrimitive(val)).join(separator);
|
|
}
|
|
function jsonStringifyReplacer(_, value) {
|
|
if (typeof value === "bigint")
|
|
return value.toString();
|
|
return value;
|
|
}
|
|
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");
|
|
}
|
|
};
|
|
}
|
|
function nullish(input) {
|
|
return input === null || input === void 0;
|
|
}
|
|
function cleanRegex(source) {
|
|
const start = source.startsWith("^") ? 1 : 0;
|
|
const end = source.endsWith("$") ? source.length - 1 : source.length;
|
|
return source.slice(start, end);
|
|
}
|
|
function floatSafeRemainder2(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 match = stepString.match(/\d?e-(\d?)/);
|
|
if (match?.[1]) {
|
|
stepDecCount = Number.parseInt(match[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;
|
|
}
|
|
var EVALUATING = Symbol("evaluating");
|
|
function defineLazy(object3, key, getter) {
|
|
let value = void 0;
|
|
Object.defineProperty(object3, key, {
|
|
get() {
|
|
if (value === EVALUATING) {
|
|
return void 0;
|
|
}
|
|
if (value === void 0) {
|
|
value = EVALUATING;
|
|
value = getter();
|
|
}
|
|
return value;
|
|
},
|
|
set(v) {
|
|
Object.defineProperty(object3, key, {
|
|
value: v
|
|
// configurable: true,
|
|
});
|
|
},
|
|
configurable: true
|
|
});
|
|
}
|
|
function objectClone(obj) {
|
|
return Object.create(Object.getPrototypeOf(obj), Object.getOwnPropertyDescriptors(obj));
|
|
}
|
|
function assignProp(target, prop, value) {
|
|
Object.defineProperty(target, prop, {
|
|
value,
|
|
writable: true,
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
}
|
|
function mergeDefs(...defs) {
|
|
const mergedDescriptors = {};
|
|
for (const def of defs) {
|
|
const descriptors = Object.getOwnPropertyDescriptors(def);
|
|
Object.assign(mergedDescriptors, descriptors);
|
|
}
|
|
return Object.defineProperties({}, mergedDescriptors);
|
|
}
|
|
function cloneDef(schema) {
|
|
return mergeDefs(schema._zod.def);
|
|
}
|
|
function getElementAtPath(obj, path3) {
|
|
if (!path3)
|
|
return obj;
|
|
return path3.reduce((acc, key) => acc?.[key], obj);
|
|
}
|
|
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;
|
|
});
|
|
}
|
|
function randomString(length = 10) {
|
|
const chars = "abcdefghijklmnopqrstuvwxyz";
|
|
let str = "";
|
|
for (let i = 0; i < length; i++) {
|
|
str += chars[Math.floor(Math.random() * chars.length)];
|
|
}
|
|
return str;
|
|
}
|
|
function esc(str) {
|
|
return JSON.stringify(str);
|
|
}
|
|
function slugify(input) {
|
|
return input.toLowerCase().trim().replace(/[^\w\s-]/g, "").replace(/[\s_-]+/g, "-").replace(/^-+|-+$/g, "");
|
|
}
|
|
var captureStackTrace = "captureStackTrace" in Error ? Error.captureStackTrace : (..._args) => {
|
|
};
|
|
function isObject(data) {
|
|
return typeof data === "object" && data !== null && !Array.isArray(data);
|
|
}
|
|
var allowsEval = cached(() => {
|
|
if (typeof navigator !== "undefined" && navigator?.userAgent?.includes("Cloudflare")) {
|
|
return false;
|
|
}
|
|
try {
|
|
const F = Function;
|
|
new F("");
|
|
return true;
|
|
} catch (_) {
|
|
return false;
|
|
}
|
|
});
|
|
function isPlainObject(o) {
|
|
if (isObject(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 (isObject(prot) === false)
|
|
return false;
|
|
if (Object.prototype.hasOwnProperty.call(prot, "isPrototypeOf") === false) {
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
function shallowClone(o) {
|
|
if (isPlainObject(o))
|
|
return { ...o };
|
|
if (Array.isArray(o))
|
|
return [...o];
|
|
return o;
|
|
}
|
|
function numKeys(data) {
|
|
let keyCount = 0;
|
|
for (const key in data) {
|
|
if (Object.prototype.hasOwnProperty.call(data, key)) {
|
|
keyCount++;
|
|
}
|
|
}
|
|
return keyCount;
|
|
}
|
|
var getParsedType2 = (data) => {
|
|
const t = typeof data;
|
|
switch (t) {
|
|
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: ${t}`);
|
|
}
|
|
};
|
|
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, "\\$&");
|
|
}
|
|
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;
|
|
}
|
|
function normalizeParams(_params) {
|
|
const params = _params;
|
|
if (!params)
|
|
return {};
|
|
if (typeof params === "string")
|
|
return { error: () => params };
|
|
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: () => params.error };
|
|
return params;
|
|
}
|
|
function createTransparentProxy(getter) {
|
|
let target;
|
|
return new Proxy({}, {
|
|
get(_, prop, receiver) {
|
|
target ?? (target = getter());
|
|
return Reflect.get(target, prop, receiver);
|
|
},
|
|
set(_, prop, value, receiver) {
|
|
target ?? (target = getter());
|
|
return Reflect.set(target, prop, value, receiver);
|
|
},
|
|
has(_, prop) {
|
|
target ?? (target = getter());
|
|
return Reflect.has(target, prop);
|
|
},
|
|
deleteProperty(_, prop) {
|
|
target ?? (target = getter());
|
|
return Reflect.deleteProperty(target, prop);
|
|
},
|
|
ownKeys(_) {
|
|
target ?? (target = getter());
|
|
return Reflect.ownKeys(target);
|
|
},
|
|
getOwnPropertyDescriptor(_, prop) {
|
|
target ?? (target = getter());
|
|
return Reflect.getOwnPropertyDescriptor(target, prop);
|
|
},
|
|
defineProperty(_, prop, descriptor) {
|
|
target ?? (target = getter());
|
|
return Reflect.defineProperty(target, prop, descriptor);
|
|
}
|
|
});
|
|
}
|
|
function stringifyPrimitive(value) {
|
|
if (typeof value === "bigint")
|
|
return value.toString() + "n";
|
|
if (typeof value === "string")
|
|
return `"${value}"`;
|
|
return `${value}`;
|
|
}
|
|
function optionalKeys(shape) {
|
|
return Object.keys(shape).filter((k) => {
|
|
return shape[k]._zod.optin === "optional" && shape[k]._zod.optout === "optional";
|
|
});
|
|
}
|
|
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);
|
|
}
|
|
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);
|
|
}
|
|
function extend(schema, shape) {
|
|
if (!isPlainObject(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);
|
|
}
|
|
function safeExtend(schema, shape) {
|
|
if (!isPlainObject(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);
|
|
}
|
|
function merge(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);
|
|
}
|
|
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);
|
|
}
|
|
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);
|
|
}
|
|
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;
|
|
}
|
|
function prefixIssues(path3, issues) {
|
|
return issues.map((iss) => {
|
|
var _a2;
|
|
(_a2 = iss).path ?? (_a2.path = []);
|
|
iss.path.unshift(path3);
|
|
return iss;
|
|
});
|
|
}
|
|
function unwrapMessage(message) {
|
|
return typeof message === "string" ? message : message?.message;
|
|
}
|
|
function finalizeIssue(iss, ctx, config3) {
|
|
const full = { ...iss, path: iss.path ?? [] };
|
|
if (!iss.message) {
|
|
const message = unwrapMessage(iss.inst?._zod.def?.error?.(iss)) ?? unwrapMessage(ctx?.error?.(iss)) ?? unwrapMessage(config3.customError?.(iss)) ?? unwrapMessage(config3.localeError?.(iss)) ?? "Invalid input";
|
|
full.message = message;
|
|
}
|
|
delete full.inst;
|
|
delete full.continue;
|
|
if (!ctx?.reportInput) {
|
|
delete full.input;
|
|
}
|
|
return full;
|
|
}
|
|
function getSizableOrigin(input) {
|
|
if (input instanceof Set)
|
|
return "set";
|
|
if (input instanceof Map)
|
|
return "map";
|
|
if (input instanceof File)
|
|
return "file";
|
|
return "unknown";
|
|
}
|
|
function getLengthableOrigin(input) {
|
|
if (Array.isArray(input))
|
|
return "array";
|
|
if (typeof input === "string")
|
|
return "string";
|
|
return "unknown";
|
|
}
|
|
function parsedType(data) {
|
|
const t = typeof data;
|
|
switch (t) {
|
|
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 t;
|
|
}
|
|
function issue(...args) {
|
|
const [iss, input, inst] = args;
|
|
if (typeof iss === "string") {
|
|
return {
|
|
message: iss,
|
|
code: "custom",
|
|
input,
|
|
inst
|
|
};
|
|
}
|
|
return { ...iss };
|
|
}
|
|
function cleanEnum(obj) {
|
|
return Object.entries(obj).filter(([k, _]) => {
|
|
return Number.isNaN(Number.parseInt(k, 10));
|
|
}).map((el) => el[1]);
|
|
}
|
|
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;
|
|
}
|
|
function uint8ArrayToBase64(bytes) {
|
|
let binaryString = "";
|
|
for (let i = 0; i < bytes.length; i++) {
|
|
binaryString += String.fromCharCode(bytes[i]);
|
|
}
|
|
return btoa(binaryString);
|
|
}
|
|
function base64urlToUint8Array(base64url3) {
|
|
const base643 = base64url3.replace(/-/g, "+").replace(/_/g, "/");
|
|
const padding = "=".repeat((4 - base643.length % 4) % 4);
|
|
return base64ToUint8Array(base643 + padding);
|
|
}
|
|
function uint8ArrayToBase64url(bytes) {
|
|
return uint8ArrayToBase64(bytes).replace(/\+/g, "-").replace(/\//g, "_").replace(/=/g, "");
|
|
}
|
|
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;
|
|
}
|
|
function uint8ArrayToHex(bytes) {
|
|
return Array.from(bytes).map((b) => b.toString(16).padStart(2, "0")).join("");
|
|
}
|
|
var Class = class {
|
|
constructor(..._args) {
|
|
}
|
|
};
|
|
|
|
// node_modules/zod/v4/core/errors.js
|
|
var initializer = (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: () => inst.message,
|
|
enumerable: false
|
|
});
|
|
};
|
|
var $ZodError = $constructor("$ZodError", initializer);
|
|
var $ZodRealError = $constructor("$ZodError", initializer, { Parent: Error });
|
|
function flattenError(error2, mapper = (issue2) => issue2.message) {
|
|
const fieldErrors = {};
|
|
const formErrors = [];
|
|
for (const sub of error2.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 };
|
|
}
|
|
function formatError(error2, mapper = (issue2) => issue2.message) {
|
|
const fieldErrors = { _errors: [] };
|
|
const processError = (error3) => {
|
|
for (const issue2 of error3.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(error2);
|
|
return fieldErrors;
|
|
}
|
|
|
|
// node_modules/zod/v4/core/parse.js
|
|
var _parse = (_Err) => (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 ?? _Err)(result.issues.map((iss) => finalizeIssue(iss, ctx, config())));
|
|
captureStackTrace(e, _params?.callee);
|
|
throw e;
|
|
}
|
|
return result.value;
|
|
};
|
|
var parse = /* @__PURE__ */ _parse($ZodRealError);
|
|
var _parseAsync = (_Err) => 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 ?? _Err)(result.issues.map((iss) => finalizeIssue(iss, ctx, config())));
|
|
captureStackTrace(e, params?.callee);
|
|
throw e;
|
|
}
|
|
return result.value;
|
|
};
|
|
var parseAsync = /* @__PURE__ */ _parseAsync($ZodRealError);
|
|
var _safeParse = (_Err) => (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 (_Err ?? $ZodError)(result.issues.map((iss) => finalizeIssue(iss, ctx, config())))
|
|
} : { success: true, data: result.value };
|
|
};
|
|
var safeParse = /* @__PURE__ */ _safeParse($ZodRealError);
|
|
var _safeParseAsync = (_Err) => 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 _Err(result.issues.map((iss) => finalizeIssue(iss, ctx, config())))
|
|
} : { success: true, data: result.value };
|
|
};
|
|
var safeParseAsync = /* @__PURE__ */ _safeParseAsync($ZodRealError);
|
|
var _encode = (_Err) => (schema, value, _ctx) => {
|
|
const ctx = _ctx ? Object.assign(_ctx, { direction: "backward" }) : { direction: "backward" };
|
|
return _parse(_Err)(schema, value, ctx);
|
|
};
|
|
var _decode = (_Err) => (schema, value, _ctx) => {
|
|
return _parse(_Err)(schema, value, _ctx);
|
|
};
|
|
var _encodeAsync = (_Err) => async (schema, value, _ctx) => {
|
|
const ctx = _ctx ? Object.assign(_ctx, { direction: "backward" }) : { direction: "backward" };
|
|
return _parseAsync(_Err)(schema, value, ctx);
|
|
};
|
|
var _decodeAsync = (_Err) => async (schema, value, _ctx) => {
|
|
return _parseAsync(_Err)(schema, value, _ctx);
|
|
};
|
|
var _safeEncode = (_Err) => (schema, value, _ctx) => {
|
|
const ctx = _ctx ? Object.assign(_ctx, { direction: "backward" }) : { direction: "backward" };
|
|
return _safeParse(_Err)(schema, value, ctx);
|
|
};
|
|
var _safeDecode = (_Err) => (schema, value, _ctx) => {
|
|
return _safeParse(_Err)(schema, value, _ctx);
|
|
};
|
|
var _safeEncodeAsync = (_Err) => async (schema, value, _ctx) => {
|
|
const ctx = _ctx ? Object.assign(_ctx, { direction: "backward" }) : { direction: "backward" };
|
|
return _safeParseAsync(_Err)(schema, value, ctx);
|
|
};
|
|
var _safeDecodeAsync = (_Err) => async (schema, value, _ctx) => {
|
|
return _safeParseAsync(_Err)(schema, value, _ctx);
|
|
};
|
|
|
|
// node_modules/zod/v4/core/regexes.js
|
|
var regexes_exports = {};
|
|
__export(regexes_exports, {
|
|
base64: () => base64,
|
|
base64url: () => base64url,
|
|
bigint: () => bigint,
|
|
boolean: () => boolean,
|
|
browserEmail: () => browserEmail,
|
|
cidrv4: () => cidrv4,
|
|
cidrv6: () => cidrv6,
|
|
cuid: () => cuid,
|
|
cuid2: () => cuid2,
|
|
date: () => date,
|
|
datetime: () => datetime,
|
|
domain: () => domain,
|
|
duration: () => duration,
|
|
e164: () => e164,
|
|
email: () => email,
|
|
emoji: () => emoji,
|
|
extendedDuration: () => extendedDuration,
|
|
guid: () => guid,
|
|
hex: () => hex,
|
|
hostname: () => hostname,
|
|
html5Email: () => html5Email,
|
|
idnEmail: () => idnEmail,
|
|
integer: () => integer,
|
|
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: () => time,
|
|
ulid: () => ulid,
|
|
undefined: () => _undefined,
|
|
unicodeEmail: () => unicodeEmail,
|
|
uppercase: () => uppercase,
|
|
uuid: () => uuid,
|
|
uuid4: () => uuid4,
|
|
uuid6: () => uuid6,
|
|
uuid7: () => uuid7,
|
|
xid: () => xid
|
|
});
|
|
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 = (version2) => {
|
|
if (!version2)
|
|
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}-${version2}[0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12})$`);
|
|
};
|
|
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");
|
|
}
|
|
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 = (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}$`);
|
|
};
|
|
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 domain = /^([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;
|
|
}
|
|
function time(args) {
|
|
return new RegExp(`^${timeSource(args)}$`);
|
|
}
|
|
function datetime(args) {
|
|
const time3 = 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 timeRegex2 = `${time3}(?:${opts.join("|")})`;
|
|
return new RegExp(`^${dateSource}T(?:${timeRegex2})$`);
|
|
}
|
|
var string = (params) => {
|
|
const regex = params ? `[\\s\\S]{${params?.minimum ?? 0},${params?.maximum ?? ""}}` : `[\\s\\S]*`;
|
|
return new RegExp(`^${regex}$`);
|
|
};
|
|
var bigint = /^-?\d+n?$/;
|
|
var integer = /^-?\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}$`);
|
|
}
|
|
function fixedBase64url(length) {
|
|
return new RegExp(`^[A-Za-z0-9_-]{${length}}$`);
|
|
}
|
|
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 origin = 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,
|
|
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 origin = 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,
|
|
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) : floatSafeRemainder2(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 origin = 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 = integer;
|
|
});
|
|
inst._zod.check = (payload) => {
|
|
const input = payload.value;
|
|
if (isInt) {
|
|
if (!Number.isInteger(input)) {
|
|
payload.issues.push({
|
|
expected: origin,
|
|
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,
|
|
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,
|
|
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 origin = getLengthableOrigin(input);
|
|
payload.issues.push({
|
|
origin,
|
|
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 origin = getLengthableOrigin(input);
|
|
payload.issues.push({
|
|
origin,
|
|
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 origin = getLengthableOrigin(input);
|
|
const tooBig = length > def.length;
|
|
payload.issues.push({
|
|
origin,
|
|
...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));
|
|
}
|
|
}
|
|
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
|
|
var Doc = class {
|
|
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 content = arg;
|
|
const lines = content.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 content = this?.content ?? [``];
|
|
const lines = [...content.map((x) => ` ${x}`)];
|
|
return new F(...args, lines.join("\n"));
|
|
}
|
|
};
|
|
|
|
// node_modules/zod/v4/core/versions.js
|
|
var version = {
|
|
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 = version;
|
|
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 = (payload, checks2, ctx) => {
|
|
let isAborted2 = 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 (isAborted2) {
|
|
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 (!isAborted2)
|
|
isAborted2 = aborted(payload, currLen);
|
|
});
|
|
} else {
|
|
const nextLen = payload.issues.length;
|
|
if (nextLen === currLen)
|
|
continue;
|
|
if (!isAborted2)
|
|
isAborted2 = aborted(payload, currLen);
|
|
}
|
|
}
|
|
if (asyncResult) {
|
|
return asyncResult.then(() => {
|
|
return payload;
|
|
});
|
|
}
|
|
return payload;
|
|
};
|
|
const handleCanaryResult = (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);
|
|
};
|
|
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: (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 });
|
|
}
|
|
},
|
|
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 v = versionMap[def.version];
|
|
if (v === void 0)
|
|
throw new Error(`Invalid UUID version: "${def.version}"`);
|
|
def.pattern ?? (def.pattern = uuid(v));
|
|
} 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 = time(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;
|
|
}
|
|
}
|
|
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);
|
|
}
|
|
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 isValidJWT2(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;
|
|
}
|
|
}
|
|
var $ZodJWT = /* @__PURE__ */ $constructor("$ZodJWT", (inst, def) => {
|
|
$ZodStringFormat.init(inst, def);
|
|
inst._zod.check = (payload) => {
|
|
if (isValidJWT2(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 = bigint;
|
|
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 isDate = input instanceof Date;
|
|
const isValidDate = isDate && !Number.isNaN(input.getTime());
|
|
if (isValidDate)
|
|
return payload;
|
|
payload.issues.push({
|
|
expected: "date",
|
|
code: "invalid_type",
|
|
input,
|
|
...isDate ? { 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;
|
|
}
|
|
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;
|
|
}
|
|
}
|
|
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)
|
|
};
|
|
}
|
|
function handleCatchall(proms, input, payload, ctx, def, inst) {
|
|
const unrecognized = [];
|
|
const keySet = def.keySet;
|
|
const _catchall = def.catchall._zod;
|
|
const t = _catchall.def.type;
|
|
const isOptionalOut = _catchall.optout === "optional";
|
|
for (const key in input) {
|
|
if (keySet.has(key))
|
|
continue;
|
|
if (t === "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;
|
|
});
|
|
}
|
|
var $ZodObject = /* @__PURE__ */ $constructor("$ZodObject", (inst, def) => {
|
|
$ZodType.init(inst, def);
|
|
const desc = Object.getOwnPropertyDescriptor(def, "shape");
|
|
if (!desc?.get) {
|
|
const sh = def.shape;
|
|
Object.defineProperty(def, "shape", {
|
|
get: () => {
|
|
const newSh = { ...sh };
|
|
Object.defineProperty(def, "shape", {
|
|
value: newSh
|
|
});
|
|
return newSh;
|
|
}
|
|
});
|
|
}
|
|
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 v of field.values)
|
|
propValues[key].add(v);
|
|
}
|
|
}
|
|
return propValues;
|
|
});
|
|
const isObject2 = isObject;
|
|
const catchall = def.catchall;
|
|
let value;
|
|
inst._zod.parse = (payload, ctx) => {
|
|
value ?? (value = _normalized.value);
|
|
const input = payload.value;
|
|
if (!isObject2(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 = (shape) => {
|
|
const doc = new Doc(["shape", "payload", "ctx"]);
|
|
const normalized = _normalized.value;
|
|
const parseStr = (key) => {
|
|
const k = esc(key);
|
|
return `shape[${k}]._zod.run({ value: input[${k}], issues: [] }, ctx)`;
|
|
};
|
|
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);
|
|
};
|
|
let fastpass;
|
|
const isObject2 = isObject;
|
|
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 (!isObject2(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, config())))
|
|
});
|
|
return final;
|
|
}
|
|
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, config())))
|
|
});
|
|
} else {
|
|
final.issues.push({
|
|
code: "invalid_union",
|
|
input: final.value,
|
|
inst,
|
|
errors: [],
|
|
inclusive: false
|
|
});
|
|
}
|
|
return final;
|
|
}
|
|
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, v] of Object.entries(pv)) {
|
|
if (!propValues[k])
|
|
propValues[k] = /* @__PURE__ */ new Set();
|
|
for (const val of v) {
|
|
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 v of values) {
|
|
if (map2.has(v)) {
|
|
throw new Error(`Duplicate discriminator value "${String(v)}"`);
|
|
}
|
|
map2.set(v, o);
|
|
}
|
|
}
|
|
return map2;
|
|
});
|
|
inst._zod.parse = (payload, ctx) => {
|
|
const input = payload.value;
|
|
if (!isObject(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 mergeValues2(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 (isPlainObject(a) && isPlainObject(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 = mergeValues2(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 = mergeValues2(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: [] };
|
|
}
|
|
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 = mergeValues2(left.value, right.value);
|
|
if (!merged.valid) {
|
|
throw new Error(`Unmergable intersection. Error path: ${JSON.stringify(merged.mergeErrorPath)}`);
|
|
}
|
|
result.value = merged.data;
|
|
return result;
|
|
}
|
|
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;
|
|
}
|
|
var $ZodRecord = /* @__PURE__ */ $constructor("$ZodRecord", (inst, def) => {
|
|
$ZodType.init(inst, def);
|
|
inst._zod.parse = (payload, ctx) => {
|
|
const input = payload.value;
|
|
if (!isPlainObject(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, config())),
|
|
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, config()))
|
|
});
|
|
}
|
|
}
|
|
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, config()))
|
|
});
|
|
}
|
|
}
|
|
final.value.set(keyResult.value, valueResult.value);
|
|
}
|
|
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);
|
|
}
|
|
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;
|
|
}
|
|
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;
|
|
}
|
|
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 v = def.innerType._zod.values;
|
|
return v ? new Set([...v].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;
|
|
}
|
|
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, config()))
|
|
},
|
|
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, config()))
|
|
},
|
|
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);
|
|
}
|
|
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);
|
|
}
|
|
}
|
|
function handleCodecTxResult(left, value, nextSchema, ctx) {
|
|
if (left.issues.length) {
|
|
left.aborted = true;
|
|
return left;
|
|
}
|
|
return nextSchema._zod.run({ value, issues: left.issues }, ctx);
|
|
}
|
|
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;
|
|
}
|
|
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));
|
|
}
|
|
}
|
|
|
|
// node_modules/zod/v4/locales/en.js
|
|
var error = () => {
|
|
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(origin) {
|
|
return Sizable[origin] ?? null;
|
|
}
|
|
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`;
|
|
}
|
|
};
|
|
};
|
|
function en_default2() {
|
|
return {
|
|
localeError: error()
|
|
};
|
|
}
|
|
|
|
// node_modules/zod/v4/core/registries.js
|
|
var _a;
|
|
var $output = Symbol("ZodOutput");
|
|
var $input = Symbol("ZodInput");
|
|
var $ZodRegistry = class {
|
|
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();
|
|
}
|
|
(_a = globalThis).__zod_globalRegistry ?? (_a.__zod_globalRegistry = registry());
|
|
var globalRegistry = globalThis.__zod_globalRegistry;
|
|
|
|
// node_modules/zod/v4/core/api.js
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _string(Class2, params) {
|
|
return new Class2({
|
|
type: "string",
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _email(Class2, params) {
|
|
return new Class2({
|
|
type: "string",
|
|
format: "email",
|
|
check: "string_format",
|
|
abort: false,
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _guid(Class2, params) {
|
|
return new Class2({
|
|
type: "string",
|
|
format: "guid",
|
|
check: "string_format",
|
|
abort: false,
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _uuid(Class2, params) {
|
|
return new Class2({
|
|
type: "string",
|
|
format: "uuid",
|
|
check: "string_format",
|
|
abort: false,
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _uuidv4(Class2, params) {
|
|
return new Class2({
|
|
type: "string",
|
|
format: "uuid",
|
|
check: "string_format",
|
|
abort: false,
|
|
version: "v4",
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _uuidv6(Class2, params) {
|
|
return new Class2({
|
|
type: "string",
|
|
format: "uuid",
|
|
check: "string_format",
|
|
abort: false,
|
|
version: "v6",
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _uuidv7(Class2, params) {
|
|
return new Class2({
|
|
type: "string",
|
|
format: "uuid",
|
|
check: "string_format",
|
|
abort: false,
|
|
version: "v7",
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _url(Class2, params) {
|
|
return new Class2({
|
|
type: "string",
|
|
format: "url",
|
|
check: "string_format",
|
|
abort: false,
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _emoji2(Class2, params) {
|
|
return new Class2({
|
|
type: "string",
|
|
format: "emoji",
|
|
check: "string_format",
|
|
abort: false,
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _nanoid(Class2, params) {
|
|
return new Class2({
|
|
type: "string",
|
|
format: "nanoid",
|
|
check: "string_format",
|
|
abort: false,
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _cuid(Class2, params) {
|
|
return new Class2({
|
|
type: "string",
|
|
format: "cuid",
|
|
check: "string_format",
|
|
abort: false,
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _cuid2(Class2, params) {
|
|
return new Class2({
|
|
type: "string",
|
|
format: "cuid2",
|
|
check: "string_format",
|
|
abort: false,
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _ulid(Class2, params) {
|
|
return new Class2({
|
|
type: "string",
|
|
format: "ulid",
|
|
check: "string_format",
|
|
abort: false,
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _xid(Class2, params) {
|
|
return new Class2({
|
|
type: "string",
|
|
format: "xid",
|
|
check: "string_format",
|
|
abort: false,
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _ksuid(Class2, params) {
|
|
return new Class2({
|
|
type: "string",
|
|
format: "ksuid",
|
|
check: "string_format",
|
|
abort: false,
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _ipv4(Class2, params) {
|
|
return new Class2({
|
|
type: "string",
|
|
format: "ipv4",
|
|
check: "string_format",
|
|
abort: false,
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _ipv6(Class2, params) {
|
|
return new Class2({
|
|
type: "string",
|
|
format: "ipv6",
|
|
check: "string_format",
|
|
abort: false,
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _mac(Class2, params) {
|
|
return new Class2({
|
|
type: "string",
|
|
format: "mac",
|
|
check: "string_format",
|
|
abort: false,
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _cidrv4(Class2, params) {
|
|
return new Class2({
|
|
type: "string",
|
|
format: "cidrv4",
|
|
check: "string_format",
|
|
abort: false,
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _cidrv6(Class2, params) {
|
|
return new Class2({
|
|
type: "string",
|
|
format: "cidrv6",
|
|
check: "string_format",
|
|
abort: false,
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _base64(Class2, params) {
|
|
return new Class2({
|
|
type: "string",
|
|
format: "base64",
|
|
check: "string_format",
|
|
abort: false,
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _base64url(Class2, params) {
|
|
return new Class2({
|
|
type: "string",
|
|
format: "base64url",
|
|
check: "string_format",
|
|
abort: false,
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _e164(Class2, params) {
|
|
return new Class2({
|
|
type: "string",
|
|
format: "e164",
|
|
check: "string_format",
|
|
abort: false,
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _jwt(Class2, params) {
|
|
return new Class2({
|
|
type: "string",
|
|
format: "jwt",
|
|
check: "string_format",
|
|
abort: false,
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__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)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _isoDate(Class2, params) {
|
|
return new Class2({
|
|
type: "string",
|
|
format: "date",
|
|
check: "string_format",
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _isoTime(Class2, params) {
|
|
return new Class2({
|
|
type: "string",
|
|
format: "time",
|
|
check: "string_format",
|
|
precision: null,
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _isoDuration(Class2, params) {
|
|
return new Class2({
|
|
type: "string",
|
|
format: "duration",
|
|
check: "string_format",
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _number(Class2, params) {
|
|
return new Class2({
|
|
type: "number",
|
|
checks: [],
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _int(Class2, params) {
|
|
return new Class2({
|
|
type: "number",
|
|
check: "number_format",
|
|
abort: false,
|
|
format: "safeint",
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _float32(Class2, params) {
|
|
return new Class2({
|
|
type: "number",
|
|
check: "number_format",
|
|
abort: false,
|
|
format: "float32",
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _float64(Class2, params) {
|
|
return new Class2({
|
|
type: "number",
|
|
check: "number_format",
|
|
abort: false,
|
|
format: "float64",
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _int32(Class2, params) {
|
|
return new Class2({
|
|
type: "number",
|
|
check: "number_format",
|
|
abort: false,
|
|
format: "int32",
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _uint32(Class2, params) {
|
|
return new Class2({
|
|
type: "number",
|
|
check: "number_format",
|
|
abort: false,
|
|
format: "uint32",
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _boolean(Class2, params) {
|
|
return new Class2({
|
|
type: "boolean",
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _bigint(Class2, params) {
|
|
return new Class2({
|
|
type: "bigint",
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _int64(Class2, params) {
|
|
return new Class2({
|
|
type: "bigint",
|
|
check: "bigint_format",
|
|
abort: false,
|
|
format: "int64",
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _uint64(Class2, params) {
|
|
return new Class2({
|
|
type: "bigint",
|
|
check: "bigint_format",
|
|
abort: false,
|
|
format: "uint64",
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _symbol(Class2, params) {
|
|
return new Class2({
|
|
type: "symbol",
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _undefined2(Class2, params) {
|
|
return new Class2({
|
|
type: "undefined",
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _null2(Class2, params) {
|
|
return new Class2({
|
|
type: "null",
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _any(Class2) {
|
|
return new Class2({
|
|
type: "any"
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _unknown(Class2) {
|
|
return new Class2({
|
|
type: "unknown"
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _never(Class2, params) {
|
|
return new Class2({
|
|
type: "never",
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _void(Class2, params) {
|
|
return new Class2({
|
|
type: "void",
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _date(Class2, params) {
|
|
return new Class2({
|
|
type: "date",
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _nan(Class2, params) {
|
|
return new Class2({
|
|
type: "nan",
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _lt(value, params) {
|
|
return new $ZodCheckLessThan({
|
|
check: "less_than",
|
|
...normalizeParams(params),
|
|
value,
|
|
inclusive: false
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _lte(value, params) {
|
|
return new $ZodCheckLessThan({
|
|
check: "less_than",
|
|
...normalizeParams(params),
|
|
value,
|
|
inclusive: true
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _gt(value, params) {
|
|
return new $ZodCheckGreaterThan({
|
|
check: "greater_than",
|
|
...normalizeParams(params),
|
|
value,
|
|
inclusive: false
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _gte(value, params) {
|
|
return new $ZodCheckGreaterThan({
|
|
check: "greater_than",
|
|
...normalizeParams(params),
|
|
value,
|
|
inclusive: true
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _positive(params) {
|
|
return /* @__PURE__ */ _gt(0, params);
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _negative(params) {
|
|
return /* @__PURE__ */ _lt(0, params);
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _nonpositive(params) {
|
|
return /* @__PURE__ */ _lte(0, params);
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _nonnegative(params) {
|
|
return /* @__PURE__ */ _gte(0, params);
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _multipleOf(value, params) {
|
|
return new $ZodCheckMultipleOf({
|
|
check: "multiple_of",
|
|
...normalizeParams(params),
|
|
value
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _maxSize(maximum, params) {
|
|
return new $ZodCheckMaxSize({
|
|
check: "max_size",
|
|
...normalizeParams(params),
|
|
maximum
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _minSize(minimum, params) {
|
|
return new $ZodCheckMinSize({
|
|
check: "min_size",
|
|
...normalizeParams(params),
|
|
minimum
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _size(size, params) {
|
|
return new $ZodCheckSizeEquals({
|
|
check: "size_equals",
|
|
...normalizeParams(params),
|
|
size
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _maxLength(maximum, params) {
|
|
const ch = new $ZodCheckMaxLength({
|
|
check: "max_length",
|
|
...normalizeParams(params),
|
|
maximum
|
|
});
|
|
return ch;
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _minLength(minimum, params) {
|
|
return new $ZodCheckMinLength({
|
|
check: "min_length",
|
|
...normalizeParams(params),
|
|
minimum
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _length(length, params) {
|
|
return new $ZodCheckLengthEquals({
|
|
check: "length_equals",
|
|
...normalizeParams(params),
|
|
length
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _regex(pattern, params) {
|
|
return new $ZodCheckRegex({
|
|
check: "string_format",
|
|
format: "regex",
|
|
...normalizeParams(params),
|
|
pattern
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _lowercase(params) {
|
|
return new $ZodCheckLowerCase({
|
|
check: "string_format",
|
|
format: "lowercase",
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _uppercase(params) {
|
|
return new $ZodCheckUpperCase({
|
|
check: "string_format",
|
|
format: "uppercase",
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _includes(includes, params) {
|
|
return new $ZodCheckIncludes({
|
|
check: "string_format",
|
|
format: "includes",
|
|
...normalizeParams(params),
|
|
includes
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _startsWith(prefix, params) {
|
|
return new $ZodCheckStartsWith({
|
|
check: "string_format",
|
|
format: "starts_with",
|
|
...normalizeParams(params),
|
|
prefix
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _endsWith(suffix, params) {
|
|
return new $ZodCheckEndsWith({
|
|
check: "string_format",
|
|
format: "ends_with",
|
|
...normalizeParams(params),
|
|
suffix
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _property(property, schema, params) {
|
|
return new $ZodCheckProperty({
|
|
check: "property",
|
|
property,
|
|
schema,
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _mime(types, params) {
|
|
return new $ZodCheckMimeType({
|
|
check: "mime_type",
|
|
mime: types,
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _overwrite(tx) {
|
|
return new $ZodCheckOverwrite({
|
|
check: "overwrite",
|
|
tx
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _normalize(form) {
|
|
return /* @__PURE__ */ _overwrite((input) => input.normalize(form));
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _trim() {
|
|
return /* @__PURE__ */ _overwrite((input) => input.trim());
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _toLowerCase() {
|
|
return /* @__PURE__ */ _overwrite((input) => input.toLowerCase());
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _toUpperCase() {
|
|
return /* @__PURE__ */ _overwrite((input) => input.toUpperCase());
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _slugify() {
|
|
return /* @__PURE__ */ _overwrite((input) => slugify(input));
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _array(Class2, element, params) {
|
|
return new Class2({
|
|
type: "array",
|
|
element,
|
|
// get element() {
|
|
// return element;
|
|
// },
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _file(Class2, params) {
|
|
return new Class2({
|
|
type: "file",
|
|
...normalizeParams(params)
|
|
});
|
|
}
|
|
// @__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;
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _refine(Class2, fn, _params) {
|
|
const schema = new Class2({
|
|
type: "custom",
|
|
check: "custom",
|
|
fn,
|
|
...normalizeParams(_params)
|
|
});
|
|
return schema;
|
|
}
|
|
// @__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;
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function _check(fn, params) {
|
|
const ch = new $ZodCheck({
|
|
check: "custom",
|
|
...normalizeParams(params)
|
|
});
|
|
ch._zod.check = fn;
|
|
return ch;
|
|
}
|
|
// @__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;
|
|
}
|
|
// @__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;
|
|
}
|
|
// @__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((v) => typeof v === "string" ? v.toLowerCase() : v);
|
|
falsyArray = falsyArray.map((v) => typeof v === "string" ? v.toLowerCase() : v);
|
|
}
|
|
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: ((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 {};
|
|
}
|
|
}),
|
|
reverseTransform: ((input, _payload) => {
|
|
if (input === true) {
|
|
return truthyArray[0] || "true";
|
|
} else {
|
|
return falsyArray[0] || "false";
|
|
}
|
|
}),
|
|
error: params.error
|
|
});
|
|
return codec2;
|
|
}
|
|
// @__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;
|
|
}
|
|
|
|
// node_modules/zod/v4/core/to-json-schema.js
|
|
function initializeContext(params) {
|
|
let target = params?.target ?? "draft-2020-12";
|
|
if (target === "draft-4")
|
|
target = "draft-04";
|
|
if (target === "draft-7")
|
|
target = "draft-07";
|
|
return {
|
|
processors: params.processors ?? {},
|
|
metadataRegistry: params?.metadata ?? globalRegistry,
|
|
target,
|
|
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
|
|
};
|
|
}
|
|
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;
|
|
}
|
|
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 = (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 };
|
|
};
|
|
const extractToDef = (entry) => {
|
|
if (entry[1].schema.$ref) {
|
|
return;
|
|
}
|
|
const seen = entry[1];
|
|
const { ref, 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 = ref;
|
|
};
|
|
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("/")}/<root>
|
|
|
|
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;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
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 = (zodSchema) => {
|
|
const seen = ctx.seen.get(zodSchema);
|
|
if (seen.ref === null)
|
|
return;
|
|
const schema2 = seen.def ?? seen.schema;
|
|
const _cached = { ...schema2 };
|
|
const ref = seen.ref;
|
|
seen.ref = null;
|
|
if (ref) {
|
|
flattenRef(ref);
|
|
const refSeen = ctx.seen.get(ref);
|
|
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 === ref;
|
|
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 !== ref) {
|
|
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 ?? []
|
|
});
|
|
};
|
|
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.");
|
|
}
|
|
}
|
|
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;
|
|
}
|
|
var createToJSONSchemaMethod = (schema, processors = {}) => (params) => {
|
|
const ctx = initializeContext({ ...params, processors });
|
|
process2(schema, ctx);
|
|
extractDefs(ctx, schema);
|
|
return finalize(ctx, schema);
|
|
};
|
|
var createStandardJSONSchemaMethod = (schema, io, processors = {}) => (params) => {
|
|
const { libraryOptions, target } = params ?? {};
|
|
const ctx = initializeContext({ ...libraryOptions ?? {}, target, io, processors });
|
|
process2(schema, ctx);
|
|
extractDefs(ctx, schema);
|
|
return finalize(ctx, schema);
|
|
};
|
|
|
|
// node_modules/zod/v4/core/json-schema-processors.js
|
|
var formatMap = {
|
|
guid: "uuid",
|
|
url: "uri",
|
|
datetime: "date-time",
|
|
json_string: "json-string",
|
|
regex: ""
|
|
// do not set
|
|
};
|
|
var stringProcessor = (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
|
|
}))
|
|
];
|
|
}
|
|
}
|
|
};
|
|
var numberProcessor = (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;
|
|
};
|
|
var booleanProcessor = (_schema, _ctx, json2, _params) => {
|
|
json2.type = "boolean";
|
|
};
|
|
var bigintProcessor = (_schema, ctx, _json, _params) => {
|
|
if (ctx.unrepresentable === "throw") {
|
|
throw new Error("BigInt cannot be represented in JSON Schema");
|
|
}
|
|
};
|
|
var symbolProcessor = (_schema, ctx, _json, _params) => {
|
|
if (ctx.unrepresentable === "throw") {
|
|
throw new Error("Symbols cannot be represented in JSON Schema");
|
|
}
|
|
};
|
|
var nullProcessor = (_schema, ctx, json2, _params) => {
|
|
if (ctx.target === "openapi-3.0") {
|
|
json2.type = "string";
|
|
json2.nullable = true;
|
|
json2.enum = [null];
|
|
} else {
|
|
json2.type = "null";
|
|
}
|
|
};
|
|
var undefinedProcessor = (_schema, ctx, _json, _params) => {
|
|
if (ctx.unrepresentable === "throw") {
|
|
throw new Error("Undefined cannot be represented in JSON Schema");
|
|
}
|
|
};
|
|
var voidProcessor = (_schema, ctx, _json, _params) => {
|
|
if (ctx.unrepresentable === "throw") {
|
|
throw new Error("Void cannot be represented in JSON Schema");
|
|
}
|
|
};
|
|
var neverProcessor = (_schema, _ctx, json2, _params) => {
|
|
json2.not = {};
|
|
};
|
|
var anyProcessor = (_schema, _ctx, _json, _params) => {
|
|
};
|
|
var unknownProcessor = (_schema, _ctx, _json, _params) => {
|
|
};
|
|
var dateProcessor = (_schema, ctx, _json, _params) => {
|
|
if (ctx.unrepresentable === "throw") {
|
|
throw new Error("Date cannot be represented in JSON Schema");
|
|
}
|
|
};
|
|
var enumProcessor = (schema, _ctx, json2, _params) => {
|
|
const def = schema._zod.def;
|
|
const values = getEnumValues(def.entries);
|
|
if (values.every((v) => typeof v === "number"))
|
|
json2.type = "number";
|
|
if (values.every((v) => typeof v === "string"))
|
|
json2.type = "string";
|
|
json2.enum = values;
|
|
};
|
|
var literalProcessor = (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((v) => typeof v === "number"))
|
|
json2.type = "number";
|
|
if (vals.every((v) => typeof v === "string"))
|
|
json2.type = "string";
|
|
if (vals.every((v) => typeof v === "boolean"))
|
|
json2.type = "boolean";
|
|
if (vals.every((v) => v === null))
|
|
json2.type = "null";
|
|
json2.enum = vals;
|
|
}
|
|
};
|
|
var nanProcessor = (_schema, ctx, _json, _params) => {
|
|
if (ctx.unrepresentable === "throw") {
|
|
throw new Error("NaN cannot be represented in JSON Schema");
|
|
}
|
|
};
|
|
var templateLiteralProcessor = (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;
|
|
};
|
|
var fileProcessor = (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);
|
|
}
|
|
};
|
|
var successProcessor = (_schema, _ctx, json2, _params) => {
|
|
json2.type = "boolean";
|
|
};
|
|
var customProcessor = (_schema, ctx, _json, _params) => {
|
|
if (ctx.unrepresentable === "throw") {
|
|
throw new Error("Custom types cannot be represented in JSON Schema");
|
|
}
|
|
};
|
|
var functionProcessor = (_schema, ctx, _json, _params) => {
|
|
if (ctx.unrepresentable === "throw") {
|
|
throw new Error("Function types cannot be represented in JSON Schema");
|
|
}
|
|
};
|
|
var transformProcessor = (_schema, ctx, _json, _params) => {
|
|
if (ctx.unrepresentable === "throw") {
|
|
throw new Error("Transforms cannot be represented in JSON Schema");
|
|
}
|
|
};
|
|
var mapProcessor = (_schema, ctx, _json, _params) => {
|
|
if (ctx.unrepresentable === "throw") {
|
|
throw new Error("Map cannot be represented in JSON Schema");
|
|
}
|
|
};
|
|
var setProcessor = (_schema, ctx, _json, _params) => {
|
|
if (ctx.unrepresentable === "throw") {
|
|
throw new Error("Set cannot be represented in JSON Schema");
|
|
}
|
|
};
|
|
var arrayProcessor = (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"] });
|
|
};
|
|
var objectProcessor = (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 v = def.shape[key]._zod;
|
|
if (ctx.io === "input") {
|
|
return v.optin === void 0;
|
|
} else {
|
|
return v.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"]
|
|
});
|
|
}
|
|
};
|
|
var unionProcessor = (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;
|
|
}
|
|
};
|
|
var intersectionProcessor = (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 = (val) => "allOf" in val && Object.keys(val).length === 1;
|
|
const allOf = [
|
|
...isSimpleIntersection(a) ? a.allOf : [a],
|
|
...isSimpleIntersection(b) ? b.allOf : [b]
|
|
];
|
|
json2.allOf = allOf;
|
|
};
|
|
var tupleProcessor = (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;
|
|
};
|
|
var recordProcessor = (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((v) => typeof v === "string" || typeof v === "number");
|
|
if (validKeyValues.length > 0) {
|
|
json2.required = validKeyValues;
|
|
}
|
|
}
|
|
};
|
|
var nullableProcessor = (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" }];
|
|
}
|
|
};
|
|
var nonoptionalProcessor = (schema, ctx, _json, params) => {
|
|
const def = schema._zod.def;
|
|
process2(def.innerType, ctx, params);
|
|
const seen = ctx.seen.get(schema);
|
|
seen.ref = def.innerType;
|
|
};
|
|
var defaultProcessor = (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));
|
|
};
|
|
var prefaultProcessor = (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));
|
|
};
|
|
var catchProcessor = (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;
|
|
};
|
|
var pipeProcessor = (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;
|
|
};
|
|
var readonlyProcessor = (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;
|
|
};
|
|
var promiseProcessor = (schema, ctx, _json, params) => {
|
|
const def = schema._zod.def;
|
|
process2(def.innerType, ctx, params);
|
|
const seen = ctx.seen.get(schema);
|
|
seen.ref = def.innerType;
|
|
};
|
|
var optionalProcessor = (schema, ctx, _json, params) => {
|
|
const def = schema._zod.def;
|
|
process2(def.innerType, ctx, params);
|
|
const seen = ctx.seen.get(schema);
|
|
seen.ref = def.innerType;
|
|
};
|
|
var lazyProcessor = (schema, ctx, _json, params) => {
|
|
const innerType = schema._zod.innerType;
|
|
process2(innerType, ctx, params);
|
|
const seen = ctx.seen.get(schema);
|
|
seen.ref = innerType;
|
|
};
|
|
|
|
// node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-compat.js
|
|
function isZ4Schema(s) {
|
|
const schema = s;
|
|
return !!schema._zod;
|
|
}
|
|
function safeParse2(schema, data) {
|
|
if (isZ4Schema(schema)) {
|
|
const result2 = safeParse(schema, data);
|
|
return result2;
|
|
}
|
|
const v3Schema = schema;
|
|
const result = v3Schema.safeParse(data);
|
|
return result;
|
|
}
|
|
function getObjectShape(schema) {
|
|
if (!schema)
|
|
return void 0;
|
|
let rawShape;
|
|
if (isZ4Schema(schema)) {
|
|
const v4Schema = schema;
|
|
rawShape = v4Schema._zod?.def?.shape;
|
|
} else {
|
|
const v3Schema = schema;
|
|
rawShape = v3Schema.shape;
|
|
}
|
|
if (!rawShape)
|
|
return void 0;
|
|
if (typeof rawShape === "function") {
|
|
try {
|
|
return rawShape();
|
|
} catch {
|
|
return void 0;
|
|
}
|
|
}
|
|
return rawShape;
|
|
}
|
|
function getLiteralValue(schema) {
|
|
if (isZ4Schema(schema)) {
|
|
const v4Schema = schema;
|
|
const def2 = v4Schema._zod?.def;
|
|
if (def2) {
|
|
if (def2.value !== void 0)
|
|
return def2.value;
|
|
if (Array.isArray(def2.values) && def2.values.length > 0) {
|
|
return def2.values[0];
|
|
}
|
|
}
|
|
}
|
|
const v3Schema = schema;
|
|
const def = v3Schema._def;
|
|
if (def) {
|
|
if (def.value !== void 0)
|
|
return def.value;
|
|
if (Array.isArray(def.values) && def.values.length > 0) {
|
|
return def.values[0];
|
|
}
|
|
}
|
|
const directValue = schema.value;
|
|
if (directValue !== void 0)
|
|
return directValue;
|
|
return void 0;
|
|
}
|
|
|
|
// node_modules/zod/v4/classic/schemas.js
|
|
var schemas_exports3 = {};
|
|
__export(schemas_exports3, {
|
|
ZodAny: () => ZodAny2,
|
|
ZodArray: () => ZodArray2,
|
|
ZodBase64: () => ZodBase64,
|
|
ZodBase64URL: () => ZodBase64URL,
|
|
ZodBigInt: () => ZodBigInt2,
|
|
ZodBigIntFormat: () => ZodBigIntFormat,
|
|
ZodBoolean: () => ZodBoolean2,
|
|
ZodCIDRv4: () => ZodCIDRv4,
|
|
ZodCIDRv6: () => ZodCIDRv6,
|
|
ZodCUID: () => ZodCUID,
|
|
ZodCUID2: () => ZodCUID2,
|
|
ZodCatch: () => ZodCatch2,
|
|
ZodCodec: () => ZodCodec,
|
|
ZodCustom: () => ZodCustom,
|
|
ZodCustomStringFormat: () => ZodCustomStringFormat,
|
|
ZodDate: () => ZodDate2,
|
|
ZodDefault: () => ZodDefault2,
|
|
ZodDiscriminatedUnion: () => ZodDiscriminatedUnion2,
|
|
ZodE164: () => ZodE164,
|
|
ZodEmail: () => ZodEmail,
|
|
ZodEmoji: () => ZodEmoji,
|
|
ZodEnum: () => ZodEnum2,
|
|
ZodExactOptional: () => ZodExactOptional,
|
|
ZodFile: () => ZodFile,
|
|
ZodFunction: () => ZodFunction2,
|
|
ZodGUID: () => ZodGUID,
|
|
ZodIPv4: () => ZodIPv4,
|
|
ZodIPv6: () => ZodIPv6,
|
|
ZodIntersection: () => ZodIntersection2,
|
|
ZodJWT: () => ZodJWT,
|
|
ZodKSUID: () => ZodKSUID,
|
|
ZodLazy: () => ZodLazy2,
|
|
ZodLiteral: () => ZodLiteral2,
|
|
ZodMAC: () => ZodMAC,
|
|
ZodMap: () => ZodMap2,
|
|
ZodNaN: () => ZodNaN2,
|
|
ZodNanoID: () => ZodNanoID,
|
|
ZodNever: () => ZodNever2,
|
|
ZodNonOptional: () => ZodNonOptional,
|
|
ZodNull: () => ZodNull2,
|
|
ZodNullable: () => ZodNullable2,
|
|
ZodNumber: () => ZodNumber2,
|
|
ZodNumberFormat: () => ZodNumberFormat,
|
|
ZodObject: () => ZodObject2,
|
|
ZodOptional: () => ZodOptional2,
|
|
ZodPipe: () => ZodPipe,
|
|
ZodPrefault: () => ZodPrefault,
|
|
ZodPromise: () => ZodPromise2,
|
|
ZodReadonly: () => ZodReadonly2,
|
|
ZodRecord: () => ZodRecord2,
|
|
ZodSet: () => ZodSet2,
|
|
ZodString: () => ZodString2,
|
|
ZodStringFormat: () => ZodStringFormat,
|
|
ZodSuccess: () => ZodSuccess,
|
|
ZodSymbol: () => ZodSymbol2,
|
|
ZodTemplateLiteral: () => ZodTemplateLiteral,
|
|
ZodTransform: () => ZodTransform,
|
|
ZodTuple: () => ZodTuple2,
|
|
ZodType: () => ZodType2,
|
|
ZodULID: () => ZodULID,
|
|
ZodURL: () => ZodURL,
|
|
ZodUUID: () => ZodUUID,
|
|
ZodUndefined: () => ZodUndefined2,
|
|
ZodUnion: () => ZodUnion2,
|
|
ZodUnknown: () => ZodUnknown2,
|
|
ZodVoid: () => ZodVoid2,
|
|
ZodXID: () => ZodXID,
|
|
ZodXor: () => ZodXor,
|
|
_ZodString: () => _ZodString,
|
|
_default: () => _default,
|
|
_function: () => _function,
|
|
any: () => any,
|
|
array: () => array,
|
|
base64: () => base642,
|
|
base64url: () => base64url2,
|
|
bigint: () => bigint2,
|
|
boolean: () => boolean2,
|
|
catch: () => _catch,
|
|
check: () => check,
|
|
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: () => _enum,
|
|
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: () => lazy,
|
|
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: () => object2,
|
|
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: () => union,
|
|
unknown: () => unknown,
|
|
url: () => url,
|
|
uuid: () => uuid2,
|
|
uuidv4: () => uuidv4,
|
|
uuidv6: () => uuidv6,
|
|
uuidv7: () => uuidv7,
|
|
void: () => _void2,
|
|
xid: () => xid2,
|
|
xor: () => xor
|
|
});
|
|
|
|
// 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
|
|
});
|
|
|
|
// node_modules/zod/v4/classic/iso.js
|
|
var iso_exports2 = {};
|
|
__export(iso_exports2, {
|
|
ZodISODate: () => ZodISODate,
|
|
ZodISODateTime: () => ZodISODateTime,
|
|
ZodISODuration: () => ZodISODuration,
|
|
ZodISOTime: () => ZodISOTime,
|
|
date: () => date2,
|
|
datetime: () => datetime2,
|
|
duration: () => duration2,
|
|
time: () => time2
|
|
});
|
|
var ZodISODateTime = /* @__PURE__ */ $constructor("ZodISODateTime", (inst, def) => {
|
|
$ZodISODateTime.init(inst, def);
|
|
ZodStringFormat.init(inst, def);
|
|
});
|
|
function datetime2(params) {
|
|
return _isoDateTime(ZodISODateTime, params);
|
|
}
|
|
var ZodISODate = /* @__PURE__ */ $constructor("ZodISODate", (inst, def) => {
|
|
$ZodISODate.init(inst, def);
|
|
ZodStringFormat.init(inst, def);
|
|
});
|
|
function date2(params) {
|
|
return _isoDate(ZodISODate, params);
|
|
}
|
|
var ZodISOTime = /* @__PURE__ */ $constructor("ZodISOTime", (inst, def) => {
|
|
$ZodISOTime.init(inst, def);
|
|
ZodStringFormat.init(inst, def);
|
|
});
|
|
function time2(params) {
|
|
return _isoTime(ZodISOTime, params);
|
|
}
|
|
var ZodISODuration = /* @__PURE__ */ $constructor("ZodISODuration", (inst, def) => {
|
|
$ZodISODuration.init(inst, def);
|
|
ZodStringFormat.init(inst, def);
|
|
});
|
|
function duration2(params) {
|
|
return _isoDuration(ZodISODuration, params);
|
|
}
|
|
|
|
// node_modules/zod/v4/classic/errors.js
|
|
var initializer2 = (inst, issues) => {
|
|
$ZodError.init(inst, issues);
|
|
inst.name = "ZodError";
|
|
Object.defineProperties(inst, {
|
|
format: {
|
|
value: (mapper) => formatError(inst, mapper)
|
|
// enumerable: false,
|
|
},
|
|
flatten: {
|
|
value: (mapper) => flattenError(inst, mapper)
|
|
// enumerable: false,
|
|
},
|
|
addIssue: {
|
|
value: (issue2) => {
|
|
inst.issues.push(issue2);
|
|
inst.message = JSON.stringify(inst.issues, jsonStringifyReplacer, 2);
|
|
}
|
|
// enumerable: false,
|
|
},
|
|
addIssues: {
|
|
value: (issues2) => {
|
|
inst.issues.push(...issues2);
|
|
inst.message = JSON.stringify(inst.issues, jsonStringifyReplacer, 2);
|
|
}
|
|
// enumerable: false,
|
|
},
|
|
isEmpty: {
|
|
get() {
|
|
return inst.issues.length === 0;
|
|
}
|
|
// enumerable: false,
|
|
}
|
|
});
|
|
};
|
|
var ZodError2 = $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 safeParse3 = /* @__PURE__ */ _safeParse(ZodRealError);
|
|
var safeParseAsync2 = /* @__PURE__ */ _safeParseAsync(ZodRealError);
|
|
var encode2 = /* @__PURE__ */ _encode(ZodRealError);
|
|
var decode2 = /* @__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 ZodType2 = /* @__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) => safeParse3(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) => encode2(inst, data, params);
|
|
inst.decode = (data, params) => decode2(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 = (check2, params) => inst.check(refine(check2, 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) => union([inst, arg]);
|
|
inst.and = (arg) => intersection(inst, arg);
|
|
inst.transform = (tx) => pipe(inst, transform(tx));
|
|
inst.default = (def2) => _default(inst, def2);
|
|
inst.prefault = (def2) => prefault(inst, def2);
|
|
inst.catch = (params) => _catch(inst, params);
|
|
inst.pipe = (target) => pipe(inst, target);
|
|
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);
|
|
ZodType2.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 ZodString2 = /* @__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(time2(params));
|
|
inst.duration = (params) => inst.check(duration2(params));
|
|
});
|
|
function string2(params) {
|
|
return _string(ZodString2, params);
|
|
}
|
|
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);
|
|
}
|
|
var ZodGUID = /* @__PURE__ */ $constructor("ZodGUID", (inst, def) => {
|
|
$ZodGUID.init(inst, def);
|
|
ZodStringFormat.init(inst, def);
|
|
});
|
|
function guid2(params) {
|
|
return _guid(ZodGUID, params);
|
|
}
|
|
var ZodUUID = /* @__PURE__ */ $constructor("ZodUUID", (inst, def) => {
|
|
$ZodUUID.init(inst, def);
|
|
ZodStringFormat.init(inst, def);
|
|
});
|
|
function uuid2(params) {
|
|
return _uuid(ZodUUID, params);
|
|
}
|
|
function uuidv4(params) {
|
|
return _uuidv4(ZodUUID, params);
|
|
}
|
|
function uuidv6(params) {
|
|
return _uuidv6(ZodUUID, params);
|
|
}
|
|
function uuidv7(params) {
|
|
return _uuidv7(ZodUUID, params);
|
|
}
|
|
var ZodURL = /* @__PURE__ */ $constructor("ZodURL", (inst, def) => {
|
|
$ZodURL.init(inst, def);
|
|
ZodStringFormat.init(inst, def);
|
|
});
|
|
function url(params) {
|
|
return _url(ZodURL, params);
|
|
}
|
|
function httpUrl(params) {
|
|
return _url(ZodURL, {
|
|
protocol: /^https?$/,
|
|
hostname: regexes_exports.domain,
|
|
...util_exports.normalizeParams(params)
|
|
});
|
|
}
|
|
var ZodEmoji = /* @__PURE__ */ $constructor("ZodEmoji", (inst, def) => {
|
|
$ZodEmoji.init(inst, def);
|
|
ZodStringFormat.init(inst, def);
|
|
});
|
|
function emoji2(params) {
|
|
return _emoji2(ZodEmoji, params);
|
|
}
|
|
var ZodNanoID = /* @__PURE__ */ $constructor("ZodNanoID", (inst, def) => {
|
|
$ZodNanoID.init(inst, def);
|
|
ZodStringFormat.init(inst, def);
|
|
});
|
|
function nanoid2(params) {
|
|
return _nanoid(ZodNanoID, params);
|
|
}
|
|
var ZodCUID = /* @__PURE__ */ $constructor("ZodCUID", (inst, def) => {
|
|
$ZodCUID.init(inst, def);
|
|
ZodStringFormat.init(inst, def);
|
|
});
|
|
function cuid3(params) {
|
|
return _cuid(ZodCUID, params);
|
|
}
|
|
var ZodCUID2 = /* @__PURE__ */ $constructor("ZodCUID2", (inst, def) => {
|
|
$ZodCUID2.init(inst, def);
|
|
ZodStringFormat.init(inst, def);
|
|
});
|
|
function cuid22(params) {
|
|
return _cuid2(ZodCUID2, params);
|
|
}
|
|
var ZodULID = /* @__PURE__ */ $constructor("ZodULID", (inst, def) => {
|
|
$ZodULID.init(inst, def);
|
|
ZodStringFormat.init(inst, def);
|
|
});
|
|
function ulid2(params) {
|
|
return _ulid(ZodULID, params);
|
|
}
|
|
var ZodXID = /* @__PURE__ */ $constructor("ZodXID", (inst, def) => {
|
|
$ZodXID.init(inst, def);
|
|
ZodStringFormat.init(inst, def);
|
|
});
|
|
function xid2(params) {
|
|
return _xid(ZodXID, params);
|
|
}
|
|
var ZodKSUID = /* @__PURE__ */ $constructor("ZodKSUID", (inst, def) => {
|
|
$ZodKSUID.init(inst, def);
|
|
ZodStringFormat.init(inst, def);
|
|
});
|
|
function ksuid2(params) {
|
|
return _ksuid(ZodKSUID, params);
|
|
}
|
|
var ZodIPv4 = /* @__PURE__ */ $constructor("ZodIPv4", (inst, def) => {
|
|
$ZodIPv4.init(inst, def);
|
|
ZodStringFormat.init(inst, def);
|
|
});
|
|
function ipv42(params) {
|
|
return _ipv4(ZodIPv4, params);
|
|
}
|
|
var ZodMAC = /* @__PURE__ */ $constructor("ZodMAC", (inst, def) => {
|
|
$ZodMAC.init(inst, def);
|
|
ZodStringFormat.init(inst, def);
|
|
});
|
|
function mac2(params) {
|
|
return _mac(ZodMAC, params);
|
|
}
|
|
var ZodIPv6 = /* @__PURE__ */ $constructor("ZodIPv6", (inst, def) => {
|
|
$ZodIPv6.init(inst, def);
|
|
ZodStringFormat.init(inst, def);
|
|
});
|
|
function ipv62(params) {
|
|
return _ipv6(ZodIPv6, params);
|
|
}
|
|
var ZodCIDRv4 = /* @__PURE__ */ $constructor("ZodCIDRv4", (inst, def) => {
|
|
$ZodCIDRv4.init(inst, def);
|
|
ZodStringFormat.init(inst, def);
|
|
});
|
|
function cidrv42(params) {
|
|
return _cidrv4(ZodCIDRv4, params);
|
|
}
|
|
var ZodCIDRv6 = /* @__PURE__ */ $constructor("ZodCIDRv6", (inst, def) => {
|
|
$ZodCIDRv6.init(inst, def);
|
|
ZodStringFormat.init(inst, def);
|
|
});
|
|
function cidrv62(params) {
|
|
return _cidrv6(ZodCIDRv6, params);
|
|
}
|
|
var ZodBase64 = /* @__PURE__ */ $constructor("ZodBase64", (inst, def) => {
|
|
$ZodBase64.init(inst, def);
|
|
ZodStringFormat.init(inst, def);
|
|
});
|
|
function base642(params) {
|
|
return _base64(ZodBase64, params);
|
|
}
|
|
var ZodBase64URL = /* @__PURE__ */ $constructor("ZodBase64URL", (inst, def) => {
|
|
$ZodBase64URL.init(inst, def);
|
|
ZodStringFormat.init(inst, def);
|
|
});
|
|
function base64url2(params) {
|
|
return _base64url(ZodBase64URL, params);
|
|
}
|
|
var ZodE164 = /* @__PURE__ */ $constructor("ZodE164", (inst, def) => {
|
|
$ZodE164.init(inst, def);
|
|
ZodStringFormat.init(inst, def);
|
|
});
|
|
function e1642(params) {
|
|
return _e164(ZodE164, params);
|
|
}
|
|
var ZodJWT = /* @__PURE__ */ $constructor("ZodJWT", (inst, def) => {
|
|
$ZodJWT.init(inst, def);
|
|
ZodStringFormat.init(inst, def);
|
|
});
|
|
function jwt(params) {
|
|
return _jwt(ZodJWT, params);
|
|
}
|
|
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);
|
|
}
|
|
function hostname2(_params) {
|
|
return _stringFormat(ZodCustomStringFormat, "hostname", regexes_exports.hostname, _params);
|
|
}
|
|
function hex2(_params) {
|
|
return _stringFormat(ZodCustomStringFormat, "hex", regexes_exports.hex, _params);
|
|
}
|
|
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);
|
|
}
|
|
var ZodNumber2 = /* @__PURE__ */ $constructor("ZodNumber", (inst, def) => {
|
|
$ZodNumber.init(inst, def);
|
|
ZodType2.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(ZodNumber2, params);
|
|
}
|
|
var ZodNumberFormat = /* @__PURE__ */ $constructor("ZodNumberFormat", (inst, def) => {
|
|
$ZodNumberFormat.init(inst, def);
|
|
ZodNumber2.init(inst, def);
|
|
});
|
|
function int(params) {
|
|
return _int(ZodNumberFormat, params);
|
|
}
|
|
function float32(params) {
|
|
return _float32(ZodNumberFormat, params);
|
|
}
|
|
function float64(params) {
|
|
return _float64(ZodNumberFormat, params);
|
|
}
|
|
function int32(params) {
|
|
return _int32(ZodNumberFormat, params);
|
|
}
|
|
function uint32(params) {
|
|
return _uint32(ZodNumberFormat, params);
|
|
}
|
|
var ZodBoolean2 = /* @__PURE__ */ $constructor("ZodBoolean", (inst, def) => {
|
|
$ZodBoolean.init(inst, def);
|
|
ZodType2.init(inst, def);
|
|
inst._zod.processJSONSchema = (ctx, json2, params) => booleanProcessor(inst, ctx, json2, params);
|
|
});
|
|
function boolean2(params) {
|
|
return _boolean(ZodBoolean2, params);
|
|
}
|
|
var ZodBigInt2 = /* @__PURE__ */ $constructor("ZodBigInt", (inst, def) => {
|
|
$ZodBigInt.init(inst, def);
|
|
ZodType2.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 bigint2(params) {
|
|
return _bigint(ZodBigInt2, params);
|
|
}
|
|
var ZodBigIntFormat = /* @__PURE__ */ $constructor("ZodBigIntFormat", (inst, def) => {
|
|
$ZodBigIntFormat.init(inst, def);
|
|
ZodBigInt2.init(inst, def);
|
|
});
|
|
function int64(params) {
|
|
return _int64(ZodBigIntFormat, params);
|
|
}
|
|
function uint64(params) {
|
|
return _uint64(ZodBigIntFormat, params);
|
|
}
|
|
var ZodSymbol2 = /* @__PURE__ */ $constructor("ZodSymbol", (inst, def) => {
|
|
$ZodSymbol.init(inst, def);
|
|
ZodType2.init(inst, def);
|
|
inst._zod.processJSONSchema = (ctx, json2, params) => symbolProcessor(inst, ctx, json2, params);
|
|
});
|
|
function symbol(params) {
|
|
return _symbol(ZodSymbol2, params);
|
|
}
|
|
var ZodUndefined2 = /* @__PURE__ */ $constructor("ZodUndefined", (inst, def) => {
|
|
$ZodUndefined.init(inst, def);
|
|
ZodType2.init(inst, def);
|
|
inst._zod.processJSONSchema = (ctx, json2, params) => undefinedProcessor(inst, ctx, json2, params);
|
|
});
|
|
function _undefined3(params) {
|
|
return _undefined2(ZodUndefined2, params);
|
|
}
|
|
var ZodNull2 = /* @__PURE__ */ $constructor("ZodNull", (inst, def) => {
|
|
$ZodNull.init(inst, def);
|
|
ZodType2.init(inst, def);
|
|
inst._zod.processJSONSchema = (ctx, json2, params) => nullProcessor(inst, ctx, json2, params);
|
|
});
|
|
function _null3(params) {
|
|
return _null2(ZodNull2, params);
|
|
}
|
|
var ZodAny2 = /* @__PURE__ */ $constructor("ZodAny", (inst, def) => {
|
|
$ZodAny.init(inst, def);
|
|
ZodType2.init(inst, def);
|
|
inst._zod.processJSONSchema = (ctx, json2, params) => anyProcessor(inst, ctx, json2, params);
|
|
});
|
|
function any() {
|
|
return _any(ZodAny2);
|
|
}
|
|
var ZodUnknown2 = /* @__PURE__ */ $constructor("ZodUnknown", (inst, def) => {
|
|
$ZodUnknown.init(inst, def);
|
|
ZodType2.init(inst, def);
|
|
inst._zod.processJSONSchema = (ctx, json2, params) => unknownProcessor(inst, ctx, json2, params);
|
|
});
|
|
function unknown() {
|
|
return _unknown(ZodUnknown2);
|
|
}
|
|
var ZodNever2 = /* @__PURE__ */ $constructor("ZodNever", (inst, def) => {
|
|
$ZodNever.init(inst, def);
|
|
ZodType2.init(inst, def);
|
|
inst._zod.processJSONSchema = (ctx, json2, params) => neverProcessor(inst, ctx, json2, params);
|
|
});
|
|
function never(params) {
|
|
return _never(ZodNever2, params);
|
|
}
|
|
var ZodVoid2 = /* @__PURE__ */ $constructor("ZodVoid", (inst, def) => {
|
|
$ZodVoid.init(inst, def);
|
|
ZodType2.init(inst, def);
|
|
inst._zod.processJSONSchema = (ctx, json2, params) => voidProcessor(inst, ctx, json2, params);
|
|
});
|
|
function _void2(params) {
|
|
return _void(ZodVoid2, params);
|
|
}
|
|
var ZodDate2 = /* @__PURE__ */ $constructor("ZodDate", (inst, def) => {
|
|
$ZodDate.init(inst, def);
|
|
ZodType2.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(ZodDate2, params);
|
|
}
|
|
var ZodArray2 = /* @__PURE__ */ $constructor("ZodArray", (inst, def) => {
|
|
$ZodArray.init(inst, def);
|
|
ZodType2.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(ZodArray2, element, params);
|
|
}
|
|
function keyof(schema) {
|
|
const shape = schema._zod.def.shape;
|
|
return _enum(Object.keys(shape));
|
|
}
|
|
var ZodObject2 = /* @__PURE__ */ $constructor("ZodObject", (inst, def) => {
|
|
$ZodObjectJIT.init(inst, def);
|
|
ZodType2.init(inst, def);
|
|
inst._zod.processJSONSchema = (ctx, json2, params) => objectProcessor(inst, ctx, json2, params);
|
|
util_exports.defineLazy(inst, "shape", () => {
|
|
return def.shape;
|
|
});
|
|
inst.keyof = () => _enum(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(ZodOptional2, inst, args[0]);
|
|
inst.required = (...args) => util_exports.required(ZodNonOptional, inst, args[0]);
|
|
});
|
|
function object2(shape, params) {
|
|
const def = {
|
|
type: "object",
|
|
shape: shape ?? {},
|
|
...util_exports.normalizeParams(params)
|
|
};
|
|
return new ZodObject2(def);
|
|
}
|
|
function strictObject(shape, params) {
|
|
return new ZodObject2({
|
|
type: "object",
|
|
shape,
|
|
catchall: never(),
|
|
...util_exports.normalizeParams(params)
|
|
});
|
|
}
|
|
function looseObject(shape, params) {
|
|
return new ZodObject2({
|
|
type: "object",
|
|
shape,
|
|
catchall: unknown(),
|
|
...util_exports.normalizeParams(params)
|
|
});
|
|
}
|
|
var ZodUnion2 = /* @__PURE__ */ $constructor("ZodUnion", (inst, def) => {
|
|
$ZodUnion.init(inst, def);
|
|
ZodType2.init(inst, def);
|
|
inst._zod.processJSONSchema = (ctx, json2, params) => unionProcessor(inst, ctx, json2, params);
|
|
inst.options = def.options;
|
|
});
|
|
function union(options, params) {
|
|
return new ZodUnion2({
|
|
type: "union",
|
|
options,
|
|
...util_exports.normalizeParams(params)
|
|
});
|
|
}
|
|
var ZodXor = /* @__PURE__ */ $constructor("ZodXor", (inst, def) => {
|
|
ZodUnion2.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)
|
|
});
|
|
}
|
|
var ZodDiscriminatedUnion2 = /* @__PURE__ */ $constructor("ZodDiscriminatedUnion", (inst, def) => {
|
|
ZodUnion2.init(inst, def);
|
|
$ZodDiscriminatedUnion.init(inst, def);
|
|
});
|
|
function discriminatedUnion(discriminator, options, params) {
|
|
return new ZodDiscriminatedUnion2({
|
|
type: "union",
|
|
options,
|
|
discriminator,
|
|
...util_exports.normalizeParams(params)
|
|
});
|
|
}
|
|
var ZodIntersection2 = /* @__PURE__ */ $constructor("ZodIntersection", (inst, def) => {
|
|
$ZodIntersection.init(inst, def);
|
|
ZodType2.init(inst, def);
|
|
inst._zod.processJSONSchema = (ctx, json2, params) => intersectionProcessor(inst, ctx, json2, params);
|
|
});
|
|
function intersection(left, right) {
|
|
return new ZodIntersection2({
|
|
type: "intersection",
|
|
left,
|
|
right
|
|
});
|
|
}
|
|
var ZodTuple2 = /* @__PURE__ */ $constructor("ZodTuple", (inst, def) => {
|
|
$ZodTuple.init(inst, def);
|
|
ZodType2.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 ZodTuple2({
|
|
type: "tuple",
|
|
items,
|
|
rest,
|
|
...util_exports.normalizeParams(params)
|
|
});
|
|
}
|
|
var ZodRecord2 = /* @__PURE__ */ $constructor("ZodRecord", (inst, def) => {
|
|
$ZodRecord.init(inst, def);
|
|
ZodType2.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 ZodRecord2({
|
|
type: "record",
|
|
keyType,
|
|
valueType,
|
|
...util_exports.normalizeParams(params)
|
|
});
|
|
}
|
|
function partialRecord(keyType, valueType, params) {
|
|
const k = clone(keyType);
|
|
k._zod.values = void 0;
|
|
return new ZodRecord2({
|
|
type: "record",
|
|
keyType: k,
|
|
valueType,
|
|
...util_exports.normalizeParams(params)
|
|
});
|
|
}
|
|
function looseRecord(keyType, valueType, params) {
|
|
return new ZodRecord2({
|
|
type: "record",
|
|
keyType,
|
|
valueType,
|
|
mode: "loose",
|
|
...util_exports.normalizeParams(params)
|
|
});
|
|
}
|
|
var ZodMap2 = /* @__PURE__ */ $constructor("ZodMap", (inst, def) => {
|
|
$ZodMap.init(inst, def);
|
|
ZodType2.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 ZodMap2({
|
|
type: "map",
|
|
keyType,
|
|
valueType,
|
|
...util_exports.normalizeParams(params)
|
|
});
|
|
}
|
|
var ZodSet2 = /* @__PURE__ */ $constructor("ZodSet", (inst, def) => {
|
|
$ZodSet.init(inst, def);
|
|
ZodType2.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 ZodSet2({
|
|
type: "set",
|
|
valueType,
|
|
...util_exports.normalizeParams(params)
|
|
});
|
|
}
|
|
var ZodEnum2 = /* @__PURE__ */ $constructor("ZodEnum", (inst, def) => {
|
|
$ZodEnum.init(inst, def);
|
|
ZodType2.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 ZodEnum2({
|
|
...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 ZodEnum2({
|
|
...def,
|
|
checks: [],
|
|
...util_exports.normalizeParams(params),
|
|
entries: newEntries
|
|
});
|
|
};
|
|
});
|
|
function _enum(values, params) {
|
|
const entries = Array.isArray(values) ? Object.fromEntries(values.map((v) => [v, v])) : values;
|
|
return new ZodEnum2({
|
|
type: "enum",
|
|
entries,
|
|
...util_exports.normalizeParams(params)
|
|
});
|
|
}
|
|
function nativeEnum(entries, params) {
|
|
return new ZodEnum2({
|
|
type: "enum",
|
|
entries,
|
|
...util_exports.normalizeParams(params)
|
|
});
|
|
}
|
|
var ZodLiteral2 = /* @__PURE__ */ $constructor("ZodLiteral", (inst, def) => {
|
|
$ZodLiteral.init(inst, def);
|
|
ZodType2.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 ZodLiteral2({
|
|
type: "literal",
|
|
values: Array.isArray(value) ? value : [value],
|
|
...util_exports.normalizeParams(params)
|
|
});
|
|
}
|
|
var ZodFile = /* @__PURE__ */ $constructor("ZodFile", (inst, def) => {
|
|
$ZodFile.init(inst, def);
|
|
ZodType2.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);
|
|
}
|
|
var ZodTransform = /* @__PURE__ */ $constructor("ZodTransform", (inst, def) => {
|
|
$ZodTransform.init(inst, def);
|
|
ZodType2.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
|
|
});
|
|
}
|
|
var ZodOptional2 = /* @__PURE__ */ $constructor("ZodOptional", (inst, def) => {
|
|
$ZodOptional.init(inst, def);
|
|
ZodType2.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 ZodOptional2({
|
|
type: "optional",
|
|
innerType
|
|
});
|
|
}
|
|
var ZodExactOptional = /* @__PURE__ */ $constructor("ZodExactOptional", (inst, def) => {
|
|
$ZodExactOptional.init(inst, def);
|
|
ZodType2.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
|
|
});
|
|
}
|
|
var ZodNullable2 = /* @__PURE__ */ $constructor("ZodNullable", (inst, def) => {
|
|
$ZodNullable.init(inst, def);
|
|
ZodType2.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 ZodNullable2({
|
|
type: "nullable",
|
|
innerType
|
|
});
|
|
}
|
|
function nullish2(innerType) {
|
|
return optional(nullable(innerType));
|
|
}
|
|
var ZodDefault2 = /* @__PURE__ */ $constructor("ZodDefault", (inst, def) => {
|
|
$ZodDefault.init(inst, def);
|
|
ZodType2.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 _default(innerType, defaultValue) {
|
|
return new ZodDefault2({
|
|
type: "default",
|
|
innerType,
|
|
get defaultValue() {
|
|
return typeof defaultValue === "function" ? defaultValue() : util_exports.shallowClone(defaultValue);
|
|
}
|
|
});
|
|
}
|
|
var ZodPrefault = /* @__PURE__ */ $constructor("ZodPrefault", (inst, def) => {
|
|
$ZodPrefault.init(inst, def);
|
|
ZodType2.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);
|
|
}
|
|
});
|
|
}
|
|
var ZodNonOptional = /* @__PURE__ */ $constructor("ZodNonOptional", (inst, def) => {
|
|
$ZodNonOptional.init(inst, def);
|
|
ZodType2.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)
|
|
});
|
|
}
|
|
var ZodSuccess = /* @__PURE__ */ $constructor("ZodSuccess", (inst, def) => {
|
|
$ZodSuccess.init(inst, def);
|
|
ZodType2.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
|
|
});
|
|
}
|
|
var ZodCatch2 = /* @__PURE__ */ $constructor("ZodCatch", (inst, def) => {
|
|
$ZodCatch.init(inst, def);
|
|
ZodType2.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 _catch(innerType, catchValue) {
|
|
return new ZodCatch2({
|
|
type: "catch",
|
|
innerType,
|
|
catchValue: typeof catchValue === "function" ? catchValue : () => catchValue
|
|
});
|
|
}
|
|
var ZodNaN2 = /* @__PURE__ */ $constructor("ZodNaN", (inst, def) => {
|
|
$ZodNaN.init(inst, def);
|
|
ZodType2.init(inst, def);
|
|
inst._zod.processJSONSchema = (ctx, json2, params) => nanProcessor(inst, ctx, json2, params);
|
|
});
|
|
function nan(params) {
|
|
return _nan(ZodNaN2, params);
|
|
}
|
|
var ZodPipe = /* @__PURE__ */ $constructor("ZodPipe", (inst, def) => {
|
|
$ZodPipe.init(inst, def);
|
|
ZodType2.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),
|
|
});
|
|
}
|
|
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
|
|
});
|
|
}
|
|
var ZodReadonly2 = /* @__PURE__ */ $constructor("ZodReadonly", (inst, def) => {
|
|
$ZodReadonly.init(inst, def);
|
|
ZodType2.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 ZodReadonly2({
|
|
type: "readonly",
|
|
innerType
|
|
});
|
|
}
|
|
var ZodTemplateLiteral = /* @__PURE__ */ $constructor("ZodTemplateLiteral", (inst, def) => {
|
|
$ZodTemplateLiteral.init(inst, def);
|
|
ZodType2.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)
|
|
});
|
|
}
|
|
var ZodLazy2 = /* @__PURE__ */ $constructor("ZodLazy", (inst, def) => {
|
|
$ZodLazy.init(inst, def);
|
|
ZodType2.init(inst, def);
|
|
inst._zod.processJSONSchema = (ctx, json2, params) => lazyProcessor(inst, ctx, json2, params);
|
|
inst.unwrap = () => inst._zod.def.getter();
|
|
});
|
|
function lazy(getter) {
|
|
return new ZodLazy2({
|
|
type: "lazy",
|
|
getter
|
|
});
|
|
}
|
|
var ZodPromise2 = /* @__PURE__ */ $constructor("ZodPromise", (inst, def) => {
|
|
$ZodPromise.init(inst, def);
|
|
ZodType2.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 ZodPromise2({
|
|
type: "promise",
|
|
innerType
|
|
});
|
|
}
|
|
var ZodFunction2 = /* @__PURE__ */ $constructor("ZodFunction", (inst, def) => {
|
|
$ZodFunction.init(inst, def);
|
|
ZodType2.init(inst, def);
|
|
inst._zod.processJSONSchema = (ctx, json2, params) => functionProcessor(inst, ctx, json2, params);
|
|
});
|
|
function _function(params) {
|
|
return new ZodFunction2({
|
|
type: "function",
|
|
input: Array.isArray(params?.input) ? tuple(params?.input) : params?.input ?? array(unknown()),
|
|
output: params?.output ?? unknown()
|
|
});
|
|
}
|
|
var ZodCustom = /* @__PURE__ */ $constructor("ZodCustom", (inst, def) => {
|
|
$ZodCustom.init(inst, def);
|
|
ZodType2.init(inst, def);
|
|
inst._zod.processJSONSchema = (ctx, json2, params) => customProcessor(inst, ctx, json2, params);
|
|
});
|
|
function check(fn) {
|
|
const ch = new $ZodCheck({
|
|
check: "custom"
|
|
// ...util.normalizeParams(params),
|
|
});
|
|
ch._zod.check = fn;
|
|
return ch;
|
|
}
|
|
function custom(fn, _params) {
|
|
return _custom(ZodCustom, fn ?? (() => true), _params);
|
|
}
|
|
function refine(fn, _params = {}) {
|
|
return _refine(ZodCustom, fn, _params);
|
|
}
|
|
function superRefine(fn) {
|
|
return _superRefine(fn);
|
|
}
|
|
var describe2 = describe;
|
|
var meta2 = meta;
|
|
function _instanceof(cls, params = {}) {
|
|
const inst = new ZodCustom({
|
|
type: "custom",
|
|
check: "custom",
|
|
fn: (data) => data instanceof cls,
|
|
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;
|
|
}
|
|
var stringbool = (...args) => _stringbool({
|
|
Codec: ZodCodec,
|
|
Boolean: ZodBoolean2,
|
|
String: ZodString2
|
|
}, ...args);
|
|
function json(params) {
|
|
const jsonSchema = lazy(() => {
|
|
return union([string2(params), number2(), boolean2(), _null3(), array(jsonSchema), record(string2(), jsonSchema)]);
|
|
});
|
|
return jsonSchema;
|
|
}
|
|
function preprocess(fn, schema) {
|
|
return pipe(transform(fn), schema);
|
|
}
|
|
|
|
// node_modules/zod/v4/classic/compat.js
|
|
var ZodFirstPartyTypeKind2;
|
|
/* @__PURE__ */ (function(ZodFirstPartyTypeKind3) {
|
|
})(ZodFirstPartyTypeKind2 || (ZodFirstPartyTypeKind2 = {}));
|
|
|
|
// node_modules/zod/v4/classic/from-json-schema.js
|
|
var z = {
|
|
...schemas_exports3,
|
|
...checks_exports2,
|
|
iso: iso_exports2
|
|
};
|
|
|
|
// node_modules/zod/v4/classic/external.js
|
|
config(en_default2());
|
|
|
|
// node_modules/@modelcontextprotocol/sdk/dist/esm/types.js
|
|
var LATEST_PROTOCOL_VERSION = "2025-11-25";
|
|
var SUPPORTED_PROTOCOL_VERSIONS = [LATEST_PROTOCOL_VERSION, "2025-06-18", "2025-03-26", "2024-11-05", "2024-10-07"];
|
|
var RELATED_TASK_META_KEY = "io.modelcontextprotocol/related-task";
|
|
var JSONRPC_VERSION = "2.0";
|
|
var AssertObjectSchema = custom((v) => v !== null && (typeof v === "object" || typeof v === "function"));
|
|
var ProgressTokenSchema = union([string2(), number2().int()]);
|
|
var CursorSchema = string2();
|
|
var TaskCreationParamsSchema = looseObject({
|
|
/**
|
|
* Time in milliseconds to keep task results available after completion.
|
|
* If null, the task has unlimited lifetime until manually cleaned up.
|
|
*/
|
|
ttl: union([number2(), _null3()]).optional(),
|
|
/**
|
|
* Time in milliseconds to wait between task status requests.
|
|
*/
|
|
pollInterval: number2().optional()
|
|
});
|
|
var TaskMetadataSchema = object2({
|
|
ttl: number2().optional()
|
|
});
|
|
var RelatedTaskMetadataSchema = object2({
|
|
taskId: string2()
|
|
});
|
|
var RequestMetaSchema = looseObject({
|
|
/**
|
|
* If specified, the caller is requesting out-of-band progress notifications for this request (as represented by notifications/progress). The value of this parameter is an opaque token that will be attached to any subsequent notifications. The receiver is not obligated to provide these notifications.
|
|
*/
|
|
progressToken: ProgressTokenSchema.optional(),
|
|
/**
|
|
* If specified, this request is related to the provided task.
|
|
*/
|
|
[RELATED_TASK_META_KEY]: RelatedTaskMetadataSchema.optional()
|
|
});
|
|
var BaseRequestParamsSchema = object2({
|
|
/**
|
|
* See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage.
|
|
*/
|
|
_meta: RequestMetaSchema.optional()
|
|
});
|
|
var TaskAugmentedRequestParamsSchema = BaseRequestParamsSchema.extend({
|
|
/**
|
|
* If specified, the caller is requesting task-augmented execution for this request.
|
|
* The request will return a CreateTaskResult immediately, and the actual result can be
|
|
* retrieved later via tasks/result.
|
|
*
|
|
* Task augmentation is subject to capability negotiation - receivers MUST declare support
|
|
* for task augmentation of specific request types in their capabilities.
|
|
*/
|
|
task: TaskMetadataSchema.optional()
|
|
});
|
|
var isTaskAugmentedRequestParams = (value) => TaskAugmentedRequestParamsSchema.safeParse(value).success;
|
|
var RequestSchema = object2({
|
|
method: string2(),
|
|
params: BaseRequestParamsSchema.loose().optional()
|
|
});
|
|
var NotificationsParamsSchema = object2({
|
|
/**
|
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
* for notes on _meta usage.
|
|
*/
|
|
_meta: RequestMetaSchema.optional()
|
|
});
|
|
var NotificationSchema = object2({
|
|
method: string2(),
|
|
params: NotificationsParamsSchema.loose().optional()
|
|
});
|
|
var ResultSchema = looseObject({
|
|
/**
|
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
* for notes on _meta usage.
|
|
*/
|
|
_meta: RequestMetaSchema.optional()
|
|
});
|
|
var RequestIdSchema = union([string2(), number2().int()]);
|
|
var JSONRPCRequestSchema = object2({
|
|
jsonrpc: literal(JSONRPC_VERSION),
|
|
id: RequestIdSchema,
|
|
...RequestSchema.shape
|
|
}).strict();
|
|
var isJSONRPCRequest = (value) => JSONRPCRequestSchema.safeParse(value).success;
|
|
var JSONRPCNotificationSchema = object2({
|
|
jsonrpc: literal(JSONRPC_VERSION),
|
|
...NotificationSchema.shape
|
|
}).strict();
|
|
var isJSONRPCNotification = (value) => JSONRPCNotificationSchema.safeParse(value).success;
|
|
var JSONRPCResultResponseSchema = object2({
|
|
jsonrpc: literal(JSONRPC_VERSION),
|
|
id: RequestIdSchema,
|
|
result: ResultSchema
|
|
}).strict();
|
|
var isJSONRPCResultResponse = (value) => JSONRPCResultResponseSchema.safeParse(value).success;
|
|
var ErrorCode;
|
|
(function(ErrorCode2) {
|
|
ErrorCode2[ErrorCode2["ConnectionClosed"] = -32e3] = "ConnectionClosed";
|
|
ErrorCode2[ErrorCode2["RequestTimeout"] = -32001] = "RequestTimeout";
|
|
ErrorCode2[ErrorCode2["ParseError"] = -32700] = "ParseError";
|
|
ErrorCode2[ErrorCode2["InvalidRequest"] = -32600] = "InvalidRequest";
|
|
ErrorCode2[ErrorCode2["MethodNotFound"] = -32601] = "MethodNotFound";
|
|
ErrorCode2[ErrorCode2["InvalidParams"] = -32602] = "InvalidParams";
|
|
ErrorCode2[ErrorCode2["InternalError"] = -32603] = "InternalError";
|
|
ErrorCode2[ErrorCode2["UrlElicitationRequired"] = -32042] = "UrlElicitationRequired";
|
|
})(ErrorCode || (ErrorCode = {}));
|
|
var JSONRPCErrorResponseSchema = object2({
|
|
jsonrpc: literal(JSONRPC_VERSION),
|
|
id: RequestIdSchema.optional(),
|
|
error: object2({
|
|
/**
|
|
* The error type that occurred.
|
|
*/
|
|
code: number2().int(),
|
|
/**
|
|
* A short description of the error. The message SHOULD be limited to a concise single sentence.
|
|
*/
|
|
message: string2(),
|
|
/**
|
|
* Additional information about the error. The value of this member is defined by the sender (e.g. detailed error information, nested errors etc.).
|
|
*/
|
|
data: unknown().optional()
|
|
})
|
|
}).strict();
|
|
var isJSONRPCErrorResponse = (value) => JSONRPCErrorResponseSchema.safeParse(value).success;
|
|
var JSONRPCMessageSchema = union([
|
|
JSONRPCRequestSchema,
|
|
JSONRPCNotificationSchema,
|
|
JSONRPCResultResponseSchema,
|
|
JSONRPCErrorResponseSchema
|
|
]);
|
|
var JSONRPCResponseSchema = union([JSONRPCResultResponseSchema, JSONRPCErrorResponseSchema]);
|
|
var EmptyResultSchema = ResultSchema.strict();
|
|
var CancelledNotificationParamsSchema = NotificationsParamsSchema.extend({
|
|
/**
|
|
* The ID of the request to cancel.
|
|
*
|
|
* This MUST correspond to the ID of a request previously issued in the same direction.
|
|
*/
|
|
requestId: RequestIdSchema.optional(),
|
|
/**
|
|
* An optional string describing the reason for the cancellation. This MAY be logged or presented to the user.
|
|
*/
|
|
reason: string2().optional()
|
|
});
|
|
var CancelledNotificationSchema = NotificationSchema.extend({
|
|
method: literal("notifications/cancelled"),
|
|
params: CancelledNotificationParamsSchema
|
|
});
|
|
var IconSchema = object2({
|
|
/**
|
|
* URL or data URI for the icon.
|
|
*/
|
|
src: string2(),
|
|
/**
|
|
* Optional MIME type for the icon.
|
|
*/
|
|
mimeType: string2().optional(),
|
|
/**
|
|
* Optional array of strings that specify sizes at which the icon can be used.
|
|
* Each string should be in WxH format (e.g., `"48x48"`, `"96x96"`) or `"any"` for scalable formats like SVG.
|
|
*
|
|
* If not provided, the client should assume that the icon can be used at any size.
|
|
*/
|
|
sizes: array(string2()).optional(),
|
|
/**
|
|
* Optional specifier for the theme this icon is designed for. `light` indicates
|
|
* the icon is designed to be used with a light background, and `dark` indicates
|
|
* the icon is designed to be used with a dark background.
|
|
*
|
|
* If not provided, the client should assume the icon can be used with any theme.
|
|
*/
|
|
theme: _enum(["light", "dark"]).optional()
|
|
});
|
|
var IconsSchema = object2({
|
|
/**
|
|
* Optional set of sized icons that the client can display in a user interface.
|
|
*
|
|
* Clients that support rendering icons MUST support at least the following MIME types:
|
|
* - `image/png` - PNG images (safe, universal compatibility)
|
|
* - `image/jpeg` (and `image/jpg`) - JPEG images (safe, universal compatibility)
|
|
*
|
|
* Clients that support rendering icons SHOULD also support:
|
|
* - `image/svg+xml` - SVG images (scalable but requires security precautions)
|
|
* - `image/webp` - WebP images (modern, efficient format)
|
|
*/
|
|
icons: array(IconSchema).optional()
|
|
});
|
|
var BaseMetadataSchema = object2({
|
|
/** Intended for programmatic or logical use, but used as a display name in past specs or fallback */
|
|
name: string2(),
|
|
/**
|
|
* Intended for UI and end-user contexts — optimized to be human-readable and easily understood,
|
|
* even by those unfamiliar with domain-specific terminology.
|
|
*
|
|
* If not provided, the name should be used for display (except for Tool,
|
|
* where `annotations.title` should be given precedence over using `name`,
|
|
* if present).
|
|
*/
|
|
title: string2().optional()
|
|
});
|
|
var ImplementationSchema = BaseMetadataSchema.extend({
|
|
...BaseMetadataSchema.shape,
|
|
...IconsSchema.shape,
|
|
version: string2(),
|
|
/**
|
|
* An optional URL of the website for this implementation.
|
|
*/
|
|
websiteUrl: string2().optional(),
|
|
/**
|
|
* An optional human-readable description of what this implementation does.
|
|
*
|
|
* This can be used by clients or servers to provide context about their purpose
|
|
* and capabilities. For example, a server might describe the types of resources
|
|
* or tools it provides, while a client might describe its intended use case.
|
|
*/
|
|
description: string2().optional()
|
|
});
|
|
var FormElicitationCapabilitySchema = intersection(object2({
|
|
applyDefaults: boolean2().optional()
|
|
}), record(string2(), unknown()));
|
|
var ElicitationCapabilitySchema = preprocess((value) => {
|
|
if (value && typeof value === "object" && !Array.isArray(value)) {
|
|
if (Object.keys(value).length === 0) {
|
|
return { form: {} };
|
|
}
|
|
}
|
|
return value;
|
|
}, intersection(object2({
|
|
form: FormElicitationCapabilitySchema.optional(),
|
|
url: AssertObjectSchema.optional()
|
|
}), record(string2(), unknown()).optional()));
|
|
var ClientTasksCapabilitySchema = looseObject({
|
|
/**
|
|
* Present if the client supports listing tasks.
|
|
*/
|
|
list: AssertObjectSchema.optional(),
|
|
/**
|
|
* Present if the client supports cancelling tasks.
|
|
*/
|
|
cancel: AssertObjectSchema.optional(),
|
|
/**
|
|
* Capabilities for task creation on specific request types.
|
|
*/
|
|
requests: looseObject({
|
|
/**
|
|
* Task support for sampling requests.
|
|
*/
|
|
sampling: looseObject({
|
|
createMessage: AssertObjectSchema.optional()
|
|
}).optional(),
|
|
/**
|
|
* Task support for elicitation requests.
|
|
*/
|
|
elicitation: looseObject({
|
|
create: AssertObjectSchema.optional()
|
|
}).optional()
|
|
}).optional()
|
|
});
|
|
var ServerTasksCapabilitySchema = looseObject({
|
|
/**
|
|
* Present if the server supports listing tasks.
|
|
*/
|
|
list: AssertObjectSchema.optional(),
|
|
/**
|
|
* Present if the server supports cancelling tasks.
|
|
*/
|
|
cancel: AssertObjectSchema.optional(),
|
|
/**
|
|
* Capabilities for task creation on specific request types.
|
|
*/
|
|
requests: looseObject({
|
|
/**
|
|
* Task support for tool requests.
|
|
*/
|
|
tools: looseObject({
|
|
call: AssertObjectSchema.optional()
|
|
}).optional()
|
|
}).optional()
|
|
});
|
|
var ClientCapabilitiesSchema = object2({
|
|
/**
|
|
* Experimental, non-standard capabilities that the client supports.
|
|
*/
|
|
experimental: record(string2(), AssertObjectSchema).optional(),
|
|
/**
|
|
* Present if the client supports sampling from an LLM.
|
|
*/
|
|
sampling: object2({
|
|
/**
|
|
* Present if the client supports context inclusion via includeContext parameter.
|
|
* If not declared, servers SHOULD only use `includeContext: "none"` (or omit it).
|
|
*/
|
|
context: AssertObjectSchema.optional(),
|
|
/**
|
|
* Present if the client supports tool use via tools and toolChoice parameters.
|
|
*/
|
|
tools: AssertObjectSchema.optional()
|
|
}).optional(),
|
|
/**
|
|
* Present if the client supports eliciting user input.
|
|
*/
|
|
elicitation: ElicitationCapabilitySchema.optional(),
|
|
/**
|
|
* Present if the client supports listing roots.
|
|
*/
|
|
roots: object2({
|
|
/**
|
|
* Whether the client supports issuing notifications for changes to the roots list.
|
|
*/
|
|
listChanged: boolean2().optional()
|
|
}).optional(),
|
|
/**
|
|
* Present if the client supports task creation.
|
|
*/
|
|
tasks: ClientTasksCapabilitySchema.optional()
|
|
});
|
|
var InitializeRequestParamsSchema = BaseRequestParamsSchema.extend({
|
|
/**
|
|
* The latest version of the Model Context Protocol that the client supports. The client MAY decide to support older versions as well.
|
|
*/
|
|
protocolVersion: string2(),
|
|
capabilities: ClientCapabilitiesSchema,
|
|
clientInfo: ImplementationSchema
|
|
});
|
|
var InitializeRequestSchema = RequestSchema.extend({
|
|
method: literal("initialize"),
|
|
params: InitializeRequestParamsSchema
|
|
});
|
|
var ServerCapabilitiesSchema = object2({
|
|
/**
|
|
* Experimental, non-standard capabilities that the server supports.
|
|
*/
|
|
experimental: record(string2(), AssertObjectSchema).optional(),
|
|
/**
|
|
* Present if the server supports sending log messages to the client.
|
|
*/
|
|
logging: AssertObjectSchema.optional(),
|
|
/**
|
|
* Present if the server supports sending completions to the client.
|
|
*/
|
|
completions: AssertObjectSchema.optional(),
|
|
/**
|
|
* Present if the server offers any prompt templates.
|
|
*/
|
|
prompts: object2({
|
|
/**
|
|
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
*/
|
|
listChanged: boolean2().optional()
|
|
}).optional(),
|
|
/**
|
|
* Present if the server offers any resources to read.
|
|
*/
|
|
resources: object2({
|
|
/**
|
|
* Whether this server supports clients subscribing to resource updates.
|
|
*/
|
|
subscribe: boolean2().optional(),
|
|
/**
|
|
* Whether this server supports issuing notifications for changes to the resource list.
|
|
*/
|
|
listChanged: boolean2().optional()
|
|
}).optional(),
|
|
/**
|
|
* Present if the server offers any tools to call.
|
|
*/
|
|
tools: object2({
|
|
/**
|
|
* Whether this server supports issuing notifications for changes to the tool list.
|
|
*/
|
|
listChanged: boolean2().optional()
|
|
}).optional(),
|
|
/**
|
|
* Present if the server supports task creation.
|
|
*/
|
|
tasks: ServerTasksCapabilitySchema.optional()
|
|
});
|
|
var InitializeResultSchema = ResultSchema.extend({
|
|
/**
|
|
* The version of the Model Context Protocol that the server wants to use. This may not match the version that the client requested. If the client cannot support this version, it MUST disconnect.
|
|
*/
|
|
protocolVersion: string2(),
|
|
capabilities: ServerCapabilitiesSchema,
|
|
serverInfo: ImplementationSchema,
|
|
/**
|
|
* Instructions describing how to use the server and its features.
|
|
*
|
|
* This can be used by clients to improve the LLM's understanding of available tools, resources, etc. It can be thought of like a "hint" to the model. For example, this information MAY be added to the system prompt.
|
|
*/
|
|
instructions: string2().optional()
|
|
});
|
|
var InitializedNotificationSchema = NotificationSchema.extend({
|
|
method: literal("notifications/initialized"),
|
|
params: NotificationsParamsSchema.optional()
|
|
});
|
|
var PingRequestSchema = RequestSchema.extend({
|
|
method: literal("ping"),
|
|
params: BaseRequestParamsSchema.optional()
|
|
});
|
|
var ProgressSchema = object2({
|
|
/**
|
|
* The progress thus far. This should increase every time progress is made, even if the total is unknown.
|
|
*/
|
|
progress: number2(),
|
|
/**
|
|
* Total number of items to process (or total progress required), if known.
|
|
*/
|
|
total: optional(number2()),
|
|
/**
|
|
* An optional message describing the current progress.
|
|
*/
|
|
message: optional(string2())
|
|
});
|
|
var ProgressNotificationParamsSchema = object2({
|
|
...NotificationsParamsSchema.shape,
|
|
...ProgressSchema.shape,
|
|
/**
|
|
* The progress token which was given in the initial request, used to associate this notification with the request that is proceeding.
|
|
*/
|
|
progressToken: ProgressTokenSchema
|
|
});
|
|
var ProgressNotificationSchema = NotificationSchema.extend({
|
|
method: literal("notifications/progress"),
|
|
params: ProgressNotificationParamsSchema
|
|
});
|
|
var PaginatedRequestParamsSchema = BaseRequestParamsSchema.extend({
|
|
/**
|
|
* An opaque token representing the current pagination position.
|
|
* If provided, the server should return results starting after this cursor.
|
|
*/
|
|
cursor: CursorSchema.optional()
|
|
});
|
|
var PaginatedRequestSchema = RequestSchema.extend({
|
|
params: PaginatedRequestParamsSchema.optional()
|
|
});
|
|
var PaginatedResultSchema = ResultSchema.extend({
|
|
/**
|
|
* An opaque token representing the pagination position after the last returned result.
|
|
* If present, there may be more results available.
|
|
*/
|
|
nextCursor: CursorSchema.optional()
|
|
});
|
|
var TaskStatusSchema = _enum(["working", "input_required", "completed", "failed", "cancelled"]);
|
|
var TaskSchema = object2({
|
|
taskId: string2(),
|
|
status: TaskStatusSchema,
|
|
/**
|
|
* Time in milliseconds to keep task results available after completion.
|
|
* If null, the task has unlimited lifetime until manually cleaned up.
|
|
*/
|
|
ttl: union([number2(), _null3()]),
|
|
/**
|
|
* ISO 8601 timestamp when the task was created.
|
|
*/
|
|
createdAt: string2(),
|
|
/**
|
|
* ISO 8601 timestamp when the task was last updated.
|
|
*/
|
|
lastUpdatedAt: string2(),
|
|
pollInterval: optional(number2()),
|
|
/**
|
|
* Optional diagnostic message for failed tasks or other status information.
|
|
*/
|
|
statusMessage: optional(string2())
|
|
});
|
|
var CreateTaskResultSchema = ResultSchema.extend({
|
|
task: TaskSchema
|
|
});
|
|
var TaskStatusNotificationParamsSchema = NotificationsParamsSchema.merge(TaskSchema);
|
|
var TaskStatusNotificationSchema = NotificationSchema.extend({
|
|
method: literal("notifications/tasks/status"),
|
|
params: TaskStatusNotificationParamsSchema
|
|
});
|
|
var GetTaskRequestSchema = RequestSchema.extend({
|
|
method: literal("tasks/get"),
|
|
params: BaseRequestParamsSchema.extend({
|
|
taskId: string2()
|
|
})
|
|
});
|
|
var GetTaskResultSchema = ResultSchema.merge(TaskSchema);
|
|
var GetTaskPayloadRequestSchema = RequestSchema.extend({
|
|
method: literal("tasks/result"),
|
|
params: BaseRequestParamsSchema.extend({
|
|
taskId: string2()
|
|
})
|
|
});
|
|
var GetTaskPayloadResultSchema = ResultSchema.loose();
|
|
var ListTasksRequestSchema = PaginatedRequestSchema.extend({
|
|
method: literal("tasks/list")
|
|
});
|
|
var ListTasksResultSchema = PaginatedResultSchema.extend({
|
|
tasks: array(TaskSchema)
|
|
});
|
|
var CancelTaskRequestSchema = RequestSchema.extend({
|
|
method: literal("tasks/cancel"),
|
|
params: BaseRequestParamsSchema.extend({
|
|
taskId: string2()
|
|
})
|
|
});
|
|
var CancelTaskResultSchema = ResultSchema.merge(TaskSchema);
|
|
var ResourceContentsSchema = object2({
|
|
/**
|
|
* The URI of this resource.
|
|
*/
|
|
uri: string2(),
|
|
/**
|
|
* The MIME type of this resource, if known.
|
|
*/
|
|
mimeType: optional(string2()),
|
|
/**
|
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
* for notes on _meta usage.
|
|
*/
|
|
_meta: record(string2(), unknown()).optional()
|
|
});
|
|
var TextResourceContentsSchema = ResourceContentsSchema.extend({
|
|
/**
|
|
* The text of the item. This must only be set if the item can actually be represented as text (not binary data).
|
|
*/
|
|
text: string2()
|
|
});
|
|
var Base64Schema = string2().refine((val) => {
|
|
try {
|
|
atob(val);
|
|
return true;
|
|
} catch {
|
|
return false;
|
|
}
|
|
}, { message: "Invalid Base64 string" });
|
|
var BlobResourceContentsSchema = ResourceContentsSchema.extend({
|
|
/**
|
|
* A base64-encoded string representing the binary data of the item.
|
|
*/
|
|
blob: Base64Schema
|
|
});
|
|
var RoleSchema = _enum(["user", "assistant"]);
|
|
var AnnotationsSchema = object2({
|
|
/**
|
|
* Intended audience(s) for the resource.
|
|
*/
|
|
audience: array(RoleSchema).optional(),
|
|
/**
|
|
* Importance hint for the resource, from 0 (least) to 1 (most).
|
|
*/
|
|
priority: number2().min(0).max(1).optional(),
|
|
/**
|
|
* ISO 8601 timestamp for the most recent modification.
|
|
*/
|
|
lastModified: iso_exports2.datetime({ offset: true }).optional()
|
|
});
|
|
var ResourceSchema = object2({
|
|
...BaseMetadataSchema.shape,
|
|
...IconsSchema.shape,
|
|
/**
|
|
* The URI of this resource.
|
|
*/
|
|
uri: string2(),
|
|
/**
|
|
* A description of what this resource represents.
|
|
*
|
|
* This can be used by clients to improve the LLM's understanding of available resources. It can be thought of like a "hint" to the model.
|
|
*/
|
|
description: optional(string2()),
|
|
/**
|
|
* The MIME type of this resource, if known.
|
|
*/
|
|
mimeType: optional(string2()),
|
|
/**
|
|
* Optional annotations for the client.
|
|
*/
|
|
annotations: AnnotationsSchema.optional(),
|
|
/**
|
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
* for notes on _meta usage.
|
|
*/
|
|
_meta: optional(looseObject({}))
|
|
});
|
|
var ResourceTemplateSchema = object2({
|
|
...BaseMetadataSchema.shape,
|
|
...IconsSchema.shape,
|
|
/**
|
|
* A URI template (according to RFC 6570) that can be used to construct resource URIs.
|
|
*/
|
|
uriTemplate: string2(),
|
|
/**
|
|
* A description of what this template is for.
|
|
*
|
|
* This can be used by clients to improve the LLM's understanding of available resources. It can be thought of like a "hint" to the model.
|
|
*/
|
|
description: optional(string2()),
|
|
/**
|
|
* The MIME type for all resources that match this template. This should only be included if all resources matching this template have the same type.
|
|
*/
|
|
mimeType: optional(string2()),
|
|
/**
|
|
* Optional annotations for the client.
|
|
*/
|
|
annotations: AnnotationsSchema.optional(),
|
|
/**
|
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
* for notes on _meta usage.
|
|
*/
|
|
_meta: optional(looseObject({}))
|
|
});
|
|
var ListResourcesRequestSchema = PaginatedRequestSchema.extend({
|
|
method: literal("resources/list")
|
|
});
|
|
var ListResourcesResultSchema = PaginatedResultSchema.extend({
|
|
resources: array(ResourceSchema)
|
|
});
|
|
var ListResourceTemplatesRequestSchema = PaginatedRequestSchema.extend({
|
|
method: literal("resources/templates/list")
|
|
});
|
|
var ListResourceTemplatesResultSchema = PaginatedResultSchema.extend({
|
|
resourceTemplates: array(ResourceTemplateSchema)
|
|
});
|
|
var ResourceRequestParamsSchema = BaseRequestParamsSchema.extend({
|
|
/**
|
|
* The URI of the resource to read. The URI can use any protocol; it is up to the server how to interpret it.
|
|
*
|
|
* @format uri
|
|
*/
|
|
uri: string2()
|
|
});
|
|
var ReadResourceRequestParamsSchema = ResourceRequestParamsSchema;
|
|
var ReadResourceRequestSchema = RequestSchema.extend({
|
|
method: literal("resources/read"),
|
|
params: ReadResourceRequestParamsSchema
|
|
});
|
|
var ReadResourceResultSchema = ResultSchema.extend({
|
|
contents: array(union([TextResourceContentsSchema, BlobResourceContentsSchema]))
|
|
});
|
|
var ResourceListChangedNotificationSchema = NotificationSchema.extend({
|
|
method: literal("notifications/resources/list_changed"),
|
|
params: NotificationsParamsSchema.optional()
|
|
});
|
|
var SubscribeRequestParamsSchema = ResourceRequestParamsSchema;
|
|
var SubscribeRequestSchema = RequestSchema.extend({
|
|
method: literal("resources/subscribe"),
|
|
params: SubscribeRequestParamsSchema
|
|
});
|
|
var UnsubscribeRequestParamsSchema = ResourceRequestParamsSchema;
|
|
var UnsubscribeRequestSchema = RequestSchema.extend({
|
|
method: literal("resources/unsubscribe"),
|
|
params: UnsubscribeRequestParamsSchema
|
|
});
|
|
var ResourceUpdatedNotificationParamsSchema = NotificationsParamsSchema.extend({
|
|
/**
|
|
* The URI of the resource that has been updated. This might be a sub-resource of the one that the client actually subscribed to.
|
|
*/
|
|
uri: string2()
|
|
});
|
|
var ResourceUpdatedNotificationSchema = NotificationSchema.extend({
|
|
method: literal("notifications/resources/updated"),
|
|
params: ResourceUpdatedNotificationParamsSchema
|
|
});
|
|
var PromptArgumentSchema = object2({
|
|
/**
|
|
* The name of the argument.
|
|
*/
|
|
name: string2(),
|
|
/**
|
|
* A human-readable description of the argument.
|
|
*/
|
|
description: optional(string2()),
|
|
/**
|
|
* Whether this argument must be provided.
|
|
*/
|
|
required: optional(boolean2())
|
|
});
|
|
var PromptSchema = object2({
|
|
...BaseMetadataSchema.shape,
|
|
...IconsSchema.shape,
|
|
/**
|
|
* An optional description of what this prompt provides
|
|
*/
|
|
description: optional(string2()),
|
|
/**
|
|
* A list of arguments to use for templating the prompt.
|
|
*/
|
|
arguments: optional(array(PromptArgumentSchema)),
|
|
/**
|
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
* for notes on _meta usage.
|
|
*/
|
|
_meta: optional(looseObject({}))
|
|
});
|
|
var ListPromptsRequestSchema = PaginatedRequestSchema.extend({
|
|
method: literal("prompts/list")
|
|
});
|
|
var ListPromptsResultSchema = PaginatedResultSchema.extend({
|
|
prompts: array(PromptSchema)
|
|
});
|
|
var GetPromptRequestParamsSchema = BaseRequestParamsSchema.extend({
|
|
/**
|
|
* The name of the prompt or prompt template.
|
|
*/
|
|
name: string2(),
|
|
/**
|
|
* Arguments to use for templating the prompt.
|
|
*/
|
|
arguments: record(string2(), string2()).optional()
|
|
});
|
|
var GetPromptRequestSchema = RequestSchema.extend({
|
|
method: literal("prompts/get"),
|
|
params: GetPromptRequestParamsSchema
|
|
});
|
|
var TextContentSchema = object2({
|
|
type: literal("text"),
|
|
/**
|
|
* The text content of the message.
|
|
*/
|
|
text: string2(),
|
|
/**
|
|
* Optional annotations for the client.
|
|
*/
|
|
annotations: AnnotationsSchema.optional(),
|
|
/**
|
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
* for notes on _meta usage.
|
|
*/
|
|
_meta: record(string2(), unknown()).optional()
|
|
});
|
|
var ImageContentSchema = object2({
|
|
type: literal("image"),
|
|
/**
|
|
* The base64-encoded image data.
|
|
*/
|
|
data: Base64Schema,
|
|
/**
|
|
* The MIME type of the image. Different providers may support different image types.
|
|
*/
|
|
mimeType: string2(),
|
|
/**
|
|
* Optional annotations for the client.
|
|
*/
|
|
annotations: AnnotationsSchema.optional(),
|
|
/**
|
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
* for notes on _meta usage.
|
|
*/
|
|
_meta: record(string2(), unknown()).optional()
|
|
});
|
|
var AudioContentSchema = object2({
|
|
type: literal("audio"),
|
|
/**
|
|
* The base64-encoded audio data.
|
|
*/
|
|
data: Base64Schema,
|
|
/**
|
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
*/
|
|
mimeType: string2(),
|
|
/**
|
|
* Optional annotations for the client.
|
|
*/
|
|
annotations: AnnotationsSchema.optional(),
|
|
/**
|
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
* for notes on _meta usage.
|
|
*/
|
|
_meta: record(string2(), unknown()).optional()
|
|
});
|
|
var ToolUseContentSchema = object2({
|
|
type: literal("tool_use"),
|
|
/**
|
|
* The name of the tool to invoke.
|
|
* Must match a tool name from the request's tools array.
|
|
*/
|
|
name: string2(),
|
|
/**
|
|
* Unique identifier for this tool call.
|
|
* Used to correlate with ToolResultContent in subsequent messages.
|
|
*/
|
|
id: string2(),
|
|
/**
|
|
* Arguments to pass to the tool.
|
|
* Must conform to the tool's inputSchema.
|
|
*/
|
|
input: record(string2(), unknown()),
|
|
/**
|
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
* for notes on _meta usage.
|
|
*/
|
|
_meta: record(string2(), unknown()).optional()
|
|
});
|
|
var EmbeddedResourceSchema = object2({
|
|
type: literal("resource"),
|
|
resource: union([TextResourceContentsSchema, BlobResourceContentsSchema]),
|
|
/**
|
|
* Optional annotations for the client.
|
|
*/
|
|
annotations: AnnotationsSchema.optional(),
|
|
/**
|
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
* for notes on _meta usage.
|
|
*/
|
|
_meta: record(string2(), unknown()).optional()
|
|
});
|
|
var ResourceLinkSchema = ResourceSchema.extend({
|
|
type: literal("resource_link")
|
|
});
|
|
var ContentBlockSchema = union([
|
|
TextContentSchema,
|
|
ImageContentSchema,
|
|
AudioContentSchema,
|
|
ResourceLinkSchema,
|
|
EmbeddedResourceSchema
|
|
]);
|
|
var PromptMessageSchema = object2({
|
|
role: RoleSchema,
|
|
content: ContentBlockSchema
|
|
});
|
|
var GetPromptResultSchema = ResultSchema.extend({
|
|
/**
|
|
* An optional description for the prompt.
|
|
*/
|
|
description: string2().optional(),
|
|
messages: array(PromptMessageSchema)
|
|
});
|
|
var PromptListChangedNotificationSchema = NotificationSchema.extend({
|
|
method: literal("notifications/prompts/list_changed"),
|
|
params: NotificationsParamsSchema.optional()
|
|
});
|
|
var ToolAnnotationsSchema = object2({
|
|
/**
|
|
* A human-readable title for the tool.
|
|
*/
|
|
title: string2().optional(),
|
|
/**
|
|
* If true, the tool does not modify its environment.
|
|
*
|
|
* Default: false
|
|
*/
|
|
readOnlyHint: boolean2().optional(),
|
|
/**
|
|
* If true, the tool may perform destructive updates to its environment.
|
|
* If false, the tool performs only additive updates.
|
|
*
|
|
* (This property is meaningful only when `readOnlyHint == false`)
|
|
*
|
|
* Default: true
|
|
*/
|
|
destructiveHint: boolean2().optional(),
|
|
/**
|
|
* If true, calling the tool repeatedly with the same arguments
|
|
* will have no additional effect on the its environment.
|
|
*
|
|
* (This property is meaningful only when `readOnlyHint == false`)
|
|
*
|
|
* Default: false
|
|
*/
|
|
idempotentHint: boolean2().optional(),
|
|
/**
|
|
* If true, this tool may interact with an "open world" of external
|
|
* entities. If false, the tool's domain of interaction is closed.
|
|
* For example, the world of a web search tool is open, whereas that
|
|
* of a memory tool is not.
|
|
*
|
|
* Default: true
|
|
*/
|
|
openWorldHint: boolean2().optional()
|
|
});
|
|
var ToolExecutionSchema = object2({
|
|
/**
|
|
* Indicates the tool's preference for task-augmented execution.
|
|
* - "required": Clients MUST invoke the tool as a task
|
|
* - "optional": Clients MAY invoke the tool as a task or normal request
|
|
* - "forbidden": Clients MUST NOT attempt to invoke the tool as a task
|
|
*
|
|
* If not present, defaults to "forbidden".
|
|
*/
|
|
taskSupport: _enum(["required", "optional", "forbidden"]).optional()
|
|
});
|
|
var ToolSchema = object2({
|
|
...BaseMetadataSchema.shape,
|
|
...IconsSchema.shape,
|
|
/**
|
|
* A human-readable description of the tool.
|
|
*/
|
|
description: string2().optional(),
|
|
/**
|
|
* A JSON Schema 2020-12 object defining the expected parameters for the tool.
|
|
* Must have type: 'object' at the root level per MCP spec.
|
|
*/
|
|
inputSchema: object2({
|
|
type: literal("object"),
|
|
properties: record(string2(), AssertObjectSchema).optional(),
|
|
required: array(string2()).optional()
|
|
}).catchall(unknown()),
|
|
/**
|
|
* An optional JSON Schema 2020-12 object defining the structure of the tool's output
|
|
* returned in the structuredContent field of a CallToolResult.
|
|
* Must have type: 'object' at the root level per MCP spec.
|
|
*/
|
|
outputSchema: object2({
|
|
type: literal("object"),
|
|
properties: record(string2(), AssertObjectSchema).optional(),
|
|
required: array(string2()).optional()
|
|
}).catchall(unknown()).optional(),
|
|
/**
|
|
* Optional additional tool information.
|
|
*/
|
|
annotations: ToolAnnotationsSchema.optional(),
|
|
/**
|
|
* Execution-related properties for this tool.
|
|
*/
|
|
execution: ToolExecutionSchema.optional(),
|
|
/**
|
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
* for notes on _meta usage.
|
|
*/
|
|
_meta: record(string2(), unknown()).optional()
|
|
});
|
|
var ListToolsRequestSchema = PaginatedRequestSchema.extend({
|
|
method: literal("tools/list")
|
|
});
|
|
var ListToolsResultSchema = PaginatedResultSchema.extend({
|
|
tools: array(ToolSchema)
|
|
});
|
|
var CallToolResultSchema = ResultSchema.extend({
|
|
/**
|
|
* A list of content objects that represent the result of the tool call.
|
|
*
|
|
* If the Tool does not define an outputSchema, this field MUST be present in the result.
|
|
* For backwards compatibility, this field is always present, but it may be empty.
|
|
*/
|
|
content: array(ContentBlockSchema).default([]),
|
|
/**
|
|
* An object containing structured tool output.
|
|
*
|
|
* If the Tool defines an outputSchema, this field MUST be present in the result, and contain a JSON object that matches the schema.
|
|
*/
|
|
structuredContent: record(string2(), unknown()).optional(),
|
|
/**
|
|
* Whether the tool call ended in an error.
|
|
*
|
|
* If not set, this is assumed to be false (the call was successful).
|
|
*
|
|
* Any errors that originate from the tool SHOULD be reported inside the result
|
|
* object, with `isError` set to true, _not_ as an MCP protocol-level error
|
|
* response. Otherwise, the LLM would not be able to see that an error occurred
|
|
* and self-correct.
|
|
*
|
|
* However, any errors in _finding_ the tool, an error indicating that the
|
|
* server does not support tool calls, or any other exceptional conditions,
|
|
* should be reported as an MCP error response.
|
|
*/
|
|
isError: boolean2().optional()
|
|
});
|
|
var CompatibilityCallToolResultSchema = CallToolResultSchema.or(ResultSchema.extend({
|
|
toolResult: unknown()
|
|
}));
|
|
var CallToolRequestParamsSchema = TaskAugmentedRequestParamsSchema.extend({
|
|
/**
|
|
* The name of the tool to call.
|
|
*/
|
|
name: string2(),
|
|
/**
|
|
* Arguments to pass to the tool.
|
|
*/
|
|
arguments: record(string2(), unknown()).optional()
|
|
});
|
|
var CallToolRequestSchema = RequestSchema.extend({
|
|
method: literal("tools/call"),
|
|
params: CallToolRequestParamsSchema
|
|
});
|
|
var ToolListChangedNotificationSchema = NotificationSchema.extend({
|
|
method: literal("notifications/tools/list_changed"),
|
|
params: NotificationsParamsSchema.optional()
|
|
});
|
|
var ListChangedOptionsBaseSchema = object2({
|
|
/**
|
|
* If true, the list will be refreshed automatically when a list changed notification is received.
|
|
* The callback will be called with the updated list.
|
|
*
|
|
* If false, the callback will be called with null items, allowing manual refresh.
|
|
*
|
|
* @default true
|
|
*/
|
|
autoRefresh: boolean2().default(true),
|
|
/**
|
|
* Debounce time in milliseconds for list changed notification processing.
|
|
*
|
|
* Multiple notifications received within this timeframe will only trigger one refresh.
|
|
* Set to 0 to disable debouncing.
|
|
*
|
|
* @default 300
|
|
*/
|
|
debounceMs: number2().int().nonnegative().default(300)
|
|
});
|
|
var LoggingLevelSchema = _enum(["debug", "info", "notice", "warning", "error", "critical", "alert", "emergency"]);
|
|
var SetLevelRequestParamsSchema = BaseRequestParamsSchema.extend({
|
|
/**
|
|
* The level of logging that the client wants to receive from the server. The server should send all logs at this level and higher (i.e., more severe) to the client as notifications/logging/message.
|
|
*/
|
|
level: LoggingLevelSchema
|
|
});
|
|
var SetLevelRequestSchema = RequestSchema.extend({
|
|
method: literal("logging/setLevel"),
|
|
params: SetLevelRequestParamsSchema
|
|
});
|
|
var LoggingMessageNotificationParamsSchema = NotificationsParamsSchema.extend({
|
|
/**
|
|
* The severity of this log message.
|
|
*/
|
|
level: LoggingLevelSchema,
|
|
/**
|
|
* An optional name of the logger issuing this message.
|
|
*/
|
|
logger: string2().optional(),
|
|
/**
|
|
* The data to be logged, such as a string message or an object. Any JSON serializable type is allowed here.
|
|
*/
|
|
data: unknown()
|
|
});
|
|
var LoggingMessageNotificationSchema = NotificationSchema.extend({
|
|
method: literal("notifications/message"),
|
|
params: LoggingMessageNotificationParamsSchema
|
|
});
|
|
var ModelHintSchema = object2({
|
|
/**
|
|
* A hint for a model name.
|
|
*/
|
|
name: string2().optional()
|
|
});
|
|
var ModelPreferencesSchema = object2({
|
|
/**
|
|
* Optional hints to use for model selection.
|
|
*/
|
|
hints: array(ModelHintSchema).optional(),
|
|
/**
|
|
* How much to prioritize cost when selecting a model.
|
|
*/
|
|
costPriority: number2().min(0).max(1).optional(),
|
|
/**
|
|
* How much to prioritize sampling speed (latency) when selecting a model.
|
|
*/
|
|
speedPriority: number2().min(0).max(1).optional(),
|
|
/**
|
|
* How much to prioritize intelligence and capabilities when selecting a model.
|
|
*/
|
|
intelligencePriority: number2().min(0).max(1).optional()
|
|
});
|
|
var ToolChoiceSchema = object2({
|
|
/**
|
|
* Controls when tools are used:
|
|
* - "auto": Model decides whether to use tools (default)
|
|
* - "required": Model MUST use at least one tool before completing
|
|
* - "none": Model MUST NOT use any tools
|
|
*/
|
|
mode: _enum(["auto", "required", "none"]).optional()
|
|
});
|
|
var ToolResultContentSchema = object2({
|
|
type: literal("tool_result"),
|
|
toolUseId: string2().describe("The unique identifier for the corresponding tool call."),
|
|
content: array(ContentBlockSchema).default([]),
|
|
structuredContent: object2({}).loose().optional(),
|
|
isError: boolean2().optional(),
|
|
/**
|
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
* for notes on _meta usage.
|
|
*/
|
|
_meta: record(string2(), unknown()).optional()
|
|
});
|
|
var SamplingContentSchema = discriminatedUnion("type", [TextContentSchema, ImageContentSchema, AudioContentSchema]);
|
|
var SamplingMessageContentBlockSchema = discriminatedUnion("type", [
|
|
TextContentSchema,
|
|
ImageContentSchema,
|
|
AudioContentSchema,
|
|
ToolUseContentSchema,
|
|
ToolResultContentSchema
|
|
]);
|
|
var SamplingMessageSchema = object2({
|
|
role: RoleSchema,
|
|
content: union([SamplingMessageContentBlockSchema, array(SamplingMessageContentBlockSchema)]),
|
|
/**
|
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
* for notes on _meta usage.
|
|
*/
|
|
_meta: record(string2(), unknown()).optional()
|
|
});
|
|
var CreateMessageRequestParamsSchema = TaskAugmentedRequestParamsSchema.extend({
|
|
messages: array(SamplingMessageSchema),
|
|
/**
|
|
* The server's preferences for which model to select. The client MAY modify or omit this request.
|
|
*/
|
|
modelPreferences: ModelPreferencesSchema.optional(),
|
|
/**
|
|
* An optional system prompt the server wants to use for sampling. The client MAY modify or omit this prompt.
|
|
*/
|
|
systemPrompt: string2().optional(),
|
|
/**
|
|
* A request to include context from one or more MCP servers (including the caller), to be attached to the prompt.
|
|
* The client MAY ignore this request.
|
|
*
|
|
* Default is "none". Values "thisServer" and "allServers" are soft-deprecated. Servers SHOULD only use these values if the client
|
|
* declares ClientCapabilities.sampling.context. These values may be removed in future spec releases.
|
|
*/
|
|
includeContext: _enum(["none", "thisServer", "allServers"]).optional(),
|
|
temperature: number2().optional(),
|
|
/**
|
|
* The requested maximum number of tokens to sample (to prevent runaway completions).
|
|
*
|
|
* The client MAY choose to sample fewer tokens than the requested maximum.
|
|
*/
|
|
maxTokens: number2().int(),
|
|
stopSequences: array(string2()).optional(),
|
|
/**
|
|
* Optional metadata to pass through to the LLM provider. The format of this metadata is provider-specific.
|
|
*/
|
|
metadata: AssertObjectSchema.optional(),
|
|
/**
|
|
* Tools that the model may use during generation.
|
|
* The client MUST return an error if this field is provided but ClientCapabilities.sampling.tools is not declared.
|
|
*/
|
|
tools: array(ToolSchema).optional(),
|
|
/**
|
|
* Controls how the model uses tools.
|
|
* The client MUST return an error if this field is provided but ClientCapabilities.sampling.tools is not declared.
|
|
* Default is `{ mode: "auto" }`.
|
|
*/
|
|
toolChoice: ToolChoiceSchema.optional()
|
|
});
|
|
var CreateMessageRequestSchema = RequestSchema.extend({
|
|
method: literal("sampling/createMessage"),
|
|
params: CreateMessageRequestParamsSchema
|
|
});
|
|
var CreateMessageResultSchema = ResultSchema.extend({
|
|
/**
|
|
* The name of the model that generated the message.
|
|
*/
|
|
model: string2(),
|
|
/**
|
|
* The reason why sampling stopped, if known.
|
|
*
|
|
* Standard values:
|
|
* - "endTurn": Natural end of the assistant's turn
|
|
* - "stopSequence": A stop sequence was encountered
|
|
* - "maxTokens": Maximum token limit was reached
|
|
*
|
|
* This field is an open string to allow for provider-specific stop reasons.
|
|
*/
|
|
stopReason: optional(_enum(["endTurn", "stopSequence", "maxTokens"]).or(string2())),
|
|
role: RoleSchema,
|
|
/**
|
|
* Response content. Single content block (text, image, or audio).
|
|
*/
|
|
content: SamplingContentSchema
|
|
});
|
|
var CreateMessageResultWithToolsSchema = ResultSchema.extend({
|
|
/**
|
|
* The name of the model that generated the message.
|
|
*/
|
|
model: string2(),
|
|
/**
|
|
* The reason why sampling stopped, if known.
|
|
*
|
|
* Standard values:
|
|
* - "endTurn": Natural end of the assistant's turn
|
|
* - "stopSequence": A stop sequence was encountered
|
|
* - "maxTokens": Maximum token limit was reached
|
|
* - "toolUse": The model wants to use one or more tools
|
|
*
|
|
* This field is an open string to allow for provider-specific stop reasons.
|
|
*/
|
|
stopReason: optional(_enum(["endTurn", "stopSequence", "maxTokens", "toolUse"]).or(string2())),
|
|
role: RoleSchema,
|
|
/**
|
|
* Response content. May be a single block or array. May include ToolUseContent if stopReason is "toolUse".
|
|
*/
|
|
content: union([SamplingMessageContentBlockSchema, array(SamplingMessageContentBlockSchema)])
|
|
});
|
|
var BooleanSchemaSchema = object2({
|
|
type: literal("boolean"),
|
|
title: string2().optional(),
|
|
description: string2().optional(),
|
|
default: boolean2().optional()
|
|
});
|
|
var StringSchemaSchema = object2({
|
|
type: literal("string"),
|
|
title: string2().optional(),
|
|
description: string2().optional(),
|
|
minLength: number2().optional(),
|
|
maxLength: number2().optional(),
|
|
format: _enum(["email", "uri", "date", "date-time"]).optional(),
|
|
default: string2().optional()
|
|
});
|
|
var NumberSchemaSchema = object2({
|
|
type: _enum(["number", "integer"]),
|
|
title: string2().optional(),
|
|
description: string2().optional(),
|
|
minimum: number2().optional(),
|
|
maximum: number2().optional(),
|
|
default: number2().optional()
|
|
});
|
|
var UntitledSingleSelectEnumSchemaSchema = object2({
|
|
type: literal("string"),
|
|
title: string2().optional(),
|
|
description: string2().optional(),
|
|
enum: array(string2()),
|
|
default: string2().optional()
|
|
});
|
|
var TitledSingleSelectEnumSchemaSchema = object2({
|
|
type: literal("string"),
|
|
title: string2().optional(),
|
|
description: string2().optional(),
|
|
oneOf: array(object2({
|
|
const: string2(),
|
|
title: string2()
|
|
})),
|
|
default: string2().optional()
|
|
});
|
|
var LegacyTitledEnumSchemaSchema = object2({
|
|
type: literal("string"),
|
|
title: string2().optional(),
|
|
description: string2().optional(),
|
|
enum: array(string2()),
|
|
enumNames: array(string2()).optional(),
|
|
default: string2().optional()
|
|
});
|
|
var SingleSelectEnumSchemaSchema = union([UntitledSingleSelectEnumSchemaSchema, TitledSingleSelectEnumSchemaSchema]);
|
|
var UntitledMultiSelectEnumSchemaSchema = object2({
|
|
type: literal("array"),
|
|
title: string2().optional(),
|
|
description: string2().optional(),
|
|
minItems: number2().optional(),
|
|
maxItems: number2().optional(),
|
|
items: object2({
|
|
type: literal("string"),
|
|
enum: array(string2())
|
|
}),
|
|
default: array(string2()).optional()
|
|
});
|
|
var TitledMultiSelectEnumSchemaSchema = object2({
|
|
type: literal("array"),
|
|
title: string2().optional(),
|
|
description: string2().optional(),
|
|
minItems: number2().optional(),
|
|
maxItems: number2().optional(),
|
|
items: object2({
|
|
anyOf: array(object2({
|
|
const: string2(),
|
|
title: string2()
|
|
}))
|
|
}),
|
|
default: array(string2()).optional()
|
|
});
|
|
var MultiSelectEnumSchemaSchema = union([UntitledMultiSelectEnumSchemaSchema, TitledMultiSelectEnumSchemaSchema]);
|
|
var EnumSchemaSchema = union([LegacyTitledEnumSchemaSchema, SingleSelectEnumSchemaSchema, MultiSelectEnumSchemaSchema]);
|
|
var PrimitiveSchemaDefinitionSchema = union([EnumSchemaSchema, BooleanSchemaSchema, StringSchemaSchema, NumberSchemaSchema]);
|
|
var ElicitRequestFormParamsSchema = TaskAugmentedRequestParamsSchema.extend({
|
|
/**
|
|
* The elicitation mode.
|
|
*
|
|
* Optional for backward compatibility. Clients MUST treat missing mode as "form".
|
|
*/
|
|
mode: literal("form").optional(),
|
|
/**
|
|
* The message to present to the user describing what information is being requested.
|
|
*/
|
|
message: string2(),
|
|
/**
|
|
* A restricted subset of JSON Schema.
|
|
* Only top-level properties are allowed, without nesting.
|
|
*/
|
|
requestedSchema: object2({
|
|
type: literal("object"),
|
|
properties: record(string2(), PrimitiveSchemaDefinitionSchema),
|
|
required: array(string2()).optional()
|
|
})
|
|
});
|
|
var ElicitRequestURLParamsSchema = TaskAugmentedRequestParamsSchema.extend({
|
|
/**
|
|
* The elicitation mode.
|
|
*/
|
|
mode: literal("url"),
|
|
/**
|
|
* The message to present to the user explaining why the interaction is needed.
|
|
*/
|
|
message: string2(),
|
|
/**
|
|
* The ID of the elicitation, which must be unique within the context of the server.
|
|
* The client MUST treat this ID as an opaque value.
|
|
*/
|
|
elicitationId: string2(),
|
|
/**
|
|
* The URL that the user should navigate to.
|
|
*/
|
|
url: string2().url()
|
|
});
|
|
var ElicitRequestParamsSchema = union([ElicitRequestFormParamsSchema, ElicitRequestURLParamsSchema]);
|
|
var ElicitRequestSchema = RequestSchema.extend({
|
|
method: literal("elicitation/create"),
|
|
params: ElicitRequestParamsSchema
|
|
});
|
|
var ElicitationCompleteNotificationParamsSchema = NotificationsParamsSchema.extend({
|
|
/**
|
|
* The ID of the elicitation that completed.
|
|
*/
|
|
elicitationId: string2()
|
|
});
|
|
var ElicitationCompleteNotificationSchema = NotificationSchema.extend({
|
|
method: literal("notifications/elicitation/complete"),
|
|
params: ElicitationCompleteNotificationParamsSchema
|
|
});
|
|
var ElicitResultSchema = ResultSchema.extend({
|
|
/**
|
|
* The user action in response to the elicitation.
|
|
* - "accept": User submitted the form/confirmed the action
|
|
* - "decline": User explicitly decline the action
|
|
* - "cancel": User dismissed without making an explicit choice
|
|
*/
|
|
action: _enum(["accept", "decline", "cancel"]),
|
|
/**
|
|
* The submitted form data, only present when action is "accept".
|
|
* Contains values matching the requested schema.
|
|
* Per MCP spec, content is "typically omitted" for decline/cancel actions.
|
|
* We normalize null to undefined for leniency while maintaining type compatibility.
|
|
*/
|
|
content: preprocess((val) => val === null ? void 0 : val, record(string2(), union([string2(), number2(), boolean2(), array(string2())])).optional())
|
|
});
|
|
var ResourceTemplateReferenceSchema = object2({
|
|
type: literal("ref/resource"),
|
|
/**
|
|
* The URI or URI template of the resource.
|
|
*/
|
|
uri: string2()
|
|
});
|
|
var PromptReferenceSchema = object2({
|
|
type: literal("ref/prompt"),
|
|
/**
|
|
* The name of the prompt or prompt template
|
|
*/
|
|
name: string2()
|
|
});
|
|
var CompleteRequestParamsSchema = BaseRequestParamsSchema.extend({
|
|
ref: union([PromptReferenceSchema, ResourceTemplateReferenceSchema]),
|
|
/**
|
|
* The argument's information
|
|
*/
|
|
argument: object2({
|
|
/**
|
|
* The name of the argument
|
|
*/
|
|
name: string2(),
|
|
/**
|
|
* The value of the argument to use for completion matching.
|
|
*/
|
|
value: string2()
|
|
}),
|
|
context: object2({
|
|
/**
|
|
* Previously-resolved variables in a URI template or prompt.
|
|
*/
|
|
arguments: record(string2(), string2()).optional()
|
|
}).optional()
|
|
});
|
|
var CompleteRequestSchema = RequestSchema.extend({
|
|
method: literal("completion/complete"),
|
|
params: CompleteRequestParamsSchema
|
|
});
|
|
var CompleteResultSchema = ResultSchema.extend({
|
|
completion: looseObject({
|
|
/**
|
|
* An array of completion values. Must not exceed 100 items.
|
|
*/
|
|
values: array(string2()).max(100),
|
|
/**
|
|
* The total number of completion options available. This can exceed the number of values actually sent in the response.
|
|
*/
|
|
total: optional(number2().int()),
|
|
/**
|
|
* Indicates whether there are additional completion options beyond those provided in the current response, even if the exact total is unknown.
|
|
*/
|
|
hasMore: optional(boolean2())
|
|
})
|
|
});
|
|
var RootSchema = object2({
|
|
/**
|
|
* The URI identifying the root. This *must* start with file:// for now.
|
|
*/
|
|
uri: string2().startsWith("file://"),
|
|
/**
|
|
* An optional name for the root.
|
|
*/
|
|
name: string2().optional(),
|
|
/**
|
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
* for notes on _meta usage.
|
|
*/
|
|
_meta: record(string2(), unknown()).optional()
|
|
});
|
|
var ListRootsRequestSchema = RequestSchema.extend({
|
|
method: literal("roots/list"),
|
|
params: BaseRequestParamsSchema.optional()
|
|
});
|
|
var ListRootsResultSchema = ResultSchema.extend({
|
|
roots: array(RootSchema)
|
|
});
|
|
var RootsListChangedNotificationSchema = NotificationSchema.extend({
|
|
method: literal("notifications/roots/list_changed"),
|
|
params: NotificationsParamsSchema.optional()
|
|
});
|
|
var ClientRequestSchema = union([
|
|
PingRequestSchema,
|
|
InitializeRequestSchema,
|
|
CompleteRequestSchema,
|
|
SetLevelRequestSchema,
|
|
GetPromptRequestSchema,
|
|
ListPromptsRequestSchema,
|
|
ListResourcesRequestSchema,
|
|
ListResourceTemplatesRequestSchema,
|
|
ReadResourceRequestSchema,
|
|
SubscribeRequestSchema,
|
|
UnsubscribeRequestSchema,
|
|
CallToolRequestSchema,
|
|
ListToolsRequestSchema,
|
|
GetTaskRequestSchema,
|
|
GetTaskPayloadRequestSchema,
|
|
ListTasksRequestSchema,
|
|
CancelTaskRequestSchema
|
|
]);
|
|
var ClientNotificationSchema = union([
|
|
CancelledNotificationSchema,
|
|
ProgressNotificationSchema,
|
|
InitializedNotificationSchema,
|
|
RootsListChangedNotificationSchema,
|
|
TaskStatusNotificationSchema
|
|
]);
|
|
var ClientResultSchema = union([
|
|
EmptyResultSchema,
|
|
CreateMessageResultSchema,
|
|
CreateMessageResultWithToolsSchema,
|
|
ElicitResultSchema,
|
|
ListRootsResultSchema,
|
|
GetTaskResultSchema,
|
|
ListTasksResultSchema,
|
|
CreateTaskResultSchema
|
|
]);
|
|
var ServerRequestSchema = union([
|
|
PingRequestSchema,
|
|
CreateMessageRequestSchema,
|
|
ElicitRequestSchema,
|
|
ListRootsRequestSchema,
|
|
GetTaskRequestSchema,
|
|
GetTaskPayloadRequestSchema,
|
|
ListTasksRequestSchema,
|
|
CancelTaskRequestSchema
|
|
]);
|
|
var ServerNotificationSchema = union([
|
|
CancelledNotificationSchema,
|
|
ProgressNotificationSchema,
|
|
LoggingMessageNotificationSchema,
|
|
ResourceUpdatedNotificationSchema,
|
|
ResourceListChangedNotificationSchema,
|
|
ToolListChangedNotificationSchema,
|
|
PromptListChangedNotificationSchema,
|
|
TaskStatusNotificationSchema,
|
|
ElicitationCompleteNotificationSchema
|
|
]);
|
|
var ServerResultSchema = union([
|
|
EmptyResultSchema,
|
|
InitializeResultSchema,
|
|
CompleteResultSchema,
|
|
GetPromptResultSchema,
|
|
ListPromptsResultSchema,
|
|
ListResourcesResultSchema,
|
|
ListResourceTemplatesResultSchema,
|
|
ReadResourceResultSchema,
|
|
CallToolResultSchema,
|
|
ListToolsResultSchema,
|
|
GetTaskResultSchema,
|
|
ListTasksResultSchema,
|
|
CreateTaskResultSchema
|
|
]);
|
|
var McpError = class _McpError extends Error {
|
|
constructor(code, message, data) {
|
|
super(`MCP error ${code}: ${message}`);
|
|
this.code = code;
|
|
this.data = data;
|
|
this.name = "McpError";
|
|
}
|
|
/**
|
|
* Factory method to create the appropriate error type based on the error code and data
|
|
*/
|
|
static fromError(code, message, data) {
|
|
if (code === ErrorCode.UrlElicitationRequired && data) {
|
|
const errorData = data;
|
|
if (errorData.elicitations) {
|
|
return new UrlElicitationRequiredError(errorData.elicitations, message);
|
|
}
|
|
}
|
|
return new _McpError(code, message, data);
|
|
}
|
|
};
|
|
var UrlElicitationRequiredError = class extends McpError {
|
|
constructor(elicitations, message = `URL elicitation${elicitations.length > 1 ? "s" : ""} required`) {
|
|
super(ErrorCode.UrlElicitationRequired, message, {
|
|
elicitations
|
|
});
|
|
}
|
|
get elicitations() {
|
|
return this.data?.elicitations ?? [];
|
|
}
|
|
};
|
|
|
|
// node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/interfaces.js
|
|
function isTerminal(status) {
|
|
return status === "completed" || status === "failed" || status === "cancelled";
|
|
}
|
|
|
|
// node_modules/zod-to-json-schema/dist/esm/Options.js
|
|
var ignoreOverride = Symbol("Let zodToJsonSchema decide on which parser to use");
|
|
|
|
// node_modules/zod-to-json-schema/dist/esm/parsers/string.js
|
|
var ALPHA_NUMERIC = new Set("ABCDEFGHIJKLMNOPQRSTUVXYZabcdefghijklmnopqrstuvxyz0123456789");
|
|
|
|
// node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-json-schema-compat.js
|
|
function getMethodLiteral(schema) {
|
|
const shape = getObjectShape(schema);
|
|
const methodSchema = shape?.method;
|
|
if (!methodSchema) {
|
|
throw new Error("Schema is missing a method literal");
|
|
}
|
|
const value = getLiteralValue(methodSchema);
|
|
if (typeof value !== "string") {
|
|
throw new Error("Schema method literal must be a string");
|
|
}
|
|
return value;
|
|
}
|
|
function parseWithCompat(schema, data) {
|
|
const result = safeParse2(schema, data);
|
|
if (!result.success) {
|
|
throw result.error;
|
|
}
|
|
return result.data;
|
|
}
|
|
|
|
// node_modules/@modelcontextprotocol/sdk/dist/esm/shared/protocol.js
|
|
var DEFAULT_REQUEST_TIMEOUT_MSEC = 6e4;
|
|
var Protocol = class {
|
|
constructor(_options) {
|
|
this._options = _options;
|
|
this._requestMessageId = 0;
|
|
this._requestHandlers = /* @__PURE__ */ new Map();
|
|
this._requestHandlerAbortControllers = /* @__PURE__ */ new Map();
|
|
this._notificationHandlers = /* @__PURE__ */ new Map();
|
|
this._responseHandlers = /* @__PURE__ */ new Map();
|
|
this._progressHandlers = /* @__PURE__ */ new Map();
|
|
this._timeoutInfo = /* @__PURE__ */ new Map();
|
|
this._pendingDebouncedNotifications = /* @__PURE__ */ new Set();
|
|
this._taskProgressTokens = /* @__PURE__ */ new Map();
|
|
this._requestResolvers = /* @__PURE__ */ new Map();
|
|
this.setNotificationHandler(CancelledNotificationSchema, (notification) => {
|
|
this._oncancel(notification);
|
|
});
|
|
this.setNotificationHandler(ProgressNotificationSchema, (notification) => {
|
|
this._onprogress(notification);
|
|
});
|
|
this.setRequestHandler(
|
|
PingRequestSchema,
|
|
// Automatic pong by default.
|
|
(_request) => ({})
|
|
);
|
|
this._taskStore = _options?.taskStore;
|
|
this._taskMessageQueue = _options?.taskMessageQueue;
|
|
if (this._taskStore) {
|
|
this.setRequestHandler(GetTaskRequestSchema, async (request, extra) => {
|
|
const task = await this._taskStore.getTask(request.params.taskId, extra.sessionId);
|
|
if (!task) {
|
|
throw new McpError(ErrorCode.InvalidParams, "Failed to retrieve task: Task not found");
|
|
}
|
|
return {
|
|
...task
|
|
};
|
|
});
|
|
this.setRequestHandler(GetTaskPayloadRequestSchema, async (request, extra) => {
|
|
const handleTaskResult = async () => {
|
|
const taskId = request.params.taskId;
|
|
if (this._taskMessageQueue) {
|
|
let queuedMessage;
|
|
while (queuedMessage = await this._taskMessageQueue.dequeue(taskId, extra.sessionId)) {
|
|
if (queuedMessage.type === "response" || queuedMessage.type === "error") {
|
|
const message = queuedMessage.message;
|
|
const requestId = message.id;
|
|
const resolver = this._requestResolvers.get(requestId);
|
|
if (resolver) {
|
|
this._requestResolvers.delete(requestId);
|
|
if (queuedMessage.type === "response") {
|
|
resolver(message);
|
|
} else {
|
|
const errorMessage = message;
|
|
const error2 = new McpError(errorMessage.error.code, errorMessage.error.message, errorMessage.error.data);
|
|
resolver(error2);
|
|
}
|
|
} else {
|
|
const messageType = queuedMessage.type === "response" ? "Response" : "Error";
|
|
this._onerror(new Error(`${messageType} handler missing for request ${requestId}`));
|
|
}
|
|
continue;
|
|
}
|
|
await this._transport?.send(queuedMessage.message, { relatedRequestId: extra.requestId });
|
|
}
|
|
}
|
|
const task = await this._taskStore.getTask(taskId, extra.sessionId);
|
|
if (!task) {
|
|
throw new McpError(ErrorCode.InvalidParams, `Task not found: ${taskId}`);
|
|
}
|
|
if (!isTerminal(task.status)) {
|
|
await this._waitForTaskUpdate(taskId, extra.signal);
|
|
return await handleTaskResult();
|
|
}
|
|
if (isTerminal(task.status)) {
|
|
const result = await this._taskStore.getTaskResult(taskId, extra.sessionId);
|
|
this._clearTaskQueue(taskId);
|
|
return {
|
|
...result,
|
|
_meta: {
|
|
...result._meta,
|
|
[RELATED_TASK_META_KEY]: {
|
|
taskId
|
|
}
|
|
}
|
|
};
|
|
}
|
|
return await handleTaskResult();
|
|
};
|
|
return await handleTaskResult();
|
|
});
|
|
this.setRequestHandler(ListTasksRequestSchema, async (request, extra) => {
|
|
try {
|
|
const { tasks, nextCursor } = await this._taskStore.listTasks(request.params?.cursor, extra.sessionId);
|
|
return {
|
|
tasks,
|
|
nextCursor,
|
|
_meta: {}
|
|
};
|
|
} catch (error2) {
|
|
throw new McpError(ErrorCode.InvalidParams, `Failed to list tasks: ${error2 instanceof Error ? error2.message : String(error2)}`);
|
|
}
|
|
});
|
|
this.setRequestHandler(CancelTaskRequestSchema, async (request, extra) => {
|
|
try {
|
|
const task = await this._taskStore.getTask(request.params.taskId, extra.sessionId);
|
|
if (!task) {
|
|
throw new McpError(ErrorCode.InvalidParams, `Task not found: ${request.params.taskId}`);
|
|
}
|
|
if (isTerminal(task.status)) {
|
|
throw new McpError(ErrorCode.InvalidParams, `Cannot cancel task in terminal status: ${task.status}`);
|
|
}
|
|
await this._taskStore.updateTaskStatus(request.params.taskId, "cancelled", "Client cancelled task execution.", extra.sessionId);
|
|
this._clearTaskQueue(request.params.taskId);
|
|
const cancelledTask = await this._taskStore.getTask(request.params.taskId, extra.sessionId);
|
|
if (!cancelledTask) {
|
|
throw new McpError(ErrorCode.InvalidParams, `Task not found after cancellation: ${request.params.taskId}`);
|
|
}
|
|
return {
|
|
_meta: {},
|
|
...cancelledTask
|
|
};
|
|
} catch (error2) {
|
|
if (error2 instanceof McpError) {
|
|
throw error2;
|
|
}
|
|
throw new McpError(ErrorCode.InvalidRequest, `Failed to cancel task: ${error2 instanceof Error ? error2.message : String(error2)}`);
|
|
}
|
|
});
|
|
}
|
|
}
|
|
async _oncancel(notification) {
|
|
if (!notification.params.requestId) {
|
|
return;
|
|
}
|
|
const controller = this._requestHandlerAbortControllers.get(notification.params.requestId);
|
|
controller?.abort(notification.params.reason);
|
|
}
|
|
_setupTimeout(messageId, timeout, maxTotalTimeout, onTimeout, resetTimeoutOnProgress = false) {
|
|
this._timeoutInfo.set(messageId, {
|
|
timeoutId: setTimeout(onTimeout, timeout),
|
|
startTime: Date.now(),
|
|
timeout,
|
|
maxTotalTimeout,
|
|
resetTimeoutOnProgress,
|
|
onTimeout
|
|
});
|
|
}
|
|
_resetTimeout(messageId) {
|
|
const info = this._timeoutInfo.get(messageId);
|
|
if (!info)
|
|
return false;
|
|
const totalElapsed = Date.now() - info.startTime;
|
|
if (info.maxTotalTimeout && totalElapsed >= info.maxTotalTimeout) {
|
|
this._timeoutInfo.delete(messageId);
|
|
throw McpError.fromError(ErrorCode.RequestTimeout, "Maximum total timeout exceeded", {
|
|
maxTotalTimeout: info.maxTotalTimeout,
|
|
totalElapsed
|
|
});
|
|
}
|
|
clearTimeout(info.timeoutId);
|
|
info.timeoutId = setTimeout(info.onTimeout, info.timeout);
|
|
return true;
|
|
}
|
|
_cleanupTimeout(messageId) {
|
|
const info = this._timeoutInfo.get(messageId);
|
|
if (info) {
|
|
clearTimeout(info.timeoutId);
|
|
this._timeoutInfo.delete(messageId);
|
|
}
|
|
}
|
|
/**
|
|
* Attaches to the given transport, starts it, and starts listening for messages.
|
|
*
|
|
* The Protocol object assumes ownership of the Transport, replacing any callbacks that have already been set, and expects that it is the only user of the Transport instance going forward.
|
|
*/
|
|
async connect(transport) {
|
|
if (this._transport) {
|
|
throw new Error("Already connected to a transport. Call close() before connecting to a new transport, or use a separate Protocol instance per connection.");
|
|
}
|
|
this._transport = transport;
|
|
const _onclose = this.transport?.onclose;
|
|
this._transport.onclose = () => {
|
|
_onclose?.();
|
|
this._onclose();
|
|
};
|
|
const _onerror = this.transport?.onerror;
|
|
this._transport.onerror = (error2) => {
|
|
_onerror?.(error2);
|
|
this._onerror(error2);
|
|
};
|
|
const _onmessage = this._transport?.onmessage;
|
|
this._transport.onmessage = (message, extra) => {
|
|
_onmessage?.(message, extra);
|
|
if (isJSONRPCResultResponse(message) || isJSONRPCErrorResponse(message)) {
|
|
this._onresponse(message);
|
|
} else if (isJSONRPCRequest(message)) {
|
|
this._onrequest(message, extra);
|
|
} else if (isJSONRPCNotification(message)) {
|
|
this._onnotification(message);
|
|
} else {
|
|
this._onerror(new Error(`Unknown message type: ${JSON.stringify(message)}`));
|
|
}
|
|
};
|
|
await this._transport.start();
|
|
}
|
|
_onclose() {
|
|
const responseHandlers = this._responseHandlers;
|
|
this._responseHandlers = /* @__PURE__ */ new Map();
|
|
this._progressHandlers.clear();
|
|
this._taskProgressTokens.clear();
|
|
this._pendingDebouncedNotifications.clear();
|
|
for (const controller of this._requestHandlerAbortControllers.values()) {
|
|
controller.abort();
|
|
}
|
|
this._requestHandlerAbortControllers.clear();
|
|
const error2 = McpError.fromError(ErrorCode.ConnectionClosed, "Connection closed");
|
|
this._transport = void 0;
|
|
this.onclose?.();
|
|
for (const handler of responseHandlers.values()) {
|
|
handler(error2);
|
|
}
|
|
}
|
|
_onerror(error2) {
|
|
this.onerror?.(error2);
|
|
}
|
|
_onnotification(notification) {
|
|
const handler = this._notificationHandlers.get(notification.method) ?? this.fallbackNotificationHandler;
|
|
if (handler === void 0) {
|
|
return;
|
|
}
|
|
Promise.resolve().then(() => handler(notification)).catch((error2) => this._onerror(new Error(`Uncaught error in notification handler: ${error2}`)));
|
|
}
|
|
_onrequest(request, extra) {
|
|
const handler = this._requestHandlers.get(request.method) ?? this.fallbackRequestHandler;
|
|
const capturedTransport = this._transport;
|
|
const relatedTaskId = request.params?._meta?.[RELATED_TASK_META_KEY]?.taskId;
|
|
if (handler === void 0) {
|
|
const errorResponse = {
|
|
jsonrpc: "2.0",
|
|
id: request.id,
|
|
error: {
|
|
code: ErrorCode.MethodNotFound,
|
|
message: "Method not found"
|
|
}
|
|
};
|
|
if (relatedTaskId && this._taskMessageQueue) {
|
|
this._enqueueTaskMessage(relatedTaskId, {
|
|
type: "error",
|
|
message: errorResponse,
|
|
timestamp: Date.now()
|
|
}, capturedTransport?.sessionId).catch((error2) => this._onerror(new Error(`Failed to enqueue error response: ${error2}`)));
|
|
} else {
|
|
capturedTransport?.send(errorResponse).catch((error2) => this._onerror(new Error(`Failed to send an error response: ${error2}`)));
|
|
}
|
|
return;
|
|
}
|
|
const abortController = new AbortController();
|
|
this._requestHandlerAbortControllers.set(request.id, abortController);
|
|
const taskCreationParams = isTaskAugmentedRequestParams(request.params) ? request.params.task : void 0;
|
|
const taskStore = this._taskStore ? this.requestTaskStore(request, capturedTransport?.sessionId) : void 0;
|
|
const fullExtra = {
|
|
signal: abortController.signal,
|
|
sessionId: capturedTransport?.sessionId,
|
|
_meta: request.params?._meta,
|
|
sendNotification: async (notification) => {
|
|
if (abortController.signal.aborted)
|
|
return;
|
|
const notificationOptions = { relatedRequestId: request.id };
|
|
if (relatedTaskId) {
|
|
notificationOptions.relatedTask = { taskId: relatedTaskId };
|
|
}
|
|
await this.notification(notification, notificationOptions);
|
|
},
|
|
sendRequest: async (r, resultSchema, options) => {
|
|
if (abortController.signal.aborted) {
|
|
throw new McpError(ErrorCode.ConnectionClosed, "Request was cancelled");
|
|
}
|
|
const requestOptions = { ...options, relatedRequestId: request.id };
|
|
if (relatedTaskId && !requestOptions.relatedTask) {
|
|
requestOptions.relatedTask = { taskId: relatedTaskId };
|
|
}
|
|
const effectiveTaskId = requestOptions.relatedTask?.taskId ?? relatedTaskId;
|
|
if (effectiveTaskId && taskStore) {
|
|
await taskStore.updateTaskStatus(effectiveTaskId, "input_required");
|
|
}
|
|
return await this.request(r, resultSchema, requestOptions);
|
|
},
|
|
authInfo: extra?.authInfo,
|
|
requestId: request.id,
|
|
requestInfo: extra?.requestInfo,
|
|
taskId: relatedTaskId,
|
|
taskStore,
|
|
taskRequestedTtl: taskCreationParams?.ttl,
|
|
closeSSEStream: extra?.closeSSEStream,
|
|
closeStandaloneSSEStream: extra?.closeStandaloneSSEStream
|
|
};
|
|
Promise.resolve().then(() => {
|
|
if (taskCreationParams) {
|
|
this.assertTaskHandlerCapability(request.method);
|
|
}
|
|
}).then(() => handler(request, fullExtra)).then(async (result) => {
|
|
if (abortController.signal.aborted) {
|
|
return;
|
|
}
|
|
const response = {
|
|
result,
|
|
jsonrpc: "2.0",
|
|
id: request.id
|
|
};
|
|
if (relatedTaskId && this._taskMessageQueue) {
|
|
await this._enqueueTaskMessage(relatedTaskId, {
|
|
type: "response",
|
|
message: response,
|
|
timestamp: Date.now()
|
|
}, capturedTransport?.sessionId);
|
|
} else {
|
|
await capturedTransport?.send(response);
|
|
}
|
|
}, async (error2) => {
|
|
if (abortController.signal.aborted) {
|
|
return;
|
|
}
|
|
const errorResponse = {
|
|
jsonrpc: "2.0",
|
|
id: request.id,
|
|
error: {
|
|
code: Number.isSafeInteger(error2["code"]) ? error2["code"] : ErrorCode.InternalError,
|
|
message: error2.message ?? "Internal error",
|
|
...error2["data"] !== void 0 && { data: error2["data"] }
|
|
}
|
|
};
|
|
if (relatedTaskId && this._taskMessageQueue) {
|
|
await this._enqueueTaskMessage(relatedTaskId, {
|
|
type: "error",
|
|
message: errorResponse,
|
|
timestamp: Date.now()
|
|
}, capturedTransport?.sessionId);
|
|
} else {
|
|
await capturedTransport?.send(errorResponse);
|
|
}
|
|
}).catch((error2) => this._onerror(new Error(`Failed to send response: ${error2}`))).finally(() => {
|
|
this._requestHandlerAbortControllers.delete(request.id);
|
|
});
|
|
}
|
|
_onprogress(notification) {
|
|
const { progressToken, ...params } = notification.params;
|
|
const messageId = Number(progressToken);
|
|
const handler = this._progressHandlers.get(messageId);
|
|
if (!handler) {
|
|
this._onerror(new Error(`Received a progress notification for an unknown token: ${JSON.stringify(notification)}`));
|
|
return;
|
|
}
|
|
const responseHandler = this._responseHandlers.get(messageId);
|
|
const timeoutInfo = this._timeoutInfo.get(messageId);
|
|
if (timeoutInfo && responseHandler && timeoutInfo.resetTimeoutOnProgress) {
|
|
try {
|
|
this._resetTimeout(messageId);
|
|
} catch (error2) {
|
|
this._responseHandlers.delete(messageId);
|
|
this._progressHandlers.delete(messageId);
|
|
this._cleanupTimeout(messageId);
|
|
responseHandler(error2);
|
|
return;
|
|
}
|
|
}
|
|
handler(params);
|
|
}
|
|
_onresponse(response) {
|
|
const messageId = Number(response.id);
|
|
const resolver = this._requestResolvers.get(messageId);
|
|
if (resolver) {
|
|
this._requestResolvers.delete(messageId);
|
|
if (isJSONRPCResultResponse(response)) {
|
|
resolver(response);
|
|
} else {
|
|
const error2 = new McpError(response.error.code, response.error.message, response.error.data);
|
|
resolver(error2);
|
|
}
|
|
return;
|
|
}
|
|
const handler = this._responseHandlers.get(messageId);
|
|
if (handler === void 0) {
|
|
this._onerror(new Error(`Received a response for an unknown message ID: ${JSON.stringify(response)}`));
|
|
return;
|
|
}
|
|
this._responseHandlers.delete(messageId);
|
|
this._cleanupTimeout(messageId);
|
|
let isTaskResponse = false;
|
|
if (isJSONRPCResultResponse(response) && response.result && typeof response.result === "object") {
|
|
const result = response.result;
|
|
if (result.task && typeof result.task === "object") {
|
|
const task = result.task;
|
|
if (typeof task.taskId === "string") {
|
|
isTaskResponse = true;
|
|
this._taskProgressTokens.set(task.taskId, messageId);
|
|
}
|
|
}
|
|
}
|
|
if (!isTaskResponse) {
|
|
this._progressHandlers.delete(messageId);
|
|
}
|
|
if (isJSONRPCResultResponse(response)) {
|
|
handler(response);
|
|
} else {
|
|
const error2 = McpError.fromError(response.error.code, response.error.message, response.error.data);
|
|
handler(error2);
|
|
}
|
|
}
|
|
get transport() {
|
|
return this._transport;
|
|
}
|
|
/**
|
|
* Closes the connection.
|
|
*/
|
|
async close() {
|
|
await this._transport?.close();
|
|
}
|
|
/**
|
|
* Sends a request and returns an AsyncGenerator that yields response messages.
|
|
* The generator is guaranteed to end with either a 'result' or 'error' message.
|
|
*
|
|
* @example
|
|
* ```typescript
|
|
* const stream = protocol.requestStream(request, resultSchema, options);
|
|
* for await (const message of stream) {
|
|
* switch (message.type) {
|
|
* case 'taskCreated':
|
|
* console.log('Task created:', message.task.taskId);
|
|
* break;
|
|
* case 'taskStatus':
|
|
* console.log('Task status:', message.task.status);
|
|
* break;
|
|
* case 'result':
|
|
* console.log('Final result:', message.result);
|
|
* break;
|
|
* case 'error':
|
|
* console.error('Error:', message.error);
|
|
* break;
|
|
* }
|
|
* }
|
|
* ```
|
|
*
|
|
* @experimental Use `client.experimental.tasks.requestStream()` to access this method.
|
|
*/
|
|
async *requestStream(request, resultSchema, options) {
|
|
const { task } = options ?? {};
|
|
if (!task) {
|
|
try {
|
|
const result = await this.request(request, resultSchema, options);
|
|
yield { type: "result", result };
|
|
} catch (error2) {
|
|
yield {
|
|
type: "error",
|
|
error: error2 instanceof McpError ? error2 : new McpError(ErrorCode.InternalError, String(error2))
|
|
};
|
|
}
|
|
return;
|
|
}
|
|
let taskId;
|
|
try {
|
|
const createResult = await this.request(request, CreateTaskResultSchema, options);
|
|
if (createResult.task) {
|
|
taskId = createResult.task.taskId;
|
|
yield { type: "taskCreated", task: createResult.task };
|
|
} else {
|
|
throw new McpError(ErrorCode.InternalError, "Task creation did not return a task");
|
|
}
|
|
while (true) {
|
|
const task2 = await this.getTask({ taskId }, options);
|
|
yield { type: "taskStatus", task: task2 };
|
|
if (isTerminal(task2.status)) {
|
|
if (task2.status === "completed") {
|
|
const result = await this.getTaskResult({ taskId }, resultSchema, options);
|
|
yield { type: "result", result };
|
|
} else if (task2.status === "failed") {
|
|
yield {
|
|
type: "error",
|
|
error: new McpError(ErrorCode.InternalError, `Task ${taskId} failed`)
|
|
};
|
|
} else if (task2.status === "cancelled") {
|
|
yield {
|
|
type: "error",
|
|
error: new McpError(ErrorCode.InternalError, `Task ${taskId} was cancelled`)
|
|
};
|
|
}
|
|
return;
|
|
}
|
|
if (task2.status === "input_required") {
|
|
const result = await this.getTaskResult({ taskId }, resultSchema, options);
|
|
yield { type: "result", result };
|
|
return;
|
|
}
|
|
const pollInterval = task2.pollInterval ?? this._options?.defaultTaskPollInterval ?? 1e3;
|
|
await new Promise((resolve) => setTimeout(resolve, pollInterval));
|
|
options?.signal?.throwIfAborted();
|
|
}
|
|
} catch (error2) {
|
|
yield {
|
|
type: "error",
|
|
error: error2 instanceof McpError ? error2 : new McpError(ErrorCode.InternalError, String(error2))
|
|
};
|
|
}
|
|
}
|
|
/**
|
|
* Sends a request and waits for a response.
|
|
*
|
|
* Do not use this method to emit notifications! Use notification() instead.
|
|
*/
|
|
request(request, resultSchema, options) {
|
|
const { relatedRequestId, resumptionToken, onresumptiontoken, task, relatedTask } = options ?? {};
|
|
return new Promise((resolve, reject) => {
|
|
const earlyReject = (error2) => {
|
|
reject(error2);
|
|
};
|
|
if (!this._transport) {
|
|
earlyReject(new Error("Not connected"));
|
|
return;
|
|
}
|
|
if (this._options?.enforceStrictCapabilities === true) {
|
|
try {
|
|
this.assertCapabilityForMethod(request.method);
|
|
if (task) {
|
|
this.assertTaskCapability(request.method);
|
|
}
|
|
} catch (e) {
|
|
earlyReject(e);
|
|
return;
|
|
}
|
|
}
|
|
options?.signal?.throwIfAborted();
|
|
const messageId = this._requestMessageId++;
|
|
const jsonrpcRequest = {
|
|
...request,
|
|
jsonrpc: "2.0",
|
|
id: messageId
|
|
};
|
|
if (options?.onprogress) {
|
|
this._progressHandlers.set(messageId, options.onprogress);
|
|
jsonrpcRequest.params = {
|
|
...request.params,
|
|
_meta: {
|
|
...request.params?._meta || {},
|
|
progressToken: messageId
|
|
}
|
|
};
|
|
}
|
|
if (task) {
|
|
jsonrpcRequest.params = {
|
|
...jsonrpcRequest.params,
|
|
task
|
|
};
|
|
}
|
|
if (relatedTask) {
|
|
jsonrpcRequest.params = {
|
|
...jsonrpcRequest.params,
|
|
_meta: {
|
|
...jsonrpcRequest.params?._meta || {},
|
|
[RELATED_TASK_META_KEY]: relatedTask
|
|
}
|
|
};
|
|
}
|
|
const cancel = (reason) => {
|
|
this._responseHandlers.delete(messageId);
|
|
this._progressHandlers.delete(messageId);
|
|
this._cleanupTimeout(messageId);
|
|
this._transport?.send({
|
|
jsonrpc: "2.0",
|
|
method: "notifications/cancelled",
|
|
params: {
|
|
requestId: messageId,
|
|
reason: String(reason)
|
|
}
|
|
}, { relatedRequestId, resumptionToken, onresumptiontoken }).catch((error3) => this._onerror(new Error(`Failed to send cancellation: ${error3}`)));
|
|
const error2 = reason instanceof McpError ? reason : new McpError(ErrorCode.RequestTimeout, String(reason));
|
|
reject(error2);
|
|
};
|
|
this._responseHandlers.set(messageId, (response) => {
|
|
if (options?.signal?.aborted) {
|
|
return;
|
|
}
|
|
if (response instanceof Error) {
|
|
return reject(response);
|
|
}
|
|
try {
|
|
const parseResult = safeParse2(resultSchema, response.result);
|
|
if (!parseResult.success) {
|
|
reject(parseResult.error);
|
|
} else {
|
|
resolve(parseResult.data);
|
|
}
|
|
} catch (error2) {
|
|
reject(error2);
|
|
}
|
|
});
|
|
options?.signal?.addEventListener("abort", () => {
|
|
cancel(options?.signal?.reason);
|
|
});
|
|
const timeout = options?.timeout ?? DEFAULT_REQUEST_TIMEOUT_MSEC;
|
|
const timeoutHandler = () => cancel(McpError.fromError(ErrorCode.RequestTimeout, "Request timed out", { timeout }));
|
|
this._setupTimeout(messageId, timeout, options?.maxTotalTimeout, timeoutHandler, options?.resetTimeoutOnProgress ?? false);
|
|
const relatedTaskId = relatedTask?.taskId;
|
|
if (relatedTaskId) {
|
|
const responseResolver = (response) => {
|
|
const handler = this._responseHandlers.get(messageId);
|
|
if (handler) {
|
|
handler(response);
|
|
} else {
|
|
this._onerror(new Error(`Response handler missing for side-channeled request ${messageId}`));
|
|
}
|
|
};
|
|
this._requestResolvers.set(messageId, responseResolver);
|
|
this._enqueueTaskMessage(relatedTaskId, {
|
|
type: "request",
|
|
message: jsonrpcRequest,
|
|
timestamp: Date.now()
|
|
}).catch((error2) => {
|
|
this._cleanupTimeout(messageId);
|
|
reject(error2);
|
|
});
|
|
} else {
|
|
this._transport.send(jsonrpcRequest, { relatedRequestId, resumptionToken, onresumptiontoken }).catch((error2) => {
|
|
this._cleanupTimeout(messageId);
|
|
reject(error2);
|
|
});
|
|
}
|
|
});
|
|
}
|
|
/**
|
|
* Gets the current status of a task.
|
|
*
|
|
* @experimental Use `client.experimental.tasks.getTask()` to access this method.
|
|
*/
|
|
async getTask(params, options) {
|
|
return this.request({ method: "tasks/get", params }, GetTaskResultSchema, options);
|
|
}
|
|
/**
|
|
* Retrieves the result of a completed task.
|
|
*
|
|
* @experimental Use `client.experimental.tasks.getTaskResult()` to access this method.
|
|
*/
|
|
async getTaskResult(params, resultSchema, options) {
|
|
return this.request({ method: "tasks/result", params }, resultSchema, options);
|
|
}
|
|
/**
|
|
* Lists tasks, optionally starting from a pagination cursor.
|
|
*
|
|
* @experimental Use `client.experimental.tasks.listTasks()` to access this method.
|
|
*/
|
|
async listTasks(params, options) {
|
|
return this.request({ method: "tasks/list", params }, ListTasksResultSchema, options);
|
|
}
|
|
/**
|
|
* Cancels a specific task.
|
|
*
|
|
* @experimental Use `client.experimental.tasks.cancelTask()` to access this method.
|
|
*/
|
|
async cancelTask(params, options) {
|
|
return this.request({ method: "tasks/cancel", params }, CancelTaskResultSchema, options);
|
|
}
|
|
/**
|
|
* Emits a notification, which is a one-way message that does not expect a response.
|
|
*/
|
|
async notification(notification, options) {
|
|
if (!this._transport) {
|
|
throw new Error("Not connected");
|
|
}
|
|
this.assertNotificationCapability(notification.method);
|
|
const relatedTaskId = options?.relatedTask?.taskId;
|
|
if (relatedTaskId) {
|
|
const jsonrpcNotification2 = {
|
|
...notification,
|
|
jsonrpc: "2.0",
|
|
params: {
|
|
...notification.params,
|
|
_meta: {
|
|
...notification.params?._meta || {},
|
|
[RELATED_TASK_META_KEY]: options.relatedTask
|
|
}
|
|
}
|
|
};
|
|
await this._enqueueTaskMessage(relatedTaskId, {
|
|
type: "notification",
|
|
message: jsonrpcNotification2,
|
|
timestamp: Date.now()
|
|
});
|
|
return;
|
|
}
|
|
const debouncedMethods = this._options?.debouncedNotificationMethods ?? [];
|
|
const canDebounce = debouncedMethods.includes(notification.method) && !notification.params && !options?.relatedRequestId && !options?.relatedTask;
|
|
if (canDebounce) {
|
|
if (this._pendingDebouncedNotifications.has(notification.method)) {
|
|
return;
|
|
}
|
|
this._pendingDebouncedNotifications.add(notification.method);
|
|
Promise.resolve().then(() => {
|
|
this._pendingDebouncedNotifications.delete(notification.method);
|
|
if (!this._transport) {
|
|
return;
|
|
}
|
|
let jsonrpcNotification2 = {
|
|
...notification,
|
|
jsonrpc: "2.0"
|
|
};
|
|
if (options?.relatedTask) {
|
|
jsonrpcNotification2 = {
|
|
...jsonrpcNotification2,
|
|
params: {
|
|
...jsonrpcNotification2.params,
|
|
_meta: {
|
|
...jsonrpcNotification2.params?._meta || {},
|
|
[RELATED_TASK_META_KEY]: options.relatedTask
|
|
}
|
|
}
|
|
};
|
|
}
|
|
this._transport?.send(jsonrpcNotification2, options).catch((error2) => this._onerror(error2));
|
|
});
|
|
return;
|
|
}
|
|
let jsonrpcNotification = {
|
|
...notification,
|
|
jsonrpc: "2.0"
|
|
};
|
|
if (options?.relatedTask) {
|
|
jsonrpcNotification = {
|
|
...jsonrpcNotification,
|
|
params: {
|
|
...jsonrpcNotification.params,
|
|
_meta: {
|
|
...jsonrpcNotification.params?._meta || {},
|
|
[RELATED_TASK_META_KEY]: options.relatedTask
|
|
}
|
|
}
|
|
};
|
|
}
|
|
await this._transport.send(jsonrpcNotification, options);
|
|
}
|
|
/**
|
|
* Registers a handler to invoke when this protocol object receives a request with the given method.
|
|
*
|
|
* Note that this will replace any previous request handler for the same method.
|
|
*/
|
|
setRequestHandler(requestSchema, handler) {
|
|
const method = getMethodLiteral(requestSchema);
|
|
this.assertRequestHandlerCapability(method);
|
|
this._requestHandlers.set(method, (request, extra) => {
|
|
const parsed = parseWithCompat(requestSchema, request);
|
|
return Promise.resolve(handler(parsed, extra));
|
|
});
|
|
}
|
|
/**
|
|
* Removes the request handler for the given method.
|
|
*/
|
|
removeRequestHandler(method) {
|
|
this._requestHandlers.delete(method);
|
|
}
|
|
/**
|
|
* Asserts that a request handler has not already been set for the given method, in preparation for a new one being automatically installed.
|
|
*/
|
|
assertCanSetRequestHandler(method) {
|
|
if (this._requestHandlers.has(method)) {
|
|
throw new Error(`A request handler for ${method} already exists, which would be overridden`);
|
|
}
|
|
}
|
|
/**
|
|
* Registers a handler to invoke when this protocol object receives a notification with the given method.
|
|
*
|
|
* Note that this will replace any previous notification handler for the same method.
|
|
*/
|
|
setNotificationHandler(notificationSchema, handler) {
|
|
const method = getMethodLiteral(notificationSchema);
|
|
this._notificationHandlers.set(method, (notification) => {
|
|
const parsed = parseWithCompat(notificationSchema, notification);
|
|
return Promise.resolve(handler(parsed));
|
|
});
|
|
}
|
|
/**
|
|
* Removes the notification handler for the given method.
|
|
*/
|
|
removeNotificationHandler(method) {
|
|
this._notificationHandlers.delete(method);
|
|
}
|
|
/**
|
|
* Cleans up the progress handler associated with a task.
|
|
* This should be called when a task reaches a terminal status.
|
|
*/
|
|
_cleanupTaskProgressHandler(taskId) {
|
|
const progressToken = this._taskProgressTokens.get(taskId);
|
|
if (progressToken !== void 0) {
|
|
this._progressHandlers.delete(progressToken);
|
|
this._taskProgressTokens.delete(taskId);
|
|
}
|
|
}
|
|
/**
|
|
* Enqueues a task-related message for side-channel delivery via tasks/result.
|
|
* @param taskId The task ID to associate the message with
|
|
* @param message The message to enqueue
|
|
* @param sessionId Optional session ID for binding the operation to a specific session
|
|
* @throws Error if taskStore is not configured or if enqueue fails (e.g., queue overflow)
|
|
*
|
|
* Note: If enqueue fails, it's the TaskMessageQueue implementation's responsibility to handle
|
|
* the error appropriately (e.g., by failing the task, logging, etc.). The Protocol layer
|
|
* simply propagates the error.
|
|
*/
|
|
async _enqueueTaskMessage(taskId, message, sessionId) {
|
|
if (!this._taskStore || !this._taskMessageQueue) {
|
|
throw new Error("Cannot enqueue task message: taskStore and taskMessageQueue are not configured");
|
|
}
|
|
const maxQueueSize = this._options?.maxTaskQueueSize;
|
|
await this._taskMessageQueue.enqueue(taskId, message, sessionId, maxQueueSize);
|
|
}
|
|
/**
|
|
* Clears the message queue for a task and rejects any pending request resolvers.
|
|
* @param taskId The task ID whose queue should be cleared
|
|
* @param sessionId Optional session ID for binding the operation to a specific session
|
|
*/
|
|
async _clearTaskQueue(taskId, sessionId) {
|
|
if (this._taskMessageQueue) {
|
|
const messages = await this._taskMessageQueue.dequeueAll(taskId, sessionId);
|
|
for (const message of messages) {
|
|
if (message.type === "request" && isJSONRPCRequest(message.message)) {
|
|
const requestId = message.message.id;
|
|
const resolver = this._requestResolvers.get(requestId);
|
|
if (resolver) {
|
|
resolver(new McpError(ErrorCode.InternalError, "Task cancelled or completed"));
|
|
this._requestResolvers.delete(requestId);
|
|
} else {
|
|
this._onerror(new Error(`Resolver missing for request ${requestId} during task ${taskId} cleanup`));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
/**
|
|
* Waits for a task update (new messages or status change) with abort signal support.
|
|
* Uses polling to check for updates at the task's configured poll interval.
|
|
* @param taskId The task ID to wait for
|
|
* @param signal Abort signal to cancel the wait
|
|
* @returns Promise that resolves when an update occurs or rejects if aborted
|
|
*/
|
|
async _waitForTaskUpdate(taskId, signal) {
|
|
let interval = this._options?.defaultTaskPollInterval ?? 1e3;
|
|
try {
|
|
const task = await this._taskStore?.getTask(taskId);
|
|
if (task?.pollInterval) {
|
|
interval = task.pollInterval;
|
|
}
|
|
} catch {
|
|
}
|
|
return new Promise((resolve, reject) => {
|
|
if (signal.aborted) {
|
|
reject(new McpError(ErrorCode.InvalidRequest, "Request cancelled"));
|
|
return;
|
|
}
|
|
const timeoutId = setTimeout(resolve, interval);
|
|
signal.addEventListener("abort", () => {
|
|
clearTimeout(timeoutId);
|
|
reject(new McpError(ErrorCode.InvalidRequest, "Request cancelled"));
|
|
}, { once: true });
|
|
});
|
|
}
|
|
requestTaskStore(request, sessionId) {
|
|
const taskStore = this._taskStore;
|
|
if (!taskStore) {
|
|
throw new Error("No task store configured");
|
|
}
|
|
return {
|
|
createTask: async (taskParams) => {
|
|
if (!request) {
|
|
throw new Error("No request provided");
|
|
}
|
|
return await taskStore.createTask(taskParams, request.id, {
|
|
method: request.method,
|
|
params: request.params
|
|
}, sessionId);
|
|
},
|
|
getTask: async (taskId) => {
|
|
const task = await taskStore.getTask(taskId, sessionId);
|
|
if (!task) {
|
|
throw new McpError(ErrorCode.InvalidParams, "Failed to retrieve task: Task not found");
|
|
}
|
|
return task;
|
|
},
|
|
storeTaskResult: async (taskId, status, result) => {
|
|
await taskStore.storeTaskResult(taskId, status, result, sessionId);
|
|
const task = await taskStore.getTask(taskId, sessionId);
|
|
if (task) {
|
|
const notification = TaskStatusNotificationSchema.parse({
|
|
method: "notifications/tasks/status",
|
|
params: task
|
|
});
|
|
await this.notification(notification);
|
|
if (isTerminal(task.status)) {
|
|
this._cleanupTaskProgressHandler(taskId);
|
|
}
|
|
}
|
|
},
|
|
getTaskResult: (taskId) => {
|
|
return taskStore.getTaskResult(taskId, sessionId);
|
|
},
|
|
updateTaskStatus: async (taskId, status, statusMessage) => {
|
|
const task = await taskStore.getTask(taskId, sessionId);
|
|
if (!task) {
|
|
throw new McpError(ErrorCode.InvalidParams, `Task "${taskId}" not found - it may have been cleaned up`);
|
|
}
|
|
if (isTerminal(task.status)) {
|
|
throw new McpError(ErrorCode.InvalidParams, `Cannot update task "${taskId}" from terminal status "${task.status}" to "${status}". Terminal states (completed, failed, cancelled) cannot transition to other states.`);
|
|
}
|
|
await taskStore.updateTaskStatus(taskId, status, statusMessage, sessionId);
|
|
const updatedTask = await taskStore.getTask(taskId, sessionId);
|
|
if (updatedTask) {
|
|
const notification = TaskStatusNotificationSchema.parse({
|
|
method: "notifications/tasks/status",
|
|
params: updatedTask
|
|
});
|
|
await this.notification(notification);
|
|
if (isTerminal(updatedTask.status)) {
|
|
this._cleanupTaskProgressHandler(taskId);
|
|
}
|
|
}
|
|
},
|
|
listTasks: (cursor) => {
|
|
return taskStore.listTasks(cursor, sessionId);
|
|
}
|
|
};
|
|
}
|
|
};
|
|
function isPlainObject2(value) {
|
|
return value !== null && typeof value === "object" && !Array.isArray(value);
|
|
}
|
|
function mergeCapabilities(base, additional) {
|
|
const result = { ...base };
|
|
for (const key in additional) {
|
|
const k = key;
|
|
const addValue = additional[k];
|
|
if (addValue === void 0)
|
|
continue;
|
|
const baseValue = result[k];
|
|
if (isPlainObject2(baseValue) && isPlainObject2(addValue)) {
|
|
result[k] = { ...baseValue, ...addValue };
|
|
} else {
|
|
result[k] = addValue;
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
// node_modules/@modelcontextprotocol/sdk/dist/esm/validation/ajv-provider.js
|
|
var import_ajv = __toESM(require_ajv(), 1);
|
|
var import_ajv_formats = __toESM(require_dist(), 1);
|
|
function createDefaultAjvInstance() {
|
|
const ajv = new import_ajv.default({
|
|
strict: false,
|
|
validateFormats: true,
|
|
validateSchema: false,
|
|
allErrors: true
|
|
});
|
|
const addFormats = import_ajv_formats.default;
|
|
addFormats(ajv);
|
|
return ajv;
|
|
}
|
|
var AjvJsonSchemaValidator = class {
|
|
/**
|
|
* Create an AJV validator
|
|
*
|
|
* @param ajv - Optional pre-configured AJV instance. If not provided, a default instance will be created.
|
|
*
|
|
* @example
|
|
* ```typescript
|
|
* // Use default configuration (recommended for most cases)
|
|
* import { AjvJsonSchemaValidator } from '@modelcontextprotocol/sdk/validation/ajv';
|
|
* const validator = new AjvJsonSchemaValidator();
|
|
*
|
|
* // Or provide custom AJV instance for advanced configuration
|
|
* import { Ajv } from 'ajv';
|
|
* import addFormats from 'ajv-formats';
|
|
*
|
|
* const ajv = new Ajv({ validateFormats: true });
|
|
* addFormats(ajv);
|
|
* const validator = new AjvJsonSchemaValidator(ajv);
|
|
* ```
|
|
*/
|
|
constructor(ajv) {
|
|
this._ajv = ajv ?? createDefaultAjvInstance();
|
|
}
|
|
/**
|
|
* Create a validator for the given JSON Schema
|
|
*
|
|
* The validator is compiled once and can be reused multiple times.
|
|
* If the schema has an $id, it will be cached by AJV automatically.
|
|
*
|
|
* @param schema - Standard JSON Schema object
|
|
* @returns A validator function that validates input data
|
|
*/
|
|
getValidator(schema) {
|
|
const ajvValidator = "$id" in schema && typeof schema.$id === "string" ? this._ajv.getSchema(schema.$id) ?? this._ajv.compile(schema) : this._ajv.compile(schema);
|
|
return (input) => {
|
|
const valid = ajvValidator(input);
|
|
if (valid) {
|
|
return {
|
|
valid: true,
|
|
data: input,
|
|
errorMessage: void 0
|
|
};
|
|
} else {
|
|
return {
|
|
valid: false,
|
|
data: void 0,
|
|
errorMessage: this._ajv.errorsText(ajvValidator.errors)
|
|
};
|
|
}
|
|
};
|
|
}
|
|
};
|
|
|
|
// node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/server.js
|
|
var ExperimentalServerTasks = class {
|
|
constructor(_server) {
|
|
this._server = _server;
|
|
}
|
|
/**
|
|
* Sends a request and returns an AsyncGenerator that yields response messages.
|
|
* The generator is guaranteed to end with either a 'result' or 'error' message.
|
|
*
|
|
* This method provides streaming access to request processing, allowing you to
|
|
* observe intermediate task status updates for task-augmented requests.
|
|
*
|
|
* @param request - The request to send
|
|
* @param resultSchema - Zod schema for validating the result
|
|
* @param options - Optional request options (timeout, signal, task creation params, etc.)
|
|
* @returns AsyncGenerator that yields ResponseMessage objects
|
|
*
|
|
* @experimental
|
|
*/
|
|
requestStream(request, resultSchema, options) {
|
|
return this._server.requestStream(request, resultSchema, options);
|
|
}
|
|
/**
|
|
* Gets the current status of a task.
|
|
*
|
|
* @param taskId - The task identifier
|
|
* @param options - Optional request options
|
|
* @returns The task status
|
|
*
|
|
* @experimental
|
|
*/
|
|
async getTask(taskId, options) {
|
|
return this._server.getTask({ taskId }, options);
|
|
}
|
|
/**
|
|
* Retrieves the result of a completed task.
|
|
*
|
|
* @param taskId - The task identifier
|
|
* @param resultSchema - Zod schema for validating the result
|
|
* @param options - Optional request options
|
|
* @returns The task result
|
|
*
|
|
* @experimental
|
|
*/
|
|
async getTaskResult(taskId, resultSchema, options) {
|
|
return this._server.getTaskResult({ taskId }, resultSchema, options);
|
|
}
|
|
/**
|
|
* Lists tasks with optional pagination.
|
|
*
|
|
* @param cursor - Optional pagination cursor
|
|
* @param options - Optional request options
|
|
* @returns List of tasks with optional next cursor
|
|
*
|
|
* @experimental
|
|
*/
|
|
async listTasks(cursor, options) {
|
|
return this._server.listTasks(cursor ? { cursor } : void 0, options);
|
|
}
|
|
/**
|
|
* Cancels a running task.
|
|
*
|
|
* @param taskId - The task identifier
|
|
* @param options - Optional request options
|
|
*
|
|
* @experimental
|
|
*/
|
|
async cancelTask(taskId, options) {
|
|
return this._server.cancelTask({ taskId }, options);
|
|
}
|
|
};
|
|
|
|
// node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/helpers.js
|
|
function assertToolsCallTaskCapability(requests, method, entityName) {
|
|
if (!requests) {
|
|
throw new Error(`${entityName} does not support task creation (required for ${method})`);
|
|
}
|
|
switch (method) {
|
|
case "tools/call":
|
|
if (!requests.tools?.call) {
|
|
throw new Error(`${entityName} does not support task creation for tools/call (required for ${method})`);
|
|
}
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
function assertClientRequestTaskCapability(requests, method, entityName) {
|
|
if (!requests) {
|
|
throw new Error(`${entityName} does not support task creation (required for ${method})`);
|
|
}
|
|
switch (method) {
|
|
case "sampling/createMessage":
|
|
if (!requests.sampling?.createMessage) {
|
|
throw new Error(`${entityName} does not support task creation for sampling/createMessage (required for ${method})`);
|
|
}
|
|
break;
|
|
case "elicitation/create":
|
|
if (!requests.elicitation?.create) {
|
|
throw new Error(`${entityName} does not support task creation for elicitation/create (required for ${method})`);
|
|
}
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
// node_modules/@modelcontextprotocol/sdk/dist/esm/server/index.js
|
|
var Server = class extends Protocol {
|
|
/**
|
|
* Initializes this server with the given name and version information.
|
|
*/
|
|
constructor(_serverInfo, options) {
|
|
super(options);
|
|
this._serverInfo = _serverInfo;
|
|
this._loggingLevels = /* @__PURE__ */ new Map();
|
|
this.LOG_LEVEL_SEVERITY = new Map(LoggingLevelSchema.options.map((level, index) => [level, index]));
|
|
this.isMessageIgnored = (level, sessionId) => {
|
|
const currentLevel = this._loggingLevels.get(sessionId);
|
|
return currentLevel ? this.LOG_LEVEL_SEVERITY.get(level) < this.LOG_LEVEL_SEVERITY.get(currentLevel) : false;
|
|
};
|
|
this._capabilities = options?.capabilities ?? {};
|
|
this._instructions = options?.instructions;
|
|
this._jsonSchemaValidator = options?.jsonSchemaValidator ?? new AjvJsonSchemaValidator();
|
|
this.setRequestHandler(InitializeRequestSchema, (request) => this._oninitialize(request));
|
|
this.setNotificationHandler(InitializedNotificationSchema, () => this.oninitialized?.());
|
|
if (this._capabilities.logging) {
|
|
this.setRequestHandler(SetLevelRequestSchema, async (request, extra) => {
|
|
const transportSessionId = extra.sessionId || extra.requestInfo?.headers["mcp-session-id"] || void 0;
|
|
const { level } = request.params;
|
|
const parseResult = LoggingLevelSchema.safeParse(level);
|
|
if (parseResult.success) {
|
|
this._loggingLevels.set(transportSessionId, parseResult.data);
|
|
}
|
|
return {};
|
|
});
|
|
}
|
|
}
|
|
/**
|
|
* Access experimental features.
|
|
*
|
|
* WARNING: These APIs are experimental and may change without notice.
|
|
*
|
|
* @experimental
|
|
*/
|
|
get experimental() {
|
|
if (!this._experimental) {
|
|
this._experimental = {
|
|
tasks: new ExperimentalServerTasks(this)
|
|
};
|
|
}
|
|
return this._experimental;
|
|
}
|
|
/**
|
|
* Registers new capabilities. This can only be called before connecting to a transport.
|
|
*
|
|
* The new capabilities will be merged with any existing capabilities previously given (e.g., at initialization).
|
|
*/
|
|
registerCapabilities(capabilities) {
|
|
if (this.transport) {
|
|
throw new Error("Cannot register capabilities after connecting to transport");
|
|
}
|
|
this._capabilities = mergeCapabilities(this._capabilities, capabilities);
|
|
}
|
|
/**
|
|
* Override request handler registration to enforce server-side validation for tools/call.
|
|
*/
|
|
setRequestHandler(requestSchema, handler) {
|
|
const shape = getObjectShape(requestSchema);
|
|
const methodSchema = shape?.method;
|
|
if (!methodSchema) {
|
|
throw new Error("Schema is missing a method literal");
|
|
}
|
|
let methodValue;
|
|
if (isZ4Schema(methodSchema)) {
|
|
const v4Schema = methodSchema;
|
|
const v4Def = v4Schema._zod?.def;
|
|
methodValue = v4Def?.value ?? v4Schema.value;
|
|
} else {
|
|
const v3Schema = methodSchema;
|
|
const legacyDef = v3Schema._def;
|
|
methodValue = legacyDef?.value ?? v3Schema.value;
|
|
}
|
|
if (typeof methodValue !== "string") {
|
|
throw new Error("Schema method literal must be a string");
|
|
}
|
|
const method = methodValue;
|
|
if (method === "tools/call") {
|
|
const wrappedHandler = async (request, extra) => {
|
|
const validatedRequest = safeParse2(CallToolRequestSchema, request);
|
|
if (!validatedRequest.success) {
|
|
const errorMessage = validatedRequest.error instanceof Error ? validatedRequest.error.message : String(validatedRequest.error);
|
|
throw new McpError(ErrorCode.InvalidParams, `Invalid tools/call request: ${errorMessage}`);
|
|
}
|
|
const { params } = validatedRequest.data;
|
|
const result = await Promise.resolve(handler(request, extra));
|
|
if (params.task) {
|
|
const taskValidationResult = safeParse2(CreateTaskResultSchema, result);
|
|
if (!taskValidationResult.success) {
|
|
const errorMessage = taskValidationResult.error instanceof Error ? taskValidationResult.error.message : String(taskValidationResult.error);
|
|
throw new McpError(ErrorCode.InvalidParams, `Invalid task creation result: ${errorMessage}`);
|
|
}
|
|
return taskValidationResult.data;
|
|
}
|
|
const validationResult = safeParse2(CallToolResultSchema, result);
|
|
if (!validationResult.success) {
|
|
const errorMessage = validationResult.error instanceof Error ? validationResult.error.message : String(validationResult.error);
|
|
throw new McpError(ErrorCode.InvalidParams, `Invalid tools/call result: ${errorMessage}`);
|
|
}
|
|
return validationResult.data;
|
|
};
|
|
return super.setRequestHandler(requestSchema, wrappedHandler);
|
|
}
|
|
return super.setRequestHandler(requestSchema, handler);
|
|
}
|
|
assertCapabilityForMethod(method) {
|
|
switch (method) {
|
|
case "sampling/createMessage":
|
|
if (!this._clientCapabilities?.sampling) {
|
|
throw new Error(`Client does not support sampling (required for ${method})`);
|
|
}
|
|
break;
|
|
case "elicitation/create":
|
|
if (!this._clientCapabilities?.elicitation) {
|
|
throw new Error(`Client does not support elicitation (required for ${method})`);
|
|
}
|
|
break;
|
|
case "roots/list":
|
|
if (!this._clientCapabilities?.roots) {
|
|
throw new Error(`Client does not support listing roots (required for ${method})`);
|
|
}
|
|
break;
|
|
case "ping":
|
|
break;
|
|
}
|
|
}
|
|
assertNotificationCapability(method) {
|
|
switch (method) {
|
|
case "notifications/message":
|
|
if (!this._capabilities.logging) {
|
|
throw new Error(`Server does not support logging (required for ${method})`);
|
|
}
|
|
break;
|
|
case "notifications/resources/updated":
|
|
case "notifications/resources/list_changed":
|
|
if (!this._capabilities.resources) {
|
|
throw new Error(`Server does not support notifying about resources (required for ${method})`);
|
|
}
|
|
break;
|
|
case "notifications/tools/list_changed":
|
|
if (!this._capabilities.tools) {
|
|
throw new Error(`Server does not support notifying of tool list changes (required for ${method})`);
|
|
}
|
|
break;
|
|
case "notifications/prompts/list_changed":
|
|
if (!this._capabilities.prompts) {
|
|
throw new Error(`Server does not support notifying of prompt list changes (required for ${method})`);
|
|
}
|
|
break;
|
|
case "notifications/elicitation/complete":
|
|
if (!this._clientCapabilities?.elicitation?.url) {
|
|
throw new Error(`Client does not support URL elicitation (required for ${method})`);
|
|
}
|
|
break;
|
|
case "notifications/cancelled":
|
|
break;
|
|
case "notifications/progress":
|
|
break;
|
|
}
|
|
}
|
|
assertRequestHandlerCapability(method) {
|
|
if (!this._capabilities) {
|
|
return;
|
|
}
|
|
switch (method) {
|
|
case "completion/complete":
|
|
if (!this._capabilities.completions) {
|
|
throw new Error(`Server does not support completions (required for ${method})`);
|
|
}
|
|
break;
|
|
case "logging/setLevel":
|
|
if (!this._capabilities.logging) {
|
|
throw new Error(`Server does not support logging (required for ${method})`);
|
|
}
|
|
break;
|
|
case "prompts/get":
|
|
case "prompts/list":
|
|
if (!this._capabilities.prompts) {
|
|
throw new Error(`Server does not support prompts (required for ${method})`);
|
|
}
|
|
break;
|
|
case "resources/list":
|
|
case "resources/templates/list":
|
|
case "resources/read":
|
|
if (!this._capabilities.resources) {
|
|
throw new Error(`Server does not support resources (required for ${method})`);
|
|
}
|
|
break;
|
|
case "tools/call":
|
|
case "tools/list":
|
|
if (!this._capabilities.tools) {
|
|
throw new Error(`Server does not support tools (required for ${method})`);
|
|
}
|
|
break;
|
|
case "tasks/get":
|
|
case "tasks/list":
|
|
case "tasks/result":
|
|
case "tasks/cancel":
|
|
if (!this._capabilities.tasks) {
|
|
throw new Error(`Server does not support tasks capability (required for ${method})`);
|
|
}
|
|
break;
|
|
case "ping":
|
|
case "initialize":
|
|
break;
|
|
}
|
|
}
|
|
assertTaskCapability(method) {
|
|
assertClientRequestTaskCapability(this._clientCapabilities?.tasks?.requests, method, "Client");
|
|
}
|
|
assertTaskHandlerCapability(method) {
|
|
if (!this._capabilities) {
|
|
return;
|
|
}
|
|
assertToolsCallTaskCapability(this._capabilities.tasks?.requests, method, "Server");
|
|
}
|
|
async _oninitialize(request) {
|
|
const requestedVersion = request.params.protocolVersion;
|
|
this._clientCapabilities = request.params.capabilities;
|
|
this._clientVersion = request.params.clientInfo;
|
|
const protocolVersion = SUPPORTED_PROTOCOL_VERSIONS.includes(requestedVersion) ? requestedVersion : LATEST_PROTOCOL_VERSION;
|
|
return {
|
|
protocolVersion,
|
|
capabilities: this.getCapabilities(),
|
|
serverInfo: this._serverInfo,
|
|
...this._instructions && { instructions: this._instructions }
|
|
};
|
|
}
|
|
/**
|
|
* After initialization has completed, this will be populated with the client's reported capabilities.
|
|
*/
|
|
getClientCapabilities() {
|
|
return this._clientCapabilities;
|
|
}
|
|
/**
|
|
* After initialization has completed, this will be populated with information about the client's name and version.
|
|
*/
|
|
getClientVersion() {
|
|
return this._clientVersion;
|
|
}
|
|
getCapabilities() {
|
|
return this._capabilities;
|
|
}
|
|
async ping() {
|
|
return this.request({ method: "ping" }, EmptyResultSchema);
|
|
}
|
|
// Implementation
|
|
async createMessage(params, options) {
|
|
if (params.tools || params.toolChoice) {
|
|
if (!this._clientCapabilities?.sampling?.tools) {
|
|
throw new Error("Client does not support sampling tools capability.");
|
|
}
|
|
}
|
|
if (params.messages.length > 0) {
|
|
const lastMessage = params.messages[params.messages.length - 1];
|
|
const lastContent = Array.isArray(lastMessage.content) ? lastMessage.content : [lastMessage.content];
|
|
const hasToolResults = lastContent.some((c) => c.type === "tool_result");
|
|
const previousMessage = params.messages.length > 1 ? params.messages[params.messages.length - 2] : void 0;
|
|
const previousContent = previousMessage ? Array.isArray(previousMessage.content) ? previousMessage.content : [previousMessage.content] : [];
|
|
const hasPreviousToolUse = previousContent.some((c) => c.type === "tool_use");
|
|
if (hasToolResults) {
|
|
if (lastContent.some((c) => c.type !== "tool_result")) {
|
|
throw new Error("The last message must contain only tool_result content if any is present");
|
|
}
|
|
if (!hasPreviousToolUse) {
|
|
throw new Error("tool_result blocks are not matching any tool_use from the previous message");
|
|
}
|
|
}
|
|
if (hasPreviousToolUse) {
|
|
const toolUseIds = new Set(previousContent.filter((c) => c.type === "tool_use").map((c) => c.id));
|
|
const toolResultIds = new Set(lastContent.filter((c) => c.type === "tool_result").map((c) => c.toolUseId));
|
|
if (toolUseIds.size !== toolResultIds.size || ![...toolUseIds].every((id) => toolResultIds.has(id))) {
|
|
throw new Error("ids of tool_result blocks and tool_use blocks from previous message do not match");
|
|
}
|
|
}
|
|
}
|
|
if (params.tools) {
|
|
return this.request({ method: "sampling/createMessage", params }, CreateMessageResultWithToolsSchema, options);
|
|
}
|
|
return this.request({ method: "sampling/createMessage", params }, CreateMessageResultSchema, options);
|
|
}
|
|
/**
|
|
* Creates an elicitation request for the given parameters.
|
|
* For backwards compatibility, `mode` may be omitted for form requests and will default to `'form'`.
|
|
* @param params The parameters for the elicitation request.
|
|
* @param options Optional request options.
|
|
* @returns The result of the elicitation request.
|
|
*/
|
|
async elicitInput(params, options) {
|
|
const mode = params.mode ?? "form";
|
|
switch (mode) {
|
|
case "url": {
|
|
if (!this._clientCapabilities?.elicitation?.url) {
|
|
throw new Error("Client does not support url elicitation.");
|
|
}
|
|
const urlParams = params;
|
|
return this.request({ method: "elicitation/create", params: urlParams }, ElicitResultSchema, options);
|
|
}
|
|
case "form": {
|
|
if (!this._clientCapabilities?.elicitation?.form) {
|
|
throw new Error("Client does not support form elicitation.");
|
|
}
|
|
const formParams = params.mode === "form" ? params : { ...params, mode: "form" };
|
|
const result = await this.request({ method: "elicitation/create", params: formParams }, ElicitResultSchema, options);
|
|
if (result.action === "accept" && result.content && formParams.requestedSchema) {
|
|
try {
|
|
const validator = this._jsonSchemaValidator.getValidator(formParams.requestedSchema);
|
|
const validationResult = validator(result.content);
|
|
if (!validationResult.valid) {
|
|
throw new McpError(ErrorCode.InvalidParams, `Elicitation response content does not match requested schema: ${validationResult.errorMessage}`);
|
|
}
|
|
} catch (error2) {
|
|
if (error2 instanceof McpError) {
|
|
throw error2;
|
|
}
|
|
throw new McpError(ErrorCode.InternalError, `Error validating elicitation response: ${error2 instanceof Error ? error2.message : String(error2)}`);
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
}
|
|
}
|
|
/**
|
|
* Creates a reusable callback that, when invoked, will send a `notifications/elicitation/complete`
|
|
* notification for the specified elicitation ID.
|
|
*
|
|
* @param elicitationId The ID of the elicitation to mark as complete.
|
|
* @param options Optional notification options. Useful when the completion notification should be related to a prior request.
|
|
* @returns A function that emits the completion notification when awaited.
|
|
*/
|
|
createElicitationCompletionNotifier(elicitationId, options) {
|
|
if (!this._clientCapabilities?.elicitation?.url) {
|
|
throw new Error("Client does not support URL elicitation (required for notifications/elicitation/complete)");
|
|
}
|
|
return () => this.notification({
|
|
method: "notifications/elicitation/complete",
|
|
params: {
|
|
elicitationId
|
|
}
|
|
}, options);
|
|
}
|
|
async listRoots(params, options) {
|
|
return this.request({ method: "roots/list", params }, ListRootsResultSchema, options);
|
|
}
|
|
/**
|
|
* Sends a logging message to the client, if connected.
|
|
* Note: You only need to send the parameters object, not the entire JSON RPC message
|
|
* @see LoggingMessageNotification
|
|
* @param params
|
|
* @param sessionId optional for stateless and backward compatibility
|
|
*/
|
|
async sendLoggingMessage(params, sessionId) {
|
|
if (this._capabilities.logging) {
|
|
if (!this.isMessageIgnored(params.level, sessionId)) {
|
|
return this.notification({ method: "notifications/message", params });
|
|
}
|
|
}
|
|
}
|
|
async sendResourceUpdated(params) {
|
|
return this.notification({
|
|
method: "notifications/resources/updated",
|
|
params
|
|
});
|
|
}
|
|
async sendResourceListChanged() {
|
|
return this.notification({
|
|
method: "notifications/resources/list_changed"
|
|
});
|
|
}
|
|
async sendToolListChanged() {
|
|
return this.notification({ method: "notifications/tools/list_changed" });
|
|
}
|
|
async sendPromptListChanged() {
|
|
return this.notification({ method: "notifications/prompts/list_changed" });
|
|
}
|
|
};
|
|
|
|
// node_modules/@modelcontextprotocol/sdk/dist/esm/server/stdio.js
|
|
import process3 from "node:process";
|
|
|
|
// node_modules/@modelcontextprotocol/sdk/dist/esm/shared/stdio.js
|
|
var ReadBuffer = class {
|
|
append(chunk) {
|
|
this._buffer = this._buffer ? Buffer.concat([this._buffer, chunk]) : chunk;
|
|
}
|
|
readMessage() {
|
|
if (!this._buffer) {
|
|
return null;
|
|
}
|
|
const index = this._buffer.indexOf("\n");
|
|
if (index === -1) {
|
|
return null;
|
|
}
|
|
const line = this._buffer.toString("utf8", 0, index).replace(/\r$/, "");
|
|
this._buffer = this._buffer.subarray(index + 1);
|
|
return deserializeMessage(line);
|
|
}
|
|
clear() {
|
|
this._buffer = void 0;
|
|
}
|
|
};
|
|
function deserializeMessage(line) {
|
|
return JSONRPCMessageSchema.parse(JSON.parse(line));
|
|
}
|
|
function serializeMessage(message) {
|
|
return JSON.stringify(message) + "\n";
|
|
}
|
|
|
|
// node_modules/@modelcontextprotocol/sdk/dist/esm/server/stdio.js
|
|
var StdioServerTransport = class {
|
|
constructor(_stdin = process3.stdin, _stdout = process3.stdout) {
|
|
this._stdin = _stdin;
|
|
this._stdout = _stdout;
|
|
this._readBuffer = new ReadBuffer();
|
|
this._started = false;
|
|
this._ondata = (chunk) => {
|
|
this._readBuffer.append(chunk);
|
|
this.processReadBuffer();
|
|
};
|
|
this._onerror = (error2) => {
|
|
this.onerror?.(error2);
|
|
};
|
|
}
|
|
/**
|
|
* Starts listening for messages on stdin.
|
|
*/
|
|
async start() {
|
|
if (this._started) {
|
|
throw new Error("StdioServerTransport already started! If using Server class, note that connect() calls start() automatically.");
|
|
}
|
|
this._started = true;
|
|
this._stdin.on("data", this._ondata);
|
|
this._stdin.on("error", this._onerror);
|
|
}
|
|
processReadBuffer() {
|
|
while (true) {
|
|
try {
|
|
const message = this._readBuffer.readMessage();
|
|
if (message === null) {
|
|
break;
|
|
}
|
|
this.onmessage?.(message);
|
|
} catch (error2) {
|
|
this.onerror?.(error2);
|
|
}
|
|
}
|
|
}
|
|
async close() {
|
|
this._stdin.off("data", this._ondata);
|
|
this._stdin.off("error", this._onerror);
|
|
const remainingDataListeners = this._stdin.listenerCount("data");
|
|
if (remainingDataListeners === 0) {
|
|
this._stdin.pause();
|
|
}
|
|
this._readBuffer.clear();
|
|
this.onclose?.();
|
|
}
|
|
send(message) {
|
|
return new Promise((resolve) => {
|
|
const json2 = serializeMessage(message);
|
|
if (this._stdout.write(json2)) {
|
|
resolve();
|
|
} else {
|
|
this._stdout.once("drain", resolve);
|
|
}
|
|
});
|
|
}
|
|
};
|
|
|
|
// src/tokens.js
|
|
import * as fs2 from "fs/promises";
|
|
import * as crypto from "crypto";
|
|
|
|
// src/config.js
|
|
var dotenv = __toESM(require_main(), 1);
|
|
import * as path2 from "path";
|
|
import * as os2 from "os";
|
|
import * as fs from "fs/promises";
|
|
|
|
// node_modules/env-paths/index.js
|
|
import path from "node:path";
|
|
import os from "node:os";
|
|
import process4 from "node:process";
|
|
var homedir = os.homedir();
|
|
var tmpdir = os.tmpdir();
|
|
var { env } = process4;
|
|
var macos = (name) => {
|
|
const library = path.join(homedir, "Library");
|
|
return {
|
|
data: path.join(library, "Application Support", name),
|
|
config: path.join(library, "Preferences", name),
|
|
cache: path.join(library, "Caches", name),
|
|
log: path.join(library, "Logs", name),
|
|
temp: path.join(tmpdir, name)
|
|
};
|
|
};
|
|
var windows = (name) => {
|
|
const appData = env.APPDATA || path.join(homedir, "AppData", "Roaming");
|
|
const localAppData = env.LOCALAPPDATA || path.join(homedir, "AppData", "Local");
|
|
return {
|
|
// Data/config/cache/log are invented by me as Windows isn't opinionated about this
|
|
data: path.join(localAppData, name, "Data"),
|
|
config: path.join(appData, name, "Config"),
|
|
cache: path.join(localAppData, name, "Cache"),
|
|
log: path.join(localAppData, name, "Log"),
|
|
temp: path.join(tmpdir, name)
|
|
};
|
|
};
|
|
var linux = (name) => {
|
|
const username = path.basename(homedir);
|
|
return {
|
|
data: path.join(env.XDG_DATA_HOME || path.join(homedir, ".local", "share"), name),
|
|
config: path.join(env.XDG_CONFIG_HOME || path.join(homedir, ".config"), name),
|
|
cache: path.join(env.XDG_CACHE_HOME || path.join(homedir, ".cache"), name),
|
|
// https://wiki.debian.org/XDGBaseDirectorySpecification#state
|
|
log: path.join(env.XDG_STATE_HOME || path.join(homedir, ".local", "state"), name),
|
|
temp: path.join(tmpdir, username, name)
|
|
};
|
|
};
|
|
function envPaths(name, { suffix = "nodejs" } = {}) {
|
|
if (typeof name !== "string") {
|
|
throw new TypeError(`Expected a string, got ${typeof name}`);
|
|
}
|
|
if (suffix) {
|
|
name += `-${suffix}`;
|
|
}
|
|
if (process4.platform === "darwin") {
|
|
return macos(name);
|
|
}
|
|
if (process4.platform === "win32") {
|
|
return windows(name);
|
|
}
|
|
return linux(name);
|
|
}
|
|
|
|
// src/config.js
|
|
var HOME_DIR = os2.homedir();
|
|
var CONFIG_DIR = path2.join(HOME_DIR, ".webmcp");
|
|
var ensureConfigDir = async () => {
|
|
try {
|
|
await fs.mkdir(CONFIG_DIR, { recursive: true });
|
|
} catch (error2) {
|
|
console.error(`Error creating config directory at ${CONFIG_DIR}:`, error2);
|
|
}
|
|
};
|
|
var PID_FILE = path2.join(CONFIG_DIR, ".webmcp-server.pid");
|
|
var ENV_FILE = path2.join(CONFIG_DIR, ".env");
|
|
var TOKENS_FILE = path2.join(CONFIG_DIR, ".webmcp-tokens.json");
|
|
dotenv.config({ path: ENV_FILE });
|
|
var SERVER_TOKEN = process.env.WEBMCP_SERVER_TOKEN || "";
|
|
var HOST = "localhost";
|
|
var CONFIG = {};
|
|
function setConfig(args) {
|
|
Object.entries(args).forEach(([key, value]) => {
|
|
CONFIG[key] = value;
|
|
});
|
|
}
|
|
function formatChannel(channel) {
|
|
return `/${channel.replace(/[.:]/g, "_")}`;
|
|
}
|
|
async function exists(somePath) {
|
|
try {
|
|
await fs.access(somePath);
|
|
return true;
|
|
} catch (e) {
|
|
return false;
|
|
}
|
|
}
|
|
async function configureMcpClientWithPath(clientConfigPath) {
|
|
const directory = path2.dirname(clientConfigPath);
|
|
if (!await exists(directory)) {
|
|
await fs.mkdir(directory, { recursive: true });
|
|
}
|
|
const webmcpConfig = {
|
|
"webmcp": {
|
|
"command": "npx",
|
|
"args": [
|
|
"-y",
|
|
"@nucleoriofrio/webmcp@latest",
|
|
"--mcp"
|
|
]
|
|
}
|
|
};
|
|
let json2 = { mcpServers: {} };
|
|
if (await exists(clientConfigPath)) {
|
|
const rawJSON = await fs.readFile(clientConfigPath);
|
|
try {
|
|
json2 = JSON.parse(rawJSON);
|
|
} catch (e) {
|
|
throw new Error(`Failed to update MCP client configuration: ${e}`);
|
|
}
|
|
}
|
|
json2.mcpServers = { ...json2.mcpServers, ...webmcpConfig };
|
|
await fs.writeFile(clientConfigPath, JSON.stringify(json2, null, 2));
|
|
}
|
|
var availableClientConfigs = {
|
|
"claude": [envPaths("Claude", { suffix: "" }).data, "claude_desktop_config.json"],
|
|
"cline": [envPaths("Code", { suffix: "" }).data, "User", "globalStorage", "saoudrizwan.claude-dev", "settings", "cline_mcp_settings.json"],
|
|
"cursor": [HOME_DIR, ".cursor", "mcp.json"],
|
|
"windsurf": [HOME_DIR, ".codeium", "windsurf", "mcp_config.json"]
|
|
};
|
|
async function configureMcpClient(clientType) {
|
|
let clientConfigPath = availableClientConfigs[clientType];
|
|
if (clientConfigPath) {
|
|
await configureMcpClientWithPath(clientConfigPath);
|
|
} else {
|
|
console.error("Unsupported client - treating it like a path...");
|
|
await configureMcpClientWithPath(clientType);
|
|
}
|
|
}
|
|
|
|
// src/tokens.js
|
|
function generateToken() {
|
|
return crypto.randomBytes(16).toString("hex");
|
|
}
|
|
var authorizedTokens = {};
|
|
function getToken(channel) {
|
|
return authorizedTokens[channel];
|
|
}
|
|
function setToken(channel, value) {
|
|
authorizedTokens[channel] = value;
|
|
}
|
|
function deleteToken(channel) {
|
|
delete authorizedTokens[channel];
|
|
}
|
|
function clearTokens(channel) {
|
|
authorizedTokens = {};
|
|
}
|
|
async function loadAuthorizedTokens() {
|
|
try {
|
|
const data = await fs2.readFile(TOKENS_FILE, "utf8");
|
|
authorizedTokens = JSON.parse(data || "{}");
|
|
return true;
|
|
} catch (error2) {
|
|
if (error2.code === "ENOENT") {
|
|
authorizedTokens = {};
|
|
return true;
|
|
}
|
|
console.error("Error loading authorized tokens:", error2);
|
|
return false;
|
|
}
|
|
}
|
|
async function saveAuthorizedTokens() {
|
|
try {
|
|
const stringified = JSON.stringify(authorizedTokens, null, 2);
|
|
await fs2.writeFile(TOKENS_FILE, stringified, "utf8");
|
|
return true;
|
|
} catch (error2) {
|
|
console.error("Error saving authorized tokens:", error2);
|
|
return false;
|
|
}
|
|
}
|
|
async function saveServerTokenToEnv(token) {
|
|
try {
|
|
let envContent = "";
|
|
try {
|
|
envContent = await fs2.readFile(ENV_FILE, "utf8");
|
|
if (envContent.includes("WEBMCP_SERVER_TOKEN=")) {
|
|
envContent = envContent.replace(/WEBMCP_SERVER_TOKEN=.*(\r?\n|$)/g, `WEBMCP_SERVER_TOKEN=${token}$1`);
|
|
} else {
|
|
envContent += `
|
|
WEBMCP_SERVER_TOKEN=${token}
|
|
`;
|
|
}
|
|
} catch (err) {
|
|
envContent = `WEBMCP_SERVER_TOKEN=${token}
|
|
`;
|
|
}
|
|
await fs2.writeFile(ENV_FILE, envContent, "utf8");
|
|
console.error(`Server token saved to ${ENV_FILE}`);
|
|
return true;
|
|
} catch (error2) {
|
|
console.error("Error saving server token to .env file:", error2);
|
|
return false;
|
|
}
|
|
}
|
|
async function generateNewRegistrationToken() {
|
|
const token = generateToken();
|
|
const address = `${HOST}:${CONFIG.port}`;
|
|
const serverAddress = `ws://${address}`;
|
|
const connectionData = {
|
|
server: serverAddress,
|
|
token
|
|
};
|
|
const jsonStr = JSON.stringify(connectionData);
|
|
const encodedData = Buffer.from(jsonStr).toString("base64");
|
|
setToken(formatChannel(address), token);
|
|
await saveAuthorizedTokens();
|
|
return encodedData;
|
|
}
|
|
|
|
// src/server.js
|
|
import { execSync } from "child_process";
|
|
var mcpServer = new Server(
|
|
{
|
|
name: "@nucleoriofrio/webmcp",
|
|
version: "0.2.0"
|
|
},
|
|
{
|
|
capabilities: {
|
|
tools: {
|
|
listChanged: true
|
|
},
|
|
prompts: {
|
|
listChanged: true
|
|
},
|
|
resources: {
|
|
listChanged: true,
|
|
subscribe: true
|
|
},
|
|
sampling: {}
|
|
}
|
|
}
|
|
);
|
|
var wsClient = null;
|
|
var MCP_PATH = "/mcp";
|
|
var pendingRequests = /* @__PURE__ */ new Map();
|
|
var requestIdCounter = 1;
|
|
var toolListChangedTimer = null;
|
|
var promptListChangedTimer = null;
|
|
var resourceListChangedTimer = null;
|
|
var LIST_CHANGED_DEBOUNCE_MS = 500;
|
|
function debouncedToolListChanged() {
|
|
if (toolListChangedTimer) clearTimeout(toolListChangedTimer);
|
|
toolListChangedTimer = setTimeout(async () => {
|
|
toolListChangedTimer = null;
|
|
try {
|
|
await mcpServer.sendToolListChanged();
|
|
} catch (e) {
|
|
console.error("Error sending tool list changed:", e);
|
|
}
|
|
}, LIST_CHANGED_DEBOUNCE_MS);
|
|
}
|
|
function debouncedPromptListChanged() {
|
|
if (promptListChangedTimer) clearTimeout(promptListChangedTimer);
|
|
promptListChangedTimer = setTimeout(async () => {
|
|
promptListChangedTimer = null;
|
|
try {
|
|
await mcpServer.sendPromptListChanged();
|
|
} catch (e) {
|
|
console.error("Error sending prompt list changed:", e);
|
|
}
|
|
}, LIST_CHANGED_DEBOUNCE_MS);
|
|
}
|
|
function debouncedResourceListChanged() {
|
|
if (resourceListChangedTimer) clearTimeout(resourceListChangedTimer);
|
|
resourceListChangedTimer = setTimeout(async () => {
|
|
resourceListChangedTimer = null;
|
|
try {
|
|
await mcpServer.sendResourceListChanged();
|
|
} catch (e) {
|
|
console.error("Error sending resource list changed:", e);
|
|
}
|
|
}, LIST_CHANGED_DEBOUNCE_MS);
|
|
}
|
|
async function handleWebSocketMessage(message) {
|
|
try {
|
|
const data = JSON.parse(message);
|
|
console.error(`Received message: ${data.type}`);
|
|
if (data.type === "toolResponse") {
|
|
const { id, result, error: error2 } = data;
|
|
if (pendingRequests.has(id)) {
|
|
const { resolve, reject } = pendingRequests.get(id);
|
|
pendingRequests.delete(id);
|
|
if (error2) {
|
|
reject(new Error(error2));
|
|
} else {
|
|
resolve(result);
|
|
}
|
|
} else {
|
|
console.error(`No pending request found for ID: ${id}`);
|
|
}
|
|
} else if (data.type === "promptResponse") {
|
|
const { id, result, error: error2 } = data;
|
|
if (pendingRequests.has(id)) {
|
|
const { resolve, reject } = pendingRequests.get(id);
|
|
pendingRequests.delete(id);
|
|
if (error2) {
|
|
reject(new Error(error2));
|
|
} else {
|
|
resolve(result);
|
|
}
|
|
} else {
|
|
console.error(`No pending request found for ID: ${id}`);
|
|
}
|
|
} else if (data.type === "resourceResponse") {
|
|
const { id, result, error: error2 } = data;
|
|
if (pendingRequests.has(id)) {
|
|
const { resolve, reject } = pendingRequests.get(id);
|
|
pendingRequests.delete(id);
|
|
if (error2) {
|
|
reject(new Error(error2));
|
|
} else {
|
|
resolve(result);
|
|
}
|
|
} else {
|
|
console.error(`No pending request found for ID: ${id}`);
|
|
}
|
|
} else if (data.type === "samplingResponse") {
|
|
const { id, result, error: error2 } = data;
|
|
if (pendingRequests.has(id)) {
|
|
const { resolve, reject } = pendingRequests.get(id);
|
|
pendingRequests.delete(id);
|
|
if (error2) {
|
|
reject(new Error(error2));
|
|
} else {
|
|
resolve(result);
|
|
}
|
|
} else {
|
|
console.error(`No pending request found for ID: ${id}`);
|
|
}
|
|
} else if (data.type === "listToolsResponse") {
|
|
const { id, tools, error: error2 } = data;
|
|
if (pendingRequests.has(id)) {
|
|
const { resolve, reject } = pendingRequests.get(id);
|
|
pendingRequests.delete(id);
|
|
if (error2) {
|
|
reject(new Error(error2));
|
|
} else {
|
|
resolve(tools);
|
|
}
|
|
} else {
|
|
console.error(`No pending request found for ID: ${id}`);
|
|
}
|
|
} else if (data.type === "listPromptsResponse") {
|
|
const { id, prompts, error: error2 } = data;
|
|
if (pendingRequests.has(id)) {
|
|
const { resolve, reject } = pendingRequests.get(id);
|
|
pendingRequests.delete(id);
|
|
if (error2) {
|
|
reject(new Error(error2));
|
|
} else {
|
|
resolve(prompts);
|
|
}
|
|
} else {
|
|
console.error(`No pending request found for ID: ${id}`);
|
|
}
|
|
} else if (data.type === "listResourcesResponse") {
|
|
const { id, resources, resourceTemplates, error: error2 } = data;
|
|
if (pendingRequests.has(id)) {
|
|
const { resolve, reject } = pendingRequests.get(id);
|
|
pendingRequests.delete(id);
|
|
if (error2) {
|
|
reject(new Error(error2));
|
|
} else {
|
|
resolve({ resources, resourceTemplates });
|
|
}
|
|
} else {
|
|
console.error(`No pending request found for ID: ${id}`);
|
|
}
|
|
} else if (data.type === "toolRegistered") {
|
|
debouncedToolListChanged();
|
|
} else if (data.type === "resourceRegistered") {
|
|
debouncedResourceListChanged();
|
|
} else if (data.type === "promptRegistered") {
|
|
debouncedPromptListChanged();
|
|
} else if (data.type === "welcome") {
|
|
console.error(`Connected to path: ${data.channel}`);
|
|
} else if (data.type === "pong") {
|
|
console.error(`Received pong with timestamp: ${data.timestamp}`);
|
|
} else if (data.type === "error") {
|
|
console.error(`Received error: ${data.message}`);
|
|
}
|
|
} catch (error2) {
|
|
console.error("Error processing WebSocket message:", error2);
|
|
}
|
|
}
|
|
function connectToWebSocketServer(serverToken2) {
|
|
const serverUrl = `ws://localhost:${CONFIG.port}${MCP_PATH}?token=${serverToken2}`;
|
|
console.error(`Connecting to WebSocket server at ${MCP_PATH} with authentication...`);
|
|
wsClient = new wrapper_default(serverUrl);
|
|
wsClient.on("open", () => {
|
|
console.error(`Connected to WebSocket server on path: ${MCP_PATH}`);
|
|
});
|
|
wsClient.on("message", (message) => {
|
|
handleWebSocketMessage(message);
|
|
});
|
|
wsClient.on("close", (code, reason) => {
|
|
console.error(`WebSocket connection closed: ${code} ${reason}`);
|
|
wsClient = null;
|
|
setTimeout(connectToWebSocketServer, 5e3);
|
|
});
|
|
wsClient.on("error", (error2) => {
|
|
console.error("WebSocket connection error:", error2);
|
|
});
|
|
}
|
|
function sendMessage(message) {
|
|
if (!wsClient || wsClient.readyState !== wrapper_default.OPEN) {
|
|
console.error("Cannot send message: WebSocket not connected");
|
|
return Promise.reject(new Error("WebSocket not connected"));
|
|
}
|
|
try {
|
|
wsClient.send(JSON.stringify(message));
|
|
return Promise.resolve();
|
|
} catch (error2) {
|
|
console.error("Error sending message:", error2);
|
|
return Promise.reject(error2);
|
|
}
|
|
}
|
|
mcpServer.setRequestHandler(CallToolRequestSchema, async (request) => {
|
|
if (request.params.name === "_webmcp_get-token") {
|
|
const token = await generateNewRegistrationToken();
|
|
try {
|
|
execSync("clip.exe", { input: token, stdio: ["pipe", "ignore", "ignore"] });
|
|
} catch (e) {
|
|
try {
|
|
execSync("xclip -selection clipboard", { input: token, stdio: ["pipe", "ignore", "ignore"] });
|
|
} catch (e2) {
|
|
}
|
|
}
|
|
try {
|
|
await sendMessage({
|
|
type: "clipboardCopy",
|
|
text: token
|
|
});
|
|
} catch (e) {
|
|
}
|
|
return {
|
|
content: [{
|
|
type: "text",
|
|
text: `Token copiado al portapapeles.
|
|
${token}`
|
|
}]
|
|
};
|
|
}
|
|
if (request.params.name === "_webmcp_clear-cache") {
|
|
if (!wsClient || wsClient.readyState !== wrapper_default.OPEN) {
|
|
return { content: [{ type: "text", text: "No hay conexion al servidor WebSocket" }], isError: true };
|
|
}
|
|
const requestId2 = (requestIdCounter++).toString();
|
|
const responsePromise2 = new Promise((resolve, reject) => {
|
|
pendingRequests.set(requestId2, { resolve, reject });
|
|
setTimeout(() => {
|
|
if (pendingRequests.has(requestId2)) {
|
|
pendingRequests.delete(requestId2);
|
|
reject(new Error("Clear cache timeout"));
|
|
}
|
|
}, 1e4);
|
|
});
|
|
try {
|
|
await sendMessage({ id: requestId2, type: "clearRegistry" });
|
|
const result = await responsePromise2;
|
|
await mcpServer.sendToolListChanged();
|
|
await mcpServer.sendPromptListChanged();
|
|
await mcpServer.sendResourceListChanged();
|
|
return { content: [{ type: "text", text: result }] };
|
|
} catch (e) {
|
|
return { content: [{ type: "text", text: `Error: ${e.message}` }], isError: true };
|
|
}
|
|
}
|
|
if (request.params.name === "_webmcp_browser-info") {
|
|
if (!wsClient || wsClient.readyState !== wrapper_default.OPEN) {
|
|
return { content: [{ type: "text", text: "No hay conexion al servidor WebSocket" }], isError: true };
|
|
}
|
|
const requestId2 = (requestIdCounter++).toString();
|
|
const responsePromise2 = new Promise((resolve, reject) => {
|
|
pendingRequests.set(requestId2, { resolve, reject });
|
|
setTimeout(() => {
|
|
if (pendingRequests.has(requestId2)) {
|
|
pendingRequests.delete(requestId2);
|
|
reject(new Error("Timeout obteniendo info de navegadores"));
|
|
}
|
|
}, 1e4);
|
|
});
|
|
try {
|
|
await sendMessage({ id: requestId2, type: "getClientInfo" });
|
|
const result = await responsePromise2;
|
|
return result;
|
|
} catch (e) {
|
|
return { content: [{ type: "text", text: `Error: ${e.message}` }], isError: true };
|
|
}
|
|
}
|
|
if (request.params.name === "_webmcp_agregar-tool") {
|
|
if (!CONFIG.dev) {
|
|
return { content: [{ type: "text", text: "agregar-tool solo esta disponible en modo desarrollo (--dev)" }], isError: true };
|
|
}
|
|
if (!wsClient || wsClient.readyState !== wrapper_default.OPEN) {
|
|
return { content: [{ type: "text", text: "No hay conexion al servidor WebSocket" }], isError: true };
|
|
}
|
|
const { nombre, descripcion, codigo, parametros } = request.params.arguments;
|
|
if (!nombre || !descripcion || !codigo) {
|
|
return { content: [{ type: "text", text: "Se requieren: nombre, descripcion y codigo" }], isError: true };
|
|
}
|
|
const requestId2 = (requestIdCounter++).toString();
|
|
const responsePromise2 = new Promise((resolve, reject) => {
|
|
pendingRequests.set(requestId2, { resolve, reject });
|
|
setTimeout(() => {
|
|
if (pendingRequests.has(requestId2)) {
|
|
pendingRequests.delete(requestId2);
|
|
reject(new Error("Timeout creando herramienta"));
|
|
}
|
|
}, 15e3);
|
|
});
|
|
try {
|
|
await sendMessage({
|
|
id: requestId2,
|
|
type: "createTool",
|
|
name: nombre,
|
|
description: descripcion,
|
|
code: codigo,
|
|
parametros
|
|
});
|
|
const result = await responsePromise2;
|
|
await mcpServer.sendToolListChanged();
|
|
return result;
|
|
} catch (e) {
|
|
return { content: [{ type: "text", text: `Error: ${e.message}` }], isError: true };
|
|
}
|
|
}
|
|
if (request.params.name === "_webmcp_quitar-tool") {
|
|
if (!CONFIG.dev) {
|
|
return { content: [{ type: "text", text: "quitar-tool solo esta disponible en modo desarrollo (--dev)" }], isError: true };
|
|
}
|
|
if (!wsClient || wsClient.readyState !== wrapper_default.OPEN) {
|
|
return { content: [{ type: "text", text: "No hay conexion al servidor WebSocket" }], isError: true };
|
|
}
|
|
const { nombre, listar, todas } = request.params.arguments || {};
|
|
const requestId2 = (requestIdCounter++).toString();
|
|
const responsePromise2 = new Promise((resolve, reject) => {
|
|
pendingRequests.set(requestId2, { resolve, reject });
|
|
setTimeout(() => {
|
|
if (pendingRequests.has(requestId2)) {
|
|
pendingRequests.delete(requestId2);
|
|
reject(new Error("Timeout"));
|
|
}
|
|
}, 1e4);
|
|
});
|
|
try {
|
|
await sendMessage({
|
|
id: requestId2,
|
|
type: "removeTool",
|
|
name: nombre,
|
|
listar: !!listar,
|
|
todas: !!todas
|
|
});
|
|
const result = await responsePromise2;
|
|
await mcpServer.sendToolListChanged();
|
|
return result;
|
|
} catch (e) {
|
|
return { content: [{ type: "text", text: `Error: ${e.message}` }], isError: true };
|
|
}
|
|
}
|
|
if (request.params.name === "_webmcp_server-info") {
|
|
if (!CONFIG.dev) {
|
|
return { content: [{ type: "text", text: "server-info solo esta disponible en modo desarrollo (--dev)" }], isError: true };
|
|
}
|
|
if (!wsClient || wsClient.readyState !== wrapper_default.OPEN) {
|
|
return { content: [{ type: "text", text: "No hay conexion al servidor WebSocket" }], isError: true };
|
|
}
|
|
const requestId2 = (requestIdCounter++).toString();
|
|
const responsePromise2 = new Promise((resolve, reject) => {
|
|
pendingRequests.set(requestId2, { resolve, reject });
|
|
setTimeout(() => {
|
|
if (pendingRequests.has(requestId2)) {
|
|
pendingRequests.delete(requestId2);
|
|
reject(new Error("Timeout obteniendo info del servidor"));
|
|
}
|
|
}, 1e4);
|
|
});
|
|
try {
|
|
await sendMessage({ id: requestId2, type: "getServerInfo" });
|
|
const result = await responsePromise2;
|
|
return result;
|
|
} catch (e) {
|
|
return { content: [{ type: "text", text: `Error: ${e.message}` }], isError: true };
|
|
}
|
|
}
|
|
if (!wsClient || wsClient.readyState !== wrapper_default.OPEN) {
|
|
return {
|
|
content: [{
|
|
type: "text",
|
|
text: "Not connected to WebSocket server"
|
|
}],
|
|
isError: true
|
|
};
|
|
}
|
|
const requestId = (requestIdCounter++).toString();
|
|
const responsePromise = new Promise((resolve, reject) => {
|
|
pendingRequests.set(requestId, { resolve, reject });
|
|
setTimeout(() => {
|
|
if (pendingRequests.has(requestId)) {
|
|
pendingRequests.delete(requestId);
|
|
reject(new Error(`Tool call timed out: ${request.params.name}`));
|
|
}
|
|
}, 3e4);
|
|
});
|
|
try {
|
|
await sendMessage({
|
|
id: requestId,
|
|
type: "callTool",
|
|
tool: request.params.name,
|
|
arguments: request.params.arguments
|
|
});
|
|
return await responsePromise;
|
|
} catch (error2) {
|
|
return {
|
|
content: [{
|
|
type: "text",
|
|
text: `Error: ${error2.message}`
|
|
}],
|
|
isError: true
|
|
};
|
|
}
|
|
});
|
|
mcpServer.setRequestHandler(ListToolsRequestSchema, async () => {
|
|
const builtInTools = [
|
|
{
|
|
name: "_webmcp_get-token",
|
|
description: "Genera un token de conexion para vincular un navegador con @nucleoriofrio/webmcp. El usuario puede decir 'registrar token' o 'conectar webmcp'.",
|
|
inputSchema: {
|
|
type: "object",
|
|
properties: {}
|
|
}
|
|
},
|
|
{
|
|
name: "_webmcp_clear-cache",
|
|
description: "Limpia todas las herramientas, prompts y recursos registrados en el cache del servidor @nucleoriofrio/webmcp. Usar para forzar un estado limpio.",
|
|
inputSchema: {
|
|
type: "object",
|
|
properties: {}
|
|
}
|
|
},
|
|
{
|
|
name: "_webmcp_browser-info",
|
|
description: "Muestra informacion de los navegadores conectados: user agent, URL, hostname, idioma, resolucion y tiempo de conexion.",
|
|
inputSchema: {
|
|
type: "object",
|
|
properties: {}
|
|
}
|
|
}
|
|
];
|
|
if (CONFIG.dev) {
|
|
builtInTools.push(
|
|
{
|
|
name: "_webmcp_agregar-tool",
|
|
description: "[DEV] Registra una nueva herramienta dinamicamente. El agente puede usar esto para crear herramientas nuevas en tiempo real.",
|
|
inputSchema: {
|
|
type: "object",
|
|
properties: {
|
|
nombre: { type: "string", description: "Nombre de la herramienta" },
|
|
descripcion: { type: "string", description: "Descripcion de lo que hace" },
|
|
parametros: { type: "string", description: 'JSON string con las properties del schema, ej: {"msg":{"type":"string","description":"mensaje"}}' },
|
|
codigo: { type: "string", description: 'Codigo JavaScript del body de la funcion. Recibe "args" como parametro. Debe retornar un string.' }
|
|
},
|
|
required: ["nombre", "descripcion", "codigo"]
|
|
}
|
|
},
|
|
{
|
|
name: "_webmcp_quitar-tool",
|
|
description: "[DEV] Desregistra herramientas. Usa listar=true para ver las disponibles, todas=true para quitar todas, o nombre para quitar una especifica.",
|
|
inputSchema: {
|
|
type: "object",
|
|
properties: {
|
|
nombre: { type: "string", description: "Nombre de la herramienta a quitar" },
|
|
listar: { type: "boolean", description: "Si es true, lista las herramientas en vez de quitar" },
|
|
todas: { type: "boolean", description: "Si es true, quita todas las herramientas" }
|
|
}
|
|
}
|
|
},
|
|
{
|
|
name: "_webmcp_server-info",
|
|
description: "[DEV] Muestra estado del servidor @nucleoriofrio/webmcp: version, commit, host, puerto, canales activos, clientes, registry de tools/prompts/resources, uptime y requests pendientes.",
|
|
inputSchema: {
|
|
type: "object",
|
|
properties: {}
|
|
}
|
|
}
|
|
);
|
|
}
|
|
if (!wsClient || wsClient.readyState !== wrapper_default.OPEN) {
|
|
return { tools: builtInTools };
|
|
}
|
|
const requestId = (requestIdCounter++).toString();
|
|
const responsePromise = new Promise((resolve, reject) => {
|
|
pendingRequests.set(requestId, { resolve, reject });
|
|
setTimeout(() => {
|
|
if (pendingRequests.has(requestId)) {
|
|
pendingRequests.delete(requestId);
|
|
reject(new Error("List tools request timed out"));
|
|
}
|
|
}, 1e4);
|
|
});
|
|
try {
|
|
await sendMessage({
|
|
id: requestId,
|
|
type: "listTools"
|
|
});
|
|
const tools = await responsePromise;
|
|
return { tools: [...tools, ...builtInTools] };
|
|
} catch (error2) {
|
|
console.error("Error listing tools:", error2);
|
|
return { tools: [] };
|
|
}
|
|
});
|
|
mcpServer.setRequestHandler(ListPromptsRequestSchema, async () => {
|
|
const builtInPrompts = [];
|
|
if (!wsClient || wsClient.readyState !== wrapper_default.OPEN) {
|
|
return {
|
|
prompts: builtInPrompts
|
|
};
|
|
}
|
|
const requestId = (requestIdCounter++).toString();
|
|
const responsePromise = new Promise((resolve, reject) => {
|
|
pendingRequests.set(requestId, { resolve, reject });
|
|
setTimeout(() => {
|
|
if (pendingRequests.has(requestId)) {
|
|
pendingRequests.delete(requestId);
|
|
reject(new Error("List prompts request timed out"));
|
|
}
|
|
}, 1e4);
|
|
});
|
|
try {
|
|
await sendMessage({
|
|
id: requestId,
|
|
type: "listPrompts"
|
|
});
|
|
const prompts = await responsePromise;
|
|
return {
|
|
prompts: [
|
|
...prompts,
|
|
...builtInPrompts
|
|
]
|
|
};
|
|
} catch (error2) {
|
|
console.error("Error listing prompts:", error2);
|
|
return { prompts: [] };
|
|
}
|
|
});
|
|
mcpServer.setRequestHandler(GetPromptRequestSchema, async (request) => {
|
|
if (!wsClient || wsClient.readyState !== wrapper_default.OPEN) {
|
|
throw new Error("Not connected to WebSocket server");
|
|
}
|
|
const requestId = (requestIdCounter++).toString();
|
|
const responsePromise = new Promise((resolve, reject) => {
|
|
pendingRequests.set(requestId, { resolve, reject });
|
|
setTimeout(() => {
|
|
if (pendingRequests.has(requestId)) {
|
|
pendingRequests.delete(requestId);
|
|
reject(new Error(`Get prompt request timed out: ${request.params.name}`));
|
|
}
|
|
}, 3e4);
|
|
});
|
|
try {
|
|
await sendMessage({
|
|
id: requestId,
|
|
type: "getPrompt",
|
|
name: request.params.name,
|
|
arguments: request.params.arguments
|
|
});
|
|
return await responsePromise;
|
|
} catch (error2) {
|
|
console.error("Error getting prompt:", error2);
|
|
throw error2;
|
|
}
|
|
});
|
|
mcpServer.setRequestHandler(ListResourcesRequestSchema, async () => {
|
|
if (!wsClient || wsClient.readyState !== wrapper_default.OPEN) {
|
|
return { resources: [] };
|
|
}
|
|
const requestId = (requestIdCounter++).toString();
|
|
const responsePromise = new Promise((resolve, reject) => {
|
|
pendingRequests.set(requestId, { resolve, reject });
|
|
setTimeout(() => {
|
|
if (pendingRequests.has(requestId)) {
|
|
pendingRequests.delete(requestId);
|
|
reject(new Error("List resources request timed out"));
|
|
}
|
|
}, 1e4);
|
|
});
|
|
try {
|
|
await sendMessage({
|
|
id: requestId,
|
|
type: "listResources"
|
|
});
|
|
const { resources } = await responsePromise;
|
|
return { resources };
|
|
} catch (error2) {
|
|
console.error("Error listing resources:", error2);
|
|
return { resources: [] };
|
|
}
|
|
});
|
|
mcpServer.setRequestHandler(ListResourceTemplatesRequestSchema, async () => {
|
|
if (!wsClient || wsClient.readyState !== wrapper_default.OPEN) {
|
|
return { resourceTemplates: [] };
|
|
}
|
|
const requestId = (requestIdCounter++).toString();
|
|
const responsePromise = new Promise((resolve, reject) => {
|
|
pendingRequests.set(requestId, { resolve, reject });
|
|
setTimeout(() => {
|
|
if (pendingRequests.has(requestId)) {
|
|
pendingRequests.delete(requestId);
|
|
reject(new Error("List resource templates request timed out"));
|
|
}
|
|
}, 1e4);
|
|
});
|
|
try {
|
|
await sendMessage({
|
|
id: requestId,
|
|
type: "listResources"
|
|
});
|
|
const { resourceTemplates } = await responsePromise;
|
|
return { resourceTemplates };
|
|
} catch (error2) {
|
|
console.error("Error listing resource templates:", error2);
|
|
return { resourceTemplates: [] };
|
|
}
|
|
});
|
|
mcpServer.setRequestHandler(ReadResourceRequestSchema, async (request) => {
|
|
if (!wsClient || wsClient.readyState !== wrapper_default.OPEN) {
|
|
throw new Error("Not connected to WebSocket server");
|
|
}
|
|
const requestId = (requestIdCounter++).toString();
|
|
const responsePromise = new Promise((resolve, reject) => {
|
|
pendingRequests.set(requestId, { resolve, reject });
|
|
setTimeout(() => {
|
|
if (pendingRequests.has(requestId)) {
|
|
pendingRequests.delete(requestId);
|
|
reject(new Error(`Read resource request timed out: ${request.params.uri}`));
|
|
}
|
|
}, 3e4);
|
|
});
|
|
try {
|
|
await sendMessage({
|
|
id: requestId,
|
|
type: "readResource",
|
|
uri: request.params.uri
|
|
});
|
|
return await responsePromise;
|
|
} catch (error2) {
|
|
console.error("Error reading resource:", error2);
|
|
throw error2;
|
|
}
|
|
});
|
|
mcpServer.setRequestHandler(CreateMessageRequestSchema, async (request) => {
|
|
if (!wsClient || wsClient.readyState !== wrapper_default.OPEN) {
|
|
throw new Error("Not connected to WebSocket server");
|
|
}
|
|
const requestId = (requestIdCounter++).toString();
|
|
const responsePromise = new Promise((resolve, reject) => {
|
|
pendingRequests.set(requestId, { resolve, reject });
|
|
setTimeout(() => {
|
|
if (pendingRequests.has(requestId)) {
|
|
pendingRequests.delete(requestId);
|
|
reject(new Error(`Sampling request timed out`));
|
|
}
|
|
}, 12e4);
|
|
});
|
|
try {
|
|
await sendMessage({
|
|
id: requestId,
|
|
type: "createSamplingMessage",
|
|
messages: request.params.messages,
|
|
systemPrompt: request.params.systemPrompt,
|
|
includeContext: request.params.includeContext,
|
|
temperature: request.params.temperature,
|
|
maxTokens: request.params.maxTokens,
|
|
stopSequences: request.params.stopSequences,
|
|
metadata: request.params.metadata,
|
|
modelPreferences: request.params.modelPreferences
|
|
});
|
|
return await responsePromise;
|
|
} catch (error2) {
|
|
console.error("Error creating sampling message:", error2);
|
|
throw error2;
|
|
}
|
|
});
|
|
async function runMcpServer(serverToken2) {
|
|
connectToWebSocketServer(serverToken2);
|
|
const transport = new StdioServerTransport();
|
|
await mcpServer.connect(transport);
|
|
console.error("@nucleoriofrio/webmcp v0.2.0 \u2014 MCP server running with stdio transport");
|
|
if (CONFIG.dev) {
|
|
console.error("[DEV] Modo desarrollo activo \u2014 agregar-tool y quitar-tool habilitados");
|
|
}
|
|
}
|
|
|
|
// src/websocket-server.js
|
|
var serverToken = SERVER_TOKEN;
|
|
var httpServer = createServer(async (req, res) => {
|
|
res.setHeader("Access-Control-Allow-Origin", "*");
|
|
res.setHeader("Access-Control-Allow-Methods", "GET, POST, OPTIONS");
|
|
res.setHeader("Access-Control-Allow-Headers", "Content-Type, Authorization");
|
|
if (req.method === "OPTIONS") {
|
|
res.writeHead(204);
|
|
res.end();
|
|
return;
|
|
}
|
|
const url2 = new URL(`http://${HOST}${req.url}`);
|
|
if (url2.pathname === "/token" && req.method === "POST") {
|
|
try {
|
|
const token = await generateNewRegistrationToken();
|
|
res.writeHead(200, { "Content-Type": "application/json" });
|
|
res.end(JSON.stringify({
|
|
success: true,
|
|
token
|
|
}));
|
|
} catch (error2) {
|
|
console.error("Error generating token:", error2);
|
|
res.writeHead(500, { "Content-Type": "application/json" });
|
|
res.end(JSON.stringify({ error: "Failed to generate token" }));
|
|
}
|
|
return;
|
|
}
|
|
if (url2.pathname === "/status" && req.method === "GET") {
|
|
res.writeHead(200, { "Content-Type": "application/json" });
|
|
res.end(JSON.stringify({
|
|
status: "running",
|
|
clients: wss.clients.size,
|
|
version: "0.2.0"
|
|
}));
|
|
return;
|
|
}
|
|
res.writeHead(200, { "Content-Type": "text/plain" });
|
|
res.end("MCP WebSocket server is running");
|
|
});
|
|
var wss = new import_websocket_server.default({
|
|
server: httpServer,
|
|
clientTracking: true,
|
|
verifyClient: verifyClientToken
|
|
});
|
|
var channels = {};
|
|
var clientMetadata = /* @__PURE__ */ new Map();
|
|
var MCP_PATH2 = "/mcp";
|
|
var REGISTER_PATH = "/register";
|
|
function sendNotification(clientWs, channelPath, notificationType, data, mcpOnly = false) {
|
|
if (clientWs && clientWs.readyState === import_websocket.default.OPEN) {
|
|
if (!mcpOnly) {
|
|
clientWs.send(JSON.stringify({
|
|
type: notificationType,
|
|
...data
|
|
}));
|
|
}
|
|
}
|
|
if (channels[MCP_PATH2] && channels[MCP_PATH2].size > 0) {
|
|
try {
|
|
for (const mcpClient of channels[MCP_PATH2]) {
|
|
if (mcpClient && mcpClient.readyState === import_websocket.default.OPEN) {
|
|
const mcpData = { ...data };
|
|
if (mcpData.name && channelPath) {
|
|
mcpData.name = `${channelPath.slice(1)}-${mcpData.name}`;
|
|
}
|
|
mcpClient.send(JSON.stringify({
|
|
type: notificationType,
|
|
...mcpData
|
|
}));
|
|
}
|
|
}
|
|
} catch (e) {
|
|
console.error("Error sending notification to MCP:", e.message);
|
|
}
|
|
}
|
|
}
|
|
var toolsRegistry = {};
|
|
var promptsRegistry = {};
|
|
var resourcesRegistry = {};
|
|
var serverStartTime = Date.now();
|
|
var gitCommit = "unknown";
|
|
try {
|
|
gitCommit = execSync2("git rev-parse --short HEAD", { stdio: ["pipe", "pipe", "ignore"] }).toString().trim();
|
|
} catch (e) {
|
|
}
|
|
var requestIdCounter2 = 1;
|
|
var pendingRequests2 = {};
|
|
async function verifyClientToken(info, callback) {
|
|
const url2 = new URL(`https://${HOST}${info.req.url}`);
|
|
const clientToken = url2.searchParams.get("token");
|
|
const path3 = url2.pathname || "/";
|
|
if (path3 === MCP_PATH2) {
|
|
if (clientToken === process.env.WEBMCP_SERVER_TOKEN) {
|
|
return callback(true);
|
|
}
|
|
console.error("Invalid MCP token provided");
|
|
return callback(false, 401, "Unauthorized - Invalid MCP token");
|
|
}
|
|
if (path3 === REGISTER_PATH) {
|
|
return callback(true);
|
|
}
|
|
if (!clientToken) {
|
|
console.error("No token provided for path:", path3);
|
|
return callback(false, 401, "Unauthorized - No token provided");
|
|
}
|
|
await loadAuthorizedTokens();
|
|
if (getToken(path3) === clientToken) {
|
|
return callback(true);
|
|
}
|
|
console.error(`Unauthorized connection attempt to ${path3}`);
|
|
return callback(false, 401, "Unauthorized - Invalid channel-token pair");
|
|
}
|
|
function getOrCreateChannel(channelPath) {
|
|
if (!channels[channelPath]) {
|
|
channels[channelPath] = /* @__PURE__ */ new Set();
|
|
console.error(`Created new channel for path: ${channelPath}`);
|
|
} else if (channels[channelPath].closeTimeout) {
|
|
clearTimeout(channels[channelPath].closeTimeout);
|
|
delete channels[channelPath].closeTimeout;
|
|
console.error(`Cancelled channel closure for ${channelPath} as a new client connected`);
|
|
}
|
|
return channels[channelPath];
|
|
}
|
|
wss.on("connection", (ws, req) => {
|
|
const parsedUrl = parse3(req.url);
|
|
const path3 = parsedUrl.pathname;
|
|
const clientChannel = path3 || "/";
|
|
console.error(`Client connected from ${req.socket.remoteAddress} to path: ${clientChannel}`);
|
|
if (clientChannel === REGISTER_PATH) {
|
|
console.error(`Registration request received from ${req.socket.remoteAddress}`);
|
|
let registrationTimeout = setTimeout(() => {
|
|
console.error("Registration timeout - closing connection");
|
|
ws.close(1008, "Registration timeout");
|
|
}, 3e4);
|
|
ws.once("message", async (message) => {
|
|
clearTimeout(registrationTimeout);
|
|
try {
|
|
const encodedData = message.toString();
|
|
const decodedJson = Buffer.from(encodedData, "base64").toString("utf8");
|
|
const connectionData = JSON.parse(decodedJson);
|
|
const { host, token } = connectionData;
|
|
if (!token) {
|
|
console.error("Invalid registration data format - missing token");
|
|
ws.send(JSON.stringify({
|
|
type: "error",
|
|
message: "Invalid registration data format - missing token"
|
|
}));
|
|
ws.close(1008, "Invalid registration data");
|
|
return;
|
|
}
|
|
const channelPath = formatChannel(host);
|
|
if (!token || token.length < 16) {
|
|
console.error("Invalid token provided");
|
|
ws.send(JSON.stringify({
|
|
type: "error",
|
|
message: "Invalid token provided"
|
|
}));
|
|
ws.close(1008, "Invalid token");
|
|
return;
|
|
}
|
|
const serverChannel = formatChannel(`${HOST}:${CONFIG.port}`);
|
|
await loadAuthorizedTokens();
|
|
if (token !== getToken(serverChannel)) {
|
|
console.error("Invalid token provided");
|
|
ws.send(JSON.stringify({
|
|
type: "error",
|
|
message: "Invalid token provided"
|
|
}));
|
|
ws.close(1008, "Invalid token");
|
|
return;
|
|
}
|
|
deleteToken(serverChannel);
|
|
const sessionToken = generateToken();
|
|
setToken(channelPath, sessionToken);
|
|
await saveAuthorizedTokens();
|
|
ws.send(JSON.stringify({
|
|
type: "registerSuccess",
|
|
channel: channelPath,
|
|
message: `Registration successful for ${channelPath}`,
|
|
token: sessionToken
|
|
}));
|
|
console.error(`Registered channel: ${channelPath} with token: ${token}`);
|
|
ws.close(1e3, "Registration complete");
|
|
} catch (error2) {
|
|
console.error("Registration error:", error2);
|
|
ws.send(JSON.stringify({
|
|
type: "error",
|
|
message: "Registration error"
|
|
}));
|
|
ws.close(1011, "Registration error");
|
|
}
|
|
});
|
|
return;
|
|
}
|
|
const channel = getOrCreateChannel(clientChannel);
|
|
channel.add(ws);
|
|
ws.send(JSON.stringify({
|
|
type: "welcome",
|
|
channel: clientChannel,
|
|
message: `Connected to path: ${clientChannel}`
|
|
}));
|
|
ws.on("message", (message) => {
|
|
try {
|
|
const data = JSON.parse(message);
|
|
console.error(`Received message: ${data.type} on ${clientChannel}`);
|
|
switch (data.type) {
|
|
case "ping":
|
|
handlePing(ws, data);
|
|
break;
|
|
case "registerTool":
|
|
handleRegisterTool(ws, clientChannel, data);
|
|
break;
|
|
case "registerPrompt":
|
|
handleRegisterPrompt(ws, clientChannel, data);
|
|
break;
|
|
case "registerResource":
|
|
handleRegisterResource(ws, clientChannel, data);
|
|
break;
|
|
case "unregisterTool":
|
|
handleUnregisterTool(ws, clientChannel, data);
|
|
break;
|
|
case "unregisterPrompt":
|
|
handleUnregisterPrompt(ws, clientChannel, data);
|
|
break;
|
|
case "unregisterResource":
|
|
handleUnregisterResource(ws, clientChannel, data);
|
|
break;
|
|
case "unregisterAllTools":
|
|
handleUnregisterAllTools(ws, clientChannel);
|
|
break;
|
|
case "listTools":
|
|
handleListTools(ws, clientChannel, data);
|
|
break;
|
|
case "listPrompts":
|
|
handleListPrompts(ws, clientChannel, data);
|
|
break;
|
|
case "listResources":
|
|
handleListResources(ws, clientChannel, data);
|
|
break;
|
|
case "callTool":
|
|
handleCallTool(ws, clientChannel, data);
|
|
break;
|
|
case "getPrompt":
|
|
handleGetPrompt(ws, clientChannel, data);
|
|
break;
|
|
case "readResource":
|
|
handleReadResource(ws, clientChannel, data);
|
|
break;
|
|
case "createSamplingMessage":
|
|
handleCreateSamplingMessage(ws, clientChannel, data);
|
|
break;
|
|
case "toolResponse":
|
|
handleToolResponse(data);
|
|
break;
|
|
case "promptResponse":
|
|
handlePromptResponse(data);
|
|
break;
|
|
case "resourceResponse":
|
|
handleResourceResponse(data);
|
|
break;
|
|
case "samplingResponse":
|
|
handleSamplingResponse(data);
|
|
break;
|
|
case "clipboardCopy":
|
|
handleClipboardCopy(data);
|
|
break;
|
|
case "clientInfo":
|
|
handleClientInfo(ws, data);
|
|
break;
|
|
case "clientInfoResponse":
|
|
handleToolResponse(data);
|
|
break;
|
|
case "getClientInfo":
|
|
handleGetClientInfo(ws, clientChannel, data);
|
|
break;
|
|
case "getServerInfo":
|
|
handleGetServerInfo(ws, data);
|
|
break;
|
|
case "clearRegistry":
|
|
handleClearRegistry(ws, data);
|
|
break;
|
|
case "createTool":
|
|
handleCreateTool(ws, data);
|
|
break;
|
|
case "removeTool":
|
|
handleRemoveTool(ws, data);
|
|
break;
|
|
default:
|
|
ws.send(JSON.stringify({
|
|
type: "error",
|
|
message: `Unknown message type: ${data.type}`
|
|
}));
|
|
}
|
|
} catch (error2) {
|
|
const msgPreview = typeof message === "string" ? message.slice(0, 200) : String(message).slice(0, 200);
|
|
console.error(`Error processing WebSocket message on ${clientChannel}:`, error2.message, "\nRaw message preview:", msgPreview);
|
|
try {
|
|
ws.send(JSON.stringify({
|
|
type: "error",
|
|
message: `Error: ${error2.message}`
|
|
}));
|
|
} catch (sendError) {
|
|
console.error("Error sending error response:", sendError);
|
|
}
|
|
}
|
|
});
|
|
ws.on("close", async () => {
|
|
console.error(`Client disconnected from path: ${clientChannel}`);
|
|
clientMetadata.delete(ws);
|
|
const channel2 = channels[clientChannel];
|
|
if (channel2) {
|
|
channel2.delete(ws);
|
|
if (channel2.size === 0) {
|
|
console.error(`Channel ${clientChannel} is empty, will close in 1 minute if no one joins`);
|
|
channel2.closeTimeout = setTimeout(async () => {
|
|
if (channels[clientChannel] && channels[clientChannel].size === 0) {
|
|
delete channels[clientChannel];
|
|
console.error(`Removed empty channel for path: ${clientChannel} after 1 minute inactivity`);
|
|
const itemsToRemove = {
|
|
tools: [],
|
|
prompts: [],
|
|
resources: []
|
|
};
|
|
for (const [toolId, toolInfo] of Object.entries(toolsRegistry)) {
|
|
if (toolInfo.channel === clientChannel) {
|
|
itemsToRemove.tools.push(toolId);
|
|
}
|
|
}
|
|
for (const [promptId, promptInfo] of Object.entries(promptsRegistry)) {
|
|
if (promptInfo.channel === clientChannel) {
|
|
itemsToRemove.prompts.push(promptId);
|
|
}
|
|
}
|
|
for (const [resourceId, resourceInfo] of Object.entries(resourcesRegistry)) {
|
|
if (resourceInfo.channel === clientChannel) {
|
|
itemsToRemove.resources.push(resourceId);
|
|
}
|
|
}
|
|
itemsToRemove.tools.forEach((toolId) => {
|
|
delete toolsRegistry[toolId];
|
|
console.error(`Removed tool: ${toolId} from path: ${clientChannel}`);
|
|
});
|
|
itemsToRemove.prompts.forEach((promptId) => {
|
|
delete promptsRegistry[promptId];
|
|
console.error(`Removed prompt: ${promptId} from path: ${clientChannel}`);
|
|
});
|
|
itemsToRemove.resources.forEach((resourceId) => {
|
|
delete resourcesRegistry[resourceId];
|
|
console.error(`Removed resource: ${resourceId} from path: ${clientChannel}`);
|
|
});
|
|
if (clientChannel !== MCP_PATH2) {
|
|
deleteToken(clientChannel);
|
|
await saveAuthorizedTokens();
|
|
console.error(`Removed authorized token for channel: ${clientChannel}`);
|
|
}
|
|
sendNotification(ws, void 0, "toolRegistered", {}, true);
|
|
sendNotification(ws, void 0, "promptRegistered", {}, true);
|
|
sendNotification(ws, void 0, "resourceRegistered", {}, true);
|
|
}
|
|
}, 6e4);
|
|
}
|
|
}
|
|
});
|
|
ws.on("error", (error2) => {
|
|
console.error("WebSocket error:", error2);
|
|
clientMetadata.delete(ws);
|
|
const channel2 = channels[clientChannel];
|
|
if (channel2) {
|
|
channel2.delete(ws);
|
|
}
|
|
});
|
|
});
|
|
function handlePing(ws, data) {
|
|
ws.send(JSON.stringify({
|
|
id: data.id,
|
|
type: "pong",
|
|
timestamp: Date.now()
|
|
}));
|
|
}
|
|
function handleRegisterTool(ws, channelPath, data) {
|
|
const { name, description, inputSchema } = data;
|
|
if (!name) {
|
|
ws.send(JSON.stringify({
|
|
type: "error",
|
|
message: "Tool name is required"
|
|
}));
|
|
return;
|
|
}
|
|
const toolId = `${channelPath.slice(1)}-${name}`;
|
|
toolsRegistry[toolId] = {
|
|
channel: channelPath,
|
|
name,
|
|
description: description || `Tool: ${name}`,
|
|
inputSchema,
|
|
originalName: name
|
|
};
|
|
sendNotification(ws, channelPath, "toolRegistered", {
|
|
name,
|
|
toolId
|
|
});
|
|
console.error(`Tool registered: ${toolId}`);
|
|
}
|
|
function handleRegisterPrompt(ws, channelPath, data) {
|
|
const { name, description, arguments: promptArgs } = data;
|
|
if (!name) {
|
|
ws.send(JSON.stringify({
|
|
type: "error",
|
|
message: "Prompt name is required"
|
|
}));
|
|
return;
|
|
}
|
|
const promptId = `${channelPath.slice(1)}-${name}`;
|
|
promptsRegistry[promptId] = {
|
|
channel: channelPath,
|
|
name,
|
|
description: description || `Prompt: ${name}`,
|
|
arguments: promptArgs || [],
|
|
originalName: name
|
|
};
|
|
sendNotification(ws, channelPath, "promptRegistered", {
|
|
name,
|
|
promptId
|
|
});
|
|
console.error(`Prompt registered: ${promptId}`);
|
|
}
|
|
function handleRegisterResource(ws, channelPath, data) {
|
|
const { uri, name, description, mimeType, isTemplate, uriTemplate } = data;
|
|
if (!uri && !uriTemplate || !name) {
|
|
ws.send(JSON.stringify({
|
|
type: "error",
|
|
message: "Resource URI/template and name are required"
|
|
}));
|
|
return;
|
|
}
|
|
const resourceId = `${channelPath.slice(1)}-${name}`;
|
|
resourcesRegistry[resourceId] = {
|
|
channel: channelPath,
|
|
name,
|
|
description: description || `Resource: ${name}`,
|
|
uri,
|
|
uriTemplate,
|
|
isTemplate: !!isTemplate,
|
|
mimeType,
|
|
originalName: name
|
|
};
|
|
sendNotification(ws, channelPath, "resourceRegistered", {
|
|
name,
|
|
resourceId
|
|
});
|
|
console.error(`Resource registered: ${resourceId}`);
|
|
}
|
|
function handleUnregisterTool(ws, channelPath, data) {
|
|
const { name } = data;
|
|
if (!name) {
|
|
ws.send(JSON.stringify({
|
|
type: "error",
|
|
message: "Tool name is required"
|
|
}));
|
|
return;
|
|
}
|
|
const toolId = `${channelPath.slice(1)}-${name}`;
|
|
if (!toolsRegistry[toolId]) {
|
|
ws.send(JSON.stringify({
|
|
type: "error",
|
|
message: `Tool not found: ${name}`
|
|
}));
|
|
return;
|
|
}
|
|
delete toolsRegistry[toolId];
|
|
sendNotification(ws, channelPath, "toolRegistered", {
|
|
name,
|
|
toolId
|
|
});
|
|
console.error(`Tool unregistered: ${toolId}`);
|
|
}
|
|
function handleUnregisterPrompt(ws, channelPath, data) {
|
|
const { name } = data;
|
|
if (!name) {
|
|
ws.send(JSON.stringify({
|
|
type: "error",
|
|
message: "Prompt name is required"
|
|
}));
|
|
return;
|
|
}
|
|
const promptId = `${channelPath.slice(1)}-${name}`;
|
|
if (!promptsRegistry[promptId]) {
|
|
ws.send(JSON.stringify({
|
|
type: "error",
|
|
message: `Prompt not found: ${name}`
|
|
}));
|
|
return;
|
|
}
|
|
delete promptsRegistry[promptId];
|
|
sendNotification(ws, channelPath, "promptRegistered", {
|
|
name,
|
|
promptId
|
|
});
|
|
console.error(`Prompt unregistered: ${promptId}`);
|
|
}
|
|
function handleUnregisterResource(ws, channelPath, data) {
|
|
const { name } = data;
|
|
if (!name) {
|
|
ws.send(JSON.stringify({
|
|
type: "error",
|
|
message: "Resource name is required"
|
|
}));
|
|
return;
|
|
}
|
|
const resourceId = `${channelPath.slice(1)}-${name}`;
|
|
if (!resourcesRegistry[resourceId]) {
|
|
ws.send(JSON.stringify({
|
|
type: "error",
|
|
message: `Resource not found: ${name}`
|
|
}));
|
|
return;
|
|
}
|
|
delete resourcesRegistry[resourceId];
|
|
sendNotification(ws, channelPath, "resourceRegistered", {
|
|
name,
|
|
resourceId
|
|
});
|
|
console.error(`Resource unregistered: ${resourceId}`);
|
|
}
|
|
function handleUnregisterAllTools(ws, channelPath) {
|
|
const removed = [];
|
|
for (const [toolId, toolInfo] of Object.entries(toolsRegistry)) {
|
|
if (toolInfo.channel === channelPath) {
|
|
removed.push(toolId);
|
|
}
|
|
}
|
|
removed.forEach((toolId) => {
|
|
delete toolsRegistry[toolId];
|
|
});
|
|
if (removed.length > 0) {
|
|
sendNotification(ws, channelPath, "toolRegistered", {}, true);
|
|
console.error(`Batch unregistered ${removed.length} tools from ${channelPath}`);
|
|
}
|
|
}
|
|
function handleCreateTool(ws, data) {
|
|
const { id, name, description, code, parametros } = data;
|
|
let targetClient = null;
|
|
let targetChannel = null;
|
|
for (const [channelPath, clients] of Object.entries(channels)) {
|
|
if (channelPath === MCP_PATH2) continue;
|
|
if (clients.size > 0) {
|
|
targetClient = clients.values().next().value;
|
|
targetChannel = channelPath;
|
|
break;
|
|
}
|
|
}
|
|
if (!targetClient) {
|
|
ws.send(JSON.stringify({
|
|
id,
|
|
type: "toolResponse",
|
|
error: "No hay navegadores conectados para crear la herramienta"
|
|
}));
|
|
return;
|
|
}
|
|
const requestId = (requestIdCounter2++).toString();
|
|
pendingRequests2[requestId] = { originalId: id, requesterWs: ws, timestamp: Date.now() };
|
|
setTimeout(() => {
|
|
if (pendingRequests2[requestId]) {
|
|
const { requesterWs, originalId } = pendingRequests2[requestId];
|
|
delete pendingRequests2[requestId];
|
|
try {
|
|
requesterWs.send(JSON.stringify({ id: originalId, type: "toolResponse", error: "Timeout creando herramienta" }));
|
|
} catch (e) {
|
|
}
|
|
}
|
|
}, 15e3);
|
|
targetClient.send(JSON.stringify({
|
|
id: requestId,
|
|
type: "createTool",
|
|
name,
|
|
description,
|
|
code,
|
|
parametros
|
|
}));
|
|
console.error(`createTool forwarded to ${targetChannel}: ${name}`);
|
|
}
|
|
function handleRemoveTool(ws, data) {
|
|
const { id, name, listar, todas } = data;
|
|
if (listar) {
|
|
const tools = Object.entries(toolsRegistry).filter(([_, info]) => info.channel !== MCP_PATH2).map(([toolId, info]) => info.originalName);
|
|
const msg = tools.length > 0 ? `Herramientas activas: ${tools.join(", ")}` : "No hay herramientas registradas";
|
|
ws.send(JSON.stringify({ id, type: "toolResponse", result: { content: [{ type: "text", text: msg }] } }));
|
|
return;
|
|
}
|
|
if (todas) {
|
|
let count = 0;
|
|
for (const [toolId, info] of Object.entries(toolsRegistry)) {
|
|
if (info.channel !== MCP_PATH2) {
|
|
delete toolsRegistry[toolId];
|
|
count++;
|
|
}
|
|
}
|
|
for (const [channelPath, clients] of Object.entries(channels)) {
|
|
if (channelPath === MCP_PATH2) continue;
|
|
clients.forEach((c) => {
|
|
if (c.readyState === import_websocket.default.OPEN) {
|
|
c.send(JSON.stringify({ type: "removeAllTools" }));
|
|
}
|
|
});
|
|
}
|
|
ws.send(JSON.stringify({ id, type: "toolResponse", result: { content: [{ type: "text", text: `${count} herramientas desregistradas` }] } }));
|
|
return;
|
|
}
|
|
if (!name) {
|
|
ws.send(JSON.stringify({ id, type: "toolResponse", error: "Especifica nombre, listar=true, o todas=true" }));
|
|
return;
|
|
}
|
|
let found = false;
|
|
for (const [toolId, info] of Object.entries(toolsRegistry)) {
|
|
if (info.originalName === name) {
|
|
const channel = info.channel;
|
|
delete toolsRegistry[toolId];
|
|
found = true;
|
|
if (channels[channel]) {
|
|
channels[channel].forEach((c) => {
|
|
if (c.readyState === import_websocket.default.OPEN) {
|
|
c.send(JSON.stringify({ type: "removeTool", name }));
|
|
}
|
|
});
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
if (found) {
|
|
ws.send(JSON.stringify({ id, type: "toolResponse", result: { content: [{ type: "text", text: `Herramienta "${name}" desregistrada` }] } }));
|
|
} else {
|
|
ws.send(JSON.stringify({ id, type: "toolResponse", error: `Herramienta "${name}" no encontrada` }));
|
|
}
|
|
}
|
|
function handleClientInfo(ws, data) {
|
|
const { userAgent, url: url2, hostname: hostname3, language, screenWidth, screenHeight, timestamp } = data;
|
|
clientMetadata.set(ws, { userAgent, url: url2, hostname: hostname3, language, screenWidth, screenHeight, timestamp });
|
|
console.error(`Client info stored for ${hostname3}: ${url2}`);
|
|
}
|
|
function handleGetClientInfo(ws, callerChannel, data) {
|
|
const { id } = data;
|
|
const clients = [];
|
|
for (const [channelPath, channelClients] of Object.entries(channels)) {
|
|
if (channelPath === MCP_PATH2 || channelPath === REGISTER_PATH) continue;
|
|
for (const clientWs of channelClients) {
|
|
const meta3 = clientMetadata.get(clientWs) || {};
|
|
clients.push({
|
|
channel: channelPath,
|
|
userAgent: meta3.userAgent || "unknown",
|
|
url: meta3.url || "unknown",
|
|
hostname: meta3.hostname || "unknown",
|
|
language: meta3.language || "unknown",
|
|
screenWidth: meta3.screenWidth || 0,
|
|
screenHeight: meta3.screenHeight || 0,
|
|
connectedSince: meta3.timestamp || 0
|
|
});
|
|
}
|
|
}
|
|
const text = clients.length > 0 ? JSON.stringify(clients, null, 2) : "No hay navegadores conectados";
|
|
ws.send(JSON.stringify({
|
|
id,
|
|
type: "toolResponse",
|
|
result: { content: [{ type: "text", text }] }
|
|
}));
|
|
}
|
|
function handleGetServerInfo(ws, data) {
|
|
const { id } = data;
|
|
const uptimeMs = Date.now() - serverStartTime;
|
|
const uptimeSec = Math.floor(uptimeMs / 1e3);
|
|
const hours = Math.floor(uptimeSec / 3600);
|
|
const minutes = Math.floor(uptimeSec % 3600 / 60);
|
|
const seconds = uptimeSec % 60;
|
|
const channelsList = {};
|
|
for (const [channelPath, channelClients] of Object.entries(channels)) {
|
|
channelsList[channelPath] = channelClients.size;
|
|
}
|
|
const info = {
|
|
server: `@nucleoriofrio/webmcp v0.2.0`,
|
|
commit: gitCommit,
|
|
host: HOST,
|
|
port: CONFIG.port,
|
|
dev: !!CONFIG.dev,
|
|
uptime: `${hours}h ${minutes}m ${seconds}s`,
|
|
uptimeMs,
|
|
channels: channelsList,
|
|
totalClients: Object.values(channels).reduce((sum, ch) => sum + ch.size, 0),
|
|
registry: {
|
|
tools: Object.keys(toolsRegistry).length,
|
|
prompts: Object.keys(promptsRegistry).length,
|
|
resources: Object.keys(resourcesRegistry).length
|
|
},
|
|
toolsList: Object.entries(toolsRegistry).map(([id2, info2]) => ({
|
|
id: id2,
|
|
name: info2.originalName,
|
|
channel: info2.channel
|
|
})),
|
|
pendingRequests: Object.keys(pendingRequests2).length
|
|
};
|
|
ws.send(JSON.stringify({
|
|
id,
|
|
type: "toolResponse",
|
|
result: { content: [{ type: "text", text: JSON.stringify(info, null, 2) }] }
|
|
}));
|
|
}
|
|
function handleClearRegistry(ws, data) {
|
|
const { id } = data;
|
|
let toolCount = Object.keys(toolsRegistry).length;
|
|
let promptCount = Object.keys(promptsRegistry).length;
|
|
let resourceCount = Object.keys(resourcesRegistry).length;
|
|
for (const key of Object.keys(toolsRegistry)) delete toolsRegistry[key];
|
|
for (const key of Object.keys(promptsRegistry)) delete promptsRegistry[key];
|
|
for (const key of Object.keys(resourcesRegistry)) delete resourcesRegistry[key];
|
|
const msg = `Cache limpiado: ${toolCount} tools, ${promptCount} prompts, ${resourceCount} resources eliminados`;
|
|
console.error(msg);
|
|
ws.send(JSON.stringify({
|
|
id,
|
|
type: "toolResponse",
|
|
result: msg
|
|
}));
|
|
}
|
|
function handleClipboardCopy(data) {
|
|
const { text } = data;
|
|
if (!text) return;
|
|
for (const [channelPath, channelClients] of Object.entries(channels)) {
|
|
if (channelPath === MCP_PATH2) continue;
|
|
channelClients.forEach((client) => {
|
|
if (client.readyState === import_websocket.default.OPEN) {
|
|
client.send(JSON.stringify({
|
|
type: "clipboardCopy",
|
|
text
|
|
}));
|
|
}
|
|
});
|
|
}
|
|
console.error(`Clipboard copy broadcasted to web clients`);
|
|
}
|
|
function handleListTools(ws, clientChannel, data) {
|
|
const { id } = data;
|
|
const isMcpClient = clientChannel === MCP_PATH2;
|
|
let tools;
|
|
if (isMcpClient) {
|
|
tools = Object.entries(toolsRegistry).map(([toolId, toolInfo]) => {
|
|
const pathBasedName = `${toolInfo.channel.slice(1)}-${toolInfo.originalName}`;
|
|
return {
|
|
name: pathBasedName,
|
|
description: toolInfo.description,
|
|
inputSchema: toolInfo.inputSchema
|
|
};
|
|
});
|
|
console.error(`Sending all ${tools.length} tools to MCP client on path ${clientChannel}`);
|
|
} else {
|
|
tools = Object.entries(toolsRegistry).filter(([_, toolInfo]) => toolInfo.channel === clientChannel).map(([_, toolInfo]) => ({
|
|
name: toolInfo.originalName,
|
|
description: toolInfo.description,
|
|
inputSchema: toolInfo.inputSchema
|
|
}));
|
|
console.error(`Sending ${tools.length} tools from path ${clientChannel}`);
|
|
}
|
|
ws.send(JSON.stringify({
|
|
id,
|
|
type: "listToolsResponse",
|
|
tools
|
|
}));
|
|
}
|
|
function handleListPrompts(ws, clientChannel, data) {
|
|
const { id } = data;
|
|
const isMcpClient = clientChannel === MCP_PATH2;
|
|
let prompts;
|
|
if (isMcpClient) {
|
|
prompts = Object.entries(promptsRegistry).map(([promptId, promptInfo]) => {
|
|
const pathBasedName = `${promptInfo.channel.slice(1)}-${promptInfo.originalName}`;
|
|
return {
|
|
name: pathBasedName,
|
|
description: promptInfo.description,
|
|
arguments: promptInfo.arguments
|
|
};
|
|
});
|
|
console.error(`Sending all ${prompts.length} prompts to MCP client on path ${clientChannel}`);
|
|
} else {
|
|
prompts = Object.entries(promptsRegistry).filter(([_, promptInfo]) => promptInfo.channel === clientChannel).map(([_, promptInfo]) => ({
|
|
name: promptInfo.originalName,
|
|
description: promptInfo.description,
|
|
arguments: promptInfo.arguments
|
|
}));
|
|
console.error(`Sending ${prompts.length} prompts from path ${clientChannel}`);
|
|
}
|
|
ws.send(JSON.stringify({
|
|
id,
|
|
type: "listPromptsResponse",
|
|
prompts
|
|
}));
|
|
}
|
|
function handleListResources(ws, clientChannel, data) {
|
|
const { id } = data;
|
|
const isMcpClient = clientChannel === MCP_PATH2;
|
|
let resources = [];
|
|
let resourceTemplates = [];
|
|
if (isMcpClient) {
|
|
Object.entries(resourcesRegistry).forEach(([resourceId, resourceInfo]) => {
|
|
const pathBasedName = `${resourceInfo.channel.slice(1)}-${resourceInfo.originalName}`;
|
|
if (resourceInfo.isTemplate) {
|
|
resourceTemplates.push({
|
|
name: pathBasedName,
|
|
description: resourceInfo.description,
|
|
uriTemplate: resourceInfo.uriTemplate,
|
|
mimeType: resourceInfo.mimeType
|
|
});
|
|
} else {
|
|
resources.push({
|
|
name: pathBasedName,
|
|
description: resourceInfo.description,
|
|
uri: resourceInfo.uri,
|
|
mimeType: resourceInfo.mimeType
|
|
});
|
|
}
|
|
});
|
|
console.error(`Sending all ${resources.length} resources and ${resourceTemplates.length} templates to MCP client on path ${clientChannel}`);
|
|
} else {
|
|
Object.entries(resourcesRegistry).filter(([_, resourceInfo]) => resourceInfo.channel === clientChannel).forEach(([_, resourceInfo]) => {
|
|
if (resourceInfo.isTemplate) {
|
|
resourceTemplates.push({
|
|
name: resourceInfo.originalName,
|
|
description: resourceInfo.description,
|
|
uriTemplate: resourceInfo.uriTemplate,
|
|
mimeType: resourceInfo.mimeType
|
|
});
|
|
} else {
|
|
resources.push({
|
|
name: resourceInfo.originalName,
|
|
description: resourceInfo.description,
|
|
uri: resourceInfo.uri,
|
|
mimeType: resourceInfo.mimeType
|
|
});
|
|
}
|
|
});
|
|
console.error(`Sending ${resources.length} resources and ${resourceTemplates.length} templates from path ${clientChannel}`);
|
|
}
|
|
ws.send(JSON.stringify({
|
|
id,
|
|
type: "listResourcesResponse",
|
|
resources,
|
|
resourceTemplates
|
|
}));
|
|
}
|
|
function handleCallTool(ws, callerChannel, data) {
|
|
const { id, tool, arguments: args } = data;
|
|
const isMcpClient = callerChannel === MCP_PATH2;
|
|
let targetChannel;
|
|
let toolName;
|
|
if (isMcpClient && tool.startsWith("/")) {
|
|
[targetChannel, toolName] = tool.slice(1).split("-").slice(1);
|
|
targetChannel = `/${targetChannel}`;
|
|
} else {
|
|
if (!toolsRegistry[tool]) {
|
|
ws.send(JSON.stringify({
|
|
id,
|
|
type: "toolResponse",
|
|
error: `Tool not found: ${tool}`
|
|
}));
|
|
return;
|
|
}
|
|
const toolInfo = toolsRegistry[tool];
|
|
targetChannel = toolInfo.channel;
|
|
toolName = toolInfo.originalName;
|
|
}
|
|
if (!channels[targetChannel] || channels[targetChannel].size === 0) {
|
|
ws.send(JSON.stringify({
|
|
id,
|
|
type: "toolResponse",
|
|
error: `No clients available in channel ${targetChannel} to handle tool: ${toolName}`
|
|
}));
|
|
return;
|
|
}
|
|
const targetClient = channels[targetChannel].values().next().value;
|
|
const requestId = (requestIdCounter2++).toString();
|
|
pendingRequests2[requestId] = {
|
|
originalId: id,
|
|
requesterWs: ws,
|
|
timestamp: Date.now()
|
|
};
|
|
setTimeout(() => {
|
|
if (pendingRequests2[requestId]) {
|
|
const { requesterWs, originalId } = pendingRequests2[requestId];
|
|
delete pendingRequests2[requestId];
|
|
try {
|
|
requesterWs.send(JSON.stringify({
|
|
id: originalId,
|
|
type: "toolResponse",
|
|
error: `Tool call timed out: ${toolName}`
|
|
}));
|
|
} catch (error2) {
|
|
console.error("Error sending timeout response:", error2);
|
|
}
|
|
}
|
|
}, 3e4);
|
|
targetClient.send(JSON.stringify({
|
|
id: requestId,
|
|
type: "callTool",
|
|
tool: toolName,
|
|
// Send just the tool name without channel prefix
|
|
arguments: args
|
|
}));
|
|
console.error(`Tool call forwarded: ${toolName} to channel: ${targetChannel}`);
|
|
}
|
|
function handleGetPrompt(ws, callerChannel, data) {
|
|
const { id, name, arguments: args } = data;
|
|
const isMcpClient = callerChannel === MCP_PATH2;
|
|
let targetChannel;
|
|
let promptName;
|
|
if (isMcpClient && name.startsWith("/")) {
|
|
[targetChannel, promptName] = name.slice(1).split("-").slice(1);
|
|
targetChannel = `/${targetChannel}`;
|
|
} else {
|
|
const promptInfo = Object.values(promptsRegistry).find((p) => p.channel === callerChannel && p.originalName === name);
|
|
if (!promptInfo) {
|
|
ws.send(JSON.stringify({
|
|
id,
|
|
type: "promptResponse",
|
|
error: `Prompt not found: ${name}`
|
|
}));
|
|
return;
|
|
}
|
|
targetChannel = promptInfo.channel;
|
|
promptName = promptInfo.originalName;
|
|
}
|
|
if (!channels[targetChannel] || channels[targetChannel].size === 0) {
|
|
ws.send(JSON.stringify({
|
|
id,
|
|
type: "promptResponse",
|
|
error: `No clients available in channel ${targetChannel} to handle prompt: ${promptName}`
|
|
}));
|
|
return;
|
|
}
|
|
const targetClient = channels[targetChannel].values().next().value;
|
|
const requestId = (requestIdCounter2++).toString();
|
|
pendingRequests2[requestId] = {
|
|
originalId: id,
|
|
requesterWs: ws,
|
|
timestamp: Date.now()
|
|
};
|
|
setTimeout(() => {
|
|
if (pendingRequests2[requestId]) {
|
|
const { requesterWs, originalId } = pendingRequests2[requestId];
|
|
delete pendingRequests2[requestId];
|
|
try {
|
|
requesterWs.send(JSON.stringify({
|
|
id: originalId,
|
|
type: "promptResponse",
|
|
error: `Prompt request timed out: ${promptName}`
|
|
}));
|
|
} catch (error2) {
|
|
console.error("Error sending timeout response:", error2);
|
|
}
|
|
}
|
|
}, 3e4);
|
|
targetClient.send(JSON.stringify({
|
|
id: requestId,
|
|
type: "getPrompt",
|
|
name: promptName,
|
|
arguments: args
|
|
}));
|
|
console.error(`Prompt request forwarded: ${promptName} to channel: ${targetChannel}`);
|
|
}
|
|
function handleReadResource(ws, callerChannel, data) {
|
|
const { id, uri } = data;
|
|
let targetChannel;
|
|
let resourceName;
|
|
let resourceInfo;
|
|
for (const [resId, info] of Object.entries(resourcesRegistry)) {
|
|
if (!info.isTemplate && info.uri === uri) {
|
|
resourceInfo = info;
|
|
targetChannel = info.channel;
|
|
resourceName = info.originalName;
|
|
break;
|
|
}
|
|
}
|
|
if (!resourceInfo) {
|
|
for (const [resId, info] of Object.entries(resourcesRegistry)) {
|
|
if (info.isTemplate && uri.startsWith(info.uriTemplate.split("{")[0])) {
|
|
resourceInfo = info;
|
|
targetChannel = info.channel;
|
|
resourceName = info.originalName;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
if (!resourceInfo) {
|
|
ws.send(JSON.stringify({
|
|
id,
|
|
type: "resourceResponse",
|
|
error: `Resource not found for URI: ${uri}`
|
|
}));
|
|
return;
|
|
}
|
|
if (!channels[targetChannel] || channels[targetChannel].size === 0) {
|
|
ws.send(JSON.stringify({
|
|
id,
|
|
type: "resourceResponse",
|
|
error: `No clients available in channel ${targetChannel} to handle resource: ${resourceName}`
|
|
}));
|
|
return;
|
|
}
|
|
const targetClient = channels[targetChannel].values().next().value;
|
|
const requestId = (requestIdCounter2++).toString();
|
|
pendingRequests2[requestId] = {
|
|
originalId: id,
|
|
requesterWs: ws,
|
|
timestamp: Date.now()
|
|
};
|
|
setTimeout(() => {
|
|
if (pendingRequests2[requestId]) {
|
|
const { requesterWs, originalId } = pendingRequests2[requestId];
|
|
delete pendingRequests2[requestId];
|
|
try {
|
|
requesterWs.send(JSON.stringify({
|
|
id: originalId,
|
|
type: "resourceResponse",
|
|
error: `Resource request timed out: ${uri}`
|
|
}));
|
|
} catch (error2) {
|
|
console.error("Error sending timeout response:", error2);
|
|
}
|
|
}
|
|
}, 3e4);
|
|
targetClient.send(JSON.stringify({
|
|
id: requestId,
|
|
type: "readResource",
|
|
uri
|
|
}));
|
|
console.error(`Resource request forwarded: ${uri} to channel: ${targetChannel}`);
|
|
}
|
|
function handleToolResponse(data) {
|
|
const { id, result, error: error2 } = data;
|
|
if (!pendingRequests2[id]) {
|
|
console.error(`No pending request found for ID: ${id}`);
|
|
return;
|
|
}
|
|
const { requesterWs, originalId } = pendingRequests2[id];
|
|
delete pendingRequests2[id];
|
|
try {
|
|
requesterWs.send(JSON.stringify({
|
|
id: originalId,
|
|
type: "toolResponse",
|
|
result,
|
|
error: error2
|
|
}));
|
|
} catch (error3) {
|
|
console.error("Error forwarding tool response:", error3);
|
|
}
|
|
}
|
|
function handlePromptResponse(data) {
|
|
const { id, result, error: error2 } = data;
|
|
if (!pendingRequests2[id]) {
|
|
console.error(`No pending request found for ID: ${id}`);
|
|
return;
|
|
}
|
|
const { requesterWs, originalId } = pendingRequests2[id];
|
|
delete pendingRequests2[id];
|
|
try {
|
|
requesterWs.send(JSON.stringify({
|
|
id: originalId,
|
|
type: "promptResponse",
|
|
result,
|
|
error: error2
|
|
}));
|
|
} catch (error3) {
|
|
console.error("Error forwarding prompt response:", error3);
|
|
}
|
|
}
|
|
function handleResourceResponse(data) {
|
|
const { id, result, error: error2 } = data;
|
|
if (!pendingRequests2[id]) {
|
|
console.error(`No pending request found for ID: ${id}`);
|
|
return;
|
|
}
|
|
const { requesterWs, originalId } = pendingRequests2[id];
|
|
delete pendingRequests2[id];
|
|
try {
|
|
requesterWs.send(JSON.stringify({
|
|
id: originalId,
|
|
type: "resourceResponse",
|
|
result,
|
|
error: error2
|
|
}));
|
|
} catch (error3) {
|
|
console.error("Error forwarding resource response:", error3);
|
|
}
|
|
}
|
|
function handleSamplingResponse(data) {
|
|
const { id, result, error: error2 } = data;
|
|
if (!pendingRequests2[id]) {
|
|
console.error(`No pending request found for ID: ${id}`);
|
|
return;
|
|
}
|
|
const { requesterWs, originalId } = pendingRequests2[id];
|
|
delete pendingRequests2[id];
|
|
try {
|
|
requesterWs.send(JSON.stringify({
|
|
id: originalId,
|
|
type: "samplingResponse",
|
|
result,
|
|
error: error2
|
|
}));
|
|
} catch (error3) {
|
|
console.error("Error forwarding sampling response:", error3);
|
|
}
|
|
}
|
|
function handleCreateSamplingMessage(ws, callerChannel, data) {
|
|
const {
|
|
id,
|
|
messages,
|
|
systemPrompt,
|
|
includeContext,
|
|
temperature,
|
|
maxTokens,
|
|
stopSequences,
|
|
metadata,
|
|
modelPreferences
|
|
} = data;
|
|
const isMcpClient = callerChannel === MCP_PATH2;
|
|
if (!isMcpClient) {
|
|
ws.send(JSON.stringify({
|
|
id,
|
|
type: "samplingResponse",
|
|
error: `Sampling is only available through MCP path`
|
|
}));
|
|
return;
|
|
}
|
|
let targetClient = null;
|
|
let targetChannel = null;
|
|
for (const [channel, clients] of Object.entries(channels)) {
|
|
if (channel !== MCP_PATH2 && clients.size > 0) {
|
|
targetClient = clients.values().next().value;
|
|
targetChannel = channel;
|
|
break;
|
|
}
|
|
}
|
|
if (!targetClient) {
|
|
ws.send(JSON.stringify({
|
|
id,
|
|
type: "samplingResponse",
|
|
error: "No clients available to handle sampling request"
|
|
}));
|
|
return;
|
|
}
|
|
const requestId = (requestIdCounter2++).toString();
|
|
pendingRequests2[requestId] = {
|
|
originalId: id,
|
|
requesterWs: ws,
|
|
timestamp: Date.now()
|
|
};
|
|
setTimeout(() => {
|
|
if (pendingRequests2[requestId]) {
|
|
const { requesterWs, originalId } = pendingRequests2[requestId];
|
|
delete pendingRequests2[requestId];
|
|
try {
|
|
requesterWs.send(JSON.stringify({
|
|
id: originalId,
|
|
type: "samplingResponse",
|
|
error: "Sampling request timed out"
|
|
}));
|
|
} catch (error2) {
|
|
console.error("Error sending timeout response:", error2);
|
|
}
|
|
}
|
|
}, 12e4);
|
|
targetClient.send(JSON.stringify({
|
|
id: requestId,
|
|
type: "createSamplingMessage",
|
|
messages,
|
|
systemPrompt,
|
|
includeContext,
|
|
temperature,
|
|
maxTokens,
|
|
stopSequences,
|
|
metadata,
|
|
modelPreferences
|
|
}));
|
|
console.error(`Sampling request forwarded to channel: ${targetChannel}`);
|
|
}
|
|
async function isServerRunning() {
|
|
if (CONFIG.startMCP && CONFIG.docker) {
|
|
return true;
|
|
}
|
|
try {
|
|
const pidData = await fs3.readFile(PID_FILE, "utf8");
|
|
const pid = parseInt(pidData.trim(), 10);
|
|
try {
|
|
process.kill(pid, 0);
|
|
return { running: true, pid };
|
|
} catch (e) {
|
|
await fs3.unlink(PID_FILE);
|
|
return { running: false };
|
|
}
|
|
} catch (error2) {
|
|
return { running: false };
|
|
}
|
|
}
|
|
async function savePid() {
|
|
try {
|
|
await fs3.writeFile(PID_FILE, process.pid.toString(), "utf8");
|
|
return true;
|
|
} catch (error2) {
|
|
console.error("Error saving PID file:", error2);
|
|
return false;
|
|
}
|
|
}
|
|
async function daemonize() {
|
|
const args = process.argv.slice(2);
|
|
if (!args.includes("--forked")) {
|
|
args.push("--forked");
|
|
}
|
|
const child = fork(process.argv[1], args, {
|
|
detached: true,
|
|
stdio: "ignore"
|
|
});
|
|
child.unref();
|
|
console.error(`Server started as daemon with PID: ${child.pid}`);
|
|
console.error(`Use 'node websocket-server.js --quit' to stop the server`);
|
|
console.error(`Use 'node websocket-server.js --new <encoded-pair>' to authorize a channel-token pair`);
|
|
console.error(`Put 'npx @nucleoriofrio/webmcp --mcp' in your mcp client config`);
|
|
if (!CONFIG.startMCP) {
|
|
process.exit(0);
|
|
}
|
|
}
|
|
var parseArgs = async () => {
|
|
const args = process.argv.slice(2);
|
|
let port = 4797;
|
|
let quit = false;
|
|
let newToken = false;
|
|
let startMCP = false;
|
|
let docker = false;
|
|
let cleanTokens = false;
|
|
let encodedPair = null;
|
|
let daemon = true;
|
|
let dev = process.env.WEBMCP_DEV === "true" || process.env.WEBMCP_DEV === "1";
|
|
for (let i = 0; i < args.length; i++) {
|
|
const arg = args[i];
|
|
if (arg === "-h" || arg === "--help") {
|
|
showHelp();
|
|
process.exit(0);
|
|
} else if (arg === "-p" || arg === "--port") {
|
|
if (i + 1 < args.length) {
|
|
const portArg = parseInt(args[i + 1], 10);
|
|
if (isNaN(portArg) || portArg < 1 || portArg > 65535) {
|
|
console.error("Error: Port must be a number between 1 and 65535");
|
|
showHelp();
|
|
process.exit(1);
|
|
}
|
|
port = portArg;
|
|
i++;
|
|
} else {
|
|
console.error("Error: Port option requires a value");
|
|
showHelp();
|
|
process.exit(1);
|
|
}
|
|
} else if (arg === "--config") {
|
|
if (i + 1 < args.length) {
|
|
const config3 = args[i + 1];
|
|
await configureMcpClient(config3);
|
|
i++;
|
|
} else {
|
|
console.error("Error: Config option requires a mcp client type or path to json");
|
|
showHelp();
|
|
process.exit(1);
|
|
}
|
|
} else if (arg === "-q" || arg === "--quit") {
|
|
quit = true;
|
|
} else if (arg === "-n" || arg === "--new") {
|
|
newToken = true;
|
|
} else if (arg === "-m" || arg === "--mcp") {
|
|
startMCP = true;
|
|
} else if (arg === "-d" || arg === "--docker") {
|
|
docker = true;
|
|
} else if (arg === "-c" || arg === "--clean") {
|
|
cleanTokens = true;
|
|
} else if (arg === "-f" || arg === "--foreground") {
|
|
daemon = false;
|
|
} else if (arg === "--dev") {
|
|
dev = true;
|
|
} else if (arg === "--forked") {
|
|
} else {
|
|
console.error(`Error: Unknown option: ${arg}`);
|
|
showHelp();
|
|
process.exit(1);
|
|
}
|
|
}
|
|
return { port, quit, newToken, cleanTokens, encodedPair, daemon, startMCP, dev };
|
|
};
|
|
var showHelp = () => {
|
|
console.log(`
|
|
Usage: node websocket-server.js [options]
|
|
|
|
Options:
|
|
--config Automatically update MCP client configuration to add WebMCP
|
|
-p, --port <number> Specify the port number (default: 4797)
|
|
-h, --help Display this help message
|
|
-q, --quit Stop the running server
|
|
-n, --new Generate a new token for client registration
|
|
-c, --clean Remove all authorized tokens
|
|
-f, --foreground Run in foreground (don't daemonize)
|
|
-m, --mcp Internal WebMCP Server codepath, likely only used in MCP client config
|
|
-d, --docker Tell the MCP client that WebMCP is running in docker
|
|
--dev Enable development mode (agregar-tool, quitar-tool)
|
|
|
|
Use --new to generate a token which clients can use to register on the /register endpoint.
|
|
Use --clean to remove all authorized tokens when you want to start fresh.
|
|
`);
|
|
};
|
|
var main = async () => {
|
|
await ensureConfigDir();
|
|
await loadAuthorizedTokens();
|
|
setConfig(await parseArgs());
|
|
const serverStatus = await isServerRunning();
|
|
if (CONFIG.cleanTokens) {
|
|
console.log(`Removing all authorized tokens...`);
|
|
clearTokens();
|
|
await saveAuthorizedTokens();
|
|
console.log(`All tokens have been removed. Tokens file cleared.`);
|
|
if (serverStatus.running) {
|
|
console.log(`Server is running with PID: ${serverStatus.pid}. Please restart it to apply changes.`);
|
|
}
|
|
process.exit(0);
|
|
}
|
|
if (CONFIG.quit) {
|
|
if (serverStatus.running) {
|
|
console.log(`Stopping server with PID: ${serverStatus.pid}`);
|
|
try {
|
|
process.kill(serverStatus.pid, "SIGTERM");
|
|
console.log("Server stopped successfully");
|
|
} catch (error2) {
|
|
console.error("Error stopping server:", error2);
|
|
}
|
|
} else {
|
|
console.log("No running server found");
|
|
}
|
|
process.exit(0);
|
|
}
|
|
if (CONFIG.newToken) {
|
|
const encodedData = await generateNewRegistrationToken();
|
|
console.log(`
|
|
CONNECTION TOKEN (paste this in your web client):`);
|
|
console.log(`${encodedData}
|
|
`);
|
|
if (serverStatus.running) {
|
|
process.exit(0);
|
|
}
|
|
}
|
|
if (!serverToken) {
|
|
serverToken = generateToken();
|
|
await saveServerTokenToEnv(serverToken);
|
|
}
|
|
if (serverStatus.running) {
|
|
console.error(`Server is already running with PID: ${serverStatus.pid}`);
|
|
console.error(`Use 'node websocket-server.js --quit' to stop the server`);
|
|
console.error(`Use 'node websocket-server.js --new <encoded-pair>' to authorize a channel-token pair`);
|
|
console.error(`Put 'npx @nucleoriofrio/webmcp --mcp' in your mcp client config`);
|
|
if (CONFIG.startMCP) {
|
|
return;
|
|
} else {
|
|
process.exit(0);
|
|
}
|
|
}
|
|
if (CONFIG.daemon) {
|
|
if (!process.argv.includes("--forked")) {
|
|
process.argv.push("--forked");
|
|
return daemonize();
|
|
}
|
|
}
|
|
await savePid();
|
|
const PORT = CONFIG.port;
|
|
httpServer.listen(PORT, () => {
|
|
console.error(`@nucleoriofrio/webmcp v0.2.0 \u2014 WebSocket server running at http://${HOST}:${PORT}`);
|
|
console.error(`WebMCP client token (for MCP path): ${serverToken}`);
|
|
console.error(`WebMCP client URL: ws://${HOST}:${PORT}${MCP_PATH2}?token=${serverToken}`);
|
|
if (CONFIG.dev) {
|
|
console.error(`[DEV] Modo desarrollo activo \u2014 agregar-tool y quitar-tool habilitados`);
|
|
}
|
|
console.error(`Use 'node websocket-server.js --new <encoded-pair>' to authorize a channel-token pair`);
|
|
});
|
|
const shutdownGracefully = async (signal) => {
|
|
console.error(`
|
|
Received ${signal}. Shutting down gracefully...`);
|
|
await saveAuthorizedTokens();
|
|
for (const channel of Object.values(channels)) {
|
|
for (const ws of channel) {
|
|
try {
|
|
ws.close();
|
|
} catch (error2) {
|
|
console.error("Error closing WebSocket connection:", error2);
|
|
}
|
|
}
|
|
}
|
|
httpServer.close(() => {
|
|
console.error("HTTP server closed");
|
|
fs3.unlink(PID_FILE).catch((err) => {
|
|
console.error("Error removing PID file:", err);
|
|
});
|
|
process.exit(0);
|
|
});
|
|
};
|
|
process.on("SIGINT", () => shutdownGracefully("SIGINT"));
|
|
process.on("SIGTERM", () => shutdownGracefully("SIGTERM"));
|
|
if (process.platform === "win32" && process.stdin.isTTY) {
|
|
try {
|
|
process.stdin.setRawMode(true);
|
|
process.stdin.resume();
|
|
process.stdin.on("data", (data) => {
|
|
if (data.length === 1 && data[0] === 3) {
|
|
shutdownGracefully("CTRL+C");
|
|
}
|
|
});
|
|
} catch (e) {
|
|
}
|
|
}
|
|
};
|
|
main().catch((error2) => {
|
|
console.error("Error in main:", error2);
|
|
process.exit(1);
|
|
}).then(() => {
|
|
if (CONFIG.startMCP) {
|
|
setTimeout(() => {
|
|
console.error("Starting up MCP Server");
|
|
runMcpServer(serverToken).catch((error2) => {
|
|
console.error("Fatal error in main():", error2);
|
|
process.exit(1);
|
|
});
|
|
}, 100);
|
|
}
|
|
});
|
|
//# sourceMappingURL=index.js.map
|