@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,929 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.allProcessors = exports.lazyProcessor = exports.optionalProcessor = exports.promiseProcessor = exports.readonlyProcessor = exports.pipeProcessor = exports.catchProcessor = exports.prefaultProcessor = exports.defaultProcessor = exports.nonoptionalProcessor = exports.nullableProcessor = exports.recordProcessor = exports.tupleProcessor = exports.intersectionProcessor = exports.unionProcessor = exports.objectProcessor = exports.arrayProcessor = exports.setProcessor = exports.mapProcessor = exports.transformProcessor = exports.functionProcessor = exports.customProcessor = exports.successProcessor = exports.fileProcessor = exports.templateLiteralProcessor = exports.nanProcessor = exports.literalProcessor = exports.enumProcessor = exports.dateProcessor = exports.unknownProcessor = exports.anyProcessor = exports.neverProcessor = exports.voidProcessor = exports.undefinedProcessor = exports.nullProcessor = exports.symbolProcessor = exports.bigintProcessor = exports.booleanProcessor = exports.numberProcessor = exports.stringProcessor = void 0;
|
|
27
|
+
exports.aggregateChecks = aggregateChecks;
|
|
28
|
+
exports.toJSONSchema = toJSONSchema;
|
|
29
|
+
const regexes = __importStar(require("./regexes.cjs"));
|
|
30
|
+
const schemas_js_1 = require("./schemas.cjs");
|
|
31
|
+
const to_json_schema_js_1 = require("./to-json-schema.cjs");
|
|
32
|
+
const util_js_1 = require("./util.cjs");
|
|
33
|
+
const narrowMin = (agg, key, value) => {
|
|
34
|
+
if (agg[key] === undefined || value > agg[key])
|
|
35
|
+
agg[key] = value;
|
|
36
|
+
};
|
|
37
|
+
const narrowMax = (agg, key, value) => {
|
|
38
|
+
if (agg[key] === undefined || value < agg[key])
|
|
39
|
+
agg[key] = value;
|
|
40
|
+
};
|
|
41
|
+
const narrowBoth = (agg, value) => {
|
|
42
|
+
narrowMin(agg, "minimum", value);
|
|
43
|
+
narrowMax(agg, "maximum", value);
|
|
44
|
+
};
|
|
45
|
+
const addDivisor = (agg, value) => {
|
|
46
|
+
agg.multipleOf ?? (agg.multipleOf = []);
|
|
47
|
+
if (!agg.multipleOf.includes(value))
|
|
48
|
+
agg.multipleOf.push(value);
|
|
49
|
+
};
|
|
50
|
+
const addPattern = (agg, pattern) => {
|
|
51
|
+
agg.patterns ?? (agg.patterns = new Set());
|
|
52
|
+
agg.patterns.add(pattern);
|
|
53
|
+
};
|
|
54
|
+
const intersectMime = (agg, mime) => {
|
|
55
|
+
agg.mime = agg.mime ? agg.mime.filter((m) => mime.includes(m)) : [...mime];
|
|
56
|
+
};
|
|
57
|
+
// last-wins, matching the bag's historical write order; the flag keeps an integer format from being lost to a later float one
|
|
58
|
+
const setFormat = (agg, format) => {
|
|
59
|
+
agg.format = format;
|
|
60
|
+
if (format.includes("int"))
|
|
61
|
+
agg.isInt = true;
|
|
62
|
+
};
|
|
63
|
+
const minContributor = (agg, def) => narrowMin(agg, "minimum", def.minimum);
|
|
64
|
+
const maxContributor = (agg, def) => narrowMax(agg, "maximum", def.maximum);
|
|
65
|
+
const formatContributor = (ranges) => (agg, def) => {
|
|
66
|
+
setFormat(agg, def.format);
|
|
67
|
+
const [minimum, maximum] = ranges[def.format];
|
|
68
|
+
narrowMin(agg, "minimum", minimum);
|
|
69
|
+
narrowMax(agg, "maximum", maximum);
|
|
70
|
+
};
|
|
71
|
+
const contributors = {
|
|
72
|
+
greater_than: (agg, def) => narrowMin(agg, def.inclusive ? "minimum" : "exclusiveMinimum", def.value),
|
|
73
|
+
less_than: (agg, def) => narrowMax(agg, def.inclusive ? "maximum" : "exclusiveMaximum", def.value),
|
|
74
|
+
multiple_of: (agg, def) => addDivisor(agg, def.value),
|
|
75
|
+
number_format: formatContributor(util_js_1.NUMBER_FORMAT_RANGES),
|
|
76
|
+
bigint_format: formatContributor(util_js_1.BIGINT_FORMAT_RANGES),
|
|
77
|
+
min_length: minContributor,
|
|
78
|
+
max_length: maxContributor,
|
|
79
|
+
length_equals: (agg, def) => narrowBoth(agg, def.length),
|
|
80
|
+
min_size: minContributor,
|
|
81
|
+
max_size: maxContributor,
|
|
82
|
+
size_equals: (agg, def) => narrowBoth(agg, def.size),
|
|
83
|
+
string_format: (agg, def) => {
|
|
84
|
+
setFormat(agg, def.format);
|
|
85
|
+
if (def.pattern)
|
|
86
|
+
addPattern(agg, def.pattern);
|
|
87
|
+
if (def.format === "base64" || def.format === "base64url")
|
|
88
|
+
agg.contentEncoding = def.format;
|
|
89
|
+
if (def.local || def.precision === -1)
|
|
90
|
+
agg.laxFormat = true;
|
|
91
|
+
},
|
|
92
|
+
mime_type: (agg, def) => intersectMime(agg, def.mime),
|
|
93
|
+
};
|
|
94
|
+
function aggregateChecks(schema) {
|
|
95
|
+
const agg = {};
|
|
96
|
+
const def = schema._yatsp.def;
|
|
97
|
+
// a format schema is its own first check, same rule as $YatspType init
|
|
98
|
+
const list = schema._yatsp.traits.has("$YatspCheck")
|
|
99
|
+
? [schema, ...(def.checks ?? [])]
|
|
100
|
+
: (def.checks ?? []);
|
|
101
|
+
for (const ch of list)
|
|
102
|
+
contributors[ch._yatsp.def.check]?.(agg, ch._yatsp.def);
|
|
103
|
+
// reconcile with the bag so third-party onattach contributions still land; first-party residue is never tighter than the fold, so merging it back is idempotent for one and additive for the other
|
|
104
|
+
const bag = schema._yatsp.bag;
|
|
105
|
+
if (bag.minimum !== undefined)
|
|
106
|
+
narrowMin(agg, "minimum", bag.minimum);
|
|
107
|
+
if (bag.exclusiveMinimum !== undefined)
|
|
108
|
+
narrowMin(agg, "exclusiveMinimum", bag.exclusiveMinimum);
|
|
109
|
+
if (bag.maximum !== undefined)
|
|
110
|
+
narrowMax(agg, "maximum", bag.maximum);
|
|
111
|
+
if (bag.exclusiveMaximum !== undefined)
|
|
112
|
+
narrowMax(agg, "exclusiveMaximum", bag.exclusiveMaximum);
|
|
113
|
+
if (bag.multipleOf !== undefined)
|
|
114
|
+
addDivisor(agg, bag.multipleOf);
|
|
115
|
+
if (bag.format !== undefined) {
|
|
116
|
+
agg.format ?? (agg.format = bag.format);
|
|
117
|
+
if (bag.format.includes("int"))
|
|
118
|
+
agg.isInt = true;
|
|
119
|
+
}
|
|
120
|
+
if (bag.mime)
|
|
121
|
+
intersectMime(agg, bag.mime);
|
|
122
|
+
for (const pattern of bag.patterns ?? [])
|
|
123
|
+
addPattern(agg, pattern);
|
|
124
|
+
return agg;
|
|
125
|
+
}
|
|
126
|
+
const formatMap = {
|
|
127
|
+
guid: "uuid",
|
|
128
|
+
url: "uri",
|
|
129
|
+
datetime: "date-time",
|
|
130
|
+
json_string: "json-string",
|
|
131
|
+
regex: "", // do not set
|
|
132
|
+
};
|
|
133
|
+
// ==================== SIMPLE TYPE PROCESSORS ====================
|
|
134
|
+
// the runtime patterns are lax so parse paths never overflow the regex stack; the emitted schema swaps in the exact block forms, which yatsp itself never executes
|
|
135
|
+
const exactPatterns = new Map([
|
|
136
|
+
[schemas_js_1.base64Charset, regexes.base64],
|
|
137
|
+
[schemas_js_1.base64urlCharset, regexes.base64url],
|
|
138
|
+
]);
|
|
139
|
+
const exactPattern = (p) => exactPatterns.get(p) ?? p;
|
|
140
|
+
const stringProcessor = (schema, ctx, _json, _params) => {
|
|
141
|
+
const json = _json;
|
|
142
|
+
json.type = "string";
|
|
143
|
+
const { minimum, maximum, format, patterns, contentEncoding, laxFormat } = aggregateChecks(schema);
|
|
144
|
+
if (typeof minimum === "number")
|
|
145
|
+
json.minLength = minimum;
|
|
146
|
+
if (typeof maximum === "number")
|
|
147
|
+
json.maxLength = maximum;
|
|
148
|
+
// custom pattern overrides format
|
|
149
|
+
if (format) {
|
|
150
|
+
json.format = formatMap[format] ?? format;
|
|
151
|
+
if (json.format === "")
|
|
152
|
+
delete json.format; // empty format is not valid
|
|
153
|
+
// `z.iso.time()` is never full-time, and `laxFormat` carries the datetime shapes that also accept what their keyword forbids
|
|
154
|
+
if (format === "time" || laxFormat) {
|
|
155
|
+
delete json.format;
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
if (contentEncoding)
|
|
159
|
+
json.contentEncoding = contentEncoding;
|
|
160
|
+
if (patterns && patterns.size > 0) {
|
|
161
|
+
const patternList = [...patterns].map(exactPattern);
|
|
162
|
+
if (patternList.length === 1)
|
|
163
|
+
json.pattern = patternList[0].source;
|
|
164
|
+
else if (patternList.length > 1) {
|
|
165
|
+
json.allOf = [
|
|
166
|
+
...patternList.map((regex) => ({
|
|
167
|
+
...(ctx.target === "draft-07" || ctx.target === "draft-04" || ctx.target === "openapi-3.0"
|
|
168
|
+
? { type: "string" }
|
|
169
|
+
: {}),
|
|
170
|
+
pattern: regex.source,
|
|
171
|
+
})),
|
|
172
|
+
];
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
};
|
|
176
|
+
exports.stringProcessor = stringProcessor;
|
|
177
|
+
const numberProcessor = (schema, ctx, _json, params) => {
|
|
178
|
+
const json = _json;
|
|
179
|
+
const { minimum, maximum, multipleOf, exclusiveMaximum, exclusiveMinimum, isInt } = aggregateChecks(schema);
|
|
180
|
+
json.type = isInt ? "integer" : "number";
|
|
181
|
+
// when both minimum and exclusiveMinimum exist, pick the more restrictive one
|
|
182
|
+
const exMin = typeof exclusiveMinimum === "number" && exclusiveMinimum >= (minimum ?? Number.NEGATIVE_INFINITY);
|
|
183
|
+
const exMax = typeof exclusiveMaximum === "number" && exclusiveMaximum <= (maximum ?? Number.POSITIVE_INFINITY);
|
|
184
|
+
const legacy = ctx.target === "draft-04" || ctx.target === "openapi-3.0";
|
|
185
|
+
if (exMin) {
|
|
186
|
+
if (legacy) {
|
|
187
|
+
json.minimum = exclusiveMinimum;
|
|
188
|
+
json.exclusiveMinimum = true;
|
|
189
|
+
}
|
|
190
|
+
else {
|
|
191
|
+
json.exclusiveMinimum = exclusiveMinimum;
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
else if (typeof minimum === "number") {
|
|
195
|
+
json.minimum = minimum;
|
|
196
|
+
}
|
|
197
|
+
if (exMax) {
|
|
198
|
+
if (legacy) {
|
|
199
|
+
json.maximum = exclusiveMaximum;
|
|
200
|
+
json.exclusiveMaximum = true;
|
|
201
|
+
}
|
|
202
|
+
else {
|
|
203
|
+
json.exclusiveMaximum = exclusiveMaximum;
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
else if (typeof maximum === "number") {
|
|
207
|
+
json.maximum = maximum;
|
|
208
|
+
}
|
|
209
|
+
if (multipleOf) {
|
|
210
|
+
// JSON Schema requires a divisor strictly greater than zero, and a non-finite one does not survive JSON at all. A negative divisor accepts exactly what its absolute value accepts, so it still maps; zero, NaN and Infinity have no keyword form.
|
|
211
|
+
const divisors = new Set();
|
|
212
|
+
for (const divisor of multipleOf) {
|
|
213
|
+
if (Number.isFinite(divisor) && divisor !== 0)
|
|
214
|
+
divisors.add(Math.abs(divisor));
|
|
215
|
+
else
|
|
216
|
+
(0, to_json_schema_js_1.handleUnrepresentable)(schema, ctx, json, params, `A multipleOf divisor of ${divisor} cannot be represented in JSON Schema`);
|
|
217
|
+
}
|
|
218
|
+
// chained divisors are a conjunction the keyword cannot carry alone, so extras ride an allOf, same as stacked patterns
|
|
219
|
+
const [first, ...rest] = divisors;
|
|
220
|
+
if (first !== undefined)
|
|
221
|
+
json.multipleOf = first;
|
|
222
|
+
if (rest.length)
|
|
223
|
+
json.allOf = [...(json.allOf ?? []), ...rest.map((m) => ({ multipleOf: m }))];
|
|
224
|
+
}
|
|
225
|
+
};
|
|
226
|
+
exports.numberProcessor = numberProcessor;
|
|
227
|
+
const booleanProcessor = (_schema, _ctx, json, _params) => {
|
|
228
|
+
json.type = "boolean";
|
|
229
|
+
};
|
|
230
|
+
exports.booleanProcessor = booleanProcessor;
|
|
231
|
+
const bigintProcessor = (schema, ctx, json, params) => {
|
|
232
|
+
(0, to_json_schema_js_1.handleUnrepresentable)(schema, ctx, json, params, "BigInt cannot be represented in JSON Schema");
|
|
233
|
+
};
|
|
234
|
+
exports.bigintProcessor = bigintProcessor;
|
|
235
|
+
const symbolProcessor = (schema, ctx, json, params) => {
|
|
236
|
+
(0, to_json_schema_js_1.handleUnrepresentable)(schema, ctx, json, params, "Symbols cannot be represented in JSON Schema");
|
|
237
|
+
};
|
|
238
|
+
exports.symbolProcessor = symbolProcessor;
|
|
239
|
+
const nullProcessor = (_schema, ctx, json, _params) => {
|
|
240
|
+
if (ctx.target === "openapi-3.0") {
|
|
241
|
+
json.type = "string";
|
|
242
|
+
json.nullable = true;
|
|
243
|
+
json.enum = [null];
|
|
244
|
+
}
|
|
245
|
+
else {
|
|
246
|
+
json.type = "null";
|
|
247
|
+
}
|
|
248
|
+
};
|
|
249
|
+
exports.nullProcessor = nullProcessor;
|
|
250
|
+
const undefinedProcessor = (schema, ctx, json, params) => {
|
|
251
|
+
(0, to_json_schema_js_1.handleUnrepresentable)(schema, ctx, json, params, "Undefined cannot be represented in JSON Schema");
|
|
252
|
+
};
|
|
253
|
+
exports.undefinedProcessor = undefinedProcessor;
|
|
254
|
+
const voidProcessor = (schema, ctx, json, params) => {
|
|
255
|
+
(0, to_json_schema_js_1.handleUnrepresentable)(schema, ctx, json, params, "Void cannot be represented in JSON Schema");
|
|
256
|
+
};
|
|
257
|
+
exports.voidProcessor = voidProcessor;
|
|
258
|
+
const neverProcessor = (_schema, _ctx, json, _params) => {
|
|
259
|
+
json.not = {};
|
|
260
|
+
};
|
|
261
|
+
exports.neverProcessor = neverProcessor;
|
|
262
|
+
const anyProcessor = (_schema, _ctx, _json, _params) => {
|
|
263
|
+
// empty schema accepts anything
|
|
264
|
+
};
|
|
265
|
+
exports.anyProcessor = anyProcessor;
|
|
266
|
+
const unknownProcessor = (_schema, _ctx, _json, _params) => {
|
|
267
|
+
// empty schema accepts anything
|
|
268
|
+
};
|
|
269
|
+
exports.unknownProcessor = unknownProcessor;
|
|
270
|
+
const dateProcessor = (schema, ctx, json, params) => {
|
|
271
|
+
(0, to_json_schema_js_1.handleUnrepresentable)(schema, ctx, json, params, "Date cannot be represented in JSON Schema");
|
|
272
|
+
};
|
|
273
|
+
exports.dateProcessor = dateProcessor;
|
|
274
|
+
const enumProcessor = (schema, _ctx, json, _params) => {
|
|
275
|
+
const def = schema._yatsp.def;
|
|
276
|
+
const values = (0, util_js_1.getEnumValues)(def.entries);
|
|
277
|
+
// an empty enum accepts nothing, same as z.never()
|
|
278
|
+
if (values.length === 0) {
|
|
279
|
+
json.not = {};
|
|
280
|
+
return;
|
|
281
|
+
}
|
|
282
|
+
// Number enums can have both string and number values
|
|
283
|
+
if (values.every((v) => typeof v === "number"))
|
|
284
|
+
json.type = "number";
|
|
285
|
+
if (values.every((v) => typeof v === "string"))
|
|
286
|
+
json.type = "string";
|
|
287
|
+
json.enum = values;
|
|
288
|
+
};
|
|
289
|
+
exports.enumProcessor = enumProcessor;
|
|
290
|
+
const literalProcessor = (schema, ctx, json, params) => {
|
|
291
|
+
const def = schema._yatsp.def;
|
|
292
|
+
// a literal with no values accepts nothing, same as z.never()
|
|
293
|
+
if (def.values.length === 0) {
|
|
294
|
+
json.not = {};
|
|
295
|
+
return;
|
|
296
|
+
}
|
|
297
|
+
const vals = [];
|
|
298
|
+
for (const val of def.values) {
|
|
299
|
+
if (val === undefined) {
|
|
300
|
+
// a custom schema replaces the whole literal, so there is nothing left to accumulate
|
|
301
|
+
if ((0, to_json_schema_js_1.handleUnrepresentable)(schema, ctx, json, params, "Literal `undefined` cannot be represented in JSON Schema"))
|
|
302
|
+
return;
|
|
303
|
+
// otherwise do not add to vals
|
|
304
|
+
}
|
|
305
|
+
else if (typeof val === "bigint") {
|
|
306
|
+
if ((0, to_json_schema_js_1.handleUnrepresentable)(schema, ctx, json, params, "BigInt literals cannot be represented in JSON Schema"))
|
|
307
|
+
return;
|
|
308
|
+
vals.push(Number(val));
|
|
309
|
+
}
|
|
310
|
+
else {
|
|
311
|
+
vals.push(val);
|
|
312
|
+
}
|
|
313
|
+
}
|
|
314
|
+
if (vals.length === 0) {
|
|
315
|
+
// do nothing (an undefined literal was stripped)
|
|
316
|
+
}
|
|
317
|
+
else if (vals.length === 1) {
|
|
318
|
+
const val = vals[0];
|
|
319
|
+
json.type = val === null ? "null" : typeof val;
|
|
320
|
+
if (ctx.target === "draft-04" || ctx.target === "openapi-3.0") {
|
|
321
|
+
json.enum = [val];
|
|
322
|
+
}
|
|
323
|
+
else {
|
|
324
|
+
json.const = val;
|
|
325
|
+
}
|
|
326
|
+
}
|
|
327
|
+
else {
|
|
328
|
+
if (vals.every((v) => typeof v === "number"))
|
|
329
|
+
json.type = "number";
|
|
330
|
+
if (vals.every((v) => typeof v === "string"))
|
|
331
|
+
json.type = "string";
|
|
332
|
+
if (vals.every((v) => typeof v === "boolean"))
|
|
333
|
+
json.type = "boolean";
|
|
334
|
+
if (vals.every((v) => v === null))
|
|
335
|
+
json.type = "null";
|
|
336
|
+
json.enum = vals;
|
|
337
|
+
}
|
|
338
|
+
};
|
|
339
|
+
exports.literalProcessor = literalProcessor;
|
|
340
|
+
const nanProcessor = (schema, ctx, json, params) => {
|
|
341
|
+
(0, to_json_schema_js_1.handleUnrepresentable)(schema, ctx, json, params, "NaN cannot be represented in JSON Schema");
|
|
342
|
+
};
|
|
343
|
+
exports.nanProcessor = nanProcessor;
|
|
344
|
+
const templateLiteralProcessor = (schema, _ctx, json, _params) => {
|
|
345
|
+
const _json = json;
|
|
346
|
+
const pattern = schema._yatsp.pattern;
|
|
347
|
+
if (!pattern)
|
|
348
|
+
throw new Error("Pattern not found in template literal");
|
|
349
|
+
_json.type = "string";
|
|
350
|
+
_json.pattern = pattern.source;
|
|
351
|
+
};
|
|
352
|
+
exports.templateLiteralProcessor = templateLiteralProcessor;
|
|
353
|
+
const fileProcessor = (schema, _ctx, json, _params) => {
|
|
354
|
+
const _json = json;
|
|
355
|
+
_json.type = "string";
|
|
356
|
+
_json.format = "binary";
|
|
357
|
+
_json.contentEncoding = "binary";
|
|
358
|
+
const { minimum, maximum, mime } = aggregateChecks(schema);
|
|
359
|
+
if (minimum !== undefined)
|
|
360
|
+
_json.minLength = minimum;
|
|
361
|
+
if (maximum !== undefined)
|
|
362
|
+
_json.maxLength = maximum;
|
|
363
|
+
if (!mime)
|
|
364
|
+
return;
|
|
365
|
+
// an empty intersection means the mime checks share no value, so nothing passes at runtime; `anyOf` must be non-empty, so the false schema is `not: {}`
|
|
366
|
+
if (mime.length === 0)
|
|
367
|
+
_json.not = {};
|
|
368
|
+
else if (mime.length === 1)
|
|
369
|
+
_json.contentMediaType = mime[0];
|
|
370
|
+
// only contentMediaType differs, so the shared props stay at the root
|
|
371
|
+
else
|
|
372
|
+
_json.anyOf = mime.map((m) => ({ contentMediaType: m }));
|
|
373
|
+
};
|
|
374
|
+
exports.fileProcessor = fileProcessor;
|
|
375
|
+
const successProcessor = (_schema, _ctx, json, _params) => {
|
|
376
|
+
json.type = "boolean";
|
|
377
|
+
};
|
|
378
|
+
exports.successProcessor = successProcessor;
|
|
379
|
+
const customProcessor = (schema, ctx, json, params) => {
|
|
380
|
+
(0, to_json_schema_js_1.handleUnrepresentable)(schema, ctx, json, params, "Custom types cannot be represented in JSON Schema");
|
|
381
|
+
};
|
|
382
|
+
exports.customProcessor = customProcessor;
|
|
383
|
+
const functionProcessor = (schema, ctx, json, params) => {
|
|
384
|
+
(0, to_json_schema_js_1.handleUnrepresentable)(schema, ctx, json, params, "Function types cannot be represented in JSON Schema");
|
|
385
|
+
};
|
|
386
|
+
exports.functionProcessor = functionProcessor;
|
|
387
|
+
const transformProcessor = (schema, ctx, json, params) => {
|
|
388
|
+
(0, to_json_schema_js_1.handleUnrepresentable)(schema, ctx, json, params, "Transforms cannot be represented in JSON Schema");
|
|
389
|
+
};
|
|
390
|
+
exports.transformProcessor = transformProcessor;
|
|
391
|
+
const mapProcessor = (schema, ctx, json, params) => {
|
|
392
|
+
(0, to_json_schema_js_1.handleUnrepresentable)(schema, ctx, json, params, "Map cannot be represented in JSON Schema");
|
|
393
|
+
};
|
|
394
|
+
exports.mapProcessor = mapProcessor;
|
|
395
|
+
const setProcessor = (schema, ctx, json, params) => {
|
|
396
|
+
(0, to_json_schema_js_1.handleUnrepresentable)(schema, ctx, json, params, "Set cannot be represented in JSON Schema");
|
|
397
|
+
};
|
|
398
|
+
exports.setProcessor = setProcessor;
|
|
399
|
+
// ==================== COMPOSITE TYPE PROCESSORS ====================
|
|
400
|
+
const arrayProcessor = (schema, ctx, _json, params) => {
|
|
401
|
+
const json = _json;
|
|
402
|
+
const def = schema._yatsp.def;
|
|
403
|
+
const { minimum, maximum } = aggregateChecks(schema);
|
|
404
|
+
if (typeof minimum === "number")
|
|
405
|
+
json.minItems = minimum;
|
|
406
|
+
if (typeof maximum === "number")
|
|
407
|
+
json.maxItems = maximum;
|
|
408
|
+
json.type = "array";
|
|
409
|
+
json.items = (0, to_json_schema_js_1.processSchema)(def.element, ctx, {
|
|
410
|
+
...params,
|
|
411
|
+
path: [...params.path, "items"],
|
|
412
|
+
});
|
|
413
|
+
};
|
|
414
|
+
exports.arrayProcessor = arrayProcessor;
|
|
415
|
+
// Transform and catch set `optin = "optional"` at runtime so the parser lets them observe an
|
|
416
|
+
// absent key, but their declared input type stays required. An input JSON Schema describes the
|
|
417
|
+
// declared type, so resolve past them to the schema that actually carries the optionality.
|
|
418
|
+
// Used by both `objectProcessor` (for `required`) and `tupleProcessor` (for `minItems`); see
|
|
419
|
+
// wiki/optionality.md, "The JSON Schema emitter reads the *static* value".
|
|
420
|
+
function inputOptin(schema) {
|
|
421
|
+
const def = schema._yatsp.def;
|
|
422
|
+
if (def.type === "pipe" && def.in._yatsp.traits.has("$YatspTransform")) {
|
|
423
|
+
return inputOptin(def.out);
|
|
424
|
+
}
|
|
425
|
+
if (def.type === "catch") {
|
|
426
|
+
return inputOptin(def.innerType);
|
|
427
|
+
}
|
|
428
|
+
return schema._yatsp.optin;
|
|
429
|
+
}
|
|
430
|
+
const objectProcessor = (schema, ctx, _json, params) => {
|
|
431
|
+
const json = _json;
|
|
432
|
+
const def = schema._yatsp.def;
|
|
433
|
+
const shape = def.shape;
|
|
434
|
+
// dropping it while still emitting `additionalProperties: false` would emit a schema that rejects data this one requires
|
|
435
|
+
const symbolKeys = Object.getOwnPropertySymbols(shape);
|
|
436
|
+
if (symbolKeys.length &&
|
|
437
|
+
(0, to_json_schema_js_1.handleUnrepresentable)(schema, ctx, json, params, "Symbol keys cannot be represented in JSON Schema")) {
|
|
438
|
+
return;
|
|
439
|
+
}
|
|
440
|
+
json.type = "object";
|
|
441
|
+
json.properties = {};
|
|
442
|
+
for (const key in shape) {
|
|
443
|
+
// assignProp so a __proto__ key becomes an own property instead of hitting the inherited setter on the plain {} we build into
|
|
444
|
+
(0, util_js_1.assignProp)(json.properties, key, (0, to_json_schema_js_1.processSchema)(shape[key], ctx, {
|
|
445
|
+
...params,
|
|
446
|
+
path: [...params.path, "properties", key],
|
|
447
|
+
}));
|
|
448
|
+
}
|
|
449
|
+
// required keys
|
|
450
|
+
const requiredKeys = [];
|
|
451
|
+
for (const key of Object.keys(shape)) {
|
|
452
|
+
const field = def.shape[key];
|
|
453
|
+
if (ctx.io === "input" ? inputOptin(field) === undefined : field._yatsp.optout === undefined) {
|
|
454
|
+
requiredKeys.push(key);
|
|
455
|
+
}
|
|
456
|
+
}
|
|
457
|
+
if (requiredKeys.length > 0) {
|
|
458
|
+
json.required = requiredKeys;
|
|
459
|
+
}
|
|
460
|
+
// catchall
|
|
461
|
+
if (def.catchall?._yatsp.def.type === "never") {
|
|
462
|
+
// strict
|
|
463
|
+
json.additionalProperties = false;
|
|
464
|
+
}
|
|
465
|
+
else if (!def.catchall) {
|
|
466
|
+
// regular
|
|
467
|
+
if (ctx.io === "output")
|
|
468
|
+
json.additionalProperties = false;
|
|
469
|
+
}
|
|
470
|
+
else if (def.catchall) {
|
|
471
|
+
json.additionalProperties = (0, to_json_schema_js_1.processSchema)(def.catchall, ctx, {
|
|
472
|
+
...params,
|
|
473
|
+
path: [...params.path, "additionalProperties"],
|
|
474
|
+
});
|
|
475
|
+
}
|
|
476
|
+
};
|
|
477
|
+
exports.objectProcessor = objectProcessor;
|
|
478
|
+
const unionProcessor = (schema, ctx, json, params) => {
|
|
479
|
+
const def = schema._yatsp.def;
|
|
480
|
+
// Exclusive unions (inclusive === false) use oneOf (exactly one match) instead of anyOf (one or more matches). This includes both z.xor() and discriminated unions
|
|
481
|
+
const isExclusive = def.inclusive === false;
|
|
482
|
+
const options = def.options.map((x, i) => (0, to_json_schema_js_1.processSchema)(x, ctx, {
|
|
483
|
+
...params,
|
|
484
|
+
path: [...params.path, isExclusive ? "oneOf" : "anyOf", i],
|
|
485
|
+
}));
|
|
486
|
+
if (isExclusive) {
|
|
487
|
+
json.oneOf = options;
|
|
488
|
+
}
|
|
489
|
+
else {
|
|
490
|
+
json.anyOf = options;
|
|
491
|
+
}
|
|
492
|
+
};
|
|
493
|
+
exports.unionProcessor = unionProcessor;
|
|
494
|
+
const intersectionProcessor = (schema, ctx, json, params) => {
|
|
495
|
+
const def = schema._yatsp.def;
|
|
496
|
+
const a = (0, to_json_schema_js_1.processSchema)(def.left, ctx, {
|
|
497
|
+
...params,
|
|
498
|
+
path: [...params.path, "allOf", 0],
|
|
499
|
+
});
|
|
500
|
+
const b = (0, to_json_schema_js_1.processSchema)(def.right, ctx, {
|
|
501
|
+
...params,
|
|
502
|
+
path: [...params.path, "allOf", 1],
|
|
503
|
+
});
|
|
504
|
+
const isSimpleIntersection = (val) => "allOf" in val && Object.keys(val).length === 1;
|
|
505
|
+
const allOf = [
|
|
506
|
+
...(isSimpleIntersection(a) ? a.allOf : [a]),
|
|
507
|
+
...(isSimpleIntersection(b) ? b.allOf : [b]),
|
|
508
|
+
];
|
|
509
|
+
json.allOf = allOf;
|
|
510
|
+
// Recorded innermost first, so a nested intersection has already folded by the time this one is considered. The array is the handle rather than the schema, because a wrapper that inherits this schema shares the same array; `finalize` folds every object holding it. See `foldIntersection`.
|
|
511
|
+
ctx.intersections.push(allOf);
|
|
512
|
+
};
|
|
513
|
+
exports.intersectionProcessor = intersectionProcessor;
|
|
514
|
+
const tupleProcessor = (schema, ctx, _json, params) => {
|
|
515
|
+
const json = _json;
|
|
516
|
+
const def = schema._yatsp.def;
|
|
517
|
+
json.type = "array";
|
|
518
|
+
const prefixPath = ctx.target === "draft-2020-12" ? "prefixItems" : "items";
|
|
519
|
+
const restPath = ctx.target === "draft-2020-12" ? "items" : ctx.target === "openapi-3.0" ? "items" : "additionalItems";
|
|
520
|
+
const prefixItems = def.items.map((x, i) => (0, to_json_schema_js_1.processSchema)(x, ctx, {
|
|
521
|
+
...params,
|
|
522
|
+
path: [...params.path, prefixPath, i],
|
|
523
|
+
}));
|
|
524
|
+
const rest = def.rest
|
|
525
|
+
? (0, to_json_schema_js_1.processSchema)(def.rest, ctx, {
|
|
526
|
+
...params,
|
|
527
|
+
path: [...params.path, restPath, ...(ctx.target === "openapi-3.0" ? [def.items.length] : [])],
|
|
528
|
+
})
|
|
529
|
+
: null;
|
|
530
|
+
let minItems = def.items.length;
|
|
531
|
+
while (minItems > 0) {
|
|
532
|
+
const item = def.items[minItems - 1];
|
|
533
|
+
const optional = ctx.io === "input" ? inputOptin(item) !== undefined : item._yatsp.optout === "optional";
|
|
534
|
+
if (!optional)
|
|
535
|
+
break;
|
|
536
|
+
minItems--;
|
|
537
|
+
}
|
|
538
|
+
const maxItems = def.items.length;
|
|
539
|
+
const isClosed = !def.rest;
|
|
540
|
+
if (ctx.target === "draft-2020-12") {
|
|
541
|
+
json.prefixItems = prefixItems;
|
|
542
|
+
if (isClosed) {
|
|
543
|
+
json.items = false;
|
|
544
|
+
}
|
|
545
|
+
else if (rest) {
|
|
546
|
+
json.items = rest;
|
|
547
|
+
}
|
|
548
|
+
if (minItems > 0)
|
|
549
|
+
json.minItems = minItems;
|
|
550
|
+
if (isClosed)
|
|
551
|
+
json.maxItems = maxItems;
|
|
552
|
+
}
|
|
553
|
+
else if (ctx.target === "openapi-3.0") {
|
|
554
|
+
json.items = {
|
|
555
|
+
anyOf: prefixItems,
|
|
556
|
+
};
|
|
557
|
+
if (rest) {
|
|
558
|
+
json.items.anyOf.push(rest);
|
|
559
|
+
}
|
|
560
|
+
if (minItems > 0)
|
|
561
|
+
json.minItems = minItems;
|
|
562
|
+
if (isClosed)
|
|
563
|
+
json.maxItems = maxItems;
|
|
564
|
+
}
|
|
565
|
+
else {
|
|
566
|
+
json.items = prefixItems;
|
|
567
|
+
if (isClosed) {
|
|
568
|
+
json.additionalItems = false;
|
|
569
|
+
}
|
|
570
|
+
else if (rest) {
|
|
571
|
+
json.additionalItems = rest;
|
|
572
|
+
}
|
|
573
|
+
if (minItems > 0)
|
|
574
|
+
json.minItems = minItems;
|
|
575
|
+
if (isClosed)
|
|
576
|
+
json.maxItems = maxItems;
|
|
577
|
+
}
|
|
578
|
+
// explicit user-defined length checks take precedence
|
|
579
|
+
const { minimum, maximum } = aggregateChecks(schema);
|
|
580
|
+
if (typeof minimum === "number")
|
|
581
|
+
json.minItems = minimum;
|
|
582
|
+
if (typeof maximum === "number")
|
|
583
|
+
json.maxItems = maximum;
|
|
584
|
+
};
|
|
585
|
+
exports.tupleProcessor = tupleProcessor;
|
|
586
|
+
/** JSON object keys are always strings, so a numeric record key schema is re-expressed over the
|
|
587
|
+
* numeric-string form the record parser matches. Deferred to `finalize`, after the flatten: a key
|
|
588
|
+
* behind a wrapper only carries its own `type` before then, and a union key only has its branches.
|
|
589
|
+
*
|
|
590
|
+
* A numeric bound cannot apply to a property name, so `minimum` and its siblings are dropped rather
|
|
591
|
+
* than carried over: keeping them beside `type: "string"` reproduces the match-nothing schema this
|
|
592
|
+
* exists to fix. A key that carries one therefore emits wider than the record parses — `z.record(z.number().min(5), V)`
|
|
593
|
+
* accepts `"3"` — which is the deliberate trade, since throwing on it would reject an ordinary schema
|
|
594
|
+
* outright. */
|
|
595
|
+
function stringifyKeyNames(bySchema, json, visited) {
|
|
596
|
+
// an extracted key that rewrites cannot go on sharing its definition — the string form a key position needs is not the number form every other reference wants — so it inlines. One that does not rewrite keeps the `$ref`.
|
|
597
|
+
if (json.$ref) {
|
|
598
|
+
// a recursive key holds its own reference inside its definition, so a node already on the path is left alone rather than resolved again
|
|
599
|
+
if (visited.has(json))
|
|
600
|
+
return json;
|
|
601
|
+
visited.add(json);
|
|
602
|
+
const def = bySchema.get(json)?.def;
|
|
603
|
+
if (!def)
|
|
604
|
+
return json;
|
|
605
|
+
const inlined = stringifyKeyNames(bySchema, def, visited);
|
|
606
|
+
return inlined === def ? json : inlined;
|
|
607
|
+
}
|
|
608
|
+
for (const keyword of ["anyOf", "oneOf"]) {
|
|
609
|
+
const branches = json[keyword];
|
|
610
|
+
if (!Array.isArray(branches))
|
|
611
|
+
continue;
|
|
612
|
+
const mapped = branches.map((branch) => stringifyKeyNames(bySchema, branch, visited));
|
|
613
|
+
// rebuilding regardless would detach a key that had nothing to re-express, dropping its `$ref` and leaking the internal `id`
|
|
614
|
+
if (mapped.some((branch, i) => branch !== branches[i]))
|
|
615
|
+
json = { ...json, [keyword]: mapped };
|
|
616
|
+
}
|
|
617
|
+
// a member that already admits a string leaves the key unconstrained, so the node's own type re-expresses only when every member is numeric
|
|
618
|
+
const types = Array.isArray(json.type) ? json.type : [json.type];
|
|
619
|
+
const numericType = !types.includes("string") && types.some((t) => t === "number" || t === "integer");
|
|
620
|
+
// a heterogeneous key carries no type at all, so its numeric members are caught here instead
|
|
621
|
+
const values = json.enum ?? (json.const !== undefined ? [json.const] : undefined);
|
|
622
|
+
if (!numericType && !values?.some((v) => typeof v === "number"))
|
|
623
|
+
return json;
|
|
624
|
+
const { minimum, maximum, exclusiveMinimum, exclusiveMaximum, multipleOf, format, id, ...rest } = json;
|
|
625
|
+
if (rest.enum)
|
|
626
|
+
rest.enum = rest.enum.map((v) => (typeof v === "number" ? String(v) : v));
|
|
627
|
+
else if (typeof rest.const === "number")
|
|
628
|
+
rest.const = String(rest.const);
|
|
629
|
+
// a heterogeneous key keeps its absent type: the stringified members already say what a key may be
|
|
630
|
+
if (!numericType)
|
|
631
|
+
return rest;
|
|
632
|
+
rest.type = "string";
|
|
633
|
+
if (!values)
|
|
634
|
+
rest.pattern = (types.includes("number") ? regexes.number : regexes.integer).source;
|
|
635
|
+
return rest;
|
|
636
|
+
}
|
|
637
|
+
/** Every record of one conversion, so the carriers are found in a single pass rather than once per record. */
|
|
638
|
+
const pendingRecords = new WeakMap();
|
|
639
|
+
function rewriteKeyNames(ctx) {
|
|
640
|
+
// an extracted key is resolved by the object `extractToDef` left in its place, so the map is built once rather than searched per reference. `_yatsp.toJSONSchema` can hand the same object to two schemas, so the first entry carrying a body wins, as a search would have found it.
|
|
641
|
+
const bySchema = new Map();
|
|
642
|
+
for (const entry of ctx.seen.values()) {
|
|
643
|
+
if (entry.def && !bySchema.has(entry.schema))
|
|
644
|
+
bySchema.set(entry.schema, entry);
|
|
645
|
+
}
|
|
646
|
+
const rewrites = new Map();
|
|
647
|
+
for (const record of pendingRecords.get(ctx) ?? []) {
|
|
648
|
+
const seen = ctx.seen.get(record);
|
|
649
|
+
const names = (seen?.def ?? seen?.schema)?.propertyNames;
|
|
650
|
+
if (!names || names === true || rewrites.has(names))
|
|
651
|
+
continue;
|
|
652
|
+
const rewritten = stringifyKeyNames(bySchema, names, new Set());
|
|
653
|
+
if (rewritten !== names)
|
|
654
|
+
rewrites.set(names, rewritten);
|
|
655
|
+
}
|
|
656
|
+
if (!rewrites.size)
|
|
657
|
+
return;
|
|
658
|
+
// the flatten has already copied each record's own properties onto every wrapper by reference, and an extracted body is another such copy, so every carrier holding a rewritten key is updated together
|
|
659
|
+
for (const entry of ctx.seen.values()) {
|
|
660
|
+
for (const carrier of [entry.schema, entry.def]) {
|
|
661
|
+
const rewritten = carrier && rewrites.get(carrier.propertyNames);
|
|
662
|
+
if (rewritten)
|
|
663
|
+
carrier.propertyNames = rewritten;
|
|
664
|
+
}
|
|
665
|
+
}
|
|
666
|
+
}
|
|
667
|
+
const recordProcessor = (schema, ctx, _json, params) => {
|
|
668
|
+
const json = _json;
|
|
669
|
+
const def = schema._yatsp.def;
|
|
670
|
+
json.type = "object";
|
|
671
|
+
// For looseRecord with regex patterns, use patternProperties. This correctly represents "only validate keys matching the pattern" semantics and composes well with allOf (intersections)
|
|
672
|
+
const keyType = def.keyType;
|
|
673
|
+
const patterns = aggregateChecks(keyType).patterns;
|
|
674
|
+
if (def.mode === "loose" && patterns && patterns.size > 0) {
|
|
675
|
+
// Use patternProperties for looseRecord with regex patterns
|
|
676
|
+
const valueSchema = (0, to_json_schema_js_1.processSchema)(def.valueType, ctx, {
|
|
677
|
+
...params,
|
|
678
|
+
path: [...params.path, "patternProperties", "*"],
|
|
679
|
+
});
|
|
680
|
+
json.patternProperties = {};
|
|
681
|
+
for (const pattern of patterns) {
|
|
682
|
+
(0, util_js_1.assignProp)(json.patternProperties, exactPattern(pattern).source, valueSchema);
|
|
683
|
+
}
|
|
684
|
+
}
|
|
685
|
+
else {
|
|
686
|
+
// Default behavior: use propertyNames + additionalProperties
|
|
687
|
+
if (ctx.target === "draft-07" || ctx.target === "draft-2020-12") {
|
|
688
|
+
json.propertyNames = (0, to_json_schema_js_1.processSchema)(def.keyType, ctx, {
|
|
689
|
+
...params,
|
|
690
|
+
path: [...params.path, "propertyNames"],
|
|
691
|
+
});
|
|
692
|
+
let pending = pendingRecords.get(ctx);
|
|
693
|
+
if (!pending) {
|
|
694
|
+
pending = [];
|
|
695
|
+
pendingRecords.set(ctx, pending);
|
|
696
|
+
ctx.deferred.push(() => rewriteKeyNames(ctx));
|
|
697
|
+
}
|
|
698
|
+
pending.push(schema);
|
|
699
|
+
}
|
|
700
|
+
json.additionalProperties = (0, to_json_schema_js_1.processSchema)(def.valueType, ctx, {
|
|
701
|
+
...params,
|
|
702
|
+
path: [...params.path, "additionalProperties"],
|
|
703
|
+
});
|
|
704
|
+
}
|
|
705
|
+
// Add required for keys with discrete values (enum, literal, etc.)
|
|
706
|
+
const keyValues = keyType._yatsp.values;
|
|
707
|
+
// Every key shares one value schema, so an optional-in value makes the whole key set omittable on input. Output keeps them: the exhaustive branch assigns every key, even one whose value came back undefined.
|
|
708
|
+
const omittableOnInput = ctx.io === "input" && inputOptin(def.valueType) !== undefined;
|
|
709
|
+
if (keyValues && !def.partial && !omittableOnInput) {
|
|
710
|
+
const validKeyValues = [...keyValues].filter((v) => typeof v === "string" || typeof v === "number");
|
|
711
|
+
if (validKeyValues.length > 0) {
|
|
712
|
+
json.required = validKeyValues.map(String);
|
|
713
|
+
}
|
|
714
|
+
}
|
|
715
|
+
};
|
|
716
|
+
exports.recordProcessor = recordProcessor;
|
|
717
|
+
const nullableProcessor = (schema, ctx, json, params) => {
|
|
718
|
+
const def = schema._yatsp.def;
|
|
719
|
+
const inner = (0, to_json_schema_js_1.processSchema)(def.innerType, ctx, params);
|
|
720
|
+
const seen = ctx.seen.get(schema);
|
|
721
|
+
if (ctx.target === "openapi-3.0") {
|
|
722
|
+
seen.ref = def.innerType;
|
|
723
|
+
json.nullable = true;
|
|
724
|
+
}
|
|
725
|
+
else {
|
|
726
|
+
json.anyOf = [inner, { type: "null" }];
|
|
727
|
+
}
|
|
728
|
+
};
|
|
729
|
+
exports.nullableProcessor = nullableProcessor;
|
|
730
|
+
const nonoptionalProcessor = (schema, ctx, _json, params) => {
|
|
731
|
+
const def = schema._yatsp.def;
|
|
732
|
+
(0, to_json_schema_js_1.processSchema)(def.innerType, ctx, params);
|
|
733
|
+
const seen = ctx.seen.get(schema);
|
|
734
|
+
seen.ref = def.innerType;
|
|
735
|
+
};
|
|
736
|
+
exports.nonoptionalProcessor = nonoptionalProcessor;
|
|
737
|
+
/** Round-trips a default value through JSON so the emitted schema is guaranteed to be valid JSON.
|
|
738
|
+
* A BigInt has no reliable encoding, so it goes through `unrepresentable` like any other
|
|
739
|
+
* unrepresentable value. Returns a sentinel when the caller must not write a default of its own. */
|
|
740
|
+
const UNREPRESENTABLE_DEFAULT = Symbol();
|
|
741
|
+
function serializeDefaultValue(value, schema, ctx, json, params) {
|
|
742
|
+
let unrepresentable = false;
|
|
743
|
+
const serialized = JSON.stringify(value, (_, val) => {
|
|
744
|
+
if (typeof val !== "bigint")
|
|
745
|
+
return val;
|
|
746
|
+
unrepresentable = true;
|
|
747
|
+
return null;
|
|
748
|
+
});
|
|
749
|
+
if (!unrepresentable)
|
|
750
|
+
return JSON.parse(serialized);
|
|
751
|
+
(0, to_json_schema_js_1.handleUnrepresentable)(schema, ctx, json, params, "BigInt defaults cannot be represented in JSON Schema");
|
|
752
|
+
return UNREPRESENTABLE_DEFAULT;
|
|
753
|
+
}
|
|
754
|
+
const defaultProcessor = (schema, ctx, json, params) => {
|
|
755
|
+
const def = schema._yatsp.def;
|
|
756
|
+
(0, to_json_schema_js_1.processSchema)(def.innerType, ctx, params);
|
|
757
|
+
const seen = ctx.seen.get(schema);
|
|
758
|
+
seen.ref = def.innerType;
|
|
759
|
+
const value = serializeDefaultValue(def.defaultValue, schema, ctx, json, params);
|
|
760
|
+
if (value !== UNREPRESENTABLE_DEFAULT)
|
|
761
|
+
json.default = value;
|
|
762
|
+
};
|
|
763
|
+
exports.defaultProcessor = defaultProcessor;
|
|
764
|
+
const prefaultProcessor = (schema, ctx, json, params) => {
|
|
765
|
+
const def = schema._yatsp.def;
|
|
766
|
+
(0, to_json_schema_js_1.processSchema)(def.innerType, ctx, params);
|
|
767
|
+
const seen = ctx.seen.get(schema);
|
|
768
|
+
seen.ref = def.innerType;
|
|
769
|
+
if (ctx.io !== "input")
|
|
770
|
+
return;
|
|
771
|
+
const value = serializeDefaultValue(def.defaultValue, schema, ctx, json, params);
|
|
772
|
+
if (value !== UNREPRESENTABLE_DEFAULT)
|
|
773
|
+
json._prefault = value;
|
|
774
|
+
};
|
|
775
|
+
exports.prefaultProcessor = prefaultProcessor;
|
|
776
|
+
const catchProcessor = (schema, ctx, json, params) => {
|
|
777
|
+
const def = schema._yatsp.def;
|
|
778
|
+
(0, to_json_schema_js_1.processSchema)(def.innerType, ctx, params);
|
|
779
|
+
const seen = ctx.seen.get(schema);
|
|
780
|
+
seen.ref = def.innerType;
|
|
781
|
+
let catchValue;
|
|
782
|
+
try {
|
|
783
|
+
catchValue = def.catchValue(undefined);
|
|
784
|
+
}
|
|
785
|
+
catch {
|
|
786
|
+
(0, to_json_schema_js_1.handleUnrepresentable)(schema, ctx, json, params, "Dynamic catch values are not supported in JSON Schema");
|
|
787
|
+
return;
|
|
788
|
+
}
|
|
789
|
+
json.default = catchValue;
|
|
790
|
+
};
|
|
791
|
+
exports.catchProcessor = catchProcessor;
|
|
792
|
+
const pipeProcessor = (schema, ctx, _json, params) => {
|
|
793
|
+
const def = schema._yatsp.def;
|
|
794
|
+
const inIsTransform = def.in._yatsp.traits.has("$YatspTransform");
|
|
795
|
+
const innerType = ctx.io === "input" ? (inIsTransform ? def.out : def.in) : def.out;
|
|
796
|
+
(0, to_json_schema_js_1.processSchema)(innerType, ctx, params);
|
|
797
|
+
const seen = ctx.seen.get(schema);
|
|
798
|
+
seen.ref = innerType;
|
|
799
|
+
};
|
|
800
|
+
exports.pipeProcessor = pipeProcessor;
|
|
801
|
+
const readonlyProcessor = (schema, ctx, json, params) => {
|
|
802
|
+
const def = schema._yatsp.def;
|
|
803
|
+
(0, to_json_schema_js_1.processSchema)(def.innerType, ctx, params);
|
|
804
|
+
const seen = ctx.seen.get(schema);
|
|
805
|
+
seen.ref = def.innerType;
|
|
806
|
+
json.readOnly = true;
|
|
807
|
+
};
|
|
808
|
+
exports.readonlyProcessor = readonlyProcessor;
|
|
809
|
+
const promiseProcessor = (schema, ctx, _json, params) => {
|
|
810
|
+
const def = schema._yatsp.def;
|
|
811
|
+
(0, to_json_schema_js_1.processSchema)(def.innerType, ctx, params);
|
|
812
|
+
const seen = ctx.seen.get(schema);
|
|
813
|
+
seen.ref = def.innerType;
|
|
814
|
+
};
|
|
815
|
+
exports.promiseProcessor = promiseProcessor;
|
|
816
|
+
const optionalProcessor = (schema, ctx, _json, params) => {
|
|
817
|
+
const def = schema._yatsp.def;
|
|
818
|
+
(0, to_json_schema_js_1.processSchema)(def.innerType, ctx, params);
|
|
819
|
+
const seen = ctx.seen.get(schema);
|
|
820
|
+
seen.ref = def.innerType;
|
|
821
|
+
};
|
|
822
|
+
exports.optionalProcessor = optionalProcessor;
|
|
823
|
+
const lazyProcessor = (schema, ctx, _json, params) => {
|
|
824
|
+
const innerType = schema._yatsp.innerType;
|
|
825
|
+
(0, to_json_schema_js_1.processSchema)(innerType, ctx, params);
|
|
826
|
+
const seen = ctx.seen.get(schema);
|
|
827
|
+
seen.ref = innerType;
|
|
828
|
+
};
|
|
829
|
+
exports.lazyProcessor = lazyProcessor;
|
|
830
|
+
// ==================== ALL PROCESSORS ====================
|
|
831
|
+
exports.allProcessors = {
|
|
832
|
+
string: exports.stringProcessor,
|
|
833
|
+
number: exports.numberProcessor,
|
|
834
|
+
boolean: exports.booleanProcessor,
|
|
835
|
+
bigint: exports.bigintProcessor,
|
|
836
|
+
symbol: exports.symbolProcessor,
|
|
837
|
+
null: exports.nullProcessor,
|
|
838
|
+
undefined: exports.undefinedProcessor,
|
|
839
|
+
void: exports.voidProcessor,
|
|
840
|
+
never: exports.neverProcessor,
|
|
841
|
+
any: exports.anyProcessor,
|
|
842
|
+
unknown: exports.unknownProcessor,
|
|
843
|
+
date: exports.dateProcessor,
|
|
844
|
+
enum: exports.enumProcessor,
|
|
845
|
+
literal: exports.literalProcessor,
|
|
846
|
+
nan: exports.nanProcessor,
|
|
847
|
+
template_literal: exports.templateLiteralProcessor,
|
|
848
|
+
file: exports.fileProcessor,
|
|
849
|
+
success: exports.successProcessor,
|
|
850
|
+
custom: exports.customProcessor,
|
|
851
|
+
function: exports.functionProcessor,
|
|
852
|
+
transform: exports.transformProcessor,
|
|
853
|
+
map: exports.mapProcessor,
|
|
854
|
+
set: exports.setProcessor,
|
|
855
|
+
array: exports.arrayProcessor,
|
|
856
|
+
object: exports.objectProcessor,
|
|
857
|
+
union: exports.unionProcessor,
|
|
858
|
+
intersection: exports.intersectionProcessor,
|
|
859
|
+
tuple: exports.tupleProcessor,
|
|
860
|
+
record: exports.recordProcessor,
|
|
861
|
+
nullable: exports.nullableProcessor,
|
|
862
|
+
nonoptional: exports.nonoptionalProcessor,
|
|
863
|
+
default: exports.defaultProcessor,
|
|
864
|
+
prefault: exports.prefaultProcessor,
|
|
865
|
+
catch: exports.catchProcessor,
|
|
866
|
+
pipe: exports.pipeProcessor,
|
|
867
|
+
readonly: exports.readonlyProcessor,
|
|
868
|
+
promise: exports.promiseProcessor,
|
|
869
|
+
optional: exports.optionalProcessor,
|
|
870
|
+
lazy: exports.lazyProcessor,
|
|
871
|
+
};
|
|
872
|
+
function toJSONSchema(input, params) {
|
|
873
|
+
if ("_idmap" in input) {
|
|
874
|
+
// Registry case
|
|
875
|
+
const registry = input;
|
|
876
|
+
const ctx = (0, to_json_schema_js_1.initializeContext)({ ...params, processors: exports.allProcessors });
|
|
877
|
+
const defs = {};
|
|
878
|
+
// First pass: process all schemas to build the seen map
|
|
879
|
+
for (const entry of registry._idmap.entries()) {
|
|
880
|
+
const [_, schema] = entry;
|
|
881
|
+
(0, to_json_schema_js_1.processSchema)(schema, ctx);
|
|
882
|
+
}
|
|
883
|
+
const schemas = {};
|
|
884
|
+
const external = {
|
|
885
|
+
registry,
|
|
886
|
+
uri: params?.uri,
|
|
887
|
+
defs,
|
|
888
|
+
};
|
|
889
|
+
// Update the context with external configuration
|
|
890
|
+
ctx.external = external;
|
|
891
|
+
// Second pass: emit each schema
|
|
892
|
+
for (const entry of registry._idmap.entries()) {
|
|
893
|
+
const [key, schema] = entry;
|
|
894
|
+
(0, to_json_schema_js_1.extractDefs)(ctx, schema);
|
|
895
|
+
(0, util_js_1.assignProp)(schemas, key, (0, to_json_schema_js_1.finalize)(ctx, schema));
|
|
896
|
+
}
|
|
897
|
+
if (Object.keys(defs).length > 0) {
|
|
898
|
+
const defsSegment = ctx.target === "draft-2020-12" ? "$defs" : "definitions";
|
|
899
|
+
schemas.__shared = {
|
|
900
|
+
[defsSegment]: defs,
|
|
901
|
+
};
|
|
902
|
+
}
|
|
903
|
+
return { schemas };
|
|
904
|
+
}
|
|
905
|
+
// Single schema case
|
|
906
|
+
const ctx = (0, to_json_schema_js_1.initializeContext)({ ...params, processors: exports.allProcessors });
|
|
907
|
+
(0, to_json_schema_js_1.processSchema)(input, ctx);
|
|
908
|
+
(0, to_json_schema_js_1.extractDefs)(ctx, input);
|
|
909
|
+
return (0, to_json_schema_js_1.finalize)(ctx, input);
|
|
910
|
+
}
|
|
911
|
+
|
|
912
|
+
// seal-cjs-exports
|
|
913
|
+
(function () {
|
|
914
|
+
var keys = Object.getOwnPropertyNames(exports);
|
|
915
|
+
for (var i = 0; i < keys.length; i++) {
|
|
916
|
+
var desc = Object.getOwnPropertyDescriptor(exports, keys[i]);
|
|
917
|
+
if (!desc || !desc.get || !desc.configurable) continue;
|
|
918
|
+
var value;
|
|
919
|
+
try {
|
|
920
|
+
value = desc.get();
|
|
921
|
+
} catch (e) {
|
|
922
|
+
continue;
|
|
923
|
+
}
|
|
924
|
+
// a circular require may not have settled this one yet, so leave it live
|
|
925
|
+
if (value === undefined) continue;
|
|
926
|
+
Object.defineProperty(exports, keys[i], { value: value, writable: false, enumerable: desc.enumerable, configurable: false });
|
|
927
|
+
}
|
|
928
|
+
Object.freeze(exports);
|
|
929
|
+
})();
|