| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 | 
							- "use strict";
 - Object.defineProperty(exports, "__esModule", { value: true });
 - exports.ZodError = exports.quotelessJson = exports.ZodIssueCode = void 0;
 - const util_1 = require("./helpers/util");
 - exports.ZodIssueCode = util_1.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",
 - ]);
 - const quotelessJson = (obj) => {
 -     const json = JSON.stringify(obj, null, 2);
 -     return json.replace(/"([^"]+)":/g, "$1:");
 - };
 - exports.quotelessJson = quotelessJson;
 - class ZodError extends Error {
 -     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;
 -     }
 -     get errors() {
 -         return this.issues;
 -     }
 -     format(_mapper) {
 -         const mapper = _mapper ||
 -             function (issue) {
 -                 return issue.message;
 -             };
 -         const fieldErrors = { _errors: [] };
 -         const processError = (error) => {
 -             for (const issue of error.issues) {
 -                 if (issue.code === "invalid_union") {
 -                     issue.unionErrors.map(processError);
 -                 }
 -                 else if (issue.code === "invalid_return_type") {
 -                     processError(issue.returnTypeError);
 -                 }
 -                 else if (issue.code === "invalid_arguments") {
 -                     processError(issue.argumentsError);
 -                 }
 -                 else if (issue.path.length === 0) {
 -                     fieldErrors._errors.push(mapper(issue));
 -                 }
 -                 else {
 -                     let curr = fieldErrors;
 -                     let i = 0;
 -                     while (i < issue.path.length) {
 -                         const el = issue.path[i];
 -                         const terminal = i === issue.path.length - 1;
 -                         if (!terminal) {
 -                             curr[el] = curr[el] || { _errors: [] };
 -                         }
 -                         else {
 -                             curr[el] = curr[el] || { _errors: [] };
 -                             curr[el]._errors.push(mapper(issue));
 -                         }
 -                         curr = curr[el];
 -                         i++;
 -                     }
 -                 }
 -             }
 -         };
 -         processError(this);
 -         return fieldErrors;
 -     }
 -     toString() {
 -         return this.message;
 -     }
 -     get message() {
 -         return JSON.stringify(this.issues, util_1.util.jsonStringifyReplacer, 2);
 -     }
 -     get isEmpty() {
 -         return this.issues.length === 0;
 -     }
 -     flatten(mapper = (issue) => issue.message) {
 -         const fieldErrors = {};
 -         const formErrors = [];
 -         for (const sub of this.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 };
 -     }
 -     get formErrors() {
 -         return this.flatten();
 -     }
 - }
 - exports.ZodError = ZodError;
 - ZodError.create = (issues) => {
 -     const error = new ZodError(issues);
 -     return error;
 - };
 
 
  |