typebox 1.0.31 → 1.0.33

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.
Files changed (2519) hide show
  1. package/build/cjs/compile/code.d.ts +12 -0
  2. package/build/cjs/compile/code.js +68 -0
  3. package/build/cjs/compile/compile.d.ts +6 -0
  4. package/build/cjs/compile/compile.js +14 -0
  5. package/build/cjs/compile/index.d.ts +12 -0
  6. package/build/cjs/compile/index.js +29 -0
  7. package/build/cjs/compile/validator.d.ts +37 -0
  8. package/build/cjs/compile/validator.js +96 -0
  9. package/build/cjs/error/errors.js +21 -0
  10. package/build/cjs/error/index.d.ts +1 -0
  11. package/build/cjs/error/index.js +17 -0
  12. package/build/cjs/format/_registry.js +105 -0
  13. package/build/cjs/format/date-time.js +14 -0
  14. package/build/cjs/format/date.js +22 -0
  15. package/build/cjs/format/duration.js +11 -0
  16. package/build/cjs/format/email.js +8 -0
  17. package/build/cjs/format/format.d.ts +22 -0
  18. package/build/cjs/format/format.js +38 -0
  19. package/build/cjs/format/hostname.js +8 -0
  20. package/build/cjs/format/idn-email.js +8 -0
  21. package/build/cjs/format/idn-hostname.js +131 -0
  22. package/build/cjs/format/index.d.ts +4 -0
  23. package/build/cjs/format/index.js +21 -0
  24. package/build/cjs/format/ipv4.js +12 -0
  25. package/build/cjs/format/ipv6.js +12 -0
  26. package/build/cjs/format/iri-reference.js +62 -0
  27. package/build/cjs/format/iri.js +16 -0
  28. package/build/cjs/format/json-pointer-uri-fragment.js +12 -0
  29. package/build/cjs/format/json-pointer.js +12 -0
  30. package/build/cjs/format/regex.js +20 -0
  31. package/build/cjs/format/relative-json-pointer.js +12 -0
  32. package/build/cjs/format/time.js +30 -0
  33. package/build/cjs/format/uri-reference.js +12 -0
  34. package/build/cjs/format/uri-template.js +13 -0
  35. package/build/cjs/format/uri.js +12 -0
  36. package/build/cjs/format/url.js +12 -0
  37. package/build/cjs/format/uuid.js +12 -0
  38. package/build/cjs/guard/emit.js +237 -0
  39. package/build/cjs/guard/globals.js +111 -0
  40. package/build/cjs/guard/guard.js +233 -0
  41. package/build/cjs/guard/index.d.ts +6 -0
  42. package/build/cjs/guard/index.js +9 -0
  43. package/build/cjs/guard/native.js +72 -0
  44. package/build/cjs/index.d.ts +8 -0
  45. package/build/cjs/index.js +31 -0
  46. package/build/cjs/schema/build.d.ts +35 -0
  47. package/build/cjs/schema/build.js +102 -0
  48. package/build/cjs/schema/check.d.ts +5 -0
  49. package/build/cjs/schema/check.js +15 -0
  50. package/build/cjs/schema/deref/deref.d.ts +4 -0
  51. package/build/cjs/schema/deref/deref.js +81 -0
  52. package/build/cjs/schema/deref/index.d.ts +1 -0
  53. package/build/cjs/schema/deref/index.js +5 -0
  54. package/build/cjs/schema/engine/_context.d.ts +42 -0
  55. package/build/cjs/schema/engine/_context.js +130 -0
  56. package/build/cjs/schema/engine/_exact_optional.js +25 -0
  57. package/build/cjs/schema/engine/_externals.js +39 -0
  58. package/build/cjs/schema/engine/_functions.d.ts +5 -0
  59. package/build/cjs/schema/engine/_functions.js +51 -0
  60. package/build/cjs/schema/engine/_guard.d.ts +5 -0
  61. package/build/cjs/schema/engine/_guard.js +31 -0
  62. package/build/cjs/schema/engine/_reducer.d.ts +3 -0
  63. package/build/cjs/schema/engine/_reducer.js +48 -0
  64. package/build/cjs/schema/engine/_refine.d.ts +5 -0
  65. package/build/cjs/schema/engine/_refine.js +34 -0
  66. package/build/cjs/schema/engine/additionalItems.d.ts +5 -0
  67. package/build/cjs/schema/engine/additionalItems.js +53 -0
  68. package/build/cjs/schema/engine/additionalProperties.d.ts +8 -0
  69. package/build/cjs/schema/engine/additionalProperties.js +111 -0
  70. package/build/cjs/schema/engine/allOf.d.ts +5 -0
  71. package/build/cjs/schema/engine/allOf.js +52 -0
  72. package/build/cjs/schema/engine/anyOf.d.ts +5 -0
  73. package/build/cjs/schema/engine/anyOf.js +57 -0
  74. package/build/cjs/schema/engine/boolean.d.ts +4 -0
  75. package/build/cjs/schema/engine/boolean.js +30 -0
  76. package/build/cjs/schema/engine/const.d.ts +5 -0
  77. package/build/cjs/schema/engine/const.js +35 -0
  78. package/build/cjs/schema/engine/contains.d.ts +5 -0
  79. package/build/cjs/schema/engine/contains.js +45 -0
  80. package/build/cjs/schema/engine/dependencies.d.ts +5 -0
  81. package/build/cjs/schema/engine/dependencies.js +50 -0
  82. package/build/cjs/schema/engine/dependentRequired.d.ts +5 -0
  83. package/build/cjs/schema/engine/dependentRequired.js +45 -0
  84. package/build/cjs/schema/engine/dependentSchemas.d.ts +5 -0
  85. package/build/cjs/schema/engine/dependentSchemas.js +43 -0
  86. package/build/cjs/schema/engine/enum.d.ts +5 -0
  87. package/build/cjs/schema/engine/enum.js +38 -0
  88. package/build/cjs/schema/engine/exclusiveMaximum.d.ts +5 -0
  89. package/build/cjs/schema/engine/exclusiveMaximum.js +30 -0
  90. package/build/cjs/schema/engine/exclusiveMinimum.d.ts +5 -0
  91. package/build/cjs/schema/engine/exclusiveMinimum.js +30 -0
  92. package/build/cjs/schema/engine/format.d.ts +5 -0
  93. package/build/cjs/schema/engine/format.js +31 -0
  94. package/build/cjs/schema/engine/if.d.ts +5 -0
  95. package/build/cjs/schema/engine/if.js +52 -0
  96. package/build/cjs/schema/engine/index.d.ts +47 -0
  97. package/build/cjs/schema/engine/index.js +69 -0
  98. package/build/cjs/schema/engine/items.d.ts +5 -0
  99. package/build/cjs/schema/engine/items.js +73 -0
  100. package/build/cjs/schema/engine/maxContains.d.ts +5 -0
  101. package/build/cjs/schema/engine/maxContains.js +45 -0
  102. package/build/cjs/schema/engine/maxItems.d.ts +5 -0
  103. package/build/cjs/schema/engine/maxItems.js +30 -0
  104. package/build/cjs/schema/engine/maxLength.d.ts +5 -0
  105. package/build/cjs/schema/engine/maxLength.js +30 -0
  106. package/build/cjs/schema/engine/maxProperties.d.ts +5 -0
  107. package/build/cjs/schema/engine/maxProperties.js +30 -0
  108. package/build/cjs/schema/engine/maximum.d.ts +5 -0
  109. package/build/cjs/schema/engine/maximum.js +30 -0
  110. package/build/cjs/schema/engine/minContains.d.ts +5 -0
  111. package/build/cjs/schema/engine/minContains.js +44 -0
  112. package/build/cjs/schema/engine/minItems.d.ts +5 -0
  113. package/build/cjs/schema/engine/minItems.js +30 -0
  114. package/build/cjs/schema/engine/minLength.d.ts +5 -0
  115. package/build/cjs/schema/engine/minLength.js +30 -0
  116. package/build/cjs/schema/engine/minProperties.d.ts +5 -0
  117. package/build/cjs/schema/engine/minProperties.js +30 -0
  118. package/build/cjs/schema/engine/minimum.d.ts +5 -0
  119. package/build/cjs/schema/engine/minimum.js +30 -0
  120. package/build/cjs/schema/engine/multipleOf.d.ts +5 -0
  121. package/build/cjs/schema/engine/multipleOf.js +30 -0
  122. package/build/cjs/schema/engine/not.d.ts +5 -0
  123. package/build/cjs/schema/engine/not.js +41 -0
  124. package/build/cjs/schema/engine/oneOf.d.ts +5 -0
  125. package/build/cjs/schema/engine/oneOf.js +63 -0
  126. package/build/cjs/schema/engine/pattern.d.ts +5 -0
  127. package/build/cjs/schema/engine/pattern.js +33 -0
  128. package/build/cjs/schema/engine/patternProperties.d.ts +5 -0
  129. package/build/cjs/schema/engine/patternProperties.js +47 -0
  130. package/build/cjs/schema/engine/prefixItems.d.ts +5 -0
  131. package/build/cjs/schema/engine/prefixItems.js +40 -0
  132. package/build/cjs/schema/engine/properties.d.ts +5 -0
  133. package/build/cjs/schema/engine/properties.js +80 -0
  134. package/build/cjs/schema/engine/propertyNames.d.ts +5 -0
  135. package/build/cjs/schema/engine/propertyNames.js +42 -0
  136. package/build/cjs/schema/engine/ref.d.ts +5 -0
  137. package/build/cjs/schema/engine/ref.js +48 -0
  138. package/build/cjs/schema/engine/required.d.ts +5 -0
  139. package/build/cjs/schema/engine/required.js +37 -0
  140. package/build/cjs/schema/engine/schema.d.ts +5 -0
  141. package/build/cjs/schema/engine/schema.js +327 -0
  142. package/build/cjs/schema/engine/type.d.ts +5 -0
  143. package/build/cjs/schema/engine/type.js +79 -0
  144. package/build/cjs/schema/engine/unevaluatedItems.d.ts +5 -0
  145. package/build/cjs/schema/engine/unevaluatedItems.js +54 -0
  146. package/build/cjs/schema/engine/unevaluatedProperties.d.ts +5 -0
  147. package/build/cjs/schema/engine/unevaluatedProperties.js +54 -0
  148. package/build/cjs/schema/engine/uniqueItems.d.ts +5 -0
  149. package/build/cjs/schema/engine/uniqueItems.js +56 -0
  150. package/build/cjs/schema/errors.d.ts +6 -0
  151. package/build/cjs/schema/errors.js +27 -0
  152. package/build/cjs/schema/index.d.ts +3 -0
  153. package/build/cjs/schema/index.js +25 -0
  154. package/build/cjs/schema/schema.d.ts +5 -0
  155. package/build/cjs/schema/schema.js +21 -0
  156. package/build/cjs/schema/types/_guard.d.ts +10 -0
  157. package/build/cjs/schema/types/_guard.js +20 -0
  158. package/build/cjs/schema/types/_refine.d.ts +13 -0
  159. package/build/cjs/schema/types/_refine.js +21 -0
  160. package/build/cjs/schema/types/additionalItems.d.ts +9 -0
  161. package/build/cjs/schema/types/additionalItems.js +17 -0
  162. package/build/cjs/schema/types/additionalProperties.d.ts +9 -0
  163. package/build/cjs/schema/types/additionalProperties.js +17 -0
  164. package/build/cjs/schema/types/allOf.d.ts +9 -0
  165. package/build/cjs/schema/types/allOf.js +18 -0
  166. package/build/cjs/schema/types/anyOf.d.ts +9 -0
  167. package/build/cjs/schema/types/anyOf.js +18 -0
  168. package/build/cjs/schema/types/const.d.ts +9 -0
  169. package/build/cjs/schema/types/const.js +15 -0
  170. package/build/cjs/schema/types/contains.d.ts +9 -0
  171. package/build/cjs/schema/types/contains.js +17 -0
  172. package/build/cjs/schema/types/contentEncoding.d.ts +9 -0
  173. package/build/cjs/schema/types/contentEncoding.js +16 -0
  174. package/build/cjs/schema/types/contentMediaType.d.ts +9 -0
  175. package/build/cjs/schema/types/contentMediaType.js +16 -0
  176. package/build/cjs/schema/types/default.d.ts +9 -0
  177. package/build/cjs/schema/types/default.js +15 -0
  178. package/build/cjs/schema/types/defs.d.ts +6 -0
  179. package/build/cjs/schema/types/defs.js +15 -0
  180. package/build/cjs/schema/types/dependencies.d.ts +11 -0
  181. package/build/cjs/schema/types/dependencies.js +19 -0
  182. package/build/cjs/schema/types/dependentRequired.d.ts +9 -0
  183. package/build/cjs/schema/types/dependentRequired.js +18 -0
  184. package/build/cjs/schema/types/dependentSchemas.d.ts +9 -0
  185. package/build/cjs/schema/types/dependentSchemas.js +18 -0
  186. package/build/cjs/schema/types/else.d.ts +9 -0
  187. package/build/cjs/schema/types/else.js +17 -0
  188. package/build/cjs/schema/types/enum.d.ts +9 -0
  189. package/build/cjs/schema/types/enum.js +16 -0
  190. package/build/cjs/schema/types/exclusiveMaximum.d.ts +9 -0
  191. package/build/cjs/schema/types/exclusiveMaximum.js +16 -0
  192. package/build/cjs/schema/types/exclusiveMinimum.d.ts +9 -0
  193. package/build/cjs/schema/types/exclusiveMinimum.js +16 -0
  194. package/build/cjs/schema/types/format.d.ts +9 -0
  195. package/build/cjs/schema/types/format.js +16 -0
  196. package/build/cjs/schema/types/id.d.ts +9 -0
  197. package/build/cjs/schema/types/id.js +16 -0
  198. package/build/cjs/schema/types/if.d.ts +9 -0
  199. package/build/cjs/schema/types/if.js +17 -0
  200. package/build/cjs/schema/types/index.d.ts +51 -0
  201. package/build/cjs/schema/types/index.js +73 -0
  202. package/build/cjs/schema/types/items.d.ts +19 -0
  203. package/build/cjs/schema/types/items.js +31 -0
  204. package/build/cjs/schema/types/maxContains.d.ts +9 -0
  205. package/build/cjs/schema/types/maxContains.js +16 -0
  206. package/build/cjs/schema/types/maxItems.d.ts +9 -0
  207. package/build/cjs/schema/types/maxItems.js +16 -0
  208. package/build/cjs/schema/types/maxLength.d.ts +9 -0
  209. package/build/cjs/schema/types/maxLength.js +16 -0
  210. package/build/cjs/schema/types/maxProperties.d.ts +9 -0
  211. package/build/cjs/schema/types/maxProperties.js +16 -0
  212. package/build/cjs/schema/types/maximum.d.ts +9 -0
  213. package/build/cjs/schema/types/maximum.js +16 -0
  214. package/build/cjs/schema/types/minContains.d.ts +9 -0
  215. package/build/cjs/schema/types/minContains.js +16 -0
  216. package/build/cjs/schema/types/minItems.d.ts +9 -0
  217. package/build/cjs/schema/types/minItems.js +16 -0
  218. package/build/cjs/schema/types/minLength.d.ts +9 -0
  219. package/build/cjs/schema/types/minLength.js +16 -0
  220. package/build/cjs/schema/types/minProperties.d.ts +9 -0
  221. package/build/cjs/schema/types/minProperties.js +16 -0
  222. package/build/cjs/schema/types/minimum.d.ts +9 -0
  223. package/build/cjs/schema/types/minimum.js +16 -0
  224. package/build/cjs/schema/types/multipleOf.d.ts +9 -0
  225. package/build/cjs/schema/types/multipleOf.js +16 -0
  226. package/build/cjs/schema/types/not.d.ts +9 -0
  227. package/build/cjs/schema/types/not.js +17 -0
  228. package/build/cjs/schema/types/oneOf.d.ts +9 -0
  229. package/build/cjs/schema/types/oneOf.js +18 -0
  230. package/build/cjs/schema/types/pattern.d.ts +9 -0
  231. package/build/cjs/schema/types/pattern.js +17 -0
  232. package/build/cjs/schema/types/patternProperties.d.ts +9 -0
  233. package/build/cjs/schema/types/patternProperties.js +18 -0
  234. package/build/cjs/schema/types/prefixItems.d.ts +8 -0
  235. package/build/cjs/schema/types/prefixItems.js +17 -0
  236. package/build/cjs/schema/types/properties.d.ts +9 -0
  237. package/build/cjs/schema/types/properties.js +18 -0
  238. package/build/cjs/schema/types/propertyNames.d.ts +9 -0
  239. package/build/cjs/schema/types/propertyNames.js +18 -0
  240. package/build/cjs/schema/types/ref.d.ts +9 -0
  241. package/build/cjs/schema/types/ref.js +16 -0
  242. package/build/cjs/schema/types/required.d.ts +9 -0
  243. package/build/cjs/schema/types/required.js +17 -0
  244. package/build/cjs/schema/types/schema.js +19 -0
  245. package/build/cjs/schema/types/static.d.ts +113 -0
  246. package/build/cjs/schema/types/static.js +3 -0
  247. package/build/cjs/schema/types/then.d.ts +9 -0
  248. package/build/cjs/schema/types/then.js +17 -0
  249. package/build/cjs/schema/types/type.d.ts +9 -0
  250. package/build/cjs/schema/types/type.js +18 -0
  251. package/build/cjs/schema/types/unevaluatedItems.d.ts +9 -0
  252. package/build/cjs/schema/types/unevaluatedItems.js +17 -0
  253. package/build/cjs/schema/types/unevaluatedProperties.d.ts +9 -0
  254. package/build/cjs/schema/types/unevaluatedProperties.js +17 -0
  255. package/build/cjs/schema/types/uniqueItems.d.ts +9 -0
  256. package/build/cjs/schema/types/uniqueItems.js +16 -0
  257. package/build/cjs/system/arguments/arguments.js +12 -0
  258. package/build/cjs/system/arguments/index.d.ts +1 -0
  259. package/build/cjs/system/arguments/index.js +4 -0
  260. package/build/cjs/system/environment/can-evaluate.js +29 -0
  261. package/build/cjs/system/environment/environment.d.ts +1 -0
  262. package/build/cjs/system/environment/environment.js +17 -0
  263. package/build/cjs/system/environment/index.d.ts +1 -0
  264. package/build/cjs/system/environment/index.js +4 -0
  265. package/build/cjs/system/hashing/hash.js +236 -0
  266. package/build/cjs/system/hashing/index.d.ts +1 -0
  267. package/build/cjs/system/hashing/index.js +4 -0
  268. package/build/cjs/system/index.d.ts +4 -0
  269. package/build/cjs/system/index.js +21 -0
  270. package/build/cjs/system/locale/_config.d.ts +7 -0
  271. package/build/cjs/system/locale/_config.js +20 -0
  272. package/build/cjs/system/locale/_locale.d.ts +40 -0
  273. package/build/cjs/system/locale/_locale.js +56 -0
  274. package/build/cjs/system/locale/ar_001.d.ts +3 -0
  275. package/build/cjs/system/locale/ar_001.js +44 -0
  276. package/build/cjs/system/locale/bn_BD.d.ts +3 -0
  277. package/build/cjs/system/locale/bn_BD.js +44 -0
  278. package/build/cjs/system/locale/cs_CZ.d.ts +3 -0
  279. package/build/cjs/system/locale/cs_CZ.js +44 -0
  280. package/build/cjs/system/locale/de_DE.d.ts +3 -0
  281. package/build/cjs/system/locale/de_DE.js +44 -0
  282. package/build/cjs/system/locale/el_GR.d.ts +3 -0
  283. package/build/cjs/system/locale/el_GR.js +44 -0
  284. package/build/cjs/system/locale/en_US.d.ts +3 -0
  285. package/build/cjs/system/locale/en_US.js +43 -0
  286. package/build/cjs/system/locale/es_419.d.ts +3 -0
  287. package/build/cjs/system/locale/es_419.js +44 -0
  288. package/build/cjs/system/locale/es_AR.d.ts +3 -0
  289. package/build/cjs/system/locale/es_AR.js +44 -0
  290. package/build/cjs/system/locale/es_ES.d.ts +3 -0
  291. package/build/cjs/system/locale/es_ES.js +44 -0
  292. package/build/cjs/system/locale/es_MX.d.ts +3 -0
  293. package/build/cjs/system/locale/es_MX.js +44 -0
  294. package/build/cjs/system/locale/fa_IR.d.ts +3 -0
  295. package/build/cjs/system/locale/fa_IR.js +44 -0
  296. package/build/cjs/system/locale/fil_PH.d.ts +3 -0
  297. package/build/cjs/system/locale/fil_PH.js +44 -0
  298. package/build/cjs/system/locale/fr_CA.d.ts +3 -0
  299. package/build/cjs/system/locale/fr_CA.js +44 -0
  300. package/build/cjs/system/locale/fr_FR.d.ts +3 -0
  301. package/build/cjs/system/locale/fr_FR.js +44 -0
  302. package/build/cjs/system/locale/ha_NG.d.ts +3 -0
  303. package/build/cjs/system/locale/ha_NG.js +44 -0
  304. package/build/cjs/system/locale/hi_IN.d.ts +3 -0
  305. package/build/cjs/system/locale/hi_IN.js +44 -0
  306. package/build/cjs/system/locale/hu_HU.d.ts +3 -0
  307. package/build/cjs/system/locale/hu_HU.js +44 -0
  308. package/build/cjs/system/locale/id_ID.d.ts +3 -0
  309. package/build/cjs/system/locale/id_ID.js +44 -0
  310. package/build/cjs/system/locale/index.d.ts +1 -0
  311. package/build/cjs/system/locale/index.js +4 -0
  312. package/build/cjs/system/locale/it_IT.d.ts +3 -0
  313. package/build/cjs/system/locale/it_IT.js +44 -0
  314. package/build/cjs/system/locale/ja_JP.d.ts +3 -0
  315. package/build/cjs/system/locale/ja_JP.js +44 -0
  316. package/build/cjs/system/locale/ko_KR.d.ts +3 -0
  317. package/build/cjs/system/locale/ko_KR.js +44 -0
  318. package/build/cjs/system/locale/ms_MY.d.ts +3 -0
  319. package/build/cjs/system/locale/ms_MY.js +44 -0
  320. package/build/cjs/system/locale/nl_NL.d.ts +3 -0
  321. package/build/cjs/system/locale/nl_NL.js +44 -0
  322. package/build/cjs/system/locale/pl_PL.d.ts +3 -0
  323. package/build/cjs/system/locale/pl_PL.js +44 -0
  324. package/build/cjs/system/locale/pt_BR.d.ts +3 -0
  325. package/build/cjs/system/locale/pt_BR.js +44 -0
  326. package/build/cjs/system/locale/pt_PT.d.ts +3 -0
  327. package/build/cjs/system/locale/pt_PT.js +44 -0
  328. package/build/cjs/system/locale/ro_RO.d.ts +3 -0
  329. package/build/cjs/system/locale/ro_RO.js +44 -0
  330. package/build/cjs/system/locale/ru_RU.d.ts +3 -0
  331. package/build/cjs/system/locale/ru_RU.js +44 -0
  332. package/build/cjs/system/locale/sv_SE.d.ts +3 -0
  333. package/build/cjs/system/locale/sv_SE.js +44 -0
  334. package/build/cjs/system/locale/sw_TZ.d.ts +3 -0
  335. package/build/cjs/system/locale/sw_TZ.js +44 -0
  336. package/build/cjs/system/locale/th_TH.d.ts +3 -0
  337. package/build/cjs/system/locale/th_TH.js +44 -0
  338. package/build/cjs/system/locale/tr_TR.d.ts +3 -0
  339. package/build/cjs/system/locale/tr_TR.js +44 -0
  340. package/build/cjs/system/locale/uk_UA.d.ts +3 -0
  341. package/build/cjs/system/locale/uk_UA.js +44 -0
  342. package/build/cjs/system/locale/ur_PK.d.ts +3 -0
  343. package/build/cjs/system/locale/ur_PK.js +44 -0
  344. package/build/cjs/system/locale/vi_VN.d.ts +3 -0
  345. package/build/cjs/system/locale/vi_VN.js +44 -0
  346. package/build/cjs/system/locale/yo_NG.d.ts +3 -0
  347. package/build/cjs/system/locale/yo_NG.js +44 -0
  348. package/build/cjs/system/locale/zh_Hans.d.ts +3 -0
  349. package/build/cjs/system/locale/zh_Hans.js +44 -0
  350. package/build/cjs/system/locale/zh_Hant.d.ts +3 -0
  351. package/build/cjs/system/locale/zh_Hant.js +44 -0
  352. package/build/cjs/system/memory/assign.js +13 -0
  353. package/build/cjs/system/memory/clone.js +66 -0
  354. package/build/cjs/system/memory/create.js +26 -0
  355. package/build/cjs/system/memory/discard.js +19 -0
  356. package/build/cjs/system/memory/index.d.ts +1 -0
  357. package/build/cjs/system/memory/index.js +4 -0
  358. package/build/cjs/system/memory/memory.d.ts +6 -0
  359. package/build/cjs/system/memory/memory.js +23 -0
  360. package/build/cjs/system/memory/metrics.js +11 -0
  361. package/build/cjs/system/memory/update.js +35 -0
  362. package/build/cjs/system/settings/index.d.ts +1 -0
  363. package/build/cjs/system/settings/index.js +4 -0
  364. package/build/cjs/system/settings/settings.js +35 -0
  365. package/build/cjs/system/system.d.ts +6 -0
  366. package/build/cjs/system/system.js +22 -0
  367. package/build/cjs/system/unreachable/index.d.ts +1 -0
  368. package/build/cjs/system/unreachable/index.js +17 -0
  369. package/build/cjs/system/unreachable/unreachable.js +9 -0
  370. package/build/cjs/type/action/_optional.d.ts +19 -0
  371. package/build/cjs/type/action/_optional.js +46 -0
  372. package/build/cjs/type/action/_readonly.d.ts +19 -0
  373. package/build/cjs/type/action/_readonly.js +46 -0
  374. package/build/cjs/type/action/awaited.d.ts +11 -0
  375. package/build/cjs/type/action/awaited.js +15 -0
  376. package/build/cjs/type/action/capitalize.d.ts +11 -0
  377. package/build/cjs/type/action/capitalize.js +15 -0
  378. package/build/cjs/type/action/conditional.d.ts +11 -0
  379. package/build/cjs/type/action/conditional.js +15 -0
  380. package/build/cjs/type/action/constructor-parameters.d.ts +11 -0
  381. package/build/cjs/type/action/constructor-parameters.js +15 -0
  382. package/build/cjs/type/action/evaluate.d.ts +11 -0
  383. package/build/cjs/type/action/evaluate.js +15 -0
  384. package/build/cjs/type/action/exclude.d.ts +11 -0
  385. package/build/cjs/type/action/exclude.js +15 -0
  386. package/build/cjs/type/action/extract.d.ts +11 -0
  387. package/build/cjs/type/action/extract.js +15 -0
  388. package/build/cjs/type/action/index.d.ts +26 -0
  389. package/build/cjs/type/action/index.js +42 -0
  390. package/build/cjs/type/action/indexed.d.ts +14 -0
  391. package/build/cjs/type/action/indexed.js +18 -0
  392. package/build/cjs/type/action/instance-type.d.ts +11 -0
  393. package/build/cjs/type/action/instance-type.js +15 -0
  394. package/build/cjs/type/action/interface.d.ts +14 -0
  395. package/build/cjs/type/action/interface.js +24 -0
  396. package/build/cjs/type/action/keyof.d.ts +11 -0
  397. package/build/cjs/type/action/keyof.js +15 -0
  398. package/build/cjs/type/action/lowercase.d.ts +11 -0
  399. package/build/cjs/type/action/lowercase.js +15 -0
  400. package/build/cjs/type/action/mapped.d.ts +12 -0
  401. package/build/cjs/type/action/mapped.js +15 -0
  402. package/build/cjs/type/action/module.d.ts +12 -0
  403. package/build/cjs/type/action/module.js +15 -0
  404. package/build/cjs/type/action/non-nullable.d.ts +11 -0
  405. package/build/cjs/type/action/non-nullable.js +15 -0
  406. package/build/cjs/type/action/omit.d.ts +14 -0
  407. package/build/cjs/type/action/omit.js +18 -0
  408. package/build/cjs/type/action/options.d.ts +12 -0
  409. package/build/cjs/type/action/options.js +15 -0
  410. package/build/cjs/type/action/parameters.d.ts +11 -0
  411. package/build/cjs/type/action/parameters.js +15 -0
  412. package/build/cjs/type/action/partial.d.ts +11 -0
  413. package/build/cjs/type/action/partial.js +15 -0
  414. package/build/cjs/type/action/pick.d.ts +14 -0
  415. package/build/cjs/type/action/pick.js +18 -0
  416. package/build/cjs/type/action/required.d.ts +11 -0
  417. package/build/cjs/type/action/required.js +15 -0
  418. package/build/cjs/type/action/return-type.d.ts +11 -0
  419. package/build/cjs/type/action/return-type.js +15 -0
  420. package/build/cjs/type/action/uncapitalize.d.ts +11 -0
  421. package/build/cjs/type/action/uncapitalize.js +15 -0
  422. package/build/cjs/type/action/uppercase.d.ts +11 -0
  423. package/build/cjs/type/action/uppercase.js +15 -0
  424. package/build/cjs/type/engine/awaited/index.d.ts +1 -0
  425. package/build/cjs/type/engine/awaited/index.js +17 -0
  426. package/build/cjs/type/engine/awaited/instantiate.d.ts +10 -0
  427. package/build/cjs/type/engine/awaited/instantiate.js +22 -0
  428. package/build/cjs/type/engine/call/instantiate.d.ts +20 -0
  429. package/build/cjs/type/engine/call/instantiate.js +41 -0
  430. package/build/cjs/type/engine/call/resolve-arguments.d.ts +13 -0
  431. package/build/cjs/type/engine/call/resolve-arguments.js +42 -0
  432. package/build/cjs/type/engine/call/resolve-target.d.ts +25 -0
  433. package/build/cjs/type/engine/call/resolve-target.js +30 -0
  434. package/build/cjs/type/engine/conditional/index.d.ts +1 -0
  435. package/build/cjs/type/engine/conditional/index.js +17 -0
  436. package/build/cjs/type/engine/conditional/instantiate.d.ts +10 -0
  437. package/build/cjs/type/engine/conditional/instantiate.js +22 -0
  438. package/build/cjs/type/engine/constructor-parameters/index.d.ts +1 -0
  439. package/build/cjs/type/engine/constructor-parameters/index.js +17 -0
  440. package/build/cjs/type/engine/constructor-parameters/instantiate.d.ts +14 -0
  441. package/build/cjs/type/engine/constructor-parameters/instantiate.js +24 -0
  442. package/build/cjs/type/engine/cyclic/candidates.d.ts +9 -0
  443. package/build/cjs/type/engine/cyclic/candidates.js +22 -0
  444. package/build/cjs/type/engine/cyclic/check.d.ts +24 -0
  445. package/build/cjs/type/engine/cyclic/check.js +57 -0
  446. package/build/cjs/type/engine/cyclic/dependencies.d.ts +25 -0
  447. package/build/cjs/type/engine/cyclic/dependencies.js +56 -0
  448. package/build/cjs/type/engine/cyclic/extends.d.ts +31 -0
  449. package/build/cjs/type/engine/cyclic/extends.js +56 -0
  450. package/build/cjs/type/engine/cyclic/index.d.ts +6 -0
  451. package/build/cjs/type/engine/cyclic/index.js +22 -0
  452. package/build/cjs/type/engine/cyclic/instantiate.d.ts +20 -0
  453. package/build/cjs/type/engine/cyclic/instantiate.js +32 -0
  454. package/build/cjs/type/engine/cyclic/target.d.ts +10 -0
  455. package/build/cjs/type/engine/cyclic/target.js +19 -0
  456. package/build/cjs/type/engine/enum/enum-to-union.d.ts +14 -0
  457. package/build/cjs/type/engine/enum/enum-to-union.js +29 -0
  458. package/build/cjs/type/engine/enum/index.d.ts +2 -0
  459. package/build/cjs/type/engine/enum/index.js +18 -0
  460. package/build/cjs/type/engine/enum/typescript-enum-to-enum-values.d.ts +8 -0
  461. package/build/cjs/type/engine/enum/typescript-enum-to-enum-values.js +13 -0
  462. package/build/cjs/type/engine/evaluate/broaden.d.ts +16 -0
  463. package/build/cjs/type/engine/evaluate/broaden.js +51 -0
  464. package/build/cjs/type/engine/evaluate/compare.d.ts +15 -0
  465. package/build/cjs/type/engine/evaluate/compare.js +25 -0
  466. package/build/cjs/type/engine/evaluate/composite.d.ts +30 -0
  467. package/build/cjs/type/engine/evaluate/composite.js +66 -0
  468. package/build/cjs/type/engine/evaluate/distribute.d.ts +26 -0
  469. package/build/cjs/type/engine/evaluate/distribute.js +56 -0
  470. package/build/cjs/type/engine/evaluate/evaluate.d.ts +11 -0
  471. package/build/cjs/type/engine/evaluate/evaluate.js +24 -0
  472. package/build/cjs/type/engine/evaluate/flatten.d.ts +6 -0
  473. package/build/cjs/type/engine/evaluate/flatten.js +14 -0
  474. package/build/cjs/type/engine/evaluate/index.d.ts +8 -0
  475. package/build/cjs/type/engine/evaluate/index.js +24 -0
  476. package/build/cjs/type/engine/evaluate/instantiate.d.ts +8 -0
  477. package/build/cjs/type/engine/evaluate/instantiate.js +20 -0
  478. package/build/cjs/type/engine/evaluate/narrow.d.ts +5 -0
  479. package/build/cjs/type/engine/evaluate/narrow.js +14 -0
  480. package/build/cjs/type/engine/exclude/index.d.ts +1 -0
  481. package/build/cjs/type/engine/exclude/index.js +17 -0
  482. package/build/cjs/type/engine/exclude/instantiate.d.ts +16 -0
  483. package/build/cjs/type/engine/exclude/instantiate.js +39 -0
  484. package/build/cjs/type/engine/extract/index.d.ts +1 -0
  485. package/build/cjs/type/engine/extract/index.js +17 -0
  486. package/build/cjs/type/engine/extract/instantiate.d.ts +16 -0
  487. package/build/cjs/type/engine/extract/instantiate.js +39 -0
  488. package/build/cjs/type/engine/helpers/index.d.ts +3 -0
  489. package/build/cjs/type/engine/helpers/index.js +19 -0
  490. package/build/cjs/type/engine/helpers/keys-to-indexer.d.ts +7 -0
  491. package/build/cjs/type/engine/helpers/keys-to-indexer.js +18 -0
  492. package/build/cjs/type/engine/helpers/keys.d.ts +3 -0
  493. package/build/cjs/type/engine/helpers/keys.js +11 -0
  494. package/build/cjs/type/engine/helpers/union.js +3 -0
  495. package/build/cjs/type/engine/index.d.ts +30 -0
  496. package/build/cjs/type/engine/index.js +54 -0
  497. package/build/cjs/type/engine/indexable/from-cyclic.d.ts +6 -0
  498. package/build/cjs/type/engine/indexable/from-cyclic.js +11 -0
  499. package/build/cjs/type/engine/indexable/from-enum.d.ts +6 -0
  500. package/build/cjs/type/engine/indexable/from-enum.js +11 -0
  501. package/build/cjs/type/engine/indexable/from-intersect.d.ts +5 -0
  502. package/build/cjs/type/engine/indexable/from-intersect.js +11 -0
  503. package/build/cjs/type/engine/indexable/from-literal.d.ts +3 -0
  504. package/build/cjs/type/engine/indexable/from-literal.js +8 -0
  505. package/build/cjs/type/engine/indexable/from-template-literal.d.ts +5 -0
  506. package/build/cjs/type/engine/indexable/from-template-literal.js +11 -0
  507. package/build/cjs/type/engine/indexable/from-type.d.ts +17 -0
  508. package/build/cjs/type/engine/indexable/from-type.js +25 -0
  509. package/build/cjs/type/engine/indexable/from-union.d.ts +4 -0
  510. package/build/cjs/type/engine/indexable/from-union.js +10 -0
  511. package/build/cjs/type/engine/indexable/to-indexable-keys.d.ts +10 -0
  512. package/build/cjs/type/engine/indexable/to-indexable-keys.js +15 -0
  513. package/build/cjs/type/engine/indexable/to-indexable.d.ts +9 -0
  514. package/build/cjs/type/engine/indexable/to-indexable.js +17 -0
  515. package/build/cjs/type/engine/indexed/array-indexer.d.ts +12 -0
  516. package/build/cjs/type/engine/indexed/array-indexer.js +21 -0
  517. package/build/cjs/type/engine/indexed/from-array.d.ts +15 -0
  518. package/build/cjs/type/engine/indexed/from-array.js +30 -0
  519. package/build/cjs/type/engine/indexed/from-object.d.ts +9 -0
  520. package/build/cjs/type/engine/indexed/from-object.js +21 -0
  521. package/build/cjs/type/engine/indexed/from-tuple.d.ts +13 -0
  522. package/build/cjs/type/engine/indexed/from-tuple.js +31 -0
  523. package/build/cjs/type/engine/indexed/index.d.ts +1 -0
  524. package/build/cjs/type/engine/indexed/index.js +17 -0
  525. package/build/cjs/type/engine/indexed/instantiate.d.ts +21 -0
  526. package/build/cjs/type/engine/indexed/instantiate.js +40 -0
  527. package/build/cjs/type/engine/instance-type/index.d.ts +1 -0
  528. package/build/cjs/type/engine/instance-type/index.js +17 -0
  529. package/build/cjs/type/engine/instance-type/instantiate.d.ts +12 -0
  530. package/build/cjs/type/engine/instance-type/instantiate.js +24 -0
  531. package/build/cjs/type/engine/instantiate.d.ts +162 -0
  532. package/build/cjs/type/engine/instantiate.js +173 -0
  533. package/build/cjs/type/engine/interface/index.d.ts +1 -0
  534. package/build/cjs/type/engine/interface/index.js +17 -0
  535. package/build/cjs/type/engine/interface/instantiate.d.ts +16 -0
  536. package/build/cjs/type/engine/interface/instantiate.js +22 -0
  537. package/build/cjs/type/engine/intrinsics/from-literal.d.ts +5 -0
  538. package/build/cjs/type/engine/intrinsics/from-literal.js +12 -0
  539. package/build/cjs/type/engine/intrinsics/from-template-literal.d.ts +6 -0
  540. package/build/cjs/type/engine/intrinsics/from-template-literal.js +11 -0
  541. package/build/cjs/type/engine/intrinsics/from-type.d.ts +10 -0
  542. package/build/cjs/type/engine/intrinsics/from-type.js +16 -0
  543. package/build/cjs/type/engine/intrinsics/from-union.d.ts +6 -0
  544. package/build/cjs/type/engine/intrinsics/from-union.js +10 -0
  545. package/build/cjs/type/engine/intrinsics/index.d.ts +1 -0
  546. package/build/cjs/type/engine/intrinsics/index.js +17 -0
  547. package/build/cjs/type/engine/intrinsics/instantiate.d.ts +34 -0
  548. package/build/cjs/type/engine/intrinsics/instantiate.js +54 -0
  549. package/build/cjs/type/engine/intrinsics/mapping.js +7 -0
  550. package/build/cjs/type/engine/keyof/from-array.d.ts +4 -0
  551. package/build/cjs/type/engine/keyof/from-array.js +8 -0
  552. package/build/cjs/type/engine/keyof/from-object.d.ts +10 -0
  553. package/build/cjs/type/engine/keyof/from-object.js +23 -0
  554. package/build/cjs/type/engine/keyof/from-record.d.ts +4 -0
  555. package/build/cjs/type/engine/keyof/from-record.js +8 -0
  556. package/build/cjs/type/engine/keyof/from-tuple.d.ts +5 -0
  557. package/build/cjs/type/engine/keyof/from-tuple.js +10 -0
  558. package/build/cjs/type/engine/keyof/index.d.ts +1 -0
  559. package/build/cjs/type/engine/keyof/index.js +17 -0
  560. package/build/cjs/type/engine/keyof/instantiate.d.ts +25 -0
  561. package/build/cjs/type/engine/keyof/instantiate.js +47 -0
  562. package/build/cjs/type/engine/mapped/index.d.ts +1 -0
  563. package/build/cjs/type/engine/mapped/index.js +17 -0
  564. package/build/cjs/type/engine/mapped/instantiate.d.ts +28 -0
  565. package/build/cjs/type/engine/mapped/instantiate.js +50 -0
  566. package/build/cjs/type/engine/mapped/mapped-keys.d.ts +14 -0
  567. package/build/cjs/type/engine/mapped/mapped-keys.js +32 -0
  568. package/build/cjs/type/engine/module/index.d.ts +1 -0
  569. package/build/cjs/type/engine/module/index.js +17 -0
  570. package/build/cjs/type/engine/module/instantiate.d.ts +21 -0
  571. package/build/cjs/type/engine/module/instantiate.js +36 -0
  572. package/build/cjs/type/engine/non-nullable/index.d.ts +1 -0
  573. package/build/cjs/type/engine/non-nullable/index.js +17 -0
  574. package/build/cjs/type/engine/non-nullable/instantiate.d.ts +15 -0
  575. package/build/cjs/type/engine/non-nullable/instantiate.js +24 -0
  576. package/build/cjs/type/engine/object/collapse.d.ts +12 -0
  577. package/build/cjs/type/engine/object/collapse.js +17 -0
  578. package/build/cjs/type/engine/object/from-cyclic.d.ts +6 -0
  579. package/build/cjs/type/engine/object/from-cyclic.js +11 -0
  580. package/build/cjs/type/engine/object/from-intersect.d.ts +17 -0
  581. package/build/cjs/type/engine/object/from-intersect.js +24 -0
  582. package/build/cjs/type/engine/object/from-object.d.ts +3 -0
  583. package/build/cjs/type/engine/object/from-object.js +7 -0
  584. package/build/cjs/type/engine/object/from-tuple.d.ts +6 -0
  585. package/build/cjs/type/engine/object/from-tuple.js +12 -0
  586. package/build/cjs/type/engine/object/from-type.d.ts +14 -0
  587. package/build/cjs/type/engine/object/from-type.js +22 -0
  588. package/build/cjs/type/engine/object/from-union.d.ts +12 -0
  589. package/build/cjs/type/engine/object/from-union.js +29 -0
  590. package/build/cjs/type/engine/object/index.d.ts +1 -0
  591. package/build/cjs/type/engine/object/index.js +17 -0
  592. package/build/cjs/type/engine/omit/index.d.ts +1 -0
  593. package/build/cjs/type/engine/omit/index.js +17 -0
  594. package/build/cjs/type/engine/omit/instantiate.d.ts +16 -0
  595. package/build/cjs/type/engine/omit/instantiate.js +34 -0
  596. package/build/cjs/type/engine/options/index.d.ts +1 -0
  597. package/build/cjs/type/engine/options/index.js +17 -0
  598. package/build/cjs/type/engine/options/instantiate.d.ts +8 -0
  599. package/build/cjs/type/engine/options/instantiate.js +16 -0
  600. package/build/cjs/type/engine/parameters/index.d.ts +1 -0
  601. package/build/cjs/type/engine/parameters/index.js +17 -0
  602. package/build/cjs/type/engine/parameters/instantiate.d.ts +14 -0
  603. package/build/cjs/type/engine/parameters/instantiate.js +24 -0
  604. package/build/cjs/type/engine/partial/from-cyclic.d.ts +10 -0
  605. package/build/cjs/type/engine/partial/from-cyclic.js +14 -0
  606. package/build/cjs/type/engine/partial/from-intersect.d.ts +5 -0
  607. package/build/cjs/type/engine/partial/from-intersect.js +10 -0
  608. package/build/cjs/type/engine/partial/from-object.d.ts +8 -0
  609. package/build/cjs/type/engine/partial/from-object.js +14 -0
  610. package/build/cjs/type/engine/partial/from-type.d.ts +12 -0
  611. package/build/cjs/type/engine/partial/from-type.js +19 -0
  612. package/build/cjs/type/engine/partial/from-union.d.ts +5 -0
  613. package/build/cjs/type/engine/partial/from-union.js +10 -0
  614. package/build/cjs/type/engine/partial/index.d.ts +1 -0
  615. package/build/cjs/type/engine/partial/index.js +17 -0
  616. package/build/cjs/type/engine/partial/instantiate.d.ts +9 -0
  617. package/build/cjs/type/engine/partial/instantiate.js +17 -0
  618. package/build/cjs/type/engine/patterns/index.d.ts +2 -0
  619. package/build/cjs/type/engine/patterns/index.js +18 -0
  620. package/build/cjs/type/engine/patterns/pattern.d.ts +7 -0
  621. package/build/cjs/type/engine/patterns/pattern.js +16 -0
  622. package/build/cjs/type/engine/patterns/template.d.ts +7 -0
  623. package/build/cjs/type/engine/patterns/template.js +23 -0
  624. package/build/cjs/type/engine/pick/index.d.ts +1 -0
  625. package/build/cjs/type/engine/pick/index.js +17 -0
  626. package/build/cjs/type/engine/pick/instantiate.d.ts +17 -0
  627. package/build/cjs/type/engine/pick/instantiate.js +34 -0
  628. package/build/cjs/type/engine/record/from-key-any.d.ts +4 -0
  629. package/build/cjs/type/engine/record/from-key-any.js +9 -0
  630. package/build/cjs/type/engine/record/from-key-boolean.d.ts +7 -0
  631. package/build/cjs/type/engine/record/from-key-boolean.js +8 -0
  632. package/build/cjs/type/engine/record/from-key-enum.d.ts +6 -0
  633. package/build/cjs/type/engine/record/from-key-enum.js +11 -0
  634. package/build/cjs/type/engine/record/from-key-integer.d.ts +5 -0
  635. package/build/cjs/type/engine/record/from-key-integer.js +10 -0
  636. package/build/cjs/type/engine/record/from-key-intersect.d.ts +5 -0
  637. package/build/cjs/type/engine/record/from-key-intersect.js +11 -0
  638. package/build/cjs/type/engine/record/from-key-literal.d.ts +11 -0
  639. package/build/cjs/type/engine/record/from-key-literal.js +13 -0
  640. package/build/cjs/type/engine/record/from-key-number.d.ts +5 -0
  641. package/build/cjs/type/engine/record/from-key-number.js +10 -0
  642. package/build/cjs/type/engine/record/from-key-string.d.ts +5 -0
  643. package/build/cjs/type/engine/record/from-key-string.js +15 -0
  644. package/build/cjs/type/engine/record/from-key-template-literal.d.ts +8 -0
  645. package/build/cjs/type/engine/record/from-key-template-literal.js +15 -0
  646. package/build/cjs/type/engine/record/from-key-union.d.ts +20 -0
  647. package/build/cjs/type/engine/record/from-key-union.js +42 -0
  648. package/build/cjs/type/engine/record/from-key.d.ts +24 -0
  649. package/build/cjs/type/engine/record/from-key.js +43 -0
  650. package/build/cjs/type/engine/record/index.d.ts +1 -0
  651. package/build/cjs/type/engine/record/index.js +17 -0
  652. package/build/cjs/type/engine/record/instantiate.d.ts +9 -0
  653. package/build/cjs/type/engine/record/instantiate.js +19 -0
  654. package/build/cjs/type/engine/record/record-create.d.ts +3 -0
  655. package/build/cjs/type/engine/record/record-create.js +10 -0
  656. package/build/cjs/type/engine/ref/index.d.ts +1 -0
  657. package/build/cjs/type/engine/ref/index.js +17 -0
  658. package/build/cjs/type/engine/ref/instantiate.d.ts +6 -0
  659. package/build/cjs/type/engine/ref/instantiate.js +14 -0
  660. package/build/cjs/type/engine/required/from-cyclic.d.ts +10 -0
  661. package/build/cjs/type/engine/required/from-cyclic.js +14 -0
  662. package/build/cjs/type/engine/required/from-intersect.d.ts +5 -0
  663. package/build/cjs/type/engine/required/from-intersect.js +10 -0
  664. package/build/cjs/type/engine/required/from-object.d.ts +8 -0
  665. package/build/cjs/type/engine/required/from-object.js +14 -0
  666. package/build/cjs/type/engine/required/from-type.d.ts +12 -0
  667. package/build/cjs/type/engine/required/from-type.js +19 -0
  668. package/build/cjs/type/engine/required/from-union.d.ts +5 -0
  669. package/build/cjs/type/engine/required/from-union.js +10 -0
  670. package/build/cjs/type/engine/required/index.d.ts +1 -0
  671. package/build/cjs/type/engine/required/index.js +17 -0
  672. package/build/cjs/type/engine/required/instantiate.d.ts +9 -0
  673. package/build/cjs/type/engine/required/instantiate.js +17 -0
  674. package/build/cjs/type/engine/rest/index.d.ts +1 -0
  675. package/build/cjs/type/engine/rest/index.js +17 -0
  676. package/build/cjs/type/engine/rest/spread.d.ts +12 -0
  677. package/build/cjs/type/engine/rest/spread.js +22 -0
  678. package/build/cjs/type/engine/return-type/index.d.ts +1 -0
  679. package/build/cjs/type/engine/return-type/index.js +17 -0
  680. package/build/cjs/type/engine/return-type/instantiate.d.ts +11 -0
  681. package/build/cjs/type/engine/return-type/instantiate.js +21 -0
  682. package/build/cjs/type/engine/template-literal/create.js +8 -0
  683. package/build/cjs/type/engine/template-literal/decode.d.ts +20 -0
  684. package/build/cjs/type/engine/template-literal/decode.js +76 -0
  685. package/build/cjs/type/engine/template-literal/encode.d.ts +31 -0
  686. package/build/cjs/type/engine/template-literal/encode.js +83 -0
  687. package/build/cjs/type/engine/template-literal/finite.d.ts +12 -0
  688. package/build/cjs/type/engine/template-literal/finite.js +33 -0
  689. package/build/cjs/type/engine/template-literal/index.d.ts +5 -0
  690. package/build/cjs/type/engine/template-literal/index.js +21 -0
  691. package/build/cjs/type/engine/template-literal/instantiate.d.ts +9 -0
  692. package/build/cjs/type/engine/template-literal/instantiate.js +17 -0
  693. package/build/cjs/type/engine/template-literal/static.d.ts +18 -0
  694. package/build/cjs/type/engine/template-literal/static.js +3 -0
  695. package/build/cjs/type/engine/tuple/to-object.d.ts +12 -0
  696. package/build/cjs/type/engine/tuple/to-object.js +17 -0
  697. package/build/cjs/type/extends/any.d.ts +9 -0
  698. package/build/cjs/type/extends/any.js +15 -0
  699. package/build/cjs/type/extends/array.d.ts +7 -0
  700. package/build/cjs/type/extends/array.js +12 -0
  701. package/build/cjs/type/extends/async-iterator.d.ts +7 -0
  702. package/build/cjs/type/extends/async-iterator.js +12 -0
  703. package/build/cjs/type/extends/bigint.d.ts +7 -0
  704. package/build/cjs/type/extends/bigint.js +12 -0
  705. package/build/cjs/type/extends/boolean.d.ts +7 -0
  706. package/build/cjs/type/extends/boolean.js +12 -0
  707. package/build/cjs/type/extends/constructor.d.ts +8 -0
  708. package/build/cjs/type/extends/constructor.js +19 -0
  709. package/build/cjs/type/extends/enum.d.ts +7 -0
  710. package/build/cjs/type/extends/enum.js +9 -0
  711. package/build/cjs/type/extends/extends-left.d.ts +55 -0
  712. package/build/cjs/type/extends/extends-left.js +86 -0
  713. package/build/cjs/type/extends/extends-right.d.ts +25 -0
  714. package/build/cjs/type/extends/extends-right.js +62 -0
  715. package/build/cjs/type/extends/extends.d.ts +11 -0
  716. package/build/cjs/type/extends/extends.js +18 -0
  717. package/build/cjs/type/extends/function.d.ts +8 -0
  718. package/build/cjs/type/extends/function.js +19 -0
  719. package/build/cjs/type/extends/index.d.ts +2 -0
  720. package/build/cjs/type/extends/index.js +6 -0
  721. package/build/cjs/type/extends/inference.d.ts +34 -0
  722. package/build/cjs/type/extends/inference.js +80 -0
  723. package/build/cjs/type/extends/integer.d.ts +8 -0
  724. package/build/cjs/type/extends/integer.js +13 -0
  725. package/build/cjs/type/extends/intersect.d.ts +6 -0
  726. package/build/cjs/type/extends/intersect.js +18 -0
  727. package/build/cjs/type/extends/iterator.d.ts +7 -0
  728. package/build/cjs/type/extends/iterator.js +12 -0
  729. package/build/cjs/type/extends/literal.d.ts +17 -0
  730. package/build/cjs/type/extends/literal.js +44 -0
  731. package/build/cjs/type/extends/never.d.ts +8 -0
  732. package/build/cjs/type/extends/never.js +12 -0
  733. package/build/cjs/type/extends/null.d.ts +7 -0
  734. package/build/cjs/type/extends/null.js +12 -0
  735. package/build/cjs/type/extends/number.d.ts +7 -0
  736. package/build/cjs/type/extends/number.js +12 -0
  737. package/build/cjs/type/extends/object.d.ts +25 -0
  738. package/build/cjs/type/extends/object.js +92 -0
  739. package/build/cjs/type/extends/parameters.d.ts +15 -0
  740. package/build/cjs/type/extends/parameters.js +40 -0
  741. package/build/cjs/type/extends/promise.d.ts +7 -0
  742. package/build/cjs/type/extends/promise.js +12 -0
  743. package/build/cjs/type/extends/result.d.ts +21 -0
  744. package/build/cjs/type/extends/result.js +42 -0
  745. package/build/cjs/type/extends/return-type.d.ts +7 -0
  746. package/build/cjs/type/extends/return-type.js +12 -0
  747. package/build/cjs/type/extends/string.d.ts +7 -0
  748. package/build/cjs/type/extends/string.js +12 -0
  749. package/build/cjs/type/extends/symbol.d.ts +7 -0
  750. package/build/cjs/type/extends/symbol.js +12 -0
  751. package/build/cjs/type/extends/template-literal.d.ts +6 -0
  752. package/build/cjs/type/extends/template-literal.js +10 -0
  753. package/build/cjs/type/extends/tuple.d.ts +25 -0
  754. package/build/cjs/type/extends/tuple.js +85 -0
  755. package/build/cjs/type/extends/undefined.d.ts +8 -0
  756. package/build/cjs/type/extends/undefined.js +13 -0
  757. package/build/cjs/type/extends/union.d.ts +11 -0
  758. package/build/cjs/type/extends/union.js +39 -0
  759. package/build/cjs/type/extends/unknown.d.ts +9 -0
  760. package/build/cjs/type/extends/unknown.js +15 -0
  761. package/build/cjs/type/extends/void.d.ts +7 -0
  762. package/build/cjs/type/extends/void.js +12 -0
  763. package/build/cjs/type/index.d.ts +5 -0
  764. package/build/cjs/type/index.js +21 -0
  765. package/build/cjs/type/script/index.d.ts +1 -0
  766. package/build/cjs/type/script/index.js +17 -0
  767. package/build/cjs/type/script/mapping.d.ts +358 -0
  768. package/build/cjs/type/script/mapping.js +644 -0
  769. package/build/cjs/type/script/parser.d.ts +256 -0
  770. package/build/cjs/type/script/parser.js +264 -0
  771. package/build/cjs/type/script/script.d.ts +17 -0
  772. package/build/cjs/type/script/script.js +24 -0
  773. package/build/cjs/type/script/token/bigint.d.ts +8 -0
  774. package/build/cjs/type/script/token/bigint.js +23 -0
  775. package/build/cjs/type/script/token/const.d.ts +11 -0
  776. package/build/cjs/type/script/token/const.js +21 -0
  777. package/build/cjs/type/script/token/ident.d.ts +16 -0
  778. package/build/cjs/type/script/token/ident.js +38 -0
  779. package/build/cjs/type/script/token/index.d.ts +9 -0
  780. package/build/cjs/type/script/token/index.js +25 -0
  781. package/build/cjs/type/script/token/integer.d.ts +19 -0
  782. package/build/cjs/type/script/token/integer.js +48 -0
  783. package/build/cjs/type/script/token/internal/char.js +28 -0
  784. package/build/cjs/type/script/token/internal/guard.d.ts +1 -0
  785. package/build/cjs/type/script/token/internal/guard.js +21 -0
  786. package/build/cjs/type/script/token/internal/many.d.ts +7 -0
  787. package/build/cjs/type/script/token/internal/many.js +20 -0
  788. package/build/cjs/type/script/token/internal/optional.d.ts +5 -0
  789. package/build/cjs/type/script/token/internal/optional.js +15 -0
  790. package/build/cjs/type/script/token/internal/result.js +10 -0
  791. package/build/cjs/type/script/token/internal/take.js +22 -0
  792. package/build/cjs/type/script/token/internal/trim.d.ts +19 -0
  793. package/build/cjs/type/script/token/internal/trim.js +38 -0
  794. package/build/cjs/type/script/token/number.d.ts +20 -0
  795. package/build/cjs/type/script/token/number.js +68 -0
  796. package/build/cjs/type/script/token/span.d.ts +10 -0
  797. package/build/cjs/type/script/token/span.js +38 -0
  798. package/build/cjs/type/script/token/string.d.ts +11 -0
  799. package/build/cjs/type/script/token/string.js +27 -0
  800. package/build/cjs/type/script/token/until.js +24 -0
  801. package/build/cjs/type/script/token/until_1.d.ts +5 -0
  802. package/build/cjs/type/script/token/until_1.js +19 -0
  803. package/build/cjs/type/types/_codec.d.ts +30 -0
  804. package/build/cjs/type/types/_codec.js +68 -0
  805. package/build/cjs/type/types/_optional.d.ts +16 -0
  806. package/build/cjs/type/types/_optional.js +33 -0
  807. package/build/cjs/type/types/_readonly.d.ts +16 -0
  808. package/build/cjs/type/types/_readonly.js +32 -0
  809. package/build/cjs/type/types/_refine.d.ts +19 -0
  810. package/build/cjs/type/types/_refine.js +25 -0
  811. package/build/cjs/type/types/any.d.ts +10 -0
  812. package/build/cjs/type/types/any.js +22 -0
  813. package/build/cjs/type/types/array.d.ts +16 -0
  814. package/build/cjs/type/types/array.js +29 -0
  815. package/build/cjs/type/types/async-iterator.d.ts +16 -0
  816. package/build/cjs/type/types/async-iterator.js +29 -0
  817. package/build/cjs/type/types/base.d.ts +29 -0
  818. package/build/cjs/type/types/base.js +72 -0
  819. package/build/cjs/type/types/bigint.d.ts +12 -0
  820. package/build/cjs/type/types/bigint.js +26 -0
  821. package/build/cjs/type/types/boolean.d.ts +11 -0
  822. package/build/cjs/type/types/boolean.js +21 -0
  823. package/build/cjs/type/types/call.d.ts +16 -0
  824. package/build/cjs/type/types/call.js +26 -0
  825. package/build/cjs/type/types/constructor.d.ts +18 -0
  826. package/build/cjs/type/types/constructor.js +29 -0
  827. package/build/cjs/type/types/cyclic.d.ts +16 -0
  828. package/build/cjs/type/types/cyclic.js +34 -0
  829. package/build/cjs/type/types/deferred.d.ts +12 -0
  830. package/build/cjs/type/types/deferred.js +20 -0
  831. package/build/cjs/type/types/enum.d.ts +16 -0
  832. package/build/cjs/type/types/enum.js +21 -0
  833. package/build/cjs/type/types/function.d.ts +20 -0
  834. package/build/cjs/type/types/function.js +29 -0
  835. package/build/cjs/type/types/generic.d.ts +13 -0
  836. package/build/cjs/type/types/generic.js +21 -0
  837. package/build/cjs/type/types/identifier.d.ts +11 -0
  838. package/build/cjs/type/types/identifier.js +21 -0
  839. package/build/cjs/type/types/index.d.ts +47 -0
  840. package/build/cjs/type/types/index.js +69 -0
  841. package/build/cjs/type/types/infer.d.ts +15 -0
  842. package/build/cjs/type/types/infer.js +24 -0
  843. package/build/cjs/type/types/integer.d.ts +12 -0
  844. package/build/cjs/type/types/integer.js +26 -0
  845. package/build/cjs/type/types/intersect.d.ts +15 -0
  846. package/build/cjs/type/types/intersect.js +29 -0
  847. package/build/cjs/type/types/iterator.d.ts +16 -0
  848. package/build/cjs/type/types/iterator.js +29 -0
  849. package/build/cjs/type/types/literal.d.ts +22 -0
  850. package/build/cjs/type/types/literal.js +50 -0
  851. package/build/cjs/type/types/never.d.ts +12 -0
  852. package/build/cjs/type/types/never.js +26 -0
  853. package/build/cjs/type/types/null.d.ts +11 -0
  854. package/build/cjs/type/types/null.js +21 -0
  855. package/build/cjs/type/types/number.d.ts +12 -0
  856. package/build/cjs/type/types/number.js +26 -0
  857. package/build/cjs/type/types/object.d.ts +20 -0
  858. package/build/cjs/type/types/object.js +34 -0
  859. package/build/cjs/type/types/parameter.d.ts +17 -0
  860. package/build/cjs/type/types/parameter.js +25 -0
  861. package/build/cjs/type/types/promise.d.ts +16 -0
  862. package/build/cjs/type/types/promise.js +29 -0
  863. package/build/cjs/type/types/properties.d.ts +42 -0
  864. package/build/cjs/type/types/properties.js +21 -0
  865. package/build/cjs/type/types/record.d.ts +44 -0
  866. package/build/cjs/type/types/record.js +73 -0
  867. package/build/cjs/type/types/ref.d.ts +19 -0
  868. package/build/cjs/type/types/ref.js +21 -0
  869. package/build/cjs/type/types/rest.d.ts +11 -0
  870. package/build/cjs/type/types/rest.js +21 -0
  871. package/build/cjs/type/types/schema.js +19 -0
  872. package/build/cjs/type/types/static.d.ts +47 -0
  873. package/build/cjs/type/types/static.js +4 -0
  874. package/build/cjs/type/types/string.d.ts +12 -0
  875. package/build/cjs/type/types/string.js +27 -0
  876. package/build/cjs/type/types/symbol.d.ts +11 -0
  877. package/build/cjs/type/types/symbol.js +21 -0
  878. package/build/cjs/type/types/template-literal.d.ts +24 -0
  879. package/build/cjs/type/types/template-literal.js +32 -0
  880. package/build/cjs/type/types/this.d.ts +14 -0
  881. package/build/cjs/type/types/this.js +21 -0
  882. package/build/cjs/type/types/tuple.d.ts +37 -0
  883. package/build/cjs/type/types/tuple.js +30 -0
  884. package/build/cjs/type/types/undefined.d.ts +11 -0
  885. package/build/cjs/type/types/undefined.js +21 -0
  886. package/build/cjs/type/types/union.d.ts +15 -0
  887. package/build/cjs/type/types/union.js +29 -0
  888. package/build/cjs/type/types/unknown.d.ts +10 -0
  889. package/build/cjs/type/types/unknown.js +21 -0
  890. package/build/cjs/type/types/unsafe.d.ts +11 -0
  891. package/build/cjs/type/types/unsafe.js +22 -0
  892. package/build/cjs/type/types/void.d.ts +11 -0
  893. package/build/cjs/type/types/void.js +21 -0
  894. package/build/cjs/typebox.d.ts +71 -0
  895. package/build/cjs/typebox.js +211 -0
  896. package/build/cjs/value/assert/assert.d.ts +14 -0
  897. package/build/cjs/value/assert/assert.js +32 -0
  898. package/build/cjs/value/assert/index.d.ts +1 -0
  899. package/build/cjs/value/assert/index.js +17 -0
  900. package/build/cjs/value/check/check.d.ts +5 -0
  901. package/build/cjs/value/check/check.js +14 -0
  902. package/build/cjs/value/check/index.d.ts +1 -0
  903. package/build/cjs/value/check/index.js +17 -0
  904. package/build/cjs/value/clean/additional.d.ts +2 -0
  905. package/build/cjs/value/clean/additional.js +9 -0
  906. package/build/cjs/value/clean/clean.d.ts +15 -0
  907. package/build/cjs/value/clean/clean.js +18 -0
  908. package/build/cjs/value/clean/from-array.d.ts +2 -0
  909. package/build/cjs/value/clean/from-array.js +11 -0
  910. package/build/cjs/value/clean/from-base.d.ts +2 -0
  911. package/build/cjs/value/clean/from-base.js +7 -0
  912. package/build/cjs/value/clean/from-cyclic.d.ts +2 -0
  913. package/build/cjs/value/clean/from-cyclic.js +9 -0
  914. package/build/cjs/value/clean/from-intersect.d.ts +2 -0
  915. package/build/cjs/value/clean/from-intersect.js +28 -0
  916. package/build/cjs/value/clean/from-object.d.ts +2 -0
  917. package/build/cjs/value/clean/from-object.js +34 -0
  918. package/build/cjs/value/clean/from-record.d.ts +2 -0
  919. package/build/cjs/value/clean/from-record.js +35 -0
  920. package/build/cjs/value/clean/from-ref.d.ts +2 -0
  921. package/build/cjs/value/clean/from-ref.js +11 -0
  922. package/build/cjs/value/clean/from-tuple.d.ts +2 -0
  923. package/build/cjs/value/clean/from-tuple.js +17 -0
  924. package/build/cjs/value/clean/from-type.d.ts +2 -0
  925. package/build/cjs/value/clean/from-type.js +26 -0
  926. package/build/cjs/value/clean/from-union.d.ts +2 -0
  927. package/build/cjs/value/clean/from-union.js +15 -0
  928. package/build/cjs/value/clean/index.d.ts +1 -0
  929. package/build/cjs/value/clean/index.js +17 -0
  930. package/build/cjs/value/clone/clone.js +85 -0
  931. package/build/cjs/value/clone/index.d.ts +1 -0
  932. package/build/cjs/value/clone/index.js +17 -0
  933. package/build/cjs/value/codec/callback.d.ts +2 -0
  934. package/build/cjs/value/codec/callback.js +28 -0
  935. package/build/cjs/value/codec/decode.d.ts +22 -0
  936. package/build/cjs/value/codec/decode.js +61 -0
  937. package/build/cjs/value/codec/encode.d.ts +12 -0
  938. package/build/cjs/value/codec/encode.js +56 -0
  939. package/build/cjs/value/codec/from-array.d.ts +2 -0
  940. package/build/cjs/value/codec/from-array.js +41 -0
  941. package/build/cjs/value/codec/from-cyclic.d.ts +2 -0
  942. package/build/cjs/value/codec/from-cyclic.js +11 -0
  943. package/build/cjs/value/codec/from-intersect.d.ts +2 -0
  944. package/build/cjs/value/codec/from-intersect.js +31 -0
  945. package/build/cjs/value/codec/from-object.d.ts +2 -0
  946. package/build/cjs/value/codec/from-object.js +48 -0
  947. package/build/cjs/value/codec/from-record.d.ts +2 -0
  948. package/build/cjs/value/codec/from-record.js +47 -0
  949. package/build/cjs/value/codec/from-ref.d.ts +2 -0
  950. package/build/cjs/value/codec/from-ref.js +13 -0
  951. package/build/cjs/value/codec/from-tuple.d.ts +2 -0
  952. package/build/cjs/value/codec/from-tuple.js +38 -0
  953. package/build/cjs/value/codec/from-type.d.ts +2 -0
  954. package/build/cjs/value/codec/from-type.js +25 -0
  955. package/build/cjs/value/codec/from-union.d.ts +2 -0
  956. package/build/cjs/value/codec/from-union.js +45 -0
  957. package/build/cjs/value/codec/has.d.ts +5 -0
  958. package/build/cjs/value/codec/has.js +96 -0
  959. package/build/cjs/value/codec/index.d.ts +3 -0
  960. package/build/cjs/value/codec/index.js +19 -0
  961. package/build/cjs/value/convert/convert.d.ts +13 -0
  962. package/build/cjs/value/convert/convert.js +18 -0
  963. package/build/cjs/value/convert/from-additional.d.ts +6 -0
  964. package/build/cjs/value/convert/from-additional.js +21 -0
  965. package/build/cjs/value/convert/from-array.d.ts +2 -0
  966. package/build/cjs/value/convert/from-array.js +11 -0
  967. package/build/cjs/value/convert/from-base.d.ts +2 -0
  968. package/build/cjs/value/convert/from-base.js +7 -0
  969. package/build/cjs/value/convert/from-bigint.d.ts +2 -0
  970. package/build/cjs/value/convert/from-bigint.js +12 -0
  971. package/build/cjs/value/convert/from-boolean.d.ts +2 -0
  972. package/build/cjs/value/convert/from-boolean.js +12 -0
  973. package/build/cjs/value/convert/from-cyclic.d.ts +2 -0
  974. package/build/cjs/value/convert/from-cyclic.js +9 -0
  975. package/build/cjs/value/convert/from-enum.d.ts +2 -0
  976. package/build/cjs/value/convert/from-enum.js +10 -0
  977. package/build/cjs/value/convert/from-integer.d.ts +2 -0
  978. package/build/cjs/value/convert/from-integer.js +12 -0
  979. package/build/cjs/value/convert/from-intersect.d.ts +2 -0
  980. package/build/cjs/value/convert/from-intersect.js +10 -0
  981. package/build/cjs/value/convert/from-literal.d.ts +2 -0
  982. package/build/cjs/value/convert/from-literal.js +47 -0
  983. package/build/cjs/value/convert/from-null.d.ts +2 -0
  984. package/build/cjs/value/convert/from-null.js +12 -0
  985. package/build/cjs/value/convert/from-number.d.ts +2 -0
  986. package/build/cjs/value/convert/from-number.js +12 -0
  987. package/build/cjs/value/convert/from-object.d.ts +2 -0
  988. package/build/cjs/value/convert/from-object.js +31 -0
  989. package/build/cjs/value/convert/from-record.d.ts +2 -0
  990. package/build/cjs/value/convert/from-record.js +26 -0
  991. package/build/cjs/value/convert/from-ref.d.ts +2 -0
  992. package/build/cjs/value/convert/from-ref.js +11 -0
  993. package/build/cjs/value/convert/from-string.d.ts +2 -0
  994. package/build/cjs/value/convert/from-string.js +12 -0
  995. package/build/cjs/value/convert/from-template-literal.d.ts +2 -0
  996. package/build/cjs/value/convert/from-template-literal.js +10 -0
  997. package/build/cjs/value/convert/from-tuple.d.ts +2 -0
  998. package/build/cjs/value/convert/from-tuple.js +14 -0
  999. package/build/cjs/value/convert/from-type.d.ts +2 -0
  1000. package/build/cjs/value/convert/from-type.js +48 -0
  1001. package/build/cjs/value/convert/from-undefined.d.ts +2 -0
  1002. package/build/cjs/value/convert/from-undefined.js +12 -0
  1003. package/build/cjs/value/convert/from-union.d.ts +2 -0
  1004. package/build/cjs/value/convert/from-union.js +16 -0
  1005. package/build/cjs/value/convert/from-void.d.ts +2 -0
  1006. package/build/cjs/value/convert/from-void.js +12 -0
  1007. package/build/cjs/value/convert/index.d.ts +1 -0
  1008. package/build/cjs/value/convert/index.js +17 -0
  1009. package/build/cjs/value/convert/try/index.d.ts +1 -0
  1010. package/build/cjs/value/convert/try/index.js +4 -0
  1011. package/build/cjs/value/convert/try/try-bigint.d.ts +2 -0
  1012. package/build/cjs/value/convert/try/try-bigint.js +77 -0
  1013. package/build/cjs/value/convert/try/try-boolean.d.ts +2 -0
  1014. package/build/cjs/value/convert/try/try-boolean.js +67 -0
  1015. package/build/cjs/value/convert/try/try-null.d.ts +2 -0
  1016. package/build/cjs/value/convert/try/try-null.js +64 -0
  1017. package/build/cjs/value/convert/try/try-number.d.ts +2 -0
  1018. package/build/cjs/value/convert/try/try-number.js +79 -0
  1019. package/build/cjs/value/convert/try/try-result.js +23 -0
  1020. package/build/cjs/value/convert/try/try-string.d.ts +2 -0
  1021. package/build/cjs/value/convert/try/try-string.js +59 -0
  1022. package/build/cjs/value/convert/try/try-undefined.d.ts +2 -0
  1023. package/build/cjs/value/convert/try/try-undefined.js +64 -0
  1024. package/build/cjs/value/convert/try/try.d.ts +7 -0
  1025. package/build/cjs/value/convert/try/try.js +23 -0
  1026. package/build/cjs/value/create/create.d.ts +5 -0
  1027. package/build/cjs/value/create/create.js +14 -0
  1028. package/build/cjs/value/create/error.d.ts +5 -0
  1029. package/build/cjs/value/create/error.js +11 -0
  1030. package/build/cjs/value/create/from-array.d.ts +2 -0
  1031. package/build/cjs/value/create/from-array.js +13 -0
  1032. package/build/cjs/value/create/from-async-iterator.d.ts +2 -0
  1033. package/build/cjs/value/create/from-async-iterator.js +8 -0
  1034. package/build/cjs/value/create/from-base.d.ts +2 -0
  1035. package/build/cjs/value/create/from-base.js +7 -0
  1036. package/build/cjs/value/create/from-bigint.d.ts +2 -0
  1037. package/build/cjs/value/create/from-bigint.js +10 -0
  1038. package/build/cjs/value/create/from-boolean.d.ts +2 -0
  1039. package/build/cjs/value/create/from-boolean.js +7 -0
  1040. package/build/cjs/value/create/from-constructor.d.ts +2 -0
  1041. package/build/cjs/value/create/from-constructor.js +13 -0
  1042. package/build/cjs/value/create/from-cyclic.d.ts +2 -0
  1043. package/build/cjs/value/create/from-cyclic.js +9 -0
  1044. package/build/cjs/value/create/from-default.d.ts +3 -0
  1045. package/build/cjs/value/create/from-default.js +13 -0
  1046. package/build/cjs/value/create/from-enum.d.ts +2 -0
  1047. package/build/cjs/value/create/from-enum.js +9 -0
  1048. package/build/cjs/value/create/from-function.d.ts +2 -0
  1049. package/build/cjs/value/create/from-function.js +9 -0
  1050. package/build/cjs/value/create/from-integer.d.ts +2 -0
  1051. package/build/cjs/value/create/from-integer.js +11 -0
  1052. package/build/cjs/value/create/from-intersect.d.ts +2 -0
  1053. package/build/cjs/value/create/from-intersect.js +9 -0
  1054. package/build/cjs/value/create/from-iterator.d.ts +2 -0
  1055. package/build/cjs/value/create/from-iterator.js +8 -0
  1056. package/build/cjs/value/create/from-literal.d.ts +2 -0
  1057. package/build/cjs/value/create/from-literal.js +7 -0
  1058. package/build/cjs/value/create/from-never.d.ts +2 -0
  1059. package/build/cjs/value/create/from-never.js +8 -0
  1060. package/build/cjs/value/create/from-null.d.ts +2 -0
  1061. package/build/cjs/value/create/from-null.js +7 -0
  1062. package/build/cjs/value/create/from-number.d.ts +2 -0
  1063. package/build/cjs/value/create/from-number.js +11 -0
  1064. package/build/cjs/value/create/from-object.d.ts +2 -0
  1065. package/build/cjs/value/create/from-object.js +12 -0
  1066. package/build/cjs/value/create/from-promise.d.ts +2 -0
  1067. package/build/cjs/value/create/from-promise.js +8 -0
  1068. package/build/cjs/value/create/from-record.d.ts +2 -0
  1069. package/build/cjs/value/create/from-record.js +11 -0
  1070. package/build/cjs/value/create/from-ref.d.ts +2 -0
  1071. package/build/cjs/value/create/from-ref.js +12 -0
  1072. package/build/cjs/value/create/from-string.d.ts +2 -0
  1073. package/build/cjs/value/create/from-string.js +12 -0
  1074. package/build/cjs/value/create/from-symbol.d.ts +2 -0
  1075. package/build/cjs/value/create/from-symbol.js +7 -0
  1076. package/build/cjs/value/create/from-template-literal.d.ts +2 -0
  1077. package/build/cjs/value/create/from-template-literal.js +14 -0
  1078. package/build/cjs/value/create/from-tuple.d.ts +2 -0
  1079. package/build/cjs/value/create/from-tuple.js +8 -0
  1080. package/build/cjs/value/create/from-type.d.ts +2 -0
  1081. package/build/cjs/value/create/from-type.js +72 -0
  1082. package/build/cjs/value/create/from-undefined.d.ts +2 -0
  1083. package/build/cjs/value/create/from-undefined.js +7 -0
  1084. package/build/cjs/value/create/from-union.d.ts +2 -0
  1085. package/build/cjs/value/create/from-union.js +12 -0
  1086. package/build/cjs/value/create/from-void.d.ts +2 -0
  1087. package/build/cjs/value/create/from-void.js +7 -0
  1088. package/build/cjs/value/create/index.d.ts +2 -0
  1089. package/build/cjs/value/create/index.js +18 -0
  1090. package/build/cjs/value/default/default.d.ts +13 -0
  1091. package/build/cjs/value/default/default.js +18 -0
  1092. package/build/cjs/value/default/from-array.d.ts +2 -0
  1093. package/build/cjs/value/default/from-array.js +15 -0
  1094. package/build/cjs/value/default/from-base.d.ts +2 -0
  1095. package/build/cjs/value/default/from-base.js +8 -0
  1096. package/build/cjs/value/default/from-cyclic.d.ts +2 -0
  1097. package/build/cjs/value/default/from-cyclic.js +10 -0
  1098. package/build/cjs/value/default/from-default.d.ts +3 -0
  1099. package/build/cjs/value/default/from-default.js +16 -0
  1100. package/build/cjs/value/default/from-intersect.d.ts +2 -0
  1101. package/build/cjs/value/default/from-intersect.js +11 -0
  1102. package/build/cjs/value/default/from-object.d.ts +2 -0
  1103. package/build/cjs/value/default/from-object.js +33 -0
  1104. package/build/cjs/value/default/from-record.d.ts +2 -0
  1105. package/build/cjs/value/default/from-record.js +29 -0
  1106. package/build/cjs/value/default/from-ref.d.ts +2 -0
  1107. package/build/cjs/value/default/from-ref.js +12 -0
  1108. package/build/cjs/value/default/from-tuple.d.ts +2 -0
  1109. package/build/cjs/value/default/from-tuple.js +17 -0
  1110. package/build/cjs/value/default/from-type.d.ts +2 -0
  1111. package/build/cjs/value/default/from-type.js +30 -0
  1112. package/build/cjs/value/default/from-union.d.ts +2 -0
  1113. package/build/cjs/value/default/from-union.js +17 -0
  1114. package/build/cjs/value/default/index.d.ts +1 -0
  1115. package/build/cjs/value/default/index.js +17 -0
  1116. package/build/cjs/value/delta/diff.d.ts +10 -0
  1117. package/build/cjs/value/delta/diff.js +132 -0
  1118. package/build/cjs/value/delta/edit.d.ts +24 -0
  1119. package/build/cjs/value/delta/edit.js +20 -0
  1120. package/build/cjs/value/delta/index.d.ts +3 -0
  1121. package/build/cjs/value/delta/index.js +19 -0
  1122. package/build/cjs/value/delta/patch.d.ts +8 -0
  1123. package/build/cjs/value/delta/patch.js +45 -0
  1124. package/build/cjs/value/equal/equal.js +9 -0
  1125. package/build/cjs/value/equal/index.d.ts +1 -0
  1126. package/build/cjs/value/equal/index.js +17 -0
  1127. package/build/cjs/value/errors/errors.d.ts +16 -0
  1128. package/build/cjs/value/errors/errors.js +20 -0
  1129. package/build/cjs/value/errors/index.d.ts +1 -0
  1130. package/build/cjs/value/errors/index.js +17 -0
  1131. package/build/cjs/value/hash/hash.js +13 -0
  1132. package/build/cjs/value/hash/index.d.ts +1 -0
  1133. package/build/cjs/value/hash/index.js +17 -0
  1134. package/build/cjs/value/index.d.ts +20 -0
  1135. package/build/cjs/value/index.js +43 -0
  1136. package/build/cjs/value/mutate/error.js +10 -0
  1137. package/build/cjs/value/mutate/from-array.d.ts +2 -0
  1138. package/build/cjs/value/mutate/from-array.js +19 -0
  1139. package/build/cjs/value/mutate/from-object.d.ts +2 -0
  1140. package/build/cjs/value/mutate/from-object.js +30 -0
  1141. package/build/cjs/value/mutate/from-unknown.d.ts +2 -0
  1142. package/build/cjs/value/mutate/from-unknown.js +10 -0
  1143. package/build/cjs/value/mutate/from-value.d.ts +2 -0
  1144. package/build/cjs/value/mutate/from-value.js +15 -0
  1145. package/build/cjs/value/mutate/index.d.ts +1 -0
  1146. package/build/cjs/value/mutate/index.js +17 -0
  1147. package/build/cjs/value/mutate/mutate.js +42 -0
  1148. package/build/cjs/value/parse/index.d.ts +1 -0
  1149. package/build/cjs/value/parse/index.js +17 -0
  1150. package/build/cjs/value/parse/parse.d.ts +21 -0
  1151. package/build/cjs/value/parse/parse.js +52 -0
  1152. package/build/cjs/value/pipeline/index.d.ts +1 -0
  1153. package/build/cjs/value/pipeline/index.js +17 -0
  1154. package/build/cjs/value/pipeline/pipeline.d.ts +10 -0
  1155. package/build/cjs/value/pipeline/pipeline.js +18 -0
  1156. package/build/cjs/value/pointer/index.d.ts +1 -0
  1157. package/build/cjs/value/pointer/index.js +4 -0
  1158. package/build/cjs/value/pointer/pointer.js +144 -0
  1159. package/build/cjs/value/repair/error.d.ts +7 -0
  1160. package/build/cjs/value/repair/error.js +12 -0
  1161. package/build/cjs/value/repair/from-array.d.ts +2 -0
  1162. package/build/cjs/value/repair/from-array.js +42 -0
  1163. package/build/cjs/value/repair/from-base.d.ts +2 -0
  1164. package/build/cjs/value/repair/from-base.js +11 -0
  1165. package/build/cjs/value/repair/from-enum.d.ts +2 -0
  1166. package/build/cjs/value/repair/from-enum.js +10 -0
  1167. package/build/cjs/value/repair/from-intersect.d.ts +2 -0
  1168. package/build/cjs/value/repair/from-intersect.js +10 -0
  1169. package/build/cjs/value/repair/from-object.d.ts +2 -0
  1170. package/build/cjs/value/repair/from-object.js +36 -0
  1171. package/build/cjs/value/repair/from-record.d.ts +2 -0
  1172. package/build/cjs/value/repair/from-record.js +36 -0
  1173. package/build/cjs/value/repair/from-ref.d.ts +2 -0
  1174. package/build/cjs/value/repair/from-ref.js +12 -0
  1175. package/build/cjs/value/repair/from-template-literal.d.ts +2 -0
  1176. package/build/cjs/value/repair/from-template-literal.js +10 -0
  1177. package/build/cjs/value/repair/from-tuple.d.ts +2 -0
  1178. package/build/cjs/value/repair/from-tuple.js +15 -0
  1179. package/build/cjs/value/repair/from-type.d.ts +2 -0
  1180. package/build/cjs/value/repair/from-type.js +67 -0
  1181. package/build/cjs/value/repair/from-union.d.ts +2 -0
  1182. package/build/cjs/value/repair/from-union.js +74 -0
  1183. package/build/cjs/value/repair/from-unknown.d.ts +2 -0
  1184. package/build/cjs/value/repair/from-unknown.js +15 -0
  1185. package/build/cjs/value/repair/index.d.ts +1 -0
  1186. package/build/cjs/value/repair/index.js +17 -0
  1187. package/build/cjs/value/repair/repair.d.ts +17 -0
  1188. package/build/cjs/value/repair/repair.js +23 -0
  1189. package/build/cjs/value/shared/index.d.ts +1 -0
  1190. package/build/cjs/value/shared/index.js +18 -0
  1191. package/build/cjs/value/shared/optional-undefined.d.ts +2 -0
  1192. package/build/cjs/value/shared/optional-undefined.js +18 -0
  1193. package/build/cjs/value/value.d.ts +16 -0
  1194. package/build/cjs/value/value.js +38 -0
  1195. package/build/esm/error/errors.d.mts +214 -0
  1196. package/build/esm/format/_registry.d.mts +15 -0
  1197. package/build/esm/format/date-time.d.mts +6 -0
  1198. package/build/esm/format/date.d.mts +6 -0
  1199. package/build/esm/format/duration.d.mts +5 -0
  1200. package/build/esm/format/email.d.mts +2 -0
  1201. package/build/esm/format/hostname.d.mts +2 -0
  1202. package/build/esm/format/idn-email.d.mts +2 -0
  1203. package/build/esm/format/idn-hostname.d.mts +5 -0
  1204. package/build/esm/format/ipv4.d.mts +6 -0
  1205. package/build/esm/format/ipv6.d.mts +6 -0
  1206. package/build/esm/format/iri-reference.d.mts +5 -0
  1207. package/build/esm/format/iri.d.mts +5 -0
  1208. package/build/esm/format/json-pointer-uri-fragment.d.mts +6 -0
  1209. package/build/esm/format/json-pointer.d.mts +6 -0
  1210. package/build/esm/format/regex.d.mts +6 -0
  1211. package/build/esm/format/relative-json-pointer.d.mts +6 -0
  1212. package/build/esm/format/time.d.mts +5 -0
  1213. package/build/esm/format/uri-reference.d.mts +6 -0
  1214. package/build/esm/format/uri-template.d.mts +6 -0
  1215. package/build/esm/format/uri.d.mts +6 -0
  1216. package/build/esm/format/url.d.mts +6 -0
  1217. package/build/esm/format/uuid.d.mts +6 -0
  1218. package/build/esm/guard/emit.d.mts +57 -0
  1219. package/build/esm/guard/globals.d.mts +35 -0
  1220. package/build/esm/guard/guard.d.mts +59 -0
  1221. package/build/esm/guard/native.d.mts +20 -0
  1222. package/build/esm/schema/engine/_exact_optional.d.mts +3 -0
  1223. package/build/esm/schema/engine/_externals.d.mts +9 -0
  1224. package/build/esm/schema/types/schema.d.mts +9 -0
  1225. package/build/esm/system/arguments/arguments.d.mts +5 -0
  1226. package/build/esm/system/environment/can-evaluate.d.mts +2 -0
  1227. package/build/esm/system/hashing/hash.d.mts +4 -0
  1228. package/build/esm/system/memory/assign.d.mts +14 -0
  1229. package/build/esm/system/memory/clone.d.mts +6 -0
  1230. package/build/esm/system/memory/create.d.mts +8 -0
  1231. package/build/esm/system/memory/discard.d.mts +4 -0
  1232. package/build/esm/system/memory/metrics.d.mts +14 -0
  1233. package/build/esm/system/memory/update.d.mts +7 -0
  1234. package/build/esm/system/settings/settings.d.mts +47 -0
  1235. package/build/esm/system/unreachable/unreachable.d.mts +3 -0
  1236. package/build/esm/type/engine/helpers/union.d.mts +7 -0
  1237. package/build/esm/type/engine/intrinsics/mapping.d.mts +9 -0
  1238. package/build/esm/type/engine/object/from-intersect.d.mts +17 -0
  1239. package/build/esm/type/engine/object/from-intersect.mjs +21 -0
  1240. package/build/esm/type/engine/object/from-union.d.mts +12 -0
  1241. package/build/esm/type/engine/object/from-union.mjs +26 -0
  1242. package/build/esm/type/engine/template-literal/create.d.mts +1 -0
  1243. package/build/esm/type/script/mapping.d.mts +358 -0
  1244. package/build/esm/type/script/mapping.mjs +525 -0
  1245. package/build/esm/type/script/parser.d.mts +256 -0
  1246. package/build/esm/type/script/parser.mjs +132 -0
  1247. package/build/esm/type/script/token/internal/char.d.mts +73 -0
  1248. package/build/esm/type/script/token/internal/result.d.mts +2 -0
  1249. package/build/esm/type/script/token/internal/take.d.mts +6 -0
  1250. package/build/esm/type/script/token/until.d.mts +6 -0
  1251. package/build/esm/type/types/object.d.mts +20 -0
  1252. package/build/esm/type/types/object.mjs +29 -0
  1253. package/build/esm/type/types/schema.d.mts +199 -0
  1254. package/build/esm/value/clone/clone.d.mts +5 -0
  1255. package/build/esm/value/convert/try/try-result.d.mts +8 -0
  1256. package/build/esm/value/equal/equal.d.mts +2 -0
  1257. package/build/esm/value/hash/hash.d.mts +6 -0
  1258. package/build/esm/value/mutate/error.d.mts +3 -0
  1259. package/build/esm/value/mutate/mutate.d.mts +9 -0
  1260. package/build/esm/value/pointer/pointer.d.mts +17 -0
  1261. package/compile/package.json +4 -0
  1262. package/error/package.json +4 -0
  1263. package/format/package.json +4 -0
  1264. package/guard/package.json +4 -0
  1265. package/package.json +68 -31
  1266. package/schema/package.json +4 -0
  1267. package/system/package.json +4 -0
  1268. package/type/package.json +4 -0
  1269. package/value/package.json +4 -0
  1270. package/build/type/engine/object/from-intersect.d.mts +0 -14
  1271. package/build/type/engine/object/from-intersect.mjs +0 -17
  1272. package/build/type/engine/object/from-union.d.mts +0 -12
  1273. package/build/type/engine/object/from-union.mjs +0 -26
  1274. package/build/type/script/mapping.d.mts +0 -358
  1275. package/build/type/script/mapping.mjs +0 -525
  1276. package/build/type/script/parser.d.mts +0 -256
  1277. package/build/type/script/parser.mjs +0 -132
  1278. package/build/type/types/object.d.mts +0 -17
  1279. package/build/type/types/object.mjs +0 -27
  1280. /package/build/{error/errors.d.mts → cjs/error/errors.d.ts} +0 -0
  1281. /package/build/{format/_registry.d.mts → cjs/format/_registry.d.ts} +0 -0
  1282. /package/build/{format/date-time.d.mts → cjs/format/date-time.d.ts} +0 -0
  1283. /package/build/{format/date.d.mts → cjs/format/date.d.ts} +0 -0
  1284. /package/build/{format/duration.d.mts → cjs/format/duration.d.ts} +0 -0
  1285. /package/build/{format/email.d.mts → cjs/format/email.d.ts} +0 -0
  1286. /package/build/{format/hostname.d.mts → cjs/format/hostname.d.ts} +0 -0
  1287. /package/build/{format/idn-email.d.mts → cjs/format/idn-email.d.ts} +0 -0
  1288. /package/build/{format/idn-hostname.d.mts → cjs/format/idn-hostname.d.ts} +0 -0
  1289. /package/build/{format/ipv4.d.mts → cjs/format/ipv4.d.ts} +0 -0
  1290. /package/build/{format/ipv6.d.mts → cjs/format/ipv6.d.ts} +0 -0
  1291. /package/build/{format/iri-reference.d.mts → cjs/format/iri-reference.d.ts} +0 -0
  1292. /package/build/{format/iri.d.mts → cjs/format/iri.d.ts} +0 -0
  1293. /package/build/{format/json-pointer-uri-fragment.d.mts → cjs/format/json-pointer-uri-fragment.d.ts} +0 -0
  1294. /package/build/{format/json-pointer.d.mts → cjs/format/json-pointer.d.ts} +0 -0
  1295. /package/build/{format/regex.d.mts → cjs/format/regex.d.ts} +0 -0
  1296. /package/build/{format/relative-json-pointer.d.mts → cjs/format/relative-json-pointer.d.ts} +0 -0
  1297. /package/build/{format/time.d.mts → cjs/format/time.d.ts} +0 -0
  1298. /package/build/{format/uri-reference.d.mts → cjs/format/uri-reference.d.ts} +0 -0
  1299. /package/build/{format/uri-template.d.mts → cjs/format/uri-template.d.ts} +0 -0
  1300. /package/build/{format/uri.d.mts → cjs/format/uri.d.ts} +0 -0
  1301. /package/build/{format/url.d.mts → cjs/format/url.d.ts} +0 -0
  1302. /package/build/{format/uuid.d.mts → cjs/format/uuid.d.ts} +0 -0
  1303. /package/build/{guard/emit.d.mts → cjs/guard/emit.d.ts} +0 -0
  1304. /package/build/{guard/globals.d.mts → cjs/guard/globals.d.ts} +0 -0
  1305. /package/build/{guard/guard.d.mts → cjs/guard/guard.d.ts} +0 -0
  1306. /package/build/{guard/native.d.mts → cjs/guard/native.d.ts} +0 -0
  1307. /package/build/{schema/engine/_exact_optional.d.mts → cjs/schema/engine/_exact_optional.d.ts} +0 -0
  1308. /package/build/{schema/engine/_externals.d.mts → cjs/schema/engine/_externals.d.ts} +0 -0
  1309. /package/build/{schema/types/schema.d.mts → cjs/schema/types/schema.d.ts} +0 -0
  1310. /package/build/{system/arguments/arguments.d.mts → cjs/system/arguments/arguments.d.ts} +0 -0
  1311. /package/build/{system/environment/can-evaluate.d.mts → cjs/system/environment/can-evaluate.d.ts} +0 -0
  1312. /package/build/{system/hashing/hash.d.mts → cjs/system/hashing/hash.d.ts} +0 -0
  1313. /package/build/{system/memory/assign.d.mts → cjs/system/memory/assign.d.ts} +0 -0
  1314. /package/build/{system/memory/clone.d.mts → cjs/system/memory/clone.d.ts} +0 -0
  1315. /package/build/{system/memory/create.d.mts → cjs/system/memory/create.d.ts} +0 -0
  1316. /package/build/{system/memory/discard.d.mts → cjs/system/memory/discard.d.ts} +0 -0
  1317. /package/build/{system/memory/metrics.d.mts → cjs/system/memory/metrics.d.ts} +0 -0
  1318. /package/build/{system/memory/update.d.mts → cjs/system/memory/update.d.ts} +0 -0
  1319. /package/build/{system/settings/settings.d.mts → cjs/system/settings/settings.d.ts} +0 -0
  1320. /package/build/{system/unreachable/unreachable.d.mts → cjs/system/unreachable/unreachable.d.ts} +0 -0
  1321. /package/build/{type/engine/helpers/union.d.mts → cjs/type/engine/helpers/union.d.ts} +0 -0
  1322. /package/build/{type/engine/intrinsics/mapping.d.mts → cjs/type/engine/intrinsics/mapping.d.ts} +0 -0
  1323. /package/build/{type/engine/template-literal/create.d.mts → cjs/type/engine/template-literal/create.d.ts} +0 -0
  1324. /package/build/{type/script/token/internal/char.d.mts → cjs/type/script/token/internal/char.d.ts} +0 -0
  1325. /package/build/{type/script/token/internal/result.d.mts → cjs/type/script/token/internal/result.d.ts} +0 -0
  1326. /package/build/{type/script/token/internal/take.d.mts → cjs/type/script/token/internal/take.d.ts} +0 -0
  1327. /package/build/{type/script/token/until.d.mts → cjs/type/script/token/until.d.ts} +0 -0
  1328. /package/build/{type/types/schema.d.mts → cjs/type/types/schema.d.ts} +0 -0
  1329. /package/build/{value/clone/clone.d.mts → cjs/value/clone/clone.d.ts} +0 -0
  1330. /package/build/{value/convert/try/try-result.d.mts → cjs/value/convert/try/try-result.d.ts} +0 -0
  1331. /package/build/{value/equal/equal.d.mts → cjs/value/equal/equal.d.ts} +0 -0
  1332. /package/build/{value/hash/hash.d.mts → cjs/value/hash/hash.d.ts} +0 -0
  1333. /package/build/{value/mutate/error.d.mts → cjs/value/mutate/error.d.ts} +0 -0
  1334. /package/build/{value/mutate/mutate.d.mts → cjs/value/mutate/mutate.d.ts} +0 -0
  1335. /package/build/{value/pointer/pointer.d.mts → cjs/value/pointer/pointer.d.ts} +0 -0
  1336. /package/build/{compile → esm/compile}/code.d.mts +0 -0
  1337. /package/build/{compile → esm/compile}/code.mjs +0 -0
  1338. /package/build/{compile → esm/compile}/compile.d.mts +0 -0
  1339. /package/build/{compile → esm/compile}/compile.mjs +0 -0
  1340. /package/build/{compile → esm/compile}/index.d.mts +0 -0
  1341. /package/build/{compile → esm/compile}/index.mjs +0 -0
  1342. /package/build/{compile → esm/compile}/validator.d.mts +0 -0
  1343. /package/build/{compile → esm/compile}/validator.mjs +0 -0
  1344. /package/build/{error → esm/error}/errors.mjs +0 -0
  1345. /package/build/{error → esm/error}/index.d.mts +0 -0
  1346. /package/build/{error → esm/error}/index.mjs +0 -0
  1347. /package/build/{format → esm/format}/_registry.mjs +0 -0
  1348. /package/build/{format → esm/format}/date-time.mjs +0 -0
  1349. /package/build/{format → esm/format}/date.mjs +0 -0
  1350. /package/build/{format → esm/format}/duration.mjs +0 -0
  1351. /package/build/{format → esm/format}/email.mjs +0 -0
  1352. /package/build/{format → esm/format}/format.d.mts +0 -0
  1353. /package/build/{format → esm/format}/format.mjs +0 -0
  1354. /package/build/{format → esm/format}/hostname.mjs +0 -0
  1355. /package/build/{format → esm/format}/idn-email.mjs +0 -0
  1356. /package/build/{format → esm/format}/idn-hostname.mjs +0 -0
  1357. /package/build/{format → esm/format}/index.d.mts +0 -0
  1358. /package/build/{format → esm/format}/index.mjs +0 -0
  1359. /package/build/{format → esm/format}/ipv4.mjs +0 -0
  1360. /package/build/{format → esm/format}/ipv6.mjs +0 -0
  1361. /package/build/{format → esm/format}/iri-reference.mjs +0 -0
  1362. /package/build/{format → esm/format}/iri.mjs +0 -0
  1363. /package/build/{format → esm/format}/json-pointer-uri-fragment.mjs +0 -0
  1364. /package/build/{format → esm/format}/json-pointer.mjs +0 -0
  1365. /package/build/{format → esm/format}/regex.mjs +0 -0
  1366. /package/build/{format → esm/format}/relative-json-pointer.mjs +0 -0
  1367. /package/build/{format → esm/format}/time.mjs +0 -0
  1368. /package/build/{format → esm/format}/uri-reference.mjs +0 -0
  1369. /package/build/{format → esm/format}/uri-template.mjs +0 -0
  1370. /package/build/{format → esm/format}/uri.mjs +0 -0
  1371. /package/build/{format → esm/format}/url.mjs +0 -0
  1372. /package/build/{format → esm/format}/uuid.mjs +0 -0
  1373. /package/build/{guard → esm/guard}/emit.mjs +0 -0
  1374. /package/build/{guard → esm/guard}/globals.mjs +0 -0
  1375. /package/build/{guard → esm/guard}/guard.mjs +0 -0
  1376. /package/build/{guard → esm/guard}/index.d.mts +0 -0
  1377. /package/build/{guard → esm/guard}/index.mjs +0 -0
  1378. /package/build/{guard → esm/guard}/native.mjs +0 -0
  1379. /package/build/{index.d.mts → esm/index.d.mts} +0 -0
  1380. /package/build/{index.mjs → esm/index.mjs} +0 -0
  1381. /package/build/{schema → esm/schema}/build.d.mts +0 -0
  1382. /package/build/{schema → esm/schema}/build.mjs +0 -0
  1383. /package/build/{schema → esm/schema}/check.d.mts +0 -0
  1384. /package/build/{schema → esm/schema}/check.mjs +0 -0
  1385. /package/build/{schema → esm/schema}/deref/deref.d.mts +0 -0
  1386. /package/build/{schema → esm/schema}/deref/deref.mjs +0 -0
  1387. /package/build/{schema → esm/schema}/deref/index.d.mts +0 -0
  1388. /package/build/{schema → esm/schema}/deref/index.mjs +0 -0
  1389. /package/build/{schema → esm/schema}/engine/_context.d.mts +0 -0
  1390. /package/build/{schema → esm/schema}/engine/_context.mjs +0 -0
  1391. /package/build/{schema → esm/schema}/engine/_exact_optional.mjs +0 -0
  1392. /package/build/{schema → esm/schema}/engine/_externals.mjs +0 -0
  1393. /package/build/{schema → esm/schema}/engine/_functions.d.mts +0 -0
  1394. /package/build/{schema → esm/schema}/engine/_functions.mjs +0 -0
  1395. /package/build/{schema → esm/schema}/engine/_guard.d.mts +0 -0
  1396. /package/build/{schema → esm/schema}/engine/_guard.mjs +0 -0
  1397. /package/build/{schema → esm/schema}/engine/_reducer.d.mts +0 -0
  1398. /package/build/{schema → esm/schema}/engine/_reducer.mjs +0 -0
  1399. /package/build/{schema → esm/schema}/engine/_refine.d.mts +0 -0
  1400. /package/build/{schema → esm/schema}/engine/_refine.mjs +0 -0
  1401. /package/build/{schema → esm/schema}/engine/additionalItems.d.mts +0 -0
  1402. /package/build/{schema → esm/schema}/engine/additionalItems.mjs +0 -0
  1403. /package/build/{schema → esm/schema}/engine/additionalProperties.d.mts +0 -0
  1404. /package/build/{schema → esm/schema}/engine/additionalProperties.mjs +0 -0
  1405. /package/build/{schema → esm/schema}/engine/allOf.d.mts +0 -0
  1406. /package/build/{schema → esm/schema}/engine/allOf.mjs +0 -0
  1407. /package/build/{schema → esm/schema}/engine/anyOf.d.mts +0 -0
  1408. /package/build/{schema → esm/schema}/engine/anyOf.mjs +0 -0
  1409. /package/build/{schema → esm/schema}/engine/boolean.d.mts +0 -0
  1410. /package/build/{schema → esm/schema}/engine/boolean.mjs +0 -0
  1411. /package/build/{schema → esm/schema}/engine/const.d.mts +0 -0
  1412. /package/build/{schema → esm/schema}/engine/const.mjs +0 -0
  1413. /package/build/{schema → esm/schema}/engine/contains.d.mts +0 -0
  1414. /package/build/{schema → esm/schema}/engine/contains.mjs +0 -0
  1415. /package/build/{schema → esm/schema}/engine/dependencies.d.mts +0 -0
  1416. /package/build/{schema → esm/schema}/engine/dependencies.mjs +0 -0
  1417. /package/build/{schema → esm/schema}/engine/dependentRequired.d.mts +0 -0
  1418. /package/build/{schema → esm/schema}/engine/dependentRequired.mjs +0 -0
  1419. /package/build/{schema → esm/schema}/engine/dependentSchemas.d.mts +0 -0
  1420. /package/build/{schema → esm/schema}/engine/dependentSchemas.mjs +0 -0
  1421. /package/build/{schema → esm/schema}/engine/enum.d.mts +0 -0
  1422. /package/build/{schema → esm/schema}/engine/enum.mjs +0 -0
  1423. /package/build/{schema → esm/schema}/engine/exclusiveMaximum.d.mts +0 -0
  1424. /package/build/{schema → esm/schema}/engine/exclusiveMaximum.mjs +0 -0
  1425. /package/build/{schema → esm/schema}/engine/exclusiveMinimum.d.mts +0 -0
  1426. /package/build/{schema → esm/schema}/engine/exclusiveMinimum.mjs +0 -0
  1427. /package/build/{schema → esm/schema}/engine/format.d.mts +0 -0
  1428. /package/build/{schema → esm/schema}/engine/format.mjs +0 -0
  1429. /package/build/{schema → esm/schema}/engine/if.d.mts +0 -0
  1430. /package/build/{schema → esm/schema}/engine/if.mjs +0 -0
  1431. /package/build/{schema → esm/schema}/engine/index.d.mts +0 -0
  1432. /package/build/{schema → esm/schema}/engine/index.mjs +0 -0
  1433. /package/build/{schema → esm/schema}/engine/items.d.mts +0 -0
  1434. /package/build/{schema → esm/schema}/engine/items.mjs +0 -0
  1435. /package/build/{schema → esm/schema}/engine/maxContains.d.mts +0 -0
  1436. /package/build/{schema → esm/schema}/engine/maxContains.mjs +0 -0
  1437. /package/build/{schema → esm/schema}/engine/maxItems.d.mts +0 -0
  1438. /package/build/{schema → esm/schema}/engine/maxItems.mjs +0 -0
  1439. /package/build/{schema → esm/schema}/engine/maxLength.d.mts +0 -0
  1440. /package/build/{schema → esm/schema}/engine/maxLength.mjs +0 -0
  1441. /package/build/{schema → esm/schema}/engine/maxProperties.d.mts +0 -0
  1442. /package/build/{schema → esm/schema}/engine/maxProperties.mjs +0 -0
  1443. /package/build/{schema → esm/schema}/engine/maximum.d.mts +0 -0
  1444. /package/build/{schema → esm/schema}/engine/maximum.mjs +0 -0
  1445. /package/build/{schema → esm/schema}/engine/minContains.d.mts +0 -0
  1446. /package/build/{schema → esm/schema}/engine/minContains.mjs +0 -0
  1447. /package/build/{schema → esm/schema}/engine/minItems.d.mts +0 -0
  1448. /package/build/{schema → esm/schema}/engine/minItems.mjs +0 -0
  1449. /package/build/{schema → esm/schema}/engine/minLength.d.mts +0 -0
  1450. /package/build/{schema → esm/schema}/engine/minLength.mjs +0 -0
  1451. /package/build/{schema → esm/schema}/engine/minProperties.d.mts +0 -0
  1452. /package/build/{schema → esm/schema}/engine/minProperties.mjs +0 -0
  1453. /package/build/{schema → esm/schema}/engine/minimum.d.mts +0 -0
  1454. /package/build/{schema → esm/schema}/engine/minimum.mjs +0 -0
  1455. /package/build/{schema → esm/schema}/engine/multipleOf.d.mts +0 -0
  1456. /package/build/{schema → esm/schema}/engine/multipleOf.mjs +0 -0
  1457. /package/build/{schema → esm/schema}/engine/not.d.mts +0 -0
  1458. /package/build/{schema → esm/schema}/engine/not.mjs +0 -0
  1459. /package/build/{schema → esm/schema}/engine/oneOf.d.mts +0 -0
  1460. /package/build/{schema → esm/schema}/engine/oneOf.mjs +0 -0
  1461. /package/build/{schema → esm/schema}/engine/pattern.d.mts +0 -0
  1462. /package/build/{schema → esm/schema}/engine/pattern.mjs +0 -0
  1463. /package/build/{schema → esm/schema}/engine/patternProperties.d.mts +0 -0
  1464. /package/build/{schema → esm/schema}/engine/patternProperties.mjs +0 -0
  1465. /package/build/{schema → esm/schema}/engine/prefixItems.d.mts +0 -0
  1466. /package/build/{schema → esm/schema}/engine/prefixItems.mjs +0 -0
  1467. /package/build/{schema → esm/schema}/engine/properties.d.mts +0 -0
  1468. /package/build/{schema → esm/schema}/engine/properties.mjs +0 -0
  1469. /package/build/{schema → esm/schema}/engine/propertyNames.d.mts +0 -0
  1470. /package/build/{schema → esm/schema}/engine/propertyNames.mjs +0 -0
  1471. /package/build/{schema → esm/schema}/engine/ref.d.mts +0 -0
  1472. /package/build/{schema → esm/schema}/engine/ref.mjs +0 -0
  1473. /package/build/{schema → esm/schema}/engine/required.d.mts +0 -0
  1474. /package/build/{schema → esm/schema}/engine/required.mjs +0 -0
  1475. /package/build/{schema → esm/schema}/engine/schema.d.mts +0 -0
  1476. /package/build/{schema → esm/schema}/engine/schema.mjs +0 -0
  1477. /package/build/{schema → esm/schema}/engine/type.d.mts +0 -0
  1478. /package/build/{schema → esm/schema}/engine/type.mjs +0 -0
  1479. /package/build/{schema → esm/schema}/engine/unevaluatedItems.d.mts +0 -0
  1480. /package/build/{schema → esm/schema}/engine/unevaluatedItems.mjs +0 -0
  1481. /package/build/{schema → esm/schema}/engine/unevaluatedProperties.d.mts +0 -0
  1482. /package/build/{schema → esm/schema}/engine/unevaluatedProperties.mjs +0 -0
  1483. /package/build/{schema → esm/schema}/engine/uniqueItems.d.mts +0 -0
  1484. /package/build/{schema → esm/schema}/engine/uniqueItems.mjs +0 -0
  1485. /package/build/{schema → esm/schema}/errors.d.mts +0 -0
  1486. /package/build/{schema → esm/schema}/errors.mjs +0 -0
  1487. /package/build/{schema → esm/schema}/index.d.mts +0 -0
  1488. /package/build/{schema → esm/schema}/index.mjs +0 -0
  1489. /package/build/{schema → esm/schema}/schema.d.mts +0 -0
  1490. /package/build/{schema → esm/schema}/schema.mjs +0 -0
  1491. /package/build/{schema → esm/schema}/types/_guard.d.mts +0 -0
  1492. /package/build/{schema → esm/schema}/types/_guard.mjs +0 -0
  1493. /package/build/{schema → esm/schema}/types/_refine.d.mts +0 -0
  1494. /package/build/{schema → esm/schema}/types/_refine.mjs +0 -0
  1495. /package/build/{schema → esm/schema}/types/additionalItems.d.mts +0 -0
  1496. /package/build/{schema → esm/schema}/types/additionalItems.mjs +0 -0
  1497. /package/build/{schema → esm/schema}/types/additionalProperties.d.mts +0 -0
  1498. /package/build/{schema → esm/schema}/types/additionalProperties.mjs +0 -0
  1499. /package/build/{schema → esm/schema}/types/allOf.d.mts +0 -0
  1500. /package/build/{schema → esm/schema}/types/allOf.mjs +0 -0
  1501. /package/build/{schema → esm/schema}/types/anyOf.d.mts +0 -0
  1502. /package/build/{schema → esm/schema}/types/anyOf.mjs +0 -0
  1503. /package/build/{schema → esm/schema}/types/const.d.mts +0 -0
  1504. /package/build/{schema → esm/schema}/types/const.mjs +0 -0
  1505. /package/build/{schema → esm/schema}/types/contains.d.mts +0 -0
  1506. /package/build/{schema → esm/schema}/types/contains.mjs +0 -0
  1507. /package/build/{schema → esm/schema}/types/contentEncoding.d.mts +0 -0
  1508. /package/build/{schema → esm/schema}/types/contentEncoding.mjs +0 -0
  1509. /package/build/{schema → esm/schema}/types/contentMediaType.d.mts +0 -0
  1510. /package/build/{schema → esm/schema}/types/contentMediaType.mjs +0 -0
  1511. /package/build/{schema → esm/schema}/types/default.d.mts +0 -0
  1512. /package/build/{schema → esm/schema}/types/default.mjs +0 -0
  1513. /package/build/{schema → esm/schema}/types/defs.d.mts +0 -0
  1514. /package/build/{schema → esm/schema}/types/defs.mjs +0 -0
  1515. /package/build/{schema → esm/schema}/types/dependencies.d.mts +0 -0
  1516. /package/build/{schema → esm/schema}/types/dependencies.mjs +0 -0
  1517. /package/build/{schema → esm/schema}/types/dependentRequired.d.mts +0 -0
  1518. /package/build/{schema → esm/schema}/types/dependentRequired.mjs +0 -0
  1519. /package/build/{schema → esm/schema}/types/dependentSchemas.d.mts +0 -0
  1520. /package/build/{schema → esm/schema}/types/dependentSchemas.mjs +0 -0
  1521. /package/build/{schema → esm/schema}/types/else.d.mts +0 -0
  1522. /package/build/{schema → esm/schema}/types/else.mjs +0 -0
  1523. /package/build/{schema → esm/schema}/types/enum.d.mts +0 -0
  1524. /package/build/{schema → esm/schema}/types/enum.mjs +0 -0
  1525. /package/build/{schema → esm/schema}/types/exclusiveMaximum.d.mts +0 -0
  1526. /package/build/{schema → esm/schema}/types/exclusiveMaximum.mjs +0 -0
  1527. /package/build/{schema → esm/schema}/types/exclusiveMinimum.d.mts +0 -0
  1528. /package/build/{schema → esm/schema}/types/exclusiveMinimum.mjs +0 -0
  1529. /package/build/{schema → esm/schema}/types/format.d.mts +0 -0
  1530. /package/build/{schema → esm/schema}/types/format.mjs +0 -0
  1531. /package/build/{schema → esm/schema}/types/id.d.mts +0 -0
  1532. /package/build/{schema → esm/schema}/types/id.mjs +0 -0
  1533. /package/build/{schema → esm/schema}/types/if.d.mts +0 -0
  1534. /package/build/{schema → esm/schema}/types/if.mjs +0 -0
  1535. /package/build/{schema → esm/schema}/types/index.d.mts +0 -0
  1536. /package/build/{schema → esm/schema}/types/index.mjs +0 -0
  1537. /package/build/{schema → esm/schema}/types/items.d.mts +0 -0
  1538. /package/build/{schema → esm/schema}/types/items.mjs +0 -0
  1539. /package/build/{schema → esm/schema}/types/maxContains.d.mts +0 -0
  1540. /package/build/{schema → esm/schema}/types/maxContains.mjs +0 -0
  1541. /package/build/{schema → esm/schema}/types/maxItems.d.mts +0 -0
  1542. /package/build/{schema → esm/schema}/types/maxItems.mjs +0 -0
  1543. /package/build/{schema → esm/schema}/types/maxLength.d.mts +0 -0
  1544. /package/build/{schema → esm/schema}/types/maxLength.mjs +0 -0
  1545. /package/build/{schema → esm/schema}/types/maxProperties.d.mts +0 -0
  1546. /package/build/{schema → esm/schema}/types/maxProperties.mjs +0 -0
  1547. /package/build/{schema → esm/schema}/types/maximum.d.mts +0 -0
  1548. /package/build/{schema → esm/schema}/types/maximum.mjs +0 -0
  1549. /package/build/{schema → esm/schema}/types/minContains.d.mts +0 -0
  1550. /package/build/{schema → esm/schema}/types/minContains.mjs +0 -0
  1551. /package/build/{schema → esm/schema}/types/minItems.d.mts +0 -0
  1552. /package/build/{schema → esm/schema}/types/minItems.mjs +0 -0
  1553. /package/build/{schema → esm/schema}/types/minLength.d.mts +0 -0
  1554. /package/build/{schema → esm/schema}/types/minLength.mjs +0 -0
  1555. /package/build/{schema → esm/schema}/types/minProperties.d.mts +0 -0
  1556. /package/build/{schema → esm/schema}/types/minProperties.mjs +0 -0
  1557. /package/build/{schema → esm/schema}/types/minimum.d.mts +0 -0
  1558. /package/build/{schema → esm/schema}/types/minimum.mjs +0 -0
  1559. /package/build/{schema → esm/schema}/types/multipleOf.d.mts +0 -0
  1560. /package/build/{schema → esm/schema}/types/multipleOf.mjs +0 -0
  1561. /package/build/{schema → esm/schema}/types/not.d.mts +0 -0
  1562. /package/build/{schema → esm/schema}/types/not.mjs +0 -0
  1563. /package/build/{schema → esm/schema}/types/oneOf.d.mts +0 -0
  1564. /package/build/{schema → esm/schema}/types/oneOf.mjs +0 -0
  1565. /package/build/{schema → esm/schema}/types/pattern.d.mts +0 -0
  1566. /package/build/{schema → esm/schema}/types/pattern.mjs +0 -0
  1567. /package/build/{schema → esm/schema}/types/patternProperties.d.mts +0 -0
  1568. /package/build/{schema → esm/schema}/types/patternProperties.mjs +0 -0
  1569. /package/build/{schema → esm/schema}/types/prefixItems.d.mts +0 -0
  1570. /package/build/{schema → esm/schema}/types/prefixItems.mjs +0 -0
  1571. /package/build/{schema → esm/schema}/types/properties.d.mts +0 -0
  1572. /package/build/{schema → esm/schema}/types/properties.mjs +0 -0
  1573. /package/build/{schema → esm/schema}/types/propertyNames.d.mts +0 -0
  1574. /package/build/{schema → esm/schema}/types/propertyNames.mjs +0 -0
  1575. /package/build/{schema → esm/schema}/types/ref.d.mts +0 -0
  1576. /package/build/{schema → esm/schema}/types/ref.mjs +0 -0
  1577. /package/build/{schema → esm/schema}/types/required.d.mts +0 -0
  1578. /package/build/{schema → esm/schema}/types/required.mjs +0 -0
  1579. /package/build/{schema → esm/schema}/types/schema.mjs +0 -0
  1580. /package/build/{schema → esm/schema}/types/static.d.mts +0 -0
  1581. /package/build/{schema → esm/schema}/types/static.mjs +0 -0
  1582. /package/build/{schema → esm/schema}/types/then.d.mts +0 -0
  1583. /package/build/{schema → esm/schema}/types/then.mjs +0 -0
  1584. /package/build/{schema → esm/schema}/types/type.d.mts +0 -0
  1585. /package/build/{schema → esm/schema}/types/type.mjs +0 -0
  1586. /package/build/{schema → esm/schema}/types/unevaluatedItems.d.mts +0 -0
  1587. /package/build/{schema → esm/schema}/types/unevaluatedItems.mjs +0 -0
  1588. /package/build/{schema → esm/schema}/types/unevaluatedProperties.d.mts +0 -0
  1589. /package/build/{schema → esm/schema}/types/unevaluatedProperties.mjs +0 -0
  1590. /package/build/{schema → esm/schema}/types/uniqueItems.d.mts +0 -0
  1591. /package/build/{schema → esm/schema}/types/uniqueItems.mjs +0 -0
  1592. /package/build/{system → esm/system}/arguments/arguments.mjs +0 -0
  1593. /package/build/{system → esm/system}/arguments/index.d.mts +0 -0
  1594. /package/build/{system → esm/system}/arguments/index.mjs +0 -0
  1595. /package/build/{system → esm/system}/environment/can-evaluate.mjs +0 -0
  1596. /package/build/{system → esm/system}/environment/environment.d.mts +0 -0
  1597. /package/build/{system → esm/system}/environment/environment.mjs +0 -0
  1598. /package/build/{system → esm/system}/environment/index.d.mts +0 -0
  1599. /package/build/{system → esm/system}/environment/index.mjs +0 -0
  1600. /package/build/{system → esm/system}/hashing/hash.mjs +0 -0
  1601. /package/build/{system → esm/system}/hashing/index.d.mts +0 -0
  1602. /package/build/{system → esm/system}/hashing/index.mjs +0 -0
  1603. /package/build/{system → esm/system}/index.d.mts +0 -0
  1604. /package/build/{system → esm/system}/index.mjs +0 -0
  1605. /package/build/{system → esm/system}/locale/_config.d.mts +0 -0
  1606. /package/build/{system → esm/system}/locale/_config.mjs +0 -0
  1607. /package/build/{system → esm/system}/locale/_locale.d.mts +0 -0
  1608. /package/build/{system → esm/system}/locale/_locale.mjs +0 -0
  1609. /package/build/{system → esm/system}/locale/ar_001.d.mts +0 -0
  1610. /package/build/{system → esm/system}/locale/ar_001.mjs +0 -0
  1611. /package/build/{system → esm/system}/locale/bn_BD.d.mts +0 -0
  1612. /package/build/{system → esm/system}/locale/bn_BD.mjs +0 -0
  1613. /package/build/{system → esm/system}/locale/cs_CZ.d.mts +0 -0
  1614. /package/build/{system → esm/system}/locale/cs_CZ.mjs +0 -0
  1615. /package/build/{system → esm/system}/locale/de_DE.d.mts +0 -0
  1616. /package/build/{system → esm/system}/locale/de_DE.mjs +0 -0
  1617. /package/build/{system → esm/system}/locale/el_GR.d.mts +0 -0
  1618. /package/build/{system → esm/system}/locale/el_GR.mjs +0 -0
  1619. /package/build/{system → esm/system}/locale/en_US.d.mts +0 -0
  1620. /package/build/{system → esm/system}/locale/en_US.mjs +0 -0
  1621. /package/build/{system → esm/system}/locale/es_419.d.mts +0 -0
  1622. /package/build/{system → esm/system}/locale/es_419.mjs +0 -0
  1623. /package/build/{system → esm/system}/locale/es_AR.d.mts +0 -0
  1624. /package/build/{system → esm/system}/locale/es_AR.mjs +0 -0
  1625. /package/build/{system → esm/system}/locale/es_ES.d.mts +0 -0
  1626. /package/build/{system → esm/system}/locale/es_ES.mjs +0 -0
  1627. /package/build/{system → esm/system}/locale/es_MX.d.mts +0 -0
  1628. /package/build/{system → esm/system}/locale/es_MX.mjs +0 -0
  1629. /package/build/{system → esm/system}/locale/fa_IR.d.mts +0 -0
  1630. /package/build/{system → esm/system}/locale/fa_IR.mjs +0 -0
  1631. /package/build/{system → esm/system}/locale/fil_PH.d.mts +0 -0
  1632. /package/build/{system → esm/system}/locale/fil_PH.mjs +0 -0
  1633. /package/build/{system → esm/system}/locale/fr_CA.d.mts +0 -0
  1634. /package/build/{system → esm/system}/locale/fr_CA.mjs +0 -0
  1635. /package/build/{system → esm/system}/locale/fr_FR.d.mts +0 -0
  1636. /package/build/{system → esm/system}/locale/fr_FR.mjs +0 -0
  1637. /package/build/{system → esm/system}/locale/ha_NG.d.mts +0 -0
  1638. /package/build/{system → esm/system}/locale/ha_NG.mjs +0 -0
  1639. /package/build/{system → esm/system}/locale/hi_IN.d.mts +0 -0
  1640. /package/build/{system → esm/system}/locale/hi_IN.mjs +0 -0
  1641. /package/build/{system → esm/system}/locale/hu_HU.d.mts +0 -0
  1642. /package/build/{system → esm/system}/locale/hu_HU.mjs +0 -0
  1643. /package/build/{system → esm/system}/locale/id_ID.d.mts +0 -0
  1644. /package/build/{system → esm/system}/locale/id_ID.mjs +0 -0
  1645. /package/build/{system → esm/system}/locale/index.d.mts +0 -0
  1646. /package/build/{system → esm/system}/locale/index.mjs +0 -0
  1647. /package/build/{system → esm/system}/locale/it_IT.d.mts +0 -0
  1648. /package/build/{system → esm/system}/locale/it_IT.mjs +0 -0
  1649. /package/build/{system → esm/system}/locale/ja_JP.d.mts +0 -0
  1650. /package/build/{system → esm/system}/locale/ja_JP.mjs +0 -0
  1651. /package/build/{system → esm/system}/locale/ko_KR.d.mts +0 -0
  1652. /package/build/{system → esm/system}/locale/ko_KR.mjs +0 -0
  1653. /package/build/{system → esm/system}/locale/ms_MY.d.mts +0 -0
  1654. /package/build/{system → esm/system}/locale/ms_MY.mjs +0 -0
  1655. /package/build/{system → esm/system}/locale/nl_NL.d.mts +0 -0
  1656. /package/build/{system → esm/system}/locale/nl_NL.mjs +0 -0
  1657. /package/build/{system → esm/system}/locale/pl_PL.d.mts +0 -0
  1658. /package/build/{system → esm/system}/locale/pl_PL.mjs +0 -0
  1659. /package/build/{system → esm/system}/locale/pt_BR.d.mts +0 -0
  1660. /package/build/{system → esm/system}/locale/pt_BR.mjs +0 -0
  1661. /package/build/{system → esm/system}/locale/pt_PT.d.mts +0 -0
  1662. /package/build/{system → esm/system}/locale/pt_PT.mjs +0 -0
  1663. /package/build/{system → esm/system}/locale/ro_RO.d.mts +0 -0
  1664. /package/build/{system → esm/system}/locale/ro_RO.mjs +0 -0
  1665. /package/build/{system → esm/system}/locale/ru_RU.d.mts +0 -0
  1666. /package/build/{system → esm/system}/locale/ru_RU.mjs +0 -0
  1667. /package/build/{system → esm/system}/locale/sv_SE.d.mts +0 -0
  1668. /package/build/{system → esm/system}/locale/sv_SE.mjs +0 -0
  1669. /package/build/{system → esm/system}/locale/sw_TZ.d.mts +0 -0
  1670. /package/build/{system → esm/system}/locale/sw_TZ.mjs +0 -0
  1671. /package/build/{system → esm/system}/locale/th_TH.d.mts +0 -0
  1672. /package/build/{system → esm/system}/locale/th_TH.mjs +0 -0
  1673. /package/build/{system → esm/system}/locale/tr_TR.d.mts +0 -0
  1674. /package/build/{system → esm/system}/locale/tr_TR.mjs +0 -0
  1675. /package/build/{system → esm/system}/locale/uk_UA.d.mts +0 -0
  1676. /package/build/{system → esm/system}/locale/uk_UA.mjs +0 -0
  1677. /package/build/{system → esm/system}/locale/ur_PK.d.mts +0 -0
  1678. /package/build/{system → esm/system}/locale/ur_PK.mjs +0 -0
  1679. /package/build/{system → esm/system}/locale/vi_VN.d.mts +0 -0
  1680. /package/build/{system → esm/system}/locale/vi_VN.mjs +0 -0
  1681. /package/build/{system → esm/system}/locale/yo_NG.d.mts +0 -0
  1682. /package/build/{system → esm/system}/locale/yo_NG.mjs +0 -0
  1683. /package/build/{system → esm/system}/locale/zh_Hans.d.mts +0 -0
  1684. /package/build/{system → esm/system}/locale/zh_Hans.mjs +0 -0
  1685. /package/build/{system → esm/system}/locale/zh_Hant.d.mts +0 -0
  1686. /package/build/{system → esm/system}/locale/zh_Hant.mjs +0 -0
  1687. /package/build/{system → esm/system}/memory/assign.mjs +0 -0
  1688. /package/build/{system → esm/system}/memory/clone.mjs +0 -0
  1689. /package/build/{system → esm/system}/memory/create.mjs +0 -0
  1690. /package/build/{system → esm/system}/memory/discard.mjs +0 -0
  1691. /package/build/{system → esm/system}/memory/index.d.mts +0 -0
  1692. /package/build/{system → esm/system}/memory/index.mjs +0 -0
  1693. /package/build/{system → esm/system}/memory/memory.d.mts +0 -0
  1694. /package/build/{system → esm/system}/memory/memory.mjs +0 -0
  1695. /package/build/{system → esm/system}/memory/metrics.mjs +0 -0
  1696. /package/build/{system → esm/system}/memory/update.mjs +0 -0
  1697. /package/build/{system → esm/system}/settings/index.d.mts +0 -0
  1698. /package/build/{system → esm/system}/settings/index.mjs +0 -0
  1699. /package/build/{system → esm/system}/settings/settings.mjs +0 -0
  1700. /package/build/{system → esm/system}/system.d.mts +0 -0
  1701. /package/build/{system → esm/system}/system.mjs +0 -0
  1702. /package/build/{system → esm/system}/unreachable/index.d.mts +0 -0
  1703. /package/build/{system → esm/system}/unreachable/index.mjs +0 -0
  1704. /package/build/{system → esm/system}/unreachable/unreachable.mjs +0 -0
  1705. /package/build/{type → esm/type}/action/_optional.d.mts +0 -0
  1706. /package/build/{type → esm/type}/action/_optional.mjs +0 -0
  1707. /package/build/{type → esm/type}/action/_readonly.d.mts +0 -0
  1708. /package/build/{type → esm/type}/action/_readonly.mjs +0 -0
  1709. /package/build/{type → esm/type}/action/awaited.d.mts +0 -0
  1710. /package/build/{type → esm/type}/action/awaited.mjs +0 -0
  1711. /package/build/{type → esm/type}/action/capitalize.d.mts +0 -0
  1712. /package/build/{type → esm/type}/action/capitalize.mjs +0 -0
  1713. /package/build/{type → esm/type}/action/conditional.d.mts +0 -0
  1714. /package/build/{type → esm/type}/action/conditional.mjs +0 -0
  1715. /package/build/{type → esm/type}/action/constructor-parameters.d.mts +0 -0
  1716. /package/build/{type → esm/type}/action/constructor-parameters.mjs +0 -0
  1717. /package/build/{type → esm/type}/action/evaluate.d.mts +0 -0
  1718. /package/build/{type → esm/type}/action/evaluate.mjs +0 -0
  1719. /package/build/{type → esm/type}/action/exclude.d.mts +0 -0
  1720. /package/build/{type → esm/type}/action/exclude.mjs +0 -0
  1721. /package/build/{type → esm/type}/action/extract.d.mts +0 -0
  1722. /package/build/{type → esm/type}/action/extract.mjs +0 -0
  1723. /package/build/{type → esm/type}/action/index.d.mts +0 -0
  1724. /package/build/{type → esm/type}/action/index.mjs +0 -0
  1725. /package/build/{type → esm/type}/action/indexed.d.mts +0 -0
  1726. /package/build/{type → esm/type}/action/indexed.mjs +0 -0
  1727. /package/build/{type → esm/type}/action/instance-type.d.mts +0 -0
  1728. /package/build/{type → esm/type}/action/instance-type.mjs +0 -0
  1729. /package/build/{type → esm/type}/action/interface.d.mts +0 -0
  1730. /package/build/{type → esm/type}/action/interface.mjs +0 -0
  1731. /package/build/{type → esm/type}/action/keyof.d.mts +0 -0
  1732. /package/build/{type → esm/type}/action/keyof.mjs +0 -0
  1733. /package/build/{type → esm/type}/action/lowercase.d.mts +0 -0
  1734. /package/build/{type → esm/type}/action/lowercase.mjs +0 -0
  1735. /package/build/{type → esm/type}/action/mapped.d.mts +0 -0
  1736. /package/build/{type → esm/type}/action/mapped.mjs +0 -0
  1737. /package/build/{type → esm/type}/action/module.d.mts +0 -0
  1738. /package/build/{type → esm/type}/action/module.mjs +0 -0
  1739. /package/build/{type → esm/type}/action/non-nullable.d.mts +0 -0
  1740. /package/build/{type → esm/type}/action/non-nullable.mjs +0 -0
  1741. /package/build/{type → esm/type}/action/omit.d.mts +0 -0
  1742. /package/build/{type → esm/type}/action/omit.mjs +0 -0
  1743. /package/build/{type → esm/type}/action/options.d.mts +0 -0
  1744. /package/build/{type → esm/type}/action/options.mjs +0 -0
  1745. /package/build/{type → esm/type}/action/parameters.d.mts +0 -0
  1746. /package/build/{type → esm/type}/action/parameters.mjs +0 -0
  1747. /package/build/{type → esm/type}/action/partial.d.mts +0 -0
  1748. /package/build/{type → esm/type}/action/partial.mjs +0 -0
  1749. /package/build/{type → esm/type}/action/pick.d.mts +0 -0
  1750. /package/build/{type → esm/type}/action/pick.mjs +0 -0
  1751. /package/build/{type → esm/type}/action/required.d.mts +0 -0
  1752. /package/build/{type → esm/type}/action/required.mjs +0 -0
  1753. /package/build/{type → esm/type}/action/return-type.d.mts +0 -0
  1754. /package/build/{type → esm/type}/action/return-type.mjs +0 -0
  1755. /package/build/{type → esm/type}/action/uncapitalize.d.mts +0 -0
  1756. /package/build/{type → esm/type}/action/uncapitalize.mjs +0 -0
  1757. /package/build/{type → esm/type}/action/uppercase.d.mts +0 -0
  1758. /package/build/{type → esm/type}/action/uppercase.mjs +0 -0
  1759. /package/build/{type → esm/type}/engine/awaited/index.d.mts +0 -0
  1760. /package/build/{type → esm/type}/engine/awaited/index.mjs +0 -0
  1761. /package/build/{type → esm/type}/engine/awaited/instantiate.d.mts +0 -0
  1762. /package/build/{type → esm/type}/engine/awaited/instantiate.mjs +0 -0
  1763. /package/build/{type → esm/type}/engine/call/instantiate.d.mts +0 -0
  1764. /package/build/{type → esm/type}/engine/call/instantiate.mjs +0 -0
  1765. /package/build/{type → esm/type}/engine/call/resolve-arguments.d.mts +0 -0
  1766. /package/build/{type → esm/type}/engine/call/resolve-arguments.mjs +0 -0
  1767. /package/build/{type → esm/type}/engine/call/resolve-target.d.mts +0 -0
  1768. /package/build/{type → esm/type}/engine/call/resolve-target.mjs +0 -0
  1769. /package/build/{type → esm/type}/engine/conditional/index.d.mts +0 -0
  1770. /package/build/{type → esm/type}/engine/conditional/index.mjs +0 -0
  1771. /package/build/{type → esm/type}/engine/conditional/instantiate.d.mts +0 -0
  1772. /package/build/{type → esm/type}/engine/conditional/instantiate.mjs +0 -0
  1773. /package/build/{type → esm/type}/engine/constructor-parameters/index.d.mts +0 -0
  1774. /package/build/{type → esm/type}/engine/constructor-parameters/index.mjs +0 -0
  1775. /package/build/{type → esm/type}/engine/constructor-parameters/instantiate.d.mts +0 -0
  1776. /package/build/{type → esm/type}/engine/constructor-parameters/instantiate.mjs +0 -0
  1777. /package/build/{type → esm/type}/engine/cyclic/candidates.d.mts +0 -0
  1778. /package/build/{type → esm/type}/engine/cyclic/candidates.mjs +0 -0
  1779. /package/build/{type → esm/type}/engine/cyclic/check.d.mts +0 -0
  1780. /package/build/{type → esm/type}/engine/cyclic/check.mjs +0 -0
  1781. /package/build/{type → esm/type}/engine/cyclic/dependencies.d.mts +0 -0
  1782. /package/build/{type → esm/type}/engine/cyclic/dependencies.mjs +0 -0
  1783. /package/build/{type → esm/type}/engine/cyclic/extends.d.mts +0 -0
  1784. /package/build/{type → esm/type}/engine/cyclic/extends.mjs +0 -0
  1785. /package/build/{type → esm/type}/engine/cyclic/index.d.mts +0 -0
  1786. /package/build/{type → esm/type}/engine/cyclic/index.mjs +0 -0
  1787. /package/build/{type → esm/type}/engine/cyclic/instantiate.d.mts +0 -0
  1788. /package/build/{type → esm/type}/engine/cyclic/instantiate.mjs +0 -0
  1789. /package/build/{type → esm/type}/engine/cyclic/target.d.mts +0 -0
  1790. /package/build/{type → esm/type}/engine/cyclic/target.mjs +0 -0
  1791. /package/build/{type → esm/type}/engine/enum/enum-to-union.d.mts +0 -0
  1792. /package/build/{type → esm/type}/engine/enum/enum-to-union.mjs +0 -0
  1793. /package/build/{type → esm/type}/engine/enum/index.d.mts +0 -0
  1794. /package/build/{type → esm/type}/engine/enum/index.mjs +0 -0
  1795. /package/build/{type → esm/type}/engine/enum/typescript-enum-to-enum-values.d.mts +0 -0
  1796. /package/build/{type → esm/type}/engine/enum/typescript-enum-to-enum-values.mjs +0 -0
  1797. /package/build/{type → esm/type}/engine/evaluate/broaden.d.mts +0 -0
  1798. /package/build/{type → esm/type}/engine/evaluate/broaden.mjs +0 -0
  1799. /package/build/{type → esm/type}/engine/evaluate/compare.d.mts +0 -0
  1800. /package/build/{type → esm/type}/engine/evaluate/compare.mjs +0 -0
  1801. /package/build/{type → esm/type}/engine/evaluate/composite.d.mts +0 -0
  1802. /package/build/{type → esm/type}/engine/evaluate/composite.mjs +0 -0
  1803. /package/build/{type → esm/type}/engine/evaluate/distribute.d.mts +0 -0
  1804. /package/build/{type → esm/type}/engine/evaluate/distribute.mjs +0 -0
  1805. /package/build/{type → esm/type}/engine/evaluate/evaluate.d.mts +0 -0
  1806. /package/build/{type → esm/type}/engine/evaluate/evaluate.mjs +0 -0
  1807. /package/build/{type → esm/type}/engine/evaluate/flatten.d.mts +0 -0
  1808. /package/build/{type → esm/type}/engine/evaluate/flatten.mjs +0 -0
  1809. /package/build/{type → esm/type}/engine/evaluate/index.d.mts +0 -0
  1810. /package/build/{type → esm/type}/engine/evaluate/index.mjs +0 -0
  1811. /package/build/{type → esm/type}/engine/evaluate/instantiate.d.mts +0 -0
  1812. /package/build/{type → esm/type}/engine/evaluate/instantiate.mjs +0 -0
  1813. /package/build/{type → esm/type}/engine/evaluate/narrow.d.mts +0 -0
  1814. /package/build/{type → esm/type}/engine/evaluate/narrow.mjs +0 -0
  1815. /package/build/{type → esm/type}/engine/exclude/index.d.mts +0 -0
  1816. /package/build/{type → esm/type}/engine/exclude/index.mjs +0 -0
  1817. /package/build/{type → esm/type}/engine/exclude/instantiate.d.mts +0 -0
  1818. /package/build/{type → esm/type}/engine/exclude/instantiate.mjs +0 -0
  1819. /package/build/{type → esm/type}/engine/extract/index.d.mts +0 -0
  1820. /package/build/{type → esm/type}/engine/extract/index.mjs +0 -0
  1821. /package/build/{type → esm/type}/engine/extract/instantiate.d.mts +0 -0
  1822. /package/build/{type → esm/type}/engine/extract/instantiate.mjs +0 -0
  1823. /package/build/{type → esm/type}/engine/helpers/index.d.mts +0 -0
  1824. /package/build/{type → esm/type}/engine/helpers/index.mjs +0 -0
  1825. /package/build/{type → esm/type}/engine/helpers/keys-to-indexer.d.mts +0 -0
  1826. /package/build/{type → esm/type}/engine/helpers/keys-to-indexer.mjs +0 -0
  1827. /package/build/{type → esm/type}/engine/helpers/keys.d.mts +0 -0
  1828. /package/build/{type → esm/type}/engine/helpers/keys.mjs +0 -0
  1829. /package/build/{type → esm/type}/engine/helpers/union.mjs +0 -0
  1830. /package/build/{type → esm/type}/engine/index.d.mts +0 -0
  1831. /package/build/{type → esm/type}/engine/index.mjs +0 -0
  1832. /package/build/{type → esm/type}/engine/indexable/from-cyclic.d.mts +0 -0
  1833. /package/build/{type → esm/type}/engine/indexable/from-cyclic.mjs +0 -0
  1834. /package/build/{type → esm/type}/engine/indexable/from-enum.d.mts +0 -0
  1835. /package/build/{type → esm/type}/engine/indexable/from-enum.mjs +0 -0
  1836. /package/build/{type → esm/type}/engine/indexable/from-intersect.d.mts +0 -0
  1837. /package/build/{type → esm/type}/engine/indexable/from-intersect.mjs +0 -0
  1838. /package/build/{type → esm/type}/engine/indexable/from-literal.d.mts +0 -0
  1839. /package/build/{type → esm/type}/engine/indexable/from-literal.mjs +0 -0
  1840. /package/build/{type → esm/type}/engine/indexable/from-template-literal.d.mts +0 -0
  1841. /package/build/{type → esm/type}/engine/indexable/from-template-literal.mjs +0 -0
  1842. /package/build/{type → esm/type}/engine/indexable/from-type.d.mts +0 -0
  1843. /package/build/{type → esm/type}/engine/indexable/from-type.mjs +0 -0
  1844. /package/build/{type → esm/type}/engine/indexable/from-union.d.mts +0 -0
  1845. /package/build/{type → esm/type}/engine/indexable/from-union.mjs +0 -0
  1846. /package/build/{type → esm/type}/engine/indexable/to-indexable-keys.d.mts +0 -0
  1847. /package/build/{type → esm/type}/engine/indexable/to-indexable-keys.mjs +0 -0
  1848. /package/build/{type → esm/type}/engine/indexable/to-indexable.d.mts +0 -0
  1849. /package/build/{type → esm/type}/engine/indexable/to-indexable.mjs +0 -0
  1850. /package/build/{type → esm/type}/engine/indexed/array-indexer.d.mts +0 -0
  1851. /package/build/{type → esm/type}/engine/indexed/array-indexer.mjs +0 -0
  1852. /package/build/{type → esm/type}/engine/indexed/from-array.d.mts +0 -0
  1853. /package/build/{type → esm/type}/engine/indexed/from-array.mjs +0 -0
  1854. /package/build/{type → esm/type}/engine/indexed/from-object.d.mts +0 -0
  1855. /package/build/{type → esm/type}/engine/indexed/from-object.mjs +0 -0
  1856. /package/build/{type → esm/type}/engine/indexed/from-tuple.d.mts +0 -0
  1857. /package/build/{type → esm/type}/engine/indexed/from-tuple.mjs +0 -0
  1858. /package/build/{type → esm/type}/engine/indexed/index.d.mts +0 -0
  1859. /package/build/{type → esm/type}/engine/indexed/index.mjs +0 -0
  1860. /package/build/{type → esm/type}/engine/indexed/instantiate.d.mts +0 -0
  1861. /package/build/{type → esm/type}/engine/indexed/instantiate.mjs +0 -0
  1862. /package/build/{type → esm/type}/engine/instance-type/index.d.mts +0 -0
  1863. /package/build/{type → esm/type}/engine/instance-type/index.mjs +0 -0
  1864. /package/build/{type → esm/type}/engine/instance-type/instantiate.d.mts +0 -0
  1865. /package/build/{type → esm/type}/engine/instance-type/instantiate.mjs +0 -0
  1866. /package/build/{type → esm/type}/engine/instantiate.d.mts +0 -0
  1867. /package/build/{type → esm/type}/engine/instantiate.mjs +0 -0
  1868. /package/build/{type → esm/type}/engine/interface/index.d.mts +0 -0
  1869. /package/build/{type → esm/type}/engine/interface/index.mjs +0 -0
  1870. /package/build/{type → esm/type}/engine/interface/instantiate.d.mts +0 -0
  1871. /package/build/{type → esm/type}/engine/interface/instantiate.mjs +0 -0
  1872. /package/build/{type → esm/type}/engine/intrinsics/from-literal.d.mts +0 -0
  1873. /package/build/{type → esm/type}/engine/intrinsics/from-literal.mjs +0 -0
  1874. /package/build/{type → esm/type}/engine/intrinsics/from-template-literal.d.mts +0 -0
  1875. /package/build/{type → esm/type}/engine/intrinsics/from-template-literal.mjs +0 -0
  1876. /package/build/{type → esm/type}/engine/intrinsics/from-type.d.mts +0 -0
  1877. /package/build/{type → esm/type}/engine/intrinsics/from-type.mjs +0 -0
  1878. /package/build/{type → esm/type}/engine/intrinsics/from-union.d.mts +0 -0
  1879. /package/build/{type → esm/type}/engine/intrinsics/from-union.mjs +0 -0
  1880. /package/build/{type → esm/type}/engine/intrinsics/index.d.mts +0 -0
  1881. /package/build/{type → esm/type}/engine/intrinsics/index.mjs +0 -0
  1882. /package/build/{type → esm/type}/engine/intrinsics/instantiate.d.mts +0 -0
  1883. /package/build/{type → esm/type}/engine/intrinsics/instantiate.mjs +0 -0
  1884. /package/build/{type → esm/type}/engine/intrinsics/mapping.mjs +0 -0
  1885. /package/build/{type → esm/type}/engine/keyof/from-array.d.mts +0 -0
  1886. /package/build/{type → esm/type}/engine/keyof/from-array.mjs +0 -0
  1887. /package/build/{type → esm/type}/engine/keyof/from-object.d.mts +0 -0
  1888. /package/build/{type → esm/type}/engine/keyof/from-object.mjs +0 -0
  1889. /package/build/{type → esm/type}/engine/keyof/from-record.d.mts +0 -0
  1890. /package/build/{type → esm/type}/engine/keyof/from-record.mjs +0 -0
  1891. /package/build/{type → esm/type}/engine/keyof/from-tuple.d.mts +0 -0
  1892. /package/build/{type → esm/type}/engine/keyof/from-tuple.mjs +0 -0
  1893. /package/build/{type → esm/type}/engine/keyof/index.d.mts +0 -0
  1894. /package/build/{type → esm/type}/engine/keyof/index.mjs +0 -0
  1895. /package/build/{type → esm/type}/engine/keyof/instantiate.d.mts +0 -0
  1896. /package/build/{type → esm/type}/engine/keyof/instantiate.mjs +0 -0
  1897. /package/build/{type → esm/type}/engine/mapped/index.d.mts +0 -0
  1898. /package/build/{type → esm/type}/engine/mapped/index.mjs +0 -0
  1899. /package/build/{type → esm/type}/engine/mapped/instantiate.d.mts +0 -0
  1900. /package/build/{type → esm/type}/engine/mapped/instantiate.mjs +0 -0
  1901. /package/build/{type → esm/type}/engine/mapped/mapped-keys.d.mts +0 -0
  1902. /package/build/{type → esm/type}/engine/mapped/mapped-keys.mjs +0 -0
  1903. /package/build/{type → esm/type}/engine/module/index.d.mts +0 -0
  1904. /package/build/{type → esm/type}/engine/module/index.mjs +0 -0
  1905. /package/build/{type → esm/type}/engine/module/instantiate.d.mts +0 -0
  1906. /package/build/{type → esm/type}/engine/module/instantiate.mjs +0 -0
  1907. /package/build/{type → esm/type}/engine/non-nullable/index.d.mts +0 -0
  1908. /package/build/{type → esm/type}/engine/non-nullable/index.mjs +0 -0
  1909. /package/build/{type → esm/type}/engine/non-nullable/instantiate.d.mts +0 -0
  1910. /package/build/{type → esm/type}/engine/non-nullable/instantiate.mjs +0 -0
  1911. /package/build/{type → esm/type}/engine/object/collapse.d.mts +0 -0
  1912. /package/build/{type → esm/type}/engine/object/collapse.mjs +0 -0
  1913. /package/build/{type → esm/type}/engine/object/from-cyclic.d.mts +0 -0
  1914. /package/build/{type → esm/type}/engine/object/from-cyclic.mjs +0 -0
  1915. /package/build/{type → esm/type}/engine/object/from-object.d.mts +0 -0
  1916. /package/build/{type → esm/type}/engine/object/from-object.mjs +0 -0
  1917. /package/build/{type → esm/type}/engine/object/from-tuple.d.mts +0 -0
  1918. /package/build/{type → esm/type}/engine/object/from-tuple.mjs +0 -0
  1919. /package/build/{type → esm/type}/engine/object/from-type.d.mts +0 -0
  1920. /package/build/{type → esm/type}/engine/object/from-type.mjs +0 -0
  1921. /package/build/{type → esm/type}/engine/object/index.d.mts +0 -0
  1922. /package/build/{type → esm/type}/engine/object/index.mjs +0 -0
  1923. /package/build/{type → esm/type}/engine/omit/index.d.mts +0 -0
  1924. /package/build/{type → esm/type}/engine/omit/index.mjs +0 -0
  1925. /package/build/{type → esm/type}/engine/omit/instantiate.d.mts +0 -0
  1926. /package/build/{type → esm/type}/engine/omit/instantiate.mjs +0 -0
  1927. /package/build/{type → esm/type}/engine/options/index.d.mts +0 -0
  1928. /package/build/{type → esm/type}/engine/options/index.mjs +0 -0
  1929. /package/build/{type → esm/type}/engine/options/instantiate.d.mts +0 -0
  1930. /package/build/{type → esm/type}/engine/options/instantiate.mjs +0 -0
  1931. /package/build/{type → esm/type}/engine/parameters/index.d.mts +0 -0
  1932. /package/build/{type → esm/type}/engine/parameters/index.mjs +0 -0
  1933. /package/build/{type → esm/type}/engine/parameters/instantiate.d.mts +0 -0
  1934. /package/build/{type → esm/type}/engine/parameters/instantiate.mjs +0 -0
  1935. /package/build/{type → esm/type}/engine/partial/from-cyclic.d.mts +0 -0
  1936. /package/build/{type → esm/type}/engine/partial/from-cyclic.mjs +0 -0
  1937. /package/build/{type → esm/type}/engine/partial/from-intersect.d.mts +0 -0
  1938. /package/build/{type → esm/type}/engine/partial/from-intersect.mjs +0 -0
  1939. /package/build/{type → esm/type}/engine/partial/from-object.d.mts +0 -0
  1940. /package/build/{type → esm/type}/engine/partial/from-object.mjs +0 -0
  1941. /package/build/{type → esm/type}/engine/partial/from-type.d.mts +0 -0
  1942. /package/build/{type → esm/type}/engine/partial/from-type.mjs +0 -0
  1943. /package/build/{type → esm/type}/engine/partial/from-union.d.mts +0 -0
  1944. /package/build/{type → esm/type}/engine/partial/from-union.mjs +0 -0
  1945. /package/build/{type → esm/type}/engine/partial/index.d.mts +0 -0
  1946. /package/build/{type → esm/type}/engine/partial/index.mjs +0 -0
  1947. /package/build/{type → esm/type}/engine/partial/instantiate.d.mts +0 -0
  1948. /package/build/{type → esm/type}/engine/partial/instantiate.mjs +0 -0
  1949. /package/build/{type → esm/type}/engine/patterns/index.d.mts +0 -0
  1950. /package/build/{type → esm/type}/engine/patterns/index.mjs +0 -0
  1951. /package/build/{type → esm/type}/engine/patterns/pattern.d.mts +0 -0
  1952. /package/build/{type → esm/type}/engine/patterns/pattern.mjs +0 -0
  1953. /package/build/{type → esm/type}/engine/patterns/template.d.mts +0 -0
  1954. /package/build/{type → esm/type}/engine/patterns/template.mjs +0 -0
  1955. /package/build/{type → esm/type}/engine/pick/index.d.mts +0 -0
  1956. /package/build/{type → esm/type}/engine/pick/index.mjs +0 -0
  1957. /package/build/{type → esm/type}/engine/pick/instantiate.d.mts +0 -0
  1958. /package/build/{type → esm/type}/engine/pick/instantiate.mjs +0 -0
  1959. /package/build/{type → esm/type}/engine/record/from-key-any.d.mts +0 -0
  1960. /package/build/{type → esm/type}/engine/record/from-key-any.mjs +0 -0
  1961. /package/build/{type → esm/type}/engine/record/from-key-boolean.d.mts +0 -0
  1962. /package/build/{type → esm/type}/engine/record/from-key-boolean.mjs +0 -0
  1963. /package/build/{type → esm/type}/engine/record/from-key-enum.d.mts +0 -0
  1964. /package/build/{type → esm/type}/engine/record/from-key-enum.mjs +0 -0
  1965. /package/build/{type → esm/type}/engine/record/from-key-integer.d.mts +0 -0
  1966. /package/build/{type → esm/type}/engine/record/from-key-integer.mjs +0 -0
  1967. /package/build/{type → esm/type}/engine/record/from-key-intersect.d.mts +0 -0
  1968. /package/build/{type → esm/type}/engine/record/from-key-intersect.mjs +0 -0
  1969. /package/build/{type → esm/type}/engine/record/from-key-literal.d.mts +0 -0
  1970. /package/build/{type → esm/type}/engine/record/from-key-literal.mjs +0 -0
  1971. /package/build/{type → esm/type}/engine/record/from-key-number.d.mts +0 -0
  1972. /package/build/{type → esm/type}/engine/record/from-key-number.mjs +0 -0
  1973. /package/build/{type → esm/type}/engine/record/from-key-string.d.mts +0 -0
  1974. /package/build/{type → esm/type}/engine/record/from-key-string.mjs +0 -0
  1975. /package/build/{type → esm/type}/engine/record/from-key-template-literal.d.mts +0 -0
  1976. /package/build/{type → esm/type}/engine/record/from-key-template-literal.mjs +0 -0
  1977. /package/build/{type → esm/type}/engine/record/from-key-union.d.mts +0 -0
  1978. /package/build/{type → esm/type}/engine/record/from-key-union.mjs +0 -0
  1979. /package/build/{type → esm/type}/engine/record/from-key.d.mts +0 -0
  1980. /package/build/{type → esm/type}/engine/record/from-key.mjs +0 -0
  1981. /package/build/{type → esm/type}/engine/record/index.d.mts +0 -0
  1982. /package/build/{type → esm/type}/engine/record/index.mjs +0 -0
  1983. /package/build/{type → esm/type}/engine/record/instantiate.d.mts +0 -0
  1984. /package/build/{type → esm/type}/engine/record/instantiate.mjs +0 -0
  1985. /package/build/{type → esm/type}/engine/record/record-create.d.mts +0 -0
  1986. /package/build/{type → esm/type}/engine/record/record-create.mjs +0 -0
  1987. /package/build/{type → esm/type}/engine/ref/index.d.mts +0 -0
  1988. /package/build/{type → esm/type}/engine/ref/index.mjs +0 -0
  1989. /package/build/{type → esm/type}/engine/ref/instantiate.d.mts +0 -0
  1990. /package/build/{type → esm/type}/engine/ref/instantiate.mjs +0 -0
  1991. /package/build/{type → esm/type}/engine/required/from-cyclic.d.mts +0 -0
  1992. /package/build/{type → esm/type}/engine/required/from-cyclic.mjs +0 -0
  1993. /package/build/{type → esm/type}/engine/required/from-intersect.d.mts +0 -0
  1994. /package/build/{type → esm/type}/engine/required/from-intersect.mjs +0 -0
  1995. /package/build/{type → esm/type}/engine/required/from-object.d.mts +0 -0
  1996. /package/build/{type → esm/type}/engine/required/from-object.mjs +0 -0
  1997. /package/build/{type → esm/type}/engine/required/from-type.d.mts +0 -0
  1998. /package/build/{type → esm/type}/engine/required/from-type.mjs +0 -0
  1999. /package/build/{type → esm/type}/engine/required/from-union.d.mts +0 -0
  2000. /package/build/{type → esm/type}/engine/required/from-union.mjs +0 -0
  2001. /package/build/{type → esm/type}/engine/required/index.d.mts +0 -0
  2002. /package/build/{type → esm/type}/engine/required/index.mjs +0 -0
  2003. /package/build/{type → esm/type}/engine/required/instantiate.d.mts +0 -0
  2004. /package/build/{type → esm/type}/engine/required/instantiate.mjs +0 -0
  2005. /package/build/{type → esm/type}/engine/rest/index.d.mts +0 -0
  2006. /package/build/{type → esm/type}/engine/rest/index.mjs +0 -0
  2007. /package/build/{type → esm/type}/engine/rest/spread.d.mts +0 -0
  2008. /package/build/{type → esm/type}/engine/rest/spread.mjs +0 -0
  2009. /package/build/{type → esm/type}/engine/return-type/index.d.mts +0 -0
  2010. /package/build/{type → esm/type}/engine/return-type/index.mjs +0 -0
  2011. /package/build/{type → esm/type}/engine/return-type/instantiate.d.mts +0 -0
  2012. /package/build/{type → esm/type}/engine/return-type/instantiate.mjs +0 -0
  2013. /package/build/{type → esm/type}/engine/template-literal/create.mjs +0 -0
  2014. /package/build/{type → esm/type}/engine/template-literal/decode.d.mts +0 -0
  2015. /package/build/{type → esm/type}/engine/template-literal/decode.mjs +0 -0
  2016. /package/build/{type → esm/type}/engine/template-literal/encode.d.mts +0 -0
  2017. /package/build/{type → esm/type}/engine/template-literal/encode.mjs +0 -0
  2018. /package/build/{type → esm/type}/engine/template-literal/finite.d.mts +0 -0
  2019. /package/build/{type → esm/type}/engine/template-literal/finite.mjs +0 -0
  2020. /package/build/{type → esm/type}/engine/template-literal/index.d.mts +0 -0
  2021. /package/build/{type → esm/type}/engine/template-literal/index.mjs +0 -0
  2022. /package/build/{type → esm/type}/engine/template-literal/instantiate.d.mts +0 -0
  2023. /package/build/{type → esm/type}/engine/template-literal/instantiate.mjs +0 -0
  2024. /package/build/{type → esm/type}/engine/template-literal/static.d.mts +0 -0
  2025. /package/build/{type → esm/type}/engine/template-literal/static.mjs +0 -0
  2026. /package/build/{type → esm/type}/engine/tuple/to-object.d.mts +0 -0
  2027. /package/build/{type → esm/type}/engine/tuple/to-object.mjs +0 -0
  2028. /package/build/{type → esm/type}/extends/any.d.mts +0 -0
  2029. /package/build/{type → esm/type}/extends/any.mjs +0 -0
  2030. /package/build/{type → esm/type}/extends/array.d.mts +0 -0
  2031. /package/build/{type → esm/type}/extends/array.mjs +0 -0
  2032. /package/build/{type → esm/type}/extends/async-iterator.d.mts +0 -0
  2033. /package/build/{type → esm/type}/extends/async-iterator.mjs +0 -0
  2034. /package/build/{type → esm/type}/extends/bigint.d.mts +0 -0
  2035. /package/build/{type → esm/type}/extends/bigint.mjs +0 -0
  2036. /package/build/{type → esm/type}/extends/boolean.d.mts +0 -0
  2037. /package/build/{type → esm/type}/extends/boolean.mjs +0 -0
  2038. /package/build/{type → esm/type}/extends/constructor.d.mts +0 -0
  2039. /package/build/{type → esm/type}/extends/constructor.mjs +0 -0
  2040. /package/build/{type → esm/type}/extends/enum.d.mts +0 -0
  2041. /package/build/{type → esm/type}/extends/enum.mjs +0 -0
  2042. /package/build/{type → esm/type}/extends/extends-left.d.mts +0 -0
  2043. /package/build/{type → esm/type}/extends/extends-left.mjs +0 -0
  2044. /package/build/{type → esm/type}/extends/extends-right.d.mts +0 -0
  2045. /package/build/{type → esm/type}/extends/extends-right.mjs +0 -0
  2046. /package/build/{type → esm/type}/extends/extends.d.mts +0 -0
  2047. /package/build/{type → esm/type}/extends/extends.mjs +0 -0
  2048. /package/build/{type → esm/type}/extends/function.d.mts +0 -0
  2049. /package/build/{type → esm/type}/extends/function.mjs +0 -0
  2050. /package/build/{type → esm/type}/extends/index.d.mts +0 -0
  2051. /package/build/{type → esm/type}/extends/index.mjs +0 -0
  2052. /package/build/{type → esm/type}/extends/inference.d.mts +0 -0
  2053. /package/build/{type → esm/type}/extends/inference.mjs +0 -0
  2054. /package/build/{type → esm/type}/extends/integer.d.mts +0 -0
  2055. /package/build/{type → esm/type}/extends/integer.mjs +0 -0
  2056. /package/build/{type → esm/type}/extends/intersect.d.mts +0 -0
  2057. /package/build/{type → esm/type}/extends/intersect.mjs +0 -0
  2058. /package/build/{type → esm/type}/extends/iterator.d.mts +0 -0
  2059. /package/build/{type → esm/type}/extends/iterator.mjs +0 -0
  2060. /package/build/{type → esm/type}/extends/literal.d.mts +0 -0
  2061. /package/build/{type → esm/type}/extends/literal.mjs +0 -0
  2062. /package/build/{type → esm/type}/extends/never.d.mts +0 -0
  2063. /package/build/{type → esm/type}/extends/never.mjs +0 -0
  2064. /package/build/{type → esm/type}/extends/null.d.mts +0 -0
  2065. /package/build/{type → esm/type}/extends/null.mjs +0 -0
  2066. /package/build/{type → esm/type}/extends/number.d.mts +0 -0
  2067. /package/build/{type → esm/type}/extends/number.mjs +0 -0
  2068. /package/build/{type → esm/type}/extends/object.d.mts +0 -0
  2069. /package/build/{type → esm/type}/extends/object.mjs +0 -0
  2070. /package/build/{type → esm/type}/extends/parameters.d.mts +0 -0
  2071. /package/build/{type → esm/type}/extends/parameters.mjs +0 -0
  2072. /package/build/{type → esm/type}/extends/promise.d.mts +0 -0
  2073. /package/build/{type → esm/type}/extends/promise.mjs +0 -0
  2074. /package/build/{type → esm/type}/extends/result.d.mts +0 -0
  2075. /package/build/{type → esm/type}/extends/result.mjs +0 -0
  2076. /package/build/{type → esm/type}/extends/return-type.d.mts +0 -0
  2077. /package/build/{type → esm/type}/extends/return-type.mjs +0 -0
  2078. /package/build/{type → esm/type}/extends/string.d.mts +0 -0
  2079. /package/build/{type → esm/type}/extends/string.mjs +0 -0
  2080. /package/build/{type → esm/type}/extends/symbol.d.mts +0 -0
  2081. /package/build/{type → esm/type}/extends/symbol.mjs +0 -0
  2082. /package/build/{type → esm/type}/extends/template-literal.d.mts +0 -0
  2083. /package/build/{type → esm/type}/extends/template-literal.mjs +0 -0
  2084. /package/build/{type → esm/type}/extends/tuple.d.mts +0 -0
  2085. /package/build/{type → esm/type}/extends/tuple.mjs +0 -0
  2086. /package/build/{type → esm/type}/extends/undefined.d.mts +0 -0
  2087. /package/build/{type → esm/type}/extends/undefined.mjs +0 -0
  2088. /package/build/{type → esm/type}/extends/union.d.mts +0 -0
  2089. /package/build/{type → esm/type}/extends/union.mjs +0 -0
  2090. /package/build/{type → esm/type}/extends/unknown.d.mts +0 -0
  2091. /package/build/{type → esm/type}/extends/unknown.mjs +0 -0
  2092. /package/build/{type → esm/type}/extends/void.d.mts +0 -0
  2093. /package/build/{type → esm/type}/extends/void.mjs +0 -0
  2094. /package/build/{type → esm/type}/index.d.mts +0 -0
  2095. /package/build/{type → esm/type}/index.mjs +0 -0
  2096. /package/build/{type → esm/type}/script/index.d.mts +0 -0
  2097. /package/build/{type → esm/type}/script/index.mjs +0 -0
  2098. /package/build/{type → esm/type}/script/script.d.mts +0 -0
  2099. /package/build/{type → esm/type}/script/script.mjs +0 -0
  2100. /package/build/{type → esm/type}/script/token/bigint.d.mts +0 -0
  2101. /package/build/{type → esm/type}/script/token/bigint.mjs +0 -0
  2102. /package/build/{type → esm/type}/script/token/const.d.mts +0 -0
  2103. /package/build/{type → esm/type}/script/token/const.mjs +0 -0
  2104. /package/build/{type → esm/type}/script/token/ident.d.mts +0 -0
  2105. /package/build/{type → esm/type}/script/token/ident.mjs +0 -0
  2106. /package/build/{type → esm/type}/script/token/index.d.mts +0 -0
  2107. /package/build/{type → esm/type}/script/token/index.mjs +0 -0
  2108. /package/build/{type → esm/type}/script/token/integer.d.mts +0 -0
  2109. /package/build/{type → esm/type}/script/token/integer.mjs +0 -0
  2110. /package/build/{type → esm/type}/script/token/internal/char.mjs +0 -0
  2111. /package/build/{type → esm/type}/script/token/internal/guard.d.mts +0 -0
  2112. /package/build/{type → esm/type}/script/token/internal/guard.mjs +0 -0
  2113. /package/build/{type → esm/type}/script/token/internal/many.d.mts +0 -0
  2114. /package/build/{type → esm/type}/script/token/internal/many.mjs +0 -0
  2115. /package/build/{type → esm/type}/script/token/internal/optional.d.mts +0 -0
  2116. /package/build/{type → esm/type}/script/token/internal/optional.mjs +0 -0
  2117. /package/build/{type → esm/type}/script/token/internal/result.mjs +0 -0
  2118. /package/build/{type → esm/type}/script/token/internal/take.mjs +0 -0
  2119. /package/build/{type → esm/type}/script/token/internal/trim.d.mts +0 -0
  2120. /package/build/{type → esm/type}/script/token/internal/trim.mjs +0 -0
  2121. /package/build/{type → esm/type}/script/token/number.d.mts +0 -0
  2122. /package/build/{type → esm/type}/script/token/number.mjs +0 -0
  2123. /package/build/{type → esm/type}/script/token/span.d.mts +0 -0
  2124. /package/build/{type → esm/type}/script/token/span.mjs +0 -0
  2125. /package/build/{type → esm/type}/script/token/string.d.mts +0 -0
  2126. /package/build/{type → esm/type}/script/token/string.mjs +0 -0
  2127. /package/build/{type → esm/type}/script/token/until.mjs +0 -0
  2128. /package/build/{type → esm/type}/script/token/until_1.d.mts +0 -0
  2129. /package/build/{type → esm/type}/script/token/until_1.mjs +0 -0
  2130. /package/build/{type → esm/type}/types/_codec.d.mts +0 -0
  2131. /package/build/{type → esm/type}/types/_codec.mjs +0 -0
  2132. /package/build/{type → esm/type}/types/_optional.d.mts +0 -0
  2133. /package/build/{type → esm/type}/types/_optional.mjs +0 -0
  2134. /package/build/{type → esm/type}/types/_readonly.d.mts +0 -0
  2135. /package/build/{type → esm/type}/types/_readonly.mjs +0 -0
  2136. /package/build/{type → esm/type}/types/_refine.d.mts +0 -0
  2137. /package/build/{type → esm/type}/types/_refine.mjs +0 -0
  2138. /package/build/{type → esm/type}/types/any.d.mts +0 -0
  2139. /package/build/{type → esm/type}/types/any.mjs +0 -0
  2140. /package/build/{type → esm/type}/types/array.d.mts +0 -0
  2141. /package/build/{type → esm/type}/types/array.mjs +0 -0
  2142. /package/build/{type → esm/type}/types/async-iterator.d.mts +0 -0
  2143. /package/build/{type → esm/type}/types/async-iterator.mjs +0 -0
  2144. /package/build/{type → esm/type}/types/base.d.mts +0 -0
  2145. /package/build/{type → esm/type}/types/base.mjs +0 -0
  2146. /package/build/{type → esm/type}/types/bigint.d.mts +0 -0
  2147. /package/build/{type → esm/type}/types/bigint.mjs +0 -0
  2148. /package/build/{type → esm/type}/types/boolean.d.mts +0 -0
  2149. /package/build/{type → esm/type}/types/boolean.mjs +0 -0
  2150. /package/build/{type → esm/type}/types/call.d.mts +0 -0
  2151. /package/build/{type → esm/type}/types/call.mjs +0 -0
  2152. /package/build/{type → esm/type}/types/constructor.d.mts +0 -0
  2153. /package/build/{type → esm/type}/types/constructor.mjs +0 -0
  2154. /package/build/{type → esm/type}/types/cyclic.d.mts +0 -0
  2155. /package/build/{type → esm/type}/types/cyclic.mjs +0 -0
  2156. /package/build/{type → esm/type}/types/deferred.d.mts +0 -0
  2157. /package/build/{type → esm/type}/types/deferred.mjs +0 -0
  2158. /package/build/{type → esm/type}/types/enum.d.mts +0 -0
  2159. /package/build/{type → esm/type}/types/enum.mjs +0 -0
  2160. /package/build/{type → esm/type}/types/function.d.mts +0 -0
  2161. /package/build/{type → esm/type}/types/function.mjs +0 -0
  2162. /package/build/{type → esm/type}/types/generic.d.mts +0 -0
  2163. /package/build/{type → esm/type}/types/generic.mjs +0 -0
  2164. /package/build/{type → esm/type}/types/identifier.d.mts +0 -0
  2165. /package/build/{type → esm/type}/types/identifier.mjs +0 -0
  2166. /package/build/{type → esm/type}/types/index.d.mts +0 -0
  2167. /package/build/{type → esm/type}/types/index.mjs +0 -0
  2168. /package/build/{type → esm/type}/types/infer.d.mts +0 -0
  2169. /package/build/{type → esm/type}/types/infer.mjs +0 -0
  2170. /package/build/{type → esm/type}/types/integer.d.mts +0 -0
  2171. /package/build/{type → esm/type}/types/integer.mjs +0 -0
  2172. /package/build/{type → esm/type}/types/intersect.d.mts +0 -0
  2173. /package/build/{type → esm/type}/types/intersect.mjs +0 -0
  2174. /package/build/{type → esm/type}/types/iterator.d.mts +0 -0
  2175. /package/build/{type → esm/type}/types/iterator.mjs +0 -0
  2176. /package/build/{type → esm/type}/types/literal.d.mts +0 -0
  2177. /package/build/{type → esm/type}/types/literal.mjs +0 -0
  2178. /package/build/{type → esm/type}/types/never.d.mts +0 -0
  2179. /package/build/{type → esm/type}/types/never.mjs +0 -0
  2180. /package/build/{type → esm/type}/types/null.d.mts +0 -0
  2181. /package/build/{type → esm/type}/types/null.mjs +0 -0
  2182. /package/build/{type → esm/type}/types/number.d.mts +0 -0
  2183. /package/build/{type → esm/type}/types/number.mjs +0 -0
  2184. /package/build/{type → esm/type}/types/parameter.d.mts +0 -0
  2185. /package/build/{type → esm/type}/types/parameter.mjs +0 -0
  2186. /package/build/{type → esm/type}/types/promise.d.mts +0 -0
  2187. /package/build/{type → esm/type}/types/promise.mjs +0 -0
  2188. /package/build/{type → esm/type}/types/properties.d.mts +0 -0
  2189. /package/build/{type → esm/type}/types/properties.mjs +0 -0
  2190. /package/build/{type → esm/type}/types/record.d.mts +0 -0
  2191. /package/build/{type → esm/type}/types/record.mjs +0 -0
  2192. /package/build/{type → esm/type}/types/ref.d.mts +0 -0
  2193. /package/build/{type → esm/type}/types/ref.mjs +0 -0
  2194. /package/build/{type → esm/type}/types/rest.d.mts +0 -0
  2195. /package/build/{type → esm/type}/types/rest.mjs +0 -0
  2196. /package/build/{type → esm/type}/types/schema.mjs +0 -0
  2197. /package/build/{type → esm/type}/types/static.d.mts +0 -0
  2198. /package/build/{type → esm/type}/types/static.mjs +0 -0
  2199. /package/build/{type → esm/type}/types/string.d.mts +0 -0
  2200. /package/build/{type → esm/type}/types/string.mjs +0 -0
  2201. /package/build/{type → esm/type}/types/symbol.d.mts +0 -0
  2202. /package/build/{type → esm/type}/types/symbol.mjs +0 -0
  2203. /package/build/{type → esm/type}/types/template-literal.d.mts +0 -0
  2204. /package/build/{type → esm/type}/types/template-literal.mjs +0 -0
  2205. /package/build/{type → esm/type}/types/this.d.mts +0 -0
  2206. /package/build/{type → esm/type}/types/this.mjs +0 -0
  2207. /package/build/{type → esm/type}/types/tuple.d.mts +0 -0
  2208. /package/build/{type → esm/type}/types/tuple.mjs +0 -0
  2209. /package/build/{type → esm/type}/types/undefined.d.mts +0 -0
  2210. /package/build/{type → esm/type}/types/undefined.mjs +0 -0
  2211. /package/build/{type → esm/type}/types/union.d.mts +0 -0
  2212. /package/build/{type → esm/type}/types/union.mjs +0 -0
  2213. /package/build/{type → esm/type}/types/unknown.d.mts +0 -0
  2214. /package/build/{type → esm/type}/types/unknown.mjs +0 -0
  2215. /package/build/{type → esm/type}/types/unsafe.d.mts +0 -0
  2216. /package/build/{type → esm/type}/types/unsafe.mjs +0 -0
  2217. /package/build/{type → esm/type}/types/void.d.mts +0 -0
  2218. /package/build/{type → esm/type}/types/void.mjs +0 -0
  2219. /package/build/{typebox.d.mts → esm/typebox.d.mts} +0 -0
  2220. /package/build/{typebox.mjs → esm/typebox.mjs} +0 -0
  2221. /package/build/{value → esm/value}/assert/assert.d.mts +0 -0
  2222. /package/build/{value → esm/value}/assert/assert.mjs +0 -0
  2223. /package/build/{value → esm/value}/assert/index.d.mts +0 -0
  2224. /package/build/{value → esm/value}/assert/index.mjs +0 -0
  2225. /package/build/{value → esm/value}/check/check.d.mts +0 -0
  2226. /package/build/{value → esm/value}/check/check.mjs +0 -0
  2227. /package/build/{value → esm/value}/check/index.d.mts +0 -0
  2228. /package/build/{value → esm/value}/check/index.mjs +0 -0
  2229. /package/build/{value → esm/value}/clean/additional.d.mts +0 -0
  2230. /package/build/{value → esm/value}/clean/additional.mjs +0 -0
  2231. /package/build/{value → esm/value}/clean/clean.d.mts +0 -0
  2232. /package/build/{value → esm/value}/clean/clean.mjs +0 -0
  2233. /package/build/{value → esm/value}/clean/from-array.d.mts +0 -0
  2234. /package/build/{value → esm/value}/clean/from-array.mjs +0 -0
  2235. /package/build/{value → esm/value}/clean/from-base.d.mts +0 -0
  2236. /package/build/{value → esm/value}/clean/from-base.mjs +0 -0
  2237. /package/build/{value → esm/value}/clean/from-cyclic.d.mts +0 -0
  2238. /package/build/{value → esm/value}/clean/from-cyclic.mjs +0 -0
  2239. /package/build/{value → esm/value}/clean/from-intersect.d.mts +0 -0
  2240. /package/build/{value → esm/value}/clean/from-intersect.mjs +0 -0
  2241. /package/build/{value → esm/value}/clean/from-object.d.mts +0 -0
  2242. /package/build/{value → esm/value}/clean/from-object.mjs +0 -0
  2243. /package/build/{value → esm/value}/clean/from-record.d.mts +0 -0
  2244. /package/build/{value → esm/value}/clean/from-record.mjs +0 -0
  2245. /package/build/{value → esm/value}/clean/from-ref.d.mts +0 -0
  2246. /package/build/{value → esm/value}/clean/from-ref.mjs +0 -0
  2247. /package/build/{value → esm/value}/clean/from-tuple.d.mts +0 -0
  2248. /package/build/{value → esm/value}/clean/from-tuple.mjs +0 -0
  2249. /package/build/{value → esm/value}/clean/from-type.d.mts +0 -0
  2250. /package/build/{value → esm/value}/clean/from-type.mjs +0 -0
  2251. /package/build/{value → esm/value}/clean/from-union.d.mts +0 -0
  2252. /package/build/{value → esm/value}/clean/from-union.mjs +0 -0
  2253. /package/build/{value → esm/value}/clean/index.d.mts +0 -0
  2254. /package/build/{value → esm/value}/clean/index.mjs +0 -0
  2255. /package/build/{value → esm/value}/clone/clone.mjs +0 -0
  2256. /package/build/{value → esm/value}/clone/index.d.mts +0 -0
  2257. /package/build/{value → esm/value}/clone/index.mjs +0 -0
  2258. /package/build/{value → esm/value}/codec/callback.d.mts +0 -0
  2259. /package/build/{value → esm/value}/codec/callback.mjs +0 -0
  2260. /package/build/{value → esm/value}/codec/decode.d.mts +0 -0
  2261. /package/build/{value → esm/value}/codec/decode.mjs +0 -0
  2262. /package/build/{value → esm/value}/codec/encode.d.mts +0 -0
  2263. /package/build/{value → esm/value}/codec/encode.mjs +0 -0
  2264. /package/build/{value → esm/value}/codec/from-array.d.mts +0 -0
  2265. /package/build/{value → esm/value}/codec/from-array.mjs +0 -0
  2266. /package/build/{value → esm/value}/codec/from-cyclic.d.mts +0 -0
  2267. /package/build/{value → esm/value}/codec/from-cyclic.mjs +0 -0
  2268. /package/build/{value → esm/value}/codec/from-intersect.d.mts +0 -0
  2269. /package/build/{value → esm/value}/codec/from-intersect.mjs +0 -0
  2270. /package/build/{value → esm/value}/codec/from-object.d.mts +0 -0
  2271. /package/build/{value → esm/value}/codec/from-object.mjs +0 -0
  2272. /package/build/{value → esm/value}/codec/from-record.d.mts +0 -0
  2273. /package/build/{value → esm/value}/codec/from-record.mjs +0 -0
  2274. /package/build/{value → esm/value}/codec/from-ref.d.mts +0 -0
  2275. /package/build/{value → esm/value}/codec/from-ref.mjs +0 -0
  2276. /package/build/{value → esm/value}/codec/from-tuple.d.mts +0 -0
  2277. /package/build/{value → esm/value}/codec/from-tuple.mjs +0 -0
  2278. /package/build/{value → esm/value}/codec/from-type.d.mts +0 -0
  2279. /package/build/{value → esm/value}/codec/from-type.mjs +0 -0
  2280. /package/build/{value → esm/value}/codec/from-union.d.mts +0 -0
  2281. /package/build/{value → esm/value}/codec/from-union.mjs +0 -0
  2282. /package/build/{value → esm/value}/codec/has.d.mts +0 -0
  2283. /package/build/{value → esm/value}/codec/has.mjs +0 -0
  2284. /package/build/{value → esm/value}/codec/index.d.mts +0 -0
  2285. /package/build/{value → esm/value}/codec/index.mjs +0 -0
  2286. /package/build/{value → esm/value}/convert/convert.d.mts +0 -0
  2287. /package/build/{value → esm/value}/convert/convert.mjs +0 -0
  2288. /package/build/{value → esm/value}/convert/from-additional.d.mts +0 -0
  2289. /package/build/{value → esm/value}/convert/from-additional.mjs +0 -0
  2290. /package/build/{value → esm/value}/convert/from-array.d.mts +0 -0
  2291. /package/build/{value → esm/value}/convert/from-array.mjs +0 -0
  2292. /package/build/{value → esm/value}/convert/from-base.d.mts +0 -0
  2293. /package/build/{value → esm/value}/convert/from-base.mjs +0 -0
  2294. /package/build/{value → esm/value}/convert/from-bigint.d.mts +0 -0
  2295. /package/build/{value → esm/value}/convert/from-bigint.mjs +0 -0
  2296. /package/build/{value → esm/value}/convert/from-boolean.d.mts +0 -0
  2297. /package/build/{value → esm/value}/convert/from-boolean.mjs +0 -0
  2298. /package/build/{value → esm/value}/convert/from-cyclic.d.mts +0 -0
  2299. /package/build/{value → esm/value}/convert/from-cyclic.mjs +0 -0
  2300. /package/build/{value → esm/value}/convert/from-enum.d.mts +0 -0
  2301. /package/build/{value → esm/value}/convert/from-enum.mjs +0 -0
  2302. /package/build/{value → esm/value}/convert/from-integer.d.mts +0 -0
  2303. /package/build/{value → esm/value}/convert/from-integer.mjs +0 -0
  2304. /package/build/{value → esm/value}/convert/from-intersect.d.mts +0 -0
  2305. /package/build/{value → esm/value}/convert/from-intersect.mjs +0 -0
  2306. /package/build/{value → esm/value}/convert/from-literal.d.mts +0 -0
  2307. /package/build/{value → esm/value}/convert/from-literal.mjs +0 -0
  2308. /package/build/{value → esm/value}/convert/from-null.d.mts +0 -0
  2309. /package/build/{value → esm/value}/convert/from-null.mjs +0 -0
  2310. /package/build/{value → esm/value}/convert/from-number.d.mts +0 -0
  2311. /package/build/{value → esm/value}/convert/from-number.mjs +0 -0
  2312. /package/build/{value → esm/value}/convert/from-object.d.mts +0 -0
  2313. /package/build/{value → esm/value}/convert/from-object.mjs +0 -0
  2314. /package/build/{value → esm/value}/convert/from-record.d.mts +0 -0
  2315. /package/build/{value → esm/value}/convert/from-record.mjs +0 -0
  2316. /package/build/{value → esm/value}/convert/from-ref.d.mts +0 -0
  2317. /package/build/{value → esm/value}/convert/from-ref.mjs +0 -0
  2318. /package/build/{value → esm/value}/convert/from-string.d.mts +0 -0
  2319. /package/build/{value → esm/value}/convert/from-string.mjs +0 -0
  2320. /package/build/{value → esm/value}/convert/from-template-literal.d.mts +0 -0
  2321. /package/build/{value → esm/value}/convert/from-template-literal.mjs +0 -0
  2322. /package/build/{value → esm/value}/convert/from-tuple.d.mts +0 -0
  2323. /package/build/{value → esm/value}/convert/from-tuple.mjs +0 -0
  2324. /package/build/{value → esm/value}/convert/from-type.d.mts +0 -0
  2325. /package/build/{value → esm/value}/convert/from-type.mjs +0 -0
  2326. /package/build/{value → esm/value}/convert/from-undefined.d.mts +0 -0
  2327. /package/build/{value → esm/value}/convert/from-undefined.mjs +0 -0
  2328. /package/build/{value → esm/value}/convert/from-union.d.mts +0 -0
  2329. /package/build/{value → esm/value}/convert/from-union.mjs +0 -0
  2330. /package/build/{value → esm/value}/convert/from-void.d.mts +0 -0
  2331. /package/build/{value → esm/value}/convert/from-void.mjs +0 -0
  2332. /package/build/{value → esm/value}/convert/index.d.mts +0 -0
  2333. /package/build/{value → esm/value}/convert/index.mjs +0 -0
  2334. /package/build/{value → esm/value}/convert/try/index.d.mts +0 -0
  2335. /package/build/{value → esm/value}/convert/try/index.mjs +0 -0
  2336. /package/build/{value → esm/value}/convert/try/try-bigint.d.mts +0 -0
  2337. /package/build/{value → esm/value}/convert/try/try-bigint.mjs +0 -0
  2338. /package/build/{value → esm/value}/convert/try/try-boolean.d.mts +0 -0
  2339. /package/build/{value → esm/value}/convert/try/try-boolean.mjs +0 -0
  2340. /package/build/{value → esm/value}/convert/try/try-null.d.mts +0 -0
  2341. /package/build/{value → esm/value}/convert/try/try-null.mjs +0 -0
  2342. /package/build/{value → esm/value}/convert/try/try-number.d.mts +0 -0
  2343. /package/build/{value → esm/value}/convert/try/try-number.mjs +0 -0
  2344. /package/build/{value → esm/value}/convert/try/try-result.mjs +0 -0
  2345. /package/build/{value → esm/value}/convert/try/try-string.d.mts +0 -0
  2346. /package/build/{value → esm/value}/convert/try/try-string.mjs +0 -0
  2347. /package/build/{value → esm/value}/convert/try/try-undefined.d.mts +0 -0
  2348. /package/build/{value → esm/value}/convert/try/try-undefined.mjs +0 -0
  2349. /package/build/{value → esm/value}/convert/try/try.d.mts +0 -0
  2350. /package/build/{value → esm/value}/convert/try/try.mjs +0 -0
  2351. /package/build/{value → esm/value}/create/create.d.mts +0 -0
  2352. /package/build/{value → esm/value}/create/create.mjs +0 -0
  2353. /package/build/{value → esm/value}/create/error.d.mts +0 -0
  2354. /package/build/{value → esm/value}/create/error.mjs +0 -0
  2355. /package/build/{value → esm/value}/create/from-array.d.mts +0 -0
  2356. /package/build/{value → esm/value}/create/from-array.mjs +0 -0
  2357. /package/build/{value → esm/value}/create/from-async-iterator.d.mts +0 -0
  2358. /package/build/{value → esm/value}/create/from-async-iterator.mjs +0 -0
  2359. /package/build/{value → esm/value}/create/from-base.d.mts +0 -0
  2360. /package/build/{value → esm/value}/create/from-base.mjs +0 -0
  2361. /package/build/{value → esm/value}/create/from-bigint.d.mts +0 -0
  2362. /package/build/{value → esm/value}/create/from-bigint.mjs +0 -0
  2363. /package/build/{value → esm/value}/create/from-boolean.d.mts +0 -0
  2364. /package/build/{value → esm/value}/create/from-boolean.mjs +0 -0
  2365. /package/build/{value → esm/value}/create/from-constructor.d.mts +0 -0
  2366. /package/build/{value → esm/value}/create/from-constructor.mjs +0 -0
  2367. /package/build/{value → esm/value}/create/from-cyclic.d.mts +0 -0
  2368. /package/build/{value → esm/value}/create/from-cyclic.mjs +0 -0
  2369. /package/build/{value → esm/value}/create/from-default.d.mts +0 -0
  2370. /package/build/{value → esm/value}/create/from-default.mjs +0 -0
  2371. /package/build/{value → esm/value}/create/from-enum.d.mts +0 -0
  2372. /package/build/{value → esm/value}/create/from-enum.mjs +0 -0
  2373. /package/build/{value → esm/value}/create/from-function.d.mts +0 -0
  2374. /package/build/{value → esm/value}/create/from-function.mjs +0 -0
  2375. /package/build/{value → esm/value}/create/from-integer.d.mts +0 -0
  2376. /package/build/{value → esm/value}/create/from-integer.mjs +0 -0
  2377. /package/build/{value → esm/value}/create/from-intersect.d.mts +0 -0
  2378. /package/build/{value → esm/value}/create/from-intersect.mjs +0 -0
  2379. /package/build/{value → esm/value}/create/from-iterator.d.mts +0 -0
  2380. /package/build/{value → esm/value}/create/from-iterator.mjs +0 -0
  2381. /package/build/{value → esm/value}/create/from-literal.d.mts +0 -0
  2382. /package/build/{value → esm/value}/create/from-literal.mjs +0 -0
  2383. /package/build/{value → esm/value}/create/from-never.d.mts +0 -0
  2384. /package/build/{value → esm/value}/create/from-never.mjs +0 -0
  2385. /package/build/{value → esm/value}/create/from-null.d.mts +0 -0
  2386. /package/build/{value → esm/value}/create/from-null.mjs +0 -0
  2387. /package/build/{value → esm/value}/create/from-number.d.mts +0 -0
  2388. /package/build/{value → esm/value}/create/from-number.mjs +0 -0
  2389. /package/build/{value → esm/value}/create/from-object.d.mts +0 -0
  2390. /package/build/{value → esm/value}/create/from-object.mjs +0 -0
  2391. /package/build/{value → esm/value}/create/from-promise.d.mts +0 -0
  2392. /package/build/{value → esm/value}/create/from-promise.mjs +0 -0
  2393. /package/build/{value → esm/value}/create/from-record.d.mts +0 -0
  2394. /package/build/{value → esm/value}/create/from-record.mjs +0 -0
  2395. /package/build/{value → esm/value}/create/from-ref.d.mts +0 -0
  2396. /package/build/{value → esm/value}/create/from-ref.mjs +0 -0
  2397. /package/build/{value → esm/value}/create/from-string.d.mts +0 -0
  2398. /package/build/{value → esm/value}/create/from-string.mjs +0 -0
  2399. /package/build/{value → esm/value}/create/from-symbol.d.mts +0 -0
  2400. /package/build/{value → esm/value}/create/from-symbol.mjs +0 -0
  2401. /package/build/{value → esm/value}/create/from-template-literal.d.mts +0 -0
  2402. /package/build/{value → esm/value}/create/from-template-literal.mjs +0 -0
  2403. /package/build/{value → esm/value}/create/from-tuple.d.mts +0 -0
  2404. /package/build/{value → esm/value}/create/from-tuple.mjs +0 -0
  2405. /package/build/{value → esm/value}/create/from-type.d.mts +0 -0
  2406. /package/build/{value → esm/value}/create/from-type.mjs +0 -0
  2407. /package/build/{value → esm/value}/create/from-undefined.d.mts +0 -0
  2408. /package/build/{value → esm/value}/create/from-undefined.mjs +0 -0
  2409. /package/build/{value → esm/value}/create/from-union.d.mts +0 -0
  2410. /package/build/{value → esm/value}/create/from-union.mjs +0 -0
  2411. /package/build/{value → esm/value}/create/from-void.d.mts +0 -0
  2412. /package/build/{value → esm/value}/create/from-void.mjs +0 -0
  2413. /package/build/{value → esm/value}/create/index.d.mts +0 -0
  2414. /package/build/{value → esm/value}/create/index.mjs +0 -0
  2415. /package/build/{value → esm/value}/default/default.d.mts +0 -0
  2416. /package/build/{value → esm/value}/default/default.mjs +0 -0
  2417. /package/build/{value → esm/value}/default/from-array.d.mts +0 -0
  2418. /package/build/{value → esm/value}/default/from-array.mjs +0 -0
  2419. /package/build/{value → esm/value}/default/from-base.d.mts +0 -0
  2420. /package/build/{value → esm/value}/default/from-base.mjs +0 -0
  2421. /package/build/{value → esm/value}/default/from-cyclic.d.mts +0 -0
  2422. /package/build/{value → esm/value}/default/from-cyclic.mjs +0 -0
  2423. /package/build/{value → esm/value}/default/from-default.d.mts +0 -0
  2424. /package/build/{value → esm/value}/default/from-default.mjs +0 -0
  2425. /package/build/{value → esm/value}/default/from-intersect.d.mts +0 -0
  2426. /package/build/{value → esm/value}/default/from-intersect.mjs +0 -0
  2427. /package/build/{value → esm/value}/default/from-object.d.mts +0 -0
  2428. /package/build/{value → esm/value}/default/from-object.mjs +0 -0
  2429. /package/build/{value → esm/value}/default/from-record.d.mts +0 -0
  2430. /package/build/{value → esm/value}/default/from-record.mjs +0 -0
  2431. /package/build/{value → esm/value}/default/from-ref.d.mts +0 -0
  2432. /package/build/{value → esm/value}/default/from-ref.mjs +0 -0
  2433. /package/build/{value → esm/value}/default/from-tuple.d.mts +0 -0
  2434. /package/build/{value → esm/value}/default/from-tuple.mjs +0 -0
  2435. /package/build/{value → esm/value}/default/from-type.d.mts +0 -0
  2436. /package/build/{value → esm/value}/default/from-type.mjs +0 -0
  2437. /package/build/{value → esm/value}/default/from-union.d.mts +0 -0
  2438. /package/build/{value → esm/value}/default/from-union.mjs +0 -0
  2439. /package/build/{value → esm/value}/default/index.d.mts +0 -0
  2440. /package/build/{value → esm/value}/default/index.mjs +0 -0
  2441. /package/build/{value → esm/value}/delta/diff.d.mts +0 -0
  2442. /package/build/{value → esm/value}/delta/diff.mjs +0 -0
  2443. /package/build/{value → esm/value}/delta/edit.d.mts +0 -0
  2444. /package/build/{value → esm/value}/delta/edit.mjs +0 -0
  2445. /package/build/{value → esm/value}/delta/index.d.mts +0 -0
  2446. /package/build/{value → esm/value}/delta/index.mjs +0 -0
  2447. /package/build/{value → esm/value}/delta/patch.d.mts +0 -0
  2448. /package/build/{value → esm/value}/delta/patch.mjs +0 -0
  2449. /package/build/{value → esm/value}/equal/equal.mjs +0 -0
  2450. /package/build/{value → esm/value}/equal/index.d.mts +0 -0
  2451. /package/build/{value → esm/value}/equal/index.mjs +0 -0
  2452. /package/build/{value → esm/value}/errors/errors.d.mts +0 -0
  2453. /package/build/{value → esm/value}/errors/errors.mjs +0 -0
  2454. /package/build/{value → esm/value}/errors/index.d.mts +0 -0
  2455. /package/build/{value → esm/value}/errors/index.mjs +0 -0
  2456. /package/build/{value → esm/value}/hash/hash.mjs +0 -0
  2457. /package/build/{value → esm/value}/hash/index.d.mts +0 -0
  2458. /package/build/{value → esm/value}/hash/index.mjs +0 -0
  2459. /package/build/{value → esm/value}/index.d.mts +0 -0
  2460. /package/build/{value → esm/value}/index.mjs +0 -0
  2461. /package/build/{value → esm/value}/mutate/error.mjs +0 -0
  2462. /package/build/{value → esm/value}/mutate/from-array.d.mts +0 -0
  2463. /package/build/{value → esm/value}/mutate/from-array.mjs +0 -0
  2464. /package/build/{value → esm/value}/mutate/from-object.d.mts +0 -0
  2465. /package/build/{value → esm/value}/mutate/from-object.mjs +0 -0
  2466. /package/build/{value → esm/value}/mutate/from-unknown.d.mts +0 -0
  2467. /package/build/{value → esm/value}/mutate/from-unknown.mjs +0 -0
  2468. /package/build/{value → esm/value}/mutate/from-value.d.mts +0 -0
  2469. /package/build/{value → esm/value}/mutate/from-value.mjs +0 -0
  2470. /package/build/{value → esm/value}/mutate/index.d.mts +0 -0
  2471. /package/build/{value → esm/value}/mutate/index.mjs +0 -0
  2472. /package/build/{value → esm/value}/mutate/mutate.mjs +0 -0
  2473. /package/build/{value → esm/value}/parse/index.d.mts +0 -0
  2474. /package/build/{value → esm/value}/parse/index.mjs +0 -0
  2475. /package/build/{value → esm/value}/parse/parse.d.mts +0 -0
  2476. /package/build/{value → esm/value}/parse/parse.mjs +0 -0
  2477. /package/build/{value → esm/value}/pipeline/index.d.mts +0 -0
  2478. /package/build/{value → esm/value}/pipeline/index.mjs +0 -0
  2479. /package/build/{value → esm/value}/pipeline/pipeline.d.mts +0 -0
  2480. /package/build/{value → esm/value}/pipeline/pipeline.mjs +0 -0
  2481. /package/build/{value → esm/value}/pointer/index.d.mts +0 -0
  2482. /package/build/{value → esm/value}/pointer/index.mjs +0 -0
  2483. /package/build/{value → esm/value}/pointer/pointer.mjs +0 -0
  2484. /package/build/{value → esm/value}/repair/error.d.mts +0 -0
  2485. /package/build/{value → esm/value}/repair/error.mjs +0 -0
  2486. /package/build/{value → esm/value}/repair/from-array.d.mts +0 -0
  2487. /package/build/{value → esm/value}/repair/from-array.mjs +0 -0
  2488. /package/build/{value → esm/value}/repair/from-base.d.mts +0 -0
  2489. /package/build/{value → esm/value}/repair/from-base.mjs +0 -0
  2490. /package/build/{value → esm/value}/repair/from-enum.d.mts +0 -0
  2491. /package/build/{value → esm/value}/repair/from-enum.mjs +0 -0
  2492. /package/build/{value → esm/value}/repair/from-intersect.d.mts +0 -0
  2493. /package/build/{value → esm/value}/repair/from-intersect.mjs +0 -0
  2494. /package/build/{value → esm/value}/repair/from-object.d.mts +0 -0
  2495. /package/build/{value → esm/value}/repair/from-object.mjs +0 -0
  2496. /package/build/{value → esm/value}/repair/from-record.d.mts +0 -0
  2497. /package/build/{value → esm/value}/repair/from-record.mjs +0 -0
  2498. /package/build/{value → esm/value}/repair/from-ref.d.mts +0 -0
  2499. /package/build/{value → esm/value}/repair/from-ref.mjs +0 -0
  2500. /package/build/{value → esm/value}/repair/from-template-literal.d.mts +0 -0
  2501. /package/build/{value → esm/value}/repair/from-template-literal.mjs +0 -0
  2502. /package/build/{value → esm/value}/repair/from-tuple.d.mts +0 -0
  2503. /package/build/{value → esm/value}/repair/from-tuple.mjs +0 -0
  2504. /package/build/{value → esm/value}/repair/from-type.d.mts +0 -0
  2505. /package/build/{value → esm/value}/repair/from-type.mjs +0 -0
  2506. /package/build/{value → esm/value}/repair/from-union.d.mts +0 -0
  2507. /package/build/{value → esm/value}/repair/from-union.mjs +0 -0
  2508. /package/build/{value → esm/value}/repair/from-unknown.d.mts +0 -0
  2509. /package/build/{value → esm/value}/repair/from-unknown.mjs +0 -0
  2510. /package/build/{value → esm/value}/repair/index.d.mts +0 -0
  2511. /package/build/{value → esm/value}/repair/index.mjs +0 -0
  2512. /package/build/{value → esm/value}/repair/repair.d.mts +0 -0
  2513. /package/build/{value → esm/value}/repair/repair.mjs +0 -0
  2514. /package/build/{value → esm/value}/shared/index.d.mts +0 -0
  2515. /package/build/{value → esm/value}/shared/index.mjs +0 -0
  2516. /package/build/{value → esm/value}/shared/optional-undefined.d.mts +0 -0
  2517. /package/build/{value → esm/value}/shared/optional-undefined.mjs +0 -0
  2518. /package/build/{value → esm/value}/value.d.mts +0 -0
  2519. /package/build/{value → esm/value}/value.mjs +0 -0
