@@ -98196,7 +98196,7 @@ const safeDecodeAsync = /* @__PURE__*/ _safeDecodeAsync($ZodRealError);
9819698196const version = {
9819798197 major: 4,
9819898198 minor: 1,
98199- patch: 0 ,
98199+ patch: 1 ,
9820098200};
9820198201
9820298202;// CONCATENATED MODULE: ./node_modules/zod/v4/core/schemas.js
@@ -100267,7 +100267,7 @@ const errors_initializer = (inst, issues) => {
100267100267 // });
100268100268};
100269100269const ZodError = $constructor("ZodError", errors_initializer);
100270- const errors_ZodRealError = $constructor("ZodError", errors_initializer, {
100270+ const ZodRealError = $constructor("ZodError", errors_initializer, {
100271100271 Parent: Error,
100272100272});
100273100273// /** @deprecated Use `z.core.$ZodErrorMapCtx` instead. */
@@ -100276,19 +100276,19 @@ const errors_ZodRealError = $constructor("ZodError", errors_initializer, {
100276100276;// CONCATENATED MODULE: ./node_modules/zod/v4/classic/parse.js
100277100277
100278100278
100279- const classic_parse_parse = /* @__PURE__ */ _parse(errors_ZodRealError );
100280- const classic_parse_parseAsync = /* @__PURE__ */ _parseAsync(errors_ZodRealError );
100281- const parse_safeParse = /* @__PURE__ */ _safeParse(errors_ZodRealError );
100282- const parse_safeParseAsync = /* @__PURE__ */ _safeParseAsync(errors_ZodRealError );
100279+ const classic_parse_parse = /* @__PURE__ */ _parse(ZodRealError );
100280+ const classic_parse_parseAsync = /* @__PURE__ */ _parseAsync(ZodRealError );
100281+ const parse_safeParse = /* @__PURE__ */ _safeParse(ZodRealError );
100282+ const parse_safeParseAsync = /* @__PURE__ */ _safeParseAsync(ZodRealError );
100283100283// Codec functions
100284- const parse_encode = /* @__PURE__ */ (/* unused pure expression or super */ null && (core. _encode(ZodRealError)) );
100285- const parse_decode = /* @__PURE__ */ (/* unused pure expression or super */ null && (core. _decode(ZodRealError)) );
100286- const parse_encodeAsync = /* @__PURE__ */ (/* unused pure expression or super */ null && (core. _encodeAsync(ZodRealError)) );
100287- const parse_decodeAsync = /* @__PURE__ */ (/* unused pure expression or super */ null && (core. _decodeAsync(ZodRealError)) );
100288- const parse_safeEncode = /* @__PURE__ */ (/* unused pure expression or super */ null && (core. _safeEncode(ZodRealError)) );
100289- const parse_safeDecode = /* @__PURE__ */ (/* unused pure expression or super */ null && (core. _safeDecode(ZodRealError)) );
100290- const parse_safeEncodeAsync = /* @__PURE__ */ (/* unused pure expression or super */ null && (core. _safeEncodeAsync(ZodRealError)) );
100291- const parse_safeDecodeAsync = /* @__PURE__ */ (/* unused pure expression or super */ null && (core. _safeDecodeAsync(ZodRealError)) );
100284+ const parse_encode = /* @__PURE__ */ _encode(ZodRealError);
100285+ const parse_decode = /* @__PURE__ */ _decode(ZodRealError);
100286+ const parse_encodeAsync = /* @__PURE__ */ _encodeAsync(ZodRealError);
100287+ const parse_decodeAsync = /* @__PURE__ */ _decodeAsync(ZodRealError);
100288+ const parse_safeEncode = /* @__PURE__ */ _safeEncode(ZodRealError);
100289+ const parse_safeDecode = /* @__PURE__ */ _safeDecode(ZodRealError);
100290+ const parse_safeEncodeAsync = /* @__PURE__ */ _safeEncodeAsync(ZodRealError);
100291+ const parse_safeDecodeAsync = /* @__PURE__ */ _safeDecodeAsync(ZodRealError);
100292100292
100293100293;// CONCATENATED MODULE: ./node_modules/zod/v4/classic/schemas.js
100294100294
@@ -100325,6 +100325,15 @@ const ZodType = /*@__PURE__*/ $constructor("ZodType", (inst, def) => {
100325100325 inst.parseAsync = async (data, params) => classic_parse_parseAsync(inst, data, params, { callee: inst.parseAsync });
100326100326 inst.safeParseAsync = async (data, params) => parse_safeParseAsync(inst, data, params);
100327100327 inst.spa = inst.safeParseAsync;
100328+ // encoding/decoding
100329+ inst.encode = (data, params) => parse_encode(inst, data, params);
100330+ inst.decode = (data, params) => parse_decode(inst, data, params);
100331+ inst.encodeAsync = async (data, params) => parse_encodeAsync(inst, data, params);
100332+ inst.decodeAsync = async (data, params) => parse_decodeAsync(inst, data, params);
100333+ inst.safeEncode = (data, params) => parse_safeEncode(inst, data, params);
100334+ inst.safeDecode = (data, params) => parse_safeDecode(inst, data, params);
100335+ inst.safeEncodeAsync = async (data, params) => parse_safeEncodeAsync(inst, data, params);
100336+ inst.safeDecodeAsync = async (data, params) => parse_safeDecodeAsync(inst, data, params);
100328100337 // refinements
100329100338 inst.refine = (check, params) => inst.check(refine(check, params));
100330100339 inst.superRefine = (refinement) => inst.check(superRefine(refinement));
0 commit comments