typebox 0.0.1 → 1.0.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/build/compile/code.d.mts +12 -0
- package/build/compile/code.mjs +65 -0
- package/build/compile/compile.d.mts +6 -0
- package/build/compile/compile.mjs +11 -0
- package/build/compile/index.d.mts +12 -0
- package/build/compile/index.mjs +13 -0
- package/build/compile/validator.d.mts +30 -0
- package/build/compile/validator.mjs +83 -0
- package/build/error/errors.d.mts +213 -0
- package/build/error/errors.mjs +1 -0
- package/build/error/index.d.mts +1 -0
- package/build/error/index.mjs +1 -0
- package/build/format/_registry.d.mts +15 -0
- package/build/format/_registry.mjs +96 -0
- package/build/format/date-time.d.mts +6 -0
- package/build/format/date-time.mjs +11 -0
- package/build/format/date.d.mts +6 -0
- package/build/format/date.mjs +19 -0
- package/build/format/duration.d.mts +5 -0
- package/build/format/duration.mjs +8 -0
- package/build/format/email.d.mts +2 -0
- package/build/format/email.mjs +5 -0
- package/build/format/format.d.mts +22 -0
- package/build/format/format.mjs +22 -0
- package/build/format/hostname.d.mts +2 -0
- package/build/format/hostname.mjs +5 -0
- package/build/format/idn-email.d.mts +2 -0
- package/build/format/idn-email.mjs +5 -0
- package/build/format/idn-hostname.d.mts +5 -0
- package/build/format/idn-hostname.mjs +128 -0
- package/build/format/index.d.mts +4 -0
- package/build/format/index.mjs +4 -0
- package/build/format/ipv4.d.mts +6 -0
- package/build/format/ipv4.mjs +9 -0
- package/build/format/ipv6.d.mts +6 -0
- package/build/format/ipv6.mjs +9 -0
- package/build/format/iri-reference.d.mts +5 -0
- package/build/format/iri-reference.mjs +59 -0
- package/build/format/iri.d.mts +5 -0
- package/build/format/iri.mjs +13 -0
- package/build/format/json-pointer-uri-fragment.d.mts +6 -0
- package/build/format/json-pointer-uri-fragment.mjs +9 -0
- package/build/format/json-pointer.d.mts +6 -0
- package/build/format/json-pointer.mjs +9 -0
- package/build/format/regex.d.mts +6 -0
- package/build/format/regex.mjs +17 -0
- package/build/format/relative-json-pointer.d.mts +6 -0
- package/build/format/relative-json-pointer.mjs +9 -0
- package/build/format/time.d.mts +5 -0
- package/build/format/time.mjs +27 -0
- package/build/format/uri-reference.d.mts +6 -0
- package/build/format/uri-reference.mjs +9 -0
- package/build/format/uri-template.d.mts +6 -0
- package/build/format/uri-template.mjs +10 -0
- package/build/format/uri.d.mts +6 -0
- package/build/format/uri.mjs +9 -0
- package/build/format/url.d.mts +6 -0
- package/build/format/url.mjs +9 -0
- package/build/format/uuid.d.mts +6 -0
- package/build/format/uuid.mjs +9 -0
- package/build/guard/emit.d.mts +56 -0
- package/build/guard/emit.mjs +183 -0
- package/build/guard/globals.d.mts +35 -0
- package/build/guard/globals.mjs +90 -0
- package/build/guard/guard.d.mts +57 -0
- package/build/guard/guard.mjs +180 -0
- package/build/guard/index.d.mts +6 -0
- package/build/guard/index.mjs +6 -0
- package/build/guard/native.d.mts +20 -0
- package/build/guard/native.mjs +60 -0
- package/build/index.d.mts +8 -0
- package/build/index.mjs +14 -0
- package/build/schema/build.d.mts +35 -0
- package/build/schema/build.mjs +97 -0
- package/build/schema/check.d.mts +5 -0
- package/build/schema/check.mjs +12 -0
- package/build/schema/deref/deref.d.mts +4 -0
- package/build/schema/deref/deref.mjs +77 -0
- package/build/schema/deref/index.d.mts +1 -0
- package/build/schema/deref/index.mjs +1 -0
- package/build/schema/engine/_context.d.mts +42 -0
- package/build/schema/engine/_context.mjs +121 -0
- package/build/schema/engine/_externals.d.mts +9 -0
- package/build/schema/engine/_externals.mjs +34 -0
- package/build/schema/engine/_functions.d.mts +5 -0
- package/build/schema/engine/_functions.mjs +46 -0
- package/build/schema/engine/_reducer.d.mts +3 -0
- package/build/schema/engine/_reducer.mjs +45 -0
- package/build/schema/engine/_refine.d.mts +5 -0
- package/build/schema/engine/_refine.mjs +29 -0
- package/build/schema/engine/_standard.d.mts +5 -0
- package/build/schema/engine/_standard.mjs +27 -0
- package/build/schema/engine/additionalItems.d.mts +5 -0
- package/build/schema/engine/additionalItems.mjs +48 -0
- package/build/schema/engine/additionalProperties.d.mts +8 -0
- package/build/schema/engine/additionalProperties.mjs +103 -0
- package/build/schema/engine/allOf.d.mts +5 -0
- package/build/schema/engine/allOf.mjs +47 -0
- package/build/schema/engine/anyOf.d.mts +5 -0
- package/build/schema/engine/anyOf.mjs +52 -0
- package/build/schema/engine/boolean.d.mts +4 -0
- package/build/schema/engine/boolean.mjs +25 -0
- package/build/schema/engine/const.d.mts +5 -0
- package/build/schema/engine/const.mjs +30 -0
- package/build/schema/engine/contains.d.mts +5 -0
- package/build/schema/engine/contains.mjs +40 -0
- package/build/schema/engine/dependencies.d.mts +5 -0
- package/build/schema/engine/dependencies.mjs +45 -0
- package/build/schema/engine/dependentRequired.d.mts +5 -0
- package/build/schema/engine/dependentRequired.mjs +40 -0
- package/build/schema/engine/dependentSchemas.d.mts +5 -0
- package/build/schema/engine/dependentSchemas.mjs +38 -0
- package/build/schema/engine/enum.d.mts +5 -0
- package/build/schema/engine/enum.mjs +33 -0
- package/build/schema/engine/exclusiveMaximum.d.mts +5 -0
- package/build/schema/engine/exclusiveMaximum.mjs +25 -0
- package/build/schema/engine/exclusiveMinimum.d.mts +5 -0
- package/build/schema/engine/exclusiveMinimum.mjs +25 -0
- package/build/schema/engine/format.d.mts +5 -0
- package/build/schema/engine/format.mjs +26 -0
- package/build/schema/engine/if.d.mts +5 -0
- package/build/schema/engine/if.mjs +47 -0
- package/build/schema/engine/index.d.mts +47 -0
- package/build/schema/engine/index.mjs +53 -0
- package/build/schema/engine/items.d.mts +5 -0
- package/build/schema/engine/items.mjs +65 -0
- package/build/schema/engine/maxContains.d.mts +5 -0
- package/build/schema/engine/maxContains.mjs +40 -0
- package/build/schema/engine/maxItems.d.mts +5 -0
- package/build/schema/engine/maxItems.mjs +25 -0
- package/build/schema/engine/maxLength.d.mts +5 -0
- package/build/schema/engine/maxLength.mjs +25 -0
- package/build/schema/engine/maxProperties.d.mts +5 -0
- package/build/schema/engine/maxProperties.mjs +25 -0
- package/build/schema/engine/maximum.d.mts +5 -0
- package/build/schema/engine/maximum.mjs +25 -0
- package/build/schema/engine/minContains.d.mts +5 -0
- package/build/schema/engine/minContains.mjs +39 -0
- package/build/schema/engine/minItems.d.mts +5 -0
- package/build/schema/engine/minItems.mjs +25 -0
- package/build/schema/engine/minLength.d.mts +5 -0
- package/build/schema/engine/minLength.mjs +25 -0
- package/build/schema/engine/minProperties.d.mts +5 -0
- package/build/schema/engine/minProperties.mjs +25 -0
- package/build/schema/engine/minimum.d.mts +5 -0
- package/build/schema/engine/minimum.mjs +25 -0
- package/build/schema/engine/multipleOf.d.mts +5 -0
- package/build/schema/engine/multipleOf.mjs +25 -0
- package/build/schema/engine/not.d.mts +5 -0
- package/build/schema/engine/not.mjs +36 -0
- package/build/schema/engine/oneOf.d.mts +5 -0
- package/build/schema/engine/oneOf.mjs +58 -0
- package/build/schema/engine/pattern.d.mts +5 -0
- package/build/schema/engine/pattern.mjs +28 -0
- package/build/schema/engine/patternProperties.d.mts +5 -0
- package/build/schema/engine/patternProperties.mjs +42 -0
- package/build/schema/engine/prefixItems.d.mts +5 -0
- package/build/schema/engine/prefixItems.mjs +35 -0
- package/build/schema/engine/properties.d.mts +5 -0
- package/build/schema/engine/properties.mjs +41 -0
- package/build/schema/engine/propertyNames.d.mts +5 -0
- package/build/schema/engine/propertyNames.mjs +37 -0
- package/build/schema/engine/ref.d.mts +5 -0
- package/build/schema/engine/ref.mjs +43 -0
- package/build/schema/engine/required.d.mts +5 -0
- package/build/schema/engine/required.mjs +32 -0
- package/build/schema/engine/schema.d.mts +5 -0
- package/build/schema/engine/schema.mjs +322 -0
- package/build/schema/engine/type.d.mts +5 -0
- package/build/schema/engine/type.mjs +74 -0
- package/build/schema/engine/unevaluatedItems.d.mts +5 -0
- package/build/schema/engine/unevaluatedItems.mjs +49 -0
- package/build/schema/engine/unevaluatedProperties.d.mts +5 -0
- package/build/schema/engine/unevaluatedProperties.mjs +49 -0
- package/build/schema/engine/uniqueItems.d.mts +5 -0
- package/build/schema/engine/uniqueItems.mjs +51 -0
- package/build/schema/errors.d.mts +6 -0
- package/build/schema/errors.mjs +24 -0
- package/build/schema/index.d.mts +16 -0
- package/build/schema/index.mjs +19 -0
- package/build/schema/schema.d.mts +5 -0
- package/build/schema/schema.mjs +5 -0
- package/build/schema/types/_refine.d.mts +13 -0
- package/build/schema/types/_refine.mjs +18 -0
- package/build/schema/types/_standard.d.mts +14 -0
- package/build/schema/types/_standard.mjs +19 -0
- package/build/schema/types/additionalItems.d.mts +9 -0
- package/build/schema/types/additionalItems.mjs +14 -0
- package/build/schema/types/additionalProperties.d.mts +9 -0
- package/build/schema/types/additionalProperties.mjs +14 -0
- package/build/schema/types/allOf.d.mts +9 -0
- package/build/schema/types/allOf.mjs +15 -0
- package/build/schema/types/anyOf.d.mts +9 -0
- package/build/schema/types/anyOf.mjs +15 -0
- package/build/schema/types/const.d.mts +9 -0
- package/build/schema/types/const.mjs +12 -0
- package/build/schema/types/contains.d.mts +9 -0
- package/build/schema/types/contains.mjs +14 -0
- package/build/schema/types/contentEncoding.d.mts +9 -0
- package/build/schema/types/contentEncoding.mjs +13 -0
- package/build/schema/types/contentMediaType.d.mts +9 -0
- package/build/schema/types/contentMediaType.mjs +13 -0
- package/build/schema/types/default.d.mts +9 -0
- package/build/schema/types/default.mjs +12 -0
- package/build/schema/types/defs.d.mts +6 -0
- package/build/schema/types/defs.mjs +12 -0
- package/build/schema/types/dependencies.d.mts +11 -0
- package/build/schema/types/dependencies.mjs +16 -0
- package/build/schema/types/dependentRequired.d.mts +9 -0
- package/build/schema/types/dependentRequired.mjs +15 -0
- package/build/schema/types/dependentSchemas.d.mts +9 -0
- package/build/schema/types/dependentSchemas.mjs +15 -0
- package/build/schema/types/else.d.mts +9 -0
- package/build/schema/types/else.mjs +14 -0
- package/build/schema/types/enum.d.mts +9 -0
- package/build/schema/types/enum.mjs +13 -0
- package/build/schema/types/exclusiveMaximum.d.mts +9 -0
- package/build/schema/types/exclusiveMaximum.mjs +13 -0
- package/build/schema/types/exclusiveMinimum.d.mts +9 -0
- package/build/schema/types/exclusiveMinimum.mjs +13 -0
- package/build/schema/types/format.d.mts +9 -0
- package/build/schema/types/format.mjs +13 -0
- package/build/schema/types/id.d.mts +9 -0
- package/build/schema/types/id.mjs +13 -0
- package/build/schema/types/if.d.mts +9 -0
- package/build/schema/types/if.mjs +14 -0
- package/build/schema/types/index.d.mts +51 -0
- package/build/schema/types/index.mjs +57 -0
- package/build/schema/types/items.d.mts +19 -0
- package/build/schema/types/items.mjs +26 -0
- package/build/schema/types/maxContains.d.mts +9 -0
- package/build/schema/types/maxContains.mjs +13 -0
- package/build/schema/types/maxItems.d.mts +9 -0
- package/build/schema/types/maxItems.mjs +13 -0
- package/build/schema/types/maxLength.d.mts +9 -0
- package/build/schema/types/maxLength.mjs +13 -0
- package/build/schema/types/maxProperties.d.mts +9 -0
- package/build/schema/types/maxProperties.mjs +13 -0
- package/build/schema/types/maximum.d.mts +9 -0
- package/build/schema/types/maximum.mjs +13 -0
- package/build/schema/types/minContains.d.mts +9 -0
- package/build/schema/types/minContains.mjs +13 -0
- package/build/schema/types/minItems.d.mts +9 -0
- package/build/schema/types/minItems.mjs +13 -0
- package/build/schema/types/minLength.d.mts +9 -0
- package/build/schema/types/minLength.mjs +13 -0
- package/build/schema/types/minProperties.d.mts +9 -0
- package/build/schema/types/minProperties.mjs +13 -0
- package/build/schema/types/minimum.d.mts +9 -0
- package/build/schema/types/minimum.mjs +13 -0
- package/build/schema/types/multipleOf.d.mts +9 -0
- package/build/schema/types/multipleOf.mjs +13 -0
- package/build/schema/types/not.d.mts +9 -0
- package/build/schema/types/not.mjs +14 -0
- package/build/schema/types/oneOf.d.mts +9 -0
- package/build/schema/types/oneOf.mjs +15 -0
- package/build/schema/types/pattern.d.mts +9 -0
- package/build/schema/types/pattern.mjs +14 -0
- package/build/schema/types/patternProperties.d.mts +9 -0
- package/build/schema/types/patternProperties.mjs +15 -0
- package/build/schema/types/prefixItems.d.mts +8 -0
- package/build/schema/types/prefixItems.mjs +14 -0
- package/build/schema/types/properties.d.mts +9 -0
- package/build/schema/types/properties.mjs +15 -0
- package/build/schema/types/propertyNames.d.mts +9 -0
- package/build/schema/types/propertyNames.mjs +15 -0
- package/build/schema/types/ref.d.mts +9 -0
- package/build/schema/types/ref.mjs +13 -0
- package/build/schema/types/required.d.mts +9 -0
- package/build/schema/types/required.mjs +14 -0
- package/build/schema/types/schema.d.mts +9 -0
- package/build/schema/types/schema.mjs +14 -0
- package/build/schema/types/static.d.mts +115 -0
- package/build/schema/types/static.mjs +2 -0
- package/build/schema/types/then.d.mts +9 -0
- package/build/schema/types/then.mjs +14 -0
- package/build/schema/types/type.d.mts +9 -0
- package/build/schema/types/type.mjs +15 -0
- package/build/schema/types/unevaluatedItems.d.mts +9 -0
- package/build/schema/types/unevaluatedItems.mjs +14 -0
- package/build/schema/types/unevaluatedProperties.d.mts +9 -0
- package/build/schema/types/unevaluatedProperties.mjs +14 -0
- package/build/schema/types/uniqueItems.d.mts +9 -0
- package/build/schema/types/uniqueItems.mjs +13 -0
- package/build/system/arguments/arguments.d.mts +5 -0
- package/build/system/arguments/arguments.mjs +9 -0
- package/build/system/arguments/index.d.mts +1 -0
- package/build/system/arguments/index.mjs +1 -0
- package/build/system/environment/can-evaluate.d.mts +2 -0
- package/build/system/environment/can-evaluate.mjs +26 -0
- package/build/system/environment/environment.d.mts +1 -0
- package/build/system/environment/environment.mjs +1 -0
- package/build/system/environment/index.d.mts +1 -0
- package/build/system/environment/index.mjs +1 -0
- package/build/system/hashing/hash.d.mts +4 -0
- package/build/system/hashing/hash.mjs +232 -0
- package/build/system/hashing/index.d.mts +1 -0
- package/build/system/hashing/index.mjs +1 -0
- package/build/system/index.d.mts +4 -0
- package/build/system/index.mjs +4 -0
- package/build/system/locale/_config.d.mts +7 -0
- package/build/system/locale/_config.mjs +15 -0
- package/build/system/locale/_locale.d.mts +40 -0
- package/build/system/locale/_locale.mjs +40 -0
- package/build/system/locale/ar_001.d.mts +3 -0
- package/build/system/locale/ar_001.mjs +41 -0
- package/build/system/locale/bn_BD.d.mts +3 -0
- package/build/system/locale/bn_BD.mjs +41 -0
- package/build/system/locale/cs_CZ.d.mts +3 -0
- package/build/system/locale/cs_CZ.mjs +41 -0
- package/build/system/locale/de_DE.d.mts +3 -0
- package/build/system/locale/de_DE.mjs +41 -0
- package/build/system/locale/el_GR.d.mts +3 -0
- package/build/system/locale/el_GR.mjs +41 -0
- package/build/system/locale/en_US.d.mts +3 -0
- package/build/system/locale/en_US.mjs +40 -0
- package/build/system/locale/es_419.d.mts +3 -0
- package/build/system/locale/es_419.mjs +41 -0
- package/build/system/locale/es_AR.d.mts +3 -0
- package/build/system/locale/es_AR.mjs +41 -0
- package/build/system/locale/es_ES.d.mts +3 -0
- package/build/system/locale/es_ES.mjs +41 -0
- package/build/system/locale/es_MX.d.mts +3 -0
- package/build/system/locale/es_MX.mjs +41 -0
- package/build/system/locale/fa_IR.d.mts +3 -0
- package/build/system/locale/fa_IR.mjs +41 -0
- package/build/system/locale/fil_PH.d.mts +3 -0
- package/build/system/locale/fil_PH.mjs +41 -0
- package/build/system/locale/fr_CA.d.mts +3 -0
- package/build/system/locale/fr_CA.mjs +41 -0
- package/build/system/locale/fr_FR.d.mts +3 -0
- package/build/system/locale/fr_FR.mjs +41 -0
- package/build/system/locale/ha_NG.d.mts +3 -0
- package/build/system/locale/ha_NG.mjs +41 -0
- package/build/system/locale/hi_IN.d.mts +3 -0
- package/build/system/locale/hi_IN.mjs +41 -0
- package/build/system/locale/hu_HU.d.mts +3 -0
- package/build/system/locale/hu_HU.mjs +41 -0
- package/build/system/locale/id_ID.d.mts +3 -0
- package/build/system/locale/id_ID.mjs +41 -0
- package/build/system/locale/index.d.mts +1 -0
- package/build/system/locale/index.mjs +1 -0
- package/build/system/locale/it_IT.d.mts +3 -0
- package/build/system/locale/it_IT.mjs +41 -0
- package/build/system/locale/ja_JP.d.mts +3 -0
- package/build/system/locale/ja_JP.mjs +41 -0
- package/build/system/locale/ko_KR.d.mts +3 -0
- package/build/system/locale/ko_KR.mjs +41 -0
- package/build/system/locale/ms_MY.d.mts +3 -0
- package/build/system/locale/ms_MY.mjs +41 -0
- package/build/system/locale/nl_NL.d.mts +3 -0
- package/build/system/locale/nl_NL.mjs +41 -0
- package/build/system/locale/pl_PL.d.mts +3 -0
- package/build/system/locale/pl_PL.mjs +41 -0
- package/build/system/locale/pt_BR.d.mts +3 -0
- package/build/system/locale/pt_BR.mjs +41 -0
- package/build/system/locale/pt_PT.d.mts +3 -0
- package/build/system/locale/pt_PT.mjs +41 -0
- package/build/system/locale/ro_RO.d.mts +3 -0
- package/build/system/locale/ro_RO.mjs +41 -0
- package/build/system/locale/ru_RU.d.mts +3 -0
- package/build/system/locale/ru_RU.mjs +41 -0
- package/build/system/locale/sv_SE.d.mts +3 -0
- package/build/system/locale/sv_SE.mjs +41 -0
- package/build/system/locale/sw_TZ.d.mts +3 -0
- package/build/system/locale/sw_TZ.mjs +41 -0
- package/build/system/locale/th_TH.d.mts +3 -0
- package/build/system/locale/th_TH.mjs +41 -0
- package/build/system/locale/tr_TR.d.mts +3 -0
- package/build/system/locale/tr_TR.mjs +41 -0
- package/build/system/locale/uk_UA.d.mts +3 -0
- package/build/system/locale/uk_UA.mjs +41 -0
- package/build/system/locale/ur_PK.d.mts +3 -0
- package/build/system/locale/ur_PK.mjs +41 -0
- package/build/system/locale/vi_VN.d.mts +3 -0
- package/build/system/locale/vi_VN.mjs +41 -0
- package/build/system/locale/yo_NG.d.mts +3 -0
- package/build/system/locale/yo_NG.mjs +41 -0
- package/build/system/locale/zh_Hans.d.mts +3 -0
- package/build/system/locale/zh_Hans.mjs +41 -0
- package/build/system/locale/zh_Hant.d.mts +3 -0
- package/build/system/locale/zh_Hant.mjs +41 -0
- package/build/system/memory/assign.d.mts +14 -0
- package/build/system/memory/assign.mjs +10 -0
- package/build/system/memory/clone.d.mts +6 -0
- package/build/system/memory/clone.mjs +63 -0
- package/build/system/memory/create.d.mts +8 -0
- package/build/system/memory/create.mjs +23 -0
- package/build/system/memory/discard.d.mts +4 -0
- package/build/system/memory/discard.mjs +16 -0
- package/build/system/memory/index.d.mts +1 -0
- package/build/system/memory/index.mjs +1 -0
- package/build/system/memory/memory.d.mts +6 -0
- package/build/system/memory/memory.mjs +7 -0
- package/build/system/memory/metrics.d.mts +14 -0
- package/build/system/memory/metrics.mjs +8 -0
- package/build/system/memory/update.d.mts +7 -0
- package/build/system/memory/update.mjs +32 -0
- package/build/system/settings/index.d.mts +1 -0
- package/build/system/settings/index.mjs +1 -0
- package/build/system/settings/settings.d.mts +37 -0
- package/build/system/settings/settings.mjs +28 -0
- package/build/system/system.d.mts +6 -0
- package/build/system/system.mjs +6 -0
- package/build/system/unreachable/index.d.mts +1 -0
- package/build/system/unreachable/index.mjs +1 -0
- package/build/system/unreachable/unreachable.d.mts +3 -0
- package/build/system/unreachable/unreachable.mjs +6 -0
- package/build/type/action/_optional.d.mts +19 -0
- package/build/type/action/_optional.mjs +40 -0
- package/build/type/action/_readonly.d.mts +19 -0
- package/build/type/action/_readonly.mjs +40 -0
- package/build/type/action/awaited.d.mts +11 -0
- package/build/type/action/awaited.mjs +11 -0
- package/build/type/action/capitalize.d.mts +11 -0
- package/build/type/action/capitalize.mjs +11 -0
- package/build/type/action/conditional.d.mts +11 -0
- package/build/type/action/conditional.mjs +11 -0
- package/build/type/action/constructor-parameters.d.mts +11 -0
- package/build/type/action/constructor-parameters.mjs +11 -0
- package/build/type/action/evaluate.d.mts +11 -0
- package/build/type/action/evaluate.mjs +11 -0
- package/build/type/action/exclude.d.mts +11 -0
- package/build/type/action/exclude.mjs +11 -0
- package/build/type/action/extract.d.mts +11 -0
- package/build/type/action/extract.mjs +11 -0
- package/build/type/action/index.d.mts +26 -0
- package/build/type/action/index.mjs +26 -0
- package/build/type/action/indexed.d.mts +14 -0
- package/build/type/action/indexed.mjs +14 -0
- package/build/type/action/instance-type.d.mts +11 -0
- package/build/type/action/instance-type.mjs +11 -0
- package/build/type/action/interface.d.mts +14 -0
- package/build/type/action/interface.mjs +19 -0
- package/build/type/action/keyof.d.mts +11 -0
- package/build/type/action/keyof.mjs +11 -0
- package/build/type/action/lowercase.d.mts +11 -0
- package/build/type/action/lowercase.mjs +11 -0
- package/build/type/action/mapped.d.mts +12 -0
- package/build/type/action/mapped.mjs +11 -0
- package/build/type/action/module.d.mts +12 -0
- package/build/type/action/module.mjs +11 -0
- package/build/type/action/non-nullable.d.mts +11 -0
- package/build/type/action/non-nullable.mjs +11 -0
- package/build/type/action/omit.d.mts +14 -0
- package/build/type/action/omit.mjs +14 -0
- package/build/type/action/options.d.mts +12 -0
- package/build/type/action/options.mjs +11 -0
- package/build/type/action/parameters.d.mts +11 -0
- package/build/type/action/parameters.mjs +11 -0
- package/build/type/action/partial.d.mts +11 -0
- package/build/type/action/partial.mjs +11 -0
- package/build/type/action/pick.d.mts +14 -0
- package/build/type/action/pick.mjs +14 -0
- package/build/type/action/required.d.mts +11 -0
- package/build/type/action/required.mjs +11 -0
- package/build/type/action/return-type.d.mts +11 -0
- package/build/type/action/return-type.mjs +11 -0
- package/build/type/action/uncapitalize.d.mts +11 -0
- package/build/type/action/uncapitalize.mjs +11 -0
- package/build/type/action/uppercase.d.mts +11 -0
- package/build/type/action/uppercase.mjs +11 -0
- package/build/type/engine/awaited/index.d.mts +1 -0
- package/build/type/engine/awaited/index.mjs +1 -0
- package/build/type/engine/awaited/instantiate.d.mts +10 -0
- package/build/type/engine/awaited/instantiate.mjs +19 -0
- package/build/type/engine/call/instantiate.d.mts +20 -0
- package/build/type/engine/call/instantiate.mjs +38 -0
- package/build/type/engine/call/resolve-arguments.d.mts +13 -0
- package/build/type/engine/call/resolve-arguments.mjs +39 -0
- package/build/type/engine/call/resolve-target.d.mts +25 -0
- package/build/type/engine/call/resolve-target.mjs +27 -0
- package/build/type/engine/conditional/index.d.mts +1 -0
- package/build/type/engine/conditional/index.mjs +1 -0
- package/build/type/engine/conditional/instantiate.d.mts +10 -0
- package/build/type/engine/conditional/instantiate.mjs +19 -0
- package/build/type/engine/constructor-parameters/index.d.mts +1 -0
- package/build/type/engine/constructor-parameters/index.mjs +1 -0
- package/build/type/engine/constructor-parameters/instantiate.d.mts +14 -0
- package/build/type/engine/constructor-parameters/instantiate.mjs +21 -0
- package/build/type/engine/cyclic/candidates.d.mts +9 -0
- package/build/type/engine/cyclic/candidates.mjs +19 -0
- package/build/type/engine/cyclic/check.d.mts +24 -0
- package/build/type/engine/cyclic/check.mjs +54 -0
- package/build/type/engine/cyclic/dependencies.d.mts +25 -0
- package/build/type/engine/cyclic/dependencies.mjs +53 -0
- package/build/type/engine/cyclic/extends.d.mts +31 -0
- package/build/type/engine/cyclic/extends.mjs +53 -0
- package/build/type/engine/cyclic/index.d.mts +6 -0
- package/build/type/engine/cyclic/index.mjs +6 -0
- package/build/type/engine/cyclic/instantiate.d.mts +20 -0
- package/build/type/engine/cyclic/instantiate.mjs +29 -0
- package/build/type/engine/cyclic/target.d.mts +10 -0
- package/build/type/engine/cyclic/target.mjs +16 -0
- package/build/type/engine/enum/enum-to-union.d.mts +14 -0
- package/build/type/engine/enum/enum-to-union.mjs +24 -0
- package/build/type/engine/enum/index.d.mts +2 -0
- package/build/type/engine/enum/index.mjs +2 -0
- package/build/type/engine/enum/typescript-enum-to-enum-values.d.mts +7 -0
- package/build/type/engine/enum/typescript-enum-to-enum-values.mjs +6 -0
- package/build/type/engine/evaluate/broaden.d.mts +16 -0
- package/build/type/engine/evaluate/broaden.mjs +48 -0
- package/build/type/engine/evaluate/compare.d.mts +15 -0
- package/build/type/engine/evaluate/compare.mjs +21 -0
- package/build/type/engine/evaluate/composite.d.mts +30 -0
- package/build/type/engine/evaluate/composite.mjs +63 -0
- package/build/type/engine/evaluate/distribute.d.mts +26 -0
- package/build/type/engine/evaluate/distribute.mjs +53 -0
- package/build/type/engine/evaluate/evaluate.d.mts +11 -0
- package/build/type/engine/evaluate/evaluate.mjs +19 -0
- package/build/type/engine/evaluate/flatten.d.mts +6 -0
- package/build/type/engine/evaluate/flatten.mjs +11 -0
- package/build/type/engine/evaluate/index.d.mts +8 -0
- package/build/type/engine/evaluate/index.mjs +8 -0
- package/build/type/engine/evaluate/instantiate.d.mts +8 -0
- package/build/type/engine/evaluate/instantiate.mjs +17 -0
- package/build/type/engine/evaluate/narrow.d.mts +5 -0
- package/build/type/engine/evaluate/narrow.mjs +11 -0
- package/build/type/engine/exclude/index.d.mts +1 -0
- package/build/type/engine/exclude/index.mjs +1 -0
- package/build/type/engine/exclude/instantiate.d.mts +16 -0
- package/build/type/engine/exclude/instantiate.mjs +36 -0
- package/build/type/engine/extract/index.d.mts +1 -0
- package/build/type/engine/extract/index.mjs +1 -0
- package/build/type/engine/extract/instantiate.d.mts +16 -0
- package/build/type/engine/extract/instantiate.mjs +36 -0
- package/build/type/engine/helpers/index.d.mts +3 -0
- package/build/type/engine/helpers/index.mjs +3 -0
- package/build/type/engine/helpers/keys-to-indexer.d.mts +7 -0
- package/build/type/engine/helpers/keys-to-indexer.mjs +15 -0
- package/build/type/engine/helpers/keys.d.mts +3 -0
- package/build/type/engine/helpers/keys.mjs +8 -0
- package/build/type/engine/helpers/union.d.mts +7 -0
- package/build/type/engine/helpers/union.mjs +2 -0
- package/build/type/engine/index.d.mts +30 -0
- package/build/type/engine/index.mjs +36 -0
- package/build/type/engine/indexable/from-cyclic.d.mts +6 -0
- package/build/type/engine/indexable/from-cyclic.mjs +8 -0
- package/build/type/engine/indexable/from-enum.d.mts +6 -0
- package/build/type/engine/indexable/from-enum.mjs +8 -0
- package/build/type/engine/indexable/from-intersect.d.mts +5 -0
- package/build/type/engine/indexable/from-intersect.mjs +8 -0
- package/build/type/engine/indexable/from-literal.d.mts +3 -0
- package/build/type/engine/indexable/from-literal.mjs +5 -0
- package/build/type/engine/indexable/from-template-literal.d.mts +5 -0
- package/build/type/engine/indexable/from-template-literal.mjs +8 -0
- package/build/type/engine/indexable/from-type.d.mts +17 -0
- package/build/type/engine/indexable/from-type.mjs +22 -0
- package/build/type/engine/indexable/from-union.d.mts +4 -0
- package/build/type/engine/indexable/from-union.mjs +7 -0
- package/build/type/engine/indexable/to-indexable-keys.d.mts +10 -0
- package/build/type/engine/indexable/to-indexable-keys.mjs +12 -0
- package/build/type/engine/indexable/to-indexable.d.mts +9 -0
- package/build/type/engine/indexable/to-indexable.mjs +14 -0
- package/build/type/engine/indexed/array-indexer.d.mts +12 -0
- package/build/type/engine/indexed/array-indexer.mjs +18 -0
- package/build/type/engine/indexed/from-array.d.mts +15 -0
- package/build/type/engine/indexed/from-array.mjs +26 -0
- package/build/type/engine/indexed/from-object.d.mts +9 -0
- package/build/type/engine/indexed/from-object.mjs +18 -0
- package/build/type/engine/indexed/from-tuple.d.mts +13 -0
- package/build/type/engine/indexed/from-tuple.mjs +28 -0
- package/build/type/engine/indexed/index.d.mts +1 -0
- package/build/type/engine/indexed/index.mjs +1 -0
- package/build/type/engine/indexed/instantiate.d.mts +21 -0
- package/build/type/engine/indexed/instantiate.mjs +37 -0
- package/build/type/engine/instance-type/index.d.mts +1 -0
- package/build/type/engine/instance-type/index.mjs +1 -0
- package/build/type/engine/instance-type/instantiate.d.mts +12 -0
- package/build/type/engine/instance-type/instantiate.mjs +20 -0
- package/build/type/engine/instantiate.d.mts +162 -0
- package/build/type/engine/instantiate.mjs +165 -0
- package/build/type/engine/interface/index.d.mts +1 -0
- package/build/type/engine/interface/index.mjs +1 -0
- package/build/type/engine/interface/instantiate.d.mts +16 -0
- package/build/type/engine/interface/instantiate.mjs +19 -0
- package/build/type/engine/intrinsics/from-literal.d.mts +5 -0
- package/build/type/engine/intrinsics/from-literal.mjs +9 -0
- package/build/type/engine/intrinsics/from-template-literal.d.mts +6 -0
- package/build/type/engine/intrinsics/from-template-literal.mjs +8 -0
- package/build/type/engine/intrinsics/from-type.d.mts +10 -0
- package/build/type/engine/intrinsics/from-type.mjs +13 -0
- package/build/type/engine/intrinsics/from-union.d.mts +6 -0
- package/build/type/engine/intrinsics/from-union.mjs +7 -0
- package/build/type/engine/intrinsics/index.d.mts +1 -0
- package/build/type/engine/intrinsics/index.mjs +1 -0
- package/build/type/engine/intrinsics/instantiate.d.mts +34 -0
- package/build/type/engine/intrinsics/instantiate.mjs +48 -0
- package/build/type/engine/intrinsics/mapping.d.mts +9 -0
- package/build/type/engine/intrinsics/mapping.mjs +4 -0
- package/build/type/engine/keyof/from-array.d.mts +4 -0
- package/build/type/engine/keyof/from-array.mjs +5 -0
- package/build/type/engine/keyof/from-object.d.mts +10 -0
- package/build/type/engine/keyof/from-object.mjs +20 -0
- package/build/type/engine/keyof/from-record.d.mts +4 -0
- package/build/type/engine/keyof/from-record.mjs +5 -0
- package/build/type/engine/keyof/from-tuple.d.mts +5 -0
- package/build/type/engine/keyof/from-tuple.mjs +7 -0
- package/build/type/engine/keyof/index.d.mts +1 -0
- package/build/type/engine/keyof/index.mjs +1 -0
- package/build/type/engine/keyof/instantiate.d.mts +25 -0
- package/build/type/engine/keyof/instantiate.mjs +42 -0
- package/build/type/engine/mapped/index.d.mts +1 -0
- package/build/type/engine/mapped/index.mjs +1 -0
- package/build/type/engine/mapped/instantiate.d.mts +28 -0
- package/build/type/engine/mapped/instantiate.mjs +47 -0
- package/build/type/engine/mapped/mapped-keys.d.mts +14 -0
- package/build/type/engine/mapped/mapped-keys.mjs +29 -0
- package/build/type/engine/module/index.d.mts +1 -0
- package/build/type/engine/module/index.mjs +1 -0
- package/build/type/engine/module/instantiate.d.mts +21 -0
- package/build/type/engine/module/instantiate.mjs +33 -0
- package/build/type/engine/non-nullable/index.d.mts +1 -0
- package/build/type/engine/non-nullable/index.mjs +1 -0
- package/build/type/engine/non-nullable/instantiate.d.mts +15 -0
- package/build/type/engine/non-nullable/instantiate.mjs +21 -0
- package/build/type/engine/object/collapse.d.mts +12 -0
- package/build/type/engine/object/collapse.mjs +14 -0
- package/build/type/engine/object/from-cyclic.d.mts +6 -0
- package/build/type/engine/object/from-cyclic.mjs +8 -0
- package/build/type/engine/object/from-intersect.d.mts +14 -0
- package/build/type/engine/object/from-intersect.mjs +17 -0
- package/build/type/engine/object/from-object.d.mts +3 -0
- package/build/type/engine/object/from-object.mjs +4 -0
- package/build/type/engine/object/from-tuple.d.mts +6 -0
- package/build/type/engine/object/from-tuple.mjs +9 -0
- package/build/type/engine/object/from-type.d.mts +14 -0
- package/build/type/engine/object/from-type.mjs +19 -0
- package/build/type/engine/object/from-union.d.mts +12 -0
- package/build/type/engine/object/from-union.mjs +26 -0
- package/build/type/engine/object/index.d.mts +1 -0
- package/build/type/engine/object/index.mjs +1 -0
- package/build/type/engine/omit/index.d.mts +1 -0
- package/build/type/engine/omit/index.mjs +1 -0
- package/build/type/engine/omit/instantiate.d.mts +16 -0
- package/build/type/engine/omit/instantiate.mjs +31 -0
- package/build/type/engine/options/index.d.mts +1 -0
- package/build/type/engine/options/index.mjs +1 -0
- package/build/type/engine/options/instantiate.d.mts +8 -0
- package/build/type/engine/options/instantiate.mjs +13 -0
- package/build/type/engine/parameters/index.d.mts +1 -0
- package/build/type/engine/parameters/index.mjs +1 -0
- package/build/type/engine/parameters/instantiate.d.mts +14 -0
- package/build/type/engine/parameters/instantiate.mjs +21 -0
- package/build/type/engine/partial/from-cyclic.d.mts +10 -0
- package/build/type/engine/partial/from-cyclic.mjs +11 -0
- package/build/type/engine/partial/from-intersect.d.mts +5 -0
- package/build/type/engine/partial/from-intersect.mjs +7 -0
- package/build/type/engine/partial/from-object.d.mts +8 -0
- package/build/type/engine/partial/from-object.mjs +11 -0
- package/build/type/engine/partial/from-type.d.mts +12 -0
- package/build/type/engine/partial/from-type.mjs +16 -0
- package/build/type/engine/partial/from-union.d.mts +5 -0
- package/build/type/engine/partial/from-union.mjs +7 -0
- package/build/type/engine/partial/index.d.mts +1 -0
- package/build/type/engine/partial/index.mjs +1 -0
- package/build/type/engine/partial/instantiate.d.mts +9 -0
- package/build/type/engine/partial/instantiate.mjs +14 -0
- package/build/type/engine/patterns/index.d.mts +2 -0
- package/build/type/engine/patterns/index.mjs +2 -0
- package/build/type/engine/patterns/pattern.d.mts +7 -0
- package/build/type/engine/patterns/pattern.mjs +13 -0
- package/build/type/engine/patterns/template.d.mts +7 -0
- package/build/type/engine/patterns/template.mjs +20 -0
- package/build/type/engine/pick/index.d.mts +1 -0
- package/build/type/engine/pick/index.mjs +1 -0
- package/build/type/engine/pick/instantiate.d.mts +17 -0
- package/build/type/engine/pick/instantiate.mjs +31 -0
- package/build/type/engine/record/from-key-any.d.mts +4 -0
- package/build/type/engine/record/from-key-any.mjs +6 -0
- package/build/type/engine/record/from-key-boolean.d.mts +7 -0
- package/build/type/engine/record/from-key-boolean.mjs +5 -0
- package/build/type/engine/record/from-key-enum.d.mts +6 -0
- package/build/type/engine/record/from-key-enum.mjs +8 -0
- package/build/type/engine/record/from-key-integer.d.mts +5 -0
- package/build/type/engine/record/from-key-integer.mjs +7 -0
- package/build/type/engine/record/from-key-intersect.d.mts +5 -0
- package/build/type/engine/record/from-key-intersect.mjs +8 -0
- package/build/type/engine/record/from-key-literal.d.mts +11 -0
- package/build/type/engine/record/from-key-literal.mjs +10 -0
- package/build/type/engine/record/from-key-number.d.mts +5 -0
- package/build/type/engine/record/from-key-number.mjs +7 -0
- package/build/type/engine/record/from-key-string.d.mts +5 -0
- package/build/type/engine/record/from-key-string.mjs +12 -0
- package/build/type/engine/record/from-key-template-literal.d.mts +8 -0
- package/build/type/engine/record/from-key-template-literal.mjs +12 -0
- package/build/type/engine/record/from-key-union.d.mts +20 -0
- package/build/type/engine/record/from-key-union.mjs +39 -0
- package/build/type/engine/record/from-key.d.mts +24 -0
- package/build/type/engine/record/from-key.mjs +40 -0
- package/build/type/engine/record/index.d.mts +1 -0
- package/build/type/engine/record/index.mjs +1 -0
- package/build/type/engine/record/instantiate.d.mts +9 -0
- package/build/type/engine/record/instantiate.mjs +16 -0
- package/build/type/engine/record/record-create.d.mts +3 -0
- package/build/type/engine/record/record-create.mjs +7 -0
- package/build/type/engine/ref/index.d.mts +1 -0
- package/build/type/engine/ref/index.mjs +1 -0
- package/build/type/engine/ref/instantiate.d.mts +6 -0
- package/build/type/engine/ref/instantiate.mjs +11 -0
- package/build/type/engine/required/from-cyclic.d.mts +10 -0
- package/build/type/engine/required/from-cyclic.mjs +11 -0
- package/build/type/engine/required/from-intersect.d.mts +5 -0
- package/build/type/engine/required/from-intersect.mjs +7 -0
- package/build/type/engine/required/from-object.d.mts +8 -0
- package/build/type/engine/required/from-object.mjs +11 -0
- package/build/type/engine/required/from-type.d.mts +12 -0
- package/build/type/engine/required/from-type.mjs +16 -0
- package/build/type/engine/required/from-union.d.mts +5 -0
- package/build/type/engine/required/from-union.mjs +7 -0
- package/build/type/engine/required/index.d.mts +1 -0
- package/build/type/engine/required/index.mjs +1 -0
- package/build/type/engine/required/instantiate.d.mts +9 -0
- package/build/type/engine/required/instantiate.mjs +14 -0
- package/build/type/engine/rest/index.d.mts +1 -0
- package/build/type/engine/rest/index.mjs +1 -0
- package/build/type/engine/rest/spread.d.mts +12 -0
- package/build/type/engine/rest/spread.mjs +19 -0
- package/build/type/engine/return-type/index.d.mts +1 -0
- package/build/type/engine/return-type/index.mjs +1 -0
- package/build/type/engine/return-type/instantiate.d.mts +11 -0
- package/build/type/engine/return-type/instantiate.mjs +18 -0
- package/build/type/engine/template-literal/create.d.mts +1 -0
- package/build/type/engine/template-literal/create.mjs +5 -0
- package/build/type/engine/template-literal/decode.d.mts +20 -0
- package/build/type/engine/template-literal/decode.mjs +73 -0
- package/build/type/engine/template-literal/encode.d.mts +31 -0
- package/build/type/engine/template-literal/encode.mjs +80 -0
- package/build/type/engine/template-literal/finite.d.mts +12 -0
- package/build/type/engine/template-literal/finite.mjs +30 -0
- package/build/type/engine/template-literal/index.d.mts +5 -0
- package/build/type/engine/template-literal/index.mjs +5 -0
- package/build/type/engine/template-literal/instantiate.d.mts +9 -0
- package/build/type/engine/template-literal/instantiate.mjs +14 -0
- package/build/type/engine/template-literal/static.d.mts +18 -0
- package/build/type/engine/template-literal/static.mjs +2 -0
- package/build/type/engine/tuple/to-object.d.mts +12 -0
- package/build/type/engine/tuple/to-object.mjs +13 -0
- package/build/type/extends/any.d.mts +9 -0
- package/build/type/extends/any.mjs +12 -0
- package/build/type/extends/array.d.mts +7 -0
- package/build/type/extends/array.mjs +9 -0
- package/build/type/extends/async-iterator.d.mts +7 -0
- package/build/type/extends/async-iterator.mjs +9 -0
- package/build/type/extends/bigint.d.mts +7 -0
- package/build/type/extends/bigint.mjs +9 -0
- package/build/type/extends/boolean.d.mts +7 -0
- package/build/type/extends/boolean.mjs +9 -0
- package/build/type/extends/constructor.d.mts +8 -0
- package/build/type/extends/constructor.mjs +16 -0
- package/build/type/extends/enum.d.mts +7 -0
- package/build/type/extends/enum.mjs +6 -0
- package/build/type/extends/extends-left.d.mts +55 -0
- package/build/type/extends/extends-left.mjs +83 -0
- package/build/type/extends/extends-right.d.mts +25 -0
- package/build/type/extends/extends-right.mjs +59 -0
- package/build/type/extends/extends.d.mts +11 -0
- package/build/type/extends/extends.mjs +15 -0
- package/build/type/extends/function.d.mts +8 -0
- package/build/type/extends/function.mjs +16 -0
- package/build/type/extends/index.d.mts +2 -0
- package/build/type/extends/index.mjs +2 -0
- package/build/type/extends/inference.d.mts +34 -0
- package/build/type/extends/inference.mjs +72 -0
- package/build/type/extends/integer.d.mts +8 -0
- package/build/type/extends/integer.mjs +10 -0
- package/build/type/extends/intersect.d.mts +6 -0
- package/build/type/extends/intersect.mjs +15 -0
- package/build/type/extends/iterator.d.mts +7 -0
- package/build/type/extends/iterator.mjs +9 -0
- package/build/type/extends/literal.d.mts +17 -0
- package/build/type/extends/literal.mjs +41 -0
- package/build/type/extends/never.d.mts +8 -0
- package/build/type/extends/never.mjs +9 -0
- package/build/type/extends/null.d.mts +7 -0
- package/build/type/extends/null.mjs +9 -0
- package/build/type/extends/number.d.mts +7 -0
- package/build/type/extends/number.mjs +9 -0
- package/build/type/extends/object.d.mts +25 -0
- package/build/type/extends/object.mjs +89 -0
- package/build/type/extends/parameters.d.mts +15 -0
- package/build/type/extends/parameters.mjs +37 -0
- package/build/type/extends/promise.d.mts +7 -0
- package/build/type/extends/promise.mjs +9 -0
- package/build/type/extends/result.d.mts +21 -0
- package/build/type/extends/result.mjs +33 -0
- package/build/type/extends/return-type.d.mts +7 -0
- package/build/type/extends/return-type.mjs +9 -0
- package/build/type/extends/string.d.mts +7 -0
- package/build/type/extends/string.mjs +9 -0
- package/build/type/extends/symbol.d.mts +7 -0
- package/build/type/extends/symbol.mjs +9 -0
- package/build/type/extends/template-literal.d.mts +6 -0
- package/build/type/extends/template-literal.mjs +7 -0
- package/build/type/extends/tuple.d.mts +25 -0
- package/build/type/extends/tuple.mjs +82 -0
- package/build/type/extends/undefined.d.mts +8 -0
- package/build/type/extends/undefined.mjs +10 -0
- package/build/type/extends/union.d.mts +11 -0
- package/build/type/extends/union.mjs +36 -0
- package/build/type/extends/unknown.d.mts +9 -0
- package/build/type/extends/unknown.mjs +12 -0
- package/build/type/extends/void.d.mts +7 -0
- package/build/type/extends/void.mjs +9 -0
- package/build/type/index.d.mts +5 -0
- package/build/type/index.mjs +5 -0
- package/build/type/script/index.d.mts +1 -0
- package/build/type/script/index.mjs +1 -0
- package/build/type/script/mapping.d.mts +358 -0
- package/build/type/script/mapping.mjs +525 -0
- package/build/type/script/parser.d.mts +256 -0
- package/build/type/script/parser.mjs +132 -0
- package/build/type/script/script.d.mts +17 -0
- package/build/type/script/script.mjs +21 -0
- package/build/type/script/token/bigint.d.mts +8 -0
- package/build/type/script/token/bigint.mjs +20 -0
- package/build/type/script/token/const.d.mts +11 -0
- package/build/type/script/token/const.mjs +18 -0
- package/build/type/script/token/ident.d.mts +16 -0
- package/build/type/script/token/ident.mjs +35 -0
- package/build/type/script/token/index.d.mts +9 -0
- package/build/type/script/token/index.mjs +9 -0
- package/build/type/script/token/integer.d.mts +19 -0
- package/build/type/script/token/integer.mjs +45 -0
- package/build/type/script/token/internal/char.d.mts +73 -0
- package/build/type/script/token/internal/char.mjs +25 -0
- package/build/type/script/token/internal/guard.d.mts +1 -0
- package/build/type/script/token/internal/guard.mjs +15 -0
- package/build/type/script/token/internal/many.d.mts +7 -0
- package/build/type/script/token/internal/many.mjs +17 -0
- package/build/type/script/token/internal/optional.d.mts +5 -0
- package/build/type/script/token/internal/optional.mjs +12 -0
- package/build/type/script/token/internal/result.d.mts +2 -0
- package/build/type/script/token/internal/result.mjs +7 -0
- package/build/type/script/token/internal/take.d.mts +6 -0
- package/build/type/script/token/internal/take.mjs +19 -0
- package/build/type/script/token/internal/trim.d.mts +19 -0
- package/build/type/script/token/internal/trim.mjs +34 -0
- package/build/type/script/token/number.d.mts +20 -0
- package/build/type/script/token/number.mjs +65 -0
- package/build/type/script/token/span.d.mts +10 -0
- package/build/type/script/token/span.mjs +35 -0
- package/build/type/script/token/string.d.mts +11 -0
- package/build/type/script/token/string.mjs +24 -0
- package/build/type/script/token/until.d.mts +6 -0
- package/build/type/script/token/until.mjs +21 -0
- package/build/type/script/token/until_1.d.mts +5 -0
- package/build/type/script/token/until_1.mjs +16 -0
- package/build/type/types/_codec.d.mts +30 -0
- package/build/type/types/_codec.mjs +59 -0
- package/build/type/types/_optional.d.mts +16 -0
- package/build/type/types/_optional.mjs +27 -0
- package/build/type/types/_readonly.d.mts +16 -0
- package/build/type/types/_readonly.mjs +26 -0
- package/build/type/types/_refine.d.mts +19 -0
- package/build/type/types/_refine.mjs +20 -0
- package/build/type/types/any.d.mts +10 -0
- package/build/type/types/any.mjs +18 -0
- package/build/type/types/array.d.mts +16 -0
- package/build/type/types/array.mjs +24 -0
- package/build/type/types/async-iterator.d.mts +16 -0
- package/build/type/types/async-iterator.mjs +24 -0
- package/build/type/types/base.d.mts +40 -0
- package/build/type/types/base.mjs +78 -0
- package/build/type/types/bigint.d.mts +12 -0
- package/build/type/types/bigint.mjs +21 -0
- package/build/type/types/boolean.d.mts +11 -0
- package/build/type/types/boolean.mjs +17 -0
- package/build/type/types/call.d.mts +16 -0
- package/build/type/types/call.mjs +21 -0
- package/build/type/types/constructor.d.mts +18 -0
- package/build/type/types/constructor.mjs +24 -0
- package/build/type/types/cyclic.d.mts +16 -0
- package/build/type/types/cyclic.mjs +29 -0
- package/build/type/types/deferred.d.mts +12 -0
- package/build/type/types/deferred.mjs +16 -0
- package/build/type/types/enum.d.mts +15 -0
- package/build/type/types/enum.mjs +17 -0
- package/build/type/types/function.d.mts +18 -0
- package/build/type/types/function.mjs +24 -0
- package/build/type/types/generic.d.mts +13 -0
- package/build/type/types/generic.mjs +17 -0
- package/build/type/types/identifier.d.mts +11 -0
- package/build/type/types/identifier.mjs +17 -0
- package/build/type/types/index.d.mts +47 -0
- package/build/type/types/index.mjs +53 -0
- package/build/type/types/infer.d.mts +15 -0
- package/build/type/types/infer.mjs +20 -0
- package/build/type/types/integer.d.mts +12 -0
- package/build/type/types/integer.mjs +21 -0
- package/build/type/types/intersect.d.mts +15 -0
- package/build/type/types/intersect.mjs +24 -0
- package/build/type/types/iterator.d.mts +16 -0
- package/build/type/types/iterator.mjs +24 -0
- package/build/type/types/literal.d.mts +22 -0
- package/build/type/types/literal.mjs +41 -0
- package/build/type/types/never.d.mts +12 -0
- package/build/type/types/never.mjs +21 -0
- package/build/type/types/null.d.mts +11 -0
- package/build/type/types/null.mjs +17 -0
- package/build/type/types/number.d.mts +12 -0
- package/build/type/types/number.mjs +21 -0
- package/build/type/types/object.d.mts +17 -0
- package/build/type/types/object.mjs +27 -0
- package/build/type/types/parameter.d.mts +17 -0
- package/build/type/types/parameter.mjs +21 -0
- package/build/type/types/promise.d.mts +16 -0
- package/build/type/types/promise.mjs +24 -0
- package/build/type/types/properties.d.mts +42 -0
- package/build/type/types/properties.mjs +16 -0
- package/build/type/types/record.d.mts +44 -0
- package/build/type/types/record.mjs +61 -0
- package/build/type/types/ref.d.mts +13 -0
- package/build/type/types/ref.mjs +17 -0
- package/build/type/types/rest.d.mts +11 -0
- package/build/type/types/rest.mjs +17 -0
- package/build/type/types/schema.d.mts +199 -0
- package/build/type/types/schema.mjs +15 -0
- package/build/type/types/static.d.mts +47 -0
- package/build/type/types/static.mjs +3 -0
- package/build/type/types/string.d.mts +12 -0
- package/build/type/types/string.mjs +22 -0
- package/build/type/types/symbol.d.mts +11 -0
- package/build/type/types/symbol.mjs +17 -0
- package/build/type/types/template-literal.d.mts +24 -0
- package/build/type/types/template-literal.mjs +26 -0
- package/build/type/types/this.d.mts +14 -0
- package/build/type/types/this.mjs +17 -0
- package/build/type/types/tuple.d.mts +37 -0
- package/build/type/types/tuple.mjs +25 -0
- package/build/type/types/undefined.d.mts +11 -0
- package/build/type/types/undefined.mjs +17 -0
- package/build/type/types/union.d.mts +15 -0
- package/build/type/types/union.mjs +24 -0
- package/build/type/types/unknown.d.mts +10 -0
- package/build/type/types/unknown.mjs +17 -0
- package/build/type/types/unsafe.d.mts +10 -0
- package/build/type/types/unsafe.mjs +18 -0
- package/build/type/types/void.d.mts +11 -0
- package/build/type/types/void.mjs +17 -0
- package/build/typebox.d.mts +71 -0
- package/build/typebox.mjs +87 -0
- package/build/value/assert/assert.d.mts +8 -0
- package/build/value/assert/assert.mjs +27 -0
- package/build/value/assert/index.d.mts +1 -0
- package/build/value/assert/index.mjs +1 -0
- package/build/value/check/check.d.mts +5 -0
- package/build/value/check/check.mjs +11 -0
- package/build/value/check/index.d.mts +1 -0
- package/build/value/check/index.mjs +1 -0
- package/build/value/clean/additional.d.mts +2 -0
- package/build/value/clean/additional.mjs +6 -0
- package/build/value/clean/clean.d.mts +15 -0
- package/build/value/clean/clean.mjs +15 -0
- package/build/value/clean/from-array.d.mts +2 -0
- package/build/value/clean/from-array.mjs +8 -0
- package/build/value/clean/from-base.d.mts +2 -0
- package/build/value/clean/from-base.mjs +4 -0
- package/build/value/clean/from-cyclic.d.mts +2 -0
- package/build/value/clean/from-cyclic.mjs +6 -0
- package/build/value/clean/from-intersect.d.mts +2 -0
- package/build/value/clean/from-intersect.mjs +25 -0
- package/build/value/clean/from-object.d.mts +2 -0
- package/build/value/clean/from-object.mjs +31 -0
- package/build/value/clean/from-record.d.mts +2 -0
- package/build/value/clean/from-record.mjs +32 -0
- package/build/value/clean/from-ref.d.mts +2 -0
- package/build/value/clean/from-ref.mjs +8 -0
- package/build/value/clean/from-tuple.d.mts +2 -0
- package/build/value/clean/from-tuple.mjs +14 -0
- package/build/value/clean/from-type.d.mts +2 -0
- package/build/value/clean/from-type.mjs +23 -0
- package/build/value/clean/from-union.d.mts +2 -0
- package/build/value/clean/from-union.mjs +12 -0
- package/build/value/clean/index.d.mts +1 -0
- package/build/value/clean/index.mjs +1 -0
- package/build/value/clone/clone.d.mts +5 -0
- package/build/value/clone/clone.mjs +60 -0
- package/build/value/clone/index.d.mts +1 -0
- package/build/value/clone/index.mjs +1 -0
- package/build/value/codec/callback.d.mts +2 -0
- package/build/value/codec/callback.mjs +25 -0
- package/build/value/codec/decode.d.mts +19 -0
- package/build/value/codec/decode.mjs +48 -0
- package/build/value/codec/encode.d.mts +9 -0
- package/build/value/codec/encode.mjs +43 -0
- package/build/value/codec/from-array.d.mts +2 -0
- package/build/value/codec/from-array.mjs +38 -0
- package/build/value/codec/from-cyclic.d.mts +2 -0
- package/build/value/codec/from-cyclic.mjs +8 -0
- package/build/value/codec/from-intersect.d.mts +2 -0
- package/build/value/codec/from-intersect.mjs +28 -0
- package/build/value/codec/from-object.d.mts +2 -0
- package/build/value/codec/from-object.mjs +44 -0
- package/build/value/codec/from-record.d.mts +2 -0
- package/build/value/codec/from-record.mjs +44 -0
- package/build/value/codec/from-ref.d.mts +2 -0
- package/build/value/codec/from-ref.mjs +10 -0
- package/build/value/codec/from-tuple.d.mts +2 -0
- package/build/value/codec/from-tuple.mjs +35 -0
- package/build/value/codec/from-type.d.mts +2 -0
- package/build/value/codec/from-type.mjs +22 -0
- package/build/value/codec/from-union.d.mts +2 -0
- package/build/value/codec/from-union.mjs +42 -0
- package/build/value/codec/has.d.mts +5 -0
- package/build/value/codec/has.mjs +85 -0
- package/build/value/codec/index.d.mts +3 -0
- package/build/value/codec/index.mjs +3 -0
- package/build/value/convert/convert.d.mts +13 -0
- package/build/value/convert/convert.mjs +15 -0
- package/build/value/convert/from-additional.d.mts +6 -0
- package/build/value/convert/from-additional.mjs +18 -0
- package/build/value/convert/from-array.d.mts +2 -0
- package/build/value/convert/from-array.mjs +8 -0
- package/build/value/convert/from-base.d.mts +2 -0
- package/build/value/convert/from-base.mjs +4 -0
- package/build/value/convert/from-bigint.d.mts +2 -0
- package/build/value/convert/from-bigint.mjs +9 -0
- package/build/value/convert/from-boolean.d.mts +2 -0
- package/build/value/convert/from-boolean.mjs +9 -0
- package/build/value/convert/from-cyclic.d.mts +2 -0
- package/build/value/convert/from-cyclic.mjs +6 -0
- package/build/value/convert/from-enum.d.mts +2 -0
- package/build/value/convert/from-enum.mjs +7 -0
- package/build/value/convert/from-integer.d.mts +2 -0
- package/build/value/convert/from-integer.mjs +9 -0
- package/build/value/convert/from-intersect.d.mts +2 -0
- package/build/value/convert/from-intersect.mjs +7 -0
- package/build/value/convert/from-literal.d.mts +2 -0
- package/build/value/convert/from-literal.mjs +44 -0
- package/build/value/convert/from-null.d.mts +2 -0
- package/build/value/convert/from-null.mjs +9 -0
- package/build/value/convert/from-number.d.mts +2 -0
- package/build/value/convert/from-number.mjs +9 -0
- package/build/value/convert/from-object.d.mts +2 -0
- package/build/value/convert/from-object.mjs +23 -0
- package/build/value/convert/from-record.d.mts +2 -0
- package/build/value/convert/from-record.mjs +23 -0
- package/build/value/convert/from-ref.d.mts +2 -0
- package/build/value/convert/from-ref.mjs +8 -0
- package/build/value/convert/from-string.d.mts +2 -0
- package/build/value/convert/from-string.mjs +9 -0
- package/build/value/convert/from-template-literal.d.mts +2 -0
- package/build/value/convert/from-template-literal.mjs +7 -0
- package/build/value/convert/from-tuple.d.mts +2 -0
- package/build/value/convert/from-tuple.mjs +11 -0
- package/build/value/convert/from-type.d.mts +2 -0
- package/build/value/convert/from-type.mjs +45 -0
- package/build/value/convert/from-undefined.d.mts +2 -0
- package/build/value/convert/from-undefined.mjs +9 -0
- package/build/value/convert/from-union.d.mts +2 -0
- package/build/value/convert/from-union.mjs +13 -0
- package/build/value/convert/from-void.d.mts +2 -0
- package/build/value/convert/from-void.mjs +9 -0
- package/build/value/convert/index.d.mts +1 -0
- package/build/value/convert/index.mjs +1 -0
- package/build/value/convert/try/index.d.mts +1 -0
- package/build/value/convert/try/index.mjs +1 -0
- package/build/value/convert/try/try-bigint.d.mts +2 -0
- package/build/value/convert/try/try-bigint.mjs +74 -0
- package/build/value/convert/try/try-boolean.d.mts +2 -0
- package/build/value/convert/try/try-boolean.mjs +64 -0
- package/build/value/convert/try/try-null.d.mts +2 -0
- package/build/value/convert/try/try-null.mjs +61 -0
- package/build/value/convert/try/try-number.d.mts +2 -0
- package/build/value/convert/try/try-number.mjs +76 -0
- package/build/value/convert/try/try-result.d.mts +8 -0
- package/build/value/convert/try/try-result.mjs +18 -0
- package/build/value/convert/try/try-string.d.mts +2 -0
- package/build/value/convert/try/try-string.mjs +56 -0
- package/build/value/convert/try/try-undefined.d.mts +2 -0
- package/build/value/convert/try/try-undefined.mjs +61 -0
- package/build/value/convert/try/try.d.mts +7 -0
- package/build/value/convert/try/try.mjs +7 -0
- package/build/value/create/create.d.mts +5 -0
- package/build/value/create/create.mjs +11 -0
- package/build/value/create/error.d.mts +5 -0
- package/build/value/create/error.mjs +7 -0
- package/build/value/create/from-array.d.mts +2 -0
- package/build/value/create/from-array.mjs +10 -0
- package/build/value/create/from-async-iterator.d.mts +2 -0
- package/build/value/create/from-async-iterator.mjs +5 -0
- package/build/value/create/from-base.d.mts +2 -0
- package/build/value/create/from-base.mjs +4 -0
- package/build/value/create/from-bigint.d.mts +2 -0
- package/build/value/create/from-bigint.mjs +7 -0
- package/build/value/create/from-boolean.d.mts +2 -0
- package/build/value/create/from-boolean.mjs +4 -0
- package/build/value/create/from-constructor.d.mts +2 -0
- package/build/value/create/from-constructor.mjs +10 -0
- package/build/value/create/from-cyclic.d.mts +2 -0
- package/build/value/create/from-cyclic.mjs +6 -0
- package/build/value/create/from-default.d.mts +3 -0
- package/build/value/create/from-default.mjs +10 -0
- package/build/value/create/from-enum.d.mts +2 -0
- package/build/value/create/from-enum.mjs +6 -0
- package/build/value/create/from-function.d.mts +2 -0
- package/build/value/create/from-function.mjs +6 -0
- package/build/value/create/from-integer.d.mts +2 -0
- package/build/value/create/from-integer.mjs +8 -0
- package/build/value/create/from-intersect.d.mts +2 -0
- package/build/value/create/from-intersect.mjs +6 -0
- package/build/value/create/from-iterator.d.mts +2 -0
- package/build/value/create/from-iterator.mjs +5 -0
- package/build/value/create/from-literal.d.mts +2 -0
- package/build/value/create/from-literal.mjs +4 -0
- package/build/value/create/from-never.d.mts +2 -0
- package/build/value/create/from-never.mjs +5 -0
- package/build/value/create/from-null.d.mts +2 -0
- package/build/value/create/from-null.mjs +4 -0
- package/build/value/create/from-number.d.mts +2 -0
- package/build/value/create/from-number.mjs +8 -0
- package/build/value/create/from-object.d.mts +2 -0
- package/build/value/create/from-object.mjs +9 -0
- package/build/value/create/from-promise.d.mts +2 -0
- package/build/value/create/from-promise.mjs +5 -0
- package/build/value/create/from-record.d.mts +2 -0
- package/build/value/create/from-record.mjs +8 -0
- package/build/value/create/from-ref.d.mts +2 -0
- package/build/value/create/from-ref.mjs +9 -0
- package/build/value/create/from-string.d.mts +2 -0
- package/build/value/create/from-string.mjs +9 -0
- package/build/value/create/from-symbol.d.mts +2 -0
- package/build/value/create/from-symbol.mjs +4 -0
- package/build/value/create/from-template-literal.d.mts +2 -0
- package/build/value/create/from-template-literal.mjs +11 -0
- package/build/value/create/from-tuple.d.mts +2 -0
- package/build/value/create/from-tuple.mjs +5 -0
- package/build/value/create/from-type.d.mts +2 -0
- package/build/value/create/from-type.mjs +69 -0
- package/build/value/create/from-undefined.d.mts +2 -0
- package/build/value/create/from-undefined.mjs +4 -0
- package/build/value/create/from-union.d.mts +2 -0
- package/build/value/create/from-union.mjs +9 -0
- package/build/value/create/from-void.d.mts +2 -0
- package/build/value/create/from-void.mjs +4 -0
- package/build/value/create/index.d.mts +2 -0
- package/build/value/create/index.mjs +2 -0
- package/build/value/default/default.d.mts +13 -0
- package/build/value/default/default.mjs +15 -0
- package/build/value/default/from-array.d.mts +2 -0
- package/build/value/default/from-array.mjs +12 -0
- package/build/value/default/from-base.d.mts +2 -0
- package/build/value/default/from-base.mjs +5 -0
- package/build/value/default/from-cyclic.d.mts +2 -0
- package/build/value/default/from-cyclic.mjs +7 -0
- package/build/value/default/from-default.d.mts +3 -0
- package/build/value/default/from-default.mjs +13 -0
- package/build/value/default/from-intersect.d.mts +2 -0
- package/build/value/default/from-intersect.mjs +8 -0
- package/build/value/default/from-object.d.mts +2 -0
- package/build/value/default/from-object.mjs +30 -0
- package/build/value/default/from-record.d.mts +2 -0
- package/build/value/default/from-record.mjs +26 -0
- package/build/value/default/from-ref.d.mts +2 -0
- package/build/value/default/from-ref.mjs +9 -0
- package/build/value/default/from-tuple.d.mts +2 -0
- package/build/value/default/from-tuple.mjs +14 -0
- package/build/value/default/from-type.d.mts +2 -0
- package/build/value/default/from-type.mjs +27 -0
- package/build/value/default/from-union.d.mts +2 -0
- package/build/value/default/from-union.mjs +14 -0
- package/build/value/default/index.d.mts +1 -0
- package/build/value/default/index.mjs +1 -0
- package/build/value/delta/diff.d.mts +10 -0
- package/build/value/delta/diff.mjs +129 -0
- package/build/value/delta/edit.d.mts +24 -0
- package/build/value/delta/edit.mjs +17 -0
- package/build/value/delta/index.d.mts +3 -0
- package/build/value/delta/index.mjs +3 -0
- package/build/value/delta/patch.d.mts +8 -0
- package/build/value/delta/patch.mjs +42 -0
- package/build/value/equal/equal.d.mts +2 -0
- package/build/value/equal/equal.mjs +6 -0
- package/build/value/equal/index.d.mts +1 -0
- package/build/value/equal/index.mjs +1 -0
- package/build/value/errors/errors.d.mts +16 -0
- package/build/value/errors/errors.mjs +17 -0
- package/build/value/errors/index.d.mts +1 -0
- package/build/value/errors/index.mjs +1 -0
- package/build/value/hash/hash.d.mts +6 -0
- package/build/value/hash/hash.mjs +10 -0
- package/build/value/hash/index.d.mts +1 -0
- package/build/value/hash/index.mjs +1 -0
- package/build/value/index.d.mts +20 -0
- package/build/value/index.mjs +26 -0
- package/build/value/mutate/error.d.mts +3 -0
- package/build/value/mutate/error.mjs +6 -0
- package/build/value/mutate/from-array.d.mts +2 -0
- package/build/value/mutate/from-array.mjs +16 -0
- package/build/value/mutate/from-object.d.mts +2 -0
- package/build/value/mutate/from-object.mjs +27 -0
- package/build/value/mutate/from-unknown.d.mts +2 -0
- package/build/value/mutate/from-unknown.mjs +7 -0
- package/build/value/mutate/from-value.d.mts +2 -0
- package/build/value/mutate/from-value.mjs +12 -0
- package/build/value/mutate/index.d.mts +1 -0
- package/build/value/mutate/index.mjs +1 -0
- package/build/value/mutate/mutate.d.mts +9 -0
- package/build/value/mutate/mutate.mjs +39 -0
- package/build/value/parse/index.d.mts +1 -0
- package/build/value/parse/index.mjs +1 -0
- package/build/value/parse/parse.d.mts +20 -0
- package/build/value/parse/parse.mjs +47 -0
- package/build/value/pipeline/index.d.mts +1 -0
- package/build/value/pipeline/index.mjs +1 -0
- package/build/value/pipeline/pipeline.d.mts +10 -0
- package/build/value/pipeline/pipeline.mjs +15 -0
- package/build/value/pointer/index.d.mts +1 -0
- package/build/value/pointer/index.mjs +1 -0
- package/build/value/pointer/pointer.d.mts +17 -0
- package/build/value/pointer/pointer.mjs +137 -0
- package/build/value/repair/error.d.mts +7 -0
- package/build/value/repair/error.mjs +8 -0
- package/build/value/repair/from-array.d.mts +2 -0
- package/build/value/repair/from-array.mjs +39 -0
- package/build/value/repair/from-enum.d.mts +2 -0
- package/build/value/repair/from-enum.mjs +7 -0
- package/build/value/repair/from-intersect.d.mts +2 -0
- package/build/value/repair/from-intersect.mjs +7 -0
- package/build/value/repair/from-object.d.mts +2 -0
- package/build/value/repair/from-object.mjs +33 -0
- package/build/value/repair/from-record.d.mts +2 -0
- package/build/value/repair/from-record.mjs +33 -0
- package/build/value/repair/from-ref.d.mts +2 -0
- package/build/value/repair/from-ref.mjs +9 -0
- package/build/value/repair/from-template-literal.d.mts +2 -0
- package/build/value/repair/from-template-literal.mjs +7 -0
- package/build/value/repair/from-tuple.d.mts +2 -0
- package/build/value/repair/from-tuple.mjs +12 -0
- package/build/value/repair/from-type.d.mts +2 -0
- package/build/value/repair/from-type.mjs +59 -0
- package/build/value/repair/from-union.d.mts +2 -0
- package/build/value/repair/from-union.mjs +71 -0
- package/build/value/repair/from-unknown.d.mts +2 -0
- package/build/value/repair/from-unknown.mjs +12 -0
- package/build/value/repair/index.d.mts +1 -0
- package/build/value/repair/index.mjs +1 -0
- package/build/value/repair/repair.d.mts +17 -0
- package/build/value/repair/repair.mjs +20 -0
- package/build/value/value.d.mts +16 -0
- package/build/value/value.mjs +16 -0
- package/license +23 -0
- package/package.json +75 -7
- package/readme.md +235 -0
- package/index.ts +0 -1
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import * as Engine from './engine/index.mjs';
|
|
2
|
+
import { type XSchemaLike } from './types/index.mjs';
|
|
3
|
+
export type CheckFunction = (value: unknown) => boolean;
|
|
4
|
+
export interface EvaluateResult {
|
|
5
|
+
IsEvaluated: boolean;
|
|
6
|
+
Code: string;
|
|
7
|
+
Check: CheckFunction;
|
|
8
|
+
}
|
|
9
|
+
export declare class BuildResult {
|
|
10
|
+
private readonly context;
|
|
11
|
+
private readonly schema;
|
|
12
|
+
private readonly external;
|
|
13
|
+
private readonly functions;
|
|
14
|
+
private readonly call;
|
|
15
|
+
private readonly useUnevaluated;
|
|
16
|
+
constructor(context: Record<PropertyKey, XSchemaLike>, schema: XSchemaLike, external: Engine.TExternal, functions: string[], call: string, useUnevaluated: boolean);
|
|
17
|
+
/** Returns the Context used for this build */
|
|
18
|
+
Context(): Record<PropertyKey, XSchemaLike>;
|
|
19
|
+
/** Returns the Schema used for this build */
|
|
20
|
+
Schema(): XSchemaLike;
|
|
21
|
+
/** Returns true if this build requires a Unevaluated context */
|
|
22
|
+
UseUnevaluated(): boolean;
|
|
23
|
+
/** Returns external variables */
|
|
24
|
+
External(): Engine.TExternal;
|
|
25
|
+
/** Returns check functions */
|
|
26
|
+
Functions(): string[];
|
|
27
|
+
/** Return entry function call. */
|
|
28
|
+
Call(): string;
|
|
29
|
+
/** Evaluates the build into a validation function */
|
|
30
|
+
Evaluate(): EvaluateResult;
|
|
31
|
+
}
|
|
32
|
+
/** Builds a schema into a optimized runtime validator */
|
|
33
|
+
export declare function Build(schema: XSchemaLike): BuildResult;
|
|
34
|
+
/** Builds a schema into a optimized runtime validator */
|
|
35
|
+
export declare function Build(context: Record<PropertyKey, XSchemaLike>, schema: XSchemaLike): BuildResult;
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
// deno-fmt-ignore-file
|
|
2
|
+
// deno-lint-ignore-file
|
|
3
|
+
import { Arguments } from '../system/arguments/index.mjs';
|
|
4
|
+
import { Environment } from '../system/environment/index.mjs';
|
|
5
|
+
import { Hashing } from '../system/hashing/index.mjs';
|
|
6
|
+
import { Guard } from '../guard/index.mjs';
|
|
7
|
+
import { Format } from '../format/index.mjs';
|
|
8
|
+
import * as Engine from './engine/index.mjs';
|
|
9
|
+
// ------------------------------------------------------------------
|
|
10
|
+
// CreateCode
|
|
11
|
+
// ------------------------------------------------------------------
|
|
12
|
+
function CreateCode(build) {
|
|
13
|
+
const functions = build.Functions().join(';\n');
|
|
14
|
+
const statements = build.UseUnevaluated()
|
|
15
|
+
? ['const context = new CheckContext({}, {})', `return ${build.Call()}`]
|
|
16
|
+
: [`return ${build.Call()}`];
|
|
17
|
+
return `${functions}; return (value) => { ${statements.join('; ')} }`;
|
|
18
|
+
}
|
|
19
|
+
// ------------------------------------------------------------------
|
|
20
|
+
// CreateEvaluatedCheck
|
|
21
|
+
// ------------------------------------------------------------------
|
|
22
|
+
function CreateEvaluatedCheck(build, code) {
|
|
23
|
+
const factory = new globalThis.Function('CheckContext', 'Guard', 'Format', 'Hashing', build.External().identifier, code);
|
|
24
|
+
return factory(Engine.CheckContext, Guard, Format, Hashing, build.External().variables);
|
|
25
|
+
}
|
|
26
|
+
// ------------------------------------------------------------------
|
|
27
|
+
// CreateDynamicCheck
|
|
28
|
+
// ------------------------------------------------------------------
|
|
29
|
+
function CreateDynamicCheck(build) {
|
|
30
|
+
const context = new Engine.CheckContext(build.Context(), build.Schema());
|
|
31
|
+
return (value) => Engine.CheckSchema(context, build.Schema(), value);
|
|
32
|
+
}
|
|
33
|
+
// ------------------------------------------------------------------
|
|
34
|
+
// CreateCheck
|
|
35
|
+
// ------------------------------------------------------------------
|
|
36
|
+
function CreateCheck(build, code) {
|
|
37
|
+
return Environment.CanEvaluate()
|
|
38
|
+
? CreateEvaluatedCheck(build, code)
|
|
39
|
+
: CreateDynamicCheck(build);
|
|
40
|
+
}
|
|
41
|
+
// ------------------------------------------------------------------
|
|
42
|
+
// BuildResult
|
|
43
|
+
// ------------------------------------------------------------------
|
|
44
|
+
export class BuildResult {
|
|
45
|
+
constructor(context, schema, external, functions, call, useUnevaluated) {
|
|
46
|
+
this.context = context;
|
|
47
|
+
this.schema = schema;
|
|
48
|
+
this.external = external;
|
|
49
|
+
this.functions = functions;
|
|
50
|
+
this.call = call;
|
|
51
|
+
this.useUnevaluated = useUnevaluated;
|
|
52
|
+
}
|
|
53
|
+
/** Returns the Context used for this build */
|
|
54
|
+
Context() {
|
|
55
|
+
return this.context;
|
|
56
|
+
}
|
|
57
|
+
/** Returns the Schema used for this build */
|
|
58
|
+
Schema() {
|
|
59
|
+
return this.schema;
|
|
60
|
+
}
|
|
61
|
+
/** Returns true if this build requires a Unevaluated context */
|
|
62
|
+
UseUnevaluated() {
|
|
63
|
+
return this.useUnevaluated;
|
|
64
|
+
}
|
|
65
|
+
/** Returns external variables */
|
|
66
|
+
External() {
|
|
67
|
+
return this.external;
|
|
68
|
+
}
|
|
69
|
+
/** Returns check functions */
|
|
70
|
+
Functions() {
|
|
71
|
+
return this.functions;
|
|
72
|
+
}
|
|
73
|
+
/** Return entry function call. */
|
|
74
|
+
Call() {
|
|
75
|
+
return this.call;
|
|
76
|
+
}
|
|
77
|
+
/** Evaluates the build into a validation function */
|
|
78
|
+
Evaluate() {
|
|
79
|
+
const Code = CreateCode(this);
|
|
80
|
+
const Check = CreateCheck(this, Code);
|
|
81
|
+
return { IsEvaluated: Environment.CanEvaluate(), Code, Check };
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
/** Builds a schema into a optimized runtime validator */
|
|
85
|
+
export function Build(...args) {
|
|
86
|
+
const [context, schema] = Arguments.Match(args, {
|
|
87
|
+
2: (context, schema) => [context, schema],
|
|
88
|
+
1: (schema) => [{}, schema]
|
|
89
|
+
});
|
|
90
|
+
Engine.ResetExternal();
|
|
91
|
+
Engine.ResetFunctions();
|
|
92
|
+
const build = new Engine.BuildContext(context, schema, Engine.HasUnevaluated(context, schema));
|
|
93
|
+
const call = Engine.CreateFunction(build, schema, 'value');
|
|
94
|
+
const functions = Engine.GetFunctions();
|
|
95
|
+
const externals = Engine.GetExternal();
|
|
96
|
+
return new BuildResult(context, schema, externals, functions, call, build.UseUnevaluated());
|
|
97
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { XSchemaLike } from './types/index.mjs';
|
|
2
|
+
/** Checks a value against the provided schema */
|
|
3
|
+
export declare function Check(schema: XSchemaLike, value: unknown): boolean;
|
|
4
|
+
/** Checks a value against the provided schema */
|
|
5
|
+
export declare function Check(context: Record<PropertyKey, XSchemaLike>, schema: XSchemaLike, value: unknown): boolean;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
// deno-fmt-ignore-file
|
|
2
|
+
// deno-lint-ignore-file
|
|
3
|
+
import { Arguments } from '../system/arguments/index.mjs';
|
|
4
|
+
import { CheckSchema, CheckContext } from './engine/index.mjs';
|
|
5
|
+
/** Checks a value against the provided schema */
|
|
6
|
+
export function Check(...args) {
|
|
7
|
+
const [context, schema, value] = Arguments.Match(args, {
|
|
8
|
+
3: (context, schema, value) => [context, schema, value],
|
|
9
|
+
2: (schema, value) => [{}, schema, value]
|
|
10
|
+
});
|
|
11
|
+
return CheckSchema(new CheckContext(context, schema), schema, value);
|
|
12
|
+
}
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
import { Guard } from '../../guard/index.mjs';
|
|
2
|
+
import { IsJsonPointer, IsUri } from '../../format/index.mjs';
|
|
3
|
+
import { Pointer } from '../../value/pointer/index.mjs';
|
|
4
|
+
import * as S from '../types/index.mjs';
|
|
5
|
+
// ------------------------------------------------------------------
|
|
6
|
+
// Rebase
|
|
7
|
+
// ------------------------------------------------------------------
|
|
8
|
+
export function Rebase(baseUri, schema) {
|
|
9
|
+
if (!S.IsId(schema))
|
|
10
|
+
return baseUri;
|
|
11
|
+
if (IsUri(schema.$id))
|
|
12
|
+
return schema.$id;
|
|
13
|
+
if (!IsUri(schema.$id) && IsUri(baseUri)) {
|
|
14
|
+
return new URL(schema.$id, baseUri).href;
|
|
15
|
+
}
|
|
16
|
+
return baseUri;
|
|
17
|
+
}
|
|
18
|
+
// ------------------------------------------------------------------
|
|
19
|
+
// Select
|
|
20
|
+
// ------------------------------------------------------------------
|
|
21
|
+
function IsHashPointer(value) {
|
|
22
|
+
return IsHash(value) && IsJsonPointer(value.slice(1));
|
|
23
|
+
}
|
|
24
|
+
function IsHash(value) {
|
|
25
|
+
return value.length > 0 && value[0] === '#';
|
|
26
|
+
}
|
|
27
|
+
function Select(schema, baseUri, $ref) {
|
|
28
|
+
if (IsUri(baseUri)) {
|
|
29
|
+
const [base, ref] = [new URL(baseUri), new URL($ref, baseUri)];
|
|
30
|
+
const matched = base.pathname === ref.pathname;
|
|
31
|
+
const withHash = IsHash(ref.hash);
|
|
32
|
+
if (matched && !withHash) {
|
|
33
|
+
return schema;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
if (IsHashPointer($ref)) {
|
|
37
|
+
const target = Pointer.Get(schema, $ref.slice(1));
|
|
38
|
+
if (S.IsSchemaLike(target))
|
|
39
|
+
return target;
|
|
40
|
+
}
|
|
41
|
+
return undefined;
|
|
42
|
+
}
|
|
43
|
+
// ------------------------------------------------------------------
|
|
44
|
+
// Traversal
|
|
45
|
+
// ------------------------------------------------------------------
|
|
46
|
+
function FromObject(schema, baseUrl, ref) {
|
|
47
|
+
// ----------------------------------------------------------------
|
|
48
|
+
// TypeBox: Fast TCyclic Deref
|
|
49
|
+
// ----------------------------------------------------------------
|
|
50
|
+
if (S.IsDefs(schema) && Guard.HasPropertyKey(schema.$defs, ref.$ref)) {
|
|
51
|
+
return schema.$defs[ref.$ref];
|
|
52
|
+
}
|
|
53
|
+
// ----------------------------------------------------------------
|
|
54
|
+
// Json Schema
|
|
55
|
+
// ----------------------------------------------------------------
|
|
56
|
+
const rebase = Rebase(baseUrl, schema);
|
|
57
|
+
const target = Select(schema, rebase, ref.$ref);
|
|
58
|
+
if (S.IsSchemaLike(target))
|
|
59
|
+
return target;
|
|
60
|
+
// Keep searching ...
|
|
61
|
+
return Object.values(schema).reduce((result, subschema) => result || FromValue(subschema, rebase, ref), undefined);
|
|
62
|
+
}
|
|
63
|
+
function FromArray(schema, baseUri, ref) {
|
|
64
|
+
return schema.reduce((result, value) => result || FromValue(value, baseUri, ref), undefined);
|
|
65
|
+
}
|
|
66
|
+
function FromValue(schema, base, ref) {
|
|
67
|
+
return ((Guard.IsObject(schema) && FromObject(schema, base, ref)) ||
|
|
68
|
+
(Guard.IsArray(schema) && FromArray(schema, base, ref)) ||
|
|
69
|
+
undefined);
|
|
70
|
+
}
|
|
71
|
+
// ------------------------------------------------------------------
|
|
72
|
+
// Deref
|
|
73
|
+
// ------------------------------------------------------------------
|
|
74
|
+
/** Deferences a schema with the given Ref */
|
|
75
|
+
export function Deref(schema, ref) {
|
|
76
|
+
return FromValue(schema, '', ref);
|
|
77
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Deref } from './deref.mjs';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Deref } from './deref.mjs';
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import * as S from '../types/index.mjs';
|
|
2
|
+
import type { TValidationError } from '../../error/index.mjs';
|
|
3
|
+
export declare function HasUnevaluated(context: Record<PropertyKey, unknown>, schema: unknown): boolean;
|
|
4
|
+
export declare class BaseContext {
|
|
5
|
+
protected readonly context: Record<PropertyKey, S.XSchemaLike>;
|
|
6
|
+
protected readonly schema: S.XSchemaLike;
|
|
7
|
+
constructor(context: Record<PropertyKey, S.XSchemaLike>, schema: S.XSchemaLike);
|
|
8
|
+
GetContext(): Record<PropertyKey, object | boolean>;
|
|
9
|
+
GetSchema(): object | boolean;
|
|
10
|
+
}
|
|
11
|
+
export declare class BuildContext extends BaseContext {
|
|
12
|
+
private readonly hasUnevaluated;
|
|
13
|
+
constructor(context: Record<PropertyKey, S.XSchemaLike>, schema: S.XSchemaLike, hasUnevaluated: boolean);
|
|
14
|
+
UseUnevaluated(): boolean;
|
|
15
|
+
AddIndex(index: string): string;
|
|
16
|
+
AddKey(key: string): string;
|
|
17
|
+
Clone(): string;
|
|
18
|
+
Merge(results: string): string;
|
|
19
|
+
}
|
|
20
|
+
export declare class CheckContext extends BaseContext {
|
|
21
|
+
private readonly indices;
|
|
22
|
+
private readonly keys;
|
|
23
|
+
constructor(context: Record<PropertyKey, S.XSchemaLike>, schema: S.XSchemaLike);
|
|
24
|
+
AddIndex(index: number): true;
|
|
25
|
+
AddKey(key: string): true;
|
|
26
|
+
GetIndices(): Set<number>;
|
|
27
|
+
GetKeys(): Set<string>;
|
|
28
|
+
Clone(): CheckContext;
|
|
29
|
+
Merge(results: CheckContext[]): true;
|
|
30
|
+
}
|
|
31
|
+
export type ErrorContextCallback = (error: TValidationError) => unknown;
|
|
32
|
+
export declare class ErrorContext extends CheckContext {
|
|
33
|
+
private readonly callback;
|
|
34
|
+
constructor(context: Record<PropertyKey, S.XSchemaLike>, schema: S.XSchemaLike, callback: ErrorContextCallback);
|
|
35
|
+
AddError(error: TValidationError): false;
|
|
36
|
+
}
|
|
37
|
+
export declare class AccumulatedErrorContext extends ErrorContext {
|
|
38
|
+
private readonly errors;
|
|
39
|
+
constructor(context: Record<PropertyKey, S.XSchemaLike>, schema: S.XSchemaLike);
|
|
40
|
+
AddError(error: TValidationError): false;
|
|
41
|
+
GetErrors(): TValidationError[];
|
|
42
|
+
}
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
// deno-fmt-ignore-file
|
|
2
|
+
import * as S from '../types/index.mjs';
|
|
3
|
+
import { Guard as G, EmitGuard as E } from '../../guard/index.mjs';
|
|
4
|
+
// ------------------------------------------------------------------
|
|
5
|
+
// HasUnevaluated
|
|
6
|
+
// ------------------------------------------------------------------
|
|
7
|
+
function HasUnevaluatedFromObject(value) {
|
|
8
|
+
return (S.IsUnevaluatedItems(value)
|
|
9
|
+
|| S.IsUnevaluatedProperties(value)
|
|
10
|
+
|| G.Keys(value).some(key => HasUnevaluatedFromUnknown(value[key])));
|
|
11
|
+
}
|
|
12
|
+
function HasUnevaluatedFromArray(value) {
|
|
13
|
+
return value.some(value => HasUnevaluatedFromUnknown(value));
|
|
14
|
+
}
|
|
15
|
+
function HasUnevaluatedFromUnknown(value) {
|
|
16
|
+
return (G.IsArray(value) ? HasUnevaluatedFromArray(value) :
|
|
17
|
+
G.IsObject(value) ? HasUnevaluatedFromObject(value) :
|
|
18
|
+
false);
|
|
19
|
+
}
|
|
20
|
+
export function HasUnevaluated(context, schema) {
|
|
21
|
+
return HasUnevaluatedFromUnknown(schema) || G.Keys(context).some(key => HasUnevaluatedFromUnknown(context[key]));
|
|
22
|
+
}
|
|
23
|
+
// ------------------------------------------------------------------
|
|
24
|
+
// BaseContext
|
|
25
|
+
// ------------------------------------------------------------------
|
|
26
|
+
export class BaseContext {
|
|
27
|
+
constructor(context, schema) {
|
|
28
|
+
this.context = context;
|
|
29
|
+
this.schema = schema;
|
|
30
|
+
}
|
|
31
|
+
GetContext() {
|
|
32
|
+
return this.context;
|
|
33
|
+
}
|
|
34
|
+
GetSchema() {
|
|
35
|
+
return this.schema;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
// ------------------------------------------------------------------
|
|
39
|
+
// BuildContext
|
|
40
|
+
// ------------------------------------------------------------------
|
|
41
|
+
export class BuildContext extends BaseContext {
|
|
42
|
+
constructor(context, schema, hasUnevaluated) {
|
|
43
|
+
super(context, schema);
|
|
44
|
+
this.hasUnevaluated = hasUnevaluated;
|
|
45
|
+
}
|
|
46
|
+
UseUnevaluated() {
|
|
47
|
+
return this.hasUnevaluated;
|
|
48
|
+
}
|
|
49
|
+
AddIndex(index) {
|
|
50
|
+
return E.Call(E.Member('context', 'AddIndex'), [index]);
|
|
51
|
+
}
|
|
52
|
+
AddKey(key) {
|
|
53
|
+
return E.Call(E.Member('context', 'AddKey'), [key]);
|
|
54
|
+
}
|
|
55
|
+
Clone() {
|
|
56
|
+
return E.Call(E.Member('context', 'Clone'), []);
|
|
57
|
+
}
|
|
58
|
+
Merge(results) {
|
|
59
|
+
return E.Call(E.Member('context', 'Merge'), [results]);
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
// ------------------------------------------------------------------
|
|
63
|
+
// CheckContext
|
|
64
|
+
// ------------------------------------------------------------------
|
|
65
|
+
export class CheckContext extends BaseContext {
|
|
66
|
+
constructor(context, schema) {
|
|
67
|
+
super(context, schema);
|
|
68
|
+
this.indices = new Set();
|
|
69
|
+
this.keys = new Set();
|
|
70
|
+
}
|
|
71
|
+
AddIndex(index) {
|
|
72
|
+
this.indices.add(index);
|
|
73
|
+
return true;
|
|
74
|
+
}
|
|
75
|
+
AddKey(key) {
|
|
76
|
+
this.keys.add(key);
|
|
77
|
+
return true;
|
|
78
|
+
}
|
|
79
|
+
GetIndices() {
|
|
80
|
+
return this.indices;
|
|
81
|
+
}
|
|
82
|
+
GetKeys() {
|
|
83
|
+
return this.keys;
|
|
84
|
+
}
|
|
85
|
+
Clone() {
|
|
86
|
+
return new CheckContext(this.context, this.schema);
|
|
87
|
+
}
|
|
88
|
+
Merge(results) {
|
|
89
|
+
for (const context of results) {
|
|
90
|
+
context.indices.forEach(value => this.indices.add(value));
|
|
91
|
+
context.keys.forEach(value => this.keys.add(value));
|
|
92
|
+
}
|
|
93
|
+
return true;
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
export class ErrorContext extends CheckContext {
|
|
97
|
+
constructor(context, schema, callback) {
|
|
98
|
+
super(context, schema);
|
|
99
|
+
this.callback = callback;
|
|
100
|
+
}
|
|
101
|
+
AddError(error) {
|
|
102
|
+
this.callback(error);
|
|
103
|
+
return false;
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
// ------------------------------------------------------------------
|
|
107
|
+
// AccumulatedErrorContext
|
|
108
|
+
// ------------------------------------------------------------------
|
|
109
|
+
export class AccumulatedErrorContext extends ErrorContext {
|
|
110
|
+
constructor(context, schema) {
|
|
111
|
+
super(context, schema, error => this.errors.push(error));
|
|
112
|
+
this.errors = [];
|
|
113
|
+
}
|
|
114
|
+
AddError(error) {
|
|
115
|
+
this.errors.push(error);
|
|
116
|
+
return false;
|
|
117
|
+
}
|
|
118
|
+
GetErrors() {
|
|
119
|
+
return this.errors;
|
|
120
|
+
}
|
|
121
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export interface TExternal {
|
|
2
|
+
/** The name of the variable that holds external variables in generated code */
|
|
3
|
+
identifier: string;
|
|
4
|
+
/** An array of external variables */
|
|
5
|
+
variables: unknown[];
|
|
6
|
+
}
|
|
7
|
+
export declare function ResetExternal(): void;
|
|
8
|
+
export declare function CreateExternalVariable(value: unknown): string;
|
|
9
|
+
export declare function GetExternal(): TExternal;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
// deno-fmt-ignore-file
|
|
2
|
+
const identifier = 'external_';
|
|
3
|
+
let resetCount = 0;
|
|
4
|
+
const state = {
|
|
5
|
+
identifier: `${identifier}${resetCount}`,
|
|
6
|
+
variables: []
|
|
7
|
+
};
|
|
8
|
+
// ------------------------------------------------------------------
|
|
9
|
+
// ResetExternals
|
|
10
|
+
//
|
|
11
|
+
// Each reset results in a new external group identifier. This is done
|
|
12
|
+
// to prevent variable name overlap when generating and evaluating
|
|
13
|
+
// multiple types in the same scope.
|
|
14
|
+
//
|
|
15
|
+
// ------------------------------------------------------------------
|
|
16
|
+
export function ResetExternal() {
|
|
17
|
+
state.identifier = `${identifier}${resetCount}`;
|
|
18
|
+
state.variables = [];
|
|
19
|
+
resetCount += 1;
|
|
20
|
+
}
|
|
21
|
+
// ------------------------------------------------------------------
|
|
22
|
+
// CreateExternalVariable
|
|
23
|
+
// ------------------------------------------------------------------
|
|
24
|
+
export function CreateExternalVariable(value) {
|
|
25
|
+
const call = `${state.identifier}[${state.variables.length}]`;
|
|
26
|
+
state.variables.push(value);
|
|
27
|
+
return call;
|
|
28
|
+
}
|
|
29
|
+
// ------------------------------------------------------------------
|
|
30
|
+
// GetExternals
|
|
31
|
+
// ------------------------------------------------------------------
|
|
32
|
+
export function GetExternal() {
|
|
33
|
+
return state;
|
|
34
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as S from '../types/index.mjs';
|
|
2
|
+
import { BuildContext } from './_context.mjs';
|
|
3
|
+
export declare function ResetFunctions(): void;
|
|
4
|
+
export declare function GetFunctions(): string[];
|
|
5
|
+
export declare function CreateFunction(context: BuildContext, schema: S.XSchemaLike, value: string): string;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
// deno-fmt-ignore-file
|
|
2
|
+
import { Hashing } from '../../system/hashing/index.mjs';
|
|
3
|
+
import { EmitGuard as E } from '../../guard/index.mjs';
|
|
4
|
+
import { BuildSchema } from './schema.mjs';
|
|
5
|
+
const functions = new Map();
|
|
6
|
+
// ------------------------------------------------------------------
|
|
7
|
+
// CreateCallExpression
|
|
8
|
+
// ------------------------------------------------------------------
|
|
9
|
+
function CreateCallExpression(context, schema, hash, value) {
|
|
10
|
+
return context.UseUnevaluated()
|
|
11
|
+
? E.Call(`check_${hash}`, ['context', value])
|
|
12
|
+
: E.Call(`check_${hash}`, [value]);
|
|
13
|
+
}
|
|
14
|
+
// ------------------------------------------------------------------
|
|
15
|
+
// CreateFunctionExpression
|
|
16
|
+
// ------------------------------------------------------------------
|
|
17
|
+
function CreateFunctionExpression(context, schema, hash) {
|
|
18
|
+
const expression = BuildSchema(context, schema, 'value');
|
|
19
|
+
return context.UseUnevaluated()
|
|
20
|
+
? E.ConstDeclaration(`check_${hash}`, E.ArrowFunction(['context', 'value'], expression))
|
|
21
|
+
: E.ConstDeclaration(`check_${hash}`, E.ArrowFunction(['value'], expression));
|
|
22
|
+
}
|
|
23
|
+
// ------------------------------------------------------------------
|
|
24
|
+
// ResetFunctions
|
|
25
|
+
// ------------------------------------------------------------------
|
|
26
|
+
export function ResetFunctions() {
|
|
27
|
+
functions.clear();
|
|
28
|
+
}
|
|
29
|
+
// ------------------------------------------------------------------
|
|
30
|
+
// GetFunctions
|
|
31
|
+
// ------------------------------------------------------------------
|
|
32
|
+
export function GetFunctions() {
|
|
33
|
+
return [...functions.values()];
|
|
34
|
+
}
|
|
35
|
+
// ------------------------------------------------------------------
|
|
36
|
+
// CreateFunction
|
|
37
|
+
// ------------------------------------------------------------------
|
|
38
|
+
export function CreateFunction(context, schema, value) {
|
|
39
|
+
const hash = Hashing.Hash(schema);
|
|
40
|
+
const call = CreateCallExpression(context, schema, hash, value);
|
|
41
|
+
if (functions.has(hash))
|
|
42
|
+
return call;
|
|
43
|
+
functions.set(hash, '');
|
|
44
|
+
functions.set(hash, CreateFunctionExpression(context, schema, hash));
|
|
45
|
+
return call;
|
|
46
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
// deno-fmt-ignore-file
|
|
2
|
+
import { EmitGuard as E } from '../../guard/index.mjs';
|
|
3
|
+
import { BuildSchema } from './schema.mjs';
|
|
4
|
+
// ------------------------------------------------------------------
|
|
5
|
+
// Reducer
|
|
6
|
+
//
|
|
7
|
+
// This function is used to generate an reducer evaluation context
|
|
8
|
+
// for the allOf, anyOf, oneOf and not keywords. The reducer mechansism
|
|
9
|
+
// is required from 2019-09 onwards to gather evaluated keys and indices
|
|
10
|
+
// for the unevaluatedItems and unevaluatedProperties keywords.
|
|
11
|
+
//
|
|
12
|
+
// ------------------------------------------------------------------
|
|
13
|
+
//
|
|
14
|
+
// const context = new Context() // exterior
|
|
15
|
+
//
|
|
16
|
+
// (() => {
|
|
17
|
+
// const results = []
|
|
18
|
+
//
|
|
19
|
+
// const context_0 = context.Clone()
|
|
20
|
+
// const context_1 = context.Clone()
|
|
21
|
+
// const context_2 = context.Clone()
|
|
22
|
+
// const context_3 = context.Clone()
|
|
23
|
+
//
|
|
24
|
+
// const condition_0 = ((context) => <subschema>)(context_0)
|
|
25
|
+
// const condition_1 = ((context) => <subschema>)(context_1)
|
|
26
|
+
// const condition_2 = ((context) => <subschema>)(context_2)
|
|
27
|
+
// const condition_3 = ((context) => <subschema>)(context_3)
|
|
28
|
+
//
|
|
29
|
+
// if(condition_0) results.push(context_0)
|
|
30
|
+
// if(condition_1) results.push(context_1)
|
|
31
|
+
// if(condition_2) results.push(context_2)
|
|
32
|
+
// if(condition_3) results.push(context_3)
|
|
33
|
+
//
|
|
34
|
+
// return <check> && context.Merge(results)
|
|
35
|
+
// })()
|
|
36
|
+
//
|
|
37
|
+
// ------------------------------------------------------------------
|
|
38
|
+
export function Reducer(context, schemas, value, check) {
|
|
39
|
+
const results = E.ConstDeclaration('results', '[]');
|
|
40
|
+
const context_n = schemas.map((_schema, index) => E.ConstDeclaration(`context_${index}`, context.Clone()));
|
|
41
|
+
const condition_n = schemas.map((schema, index) => E.ConstDeclaration(`condition_${index}`, E.Call(E.ArrowFunction(['context'], BuildSchema(context, schema, value)), [`context_${index}`])));
|
|
42
|
+
const checks = schemas.map((_schema, index) => E.If(`condition_${index}`, E.Call(E.Member('results', 'push'), [`context_${index}`])));
|
|
43
|
+
const returns = E.Return(E.And(check, context.Merge('results')));
|
|
44
|
+
return E.Call(E.ArrowFunction([], E.Statements([results, ...context_n, ...condition_n, ...checks, returns])), []);
|
|
45
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as S from '../types/index.mjs';
|
|
2
|
+
import { BuildContext, CheckContext, ErrorContext } from './_context.mjs';
|
|
3
|
+
export declare function BuildRefine(context: BuildContext, schema: S.XRefine, value: string): string;
|
|
4
|
+
export declare function CheckRefine(context: CheckContext, schema: S.XRefine, value: unknown): boolean;
|
|
5
|
+
export declare function ErrorRefine(context: ErrorContext, schemaPath: string, instancePath: string, schema: S.XRefine, value: unknown): boolean;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
// deno-fmt-ignore-file
|
|
2
|
+
import * as V from './_externals.mjs';
|
|
3
|
+
import { EmitGuard as E, Guard as G } from '../../guard/index.mjs';
|
|
4
|
+
// ------------------------------------------------------------------
|
|
5
|
+
// Build
|
|
6
|
+
// ------------------------------------------------------------------
|
|
7
|
+
export function BuildRefine(context, schema, value) {
|
|
8
|
+
const refinements = V.CreateExternalVariable(schema['~refine'].map((refinement) => refinement));
|
|
9
|
+
return E.Call(E.Member(refinements, 'every'), [E.ArrowFunction(['refinement'], E.Call(E.Member('refinement', 'callback'), [value]))]);
|
|
10
|
+
}
|
|
11
|
+
// ------------------------------------------------------------------
|
|
12
|
+
// Check
|
|
13
|
+
// ------------------------------------------------------------------
|
|
14
|
+
export function CheckRefine(context, schema, value) {
|
|
15
|
+
return G.Every(schema['~refine'], (refinement) => refinement.callback(value));
|
|
16
|
+
}
|
|
17
|
+
// ------------------------------------------------------------------
|
|
18
|
+
// Error
|
|
19
|
+
// ------------------------------------------------------------------
|
|
20
|
+
export function ErrorRefine(context, schemaPath, instancePath, schema, value) {
|
|
21
|
+
return G.EveryAll(schema['~refine'], (refinement, index) => {
|
|
22
|
+
return refinement.callback(value) || context.AddError({
|
|
23
|
+
keyword: '~refine',
|
|
24
|
+
schemaPath: `${schemaPath}/~refine`,
|
|
25
|
+
instancePath,
|
|
26
|
+
params: { index, message: refinement.message },
|
|
27
|
+
});
|
|
28
|
+
});
|
|
29
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as S from '../types/index.mjs';
|
|
2
|
+
import { BuildContext, CheckContext, ErrorContext } from './_context.mjs';
|
|
3
|
+
export declare function BuildStandardSchemaV1(context: BuildContext, schema: S.XStandardSchemaV1, value: string): string;
|
|
4
|
+
export declare function CheckStandardSchemaV1(context: CheckContext, schema: S.XStandardSchemaV1, value: unknown): boolean;
|
|
5
|
+
export declare function ErrorStandardSchemaV1(context: ErrorContext, schemaPath: string, instancePath: string, schema: S.XStandardSchemaV1, value: unknown): boolean;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
// deno-fmt-ignore-file
|
|
2
|
+
import * as V from './_externals.mjs';
|
|
3
|
+
import { EmitGuard as E, Guard as G } from '../../guard/index.mjs';
|
|
4
|
+
// ------------------------------------------------------------------
|
|
5
|
+
// Build
|
|
6
|
+
// ------------------------------------------------------------------
|
|
7
|
+
export function BuildStandardSchemaV1(context, schema, value) {
|
|
8
|
+
return E.Not(E.HasPropertyKey(E.Call(E.Member(E.Member(V.CreateExternalVariable(schema), '~standard'), 'validate'), [value]), E.Constant('issues')));
|
|
9
|
+
}
|
|
10
|
+
// ------------------------------------------------------------------
|
|
11
|
+
// Check
|
|
12
|
+
// ------------------------------------------------------------------
|
|
13
|
+
export function CheckStandardSchemaV1(context, schema, value) {
|
|
14
|
+
return !G.HasPropertyKey(schema['~standard'].validate(value), 'issues');
|
|
15
|
+
}
|
|
16
|
+
// ------------------------------------------------------------------
|
|
17
|
+
// Error
|
|
18
|
+
// ------------------------------------------------------------------
|
|
19
|
+
export function ErrorStandardSchemaV1(context, schemaPath, instancePath, schema, value) {
|
|
20
|
+
const result = schema['~standard'].validate(value);
|
|
21
|
+
return !G.HasPropertyKey(result, 'issues') || context.AddError({
|
|
22
|
+
keyword: '~standard',
|
|
23
|
+
schemaPath: `${schemaPath}/~standard`,
|
|
24
|
+
instancePath,
|
|
25
|
+
params: { vendor: schema[`~standard`].vendor, issues: result.issues },
|
|
26
|
+
});
|
|
27
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as S from '../types/index.mjs';
|
|
2
|
+
import { BuildContext, CheckContext, ErrorContext } from './_context.mjs';
|
|
3
|
+
export declare function BuildAdditionalItems(context: BuildContext, schema: S.XAdditionalItems, value: string): string;
|
|
4
|
+
export declare function CheckAdditionalItems(context: CheckContext, schema: S.XAdditionalItems, value: unknown[]): boolean;
|
|
5
|
+
export declare function ErrorAdditionalItems(context: ErrorContext, schemaPath: string, instancePath: string, schema: S.XAdditionalItems, value: unknown[]): boolean;
|