schemas/libraries/yup/download_compiled/unminified.jsCopy to clipboard//#region \0rolldown/runtime.js 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 __commonJSMin = (cb, mod) => () => (mod || (cb((mod = { exports: {} }).exports, mod), cb = null), mod.exports); var __copyProps = (to, from, except, desc) => { if (from && typeof from === "object" || typeof from === "function") for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) { key = keys[i]; if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, { get: ((k) => from[k]).bind(null, key), enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); } return to; }; var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target, mod)); //#endregion //#region ../node_modules/.pnpm/property-expr@2.0.6/node_modules/property-expr/index.js /** * Based on Kendo UI Core expression code <https://github.com/telerik/kendo-ui-core#license-information> */ var require_property_expr = /* @__PURE__ */ __commonJSMin(((exports, module) => { function Cache(maxSize) { this._maxSize = maxSize; this.clear(); } Cache.prototype.clear = function() { this._size = 0; this._values = Object.create(null); }; Cache.prototype.get = function(key) { return this._values[key]; }; Cache.prototype.set = function(key, value) { this._size >= this._maxSize && this.clear(); if (!(key in this._values)) this._size++; return this._values[key] = value; }; var SPLIT_REGEX = /[^.^\]^[]+|(?=\[\]|\.\.)/g, DIGIT_REGEX = /^\d+$/, LEAD_DIGIT_REGEX = /^\d/, SPEC_CHAR_REGEX = /[~`!#$%\^&*+=\-\[\]\\';,/{}|\\":<>\?]/g, CLEAN_QUOTES_REGEX = /^\s*(['"]?)(.*?)(\1)\s*$/, MAX_CACHE_SIZE = 512; var pathCache = new Cache(MAX_CACHE_SIZE), setCache = new Cache(MAX_CACHE_SIZE), getCache = new Cache(MAX_CACHE_SIZE); module.exports = { Cache, split, normalizePath, setter: function(path) { var parts = normalizePath(path); return setCache.get(path) || setCache.set(path, function setter(obj, value) { var index = 0; var len = parts.length; var data = obj; while (index < len - 1) { var part = parts[index]; if (part === "__proto__" || part === "constructor" || part === "prototype") return obj; data = data[parts[index++]]; } data[parts[index]] = value; }); }, getter: function(path, safe) { var parts = normalizePath(path); return getCache.get(path) || getCache.set(path, function getter(data) { var index = 0, len = parts.length; while (index < len) if (data != null || !safe) data = data[parts[index++]]; else return; return data; }); }, join: function(segments) { return segments.reduce(function(path, part) { return path + (isQuoted(part) || DIGIT_REGEX.test(part) ? "[" + part + "]" : (path ? "." : "") + part); }, ""); }, forEach: function(path, cb, thisArg) { forEach(Array.isArray(path) ? path : split(path), cb, thisArg); } }; function normalizePath(path) { return pathCache.get(path) || pathCache.set(path, split(path).map(function(part) { return part.replace(CLEAN_QUOTES_REGEX, "$2"); })); } function split(path) { return path.match(SPLIT_REGEX) || [""]; } function forEach(parts, iter, thisArg) { var len = parts.length, part, idx, isArray, isBracket; for (idx = 0; idx < len; idx++) { part = parts[idx]; if (part) { if (shouldBeQuoted(part)) part = "\"" + part + "\""; isBracket = isQuoted(part); isArray = !isBracket && /^\d+$/.test(part); iter.call(thisArg, part, isBracket, isArray, idx, parts); } } } function isQuoted(str) { return typeof str === "string" && str && ["'", "\""].indexOf(str.charAt(0)) !== -1; } function hasLeadingNumber(part) { return part.match(LEAD_DIGIT_REGEX) && !part.match(DIGIT_REGEX); } function hasSpecialChars(part) { return SPEC_CHAR_REGEX.test(part); } function shouldBeQuoted(part) { return !isQuoted(part) && (hasLeadingNumber(part) || hasSpecialChars(part)); } })); //#endregion //#region ../node_modules/.pnpm/tiny-case@1.0.3/node_modules/tiny-case/index.js var require_tiny_case = /* @__PURE__ */ __commonJSMin(((exports, module) => { const reWords = /[A-Z\xc0-\xd6\xd8-\xde]?[a-z\xdf-\xf6\xf8-\xff]+(?:['’](?:d|ll|m|re|s|t|ve))?(?=[\xac\xb1\xd7\xf7\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\xbf\u2000-\u206f \t\x0b\f\xa0\ufeff\n\r\u2028\u2029\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000]|[A-Z\xc0-\xd6\xd8-\xde]|$)|(?:[A-Z\xc0-\xd6\xd8-\xde]|[^\ud800-\udfff\xac\xb1\xd7\xf7\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\xbf\u2000-\u206f \t\x0b\f\xa0\ufeff\n\r\u2028\u2029\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\d+\u2700-\u27bfa-z\xdf-\xf6\xf8-\xffA-Z\xc0-\xd6\xd8-\xde])+(?:['’](?:D|LL|M|RE|S|T|VE))?(?=[\xac\xb1\xd7\xf7\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\xbf\u2000-\u206f \t\x0b\f\xa0\ufeff\n\r\u2028\u2029\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000]|[A-Z\xc0-\xd6\xd8-\xde](?:[a-z\xdf-\xf6\xf8-\xff]|[^\ud800-\udfff\xac\xb1\xd7\xf7\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\xbf\u2000-\u206f \t\x0b\f\xa0\ufeff\n\r\u2028\u2029\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\d+\u2700-\u27bfa-z\xdf-\xf6\xf8-\xffA-Z\xc0-\xd6\xd8-\xde])|$)|[A-Z\xc0-\xd6\xd8-\xde]?(?:[a-z\xdf-\xf6\xf8-\xff]|[^\ud800-\udfff\xac\xb1\xd7\xf7\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\xbf\u2000-\u206f \t\x0b\f\xa0\ufeff\n\r\u2028\u2029\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\d+\u2700-\u27bfa-z\xdf-\xf6\xf8-\xffA-Z\xc0-\xd6\xd8-\xde])+(?:['’](?:d|ll|m|re|s|t|ve))?|[A-Z\xc0-\xd6\xd8-\xde]+(?:['’](?:D|LL|M|RE|S|T|VE))?|\d*(?:1ST|2ND|3RD|(?![123])\dTH)(?=\b|[a-z_])|\d*(?:1st|2nd|3rd|(?![123])\dth)(?=\b|[A-Z_])|\d+|(?:[\u2700-\u27bf]|(?:\ud83c[\udde6-\uddff]){2}|[\ud800-\udbff][\udc00-\udfff])[\ufe0e\ufe0f]?(?:[\u0300-\u036f\ufe20-\ufe2f\u20d0-\u20ff]|\ud83c[\udffb-\udfff])?(?:\u200d(?:[^\ud800-\udfff]|(?:\ud83c[\udde6-\uddff]){2}|[\ud800-\udbff][\udc00-\udfff])[\ufe0e\ufe0f]?(?:[\u0300-\u036f\ufe20-\ufe2f\u20d0-\u20ff]|\ud83c[\udffb-\udfff])?)*/g; const words = (str) => str.match(reWords) || []; const upperFirst = (str) => str[0].toUpperCase() + str.slice(1); const join = (str, d) => words(str).join(d).toLowerCase(); const camelCase = (str) => words(str).reduce((acc, next) => `${acc}${!acc ? next.toLowerCase() : next[0].toUpperCase() + next.slice(1).toLowerCase()}`, ""); const pascalCase = (str) => upperFirst(camelCase(str)); const snakeCase = (str) => join(str, "_"); const kebabCase = (str) => join(str, "-"); const sentenceCase = (str) => upperFirst(join(str, " ")); const titleCase = (str) => words(str).map(upperFirst).join(" "); module.exports = { words, upperFirst, camelCase, pascalCase, snakeCase, kebabCase, sentenceCase, titleCase }; })); //#endregion //#region ../node_modules/.pnpm/toposort@2.0.2/node_modules/toposort/index.js var require_toposort = /* @__PURE__ */ __commonJSMin(((exports, module) => { /** * Topological sorting function * * @param {Array} edges * @returns {Array} */ module.exports = function(edges) { return toposort(uniqueNodes(edges), edges); }; module.exports.array = toposort; function toposort(nodes, edges) { var cursor = nodes.length, sorted = new Array(cursor), visited = {}, i = cursor, outgoingEdges = makeOutgoingEdges(edges), nodesHash = makeNodesHash(nodes); edges.forEach(function(edge) { if (!nodesHash.has(edge[0]) || !nodesHash.has(edge[1])) throw new Error("Unknown node. There is an unknown node in the supplied edges."); }); while (i--) if (!visited[i]) visit(nodes[i], i, /* @__PURE__ */ new Set()); return sorted; function visit(node, i, predecessors) { if (predecessors.has(node)) { var nodeRep; try { nodeRep = ", node was:" + JSON.stringify(node); } catch (e) { nodeRep = ""; } throw new Error("Cyclic dependency" + nodeRep); } if (!nodesHash.has(node)) throw new Error("Found unknown node. Make sure to provided all involved nodes. Unknown node: " + JSON.stringify(node)); if (visited[i]) return; visited[i] = true; var outgoing = outgoingEdges.get(node) || /* @__PURE__ */ new Set(); outgoing = Array.from(outgoing); if (i = outgoing.length) { predecessors.add(node); do { var child = outgoing[--i]; visit(child, nodesHash.get(child), predecessors); } while (i); predecessors.delete(node); } sorted[--cursor] = node; } } function uniqueNodes(arr) { var res = /* @__PURE__ */ new Set(); for (var i = 0, len = arr.length; i < len; i++) { var edge = arr[i]; res.add(edge[0]); res.add(edge[1]); } return Array.from(res); } function makeOutgoingEdges(arr) { var edges = /* @__PURE__ */ new Map(); for (var i = 0, len = arr.length; i < len; i++) { var edge = arr[i]; if (!edges.has(edge[0])) edges.set(edge[0], /* @__PURE__ */ new Set()); if (!edges.has(edge[1])) edges.set(edge[1], /* @__PURE__ */ new Set()); edges.get(edge[0]).add(edge[1]); } return edges; } function makeNodesHash(arr) { var res = /* @__PURE__ */ new Map(); for (var i = 0, len = arr.length; i < len; i++) res.set(arr[i], i); return res; } })); //#endregion //#region ../node_modules/.pnpm/yup@1.7.1/node_modules/yup/index.esm.js var import_property_expr = require_property_expr(); var import_tiny_case = require_tiny_case(); var import_toposort = /* @__PURE__ */ __toESM(require_toposort()); const toString = Object.prototype.toString; const errorToString = Error.prototype.toString; const regExpToString = RegExp.prototype.toString; const symbolToString = typeof Symbol !== "undefined" ? Symbol.prototype.toString : () => ""; const SYMBOL_REGEXP = /^Symbol\((.*)\)(.*)$/; function printNumber(val) { if (val != +val) return "NaN"; return val === 0 && 1 / val < 0 ? "-0" : "" + val; } function printSimpleValue(val, quoteStrings = false) { if (val == null || val === true || val === false) return "" + val; const typeOf = typeof val; if (typeOf === "number") return printNumber(val); if (typeOf === "string") return quoteStrings ? `"${val}"` : val; if (typeOf === "function") return "[Function " + (val.name || "anonymous") + "]"; if (typeOf === "symbol") return symbolToString.call(val).replace(SYMBOL_REGEXP, "Symbol($1)"); const tag = toString.call(val).slice(8, -1); if (tag === "Date") return isNaN(val.getTime()) ? "" + val : val.toISOString(val); if (tag === "Error" || val instanceof Error) return "[" + errorToString.call(val) + "]"; if (tag === "RegExp") return regExpToString.call(val); return null; } function printValue(value, quoteStrings) { let result = printSimpleValue(value, quoteStrings); if (result !== null) return result; return JSON.stringify(value, function(key, value) { let result = printSimpleValue(this[key], quoteStrings); if (result !== null) return result; return value; }, 2); } function toArray(value) { return value == null ? [] : [].concat(value); } let _Symbol$toStringTag, _Symbol$hasInstance, _Symbol$toStringTag2; let strReg = /\$\{\s*(\w+)\s*\}/g; _Symbol$toStringTag = Symbol.toStringTag; var ValidationErrorNoStack = class { constructor(errorOrErrors, value, field, type) { this.name = void 0; this.message = void 0; this.value = void 0; this.path = void 0; this.type = void 0; this.params = void 0; this.errors = void 0; this.inner = void 0; this[_Symbol$toStringTag] = "Error"; this.name = "ValidationError"; this.value = value; this.path = field; this.type = type; this.errors = []; this.inner = []; toArray(errorOrErrors).forEach((err) => { if (ValidationError.isError(err)) { this.errors.push(...err.errors); const innerErrors = err.inner.length ? err.inner : [err]; this.inner.push(...innerErrors); } else this.errors.push(err); }); this.message = this.errors.length > 1 ? `${this.errors.length} errors occurred` : this.errors[0]; } }; _Symbol$hasInstance = Symbol.hasInstance; _Symbol$toStringTag2 = Symbol.toStringTag; var ValidationError = class ValidationError extends Error { static formatError(message, params) { const path = params.label || params.path || "this"; params = Object.assign({}, params, { path, originalPath: params.path }); if (typeof message === "string") return message.replace(strReg, (_, key) => printValue(params[key])); if (typeof message === "function") return message(params); return message; } static isError(err) { return err && err.name === "ValidationError"; } constructor(errorOrErrors, value, field, type, disableStack) { const errorNoStack = new ValidationErrorNoStack(errorOrErrors, value, field, type); if (disableStack) return errorNoStack; super(); this.value = void 0; this.path = void 0; this.type = void 0; this.params = void 0; this.errors = []; this.inner = []; this[_Symbol$toStringTag2] = "Error"; this.name = errorNoStack.name; this.message = errorNoStack.message; this.type = errorNoStack.type; this.value = errorNoStack.value; this.path = errorNoStack.path; this.errors = errorNoStack.errors; this.inner = errorNoStack.inner; if (Error.captureStackTrace) Error.captureStackTrace(this, ValidationError); } static [_Symbol$hasInstance](inst) { return ValidationErrorNoStack[Symbol.hasInstance](inst) || super[Symbol.hasInstance](inst); } }; let mixed = { default: "${path} is invalid", required: "${path} is a required field", defined: "${path} must be defined", notNull: "${path} cannot be null", oneOf: "${path} must be one of the following values: ${values}", notOneOf: "${path} must not be one of the following values: ${values}", notType: ({ path, type, value, originalValue }) => { const castMsg = originalValue != null && originalValue !== value ? ` (cast from the value \`${printValue(originalValue, true)}\`).` : "."; return type !== "mixed" ? `${path} must be a \`${type}\` type, but the final value was: \`${printValue(value, true)}\`` + castMsg : `${path} must match the configured type. The validated value was: \`${printValue(value, true)}\`` + castMsg; } }; let string = { length: "${path} must be exactly ${length} characters", min: "${path} must be at least ${min} characters", max: "${path} must be at most ${max} characters", matches: "${path} must match the following: \"${regex}\"", email: "${path} must be a valid email", url: "${path} must be a valid URL", uuid: "${path} must be a valid UUID", datetime: "${path} must be a valid ISO date-time", datetime_precision: "${path} must be a valid ISO date-time with a sub-second precision of exactly ${precision} digits", datetime_offset: "${path} must be a valid ISO date-time with UTC \"Z\" timezone", trim: "${path} must be a trimmed string", lowercase: "${path} must be a lowercase string", uppercase: "${path} must be a upper case string" }; let number = { min: "${path} must be greater than or equal to ${min}", max: "${path} must be less than or equal to ${max}", lessThan: "${path} must be less than ${less}", moreThan: "${path} must be greater than ${more}", positive: "${path} must be a positive number", negative: "${path} must be a negative number", integer: "${path} must be an integer" }; let date = { min: "${path} field must be later than ${min}", max: "${path} field must be at earlier than ${max}" }; let boolean = { isValue: "${path} field must be ${value}" }; let object = { noUnknown: "${path} field has unspecified keys: ${unknown}", exact: "${path} object contains unknown properties: ${properties}" }; let array = { min: "${path} field must have at least ${min} items", max: "${path} field must have less than or equal to ${max} items", length: "${path} must have ${length} items" }; let tuple = { notType: (params) => { const { path, value, spec } = params; const typeLen = spec.types.length; if (Array.isArray(value)) { if (value.length < typeLen) return `${path} tuple value has too few items, expected a length of ${typeLen} but got ${value.length} for value: \`${printValue(value, true)}\``; if (value.length > typeLen) return `${path} tuple value has too many items, expected a length of ${typeLen} but got ${value.length} for value: \`${printValue(value, true)}\``; } return ValidationError.formatError(mixed.notType, params); } }; Object.assign(Object.create(null), { mixed, string, number, date, object, array, boolean, tuple }); const isSchema = (obj) => obj && obj.__isYupSchema__; var Condition = class Condition { static fromOptions(refs, config) { if (!config.then && !config.otherwise) throw new TypeError("either `then:` or `otherwise:` is required for `when()` conditions"); let { is, then, otherwise } = config; let check = typeof is === "function" ? is : (...values) => values.every((value) => value === is); return new Condition(refs, (values, schema) => { var _branch; let branch = check(...values) ? then : otherwise; return (_branch = branch == null ? void 0 : branch(schema)) != null ? _branch : schema; }); } constructor(refs, builder) { this.fn = void 0; this.refs = refs; this.refs = refs; this.fn = builder; } resolve(base, options) { let values = this.refs.map((ref) => ref.getValue(options == null ? void 0 : options.value, options == null ? void 0 : options.parent, options == null ? void 0 : options.context)); let schema = this.fn(values, base, options); if (schema === void 0 || schema === base) return base; if (!isSchema(schema)) throw new TypeError("conditions must return a schema object"); return schema.resolve(options); } }; const prefixes = { context: "$", value: "." }; var Reference = class { constructor(key, options = {}) { this.key = void 0; this.isContext = void 0; this.isValue = void 0; this.isSibling = void 0; this.path = void 0; this.getter = void 0; this.map = void 0; if (typeof key !== "string") throw new TypeError("ref must be a string, got: " + key); this.key = key.trim(); if (key === "") throw new TypeError("ref must be a non-empty string"); this.isContext = this.key[0] === prefixes.context; this.isValue = this.key[0] === prefixes.value; this.isSibling = !this.isContext && !this.isValue; let prefix = this.isContext ? prefixes.context : this.isValue ? prefixes.value : ""; this.path = this.key.slice(prefix.length); this.getter = this.path && (0, import_property_expr.getter)(this.path, true); this.map = options.map; } getValue(value, parent, context) { let result = this.isContext ? context : this.isValue ? value : parent; if (this.getter) result = this.getter(result || {}); if (this.map) result = this.map(result); return result; } /** * * @param {*} value * @param {Object} options * @param {Object=} options.context * @param {Object=} options.parent */ cast(value, options) { return this.getValue(value, options == null ? void 0 : options.parent, options == null ? void 0 : options.context); } resolve() { return this; } describe() { return { type: "ref", key: this.key }; } toString() { return `Ref(${this.key})`; } static isRef(value) { return value && value.__isYupRef; } }; Reference.prototype.__isYupRef = true; const isAbsent = (value) => value == null; function createValidation(config) { function validate({ value, path = "", options, originalValue, schema }, panic, next) { const { name, test, params, message, skipAbsent } = config; let { parent, context, abortEarly = schema.spec.abortEarly, disableStackTrace = schema.spec.disableStackTrace } = options; const resolveOptions = { value, parent, context }; function createError(overrides = {}) { const nextParams = resolveParams(Object.assign({ value, originalValue, label: schema.spec.label, path: overrides.path || path, spec: schema.spec, disableStackTrace: overrides.disableStackTrace || disableStackTrace }, params, overrides.params), resolveOptions); const error = new ValidationError(ValidationError.formatError(overrides.message || message, nextParams), value, nextParams.path, overrides.type || name, nextParams.disableStackTrace); error.params = nextParams; return error; } const invalid = abortEarly ? panic : next; let ctx = { path, parent, type: name, from: options.from, createError, resolve(item) { return resolveMaybeRef(item, resolveOptions); }, options, originalValue, schema }; const handleResult = (validOrError) => { if (ValidationError.isError(validOrError)) invalid(validOrError); else if (!validOrError) invalid(createError()); else next(null); }; const handleError = (err) => { if (ValidationError.isError(err)) invalid(err); else panic(err); }; if (skipAbsent && isAbsent(value)) return handleResult(true); let result; try { var _result; result = test.call(ctx, value, ctx); if (typeof ((_result = result) == null ? void 0 : _result.then) === "function") { if (options.sync) throw new Error(`Validation test of type: "${ctx.type}" returned a Promise during a synchronous validate. This test will finish after the validate call has returned`); return Promise.resolve(result).then(handleResult, handleError); } } catch (err) { handleError(err); return; } handleResult(result); } validate.OPTIONS = config; return validate; } function resolveParams(params, options) { if (!params) return params; for (const key of Object.keys(params)) params[key] = resolveMaybeRef(params[key], options); return params; } function resolveMaybeRef(item, options) { return Reference.isRef(item) ? item.getValue(options.value, options.parent, options.context) : item; } function getIn(schema, path, value, context = value) { let parent, lastPart, lastPartDebug; if (!path) return { parent, parentPath: path, schema }; (0, import_property_expr.forEach)(path, (_part, isBracket, isArray) => { let part = isBracket ? _part.slice(1, _part.length - 1) : _part; schema = schema.resolve({ context, parent, value }); let isTuple = schema.type === "tuple"; let idx = isArray ? parseInt(part, 10) : 0; if (schema.innerType || isTuple) { if (isTuple && !isArray) throw new Error(`Yup.reach cannot implicitly index into a tuple type. the path part "${lastPartDebug}" must contain an index to the tuple element, e.g. "${lastPartDebug}[0]"`); if (value && idx >= value.length) throw new Error(`Yup.reach cannot resolve an array item at index: ${_part}, in the path: ${path}. because there is no value at that index. `); parent = value; value = value && value[idx]; schema = isTuple ? schema.spec.types[idx] : schema.innerType; } if (!isArray) { if (!schema.fields || !schema.fields[part]) throw new Error(`The schema does not contain the path: ${path}. (failed at: ${lastPartDebug} which is a type: "${schema.type}")`); parent = value; value = value && value[part]; schema = schema.fields[part]; } lastPart = part; lastPartDebug = isBracket ? "[" + _part + "]" : "." + _part; }); return { schema, parent, parentPath: lastPart }; } var ReferenceSet = class ReferenceSet extends Set { describe() { const description = []; for (const item of this.values()) description.push(Reference.isRef(item) ? item.describe() : item); return description; } resolveAll(resolve) { let result = []; for (const item of this.values()) result.push(resolve(item)); return result; } clone() { return new ReferenceSet(this.values()); } merge(newItems, removeItems) { const next = this.clone(); newItems.forEach((value) => next.add(value)); removeItems.forEach((value) => next.delete(value)); return next; } }; function clone(src, seen = /* @__PURE__ */ new Map()) { if (isSchema(src) || !src || typeof src !== "object") return src; if (seen.has(src)) return seen.get(src); let copy; if (src instanceof Date) { copy = new Date(src.getTime()); seen.set(src, copy); } else if (src instanceof RegExp) { copy = new RegExp(src); seen.set(src, copy); } else if (Array.isArray(src)) { copy = new Array(src.length); seen.set(src, copy); for (let i = 0; i < src.length; i++) copy[i] = clone(src[i], seen); } else if (src instanceof Map) { copy = /* @__PURE__ */ new Map(); seen.set(src, copy); for (const [k, v] of src.entries()) copy.set(k, clone(v, seen)); } else if (src instanceof Set) { copy = /* @__PURE__ */ new Set(); seen.set(src, copy); for (const v of src) copy.add(clone(v, seen)); } else if (src instanceof Object) { copy = {}; seen.set(src, copy); for (const [k, v] of Object.entries(src)) copy[k] = clone(v, seen); } else throw Error(`Unable to clone ${src}`); return copy; } /** * Copied from @standard-schema/spec to avoid having a dependency on it. * https://github.com/standard-schema/standard-schema/blob/main/packages/spec/src/index.ts */ function createStandardPath(path) { if (!(path != null && path.length)) return; const segments = []; let currentSegment = ""; let inBrackets = false; let inQuotes = false; for (let i = 0; i < path.length; i++) { const char = path[i]; if (char === "[" && !inQuotes) { if (currentSegment) { segments.push(...currentSegment.split(".").filter(Boolean)); currentSegment = ""; } inBrackets = true; continue; } if (char === "]" && !inQuotes) { if (currentSegment) { if (/^\d+$/.test(currentSegment)) segments.push(currentSegment); else segments.push(currentSegment.replace(/^"|"$/g, "")); currentSegment = ""; } inBrackets = false; continue; } if (char === "\"") { inQuotes = !inQuotes; continue; } if (char === "." && !inBrackets && !inQuotes) { if (currentSegment) { segments.push(currentSegment); currentSegment = ""; } continue; } currentSegment += char; } if (currentSegment) segments.push(...currentSegment.split(".").filter(Boolean)); return segments; } function createStandardIssues(error, parentPath) { const path = parentPath ? `${parentPath}.${error.path}` : error.path; return error.errors.map((err) => ({ message: err, path: createStandardPath(path) })); } function issuesFromValidationError(error, parentPath) { var _error$inner; if (!((_error$inner = error.inner) != null && _error$inner.length) && error.errors.length) return createStandardIssues(error, parentPath); const path = parentPath ? `${parentPath}.${error.path}` : error.path; return error.inner.flatMap((err) => issuesFromValidationError(err, path)); } var Schema = class { constructor(options) { this.type = void 0; this.deps = []; this.tests = void 0; this.transforms = void 0; this.conditions = []; this._mutate = void 0; this.internalTests = {}; this._whitelist = new ReferenceSet(); this._blacklist = new ReferenceSet(); this.exclusiveTests = Object.create(null); this._typeCheck = void 0; this.spec = void 0; this.tests = []; this.transforms = []; this.withMutation(() => { this.typeError(mixed.notType); }); this.type = options.type; this._typeCheck = options.check; this.spec = Object.assign({ strip: false, strict: false, abortEarly: true, recursive: true, disableStackTrace: false, nullable: false, optional: true, coerce: true }, options == null ? void 0 : options.spec); this.withMutation((s) => { s.nonNullable(); }); } get _type() { return this.type; } clone(spec) { if (this._mutate) { if (spec) Object.assign(this.spec, spec); return this; } const next = Object.create(Object.getPrototypeOf(this)); next.type = this.type; next._typeCheck = this._typeCheck; next._whitelist = this._whitelist.clone(); next._blacklist = this._blacklist.clone(); next.internalTests = Object.assign({}, this.internalTests); next.exclusiveTests = Object.assign({}, this.exclusiveTests); next.deps = [...this.deps]; next.conditions = [...this.conditions]; next.tests = [...this.tests]; next.transforms = [...this.transforms]; next.spec = clone(Object.assign({}, this.spec, spec)); return next; } label(label) { let next = this.clone(); next.spec.label = label; return next; } meta(...args) { if (args.length === 0) return this.spec.meta; let next = this.clone(); next.spec.meta = Object.assign(next.spec.meta || {}, args[0]); return next; } withMutation(fn) { let before = this._mutate; this._mutate = true; let result = fn(this); this._mutate = before; return result; } concat(schema) { if (!schema || schema === this) return this; if (schema.type !== this.type && this.type !== "mixed") throw new TypeError(`You cannot \`concat()\` schema's of different types: ${this.type} and ${schema.type}`); let base = this; let combined = schema.clone(); combined.spec = Object.assign({}, base.spec, combined.spec); combined.internalTests = Object.assign({}, base.internalTests, combined.internalTests); combined._whitelist = base._whitelist.merge(schema._whitelist, schema._blacklist); combined._blacklist = base._blacklist.merge(schema._blacklist, schema._whitelist); combined.tests = base.tests; combined.exclusiveTests = base.exclusiveTests; combined.withMutation((next) => { schema.tests.forEach((fn) => { next.test(fn.OPTIONS); }); }); combined.transforms = [...base.transforms, ...combined.transforms]; return combined; } isType(v) { if (v == null) { if (this.spec.nullable && v === null) return true; if (this.spec.optional && v === void 0) return true; return false; } return this._typeCheck(v); } resolve(options) { let schema = this; if (schema.conditions.length) { let conditions = schema.conditions; schema = schema.clone(); schema.conditions = []; schema = conditions.reduce((prevSchema, condition) => condition.resolve(prevSchema, options), schema); schema = schema.resolve(options); } return schema; } resolveOptions(options) { var _options$strict, _options$abortEarly, _options$recursive, _options$disableStack; return Object.assign({}, options, { from: options.from || [], strict: (_options$strict = options.strict) != null ? _options$strict : this.spec.strict, abortEarly: (_options$abortEarly = options.abortEarly) != null ? _options$abortEarly : this.spec.abortEarly, recursive: (_options$recursive = options.recursive) != null ? _options$recursive : this.spec.recursive, disableStackTrace: (_options$disableStack = options.disableStackTrace) != null ? _options$disableStack : this.spec.disableStackTrace }); } /** * Run the configured transform pipeline over an input value. */ cast(value, options = {}) { let resolvedSchema = this.resolve(Object.assign({}, options, { value })); let allowOptionality = options.assert === "ignore-optionality"; let result = resolvedSchema._cast(value, options); if (options.assert !== false && !resolvedSchema.isType(result)) { if (allowOptionality && isAbsent(result)) return result; let formattedValue = printValue(value); let formattedResult = printValue(result); throw new TypeError(`The value of ${options.path || "field"} could not be cast to a value that satisfies the schema type: "${resolvedSchema.type}". \n\nattempted value: ${formattedValue} \n` + (formattedResult !== formattedValue ? `result of cast: ${formattedResult}` : "")); } return result; } _cast(rawValue, options) { let value = rawValue === void 0 ? rawValue : this.transforms.reduce((prevValue, fn) => fn.call(this, prevValue, rawValue, this, options), rawValue); if (value === void 0) value = this.getDefault(options); return value; } _validate(_value, options = {}, panic, next) { let { path, originalValue = _value, strict = this.spec.strict } = options; let value = _value; if (!strict) value = this._cast(value, Object.assign({ assert: false }, options)); let initialTests = []; for (let test of Object.values(this.internalTests)) if (test) initialTests.push(test); this.runTests({ path, value, originalValue, options, tests: initialTests }, panic, (initialErrors) => { if (initialErrors.length) return next(initialErrors, value); this.runTests({ path, value, originalValue, options, tests: this.tests }, panic, next); }); } /** * Executes a set of validations, either schema, produced Tests or a nested * schema validate result. */ runTests(runOptions, panic, next) { let fired = false; let { tests, value, originalValue, path, options } = runOptions; let panicOnce = (arg) => { if (fired) return; fired = true; panic(arg, value); }; let nextOnce = (arg) => { if (fired) return; fired = true; next(arg, value); }; let count = tests.length; let nestedErrors = []; if (!count) return nextOnce([]); let args = { value, originalValue, path, options, schema: this }; for (let i = 0; i < tests.length; i++) { const test = tests[i]; test(args, panicOnce, function finishTestRun(err) { if (err) Array.isArray(err) ? nestedErrors.push(...err) : nestedErrors.push(err); if (--count <= 0) nextOnce(nestedErrors); }); } } asNestedTest({ key, index, parent, parentPath, originalParent, options }) { const k = key != null ? key : index; if (k == null) throw TypeError("Must include `key` or `index` for nested validations"); const isIndex = typeof k === "number"; let value = parent[k]; const testOptions = Object.assign({}, options, { strict: true, parent, value, originalValue: originalParent[k], key: void 0, [isIndex ? "index" : "key"]: k, path: isIndex || k.includes(".") ? `${parentPath || ""}[${isIndex ? k : `"${k}"`}]` : (parentPath ? `${parentPath}.` : "") + key }); return (_, panic, next) => this.resolve(testOptions)._validate(value, testOptions, panic, next); } validate(value, options) { var _options$disableStack2; let schema = this.resolve(Object.assign({}, options, { value })); let disableStackTrace = (_options$disableStack2 = options == null ? void 0 : options.disableStackTrace) != null ? _options$disableStack2 : schema.spec.disableStackTrace; return new Promise((resolve, reject) => schema._validate(value, options, (error, parsed) => { if (ValidationError.isError(error)) error.value = parsed; reject(error); }, (errors, validated) => { if (errors.length) reject(new ValidationError(errors, validated, void 0, void 0, disableStackTrace)); else resolve(validated); })); } validateSync(value, options) { var _options$disableStack3; let schema = this.resolve(Object.assign({}, options, { value })); let result; let disableStackTrace = (_options$disableStack3 = options == null ? void 0 : options.disableStackTrace) != null ? _options$disableStack3 : schema.spec.disableStackTrace; schema._validate(value, Object.assign({}, options, { sync: true }), (error, parsed) => { if (ValidationError.isError(error)) error.value = parsed; throw error; }, (errors, validated) => { if (errors.length) throw new ValidationError(errors, value, void 0, void 0, disableStackTrace); result = validated; }); return result; } isValid(value, options) { return this.validate(value, options).then(() => true, (err) => { if (ValidationError.isError(err)) return false; throw err; }); } isValidSync(value, options) { try { this.validateSync(value, options); return true; } catch (err) { if (ValidationError.isError(err)) return false; throw err; } } _getDefault(options) { let defaultValue = this.spec.default; if (defaultValue == null) return defaultValue; return typeof defaultValue === "function" ? defaultValue.call(this, options) : clone(defaultValue); } getDefault(options) { return this.resolve(options || {})._getDefault(options); } default(def) { if (arguments.length === 0) return this._getDefault(); return this.clone({ default: def }); } strict(isStrict = true) { return this.clone({ strict: isStrict }); } nullability(nullable, message) { const next = this.clone({ nullable }); next.internalTests.nullable = createValidation({ message, name: "nullable", test(value) { return value === null ? this.schema.spec.nullable : true; } }); return next; } optionality(optional, message) { const next = this.clone({ optional }); next.internalTests.optionality = createValidation({ message, name: "optionality", test(value) { return value === void 0 ? this.schema.spec.optional : true; } }); return next; } optional() { return this.optionality(true); } defined(message = mixed.defined) { return this.optionality(false, message); } nullable() { return this.nullability(true); } nonNullable(message = mixed.notNull) { return this.nullability(false, message); } required(message = mixed.required) { return this.clone().withMutation((next) => next.nonNullable(message).defined(message)); } notRequired() { return this.clone().withMutation((next) => next.nullable().optional()); } transform(fn) { let next = this.clone(); next.transforms.push(fn); return next; } /** * Adds a test function to the schema's queue of tests. * tests can be exclusive or non-exclusive. * * - exclusive tests, will replace any existing tests of the same name. * - non-exclusive: can be stacked * * If a non-exclusive test is added to a schema with an exclusive test of the same name * the exclusive test is removed and further tests of the same name will be stacked. * * If an exclusive test is added to a schema with non-exclusive tests of the same name * the previous tests are removed and further tests of the same name will replace each other. */ test(...args) { let opts; if (args.length === 1) if (typeof args[0] === "function") opts = { test: args[0] }; else opts = args[0]; else if (args.length === 2) opts = { name: args[0], test: args[1] }; else opts = { name: args[0], message: args[1], test: args[2] }; if (opts.message === void 0) opts.message = mixed.default; if (typeof opts.test !== "function") throw new TypeError("`test` is a required parameters"); let next = this.clone(); let validate = createValidation(opts); let isExclusive = opts.exclusive || opts.name && next.exclusiveTests[opts.name] === true; if (opts.exclusive) { if (!opts.name) throw new TypeError("Exclusive tests must provide a unique `name` identifying the test"); } if (opts.name) next.exclusiveTests[opts.name] = !!opts.exclusive; next.tests = next.tests.filter((fn) => { if (fn.OPTIONS.name === opts.name) { if (isExclusive) return false; if (fn.OPTIONS.test === validate.OPTIONS.test) return false; } return true; }); next.tests.push(validate); return next; } when(keys, options) { if (!Array.isArray(keys) && typeof keys !== "string") { options = keys; keys = "."; } let next = this.clone(); let deps = toArray(keys).map((key) => new Reference(key)); deps.forEach((dep) => { if (dep.isSibling) next.deps.push(dep.key); }); next.conditions.push(typeof options === "function" ? new Condition(deps, options) : Condition.fromOptions(deps, options)); return next; } typeError(message) { let next = this.clone(); next.internalTests.typeError = createValidation({ message, name: "typeError", skipAbsent: true, test(value) { if (!this.schema._typeCheck(value)) return this.createError({ params: { type: this.schema.type } }); return true; } }); return next; } oneOf(enums, message = mixed.oneOf) { let next = this.clone(); enums.forEach((val) => { next._whitelist.add(val); next._blacklist.delete(val); }); next.internalTests.whiteList = createValidation({ message, name: "oneOf", skipAbsent: true, test(value) { let valids = this.schema._whitelist; let resolved = valids.resolveAll(this.resolve); return resolved.includes(value) ? true : this.createError({ params: { values: Array.from(valids).join(", "), resolved } }); } }); return next; } notOneOf(enums, message = mixed.notOneOf) { let next = this.clone(); enums.forEach((val) => { next._blacklist.add(val); next._whitelist.delete(val); }); next.internalTests.blacklist = createValidation({ message, name: "notOneOf", test(value) { let invalids = this.schema._blacklist; let resolved = invalids.resolveAll(this.resolve); if (resolved.includes(value)) return this.createError({ params: { values: Array.from(invalids).join(", "), resolved } }); return true; } }); return next; } strip(strip = true) { let next = this.clone(); next.spec.strip = strip; return next; } /** * Return a serialized description of the schema including validations, flags, types etc. * * @param options Provide any needed context for resolving runtime schema alterations (lazy, when conditions, etc). */ describe(options) { const next = (options ? this.resolve(options) : this).clone(); const { label, meta, optional, nullable } = next.spec; return { meta, label, optional, nullable, default: next.getDefault(options), type: next.type, oneOf: next._whitelist.describe(), notOneOf: next._blacklist.describe(), tests: next.tests.filter((n, idx, list) => list.findIndex((c) => c.OPTIONS.name === n.OPTIONS.name) === idx).map((fn) => { const params = fn.OPTIONS.params && options ? resolveParams(Object.assign({}, fn.OPTIONS.params), options) : fn.OPTIONS.params; return { name: fn.OPTIONS.name, params }; }) }; } get ["~standard"]() { const schema = this; return { version: 1, vendor: "yup", async validate(value) { try { return { value: await schema.validate(value, { abortEarly: false }) }; } catch (err) { if (err instanceof ValidationError) return { issues: issuesFromValidationError(err) }; throw err; } } }; } }; Schema.prototype.__isYupSchema__ = true; for (const method of ["validate", "validateSync"]) Schema.prototype[`${method}At`] = function(path, value, options = {}) { const { parent, parentPath, schema } = getIn(this, path, value, options.context); return schema[method](parent && parent[parentPath], Object.assign({}, options, { parent, path })); }; for (const alias of ["equals", "is"]) Schema.prototype[alias] = Schema.prototype.oneOf; for (const alias of ["not", "nope"]) Schema.prototype[alias] = Schema.prototype.notOneOf; const returnsTrue = () => true; function create$8(spec) { return new MixedSchema(spec); } var MixedSchema = class extends Schema { constructor(spec) { super(typeof spec === "function" ? { type: "mixed", check: spec } : Object.assign({ type: "mixed", check: returnsTrue }, spec)); } }; create$8.prototype = MixedSchema.prototype; function create$7() { return new BooleanSchema(); } var BooleanSchema = class extends Schema { constructor() { super({ type: "boolean", check(v) { if (v instanceof Boolean) v = v.valueOf(); return typeof v === "boolean"; } }); this.withMutation(() => { this.transform((value, _raw) => { if (this.spec.coerce && !this.isType(value)) { if (/^(true|1)$/i.test(String(value))) return true; if (/^(false|0)$/i.test(String(value))) return false; } return value; }); }); } isTrue(message = boolean.isValue) { return this.test({ message, name: "is-value", exclusive: true, params: { value: "true" }, test(value) { return isAbsent(value) || value === true; } }); } isFalse(message = boolean.isValue) { return this.test({ message, name: "is-value", exclusive: true, params: { value: "false" }, test(value) { return isAbsent(value) || value === false; } }); } default(def) { return super.default(def); } defined(msg) { return super.defined(msg); } optional() { return super.optional(); } required(msg) { return super.required(msg); } notRequired() { return super.notRequired(); } nullable() { return super.nullable(); } nonNullable(msg) { return super.nonNullable(msg); } strip(v) { return super.strip(v); } }; create$7.prototype = BooleanSchema.prototype; /** * This file is a modified version of the file from the following repository: * Date.parse with progressive enhancement for ISO 8601 <https://github.com/csnover/js-iso8601> * NON-CONFORMANT EDITION. * © 2011 Colin Snover <http://zetafleet.com> * Released under MIT license. */ const isoReg = /^(\d{4}|[+-]\d{6})(?:-?(\d{2})(?:-?(\d{2}))?)?(?:[ T]?(\d{2}):?(\d{2})(?::?(\d{2})(?:[,.](\d{1,}))?)?(?:(Z)|([+-])(\d{2})(?::?(\d{2}))?)?)?$/; function parseIsoDate(date) { const struct = parseDateStruct(date); if (!struct) return Date.parse ? Date.parse(date) : NaN; if (struct.z === void 0 && struct.plusMinus === void 0) return new Date(struct.year, struct.month, struct.day, struct.hour, struct.minute, struct.second, struct.millisecond).valueOf(); let totalMinutesOffset = 0; if (struct.z !== "Z" && struct.plusMinus !== void 0) { totalMinutesOffset = struct.hourOffset * 60 + struct.minuteOffset; if (struct.plusMinus === "+") totalMinutesOffset = 0 - totalMinutesOffset; } return Date.UTC(struct.year, struct.month, struct.day, struct.hour, struct.minute + totalMinutesOffset, struct.second, struct.millisecond); } function parseDateStruct(date) { var _regexResult$7$length, _regexResult$; const regexResult = isoReg.exec(date); if (!regexResult) return null; return { year: toNumber(regexResult[1]), month: toNumber(regexResult[2], 1) - 1, day: toNumber(regexResult[3], 1), hour: toNumber(regexResult[4]), minute: toNumber(regexResult[5]), second: toNumber(regexResult[6]), millisecond: regexResult[7] ? toNumber(regexResult[7].substring(0, 3)) : 0, precision: (_regexResult$7$length = (_regexResult$ = regexResult[7]) == null ? void 0 : _regexResult$.length) != null ? _regexResult$7$length : void 0, z: regexResult[8] || void 0, plusMinus: regexResult[9] || void 0, hourOffset: toNumber(regexResult[10]), minuteOffset: toNumber(regexResult[11]) }; } function toNumber(str, defaultValue = 0) { return Number(str) || defaultValue; } let rEmail = /^[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])?)*$/; let rUrl = /^((https?|ftp):)?\/\/(((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:)*@)?(((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]))|((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?)(:\d*)?)(\/((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)?)?(\?((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|[\uE000-\uF8FF]|\/|\?)*)?(\#((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|\/|\?)*)?$/i; let rUUID = /^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i; let rIsoDateTime = new RegExp(`^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}(\\.\\d+)?(([+-]\\d{2}(:?\\d{2})?)|Z)$`); let isTrimmed = (value) => isAbsent(value) || value === value.trim(); let objStringTag = {}.toString(); function create$6() { return new StringSchema(); } var StringSchema = class extends Schema { constructor() { super({ type: "string", check(value) { if (value instanceof String) value = value.valueOf(); return typeof value === "string"; } }); this.withMutation(() => { this.transform((value, _raw) => { if (!this.spec.coerce || this.isType(value)) return value; if (Array.isArray(value)) return value; const strValue = value != null && value.toString ? value.toString() : value; if (strValue === objStringTag) return value; return strValue; }); }); } required(message) { return super.required(message).withMutation((schema) => schema.test({ message: message || mixed.required, name: "required", skipAbsent: true, test: (value) => !!value.length })); } notRequired() { return super.notRequired().withMutation((schema) => { schema.tests = schema.tests.filter((t) => t.OPTIONS.name !== "required"); return schema; }); } length(length, message = string.length) { return this.test({ message, name: "length", exclusive: true, params: { length }, skipAbsent: true, test(value) { return value.length === this.resolve(length); } }); } min(min, message = string.min) { return this.test({ message, name: "min", exclusive: true, params: { min }, skipAbsent: true, test(value) { return value.length >= this.resolve(min); } }); } max(max, message = string.max) { return this.test({ name: "max", exclusive: true, message, params: { max }, skipAbsent: true, test(value) { return value.length <= this.resolve(max); } }); } matches(regex, options) { let excludeEmptyString = false; let message; let name; if (options) if (typeof options === "object") ({excludeEmptyString = false, message, name} = options); else message = options; return this.test({ name: name || "matches", message: message || string.matches, params: { regex }, skipAbsent: true, test: (value) => value === "" && excludeEmptyString || value.search(regex) !== -1 }); } email(message = string.email) { return this.matches(rEmail, { name: "email", message, excludeEmptyString: true }); } url(message = string.url) { return this.matches(rUrl, { name: "url", message, excludeEmptyString: true }); } uuid(message = string.uuid) { return this.matches(rUUID, { name: "uuid", message, excludeEmptyString: false }); } datetime(options) { let message = ""; let allowOffset; let precision; if (options) if (typeof options === "object") ({message = "", allowOffset = false, precision = void 0} = options); else message = options; return this.matches(rIsoDateTime, { name: "datetime", message: message || string.datetime, excludeEmptyString: true }).test({ name: "datetime_offset", message: message || string.datetime_offset, params: { allowOffset }, skipAbsent: true, test: (value) => { if (!value || allowOffset) return true; const struct = parseDateStruct(value); if (!struct) return false; return !!struct.z; } }).test({ name: "datetime_precision", message: message || string.datetime_precision, params: { precision }, skipAbsent: true, test: (value) => { if (!value || precision == void 0) return true; const struct = parseDateStruct(value); if (!struct) return false; return struct.precision === precision; } }); } ensure() { return this.default("").transform((val) => val === null ? "" : val); } trim(message = string.trim) { return this.transform((val) => val != null ? val.trim() : val).test({ message, name: "trim", test: isTrimmed }); } lowercase(message = string.lowercase) { return this.transform((value) => !isAbsent(value) ? value.toLowerCase() : value).test({ message, name: "string_case", exclusive: true, skipAbsent: true, test: (value) => isAbsent(value) || value === value.toLowerCase() }); } uppercase(message = string.uppercase) { return this.transform((value) => !isAbsent(value) ? value.toUpperCase() : value).test({ message, name: "string_case", exclusive: true, skipAbsent: true, test: (value) => isAbsent(value) || value === value.toUpperCase() }); } }; create$6.prototype = StringSchema.prototype; let isNaN$1 = (value) => value != +value; function create$5() { return new NumberSchema(); } var NumberSchema = class extends Schema { constructor() { super({ type: "number", check(value) { if (value instanceof Number) value = value.valueOf(); return typeof value === "number" && !isNaN$1(value); } }); this.withMutation(() => { this.transform((value, _raw) => { if (!this.spec.coerce) return value; let parsed = value; if (typeof parsed === "string") { parsed = parsed.replace(/\s/g, ""); if (parsed === "") return NaN; parsed = +parsed; } if (this.isType(parsed) || parsed === null) return parsed; return parseFloat(parsed); }); }); } min(min, message = number.min) { return this.test({ message, name: "min", exclusive: true, params: { min }, skipAbsent: true, test(value) { return value >= this.resolve(min); } }); } max(max, message = number.max) { return this.test({ message, name: "max", exclusive: true, params: { max }, skipAbsent: true, test(value) { return value <= this.resolve(max); } }); } lessThan(less, message = number.lessThan) { return this.test({ message, name: "max", exclusive: true, params: { less }, skipAbsent: true, test(value) { return value < this.resolve(less); } }); } moreThan(more, message = number.moreThan) { return this.test({ message, name: "min", exclusive: true, params: { more }, skipAbsent: true, test(value) { return value > this.resolve(more); } }); } positive(msg = number.positive) { return this.moreThan(0, msg); } negative(msg = number.negative) { return this.lessThan(0, msg); } integer(message = number.integer) { return this.test({ name: "integer", message, skipAbsent: true, test: (val) => Number.isInteger(val) }); } truncate() { return this.transform((value) => !isAbsent(value) ? value | 0 : value); } round(method) { var _method; let avail = [ "ceil", "floor", "round", "trunc" ]; method = ((_method = method) == null ? void 0 : _method.toLowerCase()) || "round"; if (method === "trunc") return this.truncate(); if (avail.indexOf(method.toLowerCase()) === -1) throw new TypeError("Only valid options for round() are: " + avail.join(", ")); return this.transform((value) => !isAbsent(value) ? Math[method](value) : value); } }; create$5.prototype = NumberSchema.prototype; let invalidDate = /* @__PURE__ */ new Date(""); let isDate = (obj) => Object.prototype.toString.call(obj) === "[object Date]"; function create$4() { return new DateSchema(); } var DateSchema = class DateSchema extends Schema { constructor() { super({ type: "date", check(v) { return isDate(v) && !isNaN(v.getTime()); } }); this.withMutation(() => { this.transform((value, _raw) => { if (!this.spec.coerce || this.isType(value) || value === null) return value; value = parseIsoDate(value); return !isNaN(value) ? new Date(value) : DateSchema.INVALID_DATE; }); }); } prepareParam(ref, name) { let param; if (!Reference.isRef(ref)) { let cast = this.cast(ref); if (!this._typeCheck(cast)) throw new TypeError(`\`${name}\` must be a Date or a value that can be \`cast()\` to a Date`); param = cast; } else param = ref; return param; } min(min, message = date.min) { let limit = this.prepareParam(min, "min"); return this.test({ message, name: "min", exclusive: true, params: { min }, skipAbsent: true, test(value) { return value >= this.resolve(limit); } }); } max(max, message = date.max) { let limit = this.prepareParam(max, "max"); return this.test({ message, name: "max", exclusive: true, params: { max }, skipAbsent: true, test(value) { return value <= this.resolve(limit); } }); } }; DateSchema.INVALID_DATE = invalidDate; create$4.prototype = DateSchema.prototype; create$4.INVALID_DATE = invalidDate; function sortFields(fields, excludedEdges = []) { let edges = []; let nodes = /* @__PURE__ */ new Set(); let excludes = new Set(excludedEdges.map(([a, b]) => `${a}-${b}`)); function addNode(depPath, key) { let node = (0, import_property_expr.split)(depPath)[0]; nodes.add(node); if (!excludes.has(`${key}-${node}`)) edges.push([key, node]); } for (const key of Object.keys(fields)) { let value = fields[key]; nodes.add(key); if (Reference.isRef(value) && value.isSibling) addNode(value.path, key); else if (isSchema(value) && "deps" in value) value.deps.forEach((path) => addNode(path, key)); } return import_toposort.default.array(Array.from(nodes), edges).reverse(); } function findIndex(arr, err) { let idx = Infinity; arr.some((key, ii) => { var _err$path; if ((_err$path = err.path) != null && _err$path.includes(key)) { idx = ii; return true; } }); return idx; } function sortByKeyOrder(keys) { return (a, b) => { return findIndex(keys, a) - findIndex(keys, b); }; } const parseJson = (value, _, schema) => { if (typeof value !== "string") return value; let parsed = value; try { parsed = JSON.parse(value); } catch (err) {} return schema.isType(parsed) ? parsed : value; }; function deepPartial(schema) { if ("fields" in schema) { const partial = {}; for (const [key, fieldSchema] of Object.entries(schema.fields)) partial[key] = deepPartial(fieldSchema); return schema.setFields(partial); } if (schema.type === "array") { const nextArray = schema.optional(); if (nextArray.innerType) nextArray.innerType = deepPartial(nextArray.innerType); return nextArray; } if (schema.type === "tuple") return schema.optional().clone({ types: schema.spec.types.map(deepPartial) }); if ("optional" in schema) return schema.optional(); return schema; } const deepHas = (obj, p) => { const path = [...(0, import_property_expr.normalizePath)(p)]; if (path.length === 1) return path[0] in obj; let last = path.pop(); let parent = (0, import_property_expr.getter)((0, import_property_expr.join)(path), true)(obj); return !!(parent && last in parent); }; let isObject = (obj) => Object.prototype.toString.call(obj) === "[object Object]"; function unknown(ctx, value) { let known = Object.keys(ctx.fields); return Object.keys(value).filter((key) => known.indexOf(key) === -1); } const defaultSort = sortByKeyOrder([]); function create$3(spec) { return new ObjectSchema(spec); } var ObjectSchema = class extends Schema { constructor(spec) { super({ type: "object", check(value) { return isObject(value) || typeof value === "function"; } }); this.fields = Object.create(null); this._sortErrors = defaultSort; this._nodes = []; this._excludedEdges = []; this.withMutation(() => { if (spec) this.shape(spec); }); } _cast(_value, options = {}) { var _options$stripUnknown; let value = super._cast(_value, options); if (value === void 0) return this.getDefault(options); if (!this._typeCheck(value)) return value; let fields = this.fields; let strip = (_options$stripUnknown = options.stripUnknown) != null ? _options$stripUnknown : this.spec.noUnknown; let props = [].concat(this._nodes, Object.keys(value).filter((v) => !this._nodes.includes(v))); let intermediateValue = {}; let innerOptions = Object.assign({}, options, { parent: intermediateValue, __validating: options.__validating || false }); let isChanged = false; for (const prop of props) { let field = fields[prop]; let exists = prop in value; let inputValue = value[prop]; if (field) { let fieldValue; innerOptions.path = (options.path ? `${options.path}.` : "") + prop; field = field.resolve({ value: inputValue, context: options.context, parent: intermediateValue }); let fieldSpec = field instanceof Schema ? field.spec : void 0; let strict = fieldSpec == null ? void 0 : fieldSpec.strict; if (fieldSpec != null && fieldSpec.strip) { isChanged = isChanged || prop in value; continue; } fieldValue = !options.__validating || !strict ? field.cast(inputValue, innerOptions) : inputValue; if (fieldValue !== void 0) intermediateValue[prop] = fieldValue; } else if (exists && !strip) intermediateValue[prop] = inputValue; if (exists !== prop in intermediateValue || intermediateValue[prop] !== inputValue) isChanged = true; } return isChanged ? intermediateValue : value; } _validate(_value, options = {}, panic, next) { let { from = [], originalValue = _value, recursive = this.spec.recursive } = options; options.from = [{ schema: this, value: originalValue }, ...from]; options.__validating = true; options.originalValue = originalValue; super._validate(_value, options, panic, (objectErrors, value) => { if (!recursive || !isObject(value)) { next(objectErrors, value); return; } originalValue = originalValue || value; let tests = []; for (let key of this._nodes) { let field = this.fields[key]; if (!field || Reference.isRef(field)) continue; tests.push(field.asNestedTest({ options, key, parent: value, parentPath: options.path, originalParent: originalValue })); } this.runTests({ tests, value, originalValue, options }, panic, (fieldErrors) => { next(fieldErrors.sort(this._sortErrors).concat(objectErrors), value); }); }); } clone(spec) { const next = super.clone(spec); next.fields = Object.assign({}, this.fields); next._nodes = this._nodes; next._excludedEdges = this._excludedEdges; next._sortErrors = this._sortErrors; return next; } concat(schema) { let next = super.concat(schema); let nextFields = next.fields; for (let [field, schemaOrRef] of Object.entries(this.fields)) { const target = nextFields[field]; nextFields[field] = target === void 0 ? schemaOrRef : target; } return next.withMutation((s) => s.setFields(nextFields, [...this._excludedEdges, ...schema._excludedEdges])); } _getDefault(options) { if ("default" in this.spec) return super._getDefault(options); if (!this._nodes.length) return; let dft = {}; this._nodes.forEach((key) => { var _innerOptions; const field = this.fields[key]; let innerOptions = options; if ((_innerOptions = innerOptions) != null && _innerOptions.value) innerOptions = Object.assign({}, innerOptions, { parent: innerOptions.value, value: innerOptions.value[key] }); dft[key] = field && "getDefault" in field ? field.getDefault(innerOptions) : void 0; }); return dft; } setFields(shape, excludedEdges) { let next = this.clone(); next.fields = shape; next._nodes = sortFields(shape, excludedEdges); next._sortErrors = sortByKeyOrder(Object.keys(shape)); if (excludedEdges) next._excludedEdges = excludedEdges; return next; } shape(additions, excludes = []) { return this.clone().withMutation((next) => { let edges = next._excludedEdges; if (excludes.length) { if (!Array.isArray(excludes[0])) excludes = [excludes]; edges = [...next._excludedEdges, ...excludes]; } return next.setFields(Object.assign(next.fields, additions), edges); }); } partial() { const partial = {}; for (const [key, schema] of Object.entries(this.fields)) partial[key] = "optional" in schema && schema.optional instanceof Function ? schema.optional() : schema; return this.setFields(partial); } deepPartial() { return deepPartial(this); } pick(keys) { const picked = {}; for (const key of keys) if (this.fields[key]) picked[key] = this.fields[key]; return this.setFields(picked, this._excludedEdges.filter(([a, b]) => keys.includes(a) && keys.includes(b))); } omit(keys) { const remaining = []; for (const key of Object.keys(this.fields)) { if (keys.includes(key)) continue; remaining.push(key); } return this.pick(remaining); } from(from, to, alias) { let fromGetter = (0, import_property_expr.getter)(from, true); return this.transform((obj) => { if (!obj) return obj; let newObj = obj; if (deepHas(obj, from)) { newObj = Object.assign({}, obj); if (!alias) delete newObj[from]; newObj[to] = fromGetter(obj); } return newObj; }); } /** Parse an input JSON string to an object */ json() { return this.transform(parseJson); } /** * Similar to `noUnknown` but only validates that an object is the right shape without stripping the unknown keys */ exact(message) { return this.test({ name: "exact", exclusive: true, message: message || object.exact, test(value) { if (value == null) return true; const unknownKeys = unknown(this.schema, value); return unknownKeys.length === 0 || this.createError({ params: { properties: unknownKeys.join(", ") } }); } }); } stripUnknown() { return this.clone({ noUnknown: true }); } noUnknown(noAllow = true, message = object.noUnknown) { if (typeof noAllow !== "boolean") { message = noAllow; noAllow = true; } let next = this.test({ name: "noUnknown", exclusive: true, message, test(value) { if (value == null) return true; const unknownKeys = unknown(this.schema, value); return !noAllow || unknownKeys.length === 0 || this.createError({ params: { unknown: unknownKeys.join(", ") } }); } }); next.spec.noUnknown = noAllow; return next; } unknown(allow = true, message = object.noUnknown) { return this.noUnknown(!allow, message); } transformKeys(fn) { return this.transform((obj) => { if (!obj) return obj; const result = {}; for (const key of Object.keys(obj)) result[fn(key)] = obj[key]; return result; }); } camelCase() { return this.transformKeys(import_tiny_case.camelCase); } snakeCase() { return this.transformKeys(import_tiny_case.snakeCase); } constantCase() { return this.transformKeys((key) => (0, import_tiny_case.snakeCase)(key).toUpperCase()); } describe(options) { const next = (options ? this.resolve(options) : this).clone(); const base = super.describe(options); base.fields = {}; for (const [key, value] of Object.entries(next.fields)) { var _innerOptions2; let innerOptions = options; if ((_innerOptions2 = innerOptions) != null && _innerOptions2.value) innerOptions = Object.assign({}, innerOptions, { parent: innerOptions.value, value: innerOptions.value[key] }); base.fields[key] = value.describe(innerOptions); } return base; } }; create$3.prototype = ObjectSchema.prototype; function create$2(type) { return new ArraySchema(type); } var ArraySchema = class extends Schema { constructor(type) { super({ type: "array", spec: { types: type }, check(v) { return Array.isArray(v); } }); this.innerType = void 0; this.innerType = type; } _cast(_value, _opts) { const value = super._cast(_value, _opts); if (!this._typeCheck(value) || !this.innerType) return value; let isChanged = false; const castArray = value.map((v, idx) => { const castElement = this.innerType.cast(v, Object.assign({}, _opts, { path: `${_opts.path || ""}[${idx}]`, parent: value, originalValue: v, value: v, index: idx })); if (castElement !== v) isChanged = true; return castElement; }); return isChanged ? castArray : value; } _validate(_value, options = {}, panic, next) { var _options$recursive; let innerType = this.innerType; let recursive = (_options$recursive = options.recursive) != null ? _options$recursive : this.spec.recursive; options.originalValue != null && options.originalValue; super._validate(_value, options, panic, (arrayErrors, value) => { var _options$originalValu2; if (!recursive || !innerType || !this._typeCheck(value)) { next(arrayErrors, value); return; } let tests = new Array(value.length); for (let index = 0; index < value.length; index++) { var _options$originalValu; tests[index] = innerType.asNestedTest({ options, index, parent: value, parentPath: options.path, originalParent: (_options$originalValu = options.originalValue) != null ? _options$originalValu : _value }); } this.runTests({ value, tests, originalValue: (_options$originalValu2 = options.originalValue) != null ? _options$originalValu2 : _value, options }, panic, (innerTypeErrors) => next(innerTypeErrors.concat(arrayErrors), value)); }); } clone(spec) { const next = super.clone(spec); next.innerType = this.innerType; return next; } /** Parse an input JSON string to an object */ json() { return this.transform(parseJson); } concat(schema) { let next = super.concat(schema); next.innerType = this.innerType; if (schema.innerType) next.innerType = next.innerType ? next.innerType.concat(schema.innerType) : schema.innerType; return next; } of(schema) { let next = this.clone(); if (!isSchema(schema)) throw new TypeError("`array.of()` sub-schema must be a valid yup schema not: " + printValue(schema)); next.innerType = schema; next.spec = Object.assign({}, next.spec, { types: schema }); return next; } length(length, message = array.length) { return this.test({ message, name: "length", exclusive: true, params: { length }, skipAbsent: true, test(value) { return value.length === this.resolve(length); } }); } min(min, message) { message = message || array.min; return this.test({ message, name: "min", exclusive: true, params: { min }, skipAbsent: true, test(value) { return value.length >= this.resolve(min); } }); } max(max, message) { message = message || array.max; return this.test({ message, name: "max", exclusive: true, params: { max }, skipAbsent: true, test(value) { return value.length <= this.resolve(max); } }); } ensure() { return this.default(() => []).transform((val, original) => { if (this._typeCheck(val)) return val; return original == null ? [] : [].concat(original); }); } compact(rejector) { let reject = !rejector ? (v) => !!v : (v, i, a) => !rejector(v, i, a); return this.transform((values) => values != null ? values.filter(reject) : values); } describe(options) { const next = (options ? this.resolve(options) : this).clone(); const base = super.describe(options); if (next.innerType) { var _innerOptions; let innerOptions = options; if ((_innerOptions = innerOptions) != null && _innerOptions.value) innerOptions = Object.assign({}, innerOptions, { parent: innerOptions.value, value: innerOptions.value[0] }); base.innerType = next.innerType.describe(innerOptions); } return base; } }; create$2.prototype = ArraySchema.prototype; function create$1(schemas) { return new TupleSchema(schemas); } var TupleSchema = class extends Schema { constructor(schemas) { super({ type: "tuple", spec: { types: schemas }, check(v) { const types = this.spec.types; return Array.isArray(v) && v.length === types.length; } }); this.withMutation(() => { this.typeError(tuple.notType); }); } _cast(inputValue, options) { const { types } = this.spec; const value = super._cast(inputValue, options); if (!this._typeCheck(value)) return value; let isChanged = false; const castArray = types.map((type, idx) => { const castElement = type.cast(value[idx], Object.assign({}, options, { path: `${options.path || ""}[${idx}]`, parent: value, originalValue: value[idx], value: value[idx], index: idx })); if (castElement !== value[idx]) isChanged = true; return castElement; }); return isChanged ? castArray : value; } _validate(_value, options = {}, panic, next) { let itemTypes = this.spec.types; super._validate(_value, options, panic, (tupleErrors, value) => { var _options$originalValu2; if (!this._typeCheck(value)) { next(tupleErrors, value); return; } let tests = []; for (let [index, itemSchema] of itemTypes.entries()) { var _options$originalValu; tests[index] = itemSchema.asNestedTest({ options, index, parent: value, parentPath: options.path, originalParent: (_options$originalValu = options.originalValue) != null ? _options$originalValu : _value }); } this.runTests({ value, tests, originalValue: (_options$originalValu2 = options.originalValue) != null ? _options$originalValu2 : _value, options }, panic, (innerTypeErrors) => next(innerTypeErrors.concat(tupleErrors), value)); }); } describe(options) { const next = (options ? this.resolve(options) : this).clone(); const base = super.describe(options); base.innerType = next.spec.types.map((schema, index) => { var _innerOptions; let innerOptions = options; if ((_innerOptions = innerOptions) != null && _innerOptions.value) innerOptions = Object.assign({}, innerOptions, { parent: innerOptions.value, value: innerOptions.value[index] }); return schema.describe(innerOptions); }); return base; } }; create$1.prototype = TupleSchema.prototype; //#endregion //#region ../schemas/libraries/yup/download.ts const imageSchema = create$3({ id: create$5().required(), created: create$4().required(), title: create$6().min(1).max(100).required(), type: create$6().oneOf(["jpg", "png"]).required(), size: create$5().required(), url: create$6().url().required() }); const ratingSchema = create$3({ id: create$5().required(), stars: create$5().min(0).max(5).required(), title: create$6().min(1).max(100).required(), text: create$6().min(1).max(1e3).required(), images: create$2(imageSchema).required() }); create$3({ id: create$5().required(), created: create$4().required(), title: create$6().min(1).max(100).required(), brand: create$6().min(1).max(30).required(), description: create$6().min(1).max(500).required(), price: create$5().min(1).max(1e4).required(), discount: create$5().min(1).max(100).required().nullable(), quantity: create$5().min(0).max(10).required(), tags: create$2(create$6().min(1).max(30).required()).required(), images: create$2(imageSchema).required(), ratings: create$2(ratingSchema).required() }).validate({}); //#endregion