@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,1004 @@
|
|
|
1
|
+
import * as core from "../core/index.js";
|
|
2
|
+
import * as regexes from "../core/regexes.js";
|
|
3
|
+
import * as util from "../core/util.js";
|
|
4
|
+
import * as parse from "./parse.js";
|
|
5
|
+
export const YatspMiniType = /*@__PURE__*/ core.$constructor("YatspMiniType", (inst, def) => {
|
|
6
|
+
if (!inst._yatsp)
|
|
7
|
+
throw new Error("Uninitialized schema in YatspMiniType.");
|
|
8
|
+
core.$YatspType.init(inst, def);
|
|
9
|
+
inst.def = def;
|
|
10
|
+
inst.type = def.type;
|
|
11
|
+
}, {
|
|
12
|
+
// `with` is an alias for `check`: the same function object, not a wrapper.
|
|
13
|
+
get with() {
|
|
14
|
+
return this.check;
|
|
15
|
+
},
|
|
16
|
+
set with(value) {
|
|
17
|
+
util.own(this, "with", value);
|
|
18
|
+
},
|
|
19
|
+
parse(data, params) {
|
|
20
|
+
return parse.parse(this, data, params, { callee: this.parse });
|
|
21
|
+
},
|
|
22
|
+
parseAsync(data, params) {
|
|
23
|
+
return parse.parseAsync(this, data, params, { callee: this.parseAsync });
|
|
24
|
+
},
|
|
25
|
+
safeParse(data, params) {
|
|
26
|
+
return parse.safeParse(this, data, params);
|
|
27
|
+
},
|
|
28
|
+
safeParseAsync(data, params) {
|
|
29
|
+
return parse.safeParseAsync(this, data, params);
|
|
30
|
+
},
|
|
31
|
+
check(...checks) {
|
|
32
|
+
const def = this.def;
|
|
33
|
+
return this.clone({
|
|
34
|
+
...def,
|
|
35
|
+
checks: [
|
|
36
|
+
...(def.checks ?? []),
|
|
37
|
+
...checks.map((ch) => typeof ch === "function" ? { _yatsp: { check: ch, def: { check: "custom" }, onattach: [] } } : ch),
|
|
38
|
+
],
|
|
39
|
+
}, { parent: true });
|
|
40
|
+
},
|
|
41
|
+
clone(_def, params) {
|
|
42
|
+
return core.clone(this, _def, params);
|
|
43
|
+
},
|
|
44
|
+
brand() {
|
|
45
|
+
return this;
|
|
46
|
+
},
|
|
47
|
+
register(reg, meta) {
|
|
48
|
+
reg.add(this, meta);
|
|
49
|
+
return this;
|
|
50
|
+
},
|
|
51
|
+
apply(fn, ...args) {
|
|
52
|
+
return args.length === 0 ? fn(this) : fn(this, ...args);
|
|
53
|
+
},
|
|
54
|
+
});
|
|
55
|
+
export const YatspMiniString = /*@__PURE__*/ core.$constructor("YatspMiniString", (inst, def) => {
|
|
56
|
+
core.$YatspString.init(inst, def);
|
|
57
|
+
YatspMiniType.init(inst, def);
|
|
58
|
+
});
|
|
59
|
+
// @__NO_SIDE_EFFECTS__
|
|
60
|
+
export function string(params) {
|
|
61
|
+
return core._string(YatspMiniString, params);
|
|
62
|
+
}
|
|
63
|
+
export const YatspMiniStringFormat = /*@__PURE__*/ core.$constructor("YatspMiniStringFormat", (inst, def) => {
|
|
64
|
+
core.$YatspStringFormat.init(inst, def);
|
|
65
|
+
YatspMiniString.init(inst, def);
|
|
66
|
+
});
|
|
67
|
+
export const YatspMiniEmail = /*@__PURE__*/ core.$constructor("YatspMiniEmail", (inst, def) => {
|
|
68
|
+
core.$YatspEmail.init(inst, def);
|
|
69
|
+
YatspMiniStringFormat.init(inst, def);
|
|
70
|
+
});
|
|
71
|
+
// @__NO_SIDE_EFFECTS__
|
|
72
|
+
export function email(params) {
|
|
73
|
+
return core._email(YatspMiniEmail, params);
|
|
74
|
+
}
|
|
75
|
+
export const YatspMiniGUID = /*@__PURE__*/ core.$constructor("YatspMiniGUID", (inst, def) => {
|
|
76
|
+
core.$YatspGUID.init(inst, def);
|
|
77
|
+
YatspMiniStringFormat.init(inst, def);
|
|
78
|
+
});
|
|
79
|
+
// @__NO_SIDE_EFFECTS__
|
|
80
|
+
export function guid(params) {
|
|
81
|
+
return core._guid(YatspMiniGUID, params);
|
|
82
|
+
}
|
|
83
|
+
export const YatspMiniUUID = /*@__PURE__*/ core.$constructor("YatspMiniUUID", (inst, def) => {
|
|
84
|
+
core.$YatspUUID.init(inst, def);
|
|
85
|
+
YatspMiniStringFormat.init(inst, def);
|
|
86
|
+
});
|
|
87
|
+
// @__NO_SIDE_EFFECTS__
|
|
88
|
+
export function uuid(params) {
|
|
89
|
+
return core._uuid(YatspMiniUUID, params);
|
|
90
|
+
}
|
|
91
|
+
// @__NO_SIDE_EFFECTS__
|
|
92
|
+
export function uuidv4(params) {
|
|
93
|
+
return core._uuidv4(YatspMiniUUID, params);
|
|
94
|
+
}
|
|
95
|
+
// YatspMiniUUIDv6
|
|
96
|
+
// @__NO_SIDE_EFFECTS__
|
|
97
|
+
export function uuidv6(params) {
|
|
98
|
+
return core._uuidv6(YatspMiniUUID, params);
|
|
99
|
+
}
|
|
100
|
+
// YatspMiniUUIDv7
|
|
101
|
+
// @__NO_SIDE_EFFECTS__
|
|
102
|
+
export function uuidv7(params) {
|
|
103
|
+
return core._uuidv7(YatspMiniUUID, params);
|
|
104
|
+
}
|
|
105
|
+
export const YatspMiniURL = /*@__PURE__*/ core.$constructor("YatspMiniURL", (inst, def) => {
|
|
106
|
+
core.$YatspURL.init(inst, def);
|
|
107
|
+
YatspMiniStringFormat.init(inst, def);
|
|
108
|
+
});
|
|
109
|
+
// @__NO_SIDE_EFFECTS__
|
|
110
|
+
export function url(params) {
|
|
111
|
+
return core._url(YatspMiniURL, params);
|
|
112
|
+
}
|
|
113
|
+
// @__NO_SIDE_EFFECTS__
|
|
114
|
+
export function httpUrl(params) {
|
|
115
|
+
return core._url(YatspMiniURL, {
|
|
116
|
+
protocol: regexes.httpProtocol,
|
|
117
|
+
hostname: regexes.domain,
|
|
118
|
+
...util.normalizeParams(params),
|
|
119
|
+
});
|
|
120
|
+
}
|
|
121
|
+
export const YatspMiniEmoji = /*@__PURE__*/ core.$constructor("YatspMiniEmoji", (inst, def) => {
|
|
122
|
+
core.$YatspEmoji.init(inst, def);
|
|
123
|
+
YatspMiniStringFormat.init(inst, def);
|
|
124
|
+
});
|
|
125
|
+
// @__NO_SIDE_EFFECTS__
|
|
126
|
+
export function emoji(params) {
|
|
127
|
+
return core._emoji(YatspMiniEmoji, params);
|
|
128
|
+
}
|
|
129
|
+
export const YatspMiniNanoID = /*@__PURE__*/ core.$constructor("YatspMiniNanoID", (inst, def) => {
|
|
130
|
+
core.$YatspNanoID.init(inst, def);
|
|
131
|
+
YatspMiniStringFormat.init(inst, def);
|
|
132
|
+
});
|
|
133
|
+
// @__NO_SIDE_EFFECTS__
|
|
134
|
+
export function nanoid(params) {
|
|
135
|
+
return core._nanoid(YatspMiniNanoID, params);
|
|
136
|
+
}
|
|
137
|
+
/**
|
|
138
|
+
* @deprecated CUID v1 is deprecated by its authors due to information leakage
|
|
139
|
+
* (timestamps embedded in the id). Use {@link YatspMiniCUID2} instead.
|
|
140
|
+
* See https://github.com/paralleldrive/cuid.
|
|
141
|
+
*/
|
|
142
|
+
export const YatspMiniCUID = /*@__PURE__*/ core.$constructor("YatspMiniCUID", (inst, def) => {
|
|
143
|
+
core.$YatspCUID.init(inst, def);
|
|
144
|
+
YatspMiniStringFormat.init(inst, def);
|
|
145
|
+
});
|
|
146
|
+
/**
|
|
147
|
+
* Validates a CUID v1 string.
|
|
148
|
+
*
|
|
149
|
+
* @deprecated CUID v1 is deprecated by its authors due to information leakage
|
|
150
|
+
* (timestamps embedded in the id). Use {@link cuid2 | `z.cuid2()`} instead.
|
|
151
|
+
* See https://github.com/paralleldrive/cuid.
|
|
152
|
+
*/
|
|
153
|
+
// @__NO_SIDE_EFFECTS__
|
|
154
|
+
export function cuid(params) {
|
|
155
|
+
return core._cuid(YatspMiniCUID, params);
|
|
156
|
+
}
|
|
157
|
+
export const YatspMiniCUID2 = /*@__PURE__*/ core.$constructor("YatspMiniCUID2", (inst, def) => {
|
|
158
|
+
core.$YatspCUID2.init(inst, def);
|
|
159
|
+
YatspMiniStringFormat.init(inst, def);
|
|
160
|
+
});
|
|
161
|
+
// @__NO_SIDE_EFFECTS__
|
|
162
|
+
export function cuid2(params) {
|
|
163
|
+
return core._cuid2(YatspMiniCUID2, params);
|
|
164
|
+
}
|
|
165
|
+
export const YatspMiniULID = /*@__PURE__*/ core.$constructor("YatspMiniULID", (inst, def) => {
|
|
166
|
+
core.$YatspULID.init(inst, def);
|
|
167
|
+
YatspMiniStringFormat.init(inst, def);
|
|
168
|
+
});
|
|
169
|
+
// @__NO_SIDE_EFFECTS__
|
|
170
|
+
export function ulid(params) {
|
|
171
|
+
return core._ulid(YatspMiniULID, params);
|
|
172
|
+
}
|
|
173
|
+
export const YatspMiniXID = /*@__PURE__*/ core.$constructor("YatspMiniXID", (inst, def) => {
|
|
174
|
+
core.$YatspXID.init(inst, def);
|
|
175
|
+
YatspMiniStringFormat.init(inst, def);
|
|
176
|
+
});
|
|
177
|
+
// @__NO_SIDE_EFFECTS__
|
|
178
|
+
export function xid(params) {
|
|
179
|
+
return core._xid(YatspMiniXID, params);
|
|
180
|
+
}
|
|
181
|
+
export const YatspMiniKSUID = /*@__PURE__*/ core.$constructor("YatspMiniKSUID", (inst, def) => {
|
|
182
|
+
core.$YatspKSUID.init(inst, def);
|
|
183
|
+
YatspMiniStringFormat.init(inst, def);
|
|
184
|
+
});
|
|
185
|
+
// @__NO_SIDE_EFFECTS__
|
|
186
|
+
export function ksuid(params) {
|
|
187
|
+
return core._ksuid(YatspMiniKSUID, params);
|
|
188
|
+
}
|
|
189
|
+
export const YatspMiniIPv4 = /*@__PURE__*/ core.$constructor("YatspMiniIPv4", (inst, def) => {
|
|
190
|
+
core.$YatspIPv4.init(inst, def);
|
|
191
|
+
YatspMiniStringFormat.init(inst, def);
|
|
192
|
+
});
|
|
193
|
+
// @__NO_SIDE_EFFECTS__
|
|
194
|
+
export function ipv4(params) {
|
|
195
|
+
return core._ipv4(YatspMiniIPv4, params);
|
|
196
|
+
}
|
|
197
|
+
export const YatspMiniIPv6 = /*@__PURE__*/ core.$constructor("YatspMiniIPv6", (inst, def) => {
|
|
198
|
+
core.$YatspIPv6.init(inst, def);
|
|
199
|
+
YatspMiniStringFormat.init(inst, def);
|
|
200
|
+
});
|
|
201
|
+
// @__NO_SIDE_EFFECTS__
|
|
202
|
+
export function ipv6(params) {
|
|
203
|
+
return core._ipv6(YatspMiniIPv6, params);
|
|
204
|
+
}
|
|
205
|
+
export const YatspMiniCIDRv4 = /*@__PURE__*/ core.$constructor("YatspMiniCIDRv4", (inst, def) => {
|
|
206
|
+
core.$YatspCIDRv4.init(inst, def);
|
|
207
|
+
YatspMiniStringFormat.init(inst, def);
|
|
208
|
+
});
|
|
209
|
+
// @__NO_SIDE_EFFECTS__
|
|
210
|
+
export function cidrv4(params) {
|
|
211
|
+
return core._cidrv4(YatspMiniCIDRv4, params);
|
|
212
|
+
}
|
|
213
|
+
export const YatspMiniCIDRv6 = /*@__PURE__*/ core.$constructor("YatspMiniCIDRv6", (inst, def) => {
|
|
214
|
+
core.$YatspCIDRv6.init(inst, def);
|
|
215
|
+
YatspMiniStringFormat.init(inst, def);
|
|
216
|
+
});
|
|
217
|
+
// @__NO_SIDE_EFFECTS__
|
|
218
|
+
export function cidrv6(params) {
|
|
219
|
+
return core._cidrv6(YatspMiniCIDRv6, params);
|
|
220
|
+
}
|
|
221
|
+
export const YatspMiniMAC = /*@__PURE__*/ core.$constructor("YatspMiniMAC", (inst, def) => {
|
|
222
|
+
core.$YatspMAC.init(inst, def);
|
|
223
|
+
YatspMiniStringFormat.init(inst, def);
|
|
224
|
+
});
|
|
225
|
+
// @__NO_SIDE_EFFECTS__
|
|
226
|
+
export function mac(params) {
|
|
227
|
+
return core._mac(YatspMiniMAC, params);
|
|
228
|
+
}
|
|
229
|
+
export const YatspMiniBase64 = /*@__PURE__*/ core.$constructor("YatspMiniBase64", (inst, def) => {
|
|
230
|
+
core.$YatspBase64.init(inst, def);
|
|
231
|
+
YatspMiniStringFormat.init(inst, def);
|
|
232
|
+
});
|
|
233
|
+
// @__NO_SIDE_EFFECTS__
|
|
234
|
+
export function base64(params) {
|
|
235
|
+
return core._base64(YatspMiniBase64, params);
|
|
236
|
+
}
|
|
237
|
+
export const YatspMiniBase64URL = /*@__PURE__*/ core.$constructor("YatspMiniBase64URL", (inst, def) => {
|
|
238
|
+
core.$YatspBase64URL.init(inst, def);
|
|
239
|
+
YatspMiniStringFormat.init(inst, def);
|
|
240
|
+
});
|
|
241
|
+
// @__NO_SIDE_EFFECTS__
|
|
242
|
+
export function base64url(params) {
|
|
243
|
+
return core._base64url(YatspMiniBase64URL, params);
|
|
244
|
+
}
|
|
245
|
+
export const YatspMiniE164 = /*@__PURE__*/ core.$constructor("YatspMiniE164", (inst, def) => {
|
|
246
|
+
core.$YatspE164.init(inst, def);
|
|
247
|
+
YatspMiniStringFormat.init(inst, def);
|
|
248
|
+
});
|
|
249
|
+
// @__NO_SIDE_EFFECTS__
|
|
250
|
+
export function e164(params) {
|
|
251
|
+
return core._e164(YatspMiniE164, params);
|
|
252
|
+
}
|
|
253
|
+
export const YatspMiniCreditCard = /*@__PURE__*/ core.$constructor("YatspMiniCreditCard", (inst, def) => {
|
|
254
|
+
core.$YatspCreditCard.init(inst, def);
|
|
255
|
+
YatspMiniStringFormat.init(inst, def);
|
|
256
|
+
});
|
|
257
|
+
// @__NO_SIDE_EFFECTS__
|
|
258
|
+
export function creditCard(params) {
|
|
259
|
+
return core._creditCard(YatspMiniCreditCard, params);
|
|
260
|
+
}
|
|
261
|
+
export const YatspMiniIBAN = /*@__PURE__*/ core.$constructor("YatspMiniIBAN", (inst, def) => {
|
|
262
|
+
core.$YatspIBAN.init(inst, def);
|
|
263
|
+
YatspMiniStringFormat.init(inst, def);
|
|
264
|
+
});
|
|
265
|
+
// @__NO_SIDE_EFFECTS__
|
|
266
|
+
export function iban(params) {
|
|
267
|
+
return core._iban(YatspMiniIBAN, params);
|
|
268
|
+
}
|
|
269
|
+
export const YatspMiniJWT = /*@__PURE__*/ core.$constructor("YatspMiniJWT", (inst, def) => {
|
|
270
|
+
core.$YatspJWT.init(inst, def);
|
|
271
|
+
YatspMiniStringFormat.init(inst, def);
|
|
272
|
+
});
|
|
273
|
+
// @__NO_SIDE_EFFECTS__
|
|
274
|
+
export function jwt(params) {
|
|
275
|
+
return core._jwt(YatspMiniJWT, params);
|
|
276
|
+
}
|
|
277
|
+
export const YatspMiniCustomStringFormat =
|
|
278
|
+
/*@__PURE__*/ core.$constructor("YatspMiniCustomStringFormat", (inst, def) => {
|
|
279
|
+
core.$YatspCustomStringFormat.init(inst, def);
|
|
280
|
+
YatspMiniStringFormat.init(inst, def);
|
|
281
|
+
});
|
|
282
|
+
// @__NO_SIDE_EFFECTS__
|
|
283
|
+
export function stringFormat(format, fnOrRegex, _params = {}) {
|
|
284
|
+
return core._stringFormat(YatspMiniCustomStringFormat, format, fnOrRegex, _params);
|
|
285
|
+
}
|
|
286
|
+
// @__NO_SIDE_EFFECTS__
|
|
287
|
+
export function hostname(_params) {
|
|
288
|
+
return core._stringFormat(YatspMiniCustomStringFormat, "hostname", regexes.hostname, _params);
|
|
289
|
+
}
|
|
290
|
+
// @__NO_SIDE_EFFECTS__
|
|
291
|
+
export function hex(_params) {
|
|
292
|
+
return core._stringFormat(YatspMiniCustomStringFormat, "hex", regexes.hex, _params);
|
|
293
|
+
}
|
|
294
|
+
// @__NO_SIDE_EFFECTS__
|
|
295
|
+
export function currencyCode(_params) {
|
|
296
|
+
return core._stringFormat(YatspMiniCustomStringFormat, "currency_code", regexes.currencyCode, _params);
|
|
297
|
+
}
|
|
298
|
+
// @__NO_SIDE_EFFECTS__
|
|
299
|
+
export function hash(alg, params) {
|
|
300
|
+
const enc = params?.enc ?? "hex";
|
|
301
|
+
const format = `${alg}_${enc}`;
|
|
302
|
+
const regex = core.regexes[format];
|
|
303
|
+
// check for unrecognized format
|
|
304
|
+
if (!regex)
|
|
305
|
+
throw new Error(`Unrecognized hash format: ${format}`);
|
|
306
|
+
return core._stringFormat(YatspMiniCustomStringFormat, format, regex, params);
|
|
307
|
+
}
|
|
308
|
+
export const YatspMiniNumber = /*@__PURE__*/ core.$constructor("YatspMiniNumber", (inst, def) => {
|
|
309
|
+
core.$YatspNumber.init(inst, def);
|
|
310
|
+
YatspMiniType.init(inst, def);
|
|
311
|
+
});
|
|
312
|
+
// @__NO_SIDE_EFFECTS__
|
|
313
|
+
export function number(params) {
|
|
314
|
+
return core._number(YatspMiniNumber, params);
|
|
315
|
+
}
|
|
316
|
+
export const YatspMiniNumberFormat = /*@__PURE__*/ core.$constructor("YatspMiniNumberFormat", (inst, def) => {
|
|
317
|
+
core.$YatspNumberFormat.init(inst, def);
|
|
318
|
+
YatspMiniNumber.init(inst, def);
|
|
319
|
+
});
|
|
320
|
+
export function int(params) {
|
|
321
|
+
return core._int(YatspMiniNumberFormat, params);
|
|
322
|
+
}
|
|
323
|
+
export function float32(params) {
|
|
324
|
+
return core._float32(YatspMiniNumberFormat, params);
|
|
325
|
+
}
|
|
326
|
+
export function float64(params) {
|
|
327
|
+
return core._float64(YatspMiniNumberFormat, params);
|
|
328
|
+
}
|
|
329
|
+
export function int32(params) {
|
|
330
|
+
return core._int32(YatspMiniNumberFormat, params);
|
|
331
|
+
}
|
|
332
|
+
export function uint32(params) {
|
|
333
|
+
return core._uint32(YatspMiniNumberFormat, params);
|
|
334
|
+
}
|
|
335
|
+
export const YatspMiniBoolean = /*@__PURE__*/ core.$constructor("YatspMiniBoolean", (inst, def) => {
|
|
336
|
+
core.$YatspBoolean.init(inst, def);
|
|
337
|
+
YatspMiniType.init(inst, def);
|
|
338
|
+
});
|
|
339
|
+
// @__NO_SIDE_EFFECTS__
|
|
340
|
+
export function boolean(params) {
|
|
341
|
+
return core._boolean(YatspMiniBoolean, params);
|
|
342
|
+
}
|
|
343
|
+
export const YatspMiniBigInt = /*@__PURE__*/ core.$constructor("YatspMiniBigInt", (inst, def) => {
|
|
344
|
+
core.$YatspBigInt.init(inst, def);
|
|
345
|
+
YatspMiniType.init(inst, def);
|
|
346
|
+
});
|
|
347
|
+
// @__NO_SIDE_EFFECTS__
|
|
348
|
+
export function bigint(params) {
|
|
349
|
+
return core._bigint(YatspMiniBigInt, params);
|
|
350
|
+
}
|
|
351
|
+
export const YatspMiniBigIntFormat = /*@__PURE__*/ core.$constructor("YatspMiniBigIntFormat", (inst, def) => {
|
|
352
|
+
core.$YatspBigIntFormat.init(inst, def);
|
|
353
|
+
YatspMiniBigInt.init(inst, def);
|
|
354
|
+
});
|
|
355
|
+
export function int64(params) {
|
|
356
|
+
return core._int64(YatspMiniBigIntFormat, params);
|
|
357
|
+
}
|
|
358
|
+
export function uint64(params) {
|
|
359
|
+
return core._uint64(YatspMiniBigIntFormat, params);
|
|
360
|
+
}
|
|
361
|
+
export const YatspMiniSymbol = /*@__PURE__*/ core.$constructor("YatspMiniSymbol", (inst, def) => {
|
|
362
|
+
core.$YatspSymbol.init(inst, def);
|
|
363
|
+
YatspMiniType.init(inst, def);
|
|
364
|
+
});
|
|
365
|
+
// @__NO_SIDE_EFFECTS__
|
|
366
|
+
export function symbol(params) {
|
|
367
|
+
return core._symbol(YatspMiniSymbol, params);
|
|
368
|
+
}
|
|
369
|
+
export const YatspMiniUndefined = /*@__PURE__*/ core.$constructor("YatspMiniUndefined", (inst, def) => {
|
|
370
|
+
core.$YatspUndefined.init(inst, def);
|
|
371
|
+
YatspMiniType.init(inst, def);
|
|
372
|
+
});
|
|
373
|
+
// @__NO_SIDE_EFFECTS__
|
|
374
|
+
function _undefined(params) {
|
|
375
|
+
return core._undefined(YatspMiniUndefined, params);
|
|
376
|
+
}
|
|
377
|
+
export { _undefined as undefined };
|
|
378
|
+
export const YatspMiniNull = /*@__PURE__*/ core.$constructor("YatspMiniNull", (inst, def) => {
|
|
379
|
+
core.$YatspNull.init(inst, def);
|
|
380
|
+
YatspMiniType.init(inst, def);
|
|
381
|
+
});
|
|
382
|
+
// @__NO_SIDE_EFFECTS__
|
|
383
|
+
function _null(params) {
|
|
384
|
+
return core._null(YatspMiniNull, params);
|
|
385
|
+
}
|
|
386
|
+
export { _null as null };
|
|
387
|
+
export const YatspMiniAny = /*@__PURE__*/ core.$constructor("YatspMiniAny", (inst, def) => {
|
|
388
|
+
core.$YatspAny.init(inst, def);
|
|
389
|
+
YatspMiniType.init(inst, def);
|
|
390
|
+
});
|
|
391
|
+
// @__NO_SIDE_EFFECTS__
|
|
392
|
+
export function any() {
|
|
393
|
+
return core._any(YatspMiniAny);
|
|
394
|
+
}
|
|
395
|
+
export const YatspMiniUnknown = /*@__PURE__*/ core.$constructor("YatspMiniUnknown", (inst, def) => {
|
|
396
|
+
core.$YatspUnknown.init(inst, def);
|
|
397
|
+
YatspMiniType.init(inst, def);
|
|
398
|
+
});
|
|
399
|
+
// @__NO_SIDE_EFFECTS__
|
|
400
|
+
export function unknown() {
|
|
401
|
+
return core._unknown(YatspMiniUnknown);
|
|
402
|
+
}
|
|
403
|
+
export const YatspMiniNever = /*@__PURE__*/ core.$constructor("YatspMiniNever", (inst, def) => {
|
|
404
|
+
core.$YatspNever.init(inst, def);
|
|
405
|
+
YatspMiniType.init(inst, def);
|
|
406
|
+
});
|
|
407
|
+
// @__NO_SIDE_EFFECTS__
|
|
408
|
+
export function never(params) {
|
|
409
|
+
return core._never(YatspMiniNever, params);
|
|
410
|
+
}
|
|
411
|
+
export const YatspMiniVoid = /*@__PURE__*/ core.$constructor("YatspMiniVoid", (inst, def) => {
|
|
412
|
+
core.$YatspVoid.init(inst, def);
|
|
413
|
+
YatspMiniType.init(inst, def);
|
|
414
|
+
});
|
|
415
|
+
// @__NO_SIDE_EFFECTS__
|
|
416
|
+
function _void(params) {
|
|
417
|
+
return core._void(YatspMiniVoid, params);
|
|
418
|
+
}
|
|
419
|
+
export { _void as void };
|
|
420
|
+
export const YatspMiniDate = /*@__PURE__*/ core.$constructor("YatspMiniDate", (inst, def) => {
|
|
421
|
+
core.$YatspDate.init(inst, def);
|
|
422
|
+
YatspMiniType.init(inst, def);
|
|
423
|
+
});
|
|
424
|
+
// @__NO_SIDE_EFFECTS__
|
|
425
|
+
export function date(params) {
|
|
426
|
+
return core._date(YatspMiniDate, params);
|
|
427
|
+
}
|
|
428
|
+
export const YatspMiniArray = /*@__PURE__*/ core.$constructor("YatspMiniArray", (inst, def) => {
|
|
429
|
+
core.$YatspArray.init(inst, def);
|
|
430
|
+
YatspMiniType.init(inst, def);
|
|
431
|
+
});
|
|
432
|
+
// @__NO_SIDE_EFFECTS__
|
|
433
|
+
export function array(element, params) {
|
|
434
|
+
return new YatspMiniArray({
|
|
435
|
+
type: "array",
|
|
436
|
+
element: element,
|
|
437
|
+
...util.normalizeParams(params),
|
|
438
|
+
});
|
|
439
|
+
}
|
|
440
|
+
// .keyof
|
|
441
|
+
// @__NO_SIDE_EFFECTS__
|
|
442
|
+
export function keyof(schema) {
|
|
443
|
+
const shape = schema._yatsp.def.shape;
|
|
444
|
+
return _enum(Object.keys(shape));
|
|
445
|
+
}
|
|
446
|
+
export const YatspMiniObject = /*@__PURE__*/ core.$constructor("YatspMiniObject", (inst, def) => {
|
|
447
|
+
core.$YatspObject.init(inst, def);
|
|
448
|
+
YatspMiniType.init(inst, def);
|
|
449
|
+
util.installLazyProp(inst, "shape", (self) => self._yatsp.def.shape, false);
|
|
450
|
+
});
|
|
451
|
+
// @__NO_SIDE_EFFECTS__
|
|
452
|
+
export function object(shape, params) {
|
|
453
|
+
const def = {
|
|
454
|
+
type: "object",
|
|
455
|
+
shape: shape ?? {},
|
|
456
|
+
...util.normalizeParams(params),
|
|
457
|
+
};
|
|
458
|
+
return new YatspMiniObject(def);
|
|
459
|
+
}
|
|
460
|
+
// strictObject
|
|
461
|
+
// @__NO_SIDE_EFFECTS__
|
|
462
|
+
export function strictObject(shape, params) {
|
|
463
|
+
return new YatspMiniObject({
|
|
464
|
+
type: "object",
|
|
465
|
+
shape,
|
|
466
|
+
catchall: never(),
|
|
467
|
+
...util.normalizeParams(params),
|
|
468
|
+
});
|
|
469
|
+
}
|
|
470
|
+
// looseObject
|
|
471
|
+
// @__NO_SIDE_EFFECTS__
|
|
472
|
+
export function looseObject(shape, params) {
|
|
473
|
+
return new YatspMiniObject({
|
|
474
|
+
type: "object",
|
|
475
|
+
shape,
|
|
476
|
+
catchall: unknown(),
|
|
477
|
+
...util.normalizeParams(params),
|
|
478
|
+
});
|
|
479
|
+
}
|
|
480
|
+
// object methods
|
|
481
|
+
// @__NO_SIDE_EFFECTS__
|
|
482
|
+
export function extend(schema, shape) {
|
|
483
|
+
return util.extend(schema, shape);
|
|
484
|
+
}
|
|
485
|
+
// @__NO_SIDE_EFFECTS__
|
|
486
|
+
export function safeExtend(schema, shape) {
|
|
487
|
+
return util.safeExtend(schema, shape);
|
|
488
|
+
}
|
|
489
|
+
/**
|
|
490
|
+
* @deprecated Use [`z.extend(A, B.shape)`](https://yatsp.dev/api?id=extend) instead.
|
|
491
|
+
*/
|
|
492
|
+
// @__NO_SIDE_EFFECTS__
|
|
493
|
+
export function merge(a, b) {
|
|
494
|
+
return util.merge(a, b);
|
|
495
|
+
}
|
|
496
|
+
// @__NO_SIDE_EFFECTS__
|
|
497
|
+
export function pick(schema, mask) {
|
|
498
|
+
return util.pick(schema, mask);
|
|
499
|
+
}
|
|
500
|
+
// .omit
|
|
501
|
+
// @__NO_SIDE_EFFECTS__
|
|
502
|
+
export function omit(schema, mask) {
|
|
503
|
+
return util.omit(schema, mask);
|
|
504
|
+
}
|
|
505
|
+
// @__NO_SIDE_EFFECTS__
|
|
506
|
+
export function partial(schema, mask) {
|
|
507
|
+
const def = schema._yatsp.def;
|
|
508
|
+
if (def.type !== "tuple")
|
|
509
|
+
return util.partial(YatspMiniOptional, schema, mask);
|
|
510
|
+
// a refinement was authored against the full arity; partialing would run it on a shorter array
|
|
511
|
+
if (def.checks?.length)
|
|
512
|
+
throw new Error(".partial() cannot be used on tuple schemas containing refinements");
|
|
513
|
+
return util.clone(schema, {
|
|
514
|
+
...def,
|
|
515
|
+
items: def.items.map((item) => new YatspMiniOptional({ type: "optional", innerType: item })),
|
|
516
|
+
});
|
|
517
|
+
}
|
|
518
|
+
// @__NO_SIDE_EFFECTS__
|
|
519
|
+
export function exactPartial(schema, mask) {
|
|
520
|
+
return util.partial(YatspMiniExactOptional, schema, mask, "exactPartial");
|
|
521
|
+
}
|
|
522
|
+
// @__NO_SIDE_EFFECTS__
|
|
523
|
+
export function required(schema, mask) {
|
|
524
|
+
return util.required(YatspMiniNonOptional, schema, mask);
|
|
525
|
+
}
|
|
526
|
+
// @__NO_SIDE_EFFECTS__
|
|
527
|
+
export function catchall(inst, catchall) {
|
|
528
|
+
// `mergeDefs` rather than a spread: spreading reads `shape`, and resolving it can mint a whole fresh subtree
|
|
529
|
+
return inst.clone(util.mergeDefs(inst._yatsp.def, { catchall: catchall }));
|
|
530
|
+
}
|
|
531
|
+
export const YatspMiniUnion = /*@__PURE__*/ core.$constructor("YatspMiniUnion", (inst, def) => {
|
|
532
|
+
core.$YatspUnion.init(inst, def);
|
|
533
|
+
YatspMiniType.init(inst, def);
|
|
534
|
+
});
|
|
535
|
+
// @__NO_SIDE_EFFECTS__
|
|
536
|
+
export function union(options, params) {
|
|
537
|
+
return new YatspMiniUnion({
|
|
538
|
+
type: "union",
|
|
539
|
+
options: options,
|
|
540
|
+
...util.normalizeParams(params),
|
|
541
|
+
});
|
|
542
|
+
}
|
|
543
|
+
export const YatspMiniXor = /*@__PURE__*/ core.$constructor("YatspMiniXor", (inst, def) => {
|
|
544
|
+
YatspMiniUnion.init(inst, def);
|
|
545
|
+
core.$YatspXor.init(inst, def);
|
|
546
|
+
});
|
|
547
|
+
/** Creates an exclusive union (XOR) where exactly one option must match.
|
|
548
|
+
* Unlike regular unions that succeed when any option matches, xor fails if
|
|
549
|
+
* zero or more than one option matches the input. */
|
|
550
|
+
export function xor(options, params) {
|
|
551
|
+
return new YatspMiniXor({
|
|
552
|
+
type: "union",
|
|
553
|
+
options: options,
|
|
554
|
+
inclusive: false,
|
|
555
|
+
...util.normalizeParams(params),
|
|
556
|
+
});
|
|
557
|
+
}
|
|
558
|
+
export const YatspMiniDiscriminatedUnion =
|
|
559
|
+
/*@__PURE__*/ core.$constructor("YatspMiniDiscriminatedUnion", (inst, def) => {
|
|
560
|
+
core.$YatspDiscriminatedUnion.init(inst, def);
|
|
561
|
+
YatspMiniType.init(inst, def);
|
|
562
|
+
});
|
|
563
|
+
// @__NO_SIDE_EFFECTS__
|
|
564
|
+
export function discriminatedUnion(discriminator, options, params) {
|
|
565
|
+
return new YatspMiniDiscriminatedUnion({
|
|
566
|
+
type: "union",
|
|
567
|
+
options: options,
|
|
568
|
+
discriminator,
|
|
569
|
+
...util.normalizeParams(params),
|
|
570
|
+
});
|
|
571
|
+
}
|
|
572
|
+
export const YatspMiniIntersection = /*@__PURE__*/ core.$constructor("YatspMiniIntersection", (inst, def) => {
|
|
573
|
+
core.$YatspIntersection.init(inst, def);
|
|
574
|
+
YatspMiniType.init(inst, def);
|
|
575
|
+
});
|
|
576
|
+
// @__NO_SIDE_EFFECTS__
|
|
577
|
+
export function intersection(left, right) {
|
|
578
|
+
return new YatspMiniIntersection({
|
|
579
|
+
type: "intersection",
|
|
580
|
+
left: left,
|
|
581
|
+
right: right,
|
|
582
|
+
});
|
|
583
|
+
}
|
|
584
|
+
export const YatspMiniTuple = /*@__PURE__*/ core.$constructor("YatspMiniTuple", (inst, def) => {
|
|
585
|
+
core.$YatspTuple.init(inst, def);
|
|
586
|
+
YatspMiniType.init(inst, def);
|
|
587
|
+
});
|
|
588
|
+
// @__NO_SIDE_EFFECTS__
|
|
589
|
+
export function tuple(items, _paramsOrRest, _params) {
|
|
590
|
+
const hasRest = _paramsOrRest instanceof core.$YatspType;
|
|
591
|
+
const params = hasRest ? _params : _paramsOrRest;
|
|
592
|
+
const rest = hasRest ? _paramsOrRest : null;
|
|
593
|
+
return new YatspMiniTuple({
|
|
594
|
+
type: "tuple",
|
|
595
|
+
items: items,
|
|
596
|
+
rest,
|
|
597
|
+
...util.normalizeParams(params),
|
|
598
|
+
});
|
|
599
|
+
}
|
|
600
|
+
export const YatspMiniRecord = /*@__PURE__*/ core.$constructor("YatspMiniRecord", (inst, def) => {
|
|
601
|
+
core.$YatspRecord.init(inst, def);
|
|
602
|
+
YatspMiniType.init(inst, def);
|
|
603
|
+
});
|
|
604
|
+
// @__NO_SIDE_EFFECTS__
|
|
605
|
+
export function record(keyType, valueType, params) {
|
|
606
|
+
// v3-compat: z.record(valueType, params?) — defaults keyType to z.string()
|
|
607
|
+
if (!valueType || !valueType._yatsp) {
|
|
608
|
+
return new YatspMiniRecord({
|
|
609
|
+
type: "record",
|
|
610
|
+
keyType: string(),
|
|
611
|
+
valueType: keyType,
|
|
612
|
+
...util.normalizeParams(valueType),
|
|
613
|
+
});
|
|
614
|
+
}
|
|
615
|
+
return new YatspMiniRecord({
|
|
616
|
+
type: "record",
|
|
617
|
+
keyType,
|
|
618
|
+
valueType: valueType,
|
|
619
|
+
...util.normalizeParams(params),
|
|
620
|
+
});
|
|
621
|
+
}
|
|
622
|
+
// @__NO_SIDE_EFFECTS__
|
|
623
|
+
export function partialRecord(keyType, valueType, params) {
|
|
624
|
+
return new YatspMiniRecord({
|
|
625
|
+
type: "record",
|
|
626
|
+
keyType,
|
|
627
|
+
valueType: valueType,
|
|
628
|
+
...util.normalizeParams(params),
|
|
629
|
+
partial: true,
|
|
630
|
+
});
|
|
631
|
+
}
|
|
632
|
+
export function looseRecord(keyType, valueType, params) {
|
|
633
|
+
return new YatspMiniRecord({
|
|
634
|
+
type: "record",
|
|
635
|
+
keyType,
|
|
636
|
+
valueType: valueType,
|
|
637
|
+
mode: "loose",
|
|
638
|
+
...util.normalizeParams(params),
|
|
639
|
+
});
|
|
640
|
+
}
|
|
641
|
+
export const YatspMiniMap = /*@__PURE__*/ core.$constructor("YatspMiniMap", (inst, def) => {
|
|
642
|
+
core.$YatspMap.init(inst, def);
|
|
643
|
+
YatspMiniType.init(inst, def);
|
|
644
|
+
});
|
|
645
|
+
// @__NO_SIDE_EFFECTS__
|
|
646
|
+
export function map(keyType, valueType, params) {
|
|
647
|
+
return new YatspMiniMap({
|
|
648
|
+
type: "map",
|
|
649
|
+
keyType: keyType,
|
|
650
|
+
valueType: valueType,
|
|
651
|
+
...util.normalizeParams(params),
|
|
652
|
+
});
|
|
653
|
+
}
|
|
654
|
+
export const YatspMiniSet = /*@__PURE__*/ core.$constructor("YatspMiniSet", (inst, def) => {
|
|
655
|
+
core.$YatspSet.init(inst, def);
|
|
656
|
+
YatspMiniType.init(inst, def);
|
|
657
|
+
});
|
|
658
|
+
// @__NO_SIDE_EFFECTS__
|
|
659
|
+
export function set(valueType, params) {
|
|
660
|
+
return new YatspMiniSet({
|
|
661
|
+
type: "set",
|
|
662
|
+
valueType: valueType,
|
|
663
|
+
...util.normalizeParams(params),
|
|
664
|
+
});
|
|
665
|
+
}
|
|
666
|
+
export const YatspMiniEnum = /*@__PURE__*/ core.$constructor("YatspMiniEnum", (inst, def) => {
|
|
667
|
+
core.$YatspEnum.init(inst, def);
|
|
668
|
+
YatspMiniType.init(inst, def);
|
|
669
|
+
// reuse the parsed value set so a numeric TS enum's reverse-mapping keys stay out
|
|
670
|
+
inst.options = [...inst._yatsp.values];
|
|
671
|
+
});
|
|
672
|
+
// @__NO_SIDE_EFFECTS__
|
|
673
|
+
function _enum(values, params) {
|
|
674
|
+
const entries = Array.isArray(values) ? Object.fromEntries(values.map((v) => [v, v])) : values;
|
|
675
|
+
return new YatspMiniEnum({
|
|
676
|
+
type: "enum",
|
|
677
|
+
entries,
|
|
678
|
+
...util.normalizeParams(params),
|
|
679
|
+
});
|
|
680
|
+
}
|
|
681
|
+
export { _enum as enum };
|
|
682
|
+
// @__NO_SIDE_EFFECTS__
|
|
683
|
+
/** @deprecated This API has been merged into `z.enum()`. Use `z.enum()` instead.
|
|
684
|
+
*
|
|
685
|
+
* ```ts
|
|
686
|
+
* enum Colors { red, green, blue }
|
|
687
|
+
* z.enum(Colors);
|
|
688
|
+
* ```
|
|
689
|
+
*/
|
|
690
|
+
export function nativeEnum(entries, params) {
|
|
691
|
+
return new YatspMiniEnum({
|
|
692
|
+
type: "enum",
|
|
693
|
+
entries,
|
|
694
|
+
...util.normalizeParams(params),
|
|
695
|
+
});
|
|
696
|
+
}
|
|
697
|
+
export const YatspMiniLiteral = /*@__PURE__*/ core.$constructor("YatspMiniLiteral", (inst, def) => {
|
|
698
|
+
core.$YatspLiteral.init(inst, def);
|
|
699
|
+
YatspMiniType.init(inst, def);
|
|
700
|
+
});
|
|
701
|
+
// @__NO_SIDE_EFFECTS__
|
|
702
|
+
export function literal(value, params) {
|
|
703
|
+
return new YatspMiniLiteral({
|
|
704
|
+
type: "literal",
|
|
705
|
+
values: Array.isArray(value) ? value : [value],
|
|
706
|
+
...util.normalizeParams(params),
|
|
707
|
+
});
|
|
708
|
+
}
|
|
709
|
+
export const YatspMiniFile = /*@__PURE__*/ core.$constructor("YatspMiniFile", (inst, def) => {
|
|
710
|
+
core.$YatspFile.init(inst, def);
|
|
711
|
+
YatspMiniType.init(inst, def);
|
|
712
|
+
});
|
|
713
|
+
// @__NO_SIDE_EFFECTS__
|
|
714
|
+
export function file(params) {
|
|
715
|
+
return core._file(YatspMiniFile, params);
|
|
716
|
+
}
|
|
717
|
+
export const YatspMiniTransform = /*@__PURE__*/ core.$constructor("YatspMiniTransform", (inst, def) => {
|
|
718
|
+
core.$YatspTransform.init(inst, def);
|
|
719
|
+
YatspMiniType.init(inst, def);
|
|
720
|
+
});
|
|
721
|
+
// @__NO_SIDE_EFFECTS__
|
|
722
|
+
export function transform(fn) {
|
|
723
|
+
return new YatspMiniTransform({
|
|
724
|
+
type: "transform",
|
|
725
|
+
transform: fn,
|
|
726
|
+
});
|
|
727
|
+
}
|
|
728
|
+
export const YatspMiniOptional = /*@__PURE__*/ core.$constructor("YatspMiniOptional", (inst, def) => {
|
|
729
|
+
core.$YatspOptional.init(inst, def);
|
|
730
|
+
YatspMiniType.init(inst, def);
|
|
731
|
+
});
|
|
732
|
+
// @__NO_SIDE_EFFECTS__
|
|
733
|
+
export function optional(innerType) {
|
|
734
|
+
return new YatspMiniOptional({
|
|
735
|
+
type: "optional",
|
|
736
|
+
innerType: innerType,
|
|
737
|
+
});
|
|
738
|
+
}
|
|
739
|
+
export const YatspMiniExactOptional = /*@__PURE__*/ core.$constructor("YatspMiniExactOptional", (inst, def) => {
|
|
740
|
+
core.$YatspExactOptional.init(inst, def);
|
|
741
|
+
YatspMiniType.init(inst, def);
|
|
742
|
+
});
|
|
743
|
+
// @__NO_SIDE_EFFECTS__
|
|
744
|
+
export function exactOptional(innerType) {
|
|
745
|
+
return new YatspMiniExactOptional({
|
|
746
|
+
type: "optional",
|
|
747
|
+
innerType: innerType,
|
|
748
|
+
});
|
|
749
|
+
}
|
|
750
|
+
export const YatspMiniNullable = /*@__PURE__*/ core.$constructor("YatspMiniNullable", (inst, def) => {
|
|
751
|
+
core.$YatspNullable.init(inst, def);
|
|
752
|
+
YatspMiniType.init(inst, def);
|
|
753
|
+
});
|
|
754
|
+
// @__NO_SIDE_EFFECTS__
|
|
755
|
+
export function nullable(innerType) {
|
|
756
|
+
return new YatspMiniNullable({
|
|
757
|
+
type: "nullable",
|
|
758
|
+
innerType: innerType,
|
|
759
|
+
});
|
|
760
|
+
}
|
|
761
|
+
// nullish
|
|
762
|
+
// @__NO_SIDE_EFFECTS__
|
|
763
|
+
export function nullish(innerType) {
|
|
764
|
+
return optional(nullable(innerType));
|
|
765
|
+
}
|
|
766
|
+
export const YatspMiniDefault = /*@__PURE__*/ core.$constructor("YatspMiniDefault", (inst, def) => {
|
|
767
|
+
core.$YatspDefault.init(inst, def);
|
|
768
|
+
YatspMiniType.init(inst, def);
|
|
769
|
+
});
|
|
770
|
+
// @__NO_SIDE_EFFECTS__
|
|
771
|
+
export function _default(innerType, defaultValue) {
|
|
772
|
+
return new YatspMiniDefault({
|
|
773
|
+
type: "default",
|
|
774
|
+
innerType: innerType,
|
|
775
|
+
get defaultValue() {
|
|
776
|
+
return typeof defaultValue === "function" ? defaultValue() : util.shallowClone(defaultValue);
|
|
777
|
+
},
|
|
778
|
+
});
|
|
779
|
+
}
|
|
780
|
+
export const YatspMiniPrefault = /*@__PURE__*/ core.$constructor("YatspMiniPrefault", (inst, def) => {
|
|
781
|
+
core.$YatspPrefault.init(inst, def);
|
|
782
|
+
YatspMiniType.init(inst, def);
|
|
783
|
+
});
|
|
784
|
+
// @__NO_SIDE_EFFECTS__
|
|
785
|
+
export function prefault(innerType, defaultValue) {
|
|
786
|
+
return new YatspMiniPrefault({
|
|
787
|
+
type: "prefault",
|
|
788
|
+
innerType: innerType,
|
|
789
|
+
get defaultValue() {
|
|
790
|
+
return typeof defaultValue === "function" ? defaultValue() : util.shallowClone(defaultValue);
|
|
791
|
+
},
|
|
792
|
+
});
|
|
793
|
+
}
|
|
794
|
+
export const YatspMiniNonOptional = /*@__PURE__*/ core.$constructor("YatspMiniNonOptional", (inst, def) => {
|
|
795
|
+
core.$YatspNonOptional.init(inst, def);
|
|
796
|
+
YatspMiniType.init(inst, def);
|
|
797
|
+
});
|
|
798
|
+
// @__NO_SIDE_EFFECTS__
|
|
799
|
+
export function nonoptional(innerType, params) {
|
|
800
|
+
return new YatspMiniNonOptional({
|
|
801
|
+
type: "nonoptional",
|
|
802
|
+
innerType: innerType,
|
|
803
|
+
...util.normalizeParams(params),
|
|
804
|
+
});
|
|
805
|
+
}
|
|
806
|
+
export const YatspMiniSuccess = /*@__PURE__*/ core.$constructor("YatspMiniSuccess", (inst, def) => {
|
|
807
|
+
core.$YatspSuccess.init(inst, def);
|
|
808
|
+
YatspMiniType.init(inst, def);
|
|
809
|
+
});
|
|
810
|
+
// @__NO_SIDE_EFFECTS__
|
|
811
|
+
export function success(innerType) {
|
|
812
|
+
return new YatspMiniSuccess({
|
|
813
|
+
type: "success",
|
|
814
|
+
innerType: innerType,
|
|
815
|
+
});
|
|
816
|
+
}
|
|
817
|
+
export const YatspMiniCatch = /*@__PURE__*/ core.$constructor("YatspMiniCatch", (inst, def) => {
|
|
818
|
+
core.$YatspCatch.init(inst, def);
|
|
819
|
+
YatspMiniType.init(inst, def);
|
|
820
|
+
});
|
|
821
|
+
// @__NO_SIDE_EFFECTS__
|
|
822
|
+
function _catch(innerType, catchValue) {
|
|
823
|
+
return new YatspMiniCatch({
|
|
824
|
+
type: "catch",
|
|
825
|
+
innerType: innerType,
|
|
826
|
+
catchValue: (typeof catchValue === "function" ? catchValue : core.util.constantCatch(catchValue)),
|
|
827
|
+
});
|
|
828
|
+
}
|
|
829
|
+
export { _catch as catch };
|
|
830
|
+
export const YatspMiniNaN = /*@__PURE__*/ core.$constructor("YatspMiniNaN", (inst, def) => {
|
|
831
|
+
core.$YatspNaN.init(inst, def);
|
|
832
|
+
YatspMiniType.init(inst, def);
|
|
833
|
+
});
|
|
834
|
+
// @__NO_SIDE_EFFECTS__
|
|
835
|
+
export function nan(params) {
|
|
836
|
+
return core._nan(YatspMiniNaN, params);
|
|
837
|
+
}
|
|
838
|
+
export const YatspMiniPipe = /*@__PURE__*/ core.$constructor("YatspMiniPipe", (inst, def) => {
|
|
839
|
+
core.$YatspPipe.init(inst, def);
|
|
840
|
+
YatspMiniType.init(inst, def);
|
|
841
|
+
});
|
|
842
|
+
// @__NO_SIDE_EFFECTS__
|
|
843
|
+
export function pipe(in_, out) {
|
|
844
|
+
return new YatspMiniPipe({
|
|
845
|
+
type: "pipe",
|
|
846
|
+
in: in_,
|
|
847
|
+
out: out,
|
|
848
|
+
});
|
|
849
|
+
}
|
|
850
|
+
export const YatspMiniCodec = /*@__PURE__*/ core.$constructor("YatspMiniCodec", (inst, def) => {
|
|
851
|
+
YatspMiniPipe.init(inst, def);
|
|
852
|
+
core.$YatspCodec.init(inst, def);
|
|
853
|
+
});
|
|
854
|
+
// @__NO_SIDE_EFFECTS__
|
|
855
|
+
export function codec(in_, out, params) {
|
|
856
|
+
return new YatspMiniCodec({
|
|
857
|
+
type: "pipe",
|
|
858
|
+
in: in_,
|
|
859
|
+
out: out,
|
|
860
|
+
transform: params.decode,
|
|
861
|
+
reverseTransform: params.encode,
|
|
862
|
+
});
|
|
863
|
+
}
|
|
864
|
+
// @__NO_SIDE_EFFECTS__
|
|
865
|
+
export function invertCodec(codec) {
|
|
866
|
+
const def = codec._yatsp.def;
|
|
867
|
+
return new YatspMiniCodec({
|
|
868
|
+
type: "pipe",
|
|
869
|
+
in: def.out,
|
|
870
|
+
out: def.in,
|
|
871
|
+
transform: def.reverseTransform,
|
|
872
|
+
reverseTransform: def.transform,
|
|
873
|
+
});
|
|
874
|
+
}
|
|
875
|
+
export const YatspMiniReadonly = /*@__PURE__*/ core.$constructor("YatspMiniReadonly", (inst, def) => {
|
|
876
|
+
core.$YatspReadonly.init(inst, def);
|
|
877
|
+
YatspMiniType.init(inst, def);
|
|
878
|
+
});
|
|
879
|
+
// @__NO_SIDE_EFFECTS__
|
|
880
|
+
export function readonly(innerType) {
|
|
881
|
+
return new YatspMiniReadonly({
|
|
882
|
+
type: "readonly",
|
|
883
|
+
innerType: innerType,
|
|
884
|
+
});
|
|
885
|
+
}
|
|
886
|
+
export const YatspMiniTemplateLiteral = /*@__PURE__*/ core.$constructor("YatspMiniTemplateLiteral", (inst, def) => {
|
|
887
|
+
core.$YatspTemplateLiteral.init(inst, def);
|
|
888
|
+
YatspMiniType.init(inst, def);
|
|
889
|
+
});
|
|
890
|
+
// @__NO_SIDE_EFFECTS__
|
|
891
|
+
export function templateLiteral(parts, params) {
|
|
892
|
+
return new YatspMiniTemplateLiteral({
|
|
893
|
+
type: "template_literal",
|
|
894
|
+
parts,
|
|
895
|
+
...util.normalizeParams(params),
|
|
896
|
+
});
|
|
897
|
+
}
|
|
898
|
+
export const YatspMiniLazy = /*@__PURE__*/ core.$constructor("YatspMiniLazy", (inst, def) => {
|
|
899
|
+
core.$YatspLazy.init(inst, def);
|
|
900
|
+
YatspMiniType.init(inst, def);
|
|
901
|
+
});
|
|
902
|
+
// export function lazy<T extends object>(getter: () => T): T {
|
|
903
|
+
// return util.createTransparentProxy<T>(getter);
|
|
904
|
+
// }
|
|
905
|
+
// @__NO_SIDE_EFFECTS__
|
|
906
|
+
function _lazy(getter) {
|
|
907
|
+
return new YatspMiniLazy({
|
|
908
|
+
type: "lazy",
|
|
909
|
+
getter: getter,
|
|
910
|
+
});
|
|
911
|
+
}
|
|
912
|
+
export { _lazy as lazy };
|
|
913
|
+
export const YatspMiniPromise = /*@__PURE__*/ core.$constructor("YatspMiniPromise", (inst, def) => {
|
|
914
|
+
core.$YatspPromise.init(inst, def);
|
|
915
|
+
YatspMiniType.init(inst, def);
|
|
916
|
+
});
|
|
917
|
+
// @__NO_SIDE_EFFECTS__
|
|
918
|
+
export function promise(innerType) {
|
|
919
|
+
return new YatspMiniPromise({
|
|
920
|
+
type: "promise",
|
|
921
|
+
innerType: innerType,
|
|
922
|
+
});
|
|
923
|
+
}
|
|
924
|
+
export const YatspMiniCustom = /*@__PURE__*/ core.$constructor("YatspMiniCustom", (inst, def) => {
|
|
925
|
+
core.$YatspCustom.init(inst, def);
|
|
926
|
+
YatspMiniType.init(inst, def);
|
|
927
|
+
});
|
|
928
|
+
// custom checks
|
|
929
|
+
// @__NO_SIDE_EFFECTS__
|
|
930
|
+
export function check(fn, params) {
|
|
931
|
+
const ch = new core.$YatspCheck({
|
|
932
|
+
check: "custom",
|
|
933
|
+
...util.normalizeParams(params),
|
|
934
|
+
});
|
|
935
|
+
ch._yatsp.check = fn;
|
|
936
|
+
return ch;
|
|
937
|
+
}
|
|
938
|
+
// YatspCustom custom schema
|
|
939
|
+
// @__NO_SIDE_EFFECTS__
|
|
940
|
+
export function custom(fn, _params) {
|
|
941
|
+
return core._custom(YatspMiniCustom, fn ?? (() => true), _params);
|
|
942
|
+
}
|
|
943
|
+
// refine
|
|
944
|
+
// @__NO_SIDE_EFFECTS__
|
|
945
|
+
export function refine(fn, _params = {}) {
|
|
946
|
+
return core._refine(YatspMiniCustom, fn, _params);
|
|
947
|
+
}
|
|
948
|
+
// superRefine
|
|
949
|
+
// @__NO_SIDE_EFFECTS__
|
|
950
|
+
export function superRefine(fn, params) {
|
|
951
|
+
return core._superRefine(fn, params);
|
|
952
|
+
}
|
|
953
|
+
// Re-export describe and meta from core
|
|
954
|
+
export const describe = core.describe;
|
|
955
|
+
export const meta = core.meta;
|
|
956
|
+
// instanceof
|
|
957
|
+
class Class {
|
|
958
|
+
constructor(..._args) { }
|
|
959
|
+
}
|
|
960
|
+
// @__NO_SIDE_EFFECTS__
|
|
961
|
+
function _instanceof(cls, params = {}) {
|
|
962
|
+
const inst = custom((data) => data instanceof cls, params);
|
|
963
|
+
inst._yatsp.bag.Class = cls;
|
|
964
|
+
// Override check to emit invalid_type instead of custom
|
|
965
|
+
inst._yatsp.check = (payload) => {
|
|
966
|
+
if (!(payload.value instanceof cls)) {
|
|
967
|
+
payload.issues.push({
|
|
968
|
+
code: "invalid_type",
|
|
969
|
+
expected: cls.name,
|
|
970
|
+
input: payload.value,
|
|
971
|
+
inst,
|
|
972
|
+
path: [...(inst._yatsp.def.path ?? [])],
|
|
973
|
+
});
|
|
974
|
+
}
|
|
975
|
+
};
|
|
976
|
+
return inst;
|
|
977
|
+
}
|
|
978
|
+
export { _instanceof as instanceof };
|
|
979
|
+
// stringbool
|
|
980
|
+
export const stringbool = (...args) => core._stringbool({
|
|
981
|
+
Codec: YatspMiniCodec,
|
|
982
|
+
Boolean: YatspMiniBoolean,
|
|
983
|
+
String: YatspMiniString,
|
|
984
|
+
}, ...args);
|
|
985
|
+
// @__NO_SIDE_EFFECTS__
|
|
986
|
+
export function json() {
|
|
987
|
+
const jsonSchema = _lazy(() => {
|
|
988
|
+
return union([string(), number(), boolean(), _null(), array(jsonSchema), record(string(), jsonSchema)]);
|
|
989
|
+
});
|
|
990
|
+
return jsonSchema;
|
|
991
|
+
}
|
|
992
|
+
export const YatspMiniFunction = /*@__PURE__*/ core.$constructor("YatspMiniFunction", (inst, def) => {
|
|
993
|
+
core.$YatspFunction.init(inst, def);
|
|
994
|
+
YatspMiniType.init(inst, def);
|
|
995
|
+
});
|
|
996
|
+
// @__NO_SIDE_EFFECTS__
|
|
997
|
+
export function _function(params) {
|
|
998
|
+
return new YatspMiniFunction({
|
|
999
|
+
type: "function",
|
|
1000
|
+
input: Array.isArray(params?.input) ? tuple(params?.input) : (params?.input ?? array(unknown())),
|
|
1001
|
+
output: params?.output ?? unknown(),
|
|
1002
|
+
});
|
|
1003
|
+
}
|
|
1004
|
+
export { _function as function };
|