@willaimg/yatsp 4.3.6
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/README.md +22 -0
- package/compile.cjs +96 -0
- package/compile.d.cts +1 -0
- package/compile.d.ts +1 -0
- package/compile.js +52 -0
- package/index.cjs +52 -0
- package/index.d.cts +3 -0
- package/index.d.ts +3 -0
- package/index.js +7 -0
- package/locales/index.cjs +36 -0
- package/locales/index.d.cts +1 -0
- package/locales/index.d.ts +1 -0
- package/locales/index.js +1 -0
- package/mini/index.cjs +51 -0
- package/mini/index.d.cts +3 -0
- package/mini/index.d.ts +3 -0
- package/mini/index.js +3 -0
- package/package.json +142 -0
- package/src/compile.ts +56 -0
- package/src/index.ts +7 -0
- package/src/locales/index.ts +1 -0
- package/src/mini/index.ts +3 -0
- package/src/v3/YatspError.ts +340 -0
- package/src/v3/benchmarks/datetime.ts +58 -0
- package/src/v3/benchmarks/discriminatedUnion.ts +80 -0
- package/src/v3/benchmarks/index.ts +59 -0
- package/src/v3/benchmarks/ipv4.ts +57 -0
- package/src/v3/benchmarks/object.ts +69 -0
- package/src/v3/benchmarks/primitives.ts +162 -0
- package/src/v3/benchmarks/realworld.ts +63 -0
- package/src/v3/benchmarks/string.ts +55 -0
- package/src/v3/benchmarks/union.ts +80 -0
- package/src/v3/errors.ts +13 -0
- package/src/v3/external.ts +6 -0
- package/src/v3/helpers/enumUtil.ts +17 -0
- package/src/v3/helpers/errorUtil.ts +8 -0
- package/src/v3/helpers/parseUtil.ts +176 -0
- package/src/v3/helpers/partialUtil.ts +34 -0
- package/src/v3/helpers/typeAliases.ts +2 -0
- package/src/v3/helpers/util.ts +224 -0
- package/src/v3/index.ts +4 -0
- package/src/v3/locales/en.ts +124 -0
- package/src/v3/standard-schema.ts +113 -0
- package/src/v3/tests/Mocker.ts +54 -0
- package/src/v3/tests/all-errors.test.ts +157 -0
- package/src/v3/tests/anyunknown.test.ts +28 -0
- package/src/v3/tests/array.test.ts +71 -0
- package/src/v3/tests/async-parsing.test.ts +388 -0
- package/src/v3/tests/async-refinements.test.ts +46 -0
- package/src/v3/tests/base.test.ts +29 -0
- package/src/v3/tests/bigint.test.ts +55 -0
- package/src/v3/tests/branded.test.ts +53 -0
- package/src/v3/tests/catch.test.ts +220 -0
- package/src/v3/tests/coerce.test.ts +133 -0
- package/src/v3/tests/complex.test.ts +70 -0
- package/src/v3/tests/custom.test.ts +31 -0
- package/src/v3/tests/date.test.ts +32 -0
- package/src/v3/tests/deepmasking.test.ts +186 -0
- package/src/v3/tests/default.test.ts +112 -0
- package/src/v3/tests/description.test.ts +33 -0
- package/src/v3/tests/discriminated-unions.test.ts +315 -0
- package/src/v3/tests/enum.test.ts +80 -0
- package/src/v3/tests/error.test.ts +586 -0
- package/src/v3/tests/firstparty.test.ts +87 -0
- package/src/v3/tests/firstpartyschematypes.test.ts +21 -0
- package/src/v3/tests/function.test.ts +261 -0
- package/src/v3/tests/generics.test.ts +48 -0
- package/src/v3/tests/instanceof.test.ts +37 -0
- package/src/v3/tests/intersection.test.ts +128 -0
- package/src/v3/tests/language-server.source.ts +76 -0
- package/src/v3/tests/language-server.test.ts +206 -0
- package/src/v3/tests/literal.test.ts +36 -0
- package/src/v3/tests/map.test.ts +110 -0
- package/src/v3/tests/masking.test.ts +4 -0
- package/src/v3/tests/mocker.test.ts +19 -0
- package/src/v3/tests/nan.test.ts +24 -0
- package/src/v3/tests/nativeEnum.test.ts +87 -0
- package/src/v3/tests/nullable.test.ts +42 -0
- package/src/v3/tests/number.test.ts +176 -0
- package/src/v3/tests/object-augmentation.test.ts +29 -0
- package/src/v3/tests/object-in-es5-env.test.ts +29 -0
- package/src/v3/tests/object.test.ts +431 -0
- package/src/v3/tests/optional.test.ts +42 -0
- package/src/v3/tests/parseUtil.test.ts +23 -0
- package/src/v3/tests/parser.test.ts +41 -0
- package/src/v3/tests/partials.test.ts +243 -0
- package/src/v3/tests/pickomit.test.ts +111 -0
- package/src/v3/tests/pipeline.test.ts +29 -0
- package/src/v3/tests/preprocess.test.ts +186 -0
- package/src/v3/tests/primitive.test.ts +440 -0
- package/src/v3/tests/promise.test.ts +90 -0
- package/src/v3/tests/readonly.test.ts +114 -0
- package/src/v3/tests/record.test.ts +171 -0
- package/src/v3/tests/recursive.test.ts +197 -0
- package/src/v3/tests/refine.test.ts +313 -0
- package/src/v3/tests/safeparse.test.ts +27 -0
- package/src/v3/tests/set.test.ts +142 -0
- package/src/v3/tests/standard-schema.test.ts +83 -0
- package/src/v3/tests/string.test.ts +922 -0
- package/src/v3/tests/transformer.test.ts +233 -0
- package/src/v3/tests/tuple.test.ts +90 -0
- package/src/v3/tests/unions.test.ts +57 -0
- package/src/v3/tests/validations.test.ts +133 -0
- package/src/v3/tests/void.test.ts +15 -0
- package/src/v3/types.ts +5162 -0
- package/src/v4/classic/checks.ts +33 -0
- package/src/v4/classic/coerce.ts +27 -0
- package/src/v4/classic/compat.ts +78 -0
- package/src/v4/classic/deep-partial.ts +76 -0
- package/src/v4/classic/errors.ts +97 -0
- package/src/v4/classic/external.ts +57 -0
- package/src/v4/classic/from-json-schema.ts +944 -0
- package/src/v4/classic/in-out.ts +45 -0
- package/src/v4/classic/index.ts +5 -0
- package/src/v4/classic/iso.ts +20 -0
- package/src/v4/classic/parse.ts +88 -0
- package/src/v4/classic/schemas.ts +2994 -0
- package/src/v4/classic/tests/anyunknown.test.ts +26 -0
- package/src/v4/classic/tests/apply.test.ts +86 -0
- package/src/v4/classic/tests/array.test.ts +264 -0
- package/src/v4/classic/tests/assignability.test.ts +402 -0
- package/src/v4/classic/tests/async-parsing.test.ts +381 -0
- package/src/v4/classic/tests/async-refinements.test.ts +68 -0
- package/src/v4/classic/tests/base.test.ts +7 -0
- package/src/v4/classic/tests/bigint.test.ts +89 -0
- package/src/v4/classic/tests/brand.test.ts +106 -0
- package/src/v4/classic/tests/catch.test.ts +604 -0
- package/src/v4/classic/tests/coalesce.test.ts +20 -0
- package/src/v4/classic/tests/codec-examples.test.ts +572 -0
- package/src/v4/classic/tests/codec.test.ts +704 -0
- package/src/v4/classic/tests/coerce.test.ts +160 -0
- package/src/v4/classic/tests/continuability.test.ts +374 -0
- package/src/v4/classic/tests/credit-card.test.ts +76 -0
- package/src/v4/classic/tests/custom.test.ts +40 -0
- package/src/v4/classic/tests/cyclic-data.test.ts +985 -0
- package/src/v4/classic/tests/date.test.ts +92 -0
- package/src/v4/classic/tests/datetime.test.ts +316 -0
- package/src/v4/classic/tests/deep-partial.test.ts +380 -0
- package/src/v4/classic/tests/default-locale.test.ts +32 -0
- package/src/v4/classic/tests/default.test.ts +455 -0
- package/src/v4/classic/tests/describe-meta-checks.test.ts +27 -0
- package/src/v4/classic/tests/description.test.ts +32 -0
- package/src/v4/classic/tests/detached-methods.test.ts +226 -0
- package/src/v4/classic/tests/discriminated-unions.test.ts +942 -0
- package/src/v4/classic/tests/enum.test.ts +305 -0
- package/src/v4/classic/tests/error-utils.test.ts +917 -0
- package/src/v4/classic/tests/error.test.ts +1108 -0
- package/src/v4/classic/tests/file.test.ts +96 -0
- package/src/v4/classic/tests/firstparty.test.ts +179 -0
- package/src/v4/classic/tests/fix-json-issue.test.ts +26 -0
- package/src/v4/classic/tests/from-json-schema.test.ts +1467 -0
- package/src/v4/classic/tests/function.test.ts +391 -0
- package/src/v4/classic/tests/generics.test.ts +72 -0
- package/src/v4/classic/tests/global-config.test.ts +32 -0
- package/src/v4/classic/tests/hash.test.ts +67 -0
- package/src/v4/classic/tests/iban.test.ts +81 -0
- package/src/v4/classic/tests/in-out.test.ts +159 -0
- package/src/v4/classic/tests/index.test.ts +958 -0
- package/src/v4/classic/tests/instance-footprint.test.ts +319 -0
- package/src/v4/classic/tests/instanceof.test.ts +127 -0
- package/src/v4/classic/tests/intersection.test.ts +334 -0
- package/src/v4/classic/tests/issue-schema.test.ts +215 -0
- package/src/v4/classic/tests/jitless-allows-eval.test.ts +39 -0
- package/src/v4/classic/tests/json.test.ts +109 -0
- package/src/v4/classic/tests/lazy.test.ts +262 -0
- package/src/v4/classic/tests/literal.test.ts +128 -0
- package/src/v4/classic/tests/locales_ka.test.ts +29 -0
- package/src/v4/classic/tests/locales_ro.test.ts +24 -0
- package/src/v4/classic/tests/map.test.ts +342 -0
- package/src/v4/classic/tests/nan.test.ts +21 -0
- package/src/v4/classic/tests/nested-refine.test.ts +168 -0
- package/src/v4/classic/tests/nonoptional.test.ts +101 -0
- package/src/v4/classic/tests/nullable.test.ts +22 -0
- package/src/v4/classic/tests/number.test.ts +401 -0
- package/src/v4/classic/tests/object.test.ts +1006 -0
- package/src/v4/classic/tests/optin-ladder.test.ts +235 -0
- package/src/v4/classic/tests/optional.test.ts +366 -0
- package/src/v4/classic/tests/partial.test.ts +497 -0
- package/src/v4/classic/tests/pickomit.test.ts +211 -0
- package/src/v4/classic/tests/pipe.test.ts +101 -0
- package/src/v4/classic/tests/prefault.test.ts +144 -0
- package/src/v4/classic/tests/preprocess-types.test.ts +44 -0
- package/src/v4/classic/tests/preprocess.test.ts +351 -0
- package/src/v4/classic/tests/primitive.test.ts +175 -0
- package/src/v4/classic/tests/promise.test.ts +81 -0
- package/src/v4/classic/tests/properties.test.ts +141 -0
- package/src/v4/classic/tests/prototypes.test.ts +23 -0
- package/src/v4/classic/tests/readonly.test.ts +184 -0
- package/src/v4/classic/tests/record.test.ts +885 -0
- package/src/v4/classic/tests/recursive-types.test.ts +707 -0
- package/src/v4/classic/tests/redos.test.ts +68 -0
- package/src/v4/classic/tests/refine.test.ts +693 -0
- package/src/v4/classic/tests/registries.test.ts +243 -0
- package/src/v4/classic/tests/set.test.ts +190 -0
- package/src/v4/classic/tests/standard-schema.test.ts +153 -0
- package/src/v4/classic/tests/string-formats.test.ts +125 -0
- package/src/v4/classic/tests/string.test.ts +1440 -0
- package/src/v4/classic/tests/stringbool.test.ts +124 -0
- package/src/v4/classic/tests/template-literal.test.ts +814 -0
- package/src/v4/classic/tests/to-json-schema-methods.test.ts +438 -0
- package/src/v4/classic/tests/to-json-schema.test.ts +4733 -0
- package/src/v4/classic/tests/transform.test.ts +378 -0
- package/src/v4/classic/tests/tuple.test.ts +511 -0
- package/src/v4/classic/tests/union.test.ts +310 -0
- package/src/v4/classic/tests/url.test.ts +13 -0
- package/src/v4/classic/tests/validate.test.ts +645 -0
- package/src/v4/classic/tests/validations.test.ts +283 -0
- package/src/v4/classic/tests/void.test.ts +12 -0
- package/src/v4/core/api.ts +1913 -0
- package/src/v4/core/checks.ts +1274 -0
- package/src/v4/core/compile.ts +2315 -0
- package/src/v4/core/core.ts +230 -0
- package/src/v4/core/doc.ts +52 -0
- package/src/v4/core/errors.ts +546 -0
- package/src/v4/core/index.ts +19 -0
- package/src/v4/core/json-schema-generator.ts +131 -0
- package/src/v4/core/json-schema-processors.ts +934 -0
- package/src/v4/core/json-schema.ts +148 -0
- package/src/v4/core/memoizer.ts +331 -0
- package/src/v4/core/parse.ts +309 -0
- package/src/v4/core/regexes.ts +217 -0
- package/src/v4/core/registries.ts +109 -0
- package/src/v4/core/schemas.ts +5295 -0
- package/src/v4/core/standard-schema.ts +159 -0
- package/src/v4/core/tests/cached.test.ts +54 -0
- package/src/v4/core/tests/compile-differential.test.ts +1004 -0
- package/src/v4/core/tests/compile-generative.test.ts +445 -0
- package/src/v4/core/tests/compile-global.test.ts +89 -0
- package/src/v4/core/tests/compile-off-by-default.test.ts +26 -0
- package/src/v4/core/tests/compile-stats.test.ts +34 -0
- package/src/v4/core/tests/compile.test.ts +2040 -0
- package/src/v4/core/tests/email-regex.test.ts +140 -0
- package/src/v4/core/tests/extend.test.ts +59 -0
- package/src/v4/core/tests/index.test.ts +46 -0
- package/src/v4/core/tests/locales/be.test.ts +124 -0
- package/src/v4/core/tests/locales/el.test.ts +214 -0
- package/src/v4/core/tests/locales/en.test.ts +22 -0
- package/src/v4/core/tests/locales/es.test.ts +180 -0
- package/src/v4/core/tests/locales/fr.test.ts +72 -0
- package/src/v4/core/tests/locales/he.test.ts +379 -0
- package/src/v4/core/tests/locales/hr.test.ts +163 -0
- package/src/v4/core/tests/locales/nl.test.ts +46 -0
- package/src/v4/core/tests/locales/parity.test.ts +42 -0
- package/src/v4/core/tests/locales/ru.test.ts +128 -0
- package/src/v4/core/tests/locales/tg.test.ts +85 -0
- package/src/v4/core/tests/locales/tk.test.ts +69 -0
- package/src/v4/core/tests/locales/tr.test.ts +69 -0
- package/src/v4/core/tests/locales/uz.test.ts +105 -0
- package/src/v4/core/tests/polyfill-collision.test.ts +46 -0
- package/src/v4/core/tests/record-constructor.test.ts +125 -0
- package/src/v4/core/tests/recursive-tuples.test.ts +45 -0
- package/src/v4/core/tests/treeshake.test.ts +51 -0
- package/src/v4/core/tests/url-no-canparse.test.ts +133 -0
- package/src/v4/core/to-json-schema.ts +857 -0
- package/src/v4/core/util.ts +1284 -0
- package/src/v4/core/versions.ts +5 -0
- package/src/v4/core/visit.ts +193 -0
- package/src/v4/core/zsf.ts +323 -0
- package/src/v4/index.ts +4 -0
- package/src/v4/locales/ar.ts +120 -0
- package/src/v4/locales/az.ts +116 -0
- package/src/v4/locales/be.ts +188 -0
- package/src/v4/locales/bg.ts +133 -0
- package/src/v4/locales/bn.ts +123 -0
- package/src/v4/locales/ca.ts +121 -0
- package/src/v4/locales/ckb.ts +140 -0
- package/src/v4/locales/cs.ts +123 -0
- package/src/v4/locales/da.ts +128 -0
- package/src/v4/locales/de.ts +121 -0
- package/src/v4/locales/el.ts +124 -0
- package/src/v4/locales/en.ts +136 -0
- package/src/v4/locales/eo.ts +123 -0
- package/src/v4/locales/es.ts +145 -0
- package/src/v4/locales/fa.ts +131 -0
- package/src/v4/locales/fi.ts +126 -0
- package/src/v4/locales/fr-CA.ts +121 -0
- package/src/v4/locales/fr.ts +139 -0
- package/src/v4/locales/gu.ts +123 -0
- package/src/v4/locales/he.ts +253 -0
- package/src/v4/locales/hi.ts +126 -0
- package/src/v4/locales/hr.ts +135 -0
- package/src/v4/locales/hu.ts +122 -0
- package/src/v4/locales/hy.ts +175 -0
- package/src/v4/locales/id.ts +120 -0
- package/src/v4/locales/index.ts +63 -0
- package/src/v4/locales/is.ts +124 -0
- package/src/v4/locales/it.ts +121 -0
- package/src/v4/locales/ja.ts +119 -0
- package/src/v4/locales/ka.ts +128 -0
- package/src/v4/locales/kh.ts +7 -0
- package/src/v4/locales/km.ts +124 -0
- package/src/v4/locales/kn.ts +126 -0
- package/src/v4/locales/ko.ts +126 -0
- package/src/v4/locales/lt.ts +243 -0
- package/src/v4/locales/mk.ts +123 -0
- package/src/v4/locales/ms.ts +120 -0
- package/src/v4/locales/ne.ts +128 -0
- package/src/v4/locales/nl.ts +126 -0
- package/src/v4/locales/nn.ts +121 -0
- package/src/v4/locales/no.ts +121 -0
- package/src/v4/locales/ota.ts +122 -0
- package/src/v4/locales/pl.ts +123 -0
- package/src/v4/locales/ps.ts +131 -0
- package/src/v4/locales/pt-BR.ts +161 -0
- package/src/v4/locales/pt.ts +159 -0
- package/src/v4/locales/ro.ts +132 -0
- package/src/v4/locales/ru.ts +188 -0
- package/src/v4/locales/sk.ts +123 -0
- package/src/v4/locales/sl.ts +123 -0
- package/src/v4/locales/sv.ts +124 -0
- package/src/v4/locales/ta.ts +123 -0
- package/src/v4/locales/tg.ts +135 -0
- package/src/v4/locales/th.ts +124 -0
- package/src/v4/locales/tk.ts +113 -0
- package/src/v4/locales/tr.ts +116 -0
- package/src/v4/locales/ua.ts +7 -0
- package/src/v4/locales/uk.ts +122 -0
- package/src/v4/locales/ur.ts +124 -0
- package/src/v4/locales/uz.ts +120 -0
- package/src/v4/locales/vi.ts +122 -0
- package/src/v4/locales/yo.ts +129 -0
- package/src/v4/locales/zh-CN.ts +121 -0
- package/src/v4/locales/zh-TW.ts +120 -0
- package/src/v4/mini/checks.ts +33 -0
- package/src/v4/mini/coerce.ts +27 -0
- package/src/v4/mini/deep-partial.ts +73 -0
- package/src/v4/mini/external.ts +52 -0
- package/src/v4/mini/in-out.ts +45 -0
- package/src/v4/mini/index.ts +3 -0
- package/src/v4/mini/iso.ts +66 -0
- package/src/v4/mini/parse.ts +16 -0
- package/src/v4/mini/schemas.ts +2093 -0
- package/src/v4/mini/tests/apply.test.ts +57 -0
- package/src/v4/mini/tests/assignability.test.ts +190 -0
- package/src/v4/mini/tests/brand.test.ts +94 -0
- package/src/v4/mini/tests/checks.test.ts +158 -0
- package/src/v4/mini/tests/codec.test.ts +582 -0
- package/src/v4/mini/tests/computed.test.ts +30 -0
- package/src/v4/mini/tests/cyclic-data.test.ts +84 -0
- package/src/v4/mini/tests/deep-partial.test.ts +54 -0
- package/src/v4/mini/tests/error.test.ts +41 -0
- package/src/v4/mini/tests/functions.test.ts +14 -0
- package/src/v4/mini/tests/index.test.ts +1148 -0
- package/src/v4/mini/tests/number.test.ts +109 -0
- package/src/v4/mini/tests/object.test.ts +292 -0
- package/src/v4/mini/tests/prototypes.test.ts +43 -0
- package/src/v4/mini/tests/recursive-types.test.ts +341 -0
- package/src/v4/mini/tests/standard-schema.test.ts +50 -0
- package/src/v4/mini/tests/string.test.ts +396 -0
- package/src/v4-mini/index.ts +3 -0
- package/v3/YatspError.cjs +167 -0
- package/v3/YatspError.d.cts +164 -0
- package/v3/YatspError.d.ts +164 -0
- package/v3/YatspError.js +143 -0
- package/v3/errors.cjs +36 -0
- package/v3/errors.d.cts +5 -0
- package/v3/errors.d.ts +5 -0
- package/v3/errors.js +9 -0
- package/v3/external.cjs +41 -0
- package/v3/external.d.cts +6 -0
- package/v3/external.d.ts +6 -0
- package/v3/external.js +6 -0
- package/v3/helpers/enumUtil.cjs +21 -0
- package/v3/helpers/enumUtil.d.cts +8 -0
- package/v3/helpers/enumUtil.d.ts +8 -0
- package/v3/helpers/enumUtil.js +1 -0
- package/v3/helpers/errorUtil.cjs +28 -0
- package/v3/helpers/errorUtil.d.cts +9 -0
- package/v3/helpers/errorUtil.d.ts +9 -0
- package/v3/helpers/errorUtil.js +6 -0
- package/v3/helpers/parseUtil.cjs +143 -0
- package/v3/helpers/parseUtil.d.cts +78 -0
- package/v3/helpers/parseUtil.d.ts +78 -0
- package/v3/helpers/parseUtil.js +109 -0
- package/v3/helpers/partialUtil.cjs +21 -0
- package/v3/helpers/partialUtil.d.cts +8 -0
- package/v3/helpers/partialUtil.d.ts +8 -0
- package/v3/helpers/partialUtil.js +1 -0
- package/v3/helpers/typeAliases.cjs +21 -0
- package/v3/helpers/typeAliases.d.cts +2 -0
- package/v3/helpers/typeAliases.d.ts +2 -0
- package/v3/helpers/typeAliases.js +1 -0
- package/v3/helpers/util.cjs +156 -0
- package/v3/helpers/util.d.cts +85 -0
- package/v3/helpers/util.d.ts +85 -0
- package/v3/helpers/util.js +133 -0
- package/v3/index.cjs +52 -0
- package/v3/index.d.cts +4 -0
- package/v3/index.d.ts +4 -0
- package/v3/index.js +4 -0
- package/v3/locales/en.cjs +112 -0
- package/v3/locales/en.d.cts +3 -0
- package/v3/locales/en.d.ts +3 -0
- package/v3/locales/en.js +109 -0
- package/v3/standard-schema.cjs +21 -0
- package/v3/standard-schema.d.cts +102 -0
- package/v3/standard-schema.d.ts +102 -0
- package/v3/standard-schema.js +1 -0
- package/v3/types.cjs +3798 -0
- package/v3/types.d.cts +1034 -0
- package/v3/types.d.ts +1034 -0
- package/v3/types.js +3697 -0
- package/v4/classic/checks.cjs +53 -0
- package/v4/classic/checks.d.cts +1 -0
- package/v4/classic/checks.d.ts +1 -0
- package/v4/classic/checks.js +1 -0
- package/v4/classic/coerce.cjs +66 -0
- package/v4/classic/coerce.d.cts +17 -0
- package/v4/classic/coerce.d.ts +17 -0
- package/v4/classic/coerce.js +17 -0
- package/v4/classic/compat.cjs +80 -0
- package/v4/classic/compat.d.cts +48 -0
- package/v4/classic/compat.d.ts +48 -0
- package/v4/classic/compat.js +31 -0
- package/v4/classic/deep-partial.cjs +58 -0
- package/v4/classic/deep-partial.d.cts +14 -0
- package/v4/classic/deep-partial.d.ts +14 -0
- package/v4/classic/deep-partial.js +13 -0
- package/v4/classic/errors.cjs +102 -0
- package/v4/classic/errors.d.cts +29 -0
- package/v4/classic/errors.d.ts +29 -0
- package/v4/classic/errors.js +57 -0
- package/v4/classic/external.cjs +97 -0
- package/v4/classic/external.d.cts +19 -0
- package/v4/classic/external.d.ts +19 -0
- package/v4/classic/external.js +17 -0
- package/v4/classic/from-json-schema.cjs +926 -0
- package/v4/classic/from-json-schema.d.cts +12 -0
- package/v4/classic/from-json-schema.d.ts +12 -0
- package/v4/classic/from-json-schema.js +881 -0
- package/v4/classic/in-out.cjs +82 -0
- package/v4/classic/in-out.d.cts +8 -0
- package/v4/classic/in-out.d.ts +8 -0
- package/v4/classic/in-out.js +36 -0
- package/v4/classic/index.cjs +52 -0
- package/v4/classic/index.d.cts +3 -0
- package/v4/classic/index.d.ts +3 -0
- package/v4/classic/index.js +4 -0
- package/v4/classic/iso.cjs +68 -0
- package/v4/classic/iso.d.cts +7 -0
- package/v4/classic/iso.d.ts +7 -0
- package/v4/classic/iso.js +15 -0
- package/v4/classic/parse.cjs +63 -0
- package/v4/classic/parse.d.cts +44 -0
- package/v4/classic/parse.d.ts +44 -0
- package/v4/classic/parse.js +16 -0
- package/v4/classic/schemas.cjs +1676 -0
- package/v4/classic/schemas.d.cts +816 -0
- package/v4/classic/schemas.d.ts +816 -0
- package/v4/classic/schemas.js +1535 -0
- package/v4/core/api.cjs +1269 -0
- package/v4/core/api.d.cts +335 -0
- package/v4/core/api.d.ts +335 -0
- package/v4/core/api.js +1107 -0
- package/v4/core/checks.cjs +561 -0
- package/v4/core/checks.d.cts +294 -0
- package/v4/core/checks.d.ts +294 -0
- package/v4/core/checks.js +516 -0
- package/v4/core/compile.cjs +1908 -0
- package/v4/core/compile.d.cts +65 -0
- package/v4/core/compile.d.ts +65 -0
- package/v4/core/compile.js +1858 -0
- package/v4/core/core.cjs +167 -0
- package/v4/core/core.d.cts +82 -0
- package/v4/core/core.d.ts +82 -0
- package/v4/core/core.js +141 -0
- package/v4/core/doc.cjs +61 -0
- package/v4/core/doc.d.cts +16 -0
- package/v4/core/doc.d.ts +16 -0
- package/v4/core/doc.js +38 -0
- package/v4/core/errors.cjs +317 -0
- package/v4/core/errors.d.cts +225 -0
- package/v4/core/errors.d.ts +225 -0
- package/v4/core/errors.js +267 -0
- package/v4/core/index.cjs +70 -0
- package/v4/core/index.d.cts +19 -0
- package/v4/core/index.d.ts +19 -0
- package/v4/core/index.js +19 -0
- package/v4/core/json-schema-generator.cjs +122 -0
- package/v4/core/json-schema-generator.d.cts +65 -0
- package/v4/core/json-schema-generator.d.ts +65 -0
- package/v4/core/json-schema-generator.js +99 -0
- package/v4/core/json-schema-processors.cjs +929 -0
- package/v4/core/json-schema-processors.d.cts +65 -0
- package/v4/core/json-schema-processors.d.ts +65 -0
- package/v4/core/json-schema-processors.js +843 -0
- package/v4/core/json-schema.cjs +21 -0
- package/v4/core/json-schema.d.cts +89 -0
- package/v4/core/json-schema.d.ts +89 -0
- package/v4/core/json-schema.js +1 -0
- package/v4/core/memoizer.cjs +360 -0
- package/v4/core/memoizer.d.cts +15 -0
- package/v4/core/memoizer.d.ts +15 -0
- package/v4/core/memoizer.js +311 -0
- package/v4/core/parse.cjs +233 -0
- package/v4/core/parse.d.cts +52 -0
- package/v4/core/parse.d.ts +52 -0
- package/v4/core/parse.js +175 -0
- package/v4/core/regexes.cjs +209 -0
- package/v4/core/regexes.d.cts +90 -0
- package/v4/core/regexes.d.ts +90 -0
- package/v4/core/regexes.js +156 -0
- package/v4/core/registries.cjs +76 -0
- package/v4/core/registries.d.cts +35 -0
- package/v4/core/registries.d.ts +35 -0
- package/v4/core/registries.js +52 -0
- package/v4/core/schemas.cjs +2669 -0
- package/v4/core/schemas.d.cts +1273 -0
- package/v4/core/schemas.d.ts +1273 -0
- package/v4/core/schemas.js +2606 -0
- package/v4/core/standard-schema.cjs +21 -0
- package/v4/core/standard-schema.d.cts +126 -0
- package/v4/core/standard-schema.d.ts +126 -0
- package/v4/core/standard-schema.js +1 -0
- package/v4/core/to-json-schema.cjs +681 -0
- package/v4/core/to-json-schema.d.cts +154 -0
- package/v4/core/to-json-schema.d.ts +154 -0
- package/v4/core/to-json-schema.js +651 -0
- package/v4/core/util.cjs +949 -0
- package/v4/core/util.d.cts +278 -0
- package/v4/core/util.d.ts +278 -0
- package/v4/core/util.js +859 -0
- package/v4/core/versions.cjs +27 -0
- package/v4/core/versions.d.cts +5 -0
- package/v4/core/versions.d.ts +5 -0
- package/v4/core/versions.js +5 -0
- package/v4/core/visit.cjs +214 -0
- package/v4/core/visit.d.cts +30 -0
- package/v4/core/visit.d.ts +30 -0
- package/v4/core/visit.js +169 -0
- package/v4/index.cjs +51 -0
- package/v4/index.d.cts +3 -0
- package/v4/index.d.ts +3 -0
- package/v4/index.js +4 -0
- package/v4/locales/ar.cjs +138 -0
- package/v4/locales/ar.d.cts +5 -0
- package/v4/locales/ar.d.ts +4 -0
- package/v4/locales/ar.js +111 -0
- package/v4/locales/az.cjs +137 -0
- package/v4/locales/az.d.cts +5 -0
- package/v4/locales/az.d.ts +4 -0
- package/v4/locales/az.js +110 -0
- package/v4/locales/be.cjs +195 -0
- package/v4/locales/be.d.cts +5 -0
- package/v4/locales/be.d.ts +4 -0
- package/v4/locales/be.js +168 -0
- package/v4/locales/bg.cjs +152 -0
- package/v4/locales/bg.d.cts +5 -0
- package/v4/locales/bg.d.ts +4 -0
- package/v4/locales/bg.js +125 -0
- package/v4/locales/bn.cjs +140 -0
- package/v4/locales/bn.d.cts +5 -0
- package/v4/locales/bn.d.ts +4 -0
- package/v4/locales/bn.js +113 -0
- package/v4/locales/ca.cjs +139 -0
- package/v4/locales/ca.d.cts +5 -0
- package/v4/locales/ca.d.ts +4 -0
- package/v4/locales/ca.js +112 -0
- package/v4/locales/ckb.cjs +160 -0
- package/v4/locales/ckb.d.cts +5 -0
- package/v4/locales/ckb.d.ts +4 -0
- package/v4/locales/ckb.js +133 -0
- package/v4/locales/cs.cjs +143 -0
- package/v4/locales/cs.d.cts +5 -0
- package/v4/locales/cs.d.ts +4 -0
- package/v4/locales/cs.js +116 -0
- package/v4/locales/da.cjs +147 -0
- package/v4/locales/da.d.cts +5 -0
- package/v4/locales/da.d.ts +4 -0
- package/v4/locales/da.js +120 -0
- package/v4/locales/de.cjs +140 -0
- package/v4/locales/de.d.cts +5 -0
- package/v4/locales/de.d.ts +4 -0
- package/v4/locales/de.js +113 -0
- package/v4/locales/el.cjs +139 -0
- package/v4/locales/el.d.cts +5 -0
- package/v4/locales/el.d.ts +4 -0
- package/v4/locales/el.js +112 -0
- package/v4/locales/en.cjs +152 -0
- package/v4/locales/en.d.cts +5 -0
- package/v4/locales/en.d.ts +4 -0
- package/v4/locales/en.js +125 -0
- package/v4/locales/eo.cjs +141 -0
- package/v4/locales/eo.d.cts +5 -0
- package/v4/locales/eo.d.ts +4 -0
- package/v4/locales/eo.js +114 -0
- package/v4/locales/es.cjs +163 -0
- package/v4/locales/es.d.cts +5 -0
- package/v4/locales/es.d.ts +4 -0
- package/v4/locales/es.js +136 -0
- package/v4/locales/fa.cjs +146 -0
- package/v4/locales/fa.d.cts +5 -0
- package/v4/locales/fa.d.ts +4 -0
- package/v4/locales/fa.js +119 -0
- package/v4/locales/fi.cjs +144 -0
- package/v4/locales/fi.d.cts +5 -0
- package/v4/locales/fi.d.ts +4 -0
- package/v4/locales/fi.js +117 -0
- package/v4/locales/fr-CA.cjs +139 -0
- package/v4/locales/fr-CA.d.cts +5 -0
- package/v4/locales/fr-CA.d.ts +4 -0
- package/v4/locales/fr-CA.js +112 -0
- package/v4/locales/fr.cjs +156 -0
- package/v4/locales/fr.d.cts +5 -0
- package/v4/locales/fr.d.ts +4 -0
- package/v4/locales/fr.js +129 -0
- package/v4/locales/gu.cjs +140 -0
- package/v4/locales/gu.d.cts +5 -0
- package/v4/locales/gu.d.ts +4 -0
- package/v4/locales/gu.js +113 -0
- package/v4/locales/he.cjs +248 -0
- package/v4/locales/he.d.cts +5 -0
- package/v4/locales/he.d.ts +4 -0
- package/v4/locales/he.js +221 -0
- package/v4/locales/hi.cjs +138 -0
- package/v4/locales/hi.d.cts +5 -0
- package/v4/locales/hi.d.ts +4 -0
- package/v4/locales/hi.js +111 -0
- package/v4/locales/hr.cjs +153 -0
- package/v4/locales/hr.d.cts +5 -0
- package/v4/locales/hr.d.ts +4 -0
- package/v4/locales/hr.js +126 -0
- package/v4/locales/hu.cjs +140 -0
- package/v4/locales/hu.d.cts +5 -0
- package/v4/locales/hu.d.ts +4 -0
- package/v4/locales/hu.js +113 -0
- package/v4/locales/hy.cjs +185 -0
- package/v4/locales/hy.d.cts +5 -0
- package/v4/locales/hy.d.ts +4 -0
- package/v4/locales/hy.js +158 -0
- package/v4/locales/id.cjs +138 -0
- package/v4/locales/id.d.cts +5 -0
- package/v4/locales/id.d.ts +4 -0
- package/v4/locales/id.js +111 -0
- package/v4/locales/index.cjs +152 -0
- package/v4/locales/index.d.cts +63 -0
- package/v4/locales/index.d.ts +63 -0
- package/v4/locales/index.js +63 -0
- package/v4/locales/is.cjs +141 -0
- package/v4/locales/is.d.cts +5 -0
- package/v4/locales/is.d.ts +4 -0
- package/v4/locales/is.js +114 -0
- package/v4/locales/it.cjs +140 -0
- package/v4/locales/it.d.cts +5 -0
- package/v4/locales/it.d.ts +4 -0
- package/v4/locales/it.js +113 -0
- package/v4/locales/ja.cjs +139 -0
- package/v4/locales/ja.d.cts +5 -0
- package/v4/locales/ja.d.ts +4 -0
- package/v4/locales/ja.js +112 -0
- package/v4/locales/ka.cjs +144 -0
- package/v4/locales/ka.d.cts +5 -0
- package/v4/locales/ka.d.ts +4 -0
- package/v4/locales/ka.js +117 -0
- package/v4/locales/kh.cjs +12 -0
- package/v4/locales/kh.d.cts +5 -0
- package/v4/locales/kh.d.ts +5 -0
- package/v4/locales/kh.js +5 -0
- package/v4/locales/km.cjs +142 -0
- package/v4/locales/km.d.cts +5 -0
- package/v4/locales/km.d.ts +4 -0
- package/v4/locales/km.js +115 -0
- package/v4/locales/kn.cjs +143 -0
- package/v4/locales/kn.d.cts +5 -0
- package/v4/locales/kn.d.ts +4 -0
- package/v4/locales/kn.js +116 -0
- package/v4/locales/ko.cjs +143 -0
- package/v4/locales/ko.d.cts +5 -0
- package/v4/locales/ko.d.ts +4 -0
- package/v4/locales/ko.js +116 -0
- package/v4/locales/lt.cjs +234 -0
- package/v4/locales/lt.d.cts +5 -0
- package/v4/locales/lt.d.ts +4 -0
- package/v4/locales/lt.js +207 -0
- package/v4/locales/mk.cjs +141 -0
- package/v4/locales/mk.d.cts +5 -0
- package/v4/locales/mk.d.ts +4 -0
- package/v4/locales/mk.js +114 -0
- package/v4/locales/ms.cjs +139 -0
- package/v4/locales/ms.d.cts +5 -0
- package/v4/locales/ms.d.ts +4 -0
- package/v4/locales/ms.js +112 -0
- package/v4/locales/ne.cjs +138 -0
- package/v4/locales/ne.d.cts +5 -0
- package/v4/locales/ne.d.ts +4 -0
- package/v4/locales/ne.js +111 -0
- package/v4/locales/nl.cjs +142 -0
- package/v4/locales/nl.d.cts +5 -0
- package/v4/locales/nl.d.ts +4 -0
- package/v4/locales/nl.js +115 -0
- package/v4/locales/nn.cjs +140 -0
- package/v4/locales/nn.d.cts +5 -0
- package/v4/locales/nn.d.ts +4 -0
- package/v4/locales/nn.js +113 -0
- package/v4/locales/no.cjs +140 -0
- package/v4/locales/no.d.cts +5 -0
- package/v4/locales/no.d.ts +4 -0
- package/v4/locales/no.js +113 -0
- package/v4/locales/ota.cjs +141 -0
- package/v4/locales/ota.d.cts +5 -0
- package/v4/locales/ota.d.ts +4 -0
- package/v4/locales/ota.js +114 -0
- package/v4/locales/pl.cjs +141 -0
- package/v4/locales/pl.d.cts +5 -0
- package/v4/locales/pl.d.ts +4 -0
- package/v4/locales/pl.js +114 -0
- package/v4/locales/ps.cjs +146 -0
- package/v4/locales/ps.d.cts +5 -0
- package/v4/locales/ps.d.ts +4 -0
- package/v4/locales/ps.js +119 -0
- package/v4/locales/pt-BR.cjs +170 -0
- package/v4/locales/pt-BR.d.cts +5 -0
- package/v4/locales/pt-BR.d.ts +4 -0
- package/v4/locales/pt-BR.js +143 -0
- package/v4/locales/pt.cjs +169 -0
- package/v4/locales/pt.d.cts +5 -0
- package/v4/locales/pt.d.ts +4 -0
- package/v4/locales/pt.js +142 -0
- package/v4/locales/ro.cjs +149 -0
- package/v4/locales/ro.d.cts +5 -0
- package/v4/locales/ro.d.ts +4 -0
- package/v4/locales/ro.js +122 -0
- package/v4/locales/ru.cjs +195 -0
- package/v4/locales/ru.d.cts +5 -0
- package/v4/locales/ru.d.ts +4 -0
- package/v4/locales/ru.js +168 -0
- package/v4/locales/sk.cjs +143 -0
- package/v4/locales/sk.d.cts +5 -0
- package/v4/locales/sk.d.ts +4 -0
- package/v4/locales/sk.js +116 -0
- package/v4/locales/sl.cjs +141 -0
- package/v4/locales/sl.d.cts +5 -0
- package/v4/locales/sl.d.ts +4 -0
- package/v4/locales/sl.js +114 -0
- package/v4/locales/sv.cjs +142 -0
- package/v4/locales/sv.d.cts +5 -0
- package/v4/locales/sv.d.ts +4 -0
- package/v4/locales/sv.js +115 -0
- package/v4/locales/ta.cjs +142 -0
- package/v4/locales/ta.d.cts +5 -0
- package/v4/locales/ta.d.ts +4 -0
- package/v4/locales/ta.js +115 -0
- package/v4/locales/tg.cjs +144 -0
- package/v4/locales/tg.d.cts +5 -0
- package/v4/locales/tg.d.ts +4 -0
- package/v4/locales/tg.js +117 -0
- package/v4/locales/th.cjs +142 -0
- package/v4/locales/th.d.cts +5 -0
- package/v4/locales/th.d.ts +4 -0
- package/v4/locales/th.js +115 -0
- package/v4/locales/tk.cjs +134 -0
- package/v4/locales/tk.d.cts +5 -0
- package/v4/locales/tk.d.ts +4 -0
- package/v4/locales/tk.js +107 -0
- package/v4/locales/tr.cjs +137 -0
- package/v4/locales/tr.d.cts +5 -0
- package/v4/locales/tr.d.ts +4 -0
- package/v4/locales/tr.js +110 -0
- package/v4/locales/ua.cjs +12 -0
- package/v4/locales/ua.d.cts +5 -0
- package/v4/locales/ua.d.ts +5 -0
- package/v4/locales/ua.js +5 -0
- package/v4/locales/uk.cjs +140 -0
- package/v4/locales/uk.d.cts +5 -0
- package/v4/locales/uk.d.ts +4 -0
- package/v4/locales/uk.js +113 -0
- package/v4/locales/ur.cjs +142 -0
- package/v4/locales/ur.d.cts +5 -0
- package/v4/locales/ur.d.ts +4 -0
- package/v4/locales/ur.js +115 -0
- package/v4/locales/uz.cjs +140 -0
- package/v4/locales/uz.d.cts +5 -0
- package/v4/locales/uz.d.ts +4 -0
- package/v4/locales/uz.js +113 -0
- package/v4/locales/vi.cjs +140 -0
- package/v4/locales/vi.d.cts +5 -0
- package/v4/locales/vi.d.ts +4 -0
- package/v4/locales/vi.js +113 -0
- package/v4/locales/yo.cjs +139 -0
- package/v4/locales/yo.d.cts +5 -0
- package/v4/locales/yo.d.ts +4 -0
- package/v4/locales/yo.js +112 -0
- package/v4/locales/zh-CN.cjs +141 -0
- package/v4/locales/zh-CN.d.cts +5 -0
- package/v4/locales/zh-CN.d.ts +4 -0
- package/v4/locales/zh-CN.js +114 -0
- package/v4/locales/zh-TW.cjs +139 -0
- package/v4/locales/zh-TW.d.cts +5 -0
- package/v4/locales/zh-TW.d.ts +4 -0
- package/v4/locales/zh-TW.js +112 -0
- package/v4/mini/checks.cjs +54 -0
- package/v4/mini/checks.d.cts +1 -0
- package/v4/mini/checks.d.ts +1 -0
- package/v4/mini/checks.js +1 -0
- package/v4/mini/coerce.cjs +71 -0
- package/v4/mini/coerce.d.cts +7 -0
- package/v4/mini/coerce.d.ts +7 -0
- package/v4/mini/coerce.js +22 -0
- package/v4/mini/deep-partial.cjs +58 -0
- package/v4/mini/deep-partial.d.cts +14 -0
- package/v4/mini/deep-partial.d.ts +14 -0
- package/v4/mini/deep-partial.js +13 -0
- package/v4/mini/external.cjs +95 -0
- package/v4/mini/external.d.cts +16 -0
- package/v4/mini/external.d.ts +16 -0
- package/v4/mini/external.js +16 -0
- package/v4/mini/in-out.cjs +82 -0
- package/v4/mini/in-out.d.cts +8 -0
- package/v4/mini/in-out.d.ts +8 -0
- package/v4/mini/in-out.js +36 -0
- package/v4/mini/index.cjs +51 -0
- package/v4/mini/index.d.cts +3 -0
- package/v4/mini/index.d.ts +3 -0
- package/v4/mini/index.js +3 -0
- package/v4/mini/iso.cjs +83 -0
- package/v4/mini/iso.d.cts +22 -0
- package/v4/mini/iso.d.ts +22 -0
- package/v4/mini/iso.js +34 -0
- package/v4/mini/parse.cjs +37 -0
- package/v4/mini/parse.d.cts +1 -0
- package/v4/mini/parse.d.ts +1 -0
- package/v4/mini/parse.js +1 -0
- package/v4/mini/schemas.cjs +1149 -0
- package/v4/mini/schemas.d.cts +480 -0
- package/v4/mini/schemas.d.ts +480 -0
- package/v4/mini/schemas.js +1004 -0
- package/v4-mini/index.cjs +51 -0
- package/v4-mini/index.d.cts +3 -0
- package/v4-mini/index.d.ts +3 -0
- package/v4-mini/index.js +3 -0
|
@@ -0,0 +1,857 @@
|
|
|
1
|
+
import type * as core from "../core/index.js";
|
|
2
|
+
import type * as JSONSchema from "./json-schema.js";
|
|
3
|
+
import { type $YatspRegistry, globalRegistry } from "./registries.js";
|
|
4
|
+
import type * as schemas from "./schemas.js";
|
|
5
|
+
import type { StandardJSONSchemaV1, StandardSchemaWithJSONProps } from "./standard-schema.js";
|
|
6
|
+
import { assignProp } from "./util.js";
|
|
7
|
+
|
|
8
|
+
function assignProps<T extends object>(target: T, ...sources: object[]): T {
|
|
9
|
+
for (const source of sources) {
|
|
10
|
+
for (const key of Reflect.ownKeys(source)) {
|
|
11
|
+
if (Object.prototype.propertyIsEnumerable.call(source, key)) {
|
|
12
|
+
assignProp(target, key, (source as any)[key]);
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
return target;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export type Processor<T extends schemas.$YatspType = schemas.$YatspType> = (
|
|
20
|
+
schema: T,
|
|
21
|
+
ctx: ToJSONSchemaContext,
|
|
22
|
+
json: JSONSchema.BaseSchema,
|
|
23
|
+
params: ProcessParams
|
|
24
|
+
) => void;
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* Called for each schema that has no JSON Schema equivalent. Return a JSON Schema to use in its
|
|
28
|
+
* place, `"any"` to fall back to the `unrepresentable: "any"` behavior, or `"throw"`/`undefined` to
|
|
29
|
+
* throw the default error. Throwing from the handler propagates, so custom errors work too.
|
|
30
|
+
*/
|
|
31
|
+
export type UnrepresentableHandler<T extends schemas.$YatspType = schemas.$YatspType> = (ctx: {
|
|
32
|
+
yatspSchema: T;
|
|
33
|
+
path: (string | number)[];
|
|
34
|
+
/** The error Yatsp would throw. Distinguishes sites that share a `yatspSchema`, e.g. an `undefined`
|
|
35
|
+
* vs a `bigint` member of the same literal. */
|
|
36
|
+
message: string;
|
|
37
|
+
}) => JSONSchema.BaseSchema | "throw" | "any" | undefined;
|
|
38
|
+
|
|
39
|
+
export interface JSONSchemaGeneratorParams {
|
|
40
|
+
processors: Record<string, Processor>;
|
|
41
|
+
/** A registry used to look up metadata for each schema. Any schema with an `id` property will be extracted as a $def.
|
|
42
|
+
* @default globalRegistry */
|
|
43
|
+
metadata?: $YatspRegistry<Record<string, any>>;
|
|
44
|
+
/** The JSON Schema version to target.
|
|
45
|
+
* - `"draft-2020-12"` — Default. JSON Schema Draft 2020-12
|
|
46
|
+
* - `"draft-07"` — JSON Schema Draft 7
|
|
47
|
+
* - `"draft-04"` — JSON Schema Draft 4
|
|
48
|
+
* - `"openapi-3.0"` — OpenAPI 3.0 Schema Object */
|
|
49
|
+
target?: "draft-04" | "draft-07" | "draft-2020-12" | "openapi-3.0" | ({} & string) | undefined;
|
|
50
|
+
/** How to handle unrepresentable types.
|
|
51
|
+
* - `"throw"` — Default. Unrepresentable types throw an error
|
|
52
|
+
* - `"any"` — Unrepresentable types become `{}`
|
|
53
|
+
* - A function — called once per unrepresentable schema; see {@link UnrepresentableHandler}. */
|
|
54
|
+
unrepresentable?: "throw" | "any" | UnrepresentableHandler<schemas.$YatspTypes>;
|
|
55
|
+
/** Arbitrary custom logic that can be used to modify the generated JSON Schema. */
|
|
56
|
+
override?: (ctx: {
|
|
57
|
+
yatspSchema: schemas.$YatspTypes;
|
|
58
|
+
jsonSchema: JSONSchema.BaseSchema;
|
|
59
|
+
path: (string | number)[];
|
|
60
|
+
}) => void;
|
|
61
|
+
/** Whether to extract the `"input"` or `"output"` type. Relevant to transforms, defaults, coerced primitives, etc.
|
|
62
|
+
* - `"output"` — Default. Convert the output schema.
|
|
63
|
+
* - `"input"` — Convert the input schema. */
|
|
64
|
+
io?: "input" | "output";
|
|
65
|
+
cycles?: "ref" | "throw";
|
|
66
|
+
reused?: "ref" | "inline";
|
|
67
|
+
external?:
|
|
68
|
+
| {
|
|
69
|
+
registry: $YatspRegistry<{ id?: string | undefined }>;
|
|
70
|
+
uri?: ((id: string) => string) | undefined;
|
|
71
|
+
defs: Record<string, JSONSchema.BaseSchema>;
|
|
72
|
+
}
|
|
73
|
+
| undefined;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
/**
|
|
77
|
+
* Parameters for the toJSONSchema function.
|
|
78
|
+
*/
|
|
79
|
+
export type ToJSONSchemaParams = Omit<JSONSchemaGeneratorParams, "processors" | "external">;
|
|
80
|
+
|
|
81
|
+
/**
|
|
82
|
+
* Parameters for the toJSONSchema function when passing a registry.
|
|
83
|
+
*/
|
|
84
|
+
export interface RegistryToJSONSchemaParams extends ToJSONSchemaParams {
|
|
85
|
+
uri?: (id: string) => string;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
export interface ProcessParams {
|
|
89
|
+
schemaPath: schemas.$YatspType[];
|
|
90
|
+
path: (string | number)[];
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
export interface Seen {
|
|
94
|
+
/** JSON Schema result for this Yatsp schema */
|
|
95
|
+
schema: JSONSchema.BaseSchema;
|
|
96
|
+
/** A cached version of the schema that doesn't get overwritten during ref resolution */
|
|
97
|
+
def?: JSONSchema.BaseSchema;
|
|
98
|
+
defId?: string | undefined;
|
|
99
|
+
/** Number of times this schema was encountered during traversal */
|
|
100
|
+
count: number;
|
|
101
|
+
/** Cycle path */
|
|
102
|
+
cycle?: (string | number)[] | undefined;
|
|
103
|
+
isParent?: boolean | undefined;
|
|
104
|
+
/** Schema to inherit JSON Schema properties from (set by processor for wrappers) */
|
|
105
|
+
ref?: schemas.$YatspType | null;
|
|
106
|
+
/** JSON Schema property path for this schema */
|
|
107
|
+
path?: (string | number)[] | undefined;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
export interface ToJSONSchemaContext {
|
|
111
|
+
processors: Record<string, Processor>;
|
|
112
|
+
metadataRegistry: $YatspRegistry<Record<string, any>>;
|
|
113
|
+
target: "draft-04" | "draft-07" | "draft-2020-12" | "openapi-3.0" | ({} & string);
|
|
114
|
+
// must be schemas.$YatspType to prevent recursive type resolution error
|
|
115
|
+
unrepresentable: "throw" | "any" | UnrepresentableHandler;
|
|
116
|
+
override: (ctx: {
|
|
117
|
+
// must be schemas.$YatspType to prevent recursive type resolution error
|
|
118
|
+
yatspSchema: schemas.$YatspType;
|
|
119
|
+
jsonSchema: JSONSchema.BaseSchema;
|
|
120
|
+
path: (string | number)[];
|
|
121
|
+
}) => void;
|
|
122
|
+
io: "input" | "output";
|
|
123
|
+
counter: number;
|
|
124
|
+
seen: Map<schemas.$YatspType, Seen>;
|
|
125
|
+
/** Registry conversions share one `seen` map across every emitted schema. These hold the
|
|
126
|
+
* `external` the whole-map passes below last ran for, so the passes are not repeated once per
|
|
127
|
+
* schema — and still re-run if the map grows or `external` is swapped. `sharedEmitDoneFor`
|
|
128
|
+
* covers both passes in `finalize`: the ref flattening and the `$defs` build.
|
|
129
|
+
*
|
|
130
|
+
* The passes are valid only while nothing they read has changed, so both are cleared in
|
|
131
|
+
* `processSchema()` when the map grows, and in `JSONSchemaGenerator.emit()`, which can also change
|
|
132
|
+
* the `cycles` and `reused` they branch on.
|
|
133
|
+
*
|
|
134
|
+
* One case is deliberately not covered: an `override` callback that writes to
|
|
135
|
+
* `metadataRegistry` mid-conversion. It runs inside `finalize`, so a registry conversion has
|
|
136
|
+
* nowhere left to clear the guards, and later schemas keep the ids the first pass saw. That
|
|
137
|
+
* output was never coherent — before this, whether a shared subschema was inlined or extracted
|
|
138
|
+
* depended on which registry entry happened to be emitted when the callback fired. */
|
|
139
|
+
sharedDefsExtractedFor?: ToJSONSchemaContext["external"];
|
|
140
|
+
sharedEmitDoneFor?: ToJSONSchemaContext["external"];
|
|
141
|
+
cycles: "ref" | "throw";
|
|
142
|
+
reused: "ref" | "inline";
|
|
143
|
+
/** The `allOf` array of each intersection encountered during traversal, innermost first. `finalize` folds every emitted object holding one; see `foldIntersection`. */
|
|
144
|
+
intersections: JSONSchema.BaseSchema[][];
|
|
145
|
+
/** Rewrites a processor deferred to `finalize`, where the flatten has resolved every ref and the union branches are in place. */
|
|
146
|
+
deferred: (() => void)[];
|
|
147
|
+
external?:
|
|
148
|
+
| {
|
|
149
|
+
registry: $YatspRegistry<{ id?: string | undefined }>;
|
|
150
|
+
uri?: ((id: string) => string) | undefined;
|
|
151
|
+
defs: Record<string, JSONSchema.BaseSchema>;
|
|
152
|
+
}
|
|
153
|
+
| undefined;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
// function initializeContext<T extends schemas.$YatspType>(inputs: JSONSchemaGeneratorParams<T>): ToJSONSchemaContext<T> {
|
|
157
|
+
// return {
|
|
158
|
+
// processor: inputs.processor,
|
|
159
|
+
// metadataRegistry: inputs.metadata ?? globalRegistry,
|
|
160
|
+
// target: inputs.target ?? "draft-2020-12",
|
|
161
|
+
// unrepresentable: inputs.unrepresentable ?? "throw",
|
|
162
|
+
// };
|
|
163
|
+
// }
|
|
164
|
+
|
|
165
|
+
export function initializeContext(params: JSONSchemaGeneratorParams): ToJSONSchemaContext {
|
|
166
|
+
// Normalize target: convert old non-hyphenated versions to hyphenated versions
|
|
167
|
+
let target: ToJSONSchemaContext["target"] = params?.target ?? "draft-2020-12";
|
|
168
|
+
if (target === "draft-4") target = "draft-04";
|
|
169
|
+
if (target === "draft-7") target = "draft-07";
|
|
170
|
+
|
|
171
|
+
return {
|
|
172
|
+
processors: params.processors ?? {},
|
|
173
|
+
metadataRegistry: params?.metadata ?? globalRegistry,
|
|
174
|
+
target,
|
|
175
|
+
unrepresentable: (params?.unrepresentable as ToJSONSchemaContext["unrepresentable"]) ?? "throw",
|
|
176
|
+
override: (params?.override as any) ?? (() => {}),
|
|
177
|
+
io: params?.io ?? "output",
|
|
178
|
+
counter: 0,
|
|
179
|
+
seen: new Map(),
|
|
180
|
+
sharedDefsExtractedFor: undefined,
|
|
181
|
+
sharedEmitDoneFor: undefined,
|
|
182
|
+
cycles: params?.cycles ?? "ref",
|
|
183
|
+
reused: params?.reused ?? "inline",
|
|
184
|
+
intersections: [],
|
|
185
|
+
deferred: [],
|
|
186
|
+
external: params?.external ?? undefined,
|
|
187
|
+
};
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
/**
|
|
191
|
+
* Applies the `unrepresentable` setting at a site that has no JSON Schema equivalent. Throws
|
|
192
|
+
* `message` unless the setting (or the handler's return value) says otherwise. Returns `true` if a
|
|
193
|
+
* custom JSON Schema was written into `json`, in which case the caller must not write its own.
|
|
194
|
+
*/
|
|
195
|
+
export function handleUnrepresentable(
|
|
196
|
+
schema: schemas.$YatspType,
|
|
197
|
+
ctx: ToJSONSchemaContext,
|
|
198
|
+
json: JSONSchema.BaseSchema,
|
|
199
|
+
params: ProcessParams,
|
|
200
|
+
message: string
|
|
201
|
+
): boolean {
|
|
202
|
+
const result =
|
|
203
|
+
typeof ctx.unrepresentable === "function"
|
|
204
|
+
? ctx.unrepresentable({ yatspSchema: schema, path: params.path, message })
|
|
205
|
+
: ctx.unrepresentable;
|
|
206
|
+
if (result === "any") return false;
|
|
207
|
+
if (result === undefined || result === "throw") throw new Error(message);
|
|
208
|
+
Object.assign(json, result);
|
|
209
|
+
return true;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
// never rename this back to `process`: bundler polyfills inject a top-level `const process` that a lexical declaration of the same name collides with (#6397)
|
|
213
|
+
export function processSchema<T extends schemas.$YatspType>(
|
|
214
|
+
schema: T,
|
|
215
|
+
ctx: ToJSONSchemaContext,
|
|
216
|
+
_params: ProcessParams = { path: [], schemaPath: [] }
|
|
217
|
+
): JSONSchema.BaseSchema {
|
|
218
|
+
const def = schema._yatsp.def as schemas.$YatspTypes["_yatsp"]["def"];
|
|
219
|
+
|
|
220
|
+
// check for schema in seens
|
|
221
|
+
const seen = ctx.seen.get(schema);
|
|
222
|
+
|
|
223
|
+
if (seen) {
|
|
224
|
+
seen.count++;
|
|
225
|
+
|
|
226
|
+
// check if cycle
|
|
227
|
+
const isCycle = _params.schemaPath.includes(schema);
|
|
228
|
+
if (isCycle) {
|
|
229
|
+
seen.cycle = _params.path;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
return seen.schema;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
// initialize
|
|
236
|
+
const result: Seen = { schema: {}, count: 1, cycle: undefined, path: _params.path };
|
|
237
|
+
ctx.seen.set(schema, result);
|
|
238
|
+
ctx.sharedDefsExtractedFor = undefined;
|
|
239
|
+
ctx.sharedEmitDoneFor = undefined;
|
|
240
|
+
|
|
241
|
+
// custom method overrides default behavior
|
|
242
|
+
const overrideSchema = schema._yatsp.toJSONSchema?.();
|
|
243
|
+
if (overrideSchema) {
|
|
244
|
+
result.schema = overrideSchema as any;
|
|
245
|
+
} else {
|
|
246
|
+
const params = {
|
|
247
|
+
..._params,
|
|
248
|
+
schemaPath: [..._params.schemaPath, schema],
|
|
249
|
+
path: _params.path,
|
|
250
|
+
};
|
|
251
|
+
|
|
252
|
+
if (schema._yatsp.processJSONSchema) {
|
|
253
|
+
schema._yatsp.processJSONSchema(ctx, result.schema, params);
|
|
254
|
+
} else {
|
|
255
|
+
const _json = result.schema;
|
|
256
|
+
const processor = ctx.processors[def.type];
|
|
257
|
+
if (!processor) {
|
|
258
|
+
throw new Error(`[toJSONSchema]: Non-representable type encountered: ${def.type}`);
|
|
259
|
+
}
|
|
260
|
+
processor(schema, ctx, _json, params);
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
const parent = schema._yatsp.parent as T;
|
|
264
|
+
|
|
265
|
+
if (parent) {
|
|
266
|
+
// Also set ref if processor didn't (for inheritance)
|
|
267
|
+
if (!result.ref) result.ref = parent;
|
|
268
|
+
processSchema(parent, ctx, params);
|
|
269
|
+
ctx.seen.get(parent)!.isParent = true;
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
// metadata
|
|
274
|
+
const meta = ctx.metadataRegistry.get(schema);
|
|
275
|
+
if (meta) assignProps(result.schema, meta);
|
|
276
|
+
|
|
277
|
+
if (ctx.io === "input" && isTransforming(schema)) {
|
|
278
|
+
// examples/defaults only apply to output type of pipe
|
|
279
|
+
delete result.schema.examples;
|
|
280
|
+
delete result.schema.default;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
// set prefault as default
|
|
284
|
+
if (ctx.io === "input" && "_prefault" in result.schema) result.schema.default ??= result.schema._prefault;
|
|
285
|
+
delete result.schema._prefault;
|
|
286
|
+
|
|
287
|
+
// pulling fresh from ctx.seen in case it was overwritten
|
|
288
|
+
const _result = ctx.seen.get(schema)!;
|
|
289
|
+
|
|
290
|
+
return _result.schema;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
/** @deprecated Renamed to `processSchema`. An export alias declares no binding, so it is safe to keep. */
|
|
294
|
+
export { processSchema as process };
|
|
295
|
+
|
|
296
|
+
// Escape a reference token for use in a JSON Pointer fragment (RFC 6901): `~` becomes `~0` and `/` becomes `~1`. The `~` replacement must run first.
|
|
297
|
+
function encodeJSONPointerSegment(segment: string): string {
|
|
298
|
+
return segment.replace(/~/g, "~0").replace(/\//g, "~1");
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
export function extractDefs<T extends schemas.$YatspType>(
|
|
302
|
+
ctx: ToJSONSchemaContext,
|
|
303
|
+
schema: T
|
|
304
|
+
// params: EmitParams
|
|
305
|
+
): void {
|
|
306
|
+
// iterate over seen map;
|
|
307
|
+
const root = ctx.seen.get(schema);
|
|
308
|
+
|
|
309
|
+
if (!root) throw new Error("Unprocessed schema. This is a bug in Yatsp.");
|
|
310
|
+
|
|
311
|
+
// With `external` set, every registered schema resolves through the external branch of `makeURI`, so the root branch below produces the same ref the external branch would — this pass is identical whichever schema it is called with, and only needs to run once.
|
|
312
|
+
if (ctx.external && ctx.sharedDefsExtractedFor === ctx.external) return;
|
|
313
|
+
|
|
314
|
+
// Track ids to detect duplicates across different schemas
|
|
315
|
+
const idToSchema = new Map<string, schemas.$YatspType>();
|
|
316
|
+
for (const entry of ctx.seen.entries()) {
|
|
317
|
+
const id = ctx.metadataRegistry.get(entry[0])?.id;
|
|
318
|
+
if (id) {
|
|
319
|
+
const existing = idToSchema.get(id);
|
|
320
|
+
if (existing && existing !== entry[0]) {
|
|
321
|
+
throw new Error(
|
|
322
|
+
`Duplicate schema id "${id}" detected during JSON Schema conversion. Two different schemas cannot share the same id when converted together.`
|
|
323
|
+
);
|
|
324
|
+
}
|
|
325
|
+
idToSchema.set(id, entry[0]);
|
|
326
|
+
}
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
// returns a ref to the schema defId will be empty if the ref points to an external schema (or #)
|
|
330
|
+
const makeURI = (entry: [schemas.$YatspType<unknown, unknown>, Seen]): { ref: string; defId?: string } => {
|
|
331
|
+
// comparing the seen objects because sometimes multiple schemas map to the same seen object. e.g. lazy
|
|
332
|
+
|
|
333
|
+
// external is configured
|
|
334
|
+
const defsSegment = ctx.target === "draft-2020-12" ? "$defs" : "definitions";
|
|
335
|
+
if (ctx.external) {
|
|
336
|
+
const externalId = ctx.external.registry.get(entry[0])?.id; // ?? "__shared";// `__schema${ctx.counter++}`;
|
|
337
|
+
|
|
338
|
+
// check if schema is in the external registry
|
|
339
|
+
const uriGenerator = ctx.external.uri ?? ((id: string) => id);
|
|
340
|
+
if (externalId) {
|
|
341
|
+
return { ref: uriGenerator(externalId) };
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
// otherwise, add to __shared
|
|
345
|
+
const id: string = entry[1].defId ?? (entry[1].schema.id as string) ?? `schema${ctx.counter++}`;
|
|
346
|
+
entry[1].defId = id; // set defId so it will be reused if needed
|
|
347
|
+
return { defId: id, ref: `${uriGenerator("__shared")}#/${defsSegment}/${encodeJSONPointerSegment(id)}` };
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
const uriPrefix = `#`;
|
|
351
|
+
const defUriPrefix = `${uriPrefix}/${defsSegment}/`;
|
|
352
|
+
|
|
353
|
+
// an id-less root has nowhere to be extracted to, so it stays inline and self-references as `#`
|
|
354
|
+
if (entry[1] === root && !entry[1].schema.id) {
|
|
355
|
+
return { ref: uriPrefix };
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
// self-contained schema
|
|
359
|
+
const defId = entry[1].schema.id ?? `__schema${ctx.counter++}`;
|
|
360
|
+
return { defId, ref: defUriPrefix + encodeJSONPointerSegment(defId) };
|
|
361
|
+
};
|
|
362
|
+
|
|
363
|
+
// stored cached version in `def` property remove all properties, set $ref
|
|
364
|
+
const extractToDef = (entry: [schemas.$YatspType<unknown, unknown>, Seen]): void => {
|
|
365
|
+
// if the schema is already a reference, do not extract it
|
|
366
|
+
if (entry[1].schema.$ref) {
|
|
367
|
+
return;
|
|
368
|
+
}
|
|
369
|
+
const seen = entry[1];
|
|
370
|
+
const { ref, defId } = makeURI(entry);
|
|
371
|
+
|
|
372
|
+
seen.def = { ...seen.schema };
|
|
373
|
+
// defId won't be set if the schema is a reference to an external schema or if the schema is the root schema
|
|
374
|
+
if (defId) seen.defId = defId;
|
|
375
|
+
// wipe away all properties except $ref
|
|
376
|
+
const schema = seen.schema;
|
|
377
|
+
for (const key in schema) {
|
|
378
|
+
delete schema[key];
|
|
379
|
+
}
|
|
380
|
+
schema.$ref = ref;
|
|
381
|
+
};
|
|
382
|
+
|
|
383
|
+
// throw on cycles
|
|
384
|
+
|
|
385
|
+
// break cycles
|
|
386
|
+
if (ctx.cycles === "throw") {
|
|
387
|
+
for (const entry of ctx.seen.entries()) {
|
|
388
|
+
const seen = entry[1];
|
|
389
|
+
if (seen.cycle) {
|
|
390
|
+
throw new Error(
|
|
391
|
+
"Cycle detected: " +
|
|
392
|
+
`#/${seen.cycle?.join("/")}/<root>` +
|
|
393
|
+
'\n\nSet the `cycles` parameter to `"ref"` to resolve cyclical schemas with defs.'
|
|
394
|
+
);
|
|
395
|
+
}
|
|
396
|
+
}
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
// extract schemas into $defs
|
|
400
|
+
for (const entry of ctx.seen.entries()) {
|
|
401
|
+
const seen = entry[1];
|
|
402
|
+
|
|
403
|
+
// convert root schema to # $ref
|
|
404
|
+
if (schema === entry[0]) {
|
|
405
|
+
extractToDef(entry); // this has special handling for the root schema
|
|
406
|
+
continue;
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
// extract schemas that are in the external registry
|
|
410
|
+
if (ctx.external) {
|
|
411
|
+
const ext = ctx.external.registry.get(entry[0])?.id;
|
|
412
|
+
if (schema !== entry[0] && ext) {
|
|
413
|
+
extractToDef(entry);
|
|
414
|
+
continue;
|
|
415
|
+
}
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
// extract schemas with `id` meta
|
|
419
|
+
const id = ctx.metadataRegistry.get(entry[0])?.id;
|
|
420
|
+
if (id) {
|
|
421
|
+
extractToDef(entry);
|
|
422
|
+
continue;
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
// break cycles
|
|
426
|
+
if (seen.cycle) {
|
|
427
|
+
// any
|
|
428
|
+
extractToDef(entry);
|
|
429
|
+
continue;
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
// extract reused schemas
|
|
433
|
+
if (seen.count > 1) {
|
|
434
|
+
if (ctx.reused === "ref") {
|
|
435
|
+
extractToDef(entry);
|
|
436
|
+
}
|
|
437
|
+
}
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
if (ctx.external) ctx.sharedDefsExtractedFor = ctx.external;
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
/** Rewrites `anyOf: [{type: "a"}, {type: "b"}]` to `type: ["a", "b"]`, which every JSON Schema draft treats as equivalent and most consumers render far better for the nullable case. Only branches that are a bare type assertion qualify — anything carrying a constraint, `$ref`, `const` or metadata is left alone. Runs after `flattenRef`, so a branch an override decorated or `$defs` extraction turned into a `$ref` is no longer bare and correctly stays in `anyOf`. `oneOf` is excluded: `integer` and `number` overlap, so "exactly one" and "at least one" are not the same there. OpenAPI 3.0 is excluded: its `type` must be a single string. */
|
|
444
|
+
function compactTypeUnion(schema: JSONSchema.BaseSchema): void {
|
|
445
|
+
const options = schema.anyOf;
|
|
446
|
+
if (!Array.isArray(options) || options.length === 0 || schema.type !== undefined) return;
|
|
447
|
+
|
|
448
|
+
const types: JSONSchema.SchemaType[] = [];
|
|
449
|
+
for (const option of options) {
|
|
450
|
+
if (!option || typeof option !== "object") return;
|
|
451
|
+
// A branch that is itself a compactible union folds into this one — nested `anyOf` and a flat `type` array say the same thing. Compacting it first also makes the result independent of the order this pass walks the seen map in.
|
|
452
|
+
compactTypeUnion(option as JSONSchema.BaseSchema);
|
|
453
|
+
const keys = Object.keys(option);
|
|
454
|
+
if (keys.length !== 1 || keys[0] !== "type") return;
|
|
455
|
+
const type = (option as JSONSchema.BaseSchema).type;
|
|
456
|
+
for (const member of Array.isArray(type) ? type : [type]) {
|
|
457
|
+
if (typeof member !== "string") return;
|
|
458
|
+
if (!types.includes(member)) types.push(member);
|
|
459
|
+
}
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
delete schema.anyOf;
|
|
463
|
+
// A `type` array must be non-empty and unique (metaschema); a single member is spelled as a bare string.
|
|
464
|
+
schema.type = types.length === 1 ? types[0] : types;
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
/** Keywords `foldIntersection` knows how to combine. Anything else — `$ref`, `patternProperties`,
|
|
468
|
+
* an annotation like `description` — makes a member unfoldable, so a constraint this does not
|
|
469
|
+
* understand leaves the `allOf` alone instead of being silently dropped or misattributed. */
|
|
470
|
+
const FOLDABLE_KEYS = new Set(["type", "properties", "required", "additionalProperties"]);
|
|
471
|
+
const UNION_KEYS = ["oneOf", "anyOf"] as const;
|
|
472
|
+
|
|
473
|
+
/** A member's constraint on a key it does not declare itself. A `catchall` states one; `false`, an absent `additionalProperties`, and the empty schema a loose object emits state nothing. */
|
|
474
|
+
function undeclaredConstraint(member: JSONSchema.ObjectSchema): JSONSchema.BaseSchema | null {
|
|
475
|
+
const extra = member.additionalProperties;
|
|
476
|
+
if (extra === undefined || extra === false || typeof extra !== "object" || extra === null) return null;
|
|
477
|
+
return Object.keys(extra).length ? (extra as JSONSchema.BaseSchema) : null;
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
/** Combines object members into the single object they describe together, or returns `null` if any of them carries a keyword outside {@link FOLDABLE_KEYS}. */
|
|
481
|
+
function foldObjects(members: JSONSchema._JSONSchema[]): JSONSchema.ObjectSchema | null {
|
|
482
|
+
const objects: JSONSchema.ObjectSchema[] = [];
|
|
483
|
+
for (const member of members) {
|
|
484
|
+
// A boolean subschema is legal JSON Schema and carries no keywords to fold.
|
|
485
|
+
if (typeof member !== "object" || member.type !== "object") return null;
|
|
486
|
+
for (const key in member) {
|
|
487
|
+
if (!FOLDABLE_KEYS.has(key)) return null;
|
|
488
|
+
}
|
|
489
|
+
objects.push(member as JSONSchema.ObjectSchema);
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
const properties: Record<string, JSONSchema._JSONSchema> = {};
|
|
493
|
+
const required = new Set<string>();
|
|
494
|
+
for (const object of objects) {
|
|
495
|
+
for (const key in object.properties) {
|
|
496
|
+
// `in` would report a `__proto__` key as already present via the prototype chain and skip it.
|
|
497
|
+
if (Object.prototype.hasOwnProperty.call(properties, key)) continue;
|
|
498
|
+
// Every member constrains this key: the ones that declare it say how, and a `catchall` member constrains it too even though it does not name it. The key has to satisfy all of them, which is the same intersection one level down.
|
|
499
|
+
const parts: JSONSchema._JSONSchema[] = [];
|
|
500
|
+
for (const other of objects) {
|
|
501
|
+
const part = other.properties?.[key] ?? undeclaredConstraint(other);
|
|
502
|
+
if (part === null || part === undefined) continue;
|
|
503
|
+
if (!parts.some((seen) => JSON.stringify(seen) === JSON.stringify(part))) parts.push(part);
|
|
504
|
+
}
|
|
505
|
+
const merged =
|
|
506
|
+
parts.length === 1
|
|
507
|
+
? parts[0]!
|
|
508
|
+
: (foldObjects(parts) ?? ({ allOf: parts as JSONSchema.BaseSchema[] } as JSONSchema.BaseSchema));
|
|
509
|
+
assignProp(properties, key, merged);
|
|
510
|
+
}
|
|
511
|
+
for (const key of object.required ?? []) required.add(key);
|
|
512
|
+
}
|
|
513
|
+
|
|
514
|
+
const folded: JSONSchema.ObjectSchema = { type: "object", properties };
|
|
515
|
+
if (required.size) folded.required = [...required];
|
|
516
|
+
// A key no member declares is rejected only when every member rejects it, so the fold is closed only when every member is. Otherwise it carries whatever the `catchall` members demand of such a key.
|
|
517
|
+
if (objects.every((object) => object.additionalProperties === false)) {
|
|
518
|
+
folded.additionalProperties = false;
|
|
519
|
+
} else {
|
|
520
|
+
const constraints: JSONSchema.BaseSchema[] = [];
|
|
521
|
+
for (const object of objects) {
|
|
522
|
+
const constraint = undeclaredConstraint(object);
|
|
523
|
+
if (constraint && !constraints.some((seen) => JSON.stringify(seen) === JSON.stringify(constraint)))
|
|
524
|
+
constraints.push(constraint);
|
|
525
|
+
}
|
|
526
|
+
if (constraints.length === 1) folded.additionalProperties = constraints[0]!;
|
|
527
|
+
else if (constraints.length > 1) folded.additionalProperties = { allOf: constraints };
|
|
528
|
+
}
|
|
529
|
+
return folded;
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
/** `additionalProperties` in an `allOf` member sees only that member's own `properties`, so two
|
|
533
|
+
* closed object members reject each other's keys and the schema validates nothing. Yatsp's parser
|
|
534
|
+
* pools the key sets instead — `handleIntersectionResults` reports a key as unrecognized only when
|
|
535
|
+
* *every* side rejects it — so the emitted schema has to pool them too, and folding the members
|
|
536
|
+
* into one object is the encoding that says so on every target.
|
|
537
|
+
*
|
|
538
|
+
* This runs from `finalize`, after `extractDefs`, which is what keeps it clear of the `$ref`
|
|
539
|
+
* machinery: a member extracted into `$defs` is already a `$ref` by now and declines to fold, so it
|
|
540
|
+
* keeps its reference and its own closedness rather than being inlined as a stale copy. */
|
|
541
|
+
function foldIntersection(json: JSONSchema.BaseSchema): void {
|
|
542
|
+
const allOf = json.allOf;
|
|
543
|
+
if (!Array.isArray(allOf) || allOf.length < 2) return;
|
|
544
|
+
// An `override` runs before this pass and may have written object keywords onto the intersection itself. Those are deliberate, so decline rather than overwrite them.
|
|
545
|
+
for (const key of FOLDABLE_KEYS) if (key in json) return;
|
|
546
|
+
|
|
547
|
+
// An intersection distributes over a union: `A & (X | Y)` is `(A & X) | (A & Y)`. Only the first union is distributed over; a second one stays among the members every branch folds against, where it fails the object check and declines the whole intersection rather than multiplying out.
|
|
548
|
+
const unions = allOf.filter((m) => UNION_KEYS.some((k) => Array.isArray(m[k])));
|
|
549
|
+
|
|
550
|
+
let folded: JSONSchema.BaseSchema | null = null;
|
|
551
|
+
if (!unions.length) {
|
|
552
|
+
folded = foldObjects(allOf);
|
|
553
|
+
} else {
|
|
554
|
+
const union = unions[0]!;
|
|
555
|
+
const keyword = UNION_KEYS.find((k) => Array.isArray(union[k]))!;
|
|
556
|
+
if (Object.keys(union).length !== 1) return;
|
|
557
|
+
const rest = allOf.filter((m) => m !== union);
|
|
558
|
+
const branches = (union[keyword] as JSONSchema._JSONSchema[]).map((branch) => foldObjects([...rest, branch]));
|
|
559
|
+
if (branches.some((b) => !b)) return;
|
|
560
|
+
folded = { [keyword]: branches } as JSONSchema.BaseSchema;
|
|
561
|
+
}
|
|
562
|
+
if (!folded) return;
|
|
563
|
+
|
|
564
|
+
delete json.allOf;
|
|
565
|
+
assignProps(json, folded);
|
|
566
|
+
}
|
|
567
|
+
|
|
568
|
+
export function finalize<T extends schemas.$YatspType>(
|
|
569
|
+
ctx: ToJSONSchemaContext,
|
|
570
|
+
schema: T
|
|
571
|
+
): YatspStandardJSONSchemaPayload<T> {
|
|
572
|
+
const root = ctx.seen.get(schema);
|
|
573
|
+
if (!root) throw new Error("Unprocessed schema. This is a bug in Yatsp.");
|
|
574
|
+
|
|
575
|
+
// flatten refs - inherit properties from parent schemas
|
|
576
|
+
const flattenRef = (yatspSchema: schemas.$YatspType) => {
|
|
577
|
+
const seen = ctx.seen.get(yatspSchema)!;
|
|
578
|
+
|
|
579
|
+
// already processed
|
|
580
|
+
if (seen.ref === null) return;
|
|
581
|
+
|
|
582
|
+
const schema = seen.def ?? seen.schema;
|
|
583
|
+
const _cached = { ...schema };
|
|
584
|
+
|
|
585
|
+
const ref = seen.ref;
|
|
586
|
+
seen.ref = null; // prevent infinite recursion
|
|
587
|
+
|
|
588
|
+
if (ref) {
|
|
589
|
+
flattenRef(ref);
|
|
590
|
+
|
|
591
|
+
const refSeen = ctx.seen.get(ref)!;
|
|
592
|
+
const refSchema = refSeen.schema;
|
|
593
|
+
|
|
594
|
+
// merge referenced schema into current
|
|
595
|
+
if (refSchema.$ref && (ctx.target === "draft-07" || ctx.target === "draft-04" || ctx.target === "openapi-3.0")) {
|
|
596
|
+
// older drafts can't combine $ref with other properties
|
|
597
|
+
schema.allOf = schema.allOf ?? [];
|
|
598
|
+
schema.allOf.push(refSchema);
|
|
599
|
+
} else {
|
|
600
|
+
assignProps(schema, refSchema);
|
|
601
|
+
}
|
|
602
|
+
// restore child's own properties (child wins)
|
|
603
|
+
assignProps(schema, _cached);
|
|
604
|
+
|
|
605
|
+
const isParentRef = yatspSchema._yatsp.parent === ref;
|
|
606
|
+
|
|
607
|
+
// For parent chain, child is a refinement - remove parent-only properties
|
|
608
|
+
if (isParentRef) {
|
|
609
|
+
for (const key in schema) {
|
|
610
|
+
if (key === "$ref" || key === "allOf") continue;
|
|
611
|
+
if (!(key in _cached)) {
|
|
612
|
+
delete schema[key];
|
|
613
|
+
}
|
|
614
|
+
}
|
|
615
|
+
}
|
|
616
|
+
|
|
617
|
+
// When ref was extracted to $defs, remove properties that match the definition
|
|
618
|
+
if (refSchema.$ref && refSeen.def) {
|
|
619
|
+
for (const key in schema) {
|
|
620
|
+
if (key === "$ref" || key === "allOf") continue;
|
|
621
|
+
if (key in refSeen.def && JSON.stringify(schema[key]) === JSON.stringify(refSeen.def[key])) {
|
|
622
|
+
delete schema[key];
|
|
623
|
+
}
|
|
624
|
+
}
|
|
625
|
+
}
|
|
626
|
+
}
|
|
627
|
+
|
|
628
|
+
// If parent was extracted (has $ref), propagate $ref to this schema. This handles cases like: readonly().meta({id}).describe() where processor sets ref to innerType but parent should be referenced
|
|
629
|
+
const parent = yatspSchema._yatsp.parent;
|
|
630
|
+
if (parent && parent !== ref) {
|
|
631
|
+
// Ensure parent is processed first so its def has inherited properties
|
|
632
|
+
flattenRef(parent);
|
|
633
|
+
const parentSeen = ctx.seen.get(parent);
|
|
634
|
+
if (parentSeen?.schema.$ref) {
|
|
635
|
+
schema.$ref = parentSeen.schema.$ref;
|
|
636
|
+
// De-duplicate with parent's definition
|
|
637
|
+
if (parentSeen.def) {
|
|
638
|
+
for (const key in schema) {
|
|
639
|
+
if (key === "$ref" || key === "allOf") continue;
|
|
640
|
+
if (key in parentSeen.def && JSON.stringify(schema[key]) === JSON.stringify(parentSeen.def[key])) {
|
|
641
|
+
delete schema[key];
|
|
642
|
+
}
|
|
643
|
+
}
|
|
644
|
+
}
|
|
645
|
+
}
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
// execute overrides
|
|
649
|
+
ctx.override({
|
|
650
|
+
yatspSchema: yatspSchema as schemas.$YatspTypes,
|
|
651
|
+
jsonSchema: schema,
|
|
652
|
+
path: seen.path ?? [],
|
|
653
|
+
});
|
|
654
|
+
};
|
|
655
|
+
|
|
656
|
+
// Flattening walks the whole map and clears each `ref` as it goes, so a second call over the same map is a no-op scan. Skip it outright once it has run for a registry conversion.
|
|
657
|
+
if (!ctx.external || ctx.sharedEmitDoneFor !== ctx.external) {
|
|
658
|
+
for (const entry of [...ctx.seen.entries()].reverse()) {
|
|
659
|
+
flattenRef(entry[0]);
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
if (ctx.target !== "openapi-3.0") {
|
|
663
|
+
for (const entry of ctx.seen.entries()) {
|
|
664
|
+
compactTypeUnion(entry[1].def ?? entry[1].schema);
|
|
665
|
+
}
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
for (const rewrite of ctx.deferred) rewrite();
|
|
669
|
+
|
|
670
|
+
// After flattening, every member that was extracted is a `$ref`, so the fold sees the final shape. A schema that inherits an intersection — through `z.lazy`, or any `ref` chain — holds the same `allOf` array, so fold by array identity to catch every copy.
|
|
671
|
+
if (ctx.intersections.length) {
|
|
672
|
+
const carriers = new Map<JSONSchema.BaseSchema[], JSONSchema.BaseSchema[]>();
|
|
673
|
+
for (const seen of ctx.seen.values()) {
|
|
674
|
+
for (const json of [seen.schema, seen.def]) {
|
|
675
|
+
const allOf = json?.allOf as JSONSchema.BaseSchema[] | undefined;
|
|
676
|
+
if (!Array.isArray(allOf)) continue;
|
|
677
|
+
const existing = carriers.get(allOf);
|
|
678
|
+
if (existing) existing.push(json!);
|
|
679
|
+
else carriers.set(allOf, [json!]);
|
|
680
|
+
}
|
|
681
|
+
}
|
|
682
|
+
for (const allOf of ctx.intersections) {
|
|
683
|
+
for (const json of carriers.get(allOf) ?? []) foldIntersection(json);
|
|
684
|
+
}
|
|
685
|
+
}
|
|
686
|
+
}
|
|
687
|
+
|
|
688
|
+
const result: JSONSchema.BaseSchema = {};
|
|
689
|
+
if (ctx.target === "draft-2020-12") {
|
|
690
|
+
result.$schema = "https://json-schema.org/draft/2020-12/schema";
|
|
691
|
+
} else if (ctx.target === "draft-07") {
|
|
692
|
+
result.$schema = "http://json-schema.org/draft-07/schema#";
|
|
693
|
+
} else if (ctx.target === "draft-04") {
|
|
694
|
+
result.$schema = "http://json-schema.org/draft-04/schema#";
|
|
695
|
+
} else if (ctx.target === "openapi-3.0") {
|
|
696
|
+
// OpenAPI 3.0 schema objects should not include a $schema property
|
|
697
|
+
} else {
|
|
698
|
+
// Arbitrary string values are allowed but won't have a $schema property set
|
|
699
|
+
}
|
|
700
|
+
|
|
701
|
+
if (ctx.external?.uri) {
|
|
702
|
+
const id = ctx.external.registry.get(schema)?.id;
|
|
703
|
+
if (!id) throw new Error("Schema is missing an `id` property");
|
|
704
|
+
result.$id = ctx.external.uri(id);
|
|
705
|
+
}
|
|
706
|
+
|
|
707
|
+
// when the root was extracted into $defs, `root.schema` is the `$ref` wrapper and `root.def` is the body that now lives under $defs
|
|
708
|
+
assignProps(result, root.defId ? root.schema : (root.def ?? root.schema));
|
|
709
|
+
|
|
710
|
+
// The `id` in `.meta()` is a Yatsp-specific registration tag used to extract schemas into $defs — it is not user-facing JSON Schema metadata. Strip it from the output body where it would otherwise leak. The id is preserved implicitly via the $defs key (and via $ref paths).
|
|
711
|
+
const rootMetaId = ctx.metadataRegistry.get(schema)?.id;
|
|
712
|
+
if (rootMetaId !== undefined && result.id === rootMetaId) delete result.id;
|
|
713
|
+
|
|
714
|
+
// build defs object. With `external`, `defs` is the shared object every schema writes into, so the same entries are reassigned on every call. Without it, `defs` is fresh per call and must be rebuilt.
|
|
715
|
+
const defs: JSONSchema.BaseSchema["$defs"] = ctx.external?.defs ?? {};
|
|
716
|
+
if (!ctx.external || ctx.sharedEmitDoneFor !== ctx.external) {
|
|
717
|
+
for (const entry of ctx.seen.entries()) {
|
|
718
|
+
const seen = entry[1];
|
|
719
|
+
if (seen.def && seen.defId) {
|
|
720
|
+
if (seen.def.id === seen.defId) delete seen.def.id;
|
|
721
|
+
assignProp(defs, seen.defId, seen.def);
|
|
722
|
+
}
|
|
723
|
+
}
|
|
724
|
+
}
|
|
725
|
+
if (ctx.external) ctx.sharedEmitDoneFor = ctx.external;
|
|
726
|
+
|
|
727
|
+
// set definitions in result
|
|
728
|
+
if (ctx.external) {
|
|
729
|
+
} else {
|
|
730
|
+
if (Object.keys(defs).length > 0) {
|
|
731
|
+
if (ctx.target === "draft-2020-12") {
|
|
732
|
+
result.$defs = defs;
|
|
733
|
+
} else {
|
|
734
|
+
result.definitions = defs;
|
|
735
|
+
}
|
|
736
|
+
}
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
try {
|
|
740
|
+
// this "finalizes" this schema and ensures all cycles are removed each call to finalize() is functionally independent though the seen map is shared
|
|
741
|
+
const finalized = JSON.parse(JSON.stringify(result));
|
|
742
|
+
Object.defineProperty(finalized, "~standard", {
|
|
743
|
+
value: {
|
|
744
|
+
...schema["~standard"],
|
|
745
|
+
jsonSchema: {
|
|
746
|
+
input: createStandardJSONSchemaMethod(schema, "input", ctx.processors),
|
|
747
|
+
output: createStandardJSONSchemaMethod(schema, "output", ctx.processors),
|
|
748
|
+
},
|
|
749
|
+
},
|
|
750
|
+
enumerable: false,
|
|
751
|
+
writable: false,
|
|
752
|
+
});
|
|
753
|
+
|
|
754
|
+
return finalized;
|
|
755
|
+
} catch (_err) {
|
|
756
|
+
throw new Error("Error converting schema to JSON.");
|
|
757
|
+
}
|
|
758
|
+
}
|
|
759
|
+
|
|
760
|
+
function isTransforming(
|
|
761
|
+
_schema: schemas.$YatspType,
|
|
762
|
+
_ctx?: {
|
|
763
|
+
seen: Set<schemas.$YatspType>;
|
|
764
|
+
}
|
|
765
|
+
): boolean {
|
|
766
|
+
const ctx = _ctx ?? { seen: new Set() };
|
|
767
|
+
|
|
768
|
+
if (ctx.seen.has(_schema)) return false;
|
|
769
|
+
ctx.seen.add(_schema);
|
|
770
|
+
|
|
771
|
+
const def = (_schema as schemas.$YatspTypes)._yatsp.def;
|
|
772
|
+
|
|
773
|
+
if (def.type === "transform") return true;
|
|
774
|
+
|
|
775
|
+
if (def.type === "array") return isTransforming(def.element, ctx);
|
|
776
|
+
if (def.type === "set") return isTransforming(def.valueType, ctx);
|
|
777
|
+
if (def.type === "lazy") return isTransforming(def.getter(), ctx);
|
|
778
|
+
|
|
779
|
+
if (
|
|
780
|
+
def.type === "promise" ||
|
|
781
|
+
def.type === "optional" ||
|
|
782
|
+
def.type === "nonoptional" ||
|
|
783
|
+
def.type === "nullable" ||
|
|
784
|
+
def.type === "readonly" ||
|
|
785
|
+
def.type === "default" ||
|
|
786
|
+
def.type === "prefault" ||
|
|
787
|
+
def.type === "catch"
|
|
788
|
+
) {
|
|
789
|
+
return isTransforming(def.innerType, ctx);
|
|
790
|
+
}
|
|
791
|
+
|
|
792
|
+
if (def.type === "intersection") {
|
|
793
|
+
return isTransforming(def.left, ctx) || isTransforming(def.right, ctx);
|
|
794
|
+
}
|
|
795
|
+
if (def.type === "record" || def.type === "map") {
|
|
796
|
+
return isTransforming(def.keyType, ctx) || isTransforming(def.valueType, ctx);
|
|
797
|
+
}
|
|
798
|
+
if (def.type === "pipe") {
|
|
799
|
+
if (_schema._yatsp.traits.has("$YatspCodec")) return true;
|
|
800
|
+
return isTransforming(def.in, ctx) || isTransforming(def.out, ctx);
|
|
801
|
+
}
|
|
802
|
+
|
|
803
|
+
if (def.type === "object") {
|
|
804
|
+
for (const key in def.shape) {
|
|
805
|
+
if (isTransforming(def.shape[key]!, ctx)) return true;
|
|
806
|
+
}
|
|
807
|
+
return false;
|
|
808
|
+
}
|
|
809
|
+
if (def.type === "union") {
|
|
810
|
+
for (const option of def.options) {
|
|
811
|
+
if (isTransforming(option, ctx)) return true;
|
|
812
|
+
}
|
|
813
|
+
return false;
|
|
814
|
+
}
|
|
815
|
+
if (def.type === "tuple") {
|
|
816
|
+
for (const item of def.items) {
|
|
817
|
+
if (isTransforming(item, ctx)) return true;
|
|
818
|
+
}
|
|
819
|
+
if (def.rest && isTransforming(def.rest, ctx)) return true;
|
|
820
|
+
return false;
|
|
821
|
+
}
|
|
822
|
+
|
|
823
|
+
return false;
|
|
824
|
+
}
|
|
825
|
+
|
|
826
|
+
export type YatspStandardSchemaWithJSON<T> = StandardSchemaWithJSONProps<core.input<T>, core.output<T>>;
|
|
827
|
+
export interface YatspStandardJSONSchemaPayload<T> extends JSONSchema.BaseSchema {
|
|
828
|
+
"~standard": YatspStandardSchemaWithJSON<T>;
|
|
829
|
+
}
|
|
830
|
+
|
|
831
|
+
/**
|
|
832
|
+
* Creates a toJSONSchema method for a schema instance.
|
|
833
|
+
* This encapsulates the logic of initializing context, processing, extracting defs, and finalizing.
|
|
834
|
+
*/
|
|
835
|
+
export const createToJSONSchemaMethod =
|
|
836
|
+
<T extends schemas.$YatspType>(schema: T, processors: Record<string, Processor> = {}) =>
|
|
837
|
+
(params?: ToJSONSchemaParams): YatspStandardJSONSchemaPayload<T> => {
|
|
838
|
+
const ctx = initializeContext({ ...params, processors });
|
|
839
|
+
processSchema(schema, ctx);
|
|
840
|
+
extractDefs(ctx, schema);
|
|
841
|
+
return finalize(ctx, schema);
|
|
842
|
+
};
|
|
843
|
+
|
|
844
|
+
/**
|
|
845
|
+
* Creates a toJSONSchema method for a schema instance.
|
|
846
|
+
* This encapsulates the logic of initializing context, processing, extracting defs, and finalizing.
|
|
847
|
+
*/
|
|
848
|
+
type StandardJSONSchemaMethodParams = Parameters<StandardJSONSchemaV1["~standard"]["jsonSchema"]["input"]>[0];
|
|
849
|
+
export const createStandardJSONSchemaMethod =
|
|
850
|
+
<T extends schemas.$YatspType>(schema: T, io: "input" | "output", processors: Record<string, Processor> = {}) =>
|
|
851
|
+
(params?: StandardJSONSchemaMethodParams): JSONSchema.BaseSchema => {
|
|
852
|
+
const { libraryOptions, target } = params ?? {};
|
|
853
|
+
const ctx = initializeContext({ ...(libraryOptions ?? {}), target, io, processors });
|
|
854
|
+
processSchema(schema, ctx);
|
|
855
|
+
extractDefs(ctx, schema);
|
|
856
|
+
return finalize(ctx, schema);
|
|
857
|
+
};
|