@@ -0,0 +1,236 @@
1
+ "use strict";
2
+ // deno-fmt-ignore-file
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.HashCode = HashCode;
5
+ exports.Hash = Hash;
6
+ const index_1 = require("../unreachable/index");
7
+ const index_2 = require("../../guard/index");
8
+ // ------------------------------------------------------------------
9
+ // InstanceKeys
10
+ //
11
+ // Retrieves all enumerable and non-enumerable own property keys
12
+ // and inherited prototype keys (excluding symbols and the 'constructor')
13
+ // from an object instance.
14
+ //
15
+ // This function is useful for differentiating between class instances
16
+ // based on their structural keys rather than relying on the
17
+ // constructor name. It provides a more reliable structural comparison
18
+ // by capturing both own and prototype properties.
19
+ //
20
+ // ------------------------------------------------------------------
21
+ function InstanceKeys(value) {
22
+ const propertyKeys = new Set();
23
+ let current = value;
24
+ while (current && current !== Object.prototype) {
25
+ for (const key of Reflect.ownKeys(current)) {
26
+ if (key !== 'constructor' && typeof key !== 'symbol')
27
+ propertyKeys.add(key);
28
+ }
29
+ current = Object.getPrototypeOf(current);
30
+ }
31
+ return [...propertyKeys];
32
+ }
33
+ // ------------------------------------------------------------------
34
+ // IsIEEE754
35
+ //
36
+ // TypeBox guards do not consider +/- Infinity or NaN as valid
37
+ // numbers, but they are valid IEEE754 numbers. We use a special
38
+ // guard to ensure these numbers are considered for hashing.
39
+ //
40
+ // ------------------------------------------------------------------
41
+ function IsIEEE754(value) {
42
+ return typeof value === 'number';
43
+ }
44
+ // ------------------------------------------------------------------
45
+ // ByteMarker
46
+ // ------------------------------------------------------------------
47
+ var ByteMarker;
48
+ (function (ByteMarker) {
49
+ ByteMarker[ByteMarker["Array"] = 0] = "Array";
50
+ ByteMarker[ByteMarker["BigInt"] = 1] = "BigInt";
51
+ ByteMarker[ByteMarker["Boolean"] = 2] = "Boolean";
52
+ ByteMarker[ByteMarker["Date"] = 3] = "Date";
53
+ ByteMarker[ByteMarker["Constructor"] = 4] = "Constructor";
54
+ ByteMarker[ByteMarker["Function"] = 5] = "Function";
55
+ ByteMarker[ByteMarker["Null"] = 6] = "Null";
56
+ ByteMarker[ByteMarker["Number"] = 7] = "Number";
57
+ ByteMarker[ByteMarker["Object"] = 8] = "Object";
58
+ ByteMarker[ByteMarker["RegExp"] = 9] = "RegExp";
59
+ ByteMarker[ByteMarker["String"] = 10] = "String";
60
+ ByteMarker[ByteMarker["Symbol"] = 11] = "Symbol";
61
+ ByteMarker[ByteMarker["TypeArray"] = 12] = "TypeArray";
62
+ ByteMarker[ByteMarker["Undefined"] = 13] = "Undefined";
63
+ })(ByteMarker || (ByteMarker = {}));
64
+ // ------------------------------------------------------------------
65
+ // State
66
+ // ------------------------------------------------------------------
67
+ let Accumulator = BigInt('14695981039346656037');
68
+ const [Prime, Size] = [BigInt('1099511628211'), BigInt('18446744073709551616' /* 2 ^ 64 */)];
69
+ const Bytes = Array.from({ length: 256 }).map((_, i) => BigInt(i));
70
+ const F64 = new Float64Array(1);
71
+ const F64In = new DataView(F64.buffer);
72
+ const F64Out = new Uint8Array(F64.buffer);
73
+ // ------------------------------------------------------------------
74
+ // Operation
75
+ // ------------------------------------------------------------------
76
+ function FNV1A64_OP(byte) {
77
+ Accumulator = Accumulator ^ Bytes[byte];
78
+ Accumulator = (Accumulator * Prime) % Size;
79
+ }
80
+ // ------------------------------------------------------------------
81
+ // Array
82
+ // ------------------------------------------------------------------
83
+ function FromArray(value) {
84
+ FNV1A64_OP(ByteMarker.Array);
85
+ for (const item of value) {
86
+ FromValue(item);
87
+ }
88
+ }
89
+ // ------------------------------------------------------------------
90
+ // BigInt
91
+ // ------------------------------------------------------------------
92
+ function FromBigInt(value) {
93
+ FNV1A64_OP(ByteMarker.BigInt);
94
+ F64In.setBigInt64(0, value);
95
+ for (const byte of F64Out) {
96
+ FNV1A64_OP(byte);
97
+ }
98
+ }
99
+ // ------------------------------------------------------------------
100
+ // Boolean
101
+ // ------------------------------------------------------------------
102
+ function FromBoolean(value) {
103
+ FNV1A64_OP(ByteMarker.Boolean);
104
+ FNV1A64_OP(value ? 1 : 0);
105
+ }
106
+ // ------------------------------------------------------------------
107
+ // Constructor
108
+ // ------------------------------------------------------------------
109
+ function FromConstructor(value) {
110
+ FNV1A64_OP(ByteMarker.Constructor);
111
+ FromValue(value.toString());
112
+ }
113
+ // ------------------------------------------------------------------
114
+ // Date
115
+ // ------------------------------------------------------------------
116
+ function FromDate(value) {
117
+ FNV1A64_OP(ByteMarker.Date);
118
+ FromValue(value.getTime());
119
+ }
120
+ // ------------------------------------------------------------------
121
+ // Function
122
+ // ------------------------------------------------------------------
123
+ function FromFunction(value) {
124
+ FNV1A64_OP(ByteMarker.Function);
125
+ FromValue(value.toString());
126
+ }
127
+ // ------------------------------------------------------------------
128
+ // Null
129
+ // ------------------------------------------------------------------
130
+ function FromNull(_value) {
131
+ FNV1A64_OP(ByteMarker.Null);
132
+ }
133
+ // ------------------------------------------------------------------
134
+ // Number | IEEE754
135
+ // ------------------------------------------------------------------
136
+ function FromNumber(value) {
137
+ FNV1A64_OP(ByteMarker.Number);
138
+ F64In.setFloat64(0, value, true /* little-endian */);
139
+ for (const byte of F64Out) {
140
+ FNV1A64_OP(byte);
141
+ }
142
+ }
143
+ // ------------------------------------------------------------------
144
+ // Object
145
+ // ------------------------------------------------------------------
146
+ function FromObject(value) {
147
+ FNV1A64_OP(ByteMarker.Object);
148
+ for (const key of InstanceKeys(value).sort()) {
149
+ FromValue(key);
150
+ FromValue(value[key]);
151
+ }
152
+ }
153
+ // ------------------------------------------------------------------
154
+ // RegExp
155
+ // ------------------------------------------------------------------
156
+ function FromRegExp(value) {
157
+ FNV1A64_OP(ByteMarker.RegExp);
158
+ FromString(value.toString());
159
+ }
160
+ // ------------------------------------------------------------------
161
+ // String
162
+ // ------------------------------------------------------------------
163
+ const encoder = new TextEncoder();
164
+ function FromString(value) {
165
+ FNV1A64_OP(ByteMarker.String);
166
+ for (const byte of encoder.encode(value)) {
167
+ FNV1A64_OP(byte);
168
+ }
169
+ }
170
+ // ------------------------------------------------------------------
171
+ // Symbol
172
+ // ------------------------------------------------------------------
173
+ function FromSymbol(value) {
174
+ FNV1A64_OP(ByteMarker.Symbol);
175
+ FromValue(value.toString());
176
+ }
177
+ // ------------------------------------------------------------------
178
+ // TypeArray
179
+ // ------------------------------------------------------------------
180
+ function FromTypeArray(value) {
181
+ FNV1A64_OP(ByteMarker.TypeArray);
182
+ const buffer = new Uint8Array(value.buffer);
183
+ for (let i = 0; i < buffer.length; i++) {
184
+ FNV1A64_OP(buffer[i]);
185
+ }
186
+ }
187
+ // ------------------------------------------------------------------
188
+ // Undefined
189
+ // ------------------------------------------------------------------
190
+ function FromUndefined(_value) {
191
+ return FNV1A64_OP(ByteMarker.Undefined);
192
+ }
193
+ // ------------------------------------------------------------------
194
+ // Hash
195
+ //
196
+ // deno-coverage-ignore-start - unreachable
197
+ //
198
+ // This function should all JavaScript values so we can't reach the
199
+ // fall-through. We use Unreachable to assert that no values pass
200
+ // through. We will need to handle these should they arise.
201
+ //
202
+ // ------------------------------------------------------------------
203
+ function FromValue(value) {
204
+ return (index_2.GlobalsGuard.IsTypeArray(value) ? FromTypeArray(value) :
205
+ index_2.GlobalsGuard.IsDate(value) ? FromDate(value) :
206
+ index_2.GlobalsGuard.IsRegExp(value) ? FromRegExp(value) :
207
+ index_2.GlobalsGuard.IsBoolean(value) ? FromBoolean(value.valueOf()) :
208
+ index_2.GlobalsGuard.IsString(value) ? FromString(value.valueOf()) :
209
+ index_2.GlobalsGuard.IsNumber(value) ? FromNumber(value.valueOf()) :
210
+ IsIEEE754(value) ? FromNumber(value) :
211
+ index_2.Guard.IsArray(value) ? FromArray(value) :
212
+ index_2.Guard.IsBoolean(value) ? FromBoolean(value) :
213
+ index_2.Guard.IsBigInt(value) ? FromBigInt(value) :
214
+ index_2.Guard.IsConstructor(value) ? FromConstructor(value) :
215
+ index_2.Guard.IsNull(value) ? FromNull(value) :
216
+ index_2.Guard.IsObject(value) ? FromObject(value) :
217
+ index_2.Guard.IsString(value) ? FromString(value) :
218
+ index_2.Guard.IsSymbol(value) ? FromSymbol(value) :
219
+ index_2.Guard.IsUndefined(value) ? FromUndefined(value) :
220
+ index_2.Guard.IsFunction(value) ? FromFunction(value) :
221
+ (0, index_1.Unreachable)());
222
+ }
223
+ // deno-coverage-ignore-stop
224
+ // ------------------------------------------------------------------
225
+ // Hash
226
+ // ------------------------------------------------------------------
227
+ /** Generates a FNV1A-64 non cryptographic hash of the given value */
228
+ function HashCode(value) {
229
+ Accumulator = BigInt('14695981039346656037');
230
+ FromValue(value);
231
+ return Accumulator;
232
+ }
233
+ /** Generates a FNV1A-64 non cryptographic hash of the given value */
234
+ function Hash(value) {
235
+ return HashCode(value).toString(16).padStart(16, '0');
236
+ }
@@ -0,0 +1 @@
1
+ export * as Hashing from './hash';
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Hashing = void 0;
4
+ exports.Hashing = require("./hash");
@@ -0,0 +1,4 @@
1
+ export * from './system';
2
+ export * as System from './system';
3
+ import * as System from './system';
4
+ export default System;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ exports.System = void 0;
18
+ __exportStar(require("./system"), exports);
19
+ exports.System = require("./system");
20
+ const System = require("./system");
21
+ exports.default = System;
@@ -0,0 +1,7 @@
1
+ import { TLocalizedValidationMessageCallback } from '../../error/index';
2
+ /** Sets the locale */
3
+ export declare function Set(callback: TLocalizedValidationMessageCallback): void;
4
+ /** Gets the locale */
5
+ export declare function Get(): TLocalizedValidationMessageCallback;
6
+ /** Resets the locale to `en_US` */
7
+ export declare function Reset(): void;
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ // deno-fmt-ignore-file
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.Set = Set;
5
+ exports.Get = Get;
6
+ exports.Reset = Reset;
7
+ const en_US_1 = require("./en_US");
8
+ let locale = en_US_1.en_US;
9
+ /** Sets the locale */
10
+ function Set(callback) {
11
+ locale = callback;
12
+ }
13
+ /** Gets the locale */
14
+ function Get() {
15
+ return locale;
16
+ }
17
+ /** Resets the locale to `en_US` */
18
+ function Reset() {
19
+ Set(en_US_1.en_US);
20
+ }
@@ -0,0 +1,40 @@
1
+ export * from './_config';
2
+ export * from './ar_001';
3
+ export * from './bn_BD';
4
+ export * from './cs_CZ';
5
+ export * from './de_DE';
6
+ export * from './el_GR';
7
+ export * from './en_US';
8
+ export * from './es_419';
9
+ export * from './es_AR';
10
+ export * from './es_ES';
11
+ export * from './es_MX';
12
+ export * from './fa_IR';
13
+ export * from './fil_PH';
14
+ export * from './fr_CA';
15
+ export * from './fr_CA';
16
+ export * from './fr_FR';
17
+ export * from './ha_NG';
18
+ export * from './hi_IN';
19
+ export * from './hu_HU';
20
+ export * from './id_ID';
21
+ export * from './it_IT';
22
+ export * from './ja_JP';
23
+ export * from './ko_KR';
24
+ export * from './ms_MY';
25
+ export * from './nl_NL';
26
+ export * from './pl_PL';
27
+ export * from './pt_BR';
28
+ export * from './pt_PT';
29
+ export * from './ro_RO';
30
+ export * from './ru_RU';
31
+ export * from './sv_SE';
32
+ export * from './sw_TZ';
33
+ export * from './th_TH';
34
+ export * from './tr_TR';
35
+ export * from './uk_UA';
36
+ export * from './ur_PK';
37
+ export * from './vi_VN';
38
+ export * from './yo_NG';
39
+ export * from './zh_Hans';
40
+ export * from './zh_Hant';
@@ -0,0 +1,56 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./_config"), exports);
18
+ __exportStar(require("./ar_001"), exports);
19
+ __exportStar(require("./bn_BD"), exports);
20
+ __exportStar(require("./cs_CZ"), exports);
21
+ __exportStar(require("./de_DE"), exports);
22
+ __exportStar(require("./el_GR"), exports);
23
+ __exportStar(require("./en_US"), exports);
24
+ __exportStar(require("./es_419"), exports);
25
+ __exportStar(require("./es_AR"), exports);
26
+ __exportStar(require("./es_ES"), exports);
27
+ __exportStar(require("./es_MX"), exports);
28
+ __exportStar(require("./fa_IR"), exports);
29
+ __exportStar(require("./fil_PH"), exports);
30
+ __exportStar(require("./fr_CA"), exports);
31
+ __exportStar(require("./fr_CA"), exports);
32
+ __exportStar(require("./fr_FR"), exports);
33
+ __exportStar(require("./ha_NG"), exports);
34
+ __exportStar(require("./hi_IN"), exports);
35
+ __exportStar(require("./hu_HU"), exports);
36
+ __exportStar(require("./id_ID"), exports);
37
+ __exportStar(require("./it_IT"), exports);
38
+ __exportStar(require("./ja_JP"), exports);
39
+ __exportStar(require("./ko_KR"), exports);
40
+ __exportStar(require("./ms_MY"), exports);
41
+ __exportStar(require("./nl_NL"), exports);
42
+ __exportStar(require("./pl_PL"), exports);
43
+ __exportStar(require("./pt_BR"), exports);
44
+ __exportStar(require("./pt_PT"), exports);
45
+ __exportStar(require("./ro_RO"), exports);
46
+ __exportStar(require("./ru_RU"), exports);
47
+ __exportStar(require("./sv_SE"), exports);
48
+ __exportStar(require("./sw_TZ"), exports);
49
+ __exportStar(require("./th_TH"), exports);
50
+ __exportStar(require("./tr_TR"), exports);
51
+ __exportStar(require("./uk_UA"), exports);
52
+ __exportStar(require("./ur_PK"), exports);
53
+ __exportStar(require("./vi_VN"), exports);
54
+ __exportStar(require("./yo_NG"), exports);
55
+ __exportStar(require("./zh_Hans"), exports);
56
+ __exportStar(require("./zh_Hant"), exports);
@@ -0,0 +1,3 @@
1
+ import { TValidationError } from '../../error/index';
2
+ /** Arabic (World) - ISO 639-1 language code 'ar' with UN M.49 region code '001' for World. */
3
+ export declare function ar_001(error: TValidationError): string;
@@ -0,0 +1,44 @@
1
+ "use strict";
2
+ // deno-fmt-ignore-file
3
+ // deno-coverage-ignore-start
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.ar_001 = ar_001;
6
+ /** Arabic (World) - ISO 639-1 language code 'ar' with UN M.49 region code '001' for World. */
7
+ function ar_001(error) {
8
+ switch (error.keyword) {
9
+ case 'additionalProperties': return 'يجب ألا يحتوي على خصائص إضافية';
10
+ case 'anyOf': return 'يجب أن يتطابق مع مخطط في أيٍ مما يلي';
11
+ case 'boolean': return 'المخطط خاطئ';
12
+ case 'const': return 'يجب أن يكون مساويًا للثابت';
13
+ case 'contains': return 'يجب أن يحتوي على عنصر واحد صحيح على الأقل';
14
+ case 'dependencies': return `يجب أن يحتوي على الخصائص ${error.params.dependencies.join(', ')} عندما تكون الخاصية ${error.params.property} موجودة`;
15
+ case 'dependentRequired': return `يجب أن يحتوي على الخصائص ${error.params.dependencies.join(', ')} عندما تكون الخاصية ${error.params.property} موجودة`;
16
+ case 'enum': return 'يجب أن يكون مساويًا لإحدى القيم المسموح بها';
17
+ case 'exclusiveMaximum': return `يجب أن يكون ${error.params.comparison} ${error.params.limit}`;
18
+ case 'exclusiveMinimum': return `يجب أن يكون ${error.params.comparison} ${error.params.limit}`;
19
+ case 'format': return `يجب أن يتطابق مع التنسيق "${error.params.format}"`;
20
+ case 'if': return `يجب أن يتطابق مع مخطط "${error.params.failingKeyword}"`;
21
+ case 'maxItems': return `يجب ألا يحتوي على أكثر من ${error.params.limit} عناصر`;
22
+ case 'maxLength': return `يجب ألا يحتوي على أكثر من ${error.params.limit} أحرف`;
23
+ case 'maxProperties': return `يجب ألا يحتوي على أكثر من ${error.params.limit} خصائص`;
24
+ case 'maximum': return `يجب أن يكون ${error.params.comparison} ${error.params.limit}`;
25
+ case 'minItems': return `يجب ألا يحتوي على أقل من ${error.params.limit} عناصر`;
26
+ case 'minLength': return `يجب ألا يحتوي على أقل من ${error.params.limit} أحرف`;
27
+ case 'minProperties': return `يجب ألا يحتوي على أقل من ${error.params.limit} خصائص`;
28
+ case 'minimum': return `يجب أن يكون ${error.params.comparison} ${error.params.limit}`;
29
+ case 'multipleOf': return `يجب أن يكون مضاعفًا لـ ${error.params.multipleOf}`;
30
+ case 'not': return 'يجب ألا يكون صالحًا';
31
+ case 'oneOf': return 'يجب أن يتطابق مع مخطط واحد بالضبط في واحد مما يلي';
32
+ case 'pattern': return `يجب أن يتطابق مع النمط "${error.params.pattern}"`;
33
+ case 'propertyNames': return `أسماء الخصائص ${error.params.propertyNames.join(', ')} غير صالحة`;
34
+ case 'required': return `يجب أن يحتوي على الخصائص المطلوبة ${error.params.requiredProperties.join(', ')}`;
35
+ case 'type': return typeof error.params.type === 'string' ? `يجب أن يكون ${error.params.type}` : `يجب أن يكون إما ${error.params.type.join(' أو ')}`;
36
+ case 'unevaluatedItems': return 'يجب ألا يحتوي على عناصر غير مقيمة';
37
+ case 'unevaluatedProperties': return 'يجب ألا يحتوي على خصائص غير مقيمة';
38
+ case 'uniqueItems': return `يجب ألا يحتوي على عناصر مكررة`;
39
+ case '~guard': return `يجب أن يتطابق مع دالة الفحص`;
40
+ case '~refine': return error.params.message;
41
+ default: return 'حدث خطأ غير معروف في التحقق من الصحة';
42
+ }
43
+ }
44
+ // deno-coverage-ignore-stop
@@ -0,0 +1,3 @@
1
+ import { TValidationError } from '../../error/index';
2
+ /** Bengali (Bangladesh) - ISO 639-1 language code 'bn' with ISO 3166-1 alpha-2 country code 'BD' for Bangladesh. */
3
+ export declare function bn_BD(error: TValidationError): string;
@@ -0,0 +1,44 @@
1
+ "use strict";
2
+ // deno-fmt-ignore-file
3
+ // deno-coverage-ignore-start
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.bn_BD = bn_BD;
6
+ /** Bengali (Bangladesh) - ISO 639-1 language code 'bn' with ISO 3166-1 alpha-2 country code 'BD' for Bangladesh. */
7
+ function bn_BD(error) {
8
+ switch (error.keyword) {
9
+ case 'additionalProperties': return 'অতিরিক্ত বৈশিষ্ট্য থাকতে পারবে না';
10
+ case 'anyOf': return 'anyOf-এর একটি স্কিমার সাথে মিলতে হবে';
11
+ case 'boolean': return 'স্কিমা মিথ্যা';
12
+ case 'const': return 'ধ্রুবকের সমান হতে হবে';
13
+ case 'contains': return 'অন্তত 1টি বৈধ আইটেম থাকতে হবে';
14
+ case 'dependencies': return `যখন ${error.params.property} বৈশিষ্ট্য বিদ্যমান থাকে, তখন ${error.params.dependencies.join(', ')} বৈশিষ্ট্য থাকতে হবে`;
15
+ case 'dependentRequired': return `যখন ${error.params.property} বৈশিষ্ট্য বিদ্যমান থাকে, তখন ${error.params.dependencies.join(', ')} বৈশিষ্ট্য থাকতে হবে`;
16
+ case 'enum': return 'অনুমোদিত মানগুলির একটির সমান হতে হবে';
17
+ case 'exclusiveMaximum': return `অবশ্যই ${error.params.comparison} ${error.params.limit} হতে হবে`;
18
+ case 'exclusiveMinimum': return `অবশ্যই ${error.params.comparison} ${error.params.limit} হতে হবে`;
19
+ case 'format': return `অবশ্যই "${error.params.format}" ফরম্যাটের সাথে মিলতে হবে`;
20
+ case 'if': return `অবশ্যই "${error.params.failingKeyword}" স্কিমার সাথে মিলতে হবে`;
21
+ case 'maxItems': return `${error.params.limit}টির বেশি আইটেম থাকতে পারবে না`;
22
+ case 'maxLength': return `${error.params.limit}টির বেশি অক্ষর থাকতে পারবে না`;
23
+ case 'maxProperties': return `${error.params.limit}টির বেশি বৈশিষ্ট্য থাকতে পারবে না`;
24
+ case 'maximum': return `অবশ্যই ${error.params.comparison} ${error.params.limit} হতে হবে`;
25
+ case 'minItems': return `${error.params.limit}টির কম আইটেম থাকতে পারবে না`;
26
+ case 'minLength': return `${error.params.limit}টির কম অক্ষর থাকতে পারবে না`;
27
+ case 'minProperties': return `${error.params.limit}টির কম বৈশিষ্ট্য থাকতে পারবে না`;
28
+ case 'minimum': return `অবশ্যই ${error.params.comparison} ${error.params.limit} হতে হবে`;
29
+ case 'multipleOf': return `${error.params.multipleOf}-এর গুণিতক হতে হবে`;
30
+ case 'not': return 'বৈধ হতে পারবে না';
31
+ case 'oneOf': return 'oneOf-এর শুধুমাত্র একটি স্কিমার সাথে মিলতে হবে';
32
+ case 'pattern': return `অবশ্যই "${error.params.pattern}" প্যাটার্নের সাথে মিলতে হবে`;
33
+ case 'propertyNames': return `বৈশিষ্ট্য নাম ${error.params.propertyNames.join(', ')} অবৈধ`;
34
+ case 'required': return `প্রয়োজনীয় বৈশিষ্ট্য ${error.params.requiredProperties.join(', ')} থাকতে হবে`;
35
+ case 'type': return typeof error.params.type === 'string' ? `অবশ্যই ${error.params.type} হতে হবে` : `অবশ্যই ${error.params.type.join(' অথবা ')} হতে হবে`;
36
+ case 'unevaluatedItems': return 'অবমূল্যায়িত আইটেম থাকতে পারবে না';
37
+ case 'unevaluatedProperties': return 'অবমূল্যায়িত বৈশিষ্ট্য থাকতে পারবে না';
38
+ case 'uniqueItems': return `অনুলিপি আইটেম থাকতে পারবে না`;
39
+ case '~guard': return `চেক ফাংশনের সাথে মেলাতে হবে`;
40
+ case '~refine': return error.params.message;
41
+ default: return 'একটি অজানা বৈধকরণ ত্রুটি ঘটেছে';
42
+ }
43
+ }
44
+ // deno-coverage-ignore-stop
@@ -0,0 +1,3 @@
1
+ import { TValidationError } from '../../error/index';
2
+ /** Czech (Czech Republic) - ISO 639-1 language code 'cs' with ISO 3166-1 alpha-2 country code 'CZ' for Czech Republic. */
3
+ export declare function cs_CZ(error: TValidationError): string;
@@ -0,0 +1,44 @@
1
+ "use strict";
2
+ // deno-fmt-ignore-file
3
+ // deno-coverage-ignore-start
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.cs_CZ = cs_CZ;
6
+ /** Czech (Czech Republic) - ISO 639-1 language code 'cs' with ISO 3166-1 alpha-2 country code 'CZ' for Czech Republic. */
7
+ function cs_CZ(error) {
8
+ switch (error.keyword) {
9
+ case 'additionalProperties': return 'nesmí mít další vlastnosti';
10
+ case 'anyOf': return 'musí odpovídat schématu v anyOf';
11
+ case 'boolean': return 'schéma je nepravdivé';
12
+ case 'const': return 'musí být rovno konstantě';
13
+ case 'contains': return 'musí obsahovat alespoň 1 platnou položku';
14
+ case 'dependencies': return `musí mít vlastnosti ${error.params.dependencies.join(', ')}, pokud je vlastnost ${error.params.property} přítomna`;
15
+ case 'dependentRequired': return `musí mít vlastnosti ${error.params.dependencies.join(', ')}, pokud je vlastnost ${error.params.property} přítomna`;
16
+ case 'enum': return 'musí být rovno jedné z povolených hodnot';
17
+ case 'exclusiveMaximum': return `musí být ${error.params.comparison} ${error.params.limit}`;
18
+ case 'exclusiveMinimum': return `musí být ${error.params.comparison} ${error.params.limit}`;
19
+ case 'format': return `musí odpovídat formátu "${error.params.format}"`;
20
+ case 'if': return `musí odpovídat schématu "${error.params.failingKeyword}"`;
21
+ case 'maxItems': return `nesmí mít více než ${error.params.limit} položek`;
22
+ case 'maxLength': return `nesmí mít více než ${error.params.limit} znaků`;
23
+ case 'maxProperties': return `nesmí mít více než ${error.params.limit} vlastností`;
24
+ case 'maximum': return `musí být ${error.params.comparison} ${error.params.limit}`;
25
+ case 'minItems': return `nesmí mít méně než ${error.params.limit} položek`;
26
+ case 'minLength': return `nesmí mít méně než ${error.params.limit} znaků`;
27
+ case 'minProperties': return `nesmí mít méně než ${error.params.limit} vlastností`;
28
+ case 'minimum': return `musí být ${error.params.comparison} ${error.params.limit}`;
29
+ case 'multipleOf': return `musí být násobkem ${error.params.multipleOf}`;
30
+ case 'not': return 'nesmí být platné';
31
+ case 'oneOf': return 'musí odpovídat přesně jednomu schématu v oneOf';
32
+ case 'pattern': return `musí odpovídat vzoru "${error.params.pattern}"`;
33
+ case 'propertyNames': return `názvy vlastností ${error.params.propertyNames.join(', ')} jsou neplatné`;
34
+ case 'required': return `musí mít povinné vlastnosti ${error.params.requiredProperties.join(', ')}`;
35
+ case 'type': return typeof error.params.type === 'string' ? `musí být ${error.params.type}` : `musí být ${error.params.type.join(' nebo ')}`;
36
+ case 'unevaluatedItems': return 'nesmí mít nevyhodnocené položky';
37
+ case 'unevaluatedProperties': return 'nesmí mít nevyhodnocené vlastnosti';
38
+ case 'uniqueItems': return `nesmí mít duplicitní položky`;
39
+ case '~guard': return `musí odpovídat kontrolní funkci`;
40
+ case '~refine': return error.params.message;
41
+ default: return 'došlo k neznámé chybě ověření';
42
+ }
43
+ }
44
+ // deno-coverage-ignore-stop
@@ -0,0 +1,3 @@
1
+ import { TValidationError } from '../../error/index';
2
+ /** German (Germany) - ISO 639-1 language code 'de' with ISO 3166-1 alpha-2 country code 'DE' for Germany. */
3
+ export declare function de_DE(error: TValidationError): string;
@@ -0,0 +1,44 @@
1
+ "use strict";
2
+ // deno-fmt-ignore-file
3
+ // deno-coverage-ignore-start
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.de_DE = de_DE;
6
+ /** German (Germany) - ISO 639-1 language code 'de' with ISO 3166-1 alpha-2 country code 'DE' for Germany. */
7
+ function de_DE(error) {
8
+ switch (error.keyword) {
9
+ case 'additionalProperties': return 'darf keine zusätzlichen Eigenschaften haben';
10
+ case 'anyOf': return 'muss einem Schema in „anyOf“ entsprechen';
11
+ case 'boolean': return 'Schema ist falsch';
12
+ case 'const': return 'muss gleich der Konstante sein';
13
+ case 'contains': return 'muss mindestens 1 gültiges Element enthalten';
14
+ case 'dependencies': return `muss die Eigenschaften ${error.params.dependencies.join(', ')} haben, wenn Eigenschaft ${error.params.property} vorhanden ist`;
15
+ case 'dependentRequired': return `muss die Eigenschaften ${error.params.dependencies.join(', ')} haben, wenn Eigenschaft ${error.params.property} vorhanden ist`;
16
+ case 'enum': return 'muss einem der erlaubten Werte entsprechen';
17
+ case 'exclusiveMaximum': return `muss ${error.params.comparison} ${error.params.limit} sein`;
18
+ case 'exclusiveMinimum': return `muss ${error.params.comparison} ${error.params.limit} sein`;
19
+ case 'format': return `muss dem Format "${error.params.format}" entsprechen`;
20
+ case 'if': return `muss dem Schema "${error.params.failingKeyword}" entsprechen`;
21
+ case 'maxItems': return `darf nicht mehr als ${error.params.limit} Elemente haben`;
22
+ case 'maxLength': return `darf nicht mehr als ${error.params.limit} Zeichen haben`;
23
+ case 'maxProperties': return `darf nicht mehr als ${error.params.limit} Eigenschaften haben`;
24
+ case 'maximum': return `muss ${error.params.comparison} ${error.params.limit} sein`;
25
+ case 'minItems': return `darf nicht weniger als ${error.params.limit} Elemente haben`;
26
+ case 'minLength': return `darf nicht weniger als ${error.params.limit} Zeichen haben`;
27
+ case 'minProperties': return `darf nicht weniger als ${error.params.limit} Eigenschaften haben`;
28
+ case 'minimum': return `muss ${error.params.comparison} ${error.params.limit} sein`;
29
+ case 'multipleOf': return `muss ein Vielfaches von ${error.params.multipleOf} sein`;
30
+ case 'not': return 'darf nicht gültig sein';
31
+ case 'oneOf': return 'muss genau einem Schema in „oneOf“ entsprechen';
32
+ case 'pattern': return `muss dem Muster "${error.params.pattern}" entsprechen`;
33
+ case 'propertyNames': return `Eigenschaftsnamen ${error.params.propertyNames.join(', ')} sind ungültig`;
34
+ case 'required': return `muss die erforderlichen Eigenschaften ${error.params.requiredProperties.join(', ')} haben`;
35
+ case 'type': return typeof error.params.type === 'string' ? `muss ${error.params.type} sein` : `muss entweder ${error.params.type.join(' oder ')} sein`;
36
+ case 'unevaluatedItems': return 'darf keine unbewerteten Elemente haben';
37
+ case 'unevaluatedProperties': return 'darf keine unbewerteten Eigenschaften haben';
38
+ case 'uniqueItems': return `darf keine doppelten Elemente haben`;
39
+ case '~guard': return `muss der Prüffunktion entsprechen`;
40
+ case '~refine': return error.params.message;
41
+ default: return 'ein unbekannter Validierungsfehler ist aufgetreten';
42
+ }
43
+ }
44
+ // deno-coverage-ignore-stop
@@ -0,0 +1,3 @@
1
+ import { TValidationError } from '../../error/index';
2
+ /** Greek (Greece) - ISO 639-1 language code 'el' with ISO 3166-1 alpha-2 country code 'GR' for Greece. */
3
+ export declare function el_GR(error: TValidationError): string;