@es-joy/jsoe 0.24.2 → 0.25.0
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/.claude/settings.local.json +9 -0
- package/.ncurc.cjs +2 -2
- package/CHANGES.md +51 -0
- package/README.md +23 -13
- package/badges/coverage-badge.svg +1 -1
- package/dist/eslint.config.d.ts +3 -0
- package/dist/eslint.config.d.ts.map +1 -0
- package/dist/formatAndTypeChoices.d.ts +28 -30
- package/dist/formatAndTypeChoices.d.ts.map +1 -1
- package/dist/formats/indexedDBKey.d.ts.map +1 -1
- package/dist/formats/schema.d.ts +46 -3
- package/dist/formats/schema.d.ts.map +1 -1
- package/dist/formats/structuredCloning.d.ts +3 -0
- package/dist/formats/structuredCloning.d.ts.map +1 -1
- package/dist/formats.d.ts +24 -6
- package/dist/formats.d.ts.map +1 -1
- package/dist/fundamentalTypes/BooleanObjectType.d.ts.map +1 -1
- package/dist/fundamentalTypes/NumberObjectType.d.ts.map +1 -1
- package/dist/fundamentalTypes/StringObjectType.d.ts.map +1 -1
- package/dist/fundamentalTypes/arrayReferenceType.d.ts.map +1 -1
- package/dist/fundamentalTypes/arrayType.d.ts +7 -0
- package/dist/fundamentalTypes/arrayType.d.ts.map +1 -1
- package/dist/fundamentalTypes/bigintObjectType.d.ts.map +1 -1
- package/dist/fundamentalTypes/bigintType.d.ts +10 -0
- package/dist/fundamentalTypes/bigintType.d.ts.map +1 -1
- package/dist/fundamentalTypes/blobType.d.ts.map +1 -1
- package/dist/fundamentalTypes/booleanType.d.ts.map +1 -1
- package/dist/fundamentalTypes/catchType.d.ts +2 -2
- package/dist/fundamentalTypes/catchType.d.ts.map +1 -1
- package/dist/fundamentalTypes/dateType.d.ts.map +1 -1
- package/dist/fundamentalTypes/domexceptionType.d.ts.map +1 -1
- package/dist/fundamentalTypes/enumType.d.ts +2 -2
- package/dist/fundamentalTypes/enumType.d.ts.map +1 -1
- package/dist/fundamentalTypes/errorType.d.ts.map +1 -1
- package/dist/fundamentalTypes/fileType.d.ts +6 -0
- package/dist/fundamentalTypes/fileType.d.ts.map +1 -1
- package/dist/fundamentalTypes/functionType.d.ts.map +1 -1
- package/dist/fundamentalTypes/literalType.d.ts +3 -2
- package/dist/fundamentalTypes/literalType.d.ts.map +1 -1
- package/dist/fundamentalTypes/looseRecordType.d.ts +6 -0
- package/dist/fundamentalTypes/looseRecordType.d.ts.map +1 -0
- package/dist/fundamentalTypes/nanType.d.ts.map +1 -1
- package/dist/fundamentalTypes/neverType.d.ts +2 -2
- package/dist/fundamentalTypes/neverType.d.ts.map +1 -1
- package/dist/fundamentalTypes/noneditableType.d.ts.map +1 -1
- package/dist/fundamentalTypes/nullType.d.ts.map +1 -1
- package/dist/fundamentalTypes/numberType.d.ts.map +1 -1
- package/dist/fundamentalTypes/promiseType.d.ts.map +1 -1
- package/dist/fundamentalTypes/regexpType.d.ts.map +1 -1
- package/dist/fundamentalTypes/stringType.d.ts.map +1 -1
- package/dist/fundamentalTypes/symbolType.d.ts.map +1 -1
- package/dist/fundamentalTypes/undefinedType.d.ts.map +1 -1
- package/dist/fundamentalTypes/voidType.d.ts +2 -2
- package/dist/fundamentalTypes/voidType.d.ts.map +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +6 -1
- package/dist/index.js.map +1 -1
- package/dist/rollup.config.d.ts +30 -0
- package/dist/rollup.config.d.ts.map +1 -0
- package/dist/server.d.ts +2 -0
- package/dist/server.d.ts.map +1 -0
- package/dist/src/formatAndTypeChoices.d.ts +108 -0
- package/dist/src/formatAndTypeChoices.d.ts.map +1 -0
- package/dist/src/formats/arbitraryJS.d.ts +4 -0
- package/dist/src/formats/arbitraryJS.d.ts.map +1 -0
- package/dist/src/formats/indexedDBKey.d.ts +4 -0
- package/dist/src/formats/indexedDBKey.d.ts.map +1 -0
- package/dist/src/formats/json.d.ts +4 -0
- package/dist/src/formats/json.d.ts.map +1 -0
- package/dist/src/formats/schema.d.ts +17 -0
- package/dist/src/formats/schema.d.ts.map +1 -0
- package/dist/src/formats/structuredCloning.d.ts +19 -0
- package/dist/src/formats/structuredCloning.d.ts.map +1 -0
- package/dist/src/formats.d.ts +135 -0
- package/dist/src/formats.d.ts.map +1 -0
- package/dist/src/fundamentalTypes/BooleanObjectType.d.ts +8 -0
- package/dist/src/fundamentalTypes/BooleanObjectType.d.ts.map +1 -0
- package/dist/src/fundamentalTypes/NumberObjectType.d.ts +6 -0
- package/dist/src/fundamentalTypes/NumberObjectType.d.ts.map +1 -0
- package/dist/src/fundamentalTypes/StringObjectType.d.ts +6 -0
- package/dist/src/fundamentalTypes/StringObjectType.d.ts.map +1 -0
- package/dist/src/fundamentalTypes/arrayReferenceType.d.ts +8 -0
- package/dist/src/fundamentalTypes/arrayReferenceType.d.ts.map +1 -0
- package/dist/src/fundamentalTypes/arrayType.d.ts +29 -0
- package/dist/src/fundamentalTypes/arrayType.d.ts.map +1 -0
- package/dist/src/fundamentalTypes/bigintObjectType.d.ts +6 -0
- package/dist/src/fundamentalTypes/bigintObjectType.d.ts.map +1 -0
- package/dist/src/fundamentalTypes/bigintType.d.ts +6 -0
- package/dist/src/fundamentalTypes/bigintType.d.ts.map +1 -0
- package/dist/src/fundamentalTypes/blobType.d.ts +11 -0
- package/dist/src/fundamentalTypes/blobType.d.ts.map +1 -0
- package/dist/src/fundamentalTypes/booleanType.d.ts +8 -0
- package/dist/src/fundamentalTypes/booleanType.d.ts.map +1 -0
- package/dist/src/fundamentalTypes/catchType.d.ts +6 -0
- package/dist/src/fundamentalTypes/catchType.d.ts.map +1 -0
- package/dist/src/fundamentalTypes/dateType.d.ts +26 -0
- package/dist/src/fundamentalTypes/dateType.d.ts.map +1 -0
- package/dist/src/fundamentalTypes/domexceptionType.d.ts +6 -0
- package/dist/src/fundamentalTypes/domexceptionType.d.ts.map +1 -0
- package/dist/src/fundamentalTypes/enumType.d.ts +6 -0
- package/dist/src/fundamentalTypes/enumType.d.ts.map +1 -0
- package/dist/src/fundamentalTypes/errorType.d.ts +6 -0
- package/dist/src/fundamentalTypes/errorType.d.ts.map +1 -0
- package/dist/src/fundamentalTypes/fileType.d.ts +13 -0
- package/dist/src/fundamentalTypes/fileType.d.ts.map +1 -0
- package/dist/src/fundamentalTypes/filelistType.d.ts +6 -0
- package/dist/src/fundamentalTypes/filelistType.d.ts.map +1 -0
- package/dist/src/fundamentalTypes/functionType.d.ts +7 -0
- package/dist/src/fundamentalTypes/functionType.d.ts.map +1 -0
- package/dist/src/fundamentalTypes/literalType.d.ts +6 -0
- package/dist/src/fundamentalTypes/literalType.d.ts.map +1 -0
- package/dist/src/fundamentalTypes/mapType.d.ts +6 -0
- package/dist/src/fundamentalTypes/mapType.d.ts.map +1 -0
- package/dist/src/fundamentalTypes/nanType.d.ts +6 -0
- package/dist/src/fundamentalTypes/nanType.d.ts.map +1 -0
- package/dist/src/fundamentalTypes/neverType.d.ts +6 -0
- package/dist/src/fundamentalTypes/neverType.d.ts.map +1 -0
- package/dist/src/fundamentalTypes/noneditableType.d.ts +6 -0
- package/dist/src/fundamentalTypes/noneditableType.d.ts.map +1 -0
- package/dist/src/fundamentalTypes/nullType.d.ts +6 -0
- package/dist/src/fundamentalTypes/nullType.d.ts.map +1 -0
- package/dist/src/fundamentalTypes/numberType.d.ts +6 -0
- package/dist/src/fundamentalTypes/numberType.d.ts.map +1 -0
- package/dist/src/fundamentalTypes/objectReferenceType.d.ts +8 -0
- package/dist/src/fundamentalTypes/objectReferenceType.d.ts.map +1 -0
- package/dist/src/fundamentalTypes/objectType.d.ts +6 -0
- package/dist/src/fundamentalTypes/objectType.d.ts.map +1 -0
- package/dist/src/fundamentalTypes/promiseType.d.ts +6 -0
- package/dist/src/fundamentalTypes/promiseType.d.ts.map +1 -0
- package/dist/src/fundamentalTypes/recordType.d.ts +6 -0
- package/dist/src/fundamentalTypes/recordType.d.ts.map +1 -0
- package/dist/src/fundamentalTypes/regexpType.d.ts +8 -0
- package/dist/src/fundamentalTypes/regexpType.d.ts.map +1 -0
- package/dist/src/fundamentalTypes/setType.d.ts +6 -0
- package/dist/src/fundamentalTypes/setType.d.ts.map +1 -0
- package/dist/src/fundamentalTypes/sparseUndefinedType.d.ts +6 -0
- package/dist/src/fundamentalTypes/sparseUndefinedType.d.ts.map +1 -0
- package/dist/src/fundamentalTypes/stringType.d.ts +6 -0
- package/dist/src/fundamentalTypes/stringType.d.ts.map +1 -0
- package/dist/src/fundamentalTypes/symbolType.d.ts +8 -0
- package/dist/src/fundamentalTypes/symbolType.d.ts.map +1 -0
- package/dist/src/fundamentalTypes/tupleType.d.ts +6 -0
- package/dist/src/fundamentalTypes/tupleType.d.ts.map +1 -0
- package/dist/src/fundamentalTypes/undefinedType.d.ts +6 -0
- package/dist/src/fundamentalTypes/undefinedType.d.ts.map +1 -0
- package/dist/src/fundamentalTypes/voidType.d.ts +6 -0
- package/dist/src/fundamentalTypes/voidType.d.ts.map +1 -0
- package/dist/src/index.d.ts +12 -0
- package/dist/src/index.d.ts.map +1 -0
- package/dist/src/subTypes/blobHTMLType.d.ts +20 -0
- package/dist/src/subTypes/blobHTMLType.d.ts.map +1 -0
- package/dist/src/subTypes/falseType.d.ts +8 -0
- package/dist/src/subTypes/falseType.d.ts.map +1 -0
- package/dist/src/subTypes/trueType.d.ts +8 -0
- package/dist/src/subTypes/trueType.d.ts.map +1 -0
- package/dist/src/superTypes/SpecialNumberType.d.ts +6 -0
- package/dist/src/superTypes/SpecialNumberType.d.ts.map +1 -0
- package/dist/src/superTypes/SpecialRealNumberType.d.ts +6 -0
- package/dist/src/superTypes/SpecialRealNumberType.d.ts.map +1 -0
- package/dist/src/superTypes/buffersourceType.d.ts +8 -0
- package/dist/src/superTypes/buffersourceType.d.ts.map +1 -0
- package/dist/src/superTypes/dommatrixType.d.ts +6 -0
- package/dist/src/superTypes/dommatrixType.d.ts.map +1 -0
- package/dist/src/superTypes/dompointType.d.ts +6 -0
- package/dist/src/superTypes/dompointType.d.ts.map +1 -0
- package/dist/src/superTypes/domrectType.d.ts +6 -0
- package/dist/src/superTypes/domrectType.d.ts.map +1 -0
- package/dist/src/superTypes/errorsSpecialType.d.ts +8 -0
- package/dist/src/superTypes/errorsSpecialType.d.ts.map +1 -0
- package/dist/src/typeChoices.d.ts +140 -0
- package/dist/src/typeChoices.d.ts.map +1 -0
- package/dist/src/types.d.ts +758 -0
- package/dist/src/types.d.ts.map +1 -0
- package/dist/src/utils/FileList.d.ts +26 -0
- package/dist/src/utils/FileList.d.ts.map +1 -0
- package/dist/src/utils/dialogs.d.ts +111 -0
- package/dist/src/utils/dialogs.d.ts.map +1 -0
- package/dist/src/utils/jsonPointer.d.ts +46 -0
- package/dist/src/utils/jsonPointer.d.ts.map +1 -0
- package/dist/src/utils/media.d.ts +18 -0
- package/dist/src/utils/media.d.ts.map +1 -0
- package/dist/src/utils/objects.d.ts +16 -0
- package/dist/src/utils/objects.d.ts.map +1 -0
- package/dist/src/utils/templateUtils.d.ts +59 -0
- package/dist/src/utils/templateUtils.d.ts.map +1 -0
- package/dist/src/utils/types.d.ts +2 -0
- package/dist/src/utils/types.d.ts.map +1 -0
- package/dist/src/vendor-imports.d.ts +4 -0
- package/dist/src/vendor-imports.d.ts.map +1 -0
- package/dist/subTypes/blobHTMLType.d.ts.map +1 -1
- package/dist/superTypes/SpecialRealNumberType.d.ts.map +1 -1
- package/dist/superTypes/buffersourceType.d.ts.map +1 -1
- package/dist/superTypes/dommatrixType.d.ts.map +1 -1
- package/dist/superTypes/dompointType.d.ts.map +1 -1
- package/dist/superTypes/domrectType.d.ts.map +1 -1
- package/dist/superTypes/errorsSpecialType.d.ts.map +1 -1
- package/dist/typeChoices.d.ts +21 -87
- package/dist/typeChoices.d.ts.map +1 -1
- package/dist/types.d.ts +90 -64
- package/dist/types.d.ts.map +1 -1
- package/dist/utils/FileList.d.ts +4 -3
- package/dist/utils/FileList.d.ts.map +1 -1
- package/dist/utils/dialogs.d.ts +4 -4
- package/dist/utils/dialogs.d.ts.map +1 -1
- package/dist/utils/media.d.ts.map +1 -1
- package/dist/utils/schemaMeta.d.ts +92 -0
- package/dist/utils/schemaMeta.d.ts.map +1 -0
- package/dist/utils/templateUtils.d.ts +3 -3
- package/dist/utils/templateUtils.d.ts.map +1 -1
- package/dist/utils/timing.d.ts +2 -0
- package/dist/utils/timing.d.ts.map +1 -0
- package/dist/utils/types.d.ts +1 -0
- package/dist/utils/types.d.ts.map +1 -1
- package/dist/vendor-imports.d.ts +3 -1
- package/docs/proposals/schema-meta.md +233 -0
- package/eslint.config.js +51 -4
- package/licenseInfo.json +1 -1
- package/package.json +52 -42
- package/pnpm-workspace.yaml +57 -0
- package/rollup.config.js +20 -18
- package/server.js +3 -3
- package/src/deepEqual.js +77 -66
- package/src/deepEqual.js.map +1 -1
- package/src/formatAndTypeChoices.js +62 -58
- package/src/formats/indexedDBKey.js +3 -4
- package/src/formats/schema.js +824 -475
- package/src/formats/structuredCloning.js +189 -80
- package/src/formats.js +17 -5
- package/src/fundamentalTypes/BooleanObjectType.js +4 -5
- package/src/fundamentalTypes/NumberObjectType.js +4 -4
- package/src/fundamentalTypes/StringObjectType.js +3 -4
- package/src/fundamentalTypes/arrayReferenceType.js +0 -2
- package/src/fundamentalTypes/arrayType.js +624 -389
- package/src/fundamentalTypes/bigintObjectType.js +3 -2
- package/src/fundamentalTypes/bigintType.js +79 -17
- package/src/fundamentalTypes/blobType.js +35 -35
- package/src/fundamentalTypes/booleanType.js +16 -8
- package/src/fundamentalTypes/dateType.js +6 -8
- package/src/fundamentalTypes/domexceptionType.js +5 -4
- package/src/fundamentalTypes/errorType.js +39 -32
- package/src/fundamentalTypes/fileType.js +238 -52
- package/src/fundamentalTypes/functionType.js +61 -41
- package/src/fundamentalTypes/nanType.js +5 -4
- package/src/fundamentalTypes/noneditableType.js +4 -3
- package/src/fundamentalTypes/nullType.js +3 -2
- package/src/fundamentalTypes/numberType.js +72 -20
- package/src/fundamentalTypes/promiseType.js +16 -40
- package/src/fundamentalTypes/regexpType.js +7 -13
- package/src/fundamentalTypes/stringType.js +176 -110
- package/src/fundamentalTypes/symbolType.js +3 -2
- package/src/fundamentalTypes/undefinedType.js +3 -2
- package/src/index.js +6 -5
- package/src/jsoe.css +107 -8
- package/src/subTypes/blobHTMLType.js +23 -10
- package/src/superTypes/SpecialNumberType.js +6 -6
- package/src/superTypes/SpecialRealNumberType.js +10 -9
- package/src/superTypes/buffersourceType.js +86 -75
- package/src/superTypes/dommatrixType.js +6 -5
- package/src/superTypes/dompointType.js +6 -5
- package/src/superTypes/domrectType.js +6 -5
- package/src/superTypes/errorsSpecialType.js +54 -35
- package/src/typeChoices.js +373 -53
- package/src/types.js +157 -97
- package/src/utils/FileList.js +3 -3
- package/src/utils/dialogs.js +5 -7
- package/src/utils/jsonPointer.js +1 -1
- package/src/utils/media.js +1 -0
- package/src/utils/schemaMeta.js +257 -0
- package/src/utils/templateUtils.js +3 -3
- package/src/utils/timing.js +12 -0
- package/src/utils/types.js +19 -0
- package/src/vendor-imports.js +10 -2
- package/tsconfig.json +2 -0
- package/vendor/acorn/dist/acorn.d.mts +46 -5
- package/vendor/acorn/dist/acorn.d.ts +46 -5
- package/vendor/acorn/dist/acorn.js +394 -117
- package/vendor/acorn/dist/acorn.mjs +394 -117
- package/vendor/acorn/dist/bin.js +1 -1
- package/vendor/jamilih/dist/{jml-es.js → jml.mjs} +590 -312
- package/vendor/jamilih/package.json +1 -1
- package/vendor/mime/dist/types/other.js +719 -0
- package/vendor/mime/dist/types/standard.js +366 -0
- package/vendor/typeson-registry/dist/index.js +519 -99
- package/vendor/zod/classic/checks.d.ts +1 -0
- package/vendor/zod/classic/checks.js +1 -0
- package/vendor/zod/classic/coerce.d.ts +17 -0
- package/vendor/zod/classic/coerce.js +17 -0
- package/vendor/zod/classic/compat.d.ts +48 -0
- package/vendor/zod/classic/compat.js +31 -0
- package/vendor/zod/classic/deep-partial.d.ts +14 -0
- package/vendor/zod/classic/deep-partial.js +13 -0
- package/vendor/zod/classic/errors.d.ts +29 -0
- package/vendor/zod/classic/errors.js +57 -0
- package/vendor/zod/classic/external.d.ts +19 -0
- package/vendor/zod/classic/external.js +17 -0
- package/vendor/zod/classic/from-json-schema.d.ts +12 -0
- package/vendor/zod/classic/from-json-schema.js +660 -0
- package/vendor/zod/classic/in-out.d.ts +8 -0
- package/vendor/zod/classic/in-out.js +36 -0
- package/vendor/zod/classic/index.d.ts +3 -0
- package/vendor/zod/classic/index.js +4 -0
- package/vendor/zod/classic/iso.d.ts +7 -0
- package/vendor/zod/classic/iso.js +15 -0
- package/vendor/zod/classic/package.json +7 -0
- package/vendor/zod/classic/parse.d.ts +44 -0
- package/vendor/zod/classic/parse.js +16 -0
- package/vendor/zod/classic/schemas.d.ts +802 -0
- package/vendor/zod/classic/schemas.js +1491 -0
- package/vendor/zod/core/api.d.ts +329 -0
- package/vendor/zod/core/api.js +1104 -0
- package/vendor/zod/core/checks.d.ts +278 -0
- package/vendor/zod/core/checks.js +581 -0
- package/vendor/zod/core/compile.d.ts +51 -0
- package/vendor/zod/core/compile.js +1783 -0
- package/vendor/zod/core/core.d.ts +82 -0
- package/vendor/zod/core/core.js +141 -0
- package/vendor/zod/core/doc.d.ts +16 -0
- package/vendor/zod/core/doc.js +33 -0
- package/vendor/zod/core/errors.d.ts +225 -0
- package/vendor/zod/core/errors.js +270 -0
- package/vendor/zod/core/index.d.ts +19 -0
- package/vendor/zod/core/index.js +19 -0
- package/vendor/zod/core/json-schema-generator.d.ts +65 -0
- package/vendor/zod/core/json-schema-generator.js +99 -0
- package/vendor/zod/core/json-schema-processors.d.ts +49 -0
- package/vendor/zod/core/json-schema-processors.js +747 -0
- package/vendor/zod/core/json-schema.d.ts +89 -0
- package/vendor/zod/core/memoizer.d.ts +15 -0
- package/vendor/zod/core/memoizer.js +265 -0
- package/vendor/zod/core/package.json +7 -0
- package/vendor/zod/core/parse.d.ts +52 -0
- package/vendor/zod/core/parse.js +154 -0
- package/vendor/zod/core/regexes.d.ts +87 -0
- package/vendor/zod/core/regexes.js +150 -0
- package/vendor/zod/core/registries.d.ts +35 -0
- package/vendor/zod/core/registries.js +51 -0
- package/vendor/zod/core/schemas.d.ts +1253 -0
- package/vendor/zod/core/schemas.js +2440 -0
- package/vendor/zod/core/standard-schema.d.ts +126 -0
- package/vendor/zod/core/to-json-schema.d.ts +153 -0
- package/vendor/zod/core/to-json-schema.js +650 -0
- package/vendor/zod/core/util.d.ts +257 -0
- package/vendor/zod/core/util.js +846 -0
- package/vendor/zod/core/versions.d.ts +5 -0
- package/vendor/zod/core/versions.js +5 -0
- package/vendor/zod/core/visit.d.ts +30 -0
- package/vendor/zod/core/visit.js +169 -0
- package/vendor/zod/index.d.ts +3 -0
- package/vendor/zod/index.js +4 -0
- package/vendor/zod/locales/ar.d.ts +4 -0
- package/vendor/zod/locales/ar.js +109 -0
- package/vendor/zod/locales/az.d.ts +4 -0
- package/vendor/zod/locales/az.js +108 -0
- package/vendor/zod/locales/be.d.ts +4 -0
- package/vendor/zod/locales/be.js +166 -0
- package/vendor/zod/locales/bg.d.ts +4 -0
- package/vendor/zod/locales/bg.js +123 -0
- package/vendor/zod/locales/bn.d.ts +4 -0
- package/vendor/zod/locales/bn.js +111 -0
- package/vendor/zod/locales/ca.d.ts +4 -0
- package/vendor/zod/locales/ca.js +110 -0
- package/vendor/zod/locales/ckb.d.ts +4 -0
- package/vendor/zod/locales/ckb.js +131 -0
- package/vendor/zod/locales/cs.d.ts +4 -0
- package/vendor/zod/locales/cs.js +114 -0
- package/vendor/zod/locales/da.d.ts +4 -0
- package/vendor/zod/locales/da.js +118 -0
- package/vendor/zod/locales/de.d.ts +4 -0
- package/vendor/zod/locales/de.js +111 -0
- package/vendor/zod/locales/el.d.ts +4 -0
- package/vendor/zod/locales/el.js +110 -0
- package/vendor/zod/locales/en.d.ts +4 -0
- package/vendor/zod/locales/en.js +123 -0
- package/vendor/zod/locales/eo.d.ts +4 -0
- package/vendor/zod/locales/eo.js +112 -0
- package/vendor/zod/locales/es.d.ts +4 -0
- package/vendor/zod/locales/es.js +134 -0
- package/vendor/zod/locales/fa.d.ts +4 -0
- package/vendor/zod/locales/fa.js +117 -0
- package/vendor/zod/locales/fi.d.ts +4 -0
- package/vendor/zod/locales/fi.js +115 -0
- package/vendor/zod/locales/fr-CA.d.ts +4 -0
- package/vendor/zod/locales/fr-CA.js +110 -0
- package/vendor/zod/locales/fr.d.ts +4 -0
- package/vendor/zod/locales/fr.js +127 -0
- package/vendor/zod/locales/gu.d.ts +4 -0
- package/vendor/zod/locales/gu.js +111 -0
- package/vendor/zod/locales/he.d.ts +4 -0
- package/vendor/zod/locales/he.js +219 -0
- package/vendor/zod/locales/hi.d.ts +4 -0
- package/vendor/zod/locales/hi.js +109 -0
- package/vendor/zod/locales/hr.d.ts +4 -0
- package/vendor/zod/locales/hr.js +124 -0
- package/vendor/zod/locales/hu.d.ts +4 -0
- package/vendor/zod/locales/hu.js +111 -0
- package/vendor/zod/locales/hy.d.ts +4 -0
- package/vendor/zod/locales/hy.js +156 -0
- package/vendor/zod/locales/id.d.ts +4 -0
- package/vendor/zod/locales/id.js +109 -0
- package/vendor/zod/locales/index.d.ts +62 -0
- package/vendor/zod/locales/index.js +62 -0
- package/vendor/zod/locales/is.d.ts +4 -0
- package/vendor/zod/locales/is.js +112 -0
- package/vendor/zod/locales/it.d.ts +4 -0
- package/vendor/zod/locales/it.js +111 -0
- package/vendor/zod/locales/ja.d.ts +4 -0
- package/vendor/zod/locales/ja.js +110 -0
- package/vendor/zod/locales/ka.d.ts +4 -0
- package/vendor/zod/locales/ka.js +115 -0
- package/vendor/zod/locales/kh.d.ts +5 -0
- package/vendor/zod/locales/kh.js +5 -0
- package/vendor/zod/locales/km.d.ts +4 -0
- package/vendor/zod/locales/km.js +113 -0
- package/vendor/zod/locales/kn.d.ts +4 -0
- package/vendor/zod/locales/kn.js +114 -0
- package/vendor/zod/locales/ko.d.ts +4 -0
- package/vendor/zod/locales/ko.js +114 -0
- package/vendor/zod/locales/lt.d.ts +4 -0
- package/vendor/zod/locales/lt.js +205 -0
- package/vendor/zod/locales/mk.d.ts +4 -0
- package/vendor/zod/locales/mk.js +112 -0
- package/vendor/zod/locales/ms.d.ts +4 -0
- package/vendor/zod/locales/ms.js +110 -0
- package/vendor/zod/locales/ne.d.ts +4 -0
- package/vendor/zod/locales/ne.js +109 -0
- package/vendor/zod/locales/nl.d.ts +4 -0
- package/vendor/zod/locales/nl.js +113 -0
- package/vendor/zod/locales/nn.d.ts +4 -0
- package/vendor/zod/locales/nn.js +111 -0
- package/vendor/zod/locales/no.d.ts +4 -0
- package/vendor/zod/locales/no.js +111 -0
- package/vendor/zod/locales/ota.d.ts +4 -0
- package/vendor/zod/locales/ota.js +112 -0
- package/vendor/zod/locales/package.json +7 -0
- package/vendor/zod/locales/pl.d.ts +4 -0
- package/vendor/zod/locales/pl.js +112 -0
- package/vendor/zod/locales/ps.d.ts +4 -0
- package/vendor/zod/locales/ps.js +117 -0
- package/vendor/zod/locales/pt-BR.d.ts +4 -0
- package/vendor/zod/locales/pt-BR.js +141 -0
- package/vendor/zod/locales/pt.d.ts +4 -0
- package/vendor/zod/locales/pt.js +140 -0
- package/vendor/zod/locales/ro.d.ts +4 -0
- package/vendor/zod/locales/ro.js +120 -0
- package/vendor/zod/locales/ru.d.ts +4 -0
- package/vendor/zod/locales/ru.js +166 -0
- package/vendor/zod/locales/sk.d.ts +4 -0
- package/vendor/zod/locales/sk.js +114 -0
- package/vendor/zod/locales/sl.d.ts +4 -0
- package/vendor/zod/locales/sl.js +112 -0
- package/vendor/zod/locales/sv.d.ts +4 -0
- package/vendor/zod/locales/sv.js +113 -0
- package/vendor/zod/locales/ta.d.ts +4 -0
- package/vendor/zod/locales/ta.js +113 -0
- package/vendor/zod/locales/th.d.ts +4 -0
- package/vendor/zod/locales/th.js +113 -0
- package/vendor/zod/locales/tk.d.ts +4 -0
- package/vendor/zod/locales/tk.js +105 -0
- package/vendor/zod/locales/tr.d.ts +4 -0
- package/vendor/zod/locales/tr.js +108 -0
- package/vendor/zod/locales/ua.d.ts +5 -0
- package/vendor/zod/locales/ua.js +5 -0
- package/vendor/zod/locales/uk.d.ts +4 -0
- package/vendor/zod/locales/uk.js +111 -0
- package/vendor/zod/locales/ur.d.ts +4 -0
- package/vendor/zod/locales/ur.js +113 -0
- package/vendor/zod/locales/uz.d.ts +4 -0
- package/vendor/zod/locales/uz.js +111 -0
- package/vendor/zod/locales/vi.d.ts +4 -0
- package/vendor/zod/locales/vi.js +111 -0
- package/vendor/zod/locales/yo.d.ts +4 -0
- package/vendor/zod/locales/yo.js +110 -0
- package/vendor/zod/locales/zh-CN.d.ts +4 -0
- package/vendor/zod/locales/zh-CN.js +112 -0
- package/vendor/zod/locales/zh-TW.d.ts +4 -0
- package/vendor/zod/locales/zh-TW.js +110 -0
- package/vendor/zod/mini/checks.d.ts +1 -0
- package/vendor/zod/mini/checks.js +1 -0
- package/vendor/zod/mini/coerce.d.ts +7 -0
- package/vendor/zod/mini/coerce.js +22 -0
- package/vendor/zod/mini/deep-partial.d.ts +14 -0
- package/vendor/zod/mini/deep-partial.js +13 -0
- package/vendor/zod/mini/external.d.ts +16 -0
- package/vendor/zod/mini/external.js +16 -0
- package/vendor/zod/mini/in-out.d.ts +8 -0
- package/vendor/zod/mini/in-out.js +36 -0
- package/vendor/zod/mini/index.d.ts +3 -0
- package/vendor/zod/mini/index.js +3 -0
- package/vendor/zod/mini/iso.d.ts +22 -0
- package/vendor/zod/mini/iso.js +34 -0
- package/vendor/zod/mini/package.json +7 -0
- package/vendor/zod/mini/parse.d.ts +1 -0
- package/vendor/zod/mini/parse.js +1 -0
- package/vendor/zod/mini/schemas.d.ts +475 -0
- package/vendor/zod/mini/schemas.js +987 -0
- package/vendor/zod/package.json +7 -0
- package/vendor/zodexy/dist/esm/index.js +1274 -0
- package/vendor/zodexy/dist/index.js +1088 -0
- package/vendor/zodexy/dist/schema.zodexy.json +1036 -0
- package/dist/fundamentalTypes/nativeEnumType.d.ts +0 -6
- package/dist/fundamentalTypes/nativeEnumType.d.ts.map +0 -1
- package/src/fundamentalTypes/catchType.js +0 -140
- package/src/fundamentalTypes/enumType.js +0 -52
- package/src/fundamentalTypes/literalType.js +0 -81
- package/src/fundamentalTypes/nativeEnumType.js +0 -157
- package/src/fundamentalTypes/neverType.js +0 -49
- package/src/fundamentalTypes/recordType.js +0 -42
- package/src/fundamentalTypes/tupleType.js +0 -39
- package/src/fundamentalTypes/voidType.js +0 -48
- package/vendor/zod/lib/index.mjs +0 -4236
- package/vendor/zodex/dist/esm/dezerialize.d.ts +0 -26
- package/vendor/zodex/dist/esm/dezerialize.js +0 -393
- package/vendor/zodex/dist/esm/index.d.ts +0 -9
- package/vendor/zodex/dist/esm/index.js +0 -4
- package/vendor/zodex/dist/esm/infer.d.ts +0 -29
- package/vendor/zodex/dist/esm/package.json +0 -1
- package/vendor/zodex/dist/esm/types.d.ts +0 -201
- package/vendor/zodex/dist/esm/types.js +0 -13
- package/vendor/zodex/dist/esm/ui.d.ts +0 -23
- package/vendor/zodex/dist/esm/ui.js +0 -10
- package/vendor/zodex/dist/esm/zerialize.d.ts +0 -50
- package/vendor/zodex/dist/esm/zerialize.js +0 -417
- package/vendor/zodex/dist/esm/zod-types.d.ts +0 -11
- /package/vendor/{zodex/dist/esm/infer.js → zod/core/json-schema.js} +0 -0
- /package/vendor/{zodex/dist/esm/zod-types.js → zod/core/standard-schema.js} +0 -0
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
import * as util from "../core/util.js";
|
|
2
|
+
function getRussianPlural(count, one, few, many) {
|
|
3
|
+
const absCount = Math.abs(count);
|
|
4
|
+
const lastDigit = absCount % 10;
|
|
5
|
+
const lastTwoDigits = absCount % 100;
|
|
6
|
+
if (lastTwoDigits >= 11 && lastTwoDigits <= 19) {
|
|
7
|
+
return many;
|
|
8
|
+
}
|
|
9
|
+
if (lastDigit === 1) {
|
|
10
|
+
return one;
|
|
11
|
+
}
|
|
12
|
+
if (lastDigit >= 2 && lastDigit <= 4) {
|
|
13
|
+
return few;
|
|
14
|
+
}
|
|
15
|
+
return many;
|
|
16
|
+
}
|
|
17
|
+
const error = () => {
|
|
18
|
+
const Sizable = {
|
|
19
|
+
string: {
|
|
20
|
+
unit: {
|
|
21
|
+
one: "символ",
|
|
22
|
+
few: "символа",
|
|
23
|
+
many: "символов",
|
|
24
|
+
},
|
|
25
|
+
verb: "иметь",
|
|
26
|
+
},
|
|
27
|
+
file: {
|
|
28
|
+
unit: {
|
|
29
|
+
one: "байт",
|
|
30
|
+
few: "байта",
|
|
31
|
+
many: "байт",
|
|
32
|
+
},
|
|
33
|
+
verb: "иметь",
|
|
34
|
+
},
|
|
35
|
+
array: {
|
|
36
|
+
unit: {
|
|
37
|
+
one: "элемент",
|
|
38
|
+
few: "элемента",
|
|
39
|
+
many: "элементов",
|
|
40
|
+
},
|
|
41
|
+
verb: "иметь",
|
|
42
|
+
},
|
|
43
|
+
set: {
|
|
44
|
+
unit: {
|
|
45
|
+
one: "элемент",
|
|
46
|
+
few: "элемента",
|
|
47
|
+
many: "элементов",
|
|
48
|
+
},
|
|
49
|
+
verb: "иметь",
|
|
50
|
+
},
|
|
51
|
+
map: {
|
|
52
|
+
unit: {
|
|
53
|
+
one: "элемент",
|
|
54
|
+
few: "элемента",
|
|
55
|
+
many: "элементов",
|
|
56
|
+
},
|
|
57
|
+
verb: "иметь",
|
|
58
|
+
},
|
|
59
|
+
};
|
|
60
|
+
function getSizing(origin) {
|
|
61
|
+
return Sizable[origin] ?? null;
|
|
62
|
+
}
|
|
63
|
+
const FormatDictionary = {
|
|
64
|
+
regex: "ввод",
|
|
65
|
+
email: "email адрес",
|
|
66
|
+
url: "URL",
|
|
67
|
+
emoji: "эмодзи",
|
|
68
|
+
uuid: "UUID",
|
|
69
|
+
uuidv4: "UUIDv4",
|
|
70
|
+
uuidv6: "UUIDv6",
|
|
71
|
+
nanoid: "nanoid",
|
|
72
|
+
guid: "GUID",
|
|
73
|
+
cuid: "cuid",
|
|
74
|
+
cuid2: "cuid2",
|
|
75
|
+
ulid: "ULID",
|
|
76
|
+
xid: "XID",
|
|
77
|
+
ksuid: "KSUID",
|
|
78
|
+
datetime: "ISO дата и время",
|
|
79
|
+
date: "ISO дата",
|
|
80
|
+
time: "ISO время",
|
|
81
|
+
duration: "ISO длительность",
|
|
82
|
+
ipv4: "IPv4 адрес",
|
|
83
|
+
ipv6: "IPv6 адрес",
|
|
84
|
+
mac: "MAC адрес",
|
|
85
|
+
cidrv4: "IPv4 диапазон",
|
|
86
|
+
cidrv6: "IPv6 диапазон",
|
|
87
|
+
base64: "строка в формате base64",
|
|
88
|
+
base64url: "строка в формате base64url",
|
|
89
|
+
json_string: "JSON строка",
|
|
90
|
+
e164: "номер E.164",
|
|
91
|
+
credit_card: "номер кредитной карты",
|
|
92
|
+
jwt: "JWT",
|
|
93
|
+
template_literal: "ввод",
|
|
94
|
+
};
|
|
95
|
+
const TypeDictionary = {
|
|
96
|
+
nan: "NaN",
|
|
97
|
+
number: "число",
|
|
98
|
+
array: "массив",
|
|
99
|
+
};
|
|
100
|
+
return (issue) => {
|
|
101
|
+
switch (issue.code) {
|
|
102
|
+
case "invalid_type": {
|
|
103
|
+
const expected = TypeDictionary[issue.expected] ?? issue.expected;
|
|
104
|
+
const receivedType = util.parsedType(issue.input);
|
|
105
|
+
const received = TypeDictionary[receivedType] ?? receivedType;
|
|
106
|
+
if (/^[A-Z]/.test(issue.expected)) {
|
|
107
|
+
return `Неверный ввод: ожидалось instanceof ${issue.expected}, получено ${received}`;
|
|
108
|
+
}
|
|
109
|
+
return `Неверный ввод: ожидалось ${expected}, получено ${received}`;
|
|
110
|
+
}
|
|
111
|
+
case "invalid_value":
|
|
112
|
+
if (issue.values.length === 1)
|
|
113
|
+
return `Неверный ввод: ожидалось ${util.stringifyPrimitive(issue.values[0])}`;
|
|
114
|
+
return `Неверный вариант: ожидалось одно из ${util.joinValues(issue.values, "|")}`;
|
|
115
|
+
case "too_big": {
|
|
116
|
+
const adj = issue.inclusive ? "<=" : "<";
|
|
117
|
+
const sizing = getSizing(issue.origin);
|
|
118
|
+
if (sizing) {
|
|
119
|
+
const maxValue = Number(issue.maximum);
|
|
120
|
+
const unit = getRussianPlural(maxValue, sizing.unit.one, sizing.unit.few, sizing.unit.many);
|
|
121
|
+
return `Слишком большое значение: ожидалось, что ${issue.origin ?? "значение"} будет иметь ${adj}${issue.maximum.toString()} ${unit}`;
|
|
122
|
+
}
|
|
123
|
+
return `Слишком большое значение: ожидалось, что ${issue.origin ?? "значение"} будет ${adj}${issue.maximum.toString()}`;
|
|
124
|
+
}
|
|
125
|
+
case "too_small": {
|
|
126
|
+
const adj = issue.inclusive ? ">=" : ">";
|
|
127
|
+
const sizing = getSizing(issue.origin);
|
|
128
|
+
if (sizing) {
|
|
129
|
+
const minValue = Number(issue.minimum);
|
|
130
|
+
const unit = getRussianPlural(minValue, sizing.unit.one, sizing.unit.few, sizing.unit.many);
|
|
131
|
+
return `Слишком маленькое значение: ожидалось, что ${issue.origin} будет иметь ${adj}${issue.minimum.toString()} ${unit}`;
|
|
132
|
+
}
|
|
133
|
+
return `Слишком маленькое значение: ожидалось, что ${issue.origin} будет ${adj}${issue.minimum.toString()}`;
|
|
134
|
+
}
|
|
135
|
+
case "invalid_format": {
|
|
136
|
+
const _issue = issue;
|
|
137
|
+
if (_issue.format === "starts_with")
|
|
138
|
+
return `Неверная строка: должна начинаться с "${_issue.prefix}"`;
|
|
139
|
+
if (_issue.format === "ends_with")
|
|
140
|
+
return `Неверная строка: должна заканчиваться на "${_issue.suffix}"`;
|
|
141
|
+
if (_issue.format === "includes")
|
|
142
|
+
return `Неверная строка: должна содержать "${_issue.includes}"`;
|
|
143
|
+
if (_issue.format === "regex")
|
|
144
|
+
return `Неверная строка: должна соответствовать шаблону ${_issue.pattern}`;
|
|
145
|
+
return `Неверный ${FormatDictionary[_issue.format] ?? issue.format}`;
|
|
146
|
+
}
|
|
147
|
+
case "not_multiple_of":
|
|
148
|
+
return `Неверное число: должно быть кратным ${issue.divisor}`;
|
|
149
|
+
case "unrecognized_keys":
|
|
150
|
+
return `Нераспознанн${issue.keys.length > 1 ? "ые" : "ый"} ключ${issue.keys.length > 1 ? "и" : ""}: ${util.joinValues(issue.keys, ", ")}`;
|
|
151
|
+
case "invalid_key":
|
|
152
|
+
return `Неверный ключ в ${issue.origin}`;
|
|
153
|
+
case "invalid_union":
|
|
154
|
+
return "Неверные входные данные";
|
|
155
|
+
case "invalid_element":
|
|
156
|
+
return `Неверное значение в ${issue.origin}`;
|
|
157
|
+
default:
|
|
158
|
+
return `Неверные входные данные`;
|
|
159
|
+
}
|
|
160
|
+
};
|
|
161
|
+
};
|
|
162
|
+
export default function () {
|
|
163
|
+
return {
|
|
164
|
+
localeError: error(),
|
|
165
|
+
};
|
|
166
|
+
}
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
import * as util from "../core/util.js";
|
|
2
|
+
const error = () => {
|
|
3
|
+
const Sizable = {
|
|
4
|
+
string: { unit: "znakov", verb: "mať" },
|
|
5
|
+
file: { unit: "bajtov", verb: "mať" },
|
|
6
|
+
array: { unit: "prvkov", verb: "mať" },
|
|
7
|
+
set: { unit: "prvkov", verb: "mať" },
|
|
8
|
+
map: { unit: "položiek", verb: "mať" },
|
|
9
|
+
};
|
|
10
|
+
function getSizing(origin) {
|
|
11
|
+
return Sizable[origin] ?? null;
|
|
12
|
+
}
|
|
13
|
+
const FormatDictionary = {
|
|
14
|
+
regex: "regulárny výraz",
|
|
15
|
+
email: "e-mailová adresa",
|
|
16
|
+
url: "URL",
|
|
17
|
+
emoji: "emoji",
|
|
18
|
+
uuid: "UUID",
|
|
19
|
+
uuidv4: "UUIDv4",
|
|
20
|
+
uuidv6: "UUIDv6",
|
|
21
|
+
nanoid: "nanoid",
|
|
22
|
+
guid: "GUID",
|
|
23
|
+
cuid: "cuid",
|
|
24
|
+
cuid2: "cuid2",
|
|
25
|
+
ulid: "ULID",
|
|
26
|
+
xid: "XID",
|
|
27
|
+
ksuid: "KSUID",
|
|
28
|
+
datetime: "dátum a čas vo formáte ISO",
|
|
29
|
+
date: "dátum vo formáte ISO",
|
|
30
|
+
time: "čas vo formáte ISO",
|
|
31
|
+
duration: "doba trvania ISO",
|
|
32
|
+
ipv4: "IPv4 adresa",
|
|
33
|
+
ipv6: "IPv6 adresa",
|
|
34
|
+
mac: "MAC adresa",
|
|
35
|
+
cidrv4: "rozsah IPv4",
|
|
36
|
+
cidrv6: "rozsah IPv6",
|
|
37
|
+
base64: "reťazec zakódovaný vo formáte base64",
|
|
38
|
+
base64url: "reťazec zakódovaný vo formáte base64url",
|
|
39
|
+
json_string: "reťazec vo formáte JSON",
|
|
40
|
+
e164: "číslo E.164",
|
|
41
|
+
credit_card: "číslo kreditnej karty",
|
|
42
|
+
jwt: "JWT",
|
|
43
|
+
template_literal: "vstup",
|
|
44
|
+
};
|
|
45
|
+
const TypeDictionary = {
|
|
46
|
+
nan: "NaN",
|
|
47
|
+
number: "číslo",
|
|
48
|
+
string: "reťazec",
|
|
49
|
+
function: "funkcia",
|
|
50
|
+
array: "pole",
|
|
51
|
+
};
|
|
52
|
+
return (issue) => {
|
|
53
|
+
switch (issue.code) {
|
|
54
|
+
case "invalid_type": {
|
|
55
|
+
const expected = TypeDictionary[issue.expected] ?? issue.expected;
|
|
56
|
+
const receivedType = util.parsedType(issue.input);
|
|
57
|
+
const received = TypeDictionary[receivedType] ?? receivedType;
|
|
58
|
+
if (/^[A-Z]/.test(issue.expected)) {
|
|
59
|
+
return `Neplatný vstup: očakávané instanceof ${issue.expected}, obdržané ${received}`;
|
|
60
|
+
}
|
|
61
|
+
return `Neplatný vstup: očakávané ${expected}, obdržané ${received}`;
|
|
62
|
+
}
|
|
63
|
+
case "invalid_value":
|
|
64
|
+
if (issue.values.length === 1)
|
|
65
|
+
return `Neplatný vstup: očakávané ${util.stringifyPrimitive(issue.values[0])}`;
|
|
66
|
+
return `Neplatný vstup: očakávaná jedna z hodnôt ${util.joinValues(issue.values, "|")}`;
|
|
67
|
+
case "too_big": {
|
|
68
|
+
const adj = issue.inclusive ? "<=" : "<";
|
|
69
|
+
const sizing = getSizing(issue.origin);
|
|
70
|
+
if (sizing) {
|
|
71
|
+
return `Hodnota je príliš veľká: ${issue.origin ?? "hodnota"} musí mať ${adj}${issue.maximum.toString()} ${sizing.unit ?? "prvkov"}`;
|
|
72
|
+
}
|
|
73
|
+
return `Hodnota je príliš veľká: ${issue.origin ?? "hodnota"} musí byť ${adj}${issue.maximum.toString()}`;
|
|
74
|
+
}
|
|
75
|
+
case "too_small": {
|
|
76
|
+
const adj = issue.inclusive ? ">=" : ">";
|
|
77
|
+
const sizing = getSizing(issue.origin);
|
|
78
|
+
if (sizing) {
|
|
79
|
+
return `Hodnota je príliš malá: ${issue.origin ?? "hodnota"} musí mať ${adj}${issue.minimum.toString()} ${sizing.unit ?? "prvkov"}`;
|
|
80
|
+
}
|
|
81
|
+
return `Hodnota je príliš malá: ${issue.origin ?? "hodnota"} musí byť ${adj}${issue.minimum.toString()}`;
|
|
82
|
+
}
|
|
83
|
+
case "invalid_format": {
|
|
84
|
+
const _issue = issue;
|
|
85
|
+
if (_issue.format === "starts_with")
|
|
86
|
+
return `Neplatný reťazec: musí začínať na "${_issue.prefix}"`;
|
|
87
|
+
if (_issue.format === "ends_with")
|
|
88
|
+
return `Neplatný reťazec: musí končiť na "${_issue.suffix}"`;
|
|
89
|
+
if (_issue.format === "includes")
|
|
90
|
+
return `Neplatný reťazec: musí obsahovať "${_issue.includes}"`;
|
|
91
|
+
if (_issue.format === "regex")
|
|
92
|
+
return `Neplatný reťazec: musí zodpovedať vzoru ${_issue.pattern}`;
|
|
93
|
+
return `Neplatný formát ${FormatDictionary[_issue.format] ?? issue.format}`;
|
|
94
|
+
}
|
|
95
|
+
case "not_multiple_of":
|
|
96
|
+
return `Neplatné číslo: musí byť násobkom ${issue.divisor}`;
|
|
97
|
+
case "unrecognized_keys":
|
|
98
|
+
return `Neznáme klúče: ${util.joinValues(issue.keys, ", ")}`;
|
|
99
|
+
case "invalid_key":
|
|
100
|
+
return `Neplatný klúč v ${issue.origin}`;
|
|
101
|
+
case "invalid_union":
|
|
102
|
+
return "Neplatný vstup";
|
|
103
|
+
case "invalid_element":
|
|
104
|
+
return `Neplatná hodnota v ${issue.origin}`;
|
|
105
|
+
default:
|
|
106
|
+
return `Neplatný vstup`;
|
|
107
|
+
}
|
|
108
|
+
};
|
|
109
|
+
};
|
|
110
|
+
export default function () {
|
|
111
|
+
return {
|
|
112
|
+
localeError: error(),
|
|
113
|
+
};
|
|
114
|
+
}
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
import * as util from "../core/util.js";
|
|
2
|
+
const error = () => {
|
|
3
|
+
const Sizable = {
|
|
4
|
+
string: { unit: "znakov", verb: "imeti" },
|
|
5
|
+
file: { unit: "bajtov", verb: "imeti" },
|
|
6
|
+
array: { unit: "elementov", verb: "imeti" },
|
|
7
|
+
set: { unit: "elementov", verb: "imeti" },
|
|
8
|
+
map: { unit: "elementov", verb: "imeti" },
|
|
9
|
+
};
|
|
10
|
+
function getSizing(origin) {
|
|
11
|
+
return Sizable[origin] ?? null;
|
|
12
|
+
}
|
|
13
|
+
const FormatDictionary = {
|
|
14
|
+
regex: "vnos",
|
|
15
|
+
email: "e-poštni naslov",
|
|
16
|
+
url: "URL",
|
|
17
|
+
emoji: "emoji",
|
|
18
|
+
uuid: "UUID",
|
|
19
|
+
uuidv4: "UUIDv4",
|
|
20
|
+
uuidv6: "UUIDv6",
|
|
21
|
+
nanoid: "nanoid",
|
|
22
|
+
guid: "GUID",
|
|
23
|
+
cuid: "cuid",
|
|
24
|
+
cuid2: "cuid2",
|
|
25
|
+
ulid: "ULID",
|
|
26
|
+
xid: "XID",
|
|
27
|
+
ksuid: "KSUID",
|
|
28
|
+
datetime: "ISO datum in čas",
|
|
29
|
+
date: "ISO datum",
|
|
30
|
+
time: "ISO čas",
|
|
31
|
+
duration: "ISO trajanje",
|
|
32
|
+
ipv4: "IPv4 naslov",
|
|
33
|
+
ipv6: "IPv6 naslov",
|
|
34
|
+
mac: "MAC naslov",
|
|
35
|
+
cidrv4: "obseg IPv4",
|
|
36
|
+
cidrv6: "obseg IPv6",
|
|
37
|
+
base64: "base64 kodiran niz",
|
|
38
|
+
base64url: "base64url kodiran niz",
|
|
39
|
+
json_string: "JSON niz",
|
|
40
|
+
e164: "E.164 številka",
|
|
41
|
+
credit_card: "številka kreditne kartice",
|
|
42
|
+
jwt: "JWT",
|
|
43
|
+
template_literal: "vnos",
|
|
44
|
+
};
|
|
45
|
+
const TypeDictionary = {
|
|
46
|
+
nan: "NaN",
|
|
47
|
+
number: "število",
|
|
48
|
+
array: "tabela",
|
|
49
|
+
};
|
|
50
|
+
return (issue) => {
|
|
51
|
+
switch (issue.code) {
|
|
52
|
+
case "invalid_type": {
|
|
53
|
+
const expected = TypeDictionary[issue.expected] ?? issue.expected;
|
|
54
|
+
const receivedType = util.parsedType(issue.input);
|
|
55
|
+
const received = TypeDictionary[receivedType] ?? receivedType;
|
|
56
|
+
if (/^[A-Z]/.test(issue.expected)) {
|
|
57
|
+
return `Neveljaven vnos: pričakovano instanceof ${issue.expected}, prejeto ${received}`;
|
|
58
|
+
}
|
|
59
|
+
return `Neveljaven vnos: pričakovano ${expected}, prejeto ${received}`;
|
|
60
|
+
}
|
|
61
|
+
case "invalid_value":
|
|
62
|
+
if (issue.values.length === 1)
|
|
63
|
+
return `Neveljaven vnos: pričakovano ${util.stringifyPrimitive(issue.values[0])}`;
|
|
64
|
+
return `Neveljavna možnost: pričakovano eno izmed ${util.joinValues(issue.values, "|")}`;
|
|
65
|
+
case "too_big": {
|
|
66
|
+
const adj = issue.inclusive ? "<=" : "<";
|
|
67
|
+
const sizing = getSizing(issue.origin);
|
|
68
|
+
if (sizing)
|
|
69
|
+
return `Preveliko: pričakovano, da bo ${issue.origin ?? "vrednost"} imelo ${adj}${issue.maximum.toString()} ${sizing.unit ?? "elementov"}`;
|
|
70
|
+
return `Preveliko: pričakovano, da bo ${issue.origin ?? "vrednost"} ${adj}${issue.maximum.toString()}`;
|
|
71
|
+
}
|
|
72
|
+
case "too_small": {
|
|
73
|
+
const adj = issue.inclusive ? ">=" : ">";
|
|
74
|
+
const sizing = getSizing(issue.origin);
|
|
75
|
+
if (sizing) {
|
|
76
|
+
return `Premajhno: pričakovano, da bo ${issue.origin} imelo ${adj}${issue.minimum.toString()} ${sizing.unit}`;
|
|
77
|
+
}
|
|
78
|
+
return `Premajhno: pričakovano, da bo ${issue.origin} ${adj}${issue.minimum.toString()}`;
|
|
79
|
+
}
|
|
80
|
+
case "invalid_format": {
|
|
81
|
+
const _issue = issue;
|
|
82
|
+
if (_issue.format === "starts_with") {
|
|
83
|
+
return `Neveljaven niz: mora se začeti z "${_issue.prefix}"`;
|
|
84
|
+
}
|
|
85
|
+
if (_issue.format === "ends_with")
|
|
86
|
+
return `Neveljaven niz: mora se končati z "${_issue.suffix}"`;
|
|
87
|
+
if (_issue.format === "includes")
|
|
88
|
+
return `Neveljaven niz: mora vsebovati "${_issue.includes}"`;
|
|
89
|
+
if (_issue.format === "regex")
|
|
90
|
+
return `Neveljaven niz: mora ustrezati vzorcu ${_issue.pattern}`;
|
|
91
|
+
return `Neveljaven ${FormatDictionary[_issue.format] ?? issue.format}`;
|
|
92
|
+
}
|
|
93
|
+
case "not_multiple_of":
|
|
94
|
+
return `Neveljavno število: mora biti večkratnik ${issue.divisor}`;
|
|
95
|
+
case "unrecognized_keys":
|
|
96
|
+
return `Neprepoznan${issue.keys.length > 1 ? "i ključi" : " ključ"}: ${util.joinValues(issue.keys, ", ")}`;
|
|
97
|
+
case "invalid_key":
|
|
98
|
+
return `Neveljaven ključ v ${issue.origin}`;
|
|
99
|
+
case "invalid_union":
|
|
100
|
+
return "Neveljaven vnos";
|
|
101
|
+
case "invalid_element":
|
|
102
|
+
return `Neveljavna vrednost v ${issue.origin}`;
|
|
103
|
+
default:
|
|
104
|
+
return "Neveljaven vnos";
|
|
105
|
+
}
|
|
106
|
+
};
|
|
107
|
+
};
|
|
108
|
+
export default function () {
|
|
109
|
+
return {
|
|
110
|
+
localeError: error(),
|
|
111
|
+
};
|
|
112
|
+
}
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
import * as util from "../core/util.js";
|
|
2
|
+
const error = () => {
|
|
3
|
+
const Sizable = {
|
|
4
|
+
string: { unit: "tecken", verb: "att ha" },
|
|
5
|
+
file: { unit: "bytes", verb: "att ha" },
|
|
6
|
+
array: { unit: "objekt", verb: "att innehålla" },
|
|
7
|
+
set: { unit: "objekt", verb: "att innehålla" },
|
|
8
|
+
map: { unit: "objekt", verb: "att innehålla" },
|
|
9
|
+
};
|
|
10
|
+
function getSizing(origin) {
|
|
11
|
+
return Sizable[origin] ?? null;
|
|
12
|
+
}
|
|
13
|
+
const FormatDictionary = {
|
|
14
|
+
regex: "reguljärt uttryck",
|
|
15
|
+
email: "e-postadress",
|
|
16
|
+
url: "URL",
|
|
17
|
+
emoji: "emoji",
|
|
18
|
+
uuid: "UUID",
|
|
19
|
+
uuidv4: "UUIDv4",
|
|
20
|
+
uuidv6: "UUIDv6",
|
|
21
|
+
nanoid: "nanoid",
|
|
22
|
+
guid: "GUID",
|
|
23
|
+
cuid: "cuid",
|
|
24
|
+
cuid2: "cuid2",
|
|
25
|
+
ulid: "ULID",
|
|
26
|
+
xid: "XID",
|
|
27
|
+
ksuid: "KSUID",
|
|
28
|
+
datetime: "ISO-datum och tid",
|
|
29
|
+
date: "ISO-datum",
|
|
30
|
+
time: "ISO-tid",
|
|
31
|
+
duration: "ISO-varaktighet",
|
|
32
|
+
ipv4: "IPv4-adress",
|
|
33
|
+
ipv6: "IPv6-adress",
|
|
34
|
+
mac: "MAC-adress",
|
|
35
|
+
cidrv4: "IPv4-spektrum",
|
|
36
|
+
cidrv6: "IPv6-spektrum",
|
|
37
|
+
base64: "base64-kodad sträng",
|
|
38
|
+
base64url: "base64url-kodad sträng",
|
|
39
|
+
json_string: "JSON-sträng",
|
|
40
|
+
e164: "E.164-nummer",
|
|
41
|
+
credit_card: "kreditkortsnummer",
|
|
42
|
+
jwt: "JWT",
|
|
43
|
+
template_literal: "mall-literal",
|
|
44
|
+
};
|
|
45
|
+
const TypeDictionary = {
|
|
46
|
+
nan: "NaN",
|
|
47
|
+
number: "antal",
|
|
48
|
+
array: "lista",
|
|
49
|
+
};
|
|
50
|
+
return (issue) => {
|
|
51
|
+
switch (issue.code) {
|
|
52
|
+
case "invalid_type": {
|
|
53
|
+
const expected = TypeDictionary[issue.expected] ?? issue.expected;
|
|
54
|
+
const receivedType = util.parsedType(issue.input);
|
|
55
|
+
const received = TypeDictionary[receivedType] ?? receivedType;
|
|
56
|
+
if (/^[A-Z]/.test(issue.expected)) {
|
|
57
|
+
return `Ogiltig inmatning: förväntat instanceof ${issue.expected}, fick ${received}`;
|
|
58
|
+
}
|
|
59
|
+
return `Ogiltig inmatning: förväntat ${expected}, fick ${received}`;
|
|
60
|
+
}
|
|
61
|
+
case "invalid_value":
|
|
62
|
+
if (issue.values.length === 1)
|
|
63
|
+
return `Ogiltig inmatning: förväntat ${util.stringifyPrimitive(issue.values[0])}`;
|
|
64
|
+
return `Ogiltigt val: förväntade en av ${util.joinValues(issue.values, "|")}`;
|
|
65
|
+
case "too_big": {
|
|
66
|
+
const adj = issue.inclusive ? "<=" : "<";
|
|
67
|
+
const sizing = getSizing(issue.origin);
|
|
68
|
+
if (sizing) {
|
|
69
|
+
return `För stor(t): förväntade ${issue.origin ?? "värdet"} att ha ${adj}${issue.maximum.toString()} ${sizing.unit ?? "element"}`;
|
|
70
|
+
}
|
|
71
|
+
return `För stor(t): förväntat ${issue.origin ?? "värdet"} att ha ${adj}${issue.maximum.toString()}`;
|
|
72
|
+
}
|
|
73
|
+
case "too_small": {
|
|
74
|
+
const adj = issue.inclusive ? ">=" : ">";
|
|
75
|
+
const sizing = getSizing(issue.origin);
|
|
76
|
+
if (sizing) {
|
|
77
|
+
return `För lite(t): förväntade ${issue.origin ?? "värdet"} att ha ${adj}${issue.minimum.toString()} ${sizing.unit}`;
|
|
78
|
+
}
|
|
79
|
+
return `För lite(t): förväntade ${issue.origin ?? "värdet"} att ha ${adj}${issue.minimum.toString()}`;
|
|
80
|
+
}
|
|
81
|
+
case "invalid_format": {
|
|
82
|
+
const _issue = issue;
|
|
83
|
+
if (_issue.format === "starts_with") {
|
|
84
|
+
return `Ogiltig sträng: måste börja med "${_issue.prefix}"`;
|
|
85
|
+
}
|
|
86
|
+
if (_issue.format === "ends_with")
|
|
87
|
+
return `Ogiltig sträng: måste sluta med "${_issue.suffix}"`;
|
|
88
|
+
if (_issue.format === "includes")
|
|
89
|
+
return `Ogiltig sträng: måste innehålla "${_issue.includes}"`;
|
|
90
|
+
if (_issue.format === "regex")
|
|
91
|
+
return `Ogiltig sträng: måste matcha mönstret "${_issue.pattern}"`;
|
|
92
|
+
return `Ogiltig(t) ${FormatDictionary[_issue.format] ?? issue.format}`;
|
|
93
|
+
}
|
|
94
|
+
case "not_multiple_of":
|
|
95
|
+
return `Ogiltigt tal: måste vara en multipel av ${issue.divisor}`;
|
|
96
|
+
case "unrecognized_keys":
|
|
97
|
+
return `${issue.keys.length > 1 ? "Okända nycklar" : "Okänd nyckel"}: ${util.joinValues(issue.keys, ", ")}`;
|
|
98
|
+
case "invalid_key":
|
|
99
|
+
return `Ogiltig nyckel i ${issue.origin ?? "värdet"}`;
|
|
100
|
+
case "invalid_union":
|
|
101
|
+
return "Ogiltig input";
|
|
102
|
+
case "invalid_element":
|
|
103
|
+
return `Ogiltigt värde i ${issue.origin ?? "värdet"}`;
|
|
104
|
+
default:
|
|
105
|
+
return `Ogiltig input`;
|
|
106
|
+
}
|
|
107
|
+
};
|
|
108
|
+
};
|
|
109
|
+
export default function () {
|
|
110
|
+
return {
|
|
111
|
+
localeError: error(),
|
|
112
|
+
};
|
|
113
|
+
}
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
import * as util from "../core/util.js";
|
|
2
|
+
const error = () => {
|
|
3
|
+
const Sizable = {
|
|
4
|
+
string: { unit: "எழுத்துக்கள்", verb: "கொண்டிருக்க வேண்டும்" },
|
|
5
|
+
file: { unit: "பைட்டுகள்", verb: "கொண்டிருக்க வேண்டும்" },
|
|
6
|
+
array: { unit: "உறுப்புகள்", verb: "கொண்டிருக்க வேண்டும்" },
|
|
7
|
+
set: { unit: "உறுப்புகள்", verb: "கொண்டிருக்க வேண்டும்" },
|
|
8
|
+
map: { unit: "உறுப்புகள்", verb: "கொண்டிருக்க வேண்டும்" },
|
|
9
|
+
};
|
|
10
|
+
function getSizing(origin) {
|
|
11
|
+
return Sizable[origin] ?? null;
|
|
12
|
+
}
|
|
13
|
+
const FormatDictionary = {
|
|
14
|
+
regex: "உள்ளீடு",
|
|
15
|
+
email: "மின்னஞ்சல் முகவரி",
|
|
16
|
+
url: "URL",
|
|
17
|
+
emoji: "emoji",
|
|
18
|
+
uuid: "UUID",
|
|
19
|
+
uuidv4: "UUIDv4",
|
|
20
|
+
uuidv6: "UUIDv6",
|
|
21
|
+
nanoid: "nanoid",
|
|
22
|
+
guid: "GUID",
|
|
23
|
+
cuid: "cuid",
|
|
24
|
+
cuid2: "cuid2",
|
|
25
|
+
ulid: "ULID",
|
|
26
|
+
xid: "XID",
|
|
27
|
+
ksuid: "KSUID",
|
|
28
|
+
datetime: "ISO தேதி நேரம்",
|
|
29
|
+
date: "ISO தேதி",
|
|
30
|
+
time: "ISO நேரம்",
|
|
31
|
+
duration: "ISO கால அளவு",
|
|
32
|
+
ipv4: "IPv4 முகவரி",
|
|
33
|
+
ipv6: "IPv6 முகவரி",
|
|
34
|
+
mac: "MAC முகவரி",
|
|
35
|
+
cidrv4: "IPv4 வரம்பு",
|
|
36
|
+
cidrv6: "IPv6 வரம்பு",
|
|
37
|
+
base64: "base64-encoded சரம்",
|
|
38
|
+
base64url: "base64url-encoded சரம்",
|
|
39
|
+
json_string: "JSON சரம்",
|
|
40
|
+
e164: "E.164 எண்",
|
|
41
|
+
credit_card: "கடன் அட்டை எண்",
|
|
42
|
+
jwt: "JWT",
|
|
43
|
+
template_literal: "input",
|
|
44
|
+
};
|
|
45
|
+
const TypeDictionary = {
|
|
46
|
+
nan: "NaN",
|
|
47
|
+
number: "எண்",
|
|
48
|
+
array: "அணி",
|
|
49
|
+
null: "வெறுமை",
|
|
50
|
+
};
|
|
51
|
+
return (issue) => {
|
|
52
|
+
switch (issue.code) {
|
|
53
|
+
case "invalid_type": {
|
|
54
|
+
const expected = TypeDictionary[issue.expected] ?? issue.expected;
|
|
55
|
+
const receivedType = util.parsedType(issue.input);
|
|
56
|
+
const received = TypeDictionary[receivedType] ?? receivedType;
|
|
57
|
+
if (/^[A-Z]/.test(issue.expected)) {
|
|
58
|
+
return `தவறான உள்ளீடு: எதிர்பார்க்கப்பட்டது instanceof ${issue.expected}, பெறப்பட்டது ${received}`;
|
|
59
|
+
}
|
|
60
|
+
return `தவறான உள்ளீடு: எதிர்பார்க்கப்பட்டது ${expected}, பெறப்பட்டது ${received}`;
|
|
61
|
+
}
|
|
62
|
+
case "invalid_value":
|
|
63
|
+
if (issue.values.length === 1)
|
|
64
|
+
return `தவறான உள்ளீடு: எதிர்பார்க்கப்பட்டது ${util.stringifyPrimitive(issue.values[0])}`;
|
|
65
|
+
return `தவறான விருப்பம்: எதிர்பார்க்கப்பட்டது ${util.joinValues(issue.values, "|")} இல் ஒன்று`;
|
|
66
|
+
case "too_big": {
|
|
67
|
+
const adj = issue.inclusive ? "<=" : "<";
|
|
68
|
+
const sizing = getSizing(issue.origin);
|
|
69
|
+
if (sizing) {
|
|
70
|
+
return `மிக பெரியது: எதிர்பார்க்கப்பட்டது ${issue.origin ?? "மதிப்பு"} ${adj}${issue.maximum.toString()} ${sizing.unit ?? "உறுப்புகள்"} ஆக இருக்க வேண்டும்`;
|
|
71
|
+
}
|
|
72
|
+
return `மிக பெரியது: எதிர்பார்க்கப்பட்டது ${issue.origin ?? "மதிப்பு"} ${adj}${issue.maximum.toString()} ஆக இருக்க வேண்டும்`;
|
|
73
|
+
}
|
|
74
|
+
case "too_small": {
|
|
75
|
+
const adj = issue.inclusive ? ">=" : ">";
|
|
76
|
+
const sizing = getSizing(issue.origin);
|
|
77
|
+
if (sizing) {
|
|
78
|
+
return `மிகச் சிறியது: எதிர்பார்க்கப்பட்டது ${issue.origin} ${adj}${issue.minimum.toString()} ${sizing.unit} ஆக இருக்க வேண்டும்`; //
|
|
79
|
+
}
|
|
80
|
+
return `மிகச் சிறியது: எதிர்பார்க்கப்பட்டது ${issue.origin} ${adj}${issue.minimum.toString()} ஆக இருக்க வேண்டும்`;
|
|
81
|
+
}
|
|
82
|
+
case "invalid_format": {
|
|
83
|
+
const _issue = issue;
|
|
84
|
+
if (_issue.format === "starts_with")
|
|
85
|
+
return `தவறான சரம்: "${_issue.prefix}" இல் தொடங்க வேண்டும்`;
|
|
86
|
+
if (_issue.format === "ends_with")
|
|
87
|
+
return `தவறான சரம்: "${_issue.suffix}" இல் முடிவடைய வேண்டும்`;
|
|
88
|
+
if (_issue.format === "includes")
|
|
89
|
+
return `தவறான சரம்: "${_issue.includes}" ஐ உள்ளடக்க வேண்டும்`;
|
|
90
|
+
if (_issue.format === "regex")
|
|
91
|
+
return `தவறான சரம்: ${_issue.pattern} முறைபாட்டுடன் பொருந்த வேண்டும்`;
|
|
92
|
+
return `தவறான ${FormatDictionary[_issue.format] ?? issue.format}`;
|
|
93
|
+
}
|
|
94
|
+
case "not_multiple_of":
|
|
95
|
+
return `தவறான எண்: ${issue.divisor} இன் பலமாக இருக்க வேண்டும்`;
|
|
96
|
+
case "unrecognized_keys":
|
|
97
|
+
return `அடையாளம் தெரியாத விசை${issue.keys.length > 1 ? "கள்" : ""}: ${util.joinValues(issue.keys, ", ")}`;
|
|
98
|
+
case "invalid_key":
|
|
99
|
+
return `${issue.origin} இல் தவறான விசை`;
|
|
100
|
+
case "invalid_union":
|
|
101
|
+
return "தவறான உள்ளீடு";
|
|
102
|
+
case "invalid_element":
|
|
103
|
+
return `${issue.origin} இல் தவறான மதிப்பு`;
|
|
104
|
+
default:
|
|
105
|
+
return `தவறான உள்ளீடு`;
|
|
106
|
+
}
|
|
107
|
+
};
|
|
108
|
+
};
|
|
109
|
+
export default function () {
|
|
110
|
+
return {
|
|
111
|
+
localeError: error(),
|
|
112
|
+
};
|
|
113
|
+
}
|