valleyed 4.5.16 → 4.5.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [4.5.17](https://github.com/kevinand11/valleyed/compare/v4.5.16...v4.5.17) (2025-08-12)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * fn not defined in v.recursive ([54cc05e](https://github.com/kevinand11/valleyed/commit/54cc05ea9e7b8ba503160a5b890c3859aa32e2af))
11
+
5
12
  ### [4.5.16](https://github.com/kevinand11/valleyed/compare/v4.5.15...v4.5.16) (2025-08-09)
6
13
 
7
14
 
@@ -131,8 +131,8 @@ const recursive = (pipeFn, $refId) => {
131
131
  return (0, import_pipes.standard)(
132
132
  ({ input }, opts) => {
133
133
  const common = [`${input} = ${fnVarname}(${input})`, opts.wrapError(`${input} instanceof PipeError`, input)];
134
- if (compiledBefore) return common;
135
- compiledBefore = true;
134
+ compiledBefore = !compiledBefore;
135
+ if (!compiledBefore) return common;
136
136
  return [
137
137
  `function ${fnVarname}(node) {`,
138
138
  ...(0, import_pipes.compileNested)({ opts: { ...opts, failEarly: true }, pipe: pipeFn(), input: "node", errorType: "return" }).map(
@@ -145,8 +145,8 @@ const recursive = (pipeFn, $refId) => {
145
145
  },
146
146
  {
147
147
  schema: () => {
148
- if (schemedBefore) return { $refId };
149
- schemedBefore = true;
148
+ schemedBefore = !schemedBefore;
149
+ if (!schemedBefore) return { $refId };
150
150
  return (0, import_pipes.schema)(pipeFn(), { $refId });
151
151
  }
152
152
  }
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../src/api/junctions.ts"],"sourcesContent":["import { Pipe, PipeInput, PipeOutput } from './base'\nimport { merge as differMerge } from '../utils/differ'\nimport { getRandomValue, wrapInTryCatch } from '../utils/functions'\nimport { compileNested, context, standard, schema, define, validate } from './base/pipes'\n\nexport const or = <T extends Pipe<any, any>[]>(branches: T) => {\n\tconst validatedVarname = `validated_${getRandomValue()}`\n\tconst errorsVarname = `errors_${getRandomValue()}`\n\treturn standard<PipeInput<T[number]>, PipeOutput<T[number]>>(\n\t\t({ input }, opts) =>\n\t\t\tbranches.length === 0\n\t\t\t\t? []\n\t\t\t\t: [\n\t\t\t\t\t\t`const ${errorsVarname} = []`,\n\t\t\t\t\t\t`let ${validatedVarname}`,\n\t\t\t\t\t\t...branches\n\t\t\t\t\t\t\t.map((branch, idx) => (lines: string[]) => [\n\t\t\t\t\t\t\t\t`${validatedVarname} = ${input}`,\n\t\t\t\t\t\t\t\t...compileNested({\n\t\t\t\t\t\t\t\t\topts: { ...opts, failEarly: true },\n\t\t\t\t\t\t\t\t\tpipe: branch,\n\t\t\t\t\t\t\t\t\tinput: validatedVarname,\n\t\t\t\t\t\t\t\t\terrorType: 'assign',\n\t\t\t\t\t\t\t\t\tkey: validatedVarname,\n\t\t\t\t\t\t\t\t}),\n\t\t\t\t\t\t\t\t`if (${validatedVarname} instanceof PipeError) {`,\n\t\t\t\t\t\t\t\t`\t${errorsVarname}.push(PipeError.path(${idx}, '${validatedVarname}', ${validatedVarname}))`,\n\t\t\t\t\t\t\t\t...lines.map((l) => `\t${l}`),\n\t\t\t\t\t\t\t\tidx === branches.length - 1 ? `\t${opts.wrapError.format(`PipeError.rootFrom(${errorsVarname})`)}` : '',\n\t\t\t\t\t\t\t\t`}`,\n\t\t\t\t\t\t\t\t`else ${input} = ${validatedVarname}`,\n\t\t\t\t\t\t\t])\n\t\t\t\t\t\t\t.reduceRight<string[]>((acc, cur) => cur(acc), []),\n\t\t\t\t\t\topts.wrapError(`${input} instanceof PipeError`, input),\n\t\t\t\t\t],\n\t\t{\n\t\t\tschema: () => ({ oneOf: branches.map((branch) => schema(branch)) }),\n\t\t},\n\t)\n}\n\nexport const merge = <T1 extends Pipe<any, any>, T2 extends Pipe<any, any>>(branch1: T1, branch2: T2) => {\n\tconst inputVarname = `input_${getRandomValue()}`\n\treturn standard<PipeInput<T1> & PipeInput<T2>, PipeOutput<T1> & PipeOutput<T2>>(\n\t\t({ input, context }, opts) => [\n\t\t\t`let ${inputVarname}A = ${input}`,\n\t\t\t`let ${inputVarname}B = ${input}`,\n\t\t\t...compileNested({ opts, pipe: branch1, input: `${inputVarname}A` }),\n\t\t\topts.wrapError(`${inputVarname}A instanceof PipeError`, `${inputVarname}A`),\n\t\t\t...compileNested({ opts, pipe: branch2, input: `${inputVarname}B` }),\n\t\t\topts.wrapError(`${inputVarname}B instanceof PipeError`, `${inputVarname}B`),\n\t\t\t`${input} = ${context}.differMerge(${inputVarname}A, ${inputVarname}B)`,\n\t\t],\n\t\t{\n\t\t\tcontext: { differMerge },\n\t\t\tschema: () => ({ allOf: [schema(branch1), schema(branch2)] }),\n\t\t},\n\t)\n}\n\nexport const discriminate = <T extends Record<PropertyKey, Pipe<any, any>>>(\n\tdiscriminator: (val: PipeInput<T[keyof T]>) => PropertyKey,\n\tbranches: T,\n\terr = 'doesnt match any of the schema',\n) =>\n\tstandard<PipeInput<T[keyof T]>, PipeOutput<T[keyof T]>>(\n\t\t({ input, context, path }, opts) => [\n\t\t\t`switch (${context}.wrapInTryCatch(() => ${context}.discriminator(${input}))) {`,\n\t\t\t...Object.entries(branches).flatMap(([key, branch]) => [\n\t\t\t\t`\tcase ('${key}'): {`,\n\t\t\t\t...compileNested({ opts, pipe: branch, input }).map((l) => `\t\t${l}`),\n\t\t\t\t`\t\tbreak`,\n\t\t\t\t`\t}`,\n\t\t\t]),\n\t\t\t`\tdefault: ${opts.wrapError.format(`PipeError.root(\"${err}\", ${input}, ${path})`)}`,\n\t\t\t`}`,\n\t\t],\n\t\t{\n\t\t\tcontext: { wrapInTryCatch, discriminator },\n\t\t\tschema: () => ({ oneOf: Object.values(branches).map((s) => schema(s)) }),\n\t\t},\n\t)\n\nexport const fromJson = <T extends Pipe<any, any>>(branch: T) => {\n\tconst validatedVarname = `validated_${getRandomValue()}`\n\treturn standard<PipeInput<T>, PipeOutput<T>>(\n\t\t({ input, context }, opts) => [\n\t\t\t`let ${validatedVarname} = ${input}`,\n\t\t\t...compileNested({ opts, pipe: branch, input: validatedVarname, errorType: 'assign' }),\n\t\t\t`if (${validatedVarname} instanceof PipeError) {`,\n\t\t\topts.wrapError(`${input}?.constructor?.name !== 'String'`, validatedVarname),\n\t\t\t`\t${validatedVarname} = ${context}.wrapInTryCatch(() => JSON.parse(${input}), ${validatedVarname})`,\n\t\t\topts.wrapError(`${validatedVarname} instanceof PipeError`, validatedVarname),\n\t\t\t...compileNested({ opts, pipe: branch, input: validatedVarname, errorType: 'assign' }).map((l) => `\t${l}`),\n\t\t\topts.wrapError(`${validatedVarname} instanceof PipeError`, validatedVarname),\n\t\t\t`}`,\n\t\t\t`${input} = ${validatedVarname}`,\n\t\t],\n\t\t{\n\t\t\tcontext: { ...context(branch), wrapInTryCatch },\n\t\t\tschema: branch.schema,\n\t\t},\n\t)\n}\n\nexport const lazy = <T extends Pipe<any, any>>(pipeFn: () => T) =>\n\tdefine<PipeInput<T>, PipeOutput<T>>(\n\t\t(input) => {\n\t\t\tconst result = validate(pipeFn(), input)\n\t\t\treturn result.valid ? result.value : result.error\n\t\t},\n\t\t{\n\t\t\tschema: () => schema(pipeFn()),\n\t\t},\n\t)\n\nexport const recursive = <T extends Pipe<any, any>>(pipeFn: () => T, $refId: string) => {\n\tconst fnVarname = `fn_${getRandomValue()}`\n\tlet compiledBefore = false\n\tlet schemedBefore = false\n\treturn standard<PipeInput<T>, PipeOutput<T>>(\n\t\t({ input }, opts) => {\n\t\t\tconst common = [`${input} = ${fnVarname}(${input})`, opts.wrapError(`${input} instanceof PipeError`, input)]\n\t\t\tif (compiledBefore) return common\n\t\t\tcompiledBefore = true\n\t\t\treturn [\n\t\t\t\t`function ${fnVarname}(node) {`,\n\t\t\t\t...compileNested({ opts: { ...opts, failEarly: true }, pipe: pipeFn(), input: 'node', errorType: 'return' }).map(\n\t\t\t\t\t(l) => `\t${l}`,\n\t\t\t\t),\n\t\t\t\t`\treturn node`,\n\t\t\t\t'}',\n\t\t\t\t...common,\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\tschema: () => {\n\t\t\t\tif (schemedBefore) return { $refId }\n\t\t\t\tschemedBefore = true\n\t\t\t\treturn schema(pipeFn(), { $refId })\n\t\t\t},\n\t\t},\n\t)\n}\n"],"mappings":"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","names":["context","differMerge"]}
1
+ {"version":3,"sources":["../../../src/api/junctions.ts"],"sourcesContent":["import { Pipe, PipeInput, PipeOutput } from './base'\nimport { merge as differMerge } from '../utils/differ'\nimport { getRandomValue, wrapInTryCatch } from '../utils/functions'\nimport { compileNested, context, standard, schema, define, validate } from './base/pipes'\n\nexport const or = <T extends Pipe<any, any>[]>(branches: T) => {\n\tconst validatedVarname = `validated_${getRandomValue()}`\n\tconst errorsVarname = `errors_${getRandomValue()}`\n\treturn standard<PipeInput<T[number]>, PipeOutput<T[number]>>(\n\t\t({ input }, opts) =>\n\t\t\tbranches.length === 0\n\t\t\t\t? []\n\t\t\t\t: [\n\t\t\t\t\t\t`const ${errorsVarname} = []`,\n\t\t\t\t\t\t`let ${validatedVarname}`,\n\t\t\t\t\t\t...branches\n\t\t\t\t\t\t\t.map((branch, idx) => (lines: string[]) => [\n\t\t\t\t\t\t\t\t`${validatedVarname} = ${input}`,\n\t\t\t\t\t\t\t\t...compileNested({\n\t\t\t\t\t\t\t\t\topts: { ...opts, failEarly: true },\n\t\t\t\t\t\t\t\t\tpipe: branch,\n\t\t\t\t\t\t\t\t\tinput: validatedVarname,\n\t\t\t\t\t\t\t\t\terrorType: 'assign',\n\t\t\t\t\t\t\t\t\tkey: validatedVarname,\n\t\t\t\t\t\t\t\t}),\n\t\t\t\t\t\t\t\t`if (${validatedVarname} instanceof PipeError) {`,\n\t\t\t\t\t\t\t\t`\t${errorsVarname}.push(PipeError.path(${idx}, '${validatedVarname}', ${validatedVarname}))`,\n\t\t\t\t\t\t\t\t...lines.map((l) => `\t${l}`),\n\t\t\t\t\t\t\t\tidx === branches.length - 1 ? `\t${opts.wrapError.format(`PipeError.rootFrom(${errorsVarname})`)}` : '',\n\t\t\t\t\t\t\t\t`}`,\n\t\t\t\t\t\t\t\t`else ${input} = ${validatedVarname}`,\n\t\t\t\t\t\t\t])\n\t\t\t\t\t\t\t.reduceRight<string[]>((acc, cur) => cur(acc), []),\n\t\t\t\t\t\topts.wrapError(`${input} instanceof PipeError`, input),\n\t\t\t\t\t],\n\t\t{\n\t\t\tschema: () => ({ oneOf: branches.map((branch) => schema(branch)) }),\n\t\t},\n\t)\n}\n\nexport const merge = <T1 extends Pipe<any, any>, T2 extends Pipe<any, any>>(branch1: T1, branch2: T2) => {\n\tconst inputVarname = `input_${getRandomValue()}`\n\treturn standard<PipeInput<T1> & PipeInput<T2>, PipeOutput<T1> & PipeOutput<T2>>(\n\t\t({ input, context }, opts) => [\n\t\t\t`let ${inputVarname}A = ${input}`,\n\t\t\t`let ${inputVarname}B = ${input}`,\n\t\t\t...compileNested({ opts, pipe: branch1, input: `${inputVarname}A` }),\n\t\t\topts.wrapError(`${inputVarname}A instanceof PipeError`, `${inputVarname}A`),\n\t\t\t...compileNested({ opts, pipe: branch2, input: `${inputVarname}B` }),\n\t\t\topts.wrapError(`${inputVarname}B instanceof PipeError`, `${inputVarname}B`),\n\t\t\t`${input} = ${context}.differMerge(${inputVarname}A, ${inputVarname}B)`,\n\t\t],\n\t\t{\n\t\t\tcontext: { differMerge },\n\t\t\tschema: () => ({ allOf: [schema(branch1), schema(branch2)] }),\n\t\t},\n\t)\n}\n\nexport const discriminate = <T extends Record<PropertyKey, Pipe<any, any>>>(\n\tdiscriminator: (val: PipeInput<T[keyof T]>) => PropertyKey,\n\tbranches: T,\n\terr = 'doesnt match any of the schema',\n) =>\n\tstandard<PipeInput<T[keyof T]>, PipeOutput<T[keyof T]>>(\n\t\t({ input, context, path }, opts) => [\n\t\t\t`switch (${context}.wrapInTryCatch(() => ${context}.discriminator(${input}))) {`,\n\t\t\t...Object.entries(branches).flatMap(([key, branch]) => [\n\t\t\t\t`\tcase ('${key}'): {`,\n\t\t\t\t...compileNested({ opts, pipe: branch, input }).map((l) => `\t\t${l}`),\n\t\t\t\t`\t\tbreak`,\n\t\t\t\t`\t}`,\n\t\t\t]),\n\t\t\t`\tdefault: ${opts.wrapError.format(`PipeError.root(\"${err}\", ${input}, ${path})`)}`,\n\t\t\t`}`,\n\t\t],\n\t\t{\n\t\t\tcontext: { wrapInTryCatch, discriminator },\n\t\t\tschema: () => ({ oneOf: Object.values(branches).map((s) => schema(s)) }),\n\t\t},\n\t)\n\nexport const fromJson = <T extends Pipe<any, any>>(branch: T) => {\n\tconst validatedVarname = `validated_${getRandomValue()}`\n\treturn standard<PipeInput<T>, PipeOutput<T>>(\n\t\t({ input, context }, opts) => [\n\t\t\t`let ${validatedVarname} = ${input}`,\n\t\t\t...compileNested({ opts, pipe: branch, input: validatedVarname, errorType: 'assign' }),\n\t\t\t`if (${validatedVarname} instanceof PipeError) {`,\n\t\t\topts.wrapError(`${input}?.constructor?.name !== 'String'`, validatedVarname),\n\t\t\t`\t${validatedVarname} = ${context}.wrapInTryCatch(() => JSON.parse(${input}), ${validatedVarname})`,\n\t\t\topts.wrapError(`${validatedVarname} instanceof PipeError`, validatedVarname),\n\t\t\t...compileNested({ opts, pipe: branch, input: validatedVarname, errorType: 'assign' }).map((l) => `\t${l}`),\n\t\t\topts.wrapError(`${validatedVarname} instanceof PipeError`, validatedVarname),\n\t\t\t`}`,\n\t\t\t`${input} = ${validatedVarname}`,\n\t\t],\n\t\t{\n\t\t\tcontext: { ...context(branch), wrapInTryCatch },\n\t\t\tschema: branch.schema,\n\t\t},\n\t)\n}\n\nexport const lazy = <T extends Pipe<any, any>>(pipeFn: () => T) =>\n\tdefine<PipeInput<T>, PipeOutput<T>>(\n\t\t(input) => {\n\t\t\tconst result = validate(pipeFn(), input)\n\t\t\treturn result.valid ? result.value : result.error\n\t\t},\n\t\t{\n\t\t\tschema: () => schema(pipeFn()),\n\t\t},\n\t)\n\nexport const recursive = <T extends Pipe<any, any>>(pipeFn: () => T, $refId: string) => {\n\tconst fnVarname = `fn_${getRandomValue()}`\n\tlet compiledBefore = false\n\tlet schemedBefore = false\n\treturn standard<PipeInput<T>, PipeOutput<T>>(\n\t\t({ input }, opts) => {\n\t\t\tconst common = [`${input} = ${fnVarname}(${input})`, opts.wrapError(`${input} instanceof PipeError`, input)]\n\t\t\tcompiledBefore = !compiledBefore\n\t\t\tif (!compiledBefore) return common\n\t\t\treturn [\n\t\t\t\t`function ${fnVarname}(node) {`,\n\t\t\t\t...compileNested({ opts: { ...opts, failEarly: true }, pipe: pipeFn(), input: 'node', errorType: 'return' }).map(\n\t\t\t\t\t(l) => `\t${l}`,\n\t\t\t\t),\n\t\t\t\t`\treturn node`,\n\t\t\t\t'}',\n\t\t\t\t...common,\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\tschema: () => {\n\t\t\t\tschemedBefore = !schemedBefore\n\t\t\t\tif (!schemedBefore) return { $refId }\n\t\t\t\treturn schema(pipeFn(), { $refId })\n\t\t\t},\n\t\t},\n\t)\n}\n"],"mappings":"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","names":["context","differMerge"]}
@@ -1,2 +1,2 @@
1
- "use strict";var u=Object.defineProperty;var T=Object.getOwnPropertyDescriptor;var P=Object.getOwnPropertyNames;var d=Object.prototype.hasOwnProperty;var l=(t,e)=>{for(var r in e)u(t,r,{get:e[r],enumerable:!0})},y=(t,e,r,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of P(e))!d.call(t,o)&&o!==r&&u(t,o,{get:()=>e[o],enumerable:!(n=T(e,o))||n.enumerable});return t};var E=t=>y(u({},"__esModule",{value:!0}),t);var v={};l(v,{discriminate:()=>O,fromJson:()=>w,lazy:()=>h,merge:()=>x,or:()=>g,recursive:()=>I});module.exports=E(v);var c=require('../utils/differ.min.cjs'),$=require('../utils/functions/index.min.cjs'),a=require('./base/pipes.min.cjs');const g=t=>{const e=`validated_${(0,$.getRandomValue)()}`,r=`errors_${(0,$.getRandomValue)()}`;return(0,a.standard)(({input:n},o)=>t.length===0?[]:[`const ${r} = []`,`let ${e}`,...t.map((p,i)=>s=>[`${e} = ${n}`,...(0,a.compileNested)({opts:{...o,failEarly:!0},pipe:p,input:e,errorType:"assign",key:e}),`if (${e} instanceof PipeError) {`,` ${r}.push(PipeError.path(${i}, '${e}', ${e}))`,...s.map(m=>` ${m}`),i===t.length-1?` ${o.wrapError.format(`PipeError.rootFrom(${r})`)}`:"","}",`else ${n} = ${e}`]).reduceRight((p,i)=>i(p),[]),o.wrapError(`${n} instanceof PipeError`,n)],{schema:()=>({oneOf:t.map(n=>(0,a.schema)(n))})})},x=(t,e)=>{const r=`input_${(0,$.getRandomValue)()}`;return(0,a.standard)(({input:n,context:o},p)=>[`let ${r}A = ${n}`,`let ${r}B = ${n}`,...(0,a.compileNested)({opts:p,pipe:t,input:`${r}A`}),p.wrapError(`${r}A instanceof PipeError`,`${r}A`),...(0,a.compileNested)({opts:p,pipe:e,input:`${r}B`}),p.wrapError(`${r}B instanceof PipeError`,`${r}B`),`${n} = ${o}.differMerge(${r}A, ${r}B)`],{context:{differMerge:c.merge},schema:()=>({allOf:[(0,a.schema)(t),(0,a.schema)(e)]})})},O=(t,e,r="doesnt match any of the schema")=>(0,a.standard)(({input:n,context:o,path:p},i)=>[`switch (${o}.wrapInTryCatch(() => ${o}.discriminator(${n}))) {`,...Object.entries(e).flatMap(([s,m])=>[` case ('${s}'): {`,...(0,a.compileNested)({opts:i,pipe:m,input:n}).map(f=>` ${f}`)," break"," }"]),` default: ${i.wrapError.format(`PipeError.root("${r}", ${n}, ${p})`)}`,"}"],{context:{wrapInTryCatch:$.wrapInTryCatch,discriminator:t},schema:()=>({oneOf:Object.values(e).map(n=>(0,a.schema)(n))})}),w=t=>{const e=`validated_${(0,$.getRandomValue)()}`;return(0,a.standard)(({input:r,context:n},o)=>[`let ${e} = ${r}`,...(0,a.compileNested)({opts:o,pipe:t,input:e,errorType:"assign"}),`if (${e} instanceof PipeError) {`,o.wrapError(`${r}?.constructor?.name !== 'String'`,e),` ${e} = ${n}.wrapInTryCatch(() => JSON.parse(${r}), ${e})`,o.wrapError(`${e} instanceof PipeError`,e),...(0,a.compileNested)({opts:o,pipe:t,input:e,errorType:"assign"}).map(p=>` ${p}`),o.wrapError(`${e} instanceof PipeError`,e),"}",`${r} = ${e}`],{context:{...(0,a.context)(t),wrapInTryCatch:$.wrapInTryCatch},schema:t.schema})},h=t=>(0,a.define)(e=>{const r=(0,a.validate)(t(),e);return r.valid?r.value:r.error},{schema:()=>(0,a.schema)(t())}),I=(t,e)=>{const r=`fn_${(0,$.getRandomValue)()}`;let n=!1,o=!1;return(0,a.standard)(({input:p},i)=>{const s=[`${p} = ${r}(${p})`,i.wrapError(`${p} instanceof PipeError`,p)];return n?s:(n=!0,[`function ${r}(node) {`,...(0,a.compileNested)({opts:{...i,failEarly:!0},pipe:t(),input:"node",errorType:"return"}).map(m=>` ${m}`)," return node","}",...s])},{schema:()=>o?{$refId:e}:(o=!0,(0,a.schema)(t(),{$refId:e}))})};0&&(module.exports={discriminate,fromJson,lazy,merge,or,recursive});
1
+ "use strict";var c=Object.defineProperty;var T=Object.getOwnPropertyDescriptor;var P=Object.getOwnPropertyNames;var d=Object.prototype.hasOwnProperty;var l=(t,e)=>{for(var r in e)c(t,r,{get:e[r],enumerable:!0})},y=(t,e,r,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of P(e))!d.call(t,o)&&o!==r&&c(t,o,{get:()=>e[o],enumerable:!(n=T(e,o))||n.enumerable});return t};var E=t=>y(c({},"__esModule",{value:!0}),t);var v={};l(v,{discriminate:()=>O,fromJson:()=>w,lazy:()=>h,merge:()=>x,or:()=>g,recursive:()=>I});module.exports=E(v);var u=require('../utils/differ.min.cjs'),$=require('../utils/functions/index.min.cjs'),a=require('./base/pipes.min.cjs');const g=t=>{const e=`validated_${(0,$.getRandomValue)()}`,r=`errors_${(0,$.getRandomValue)()}`;return(0,a.standard)(({input:n},o)=>t.length===0?[]:[`const ${r} = []`,`let ${e}`,...t.map((p,i)=>s=>[`${e} = ${n}`,...(0,a.compileNested)({opts:{...o,failEarly:!0},pipe:p,input:e,errorType:"assign",key:e}),`if (${e} instanceof PipeError) {`,` ${r}.push(PipeError.path(${i}, '${e}', ${e}))`,...s.map(m=>` ${m}`),i===t.length-1?` ${o.wrapError.format(`PipeError.rootFrom(${r})`)}`:"","}",`else ${n} = ${e}`]).reduceRight((p,i)=>i(p),[]),o.wrapError(`${n} instanceof PipeError`,n)],{schema:()=>({oneOf:t.map(n=>(0,a.schema)(n))})})},x=(t,e)=>{const r=`input_${(0,$.getRandomValue)()}`;return(0,a.standard)(({input:n,context:o},p)=>[`let ${r}A = ${n}`,`let ${r}B = ${n}`,...(0,a.compileNested)({opts:p,pipe:t,input:`${r}A`}),p.wrapError(`${r}A instanceof PipeError`,`${r}A`),...(0,a.compileNested)({opts:p,pipe:e,input:`${r}B`}),p.wrapError(`${r}B instanceof PipeError`,`${r}B`),`${n} = ${o}.differMerge(${r}A, ${r}B)`],{context:{differMerge:u.merge},schema:()=>({allOf:[(0,a.schema)(t),(0,a.schema)(e)]})})},O=(t,e,r="doesnt match any of the schema")=>(0,a.standard)(({input:n,context:o,path:p},i)=>[`switch (${o}.wrapInTryCatch(() => ${o}.discriminator(${n}))) {`,...Object.entries(e).flatMap(([s,m])=>[` case ('${s}'): {`,...(0,a.compileNested)({opts:i,pipe:m,input:n}).map(f=>` ${f}`)," break"," }"]),` default: ${i.wrapError.format(`PipeError.root("${r}", ${n}, ${p})`)}`,"}"],{context:{wrapInTryCatch:$.wrapInTryCatch,discriminator:t},schema:()=>({oneOf:Object.values(e).map(n=>(0,a.schema)(n))})}),w=t=>{const e=`validated_${(0,$.getRandomValue)()}`;return(0,a.standard)(({input:r,context:n},o)=>[`let ${e} = ${r}`,...(0,a.compileNested)({opts:o,pipe:t,input:e,errorType:"assign"}),`if (${e} instanceof PipeError) {`,o.wrapError(`${r}?.constructor?.name !== 'String'`,e),` ${e} = ${n}.wrapInTryCatch(() => JSON.parse(${r}), ${e})`,o.wrapError(`${e} instanceof PipeError`,e),...(0,a.compileNested)({opts:o,pipe:t,input:e,errorType:"assign"}).map(p=>` ${p}`),o.wrapError(`${e} instanceof PipeError`,e),"}",`${r} = ${e}`],{context:{...(0,a.context)(t),wrapInTryCatch:$.wrapInTryCatch},schema:t.schema})},h=t=>(0,a.define)(e=>{const r=(0,a.validate)(t(),e);return r.valid?r.value:r.error},{schema:()=>(0,a.schema)(t())}),I=(t,e)=>{const r=`fn_${(0,$.getRandomValue)()}`;let n=!1,o=!1;return(0,a.standard)(({input:p},i)=>{const s=[`${p} = ${r}(${p})`,i.wrapError(`${p} instanceof PipeError`,p)];return n=!n,n?[`function ${r}(node) {`,...(0,a.compileNested)({opts:{...i,failEarly:!0},pipe:t(),input:"node",errorType:"return"}).map(m=>` ${m}`)," return node","}",...s]:s},{schema:()=>(o=!o,o?(0,a.schema)(t(),{$refId:e}):{$refId:e})})};0&&(module.exports={discriminate,fromJson,lazy,merge,or,recursive});
2
2
  //# sourceMappingURL=junctions.min.cjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../src/api/junctions.ts"],"sourcesContent":["import { Pipe, PipeInput, PipeOutput } from './base'\nimport { merge as differMerge } from '../utils/differ'\nimport { getRandomValue, wrapInTryCatch } from '../utils/functions'\nimport { compileNested, context, standard, schema, define, validate } from './base/pipes'\n\nexport const or = <T extends Pipe<any, any>[]>(branches: T) => {\n\tconst validatedVarname = `validated_${getRandomValue()}`\n\tconst errorsVarname = `errors_${getRandomValue()}`\n\treturn standard<PipeInput<T[number]>, PipeOutput<T[number]>>(\n\t\t({ input }, opts) =>\n\t\t\tbranches.length === 0\n\t\t\t\t? []\n\t\t\t\t: [\n\t\t\t\t\t\t`const ${errorsVarname} = []`,\n\t\t\t\t\t\t`let ${validatedVarname}`,\n\t\t\t\t\t\t...branches\n\t\t\t\t\t\t\t.map((branch, idx) => (lines: string[]) => [\n\t\t\t\t\t\t\t\t`${validatedVarname} = ${input}`,\n\t\t\t\t\t\t\t\t...compileNested({\n\t\t\t\t\t\t\t\t\topts: { ...opts, failEarly: true },\n\t\t\t\t\t\t\t\t\tpipe: branch,\n\t\t\t\t\t\t\t\t\tinput: validatedVarname,\n\t\t\t\t\t\t\t\t\terrorType: 'assign',\n\t\t\t\t\t\t\t\t\tkey: validatedVarname,\n\t\t\t\t\t\t\t\t}),\n\t\t\t\t\t\t\t\t`if (${validatedVarname} instanceof PipeError) {`,\n\t\t\t\t\t\t\t\t`\t${errorsVarname}.push(PipeError.path(${idx}, '${validatedVarname}', ${validatedVarname}))`,\n\t\t\t\t\t\t\t\t...lines.map((l) => `\t${l}`),\n\t\t\t\t\t\t\t\tidx === branches.length - 1 ? `\t${opts.wrapError.format(`PipeError.rootFrom(${errorsVarname})`)}` : '',\n\t\t\t\t\t\t\t\t`}`,\n\t\t\t\t\t\t\t\t`else ${input} = ${validatedVarname}`,\n\t\t\t\t\t\t\t])\n\t\t\t\t\t\t\t.reduceRight<string[]>((acc, cur) => cur(acc), []),\n\t\t\t\t\t\topts.wrapError(`${input} instanceof PipeError`, input),\n\t\t\t\t\t],\n\t\t{\n\t\t\tschema: () => ({ oneOf: branches.map((branch) => schema(branch)) }),\n\t\t},\n\t)\n}\n\nexport const merge = <T1 extends Pipe<any, any>, T2 extends Pipe<any, any>>(branch1: T1, branch2: T2) => {\n\tconst inputVarname = `input_${getRandomValue()}`\n\treturn standard<PipeInput<T1> & PipeInput<T2>, PipeOutput<T1> & PipeOutput<T2>>(\n\t\t({ input, context }, opts) => [\n\t\t\t`let ${inputVarname}A = ${input}`,\n\t\t\t`let ${inputVarname}B = ${input}`,\n\t\t\t...compileNested({ opts, pipe: branch1, input: `${inputVarname}A` }),\n\t\t\topts.wrapError(`${inputVarname}A instanceof PipeError`, `${inputVarname}A`),\n\t\t\t...compileNested({ opts, pipe: branch2, input: `${inputVarname}B` }),\n\t\t\topts.wrapError(`${inputVarname}B instanceof PipeError`, `${inputVarname}B`),\n\t\t\t`${input} = ${context}.differMerge(${inputVarname}A, ${inputVarname}B)`,\n\t\t],\n\t\t{\n\t\t\tcontext: { differMerge },\n\t\t\tschema: () => ({ allOf: [schema(branch1), schema(branch2)] }),\n\t\t},\n\t)\n}\n\nexport const discriminate = <T extends Record<PropertyKey, Pipe<any, any>>>(\n\tdiscriminator: (val: PipeInput<T[keyof T]>) => PropertyKey,\n\tbranches: T,\n\terr = 'doesnt match any of the schema',\n) =>\n\tstandard<PipeInput<T[keyof T]>, PipeOutput<T[keyof T]>>(\n\t\t({ input, context, path }, opts) => [\n\t\t\t`switch (${context}.wrapInTryCatch(() => ${context}.discriminator(${input}))) {`,\n\t\t\t...Object.entries(branches).flatMap(([key, branch]) => [\n\t\t\t\t`\tcase ('${key}'): {`,\n\t\t\t\t...compileNested({ opts, pipe: branch, input }).map((l) => `\t\t${l}`),\n\t\t\t\t`\t\tbreak`,\n\t\t\t\t`\t}`,\n\t\t\t]),\n\t\t\t`\tdefault: ${opts.wrapError.format(`PipeError.root(\"${err}\", ${input}, ${path})`)}`,\n\t\t\t`}`,\n\t\t],\n\t\t{\n\t\t\tcontext: { wrapInTryCatch, discriminator },\n\t\t\tschema: () => ({ oneOf: Object.values(branches).map((s) => schema(s)) }),\n\t\t},\n\t)\n\nexport const fromJson = <T extends Pipe<any, any>>(branch: T) => {\n\tconst validatedVarname = `validated_${getRandomValue()}`\n\treturn standard<PipeInput<T>, PipeOutput<T>>(\n\t\t({ input, context }, opts) => [\n\t\t\t`let ${validatedVarname} = ${input}`,\n\t\t\t...compileNested({ opts, pipe: branch, input: validatedVarname, errorType: 'assign' }),\n\t\t\t`if (${validatedVarname} instanceof PipeError) {`,\n\t\t\topts.wrapError(`${input}?.constructor?.name !== 'String'`, validatedVarname),\n\t\t\t`\t${validatedVarname} = ${context}.wrapInTryCatch(() => JSON.parse(${input}), ${validatedVarname})`,\n\t\t\topts.wrapError(`${validatedVarname} instanceof PipeError`, validatedVarname),\n\t\t\t...compileNested({ opts, pipe: branch, input: validatedVarname, errorType: 'assign' }).map((l) => `\t${l}`),\n\t\t\topts.wrapError(`${validatedVarname} instanceof PipeError`, validatedVarname),\n\t\t\t`}`,\n\t\t\t`${input} = ${validatedVarname}`,\n\t\t],\n\t\t{\n\t\t\tcontext: { ...context(branch), wrapInTryCatch },\n\t\t\tschema: branch.schema,\n\t\t},\n\t)\n}\n\nexport const lazy = <T extends Pipe<any, any>>(pipeFn: () => T) =>\n\tdefine<PipeInput<T>, PipeOutput<T>>(\n\t\t(input) => {\n\t\t\tconst result = validate(pipeFn(), input)\n\t\t\treturn result.valid ? result.value : result.error\n\t\t},\n\t\t{\n\t\t\tschema: () => schema(pipeFn()),\n\t\t},\n\t)\n\nexport const recursive = <T extends Pipe<any, any>>(pipeFn: () => T, $refId: string) => {\n\tconst fnVarname = `fn_${getRandomValue()}`\n\tlet compiledBefore = false\n\tlet schemedBefore = false\n\treturn standard<PipeInput<T>, PipeOutput<T>>(\n\t\t({ input }, opts) => {\n\t\t\tconst common = [`${input} = ${fnVarname}(${input})`, opts.wrapError(`${input} instanceof PipeError`, input)]\n\t\t\tif (compiledBefore) return common\n\t\t\tcompiledBefore = true\n\t\t\treturn [\n\t\t\t\t`function ${fnVarname}(node) {`,\n\t\t\t\t...compileNested({ opts: { ...opts, failEarly: true }, pipe: pipeFn(), input: 'node', errorType: 'return' }).map(\n\t\t\t\t\t(l) => `\t${l}`,\n\t\t\t\t),\n\t\t\t\t`\treturn node`,\n\t\t\t\t'}',\n\t\t\t\t...common,\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\tschema: () => {\n\t\t\t\tif (schemedBefore) return { $refId }\n\t\t\t\tschemedBefore = true\n\t\t\t\treturn schema(pipeFn(), { $refId })\n\t\t\t},\n\t\t},\n\t)\n}\n"],"mappings":"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","names":["junctions_exports","__export","discriminate","fromJson","lazy","merge","or","recursive","__toCommonJS","import_differ","import_functions","import_pipes","branches","validatedVarname","errorsVarname","input","opts","branch","idx","lines","l","acc","cur","branch1","branch2","inputVarname","context","differMerge","discriminator","err","path","key","s","pipeFn","result","$refId","fnVarname","compiledBefore","schemedBefore","common"]}
1
+ {"version":3,"sources":["../../../src/api/junctions.ts"],"sourcesContent":["import { Pipe, PipeInput, PipeOutput } from './base'\nimport { merge as differMerge } from '../utils/differ'\nimport { getRandomValue, wrapInTryCatch } from '../utils/functions'\nimport { compileNested, context, standard, schema, define, validate } from './base/pipes'\n\nexport const or = <T extends Pipe<any, any>[]>(branches: T) => {\n\tconst validatedVarname = `validated_${getRandomValue()}`\n\tconst errorsVarname = `errors_${getRandomValue()}`\n\treturn standard<PipeInput<T[number]>, PipeOutput<T[number]>>(\n\t\t({ input }, opts) =>\n\t\t\tbranches.length === 0\n\t\t\t\t? []\n\t\t\t\t: [\n\t\t\t\t\t\t`const ${errorsVarname} = []`,\n\t\t\t\t\t\t`let ${validatedVarname}`,\n\t\t\t\t\t\t...branches\n\t\t\t\t\t\t\t.map((branch, idx) => (lines: string[]) => [\n\t\t\t\t\t\t\t\t`${validatedVarname} = ${input}`,\n\t\t\t\t\t\t\t\t...compileNested({\n\t\t\t\t\t\t\t\t\topts: { ...opts, failEarly: true },\n\t\t\t\t\t\t\t\t\tpipe: branch,\n\t\t\t\t\t\t\t\t\tinput: validatedVarname,\n\t\t\t\t\t\t\t\t\terrorType: 'assign',\n\t\t\t\t\t\t\t\t\tkey: validatedVarname,\n\t\t\t\t\t\t\t\t}),\n\t\t\t\t\t\t\t\t`if (${validatedVarname} instanceof PipeError) {`,\n\t\t\t\t\t\t\t\t`\t${errorsVarname}.push(PipeError.path(${idx}, '${validatedVarname}', ${validatedVarname}))`,\n\t\t\t\t\t\t\t\t...lines.map((l) => `\t${l}`),\n\t\t\t\t\t\t\t\tidx === branches.length - 1 ? `\t${opts.wrapError.format(`PipeError.rootFrom(${errorsVarname})`)}` : '',\n\t\t\t\t\t\t\t\t`}`,\n\t\t\t\t\t\t\t\t`else ${input} = ${validatedVarname}`,\n\t\t\t\t\t\t\t])\n\t\t\t\t\t\t\t.reduceRight<string[]>((acc, cur) => cur(acc), []),\n\t\t\t\t\t\topts.wrapError(`${input} instanceof PipeError`, input),\n\t\t\t\t\t],\n\t\t{\n\t\t\tschema: () => ({ oneOf: branches.map((branch) => schema(branch)) }),\n\t\t},\n\t)\n}\n\nexport const merge = <T1 extends Pipe<any, any>, T2 extends Pipe<any, any>>(branch1: T1, branch2: T2) => {\n\tconst inputVarname = `input_${getRandomValue()}`\n\treturn standard<PipeInput<T1> & PipeInput<T2>, PipeOutput<T1> & PipeOutput<T2>>(\n\t\t({ input, context }, opts) => [\n\t\t\t`let ${inputVarname}A = ${input}`,\n\t\t\t`let ${inputVarname}B = ${input}`,\n\t\t\t...compileNested({ opts, pipe: branch1, input: `${inputVarname}A` }),\n\t\t\topts.wrapError(`${inputVarname}A instanceof PipeError`, `${inputVarname}A`),\n\t\t\t...compileNested({ opts, pipe: branch2, input: `${inputVarname}B` }),\n\t\t\topts.wrapError(`${inputVarname}B instanceof PipeError`, `${inputVarname}B`),\n\t\t\t`${input} = ${context}.differMerge(${inputVarname}A, ${inputVarname}B)`,\n\t\t],\n\t\t{\n\t\t\tcontext: { differMerge },\n\t\t\tschema: () => ({ allOf: [schema(branch1), schema(branch2)] }),\n\t\t},\n\t)\n}\n\nexport const discriminate = <T extends Record<PropertyKey, Pipe<any, any>>>(\n\tdiscriminator: (val: PipeInput<T[keyof T]>) => PropertyKey,\n\tbranches: T,\n\terr = 'doesnt match any of the schema',\n) =>\n\tstandard<PipeInput<T[keyof T]>, PipeOutput<T[keyof T]>>(\n\t\t({ input, context, path }, opts) => [\n\t\t\t`switch (${context}.wrapInTryCatch(() => ${context}.discriminator(${input}))) {`,\n\t\t\t...Object.entries(branches).flatMap(([key, branch]) => [\n\t\t\t\t`\tcase ('${key}'): {`,\n\t\t\t\t...compileNested({ opts, pipe: branch, input }).map((l) => `\t\t${l}`),\n\t\t\t\t`\t\tbreak`,\n\t\t\t\t`\t}`,\n\t\t\t]),\n\t\t\t`\tdefault: ${opts.wrapError.format(`PipeError.root(\"${err}\", ${input}, ${path})`)}`,\n\t\t\t`}`,\n\t\t],\n\t\t{\n\t\t\tcontext: { wrapInTryCatch, discriminator },\n\t\t\tschema: () => ({ oneOf: Object.values(branches).map((s) => schema(s)) }),\n\t\t},\n\t)\n\nexport const fromJson = <T extends Pipe<any, any>>(branch: T) => {\n\tconst validatedVarname = `validated_${getRandomValue()}`\n\treturn standard<PipeInput<T>, PipeOutput<T>>(\n\t\t({ input, context }, opts) => [\n\t\t\t`let ${validatedVarname} = ${input}`,\n\t\t\t...compileNested({ opts, pipe: branch, input: validatedVarname, errorType: 'assign' }),\n\t\t\t`if (${validatedVarname} instanceof PipeError) {`,\n\t\t\topts.wrapError(`${input}?.constructor?.name !== 'String'`, validatedVarname),\n\t\t\t`\t${validatedVarname} = ${context}.wrapInTryCatch(() => JSON.parse(${input}), ${validatedVarname})`,\n\t\t\topts.wrapError(`${validatedVarname} instanceof PipeError`, validatedVarname),\n\t\t\t...compileNested({ opts, pipe: branch, input: validatedVarname, errorType: 'assign' }).map((l) => `\t${l}`),\n\t\t\topts.wrapError(`${validatedVarname} instanceof PipeError`, validatedVarname),\n\t\t\t`}`,\n\t\t\t`${input} = ${validatedVarname}`,\n\t\t],\n\t\t{\n\t\t\tcontext: { ...context(branch), wrapInTryCatch },\n\t\t\tschema: branch.schema,\n\t\t},\n\t)\n}\n\nexport const lazy = <T extends Pipe<any, any>>(pipeFn: () => T) =>\n\tdefine<PipeInput<T>, PipeOutput<T>>(\n\t\t(input) => {\n\t\t\tconst result = validate(pipeFn(), input)\n\t\t\treturn result.valid ? result.value : result.error\n\t\t},\n\t\t{\n\t\t\tschema: () => schema(pipeFn()),\n\t\t},\n\t)\n\nexport const recursive = <T extends Pipe<any, any>>(pipeFn: () => T, $refId: string) => {\n\tconst fnVarname = `fn_${getRandomValue()}`\n\tlet compiledBefore = false\n\tlet schemedBefore = false\n\treturn standard<PipeInput<T>, PipeOutput<T>>(\n\t\t({ input }, opts) => {\n\t\t\tconst common = [`${input} = ${fnVarname}(${input})`, opts.wrapError(`${input} instanceof PipeError`, input)]\n\t\t\tcompiledBefore = !compiledBefore\n\t\t\tif (!compiledBefore) return common\n\t\t\treturn [\n\t\t\t\t`function ${fnVarname}(node) {`,\n\t\t\t\t...compileNested({ opts: { ...opts, failEarly: true }, pipe: pipeFn(), input: 'node', errorType: 'return' }).map(\n\t\t\t\t\t(l) => `\t${l}`,\n\t\t\t\t),\n\t\t\t\t`\treturn node`,\n\t\t\t\t'}',\n\t\t\t\t...common,\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\tschema: () => {\n\t\t\t\tschemedBefore = !schemedBefore\n\t\t\t\tif (!schemedBefore) return { $refId }\n\t\t\t\treturn schema(pipeFn(), { $refId })\n\t\t\t},\n\t\t},\n\t)\n}\n"],"mappings":"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","names":["junctions_exports","__export","discriminate","fromJson","lazy","merge","or","recursive","__toCommonJS","import_differ","import_functions","import_pipes","branches","validatedVarname","errorsVarname","input","opts","branch","idx","lines","l","acc","cur","branch1","branch2","inputVarname","context","differMerge","discriminator","err","path","key","s","pipeFn","result","$refId","fnVarname","compiledBefore","schemedBefore","common"]}
@@ -1,2 +1,2 @@
1
- import{merge as P}from "../utils/differ.min.mjs";import{getRandomValue as u,wrapInTryCatch as f}from "../utils/functions/index.min.mjs";import{compileNested as i,context as d,standard as c,schema as s,define as l,validate as y}from "./base/pipes.min.mjs";const v=a=>{const e=`validated_${u()}`,r=`errors_${u()}`;return c(({input:t},n)=>a.length===0?[]:[`const ${r} = []`,`let ${e}`,...a.map((o,p)=>$=>[`${e} = ${t}`,...i({opts:{...n,failEarly:!0},pipe:o,input:e,errorType:"assign",key:e}),`if (${e} instanceof PipeError) {`,` ${r}.push(PipeError.path(${p}, '${e}', ${e}))`,...$.map(m=>` ${m}`),p===a.length-1?` ${n.wrapError.format(`PipeError.rootFrom(${r})`)}`:"","}",`else ${t} = ${e}`]).reduceRight((o,p)=>p(o),[]),n.wrapError(`${t} instanceof PipeError`,t)],{schema:()=>({oneOf:a.map(t=>s(t))})})},B=(a,e)=>{const r=`input_${u()}`;return c(({input:t,context:n},o)=>[`let ${r}A = ${t}`,`let ${r}B = ${t}`,...i({opts:o,pipe:a,input:`${r}A`}),o.wrapError(`${r}A instanceof PipeError`,`${r}A`),...i({opts:o,pipe:e,input:`${r}B`}),o.wrapError(`${r}B instanceof PipeError`,`${r}B`),`${t} = ${n}.differMerge(${r}A, ${r}B)`],{context:{differMerge:P},schema:()=>({allOf:[s(a),s(e)]})})},V=(a,e,r="doesnt match any of the schema")=>c(({input:t,context:n,path:o},p)=>[`switch (${n}.wrapInTryCatch(() => ${n}.discriminator(${t}))) {`,...Object.entries(e).flatMap(([$,m])=>[` case ('${$}'): {`,...i({opts:p,pipe:m,input:t}).map(T=>` ${T}`)," break"," }"]),` default: ${p.wrapError.format(`PipeError.root("${r}", ${t}, ${o})`)}`,"}"],{context:{wrapInTryCatch:f,discriminator:a},schema:()=>({oneOf:Object.values(e).map(t=>s(t))})}),k=a=>{const e=`validated_${u()}`;return c(({input:r,context:t},n)=>[`let ${e} = ${r}`,...i({opts:n,pipe:a,input:e,errorType:"assign"}),`if (${e} instanceof PipeError) {`,n.wrapError(`${r}?.constructor?.name !== 'String'`,e),` ${e} = ${t}.wrapInTryCatch(() => JSON.parse(${r}), ${e})`,n.wrapError(`${e} instanceof PipeError`,e),...i({opts:n,pipe:a,input:e,errorType:"assign"}).map(o=>` ${o}`),n.wrapError(`${e} instanceof PipeError`,e),"}",`${r} = ${e}`],{context:{...d(a),wrapInTryCatch:f},schema:a.schema})},A=a=>l(e=>{const r=y(a(),e);return r.valid?r.value:r.error},{schema:()=>s(a())}),_=(a,e)=>{const r=`fn_${u()}`;let t=!1,n=!1;return c(({input:o},p)=>{const $=[`${o} = ${r}(${o})`,p.wrapError(`${o} instanceof PipeError`,o)];return t?$:(t=!0,[`function ${r}(node) {`,...i({opts:{...p,failEarly:!0},pipe:a(),input:"node",errorType:"return"}).map(m=>` ${m}`)," return node","}",...$])},{schema:()=>n?{$refId:e}:(n=!0,s(a(),{$refId:e}))})};export{V as discriminate,k as fromJson,A as lazy,B as merge,v as or,_ as recursive};
1
+ import{merge as P}from "../utils/differ.min.mjs";import{getRandomValue as c,wrapInTryCatch as f}from "../utils/functions/index.min.mjs";import{compileNested as i,context as d,standard as u,schema as s,define as l,validate as y}from "./base/pipes.min.mjs";const v=a=>{const e=`validated_${c()}`,r=`errors_${c()}`;return u(({input:t},n)=>a.length===0?[]:[`const ${r} = []`,`let ${e}`,...a.map((o,p)=>$=>[`${e} = ${t}`,...i({opts:{...n,failEarly:!0},pipe:o,input:e,errorType:"assign",key:e}),`if (${e} instanceof PipeError) {`,` ${r}.push(PipeError.path(${p}, '${e}', ${e}))`,...$.map(m=>` ${m}`),p===a.length-1?` ${n.wrapError.format(`PipeError.rootFrom(${r})`)}`:"","}",`else ${t} = ${e}`]).reduceRight((o,p)=>p(o),[]),n.wrapError(`${t} instanceof PipeError`,t)],{schema:()=>({oneOf:a.map(t=>s(t))})})},B=(a,e)=>{const r=`input_${c()}`;return u(({input:t,context:n},o)=>[`let ${r}A = ${t}`,`let ${r}B = ${t}`,...i({opts:o,pipe:a,input:`${r}A`}),o.wrapError(`${r}A instanceof PipeError`,`${r}A`),...i({opts:o,pipe:e,input:`${r}B`}),o.wrapError(`${r}B instanceof PipeError`,`${r}B`),`${t} = ${n}.differMerge(${r}A, ${r}B)`],{context:{differMerge:P},schema:()=>({allOf:[s(a),s(e)]})})},V=(a,e,r="doesnt match any of the schema")=>u(({input:t,context:n,path:o},p)=>[`switch (${n}.wrapInTryCatch(() => ${n}.discriminator(${t}))) {`,...Object.entries(e).flatMap(([$,m])=>[` case ('${$}'): {`,...i({opts:p,pipe:m,input:t}).map(T=>` ${T}`)," break"," }"]),` default: ${p.wrapError.format(`PipeError.root("${r}", ${t}, ${o})`)}`,"}"],{context:{wrapInTryCatch:f,discriminator:a},schema:()=>({oneOf:Object.values(e).map(t=>s(t))})}),k=a=>{const e=`validated_${c()}`;return u(({input:r,context:t},n)=>[`let ${e} = ${r}`,...i({opts:n,pipe:a,input:e,errorType:"assign"}),`if (${e} instanceof PipeError) {`,n.wrapError(`${r}?.constructor?.name !== 'String'`,e),` ${e} = ${t}.wrapInTryCatch(() => JSON.parse(${r}), ${e})`,n.wrapError(`${e} instanceof PipeError`,e),...i({opts:n,pipe:a,input:e,errorType:"assign"}).map(o=>` ${o}`),n.wrapError(`${e} instanceof PipeError`,e),"}",`${r} = ${e}`],{context:{...d(a),wrapInTryCatch:f},schema:a.schema})},A=a=>l(e=>{const r=y(a(),e);return r.valid?r.value:r.error},{schema:()=>s(a())}),_=(a,e)=>{const r=`fn_${c()}`;let t=!1,n=!1;return u(({input:o},p)=>{const $=[`${o} = ${r}(${o})`,p.wrapError(`${o} instanceof PipeError`,o)];return t=!t,t?[`function ${r}(node) {`,...i({opts:{...p,failEarly:!0},pipe:a(),input:"node",errorType:"return"}).map(m=>` ${m}`)," return node","}",...$]:$},{schema:()=>(n=!n,n?s(a(),{$refId:e}):{$refId:e})})};export{V as discriminate,k as fromJson,A as lazy,B as merge,v as or,_ as recursive};
2
2
  //# sourceMappingURL=junctions.min.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../src/api/junctions.ts"],"sourcesContent":["import { Pipe, PipeInput, PipeOutput } from './base'\nimport { merge as differMerge } from '../utils/differ'\nimport { getRandomValue, wrapInTryCatch } from '../utils/functions'\nimport { compileNested, context, standard, schema, define, validate } from './base/pipes'\n\nexport const or = <T extends Pipe<any, any>[]>(branches: T) => {\n\tconst validatedVarname = `validated_${getRandomValue()}`\n\tconst errorsVarname = `errors_${getRandomValue()}`\n\treturn standard<PipeInput<T[number]>, PipeOutput<T[number]>>(\n\t\t({ input }, opts) =>\n\t\t\tbranches.length === 0\n\t\t\t\t? []\n\t\t\t\t: [\n\t\t\t\t\t\t`const ${errorsVarname} = []`,\n\t\t\t\t\t\t`let ${validatedVarname}`,\n\t\t\t\t\t\t...branches\n\t\t\t\t\t\t\t.map((branch, idx) => (lines: string[]) => [\n\t\t\t\t\t\t\t\t`${validatedVarname} = ${input}`,\n\t\t\t\t\t\t\t\t...compileNested({\n\t\t\t\t\t\t\t\t\topts: { ...opts, failEarly: true },\n\t\t\t\t\t\t\t\t\tpipe: branch,\n\t\t\t\t\t\t\t\t\tinput: validatedVarname,\n\t\t\t\t\t\t\t\t\terrorType: 'assign',\n\t\t\t\t\t\t\t\t\tkey: validatedVarname,\n\t\t\t\t\t\t\t\t}),\n\t\t\t\t\t\t\t\t`if (${validatedVarname} instanceof PipeError) {`,\n\t\t\t\t\t\t\t\t`\t${errorsVarname}.push(PipeError.path(${idx}, '${validatedVarname}', ${validatedVarname}))`,\n\t\t\t\t\t\t\t\t...lines.map((l) => `\t${l}`),\n\t\t\t\t\t\t\t\tidx === branches.length - 1 ? `\t${opts.wrapError.format(`PipeError.rootFrom(${errorsVarname})`)}` : '',\n\t\t\t\t\t\t\t\t`}`,\n\t\t\t\t\t\t\t\t`else ${input} = ${validatedVarname}`,\n\t\t\t\t\t\t\t])\n\t\t\t\t\t\t\t.reduceRight<string[]>((acc, cur) => cur(acc), []),\n\t\t\t\t\t\topts.wrapError(`${input} instanceof PipeError`, input),\n\t\t\t\t\t],\n\t\t{\n\t\t\tschema: () => ({ oneOf: branches.map((branch) => schema(branch)) }),\n\t\t},\n\t)\n}\n\nexport const merge = <T1 extends Pipe<any, any>, T2 extends Pipe<any, any>>(branch1: T1, branch2: T2) => {\n\tconst inputVarname = `input_${getRandomValue()}`\n\treturn standard<PipeInput<T1> & PipeInput<T2>, PipeOutput<T1> & PipeOutput<T2>>(\n\t\t({ input, context }, opts) => [\n\t\t\t`let ${inputVarname}A = ${input}`,\n\t\t\t`let ${inputVarname}B = ${input}`,\n\t\t\t...compileNested({ opts, pipe: branch1, input: `${inputVarname}A` }),\n\t\t\topts.wrapError(`${inputVarname}A instanceof PipeError`, `${inputVarname}A`),\n\t\t\t...compileNested({ opts, pipe: branch2, input: `${inputVarname}B` }),\n\t\t\topts.wrapError(`${inputVarname}B instanceof PipeError`, `${inputVarname}B`),\n\t\t\t`${input} = ${context}.differMerge(${inputVarname}A, ${inputVarname}B)`,\n\t\t],\n\t\t{\n\t\t\tcontext: { differMerge },\n\t\t\tschema: () => ({ allOf: [schema(branch1), schema(branch2)] }),\n\t\t},\n\t)\n}\n\nexport const discriminate = <T extends Record<PropertyKey, Pipe<any, any>>>(\n\tdiscriminator: (val: PipeInput<T[keyof T]>) => PropertyKey,\n\tbranches: T,\n\terr = 'doesnt match any of the schema',\n) =>\n\tstandard<PipeInput<T[keyof T]>, PipeOutput<T[keyof T]>>(\n\t\t({ input, context, path }, opts) => [\n\t\t\t`switch (${context}.wrapInTryCatch(() => ${context}.discriminator(${input}))) {`,\n\t\t\t...Object.entries(branches).flatMap(([key, branch]) => [\n\t\t\t\t`\tcase ('${key}'): {`,\n\t\t\t\t...compileNested({ opts, pipe: branch, input }).map((l) => `\t\t${l}`),\n\t\t\t\t`\t\tbreak`,\n\t\t\t\t`\t}`,\n\t\t\t]),\n\t\t\t`\tdefault: ${opts.wrapError.format(`PipeError.root(\"${err}\", ${input}, ${path})`)}`,\n\t\t\t`}`,\n\t\t],\n\t\t{\n\t\t\tcontext: { wrapInTryCatch, discriminator },\n\t\t\tschema: () => ({ oneOf: Object.values(branches).map((s) => schema(s)) }),\n\t\t},\n\t)\n\nexport const fromJson = <T extends Pipe<any, any>>(branch: T) => {\n\tconst validatedVarname = `validated_${getRandomValue()}`\n\treturn standard<PipeInput<T>, PipeOutput<T>>(\n\t\t({ input, context }, opts) => [\n\t\t\t`let ${validatedVarname} = ${input}`,\n\t\t\t...compileNested({ opts, pipe: branch, input: validatedVarname, errorType: 'assign' }),\n\t\t\t`if (${validatedVarname} instanceof PipeError) {`,\n\t\t\topts.wrapError(`${input}?.constructor?.name !== 'String'`, validatedVarname),\n\t\t\t`\t${validatedVarname} = ${context}.wrapInTryCatch(() => JSON.parse(${input}), ${validatedVarname})`,\n\t\t\topts.wrapError(`${validatedVarname} instanceof PipeError`, validatedVarname),\n\t\t\t...compileNested({ opts, pipe: branch, input: validatedVarname, errorType: 'assign' }).map((l) => `\t${l}`),\n\t\t\topts.wrapError(`${validatedVarname} instanceof PipeError`, validatedVarname),\n\t\t\t`}`,\n\t\t\t`${input} = ${validatedVarname}`,\n\t\t],\n\t\t{\n\t\t\tcontext: { ...context(branch), wrapInTryCatch },\n\t\t\tschema: branch.schema,\n\t\t},\n\t)\n}\n\nexport const lazy = <T extends Pipe<any, any>>(pipeFn: () => T) =>\n\tdefine<PipeInput<T>, PipeOutput<T>>(\n\t\t(input) => {\n\t\t\tconst result = validate(pipeFn(), input)\n\t\t\treturn result.valid ? result.value : result.error\n\t\t},\n\t\t{\n\t\t\tschema: () => schema(pipeFn()),\n\t\t},\n\t)\n\nexport const recursive = <T extends Pipe<any, any>>(pipeFn: () => T, $refId: string) => {\n\tconst fnVarname = `fn_${getRandomValue()}`\n\tlet compiledBefore = false\n\tlet schemedBefore = false\n\treturn standard<PipeInput<T>, PipeOutput<T>>(\n\t\t({ input }, opts) => {\n\t\t\tconst common = [`${input} = ${fnVarname}(${input})`, opts.wrapError(`${input} instanceof PipeError`, input)]\n\t\t\tif (compiledBefore) return common\n\t\t\tcompiledBefore = true\n\t\t\treturn [\n\t\t\t\t`function ${fnVarname}(node) {`,\n\t\t\t\t...compileNested({ opts: { ...opts, failEarly: true }, pipe: pipeFn(), input: 'node', errorType: 'return' }).map(\n\t\t\t\t\t(l) => `\t${l}`,\n\t\t\t\t),\n\t\t\t\t`\treturn node`,\n\t\t\t\t'}',\n\t\t\t\t...common,\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\tschema: () => {\n\t\t\t\tif (schemedBefore) return { $refId }\n\t\t\t\tschemedBefore = true\n\t\t\t\treturn schema(pipeFn(), { $refId })\n\t\t\t},\n\t\t},\n\t)\n}\n"],"mappings":"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","names":["differMerge","getRandomValue","wrapInTryCatch","compileNested","context","standard","schema","define","validate","or","branches","validatedVarname","errorsVarname","input","opts","branch","idx","lines","l","acc","cur","merge","branch1","branch2","inputVarname","discriminate","discriminator","err","path","key","s","fromJson","lazy","pipeFn","result","recursive","$refId","fnVarname","compiledBefore","schemedBefore","common"]}
1
+ {"version":3,"sources":["../../../src/api/junctions.ts"],"sourcesContent":["import { Pipe, PipeInput, PipeOutput } from './base'\nimport { merge as differMerge } from '../utils/differ'\nimport { getRandomValue, wrapInTryCatch } from '../utils/functions'\nimport { compileNested, context, standard, schema, define, validate } from './base/pipes'\n\nexport const or = <T extends Pipe<any, any>[]>(branches: T) => {\n\tconst validatedVarname = `validated_${getRandomValue()}`\n\tconst errorsVarname = `errors_${getRandomValue()}`\n\treturn standard<PipeInput<T[number]>, PipeOutput<T[number]>>(\n\t\t({ input }, opts) =>\n\t\t\tbranches.length === 0\n\t\t\t\t? []\n\t\t\t\t: [\n\t\t\t\t\t\t`const ${errorsVarname} = []`,\n\t\t\t\t\t\t`let ${validatedVarname}`,\n\t\t\t\t\t\t...branches\n\t\t\t\t\t\t\t.map((branch, idx) => (lines: string[]) => [\n\t\t\t\t\t\t\t\t`${validatedVarname} = ${input}`,\n\t\t\t\t\t\t\t\t...compileNested({\n\t\t\t\t\t\t\t\t\topts: { ...opts, failEarly: true },\n\t\t\t\t\t\t\t\t\tpipe: branch,\n\t\t\t\t\t\t\t\t\tinput: validatedVarname,\n\t\t\t\t\t\t\t\t\terrorType: 'assign',\n\t\t\t\t\t\t\t\t\tkey: validatedVarname,\n\t\t\t\t\t\t\t\t}),\n\t\t\t\t\t\t\t\t`if (${validatedVarname} instanceof PipeError) {`,\n\t\t\t\t\t\t\t\t`\t${errorsVarname}.push(PipeError.path(${idx}, '${validatedVarname}', ${validatedVarname}))`,\n\t\t\t\t\t\t\t\t...lines.map((l) => `\t${l}`),\n\t\t\t\t\t\t\t\tidx === branches.length - 1 ? `\t${opts.wrapError.format(`PipeError.rootFrom(${errorsVarname})`)}` : '',\n\t\t\t\t\t\t\t\t`}`,\n\t\t\t\t\t\t\t\t`else ${input} = ${validatedVarname}`,\n\t\t\t\t\t\t\t])\n\t\t\t\t\t\t\t.reduceRight<string[]>((acc, cur) => cur(acc), []),\n\t\t\t\t\t\topts.wrapError(`${input} instanceof PipeError`, input),\n\t\t\t\t\t],\n\t\t{\n\t\t\tschema: () => ({ oneOf: branches.map((branch) => schema(branch)) }),\n\t\t},\n\t)\n}\n\nexport const merge = <T1 extends Pipe<any, any>, T2 extends Pipe<any, any>>(branch1: T1, branch2: T2) => {\n\tconst inputVarname = `input_${getRandomValue()}`\n\treturn standard<PipeInput<T1> & PipeInput<T2>, PipeOutput<T1> & PipeOutput<T2>>(\n\t\t({ input, context }, opts) => [\n\t\t\t`let ${inputVarname}A = ${input}`,\n\t\t\t`let ${inputVarname}B = ${input}`,\n\t\t\t...compileNested({ opts, pipe: branch1, input: `${inputVarname}A` }),\n\t\t\topts.wrapError(`${inputVarname}A instanceof PipeError`, `${inputVarname}A`),\n\t\t\t...compileNested({ opts, pipe: branch2, input: `${inputVarname}B` }),\n\t\t\topts.wrapError(`${inputVarname}B instanceof PipeError`, `${inputVarname}B`),\n\t\t\t`${input} = ${context}.differMerge(${inputVarname}A, ${inputVarname}B)`,\n\t\t],\n\t\t{\n\t\t\tcontext: { differMerge },\n\t\t\tschema: () => ({ allOf: [schema(branch1), schema(branch2)] }),\n\t\t},\n\t)\n}\n\nexport const discriminate = <T extends Record<PropertyKey, Pipe<any, any>>>(\n\tdiscriminator: (val: PipeInput<T[keyof T]>) => PropertyKey,\n\tbranches: T,\n\terr = 'doesnt match any of the schema',\n) =>\n\tstandard<PipeInput<T[keyof T]>, PipeOutput<T[keyof T]>>(\n\t\t({ input, context, path }, opts) => [\n\t\t\t`switch (${context}.wrapInTryCatch(() => ${context}.discriminator(${input}))) {`,\n\t\t\t...Object.entries(branches).flatMap(([key, branch]) => [\n\t\t\t\t`\tcase ('${key}'): {`,\n\t\t\t\t...compileNested({ opts, pipe: branch, input }).map((l) => `\t\t${l}`),\n\t\t\t\t`\t\tbreak`,\n\t\t\t\t`\t}`,\n\t\t\t]),\n\t\t\t`\tdefault: ${opts.wrapError.format(`PipeError.root(\"${err}\", ${input}, ${path})`)}`,\n\t\t\t`}`,\n\t\t],\n\t\t{\n\t\t\tcontext: { wrapInTryCatch, discriminator },\n\t\t\tschema: () => ({ oneOf: Object.values(branches).map((s) => schema(s)) }),\n\t\t},\n\t)\n\nexport const fromJson = <T extends Pipe<any, any>>(branch: T) => {\n\tconst validatedVarname = `validated_${getRandomValue()}`\n\treturn standard<PipeInput<T>, PipeOutput<T>>(\n\t\t({ input, context }, opts) => [\n\t\t\t`let ${validatedVarname} = ${input}`,\n\t\t\t...compileNested({ opts, pipe: branch, input: validatedVarname, errorType: 'assign' }),\n\t\t\t`if (${validatedVarname} instanceof PipeError) {`,\n\t\t\topts.wrapError(`${input}?.constructor?.name !== 'String'`, validatedVarname),\n\t\t\t`\t${validatedVarname} = ${context}.wrapInTryCatch(() => JSON.parse(${input}), ${validatedVarname})`,\n\t\t\topts.wrapError(`${validatedVarname} instanceof PipeError`, validatedVarname),\n\t\t\t...compileNested({ opts, pipe: branch, input: validatedVarname, errorType: 'assign' }).map((l) => `\t${l}`),\n\t\t\topts.wrapError(`${validatedVarname} instanceof PipeError`, validatedVarname),\n\t\t\t`}`,\n\t\t\t`${input} = ${validatedVarname}`,\n\t\t],\n\t\t{\n\t\t\tcontext: { ...context(branch), wrapInTryCatch },\n\t\t\tschema: branch.schema,\n\t\t},\n\t)\n}\n\nexport const lazy = <T extends Pipe<any, any>>(pipeFn: () => T) =>\n\tdefine<PipeInput<T>, PipeOutput<T>>(\n\t\t(input) => {\n\t\t\tconst result = validate(pipeFn(), input)\n\t\t\treturn result.valid ? result.value : result.error\n\t\t},\n\t\t{\n\t\t\tschema: () => schema(pipeFn()),\n\t\t},\n\t)\n\nexport const recursive = <T extends Pipe<any, any>>(pipeFn: () => T, $refId: string) => {\n\tconst fnVarname = `fn_${getRandomValue()}`\n\tlet compiledBefore = false\n\tlet schemedBefore = false\n\treturn standard<PipeInput<T>, PipeOutput<T>>(\n\t\t({ input }, opts) => {\n\t\t\tconst common = [`${input} = ${fnVarname}(${input})`, opts.wrapError(`${input} instanceof PipeError`, input)]\n\t\t\tcompiledBefore = !compiledBefore\n\t\t\tif (!compiledBefore) return common\n\t\t\treturn [\n\t\t\t\t`function ${fnVarname}(node) {`,\n\t\t\t\t...compileNested({ opts: { ...opts, failEarly: true }, pipe: pipeFn(), input: 'node', errorType: 'return' }).map(\n\t\t\t\t\t(l) => `\t${l}`,\n\t\t\t\t),\n\t\t\t\t`\treturn node`,\n\t\t\t\t'}',\n\t\t\t\t...common,\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\tschema: () => {\n\t\t\t\tschemedBefore = !schemedBefore\n\t\t\t\tif (!schemedBefore) return { $refId }\n\t\t\t\treturn schema(pipeFn(), { $refId })\n\t\t\t},\n\t\t},\n\t)\n}\n"],"mappings":"AACA,OAAS,SAASA,MAAmB,kBACrC,OAAS,kBAAAC,EAAgB,kBAAAC,MAAsB,qBAC/C,OAAS,iBAAAC,EAAe,WAAAC,EAAS,YAAAC,EAAU,UAAAC,EAAQ,UAAAC,EAAQ,YAAAC,MAAgB,eAEpE,MAAMC,EAAkCC,GAAgB,CAC9D,MAAMC,EAAmB,aAAaV,EAAe,CAAC,GAChDW,EAAgB,UAAUX,EAAe,CAAC,GAChD,OAAOI,EACN,CAAC,CAAE,MAAAQ,CAAM,EAAGC,IACXJ,EAAS,SAAW,EACjB,CAAC,EACD,CACA,SAASE,CAAa,QACtB,OAAOD,CAAgB,GACvB,GAAGD,EACD,IAAI,CAACK,EAAQC,IAASC,GAAoB,CAC1C,GAAGN,CAAgB,MAAME,CAAK,GAC9B,GAAGV,EAAc,CAChB,KAAM,CAAE,GAAGW,EAAM,UAAW,EAAK,EACjC,KAAMC,EACN,MAAOJ,EACP,UAAW,SACX,IAAKA,CACN,CAAC,EACD,OAAOA,CAAgB,2BACvB,IAAIC,CAAa,wBAAwBI,CAAG,MAAML,CAAgB,MAAMA,CAAgB,KACxF,GAAGM,EAAM,IAAKC,GAAM,IAAIA,CAAC,EAAE,EAC3BF,IAAQN,EAAS,OAAS,EAAI,IAAII,EAAK,UAAU,OAAO,sBAAsBF,CAAa,GAAG,CAAC,GAAK,GACpG,IACA,QAAQC,CAAK,MAAMF,CAAgB,EACpC,CAAC,EACA,YAAsB,CAACQ,EAAKC,IAAQA,EAAID,CAAG,EAAG,CAAC,CAAC,EAClDL,EAAK,UAAU,GAAGD,CAAK,wBAAyBA,CAAK,CACtD,EACH,CACC,OAAQ,KAAO,CAAE,MAAOH,EAAS,IAAKK,GAAWT,EAAOS,CAAM,CAAC,CAAE,EAClE,CACD,CACD,EAEaM,EAAQ,CAAuDC,EAAaC,IAAgB,CACxG,MAAMC,EAAe,SAASvB,EAAe,CAAC,GAC9C,OAAOI,EACN,CAAC,CAAE,MAAAQ,EAAO,QAAAT,CAAQ,EAAGU,IAAS,CAC7B,OAAOU,CAAY,OAAOX,CAAK,GAC/B,OAAOW,CAAY,OAAOX,CAAK,GAC/B,GAAGV,EAAc,CAAE,KAAAW,EAAM,KAAMQ,EAAS,MAAO,GAAGE,CAAY,GAAI,CAAC,EACnEV,EAAK,UAAU,GAAGU,CAAY,yBAA0B,GAAGA,CAAY,GAAG,EAC1E,GAAGrB,EAAc,CAAE,KAAAW,EAAM,KAAMS,EAAS,MAAO,GAAGC,CAAY,GAAI,CAAC,EACnEV,EAAK,UAAU,GAAGU,CAAY,yBAA0B,GAAGA,CAAY,GAAG,EAC1E,GAAGX,CAAK,MAAMT,CAAO,gBAAgBoB,CAAY,MAAMA,CAAY,IACpE,EACA,CACC,QAAS,CAAE,YAAAxB,CAAY,EACvB,OAAQ,KAAO,CAAE,MAAO,CAACM,EAAOgB,CAAO,EAAGhB,EAAOiB,CAAO,CAAC,CAAE,EAC5D,CACD,CACD,EAEaE,EAAe,CAC3BC,EACAhB,EACAiB,EAAM,mCAENtB,EACC,CAAC,CAAE,MAAAQ,EAAO,QAAAT,EAAS,KAAAwB,CAAK,EAAGd,IAAS,CACnC,WAAWV,CAAO,yBAAyBA,CAAO,kBAAkBS,CAAK,QACzE,GAAG,OAAO,QAAQH,CAAQ,EAAE,QAAQ,CAAC,CAACmB,EAAKd,CAAM,IAAM,CACtD,WAAWc,CAAG,QACd,GAAG1B,EAAc,CAAE,KAAAW,EAAM,KAAMC,EAAQ,MAAAF,CAAM,CAAC,EAAE,IAAKK,GAAM,KAAKA,CAAC,EAAE,EACnE,UACA,IACD,CAAC,EACD,aAAaJ,EAAK,UAAU,OAAO,mBAAmBa,CAAG,MAAMd,CAAK,KAAKe,CAAI,GAAG,CAAC,GACjF,GACD,EACA,CACC,QAAS,CAAE,eAAA1B,EAAgB,cAAAwB,CAAc,EACzC,OAAQ,KAAO,CAAE,MAAO,OAAO,OAAOhB,CAAQ,EAAE,IAAKoB,GAAMxB,EAAOwB,CAAC,CAAC,CAAE,EACvE,CACD,EAEYC,EAAsChB,GAAc,CAChE,MAAMJ,EAAmB,aAAaV,EAAe,CAAC,GACtD,OAAOI,EACN,CAAC,CAAE,MAAAQ,EAAO,QAAAT,CAAQ,EAAGU,IAAS,CAC7B,OAAOH,CAAgB,MAAME,CAAK,GAClC,GAAGV,EAAc,CAAE,KAAAW,EAAM,KAAMC,EAAQ,MAAOJ,EAAkB,UAAW,QAAS,CAAC,EACrF,OAAOA,CAAgB,2BACvBG,EAAK,UAAU,GAAGD,CAAK,mCAAoCF,CAAgB,EAC3E,IAAIA,CAAgB,MAAMP,CAAO,oCAAoCS,CAAK,MAAMF,CAAgB,IAChGG,EAAK,UAAU,GAAGH,CAAgB,wBAAyBA,CAAgB,EAC3E,GAAGR,EAAc,CAAE,KAAAW,EAAM,KAAMC,EAAQ,MAAOJ,EAAkB,UAAW,QAAS,CAAC,EAAE,IAAKO,GAAM,IAAIA,CAAC,EAAE,EACzGJ,EAAK,UAAU,GAAGH,CAAgB,wBAAyBA,CAAgB,EAC3E,IACA,GAAGE,CAAK,MAAMF,CAAgB,EAC/B,EACA,CACC,QAAS,CAAE,GAAGP,EAAQW,CAAM,EAAG,eAAAb,CAAe,EAC9C,OAAQa,EAAO,MAChB,CACD,CACD,EAEaiB,EAAkCC,GAC9C1B,EACEM,GAAU,CACV,MAAMqB,EAAS1B,EAASyB,EAAO,EAAGpB,CAAK,EACvC,OAAOqB,EAAO,MAAQA,EAAO,MAAQA,EAAO,KAC7C,EACA,CACC,OAAQ,IAAM5B,EAAO2B,EAAO,CAAC,CAC9B,CACD,EAEYE,EAAY,CAA2BF,EAAiBG,IAAmB,CACvF,MAAMC,EAAY,MAAMpC,EAAe,CAAC,GACxC,IAAIqC,EAAiB,GACjBC,EAAgB,GACpB,OAAOlC,EACN,CAAC,CAAE,MAAAQ,CAAM,EAAGC,IAAS,CACpB,MAAM0B,EAAS,CAAC,GAAG3B,CAAK,MAAMwB,CAAS,IAAIxB,CAAK,IAAKC,EAAK,UAAU,GAAGD,CAAK,wBAAyBA,CAAK,CAAC,EAE3G,OADAyB,EAAiB,CAACA,EACbA,EACE,CACN,YAAYD,CAAS,WACrB,GAAGlC,EAAc,CAAE,KAAM,CAAE,GAAGW,EAAM,UAAW,EAAK,EAAG,KAAMmB,EAAO,EAAG,MAAO,OAAQ,UAAW,QAAS,CAAC,EAAE,IAC3Gf,GAAM,IAAIA,CAAC,EACb,EACA,eACA,IACA,GAAGsB,CACJ,EAT4BA,CAU7B,EACA,CACC,OAAQ,KACPD,EAAgB,CAACA,EACZA,EACEjC,EAAO2B,EAAO,EAAG,CAAE,OAAAG,CAAO,CAAC,EADP,CAAE,OAAAA,CAAO,EAGtC,CACD,CACD","names":["differMerge","getRandomValue","wrapInTryCatch","compileNested","context","standard","schema","define","validate","or","branches","validatedVarname","errorsVarname","input","opts","branch","idx","lines","l","acc","cur","merge","branch1","branch2","inputVarname","discriminate","discriminator","err","path","key","s","fromJson","lazy","pipeFn","result","recursive","$refId","fnVarname","compiledBefore","schemedBefore","common"]}
@@ -103,8 +103,8 @@ const recursive = (pipeFn, $refId) => {
103
103
  return standard(
104
104
  ({ input }, opts) => {
105
105
  const common = [`${input} = ${fnVarname}(${input})`, opts.wrapError(`${input} instanceof PipeError`, input)];
106
- if (compiledBefore) return common;
107
- compiledBefore = true;
106
+ compiledBefore = !compiledBefore;
107
+ if (!compiledBefore) return common;
108
108
  return [
109
109
  `function ${fnVarname}(node) {`,
110
110
  ...compileNested({ opts: { ...opts, failEarly: true }, pipe: pipeFn(), input: "node", errorType: "return" }).map(
@@ -117,8 +117,8 @@ const recursive = (pipeFn, $refId) => {
117
117
  },
118
118
  {
119
119
  schema: () => {
120
- if (schemedBefore) return { $refId };
121
- schemedBefore = true;
120
+ schemedBefore = !schemedBefore;
121
+ if (!schemedBefore) return { $refId };
122
122
  return schema(pipeFn(), { $refId });
123
123
  }
124
124
  }
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../src/api/junctions.ts"],"sourcesContent":["import { Pipe, PipeInput, PipeOutput } from './base'\nimport { merge as differMerge } from '../utils/differ'\nimport { getRandomValue, wrapInTryCatch } from '../utils/functions'\nimport { compileNested, context, standard, schema, define, validate } from './base/pipes'\n\nexport const or = <T extends Pipe<any, any>[]>(branches: T) => {\n\tconst validatedVarname = `validated_${getRandomValue()}`\n\tconst errorsVarname = `errors_${getRandomValue()}`\n\treturn standard<PipeInput<T[number]>, PipeOutput<T[number]>>(\n\t\t({ input }, opts) =>\n\t\t\tbranches.length === 0\n\t\t\t\t? []\n\t\t\t\t: [\n\t\t\t\t\t\t`const ${errorsVarname} = []`,\n\t\t\t\t\t\t`let ${validatedVarname}`,\n\t\t\t\t\t\t...branches\n\t\t\t\t\t\t\t.map((branch, idx) => (lines: string[]) => [\n\t\t\t\t\t\t\t\t`${validatedVarname} = ${input}`,\n\t\t\t\t\t\t\t\t...compileNested({\n\t\t\t\t\t\t\t\t\topts: { ...opts, failEarly: true },\n\t\t\t\t\t\t\t\t\tpipe: branch,\n\t\t\t\t\t\t\t\t\tinput: validatedVarname,\n\t\t\t\t\t\t\t\t\terrorType: 'assign',\n\t\t\t\t\t\t\t\t\tkey: validatedVarname,\n\t\t\t\t\t\t\t\t}),\n\t\t\t\t\t\t\t\t`if (${validatedVarname} instanceof PipeError) {`,\n\t\t\t\t\t\t\t\t`\t${errorsVarname}.push(PipeError.path(${idx}, '${validatedVarname}', ${validatedVarname}))`,\n\t\t\t\t\t\t\t\t...lines.map((l) => `\t${l}`),\n\t\t\t\t\t\t\t\tidx === branches.length - 1 ? `\t${opts.wrapError.format(`PipeError.rootFrom(${errorsVarname})`)}` : '',\n\t\t\t\t\t\t\t\t`}`,\n\t\t\t\t\t\t\t\t`else ${input} = ${validatedVarname}`,\n\t\t\t\t\t\t\t])\n\t\t\t\t\t\t\t.reduceRight<string[]>((acc, cur) => cur(acc), []),\n\t\t\t\t\t\topts.wrapError(`${input} instanceof PipeError`, input),\n\t\t\t\t\t],\n\t\t{\n\t\t\tschema: () => ({ oneOf: branches.map((branch) => schema(branch)) }),\n\t\t},\n\t)\n}\n\nexport const merge = <T1 extends Pipe<any, any>, T2 extends Pipe<any, any>>(branch1: T1, branch2: T2) => {\n\tconst inputVarname = `input_${getRandomValue()}`\n\treturn standard<PipeInput<T1> & PipeInput<T2>, PipeOutput<T1> & PipeOutput<T2>>(\n\t\t({ input, context }, opts) => [\n\t\t\t`let ${inputVarname}A = ${input}`,\n\t\t\t`let ${inputVarname}B = ${input}`,\n\t\t\t...compileNested({ opts, pipe: branch1, input: `${inputVarname}A` }),\n\t\t\topts.wrapError(`${inputVarname}A instanceof PipeError`, `${inputVarname}A`),\n\t\t\t...compileNested({ opts, pipe: branch2, input: `${inputVarname}B` }),\n\t\t\topts.wrapError(`${inputVarname}B instanceof PipeError`, `${inputVarname}B`),\n\t\t\t`${input} = ${context}.differMerge(${inputVarname}A, ${inputVarname}B)`,\n\t\t],\n\t\t{\n\t\t\tcontext: { differMerge },\n\t\t\tschema: () => ({ allOf: [schema(branch1), schema(branch2)] }),\n\t\t},\n\t)\n}\n\nexport const discriminate = <T extends Record<PropertyKey, Pipe<any, any>>>(\n\tdiscriminator: (val: PipeInput<T[keyof T]>) => PropertyKey,\n\tbranches: T,\n\terr = 'doesnt match any of the schema',\n) =>\n\tstandard<PipeInput<T[keyof T]>, PipeOutput<T[keyof T]>>(\n\t\t({ input, context, path }, opts) => [\n\t\t\t`switch (${context}.wrapInTryCatch(() => ${context}.discriminator(${input}))) {`,\n\t\t\t...Object.entries(branches).flatMap(([key, branch]) => [\n\t\t\t\t`\tcase ('${key}'): {`,\n\t\t\t\t...compileNested({ opts, pipe: branch, input }).map((l) => `\t\t${l}`),\n\t\t\t\t`\t\tbreak`,\n\t\t\t\t`\t}`,\n\t\t\t]),\n\t\t\t`\tdefault: ${opts.wrapError.format(`PipeError.root(\"${err}\", ${input}, ${path})`)}`,\n\t\t\t`}`,\n\t\t],\n\t\t{\n\t\t\tcontext: { wrapInTryCatch, discriminator },\n\t\t\tschema: () => ({ oneOf: Object.values(branches).map((s) => schema(s)) }),\n\t\t},\n\t)\n\nexport const fromJson = <T extends Pipe<any, any>>(branch: T) => {\n\tconst validatedVarname = `validated_${getRandomValue()}`\n\treturn standard<PipeInput<T>, PipeOutput<T>>(\n\t\t({ input, context }, opts) => [\n\t\t\t`let ${validatedVarname} = ${input}`,\n\t\t\t...compileNested({ opts, pipe: branch, input: validatedVarname, errorType: 'assign' }),\n\t\t\t`if (${validatedVarname} instanceof PipeError) {`,\n\t\t\topts.wrapError(`${input}?.constructor?.name !== 'String'`, validatedVarname),\n\t\t\t`\t${validatedVarname} = ${context}.wrapInTryCatch(() => JSON.parse(${input}), ${validatedVarname})`,\n\t\t\topts.wrapError(`${validatedVarname} instanceof PipeError`, validatedVarname),\n\t\t\t...compileNested({ opts, pipe: branch, input: validatedVarname, errorType: 'assign' }).map((l) => `\t${l}`),\n\t\t\topts.wrapError(`${validatedVarname} instanceof PipeError`, validatedVarname),\n\t\t\t`}`,\n\t\t\t`${input} = ${validatedVarname}`,\n\t\t],\n\t\t{\n\t\t\tcontext: { ...context(branch), wrapInTryCatch },\n\t\t\tschema: branch.schema,\n\t\t},\n\t)\n}\n\nexport const lazy = <T extends Pipe<any, any>>(pipeFn: () => T) =>\n\tdefine<PipeInput<T>, PipeOutput<T>>(\n\t\t(input) => {\n\t\t\tconst result = validate(pipeFn(), input)\n\t\t\treturn result.valid ? result.value : result.error\n\t\t},\n\t\t{\n\t\t\tschema: () => schema(pipeFn()),\n\t\t},\n\t)\n\nexport const recursive = <T extends Pipe<any, any>>(pipeFn: () => T, $refId: string) => {\n\tconst fnVarname = `fn_${getRandomValue()}`\n\tlet compiledBefore = false\n\tlet schemedBefore = false\n\treturn standard<PipeInput<T>, PipeOutput<T>>(\n\t\t({ input }, opts) => {\n\t\t\tconst common = [`${input} = ${fnVarname}(${input})`, opts.wrapError(`${input} instanceof PipeError`, input)]\n\t\t\tif (compiledBefore) return common\n\t\t\tcompiledBefore = true\n\t\t\treturn [\n\t\t\t\t`function ${fnVarname}(node) {`,\n\t\t\t\t...compileNested({ opts: { ...opts, failEarly: true }, pipe: pipeFn(), input: 'node', errorType: 'return' }).map(\n\t\t\t\t\t(l) => `\t${l}`,\n\t\t\t\t),\n\t\t\t\t`\treturn node`,\n\t\t\t\t'}',\n\t\t\t\t...common,\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\tschema: () => {\n\t\t\t\tif (schemedBefore) return { $refId }\n\t\t\t\tschemedBefore = true\n\t\t\t\treturn schema(pipeFn(), { $refId })\n\t\t\t},\n\t\t},\n\t)\n}\n"],"mappings":"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","names":["context"]}
1
+ {"version":3,"sources":["../../../src/api/junctions.ts"],"sourcesContent":["import { Pipe, PipeInput, PipeOutput } from './base'\nimport { merge as differMerge } from '../utils/differ'\nimport { getRandomValue, wrapInTryCatch } from '../utils/functions'\nimport { compileNested, context, standard, schema, define, validate } from './base/pipes'\n\nexport const or = <T extends Pipe<any, any>[]>(branches: T) => {\n\tconst validatedVarname = `validated_${getRandomValue()}`\n\tconst errorsVarname = `errors_${getRandomValue()}`\n\treturn standard<PipeInput<T[number]>, PipeOutput<T[number]>>(\n\t\t({ input }, opts) =>\n\t\t\tbranches.length === 0\n\t\t\t\t? []\n\t\t\t\t: [\n\t\t\t\t\t\t`const ${errorsVarname} = []`,\n\t\t\t\t\t\t`let ${validatedVarname}`,\n\t\t\t\t\t\t...branches\n\t\t\t\t\t\t\t.map((branch, idx) => (lines: string[]) => [\n\t\t\t\t\t\t\t\t`${validatedVarname} = ${input}`,\n\t\t\t\t\t\t\t\t...compileNested({\n\t\t\t\t\t\t\t\t\topts: { ...opts, failEarly: true },\n\t\t\t\t\t\t\t\t\tpipe: branch,\n\t\t\t\t\t\t\t\t\tinput: validatedVarname,\n\t\t\t\t\t\t\t\t\terrorType: 'assign',\n\t\t\t\t\t\t\t\t\tkey: validatedVarname,\n\t\t\t\t\t\t\t\t}),\n\t\t\t\t\t\t\t\t`if (${validatedVarname} instanceof PipeError) {`,\n\t\t\t\t\t\t\t\t`\t${errorsVarname}.push(PipeError.path(${idx}, '${validatedVarname}', ${validatedVarname}))`,\n\t\t\t\t\t\t\t\t...lines.map((l) => `\t${l}`),\n\t\t\t\t\t\t\t\tidx === branches.length - 1 ? `\t${opts.wrapError.format(`PipeError.rootFrom(${errorsVarname})`)}` : '',\n\t\t\t\t\t\t\t\t`}`,\n\t\t\t\t\t\t\t\t`else ${input} = ${validatedVarname}`,\n\t\t\t\t\t\t\t])\n\t\t\t\t\t\t\t.reduceRight<string[]>((acc, cur) => cur(acc), []),\n\t\t\t\t\t\topts.wrapError(`${input} instanceof PipeError`, input),\n\t\t\t\t\t],\n\t\t{\n\t\t\tschema: () => ({ oneOf: branches.map((branch) => schema(branch)) }),\n\t\t},\n\t)\n}\n\nexport const merge = <T1 extends Pipe<any, any>, T2 extends Pipe<any, any>>(branch1: T1, branch2: T2) => {\n\tconst inputVarname = `input_${getRandomValue()}`\n\treturn standard<PipeInput<T1> & PipeInput<T2>, PipeOutput<T1> & PipeOutput<T2>>(\n\t\t({ input, context }, opts) => [\n\t\t\t`let ${inputVarname}A = ${input}`,\n\t\t\t`let ${inputVarname}B = ${input}`,\n\t\t\t...compileNested({ opts, pipe: branch1, input: `${inputVarname}A` }),\n\t\t\topts.wrapError(`${inputVarname}A instanceof PipeError`, `${inputVarname}A`),\n\t\t\t...compileNested({ opts, pipe: branch2, input: `${inputVarname}B` }),\n\t\t\topts.wrapError(`${inputVarname}B instanceof PipeError`, `${inputVarname}B`),\n\t\t\t`${input} = ${context}.differMerge(${inputVarname}A, ${inputVarname}B)`,\n\t\t],\n\t\t{\n\t\t\tcontext: { differMerge },\n\t\t\tschema: () => ({ allOf: [schema(branch1), schema(branch2)] }),\n\t\t},\n\t)\n}\n\nexport const discriminate = <T extends Record<PropertyKey, Pipe<any, any>>>(\n\tdiscriminator: (val: PipeInput<T[keyof T]>) => PropertyKey,\n\tbranches: T,\n\terr = 'doesnt match any of the schema',\n) =>\n\tstandard<PipeInput<T[keyof T]>, PipeOutput<T[keyof T]>>(\n\t\t({ input, context, path }, opts) => [\n\t\t\t`switch (${context}.wrapInTryCatch(() => ${context}.discriminator(${input}))) {`,\n\t\t\t...Object.entries(branches).flatMap(([key, branch]) => [\n\t\t\t\t`\tcase ('${key}'): {`,\n\t\t\t\t...compileNested({ opts, pipe: branch, input }).map((l) => `\t\t${l}`),\n\t\t\t\t`\t\tbreak`,\n\t\t\t\t`\t}`,\n\t\t\t]),\n\t\t\t`\tdefault: ${opts.wrapError.format(`PipeError.root(\"${err}\", ${input}, ${path})`)}`,\n\t\t\t`}`,\n\t\t],\n\t\t{\n\t\t\tcontext: { wrapInTryCatch, discriminator },\n\t\t\tschema: () => ({ oneOf: Object.values(branches).map((s) => schema(s)) }),\n\t\t},\n\t)\n\nexport const fromJson = <T extends Pipe<any, any>>(branch: T) => {\n\tconst validatedVarname = `validated_${getRandomValue()}`\n\treturn standard<PipeInput<T>, PipeOutput<T>>(\n\t\t({ input, context }, opts) => [\n\t\t\t`let ${validatedVarname} = ${input}`,\n\t\t\t...compileNested({ opts, pipe: branch, input: validatedVarname, errorType: 'assign' }),\n\t\t\t`if (${validatedVarname} instanceof PipeError) {`,\n\t\t\topts.wrapError(`${input}?.constructor?.name !== 'String'`, validatedVarname),\n\t\t\t`\t${validatedVarname} = ${context}.wrapInTryCatch(() => JSON.parse(${input}), ${validatedVarname})`,\n\t\t\topts.wrapError(`${validatedVarname} instanceof PipeError`, validatedVarname),\n\t\t\t...compileNested({ opts, pipe: branch, input: validatedVarname, errorType: 'assign' }).map((l) => `\t${l}`),\n\t\t\topts.wrapError(`${validatedVarname} instanceof PipeError`, validatedVarname),\n\t\t\t`}`,\n\t\t\t`${input} = ${validatedVarname}`,\n\t\t],\n\t\t{\n\t\t\tcontext: { ...context(branch), wrapInTryCatch },\n\t\t\tschema: branch.schema,\n\t\t},\n\t)\n}\n\nexport const lazy = <T extends Pipe<any, any>>(pipeFn: () => T) =>\n\tdefine<PipeInput<T>, PipeOutput<T>>(\n\t\t(input) => {\n\t\t\tconst result = validate(pipeFn(), input)\n\t\t\treturn result.valid ? result.value : result.error\n\t\t},\n\t\t{\n\t\t\tschema: () => schema(pipeFn()),\n\t\t},\n\t)\n\nexport const recursive = <T extends Pipe<any, any>>(pipeFn: () => T, $refId: string) => {\n\tconst fnVarname = `fn_${getRandomValue()}`\n\tlet compiledBefore = false\n\tlet schemedBefore = false\n\treturn standard<PipeInput<T>, PipeOutput<T>>(\n\t\t({ input }, opts) => {\n\t\t\tconst common = [`${input} = ${fnVarname}(${input})`, opts.wrapError(`${input} instanceof PipeError`, input)]\n\t\t\tcompiledBefore = !compiledBefore\n\t\t\tif (!compiledBefore) return common\n\t\t\treturn [\n\t\t\t\t`function ${fnVarname}(node) {`,\n\t\t\t\t...compileNested({ opts: { ...opts, failEarly: true }, pipe: pipeFn(), input: 'node', errorType: 'return' }).map(\n\t\t\t\t\t(l) => `\t${l}`,\n\t\t\t\t),\n\t\t\t\t`\treturn node`,\n\t\t\t\t'}',\n\t\t\t\t...common,\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\tschema: () => {\n\t\t\t\tschemedBefore = !schemedBefore\n\t\t\t\tif (!schemedBefore) return { $refId }\n\t\t\t\treturn schema(pipeFn(), { $refId })\n\t\t\t},\n\t\t},\n\t)\n}\n"],"mappings":"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","names":["context"]}
@@ -103,8 +103,8 @@ const recursive = (pipeFn, $refId) => {
103
103
  return standard(
104
104
  ({ input }, opts) => {
105
105
  const common = [`${input} = ${fnVarname}(${input})`, opts.wrapError(`${input} instanceof PipeError`, input)];
106
- if (compiledBefore) return common;
107
- compiledBefore = true;
106
+ compiledBefore = !compiledBefore;
107
+ if (!compiledBefore) return common;
108
108
  return [
109
109
  `function ${fnVarname}(node) {`,
110
110
  ...compileNested({ opts: { ...opts, failEarly: true }, pipe: pipeFn(), input: "node", errorType: "return" }).map(
@@ -117,8 +117,8 @@ const recursive = (pipeFn, $refId) => {
117
117
  },
118
118
  {
119
119
  schema: () => {
120
- if (schemedBefore) return { $refId };
121
- schemedBefore = true;
120
+ schemedBefore = !schemedBefore;
121
+ if (!schemedBefore) return { $refId };
122
122
  return schema(pipeFn(), { $refId });
123
123
  }
124
124
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "valleyed",
3
- "version": "4.5.16",
3
+ "version": "4.5.17",
4
4
  "description": "A lightweight package with definitions for various validation rules, and helper services to consume said rules.",
5
5
  "type": "module",
6
6
  "sideEffects": false,