@sinclair/typebox 0.32.0-dev-1 → 0.32.0-dev-2

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 (895) hide show
  1. package/cjs/compiler/compiler.js +657 -0
  2. package/cjs/compiler/index.js +48 -0
  3. package/cjs/errors/errors.js +588 -0
  4. package/cjs/index.js +205 -0
  5. package/cjs/system/errors.js +192 -0
  6. package/cjs/system/index.js +41 -0
  7. package/cjs/system/policy.js +74 -0
  8. package/cjs/system/system.js +71 -0
  9. package/cjs/type/any/any.js +36 -0
  10. package/cjs/type/array/array.js +42 -0
  11. package/cjs/type/async-iterator/async-iterator.js +42 -0
  12. package/cjs/type/awaited/awaited.js +66 -0
  13. package/cjs/type/bigint/bigint.js +40 -0
  14. package/cjs/type/boolean/boolean.js +40 -0
  15. package/cjs/type/clone/type.js +41 -0
  16. package/cjs/type/composite/composite.js +47 -0
  17. package/cjs/type/const/const.js +84 -0
  18. package/cjs/type/constructor/constructor.js +43 -0
  19. package/cjs/type/constructor-parameters/constructor-parameters.js +37 -0
  20. package/cjs/type/date/date.js +40 -0
  21. package/cjs/type/deref/deref.js +136 -0
  22. package/cjs/type/enum/enum.js +46 -0
  23. package/cjs/type/exclude/exclude.js +54 -0
  24. package/cjs/type/extends/extends-check.js +654 -0
  25. package/cjs/type/extends/extends-undefined.js +51 -0
  26. package/cjs/type/extends/extends.js +47 -0
  27. package/cjs/type/extract/extract.js +54 -0
  28. package/cjs/type/function/function.js +43 -0
  29. package/cjs/type/guard/type.js +515 -0
  30. package/cjs/type/indexed/indexed-key.js +65 -0
  31. package/cjs/type/indexed/indexed-type.js +106 -0
  32. package/cjs/type/indexed/indexed.js +41 -0
  33. package/cjs/type/instance-type/instance-type.js +36 -0
  34. package/cjs/type/integer/integer.js +40 -0
  35. package/cjs/type/intersect/intersect.js +59 -0
  36. package/cjs/type/intrinsic/intrinsic.js +106 -0
  37. package/cjs/type/iterator/iterator.js +42 -0
  38. package/cjs/type/keyof/keyof-string.js +103 -0
  39. package/cjs/type/keyof/keyof-type.js +48 -0
  40. package/cjs/type/keyof/keyof.js +38 -0
  41. package/cjs/type/literal/literal.js +41 -0
  42. package/cjs/type/mapped/mapped.js +47 -0
  43. package/cjs/type/modifiers/modifiers.js +78 -0
  44. package/cjs/type/never/never.js +40 -0
  45. package/cjs/type/not/not.js +41 -0
  46. package/cjs/type/null/null.js +40 -0
  47. package/cjs/type/number/number.js +40 -0
  48. package/cjs/type/object/object.js +47 -0
  49. package/cjs/type/omit/omit.js +75 -0
  50. package/cjs/type/optional/optional.js +37 -0
  51. package/cjs/type/parameters/parameters.js +37 -0
  52. package/cjs/type/partial/partial.js +73 -0
  53. package/cjs/type/pick/pick.js +66 -0
  54. package/cjs/type/promise/promise.js +42 -0
  55. package/cjs/type/readonly/readonly.js +37 -0
  56. package/cjs/type/readonly-optional/readonly-optional.js +37 -0
  57. package/cjs/type/record/record.js +97 -0
  58. package/cjs/type/recursive/recursive.js +48 -0
  59. package/cjs/type/ref/ref.js +45 -0
  60. package/cjs/type/regexp/regexp.js +38 -0
  61. package/cjs/type/required/required.js +72 -0
  62. package/cjs/type/rest/rest.js +41 -0
  63. package/cjs/type/return-type/return-type.js +36 -0
  64. package/cjs/type/schema/schema.js +30 -0
  65. package/cjs/type/string/string.js +36 -0
  66. package/cjs/type/symbol/symbol.js +36 -0
  67. package/cjs/type/template-literal/pattern.js +61 -0
  68. package/cjs/type/template-literal/syntax.js +87 -0
  69. package/cjs/type/template-literal/template-literal.js +43 -0
  70. package/cjs/type/template-literal/union.js +48 -0
  71. package/cjs/type/transform/transform.js +72 -0
  72. package/cjs/type/tuple/tuple.js +42 -0
  73. package/cjs/type/type/index.js +44 -0
  74. package/cjs/type/type/javascript.js +120 -0
  75. package/cjs/type/type/json.js +255 -0
  76. package/cjs/type/type/type.js +153 -0
  77. package/cjs/type/uint8array/uint8array.js +36 -0
  78. package/cjs/type/undefined/undefined.js +36 -0
  79. package/cjs/type/union/union.js +50 -0
  80. package/cjs/type/unknown/unknown.js +39 -0
  81. package/cjs/type/unsafe/unsafe.js +39 -0
  82. package/cjs/type/void/void.js +40 -0
  83. package/cjs/value/cast/cast.js +263 -0
  84. package/cjs/value/check/check.js +468 -0
  85. package/cjs/value/clean/clean.js +167 -0
  86. package/cjs/value/clone/clone.js +68 -0
  87. package/cjs/value/convert/convert.js +291 -0
  88. package/cjs/value/create/create.js +507 -0
  89. package/cjs/value/default/default.js +175 -0
  90. package/cjs/value/delta/delta.js +199 -0
  91. package/cjs/value/equal/equal.js +77 -0
  92. package/cjs/value/hash/hash.js +177 -0
  93. package/cjs/value/index.js +123 -0
  94. package/cjs/value/mutate/mutate.js +129 -0
  95. package/cjs/value/transform/decode.js +211 -0
  96. package/cjs/value/transform/encode.js +219 -0
  97. package/cjs/value/transform/has.js +146 -0
  98. package/cjs/value/value/value.js +125 -0
  99. package/esm/compiler/compiler.d.mts +56 -0
  100. package/esm/compiler/compiler.mjs +658 -0
  101. package/esm/compiler/index.d.mts +2 -0
  102. package/esm/compiler/index.mjs +29 -0
  103. package/esm/errors/errors.d.mts +89 -0
  104. package/esm/errors/errors.mjs +583 -0
  105. package/esm/errors/index.d.mts +1 -0
  106. package/esm/errors/index.mjs +28 -0
  107. package/esm/index.d.mts +71 -0
  108. package/esm/index.mjs +105 -0
  109. package/esm/system/errors.d.mts +14 -0
  110. package/esm/system/errors.mjs +188 -0
  111. package/esm/system/index.d.mts +4 -0
  112. package/esm/system/index.mjs +31 -0
  113. package/esm/system/policy.mjs +71 -0
  114. package/esm/system/system.d.mts +13 -0
  115. package/esm/system/system.mjs +66 -0
  116. package/esm/type/any/any.d.mts +8 -0
  117. package/esm/type/any/any.mjs +32 -0
  118. package/esm/type/any/index.d.mts +1 -0
  119. package/esm/type/any/index.mjs +28 -0
  120. package/esm/type/array/array.d.mts +25 -0
  121. package/esm/type/array/array.mjs +38 -0
  122. package/esm/type/array/index.d.mts +1 -0
  123. package/esm/type/array/index.mjs +28 -0
  124. package/esm/type/async-iterator/async-iterator.d.mts +11 -0
  125. package/esm/type/async-iterator/async-iterator.mjs +38 -0
  126. package/esm/type/async-iterator/index.d.mts +1 -0
  127. package/esm/type/async-iterator/index.mjs +28 -0
  128. package/esm/type/awaited/awaited.d.mts +12 -0
  129. package/esm/type/awaited/awaited.mjs +61 -0
  130. package/esm/type/awaited/index.d.mts +1 -0
  131. package/esm/type/awaited/index.mjs +28 -0
  132. package/esm/type/bigint/bigint.d.mts +16 -0
  133. package/esm/type/bigint/bigint.mjs +36 -0
  134. package/esm/type/bigint/index.d.mts +1 -0
  135. package/esm/type/bigint/index.mjs +28 -0
  136. package/esm/type/boolean/boolean.d.mts +9 -0
  137. package/esm/type/boolean/boolean.mjs +36 -0
  138. package/esm/type/boolean/index.d.mts +1 -0
  139. package/esm/type/boolean/index.mjs +28 -0
  140. package/esm/type/clone/index.d.mts +2 -0
  141. package/esm/type/clone/index.mjs +29 -0
  142. package/esm/type/clone/type.d.mts +5 -0
  143. package/esm/type/clone/type.mjs +36 -0
  144. package/esm/type/clone/value.mjs +54 -0
  145. package/esm/type/composite/composite.d.mts +15 -0
  146. package/esm/type/composite/composite.mjs +42 -0
  147. package/esm/type/composite/index.d.mts +1 -0
  148. package/esm/type/composite/index.mjs +28 -0
  149. package/esm/type/const/const.d.mts +30 -0
  150. package/esm/type/const/const.mjs +80 -0
  151. package/esm/type/const/index.d.mts +1 -0
  152. package/esm/type/const/index.mjs +28 -0
  153. package/esm/type/constructor/constructor.d.mts +17 -0
  154. package/esm/type/constructor/constructor.mjs +39 -0
  155. package/esm/type/constructor/index.d.mts +1 -0
  156. package/esm/type/constructor/index.mjs +28 -0
  157. package/esm/type/constructor-parameters/constructor-parameters.d.mts +7 -0
  158. package/esm/type/constructor-parameters/constructor-parameters.mjs +33 -0
  159. package/esm/type/constructor-parameters/index.d.mts +1 -0
  160. package/esm/type/constructor-parameters/index.mjs +28 -0
  161. package/esm/type/date/date.d.mts +21 -0
  162. package/esm/type/date/date.mjs +36 -0
  163. package/esm/type/date/index.d.mts +1 -0
  164. package/esm/type/date/index.mjs +28 -0
  165. package/esm/type/deref/deref.d.mts +24 -0
  166. package/esm/type/deref/deref.mjs +131 -0
  167. package/esm/type/deref/index.d.mts +1 -0
  168. package/esm/type/deref/index.mjs +28 -0
  169. package/esm/type/discard/discard.mjs +34 -0
  170. package/esm/type/discard/index.d.mts +1 -0
  171. package/esm/type/discard/index.mjs +28 -0
  172. package/esm/type/enum/enum.d.mts +14 -0
  173. package/esm/type/enum/enum.mjs +42 -0
  174. package/esm/type/enum/index.d.mts +1 -0
  175. package/esm/type/enum/index.mjs +28 -0
  176. package/esm/type/exclude/exclude.d.mts +21 -0
  177. package/esm/type/exclude/exclude.mjs +49 -0
  178. package/esm/type/exclude/index.d.mts +1 -0
  179. package/esm/type/exclude/index.mjs +28 -0
  180. package/esm/type/extends/extends-check.d.mts +9 -0
  181. package/esm/type/extends/extends-check.mjs +649 -0
  182. package/esm/type/extends/extends-undefined.d.mts +3 -0
  183. package/esm/type/extends/extends-undefined.mjs +47 -0
  184. package/esm/type/extends/extends.d.mts +9 -0
  185. package/esm/type/extends/extends.mjs +42 -0
  186. package/esm/type/extends/index.d.mts +3 -0
  187. package/esm/type/extends/index.mjs +30 -0
  188. package/esm/type/extract/extract.d.mts +20 -0
  189. package/esm/type/extract/extract.mjs +49 -0
  190. package/esm/type/extract/index.d.mts +1 -0
  191. package/esm/type/extract/index.mjs +28 -0
  192. package/esm/type/function/function.d.mts +17 -0
  193. package/esm/type/function/function.mjs +39 -0
  194. package/esm/type/function/index.d.mts +1 -0
  195. package/esm/type/function/index.mjs +28 -0
  196. package/esm/type/guard/index.d.mts +2 -0
  197. package/esm/type/guard/index.mjs +29 -0
  198. package/esm/type/guard/type.d.mts +130 -0
  199. package/esm/type/guard/type.mjs +469 -0
  200. package/esm/type/guard/value.mjs +83 -0
  201. package/esm/type/helpers/helpers.d.mts +42 -0
  202. package/esm/type/helpers/helpers.mjs +31 -0
  203. package/esm/type/helpers/index.d.mts +1 -0
  204. package/esm/type/helpers/index.mjs +28 -0
  205. package/esm/type/index.d.mts +70 -0
  206. package/esm/type/index.mjs +97 -0
  207. package/esm/type/indexed/index.d.mts +3 -0
  208. package/esm/type/indexed/index.mjs +30 -0
  209. package/esm/type/indexed/indexed-key.d.mts +17 -0
  210. package/esm/type/indexed/indexed-key.mjs +61 -0
  211. package/esm/type/indexed/indexed-type.d.mts +33 -0
  212. package/esm/type/indexed/indexed-type.mjs +102 -0
  213. package/esm/type/indexed/indexed.d.mts +8 -0
  214. package/esm/type/indexed/indexed.mjs +37 -0
  215. package/esm/type/instance-type/index.d.mts +1 -0
  216. package/esm/type/instance-type/index.mjs +28 -0
  217. package/esm/type/instance-type/instance-type.d.mts +5 -0
  218. package/esm/type/instance-type/instance-type.mjs +32 -0
  219. package/esm/type/integer/index.d.mts +1 -0
  220. package/esm/type/integer/index.mjs +28 -0
  221. package/esm/type/integer/integer.d.mts +16 -0
  222. package/esm/type/integer/integer.mjs +36 -0
  223. package/esm/type/intersect/index.d.mts +1 -0
  224. package/esm/type/intersect/index.mjs +28 -0
  225. package/esm/type/intersect/intersect.d.mts +22 -0
  226. package/esm/type/intersect/intersect.mjs +54 -0
  227. package/esm/type/intrinsic/index.d.mts +1 -0
  228. package/esm/type/intrinsic/index.mjs +28 -0
  229. package/esm/type/intrinsic/intrinsic.d.mts +27 -0
  230. package/esm/type/intrinsic/intrinsic.mjs +98 -0
  231. package/esm/type/iterator/index.d.mts +1 -0
  232. package/esm/type/iterator/index.mjs +28 -0
  233. package/esm/type/iterator/iterator.d.mts +11 -0
  234. package/esm/type/iterator/iterator.mjs +38 -0
  235. package/esm/type/keyof/index.d.mts +3 -0
  236. package/esm/type/keyof/index.mjs +30 -0
  237. package/esm/type/keyof/keyof-string.d.mts +30 -0
  238. package/esm/type/keyof/keyof-string.mjs +98 -0
  239. package/esm/type/keyof/keyof-type.d.mts +11 -0
  240. package/esm/type/keyof/keyof-type.mjs +44 -0
  241. package/esm/type/keyof/keyof.d.mts +5 -0
  242. package/esm/type/keyof/keyof.mjs +34 -0
  243. package/esm/type/literal/index.d.mts +1 -0
  244. package/esm/type/literal/index.mjs +28 -0
  245. package/esm/type/literal/literal.d.mts +10 -0
  246. package/esm/type/literal/literal.mjs +37 -0
  247. package/esm/type/mapped/index.d.mts +1 -0
  248. package/esm/type/mapped/index.mjs +28 -0
  249. package/esm/type/mapped/mapped.d.mts +26 -0
  250. package/esm/type/mapped/mapped.mjs +43 -0
  251. package/esm/type/modifiers/index.d.mts +1 -0
  252. package/esm/type/modifiers/index.mjs +28 -0
  253. package/esm/type/modifiers/modifiers.d.mts +18 -0
  254. package/esm/type/modifiers/modifiers.mjs +73 -0
  255. package/esm/type/never/index.d.mts +1 -0
  256. package/esm/type/never/index.mjs +28 -0
  257. package/esm/type/never/never.d.mts +9 -0
  258. package/esm/type/never/never.mjs +36 -0
  259. package/esm/type/not/index.d.mts +1 -0
  260. package/esm/type/not/index.mjs +28 -0
  261. package/esm/type/not/not.d.mts +10 -0
  262. package/esm/type/not/not.mjs +37 -0
  263. package/esm/type/null/index.d.mts +1 -0
  264. package/esm/type/null/index.mjs +28 -0
  265. package/esm/type/null/null.d.mts +9 -0
  266. package/esm/type/null/null.mjs +36 -0
  267. package/esm/type/number/index.d.mts +1 -0
  268. package/esm/type/number/index.mjs +28 -0
  269. package/esm/type/number/number.d.mts +16 -0
  270. package/esm/type/number/number.mjs +36 -0
  271. package/esm/type/object/index.d.mts +1 -0
  272. package/esm/type/object/index.mjs +28 -0
  273. package/esm/type/object/object.d.mts +44 -0
  274. package/esm/type/object/object.mjs +43 -0
  275. package/esm/type/omit/index.d.mts +1 -0
  276. package/esm/type/omit/index.mjs +28 -0
  277. package/esm/type/omit/omit.d.mts +21 -0
  278. package/esm/type/omit/omit.mjs +70 -0
  279. package/esm/type/operators/index.d.mts +1 -0
  280. package/esm/type/operators/index.mjs +28 -0
  281. package/esm/type/operators/operators.mjs +108 -0
  282. package/esm/type/optional/index.d.mts +1 -0
  283. package/esm/type/optional/index.mjs +28 -0
  284. package/esm/type/optional/optional.d.mts +7 -0
  285. package/esm/type/optional/optional.mjs +33 -0
  286. package/esm/type/parameters/index.d.mts +1 -0
  287. package/esm/type/parameters/index.mjs +28 -0
  288. package/esm/type/parameters/parameters.d.mts +7 -0
  289. package/esm/type/parameters/parameters.mjs +33 -0
  290. package/esm/type/partial/index.d.mts +1 -0
  291. package/esm/type/partial/index.mjs +28 -0
  292. package/esm/type/partial/partial.d.mts +23 -0
  293. package/esm/type/partial/partial.mjs +68 -0
  294. package/esm/type/patterns/index.d.mts +1 -0
  295. package/esm/type/patterns/index.mjs +28 -0
  296. package/esm/type/patterns/patterns.mjs +33 -0
  297. package/esm/type/pick/index.d.mts +1 -0
  298. package/esm/type/pick/index.mjs +28 -0
  299. package/esm/type/pick/pick.d.mts +21 -0
  300. package/esm/type/pick/pick.mjs +61 -0
  301. package/esm/type/promise/index.d.mts +1 -0
  302. package/esm/type/promise/index.mjs +28 -0
  303. package/esm/type/promise/promise.d.mts +11 -0
  304. package/esm/type/promise/promise.mjs +38 -0
  305. package/esm/type/readonly/index.d.mts +1 -0
  306. package/esm/type/readonly/index.mjs +28 -0
  307. package/esm/type/readonly/readonly.d.mts +7 -0
  308. package/esm/type/readonly/readonly.mjs +33 -0
  309. package/esm/type/readonly-optional/index.d.mts +1 -0
  310. package/esm/type/readonly-optional/index.mjs +28 -0
  311. package/esm/type/readonly-optional/readonly-optional.d.mts +6 -0
  312. package/esm/type/readonly-optional/readonly-optional.mjs +33 -0
  313. package/esm/type/record/index.d.mts +1 -0
  314. package/esm/type/record/index.mjs +28 -0
  315. package/esm/type/record/record.d.mts +55 -0
  316. package/esm/type/record/record.mjs +92 -0
  317. package/esm/type/recursive/index.d.mts +1 -0
  318. package/esm/type/recursive/index.mjs +28 -0
  319. package/esm/type/recursive/recursive.d.mts +15 -0
  320. package/esm/type/recursive/recursive.mjs +44 -0
  321. package/esm/type/ref/index.d.mts +1 -0
  322. package/esm/type/ref/index.mjs +28 -0
  323. package/esm/type/ref/ref.d.mts +12 -0
  324. package/esm/type/ref/ref.mjs +41 -0
  325. package/esm/type/regexp/index.d.mts +1 -0
  326. package/esm/type/regexp/index.mjs +28 -0
  327. package/esm/type/regexp/regexp.d.mts +7 -0
  328. package/esm/type/regexp/regexp.mjs +34 -0
  329. package/esm/type/registry/format.mjs +53 -0
  330. package/esm/type/registry/index.d.mts +2 -0
  331. package/esm/type/registry/index.mjs +29 -0
  332. package/esm/type/registry/type.mjs +53 -0
  333. package/esm/type/required/index.d.mts +1 -0
  334. package/esm/type/required/index.mjs +28 -0
  335. package/esm/type/required/required.d.mts +23 -0
  336. package/esm/type/required/required.mjs +67 -0
  337. package/esm/type/rest/index.d.mts +1 -0
  338. package/esm/type/rest/index.mjs +28 -0
  339. package/esm/type/rest/rest.d.mts +10 -0
  340. package/esm/type/rest/rest.mjs +36 -0
  341. package/esm/type/return-type/index.d.mts +1 -0
  342. package/esm/type/return-type/index.mjs +28 -0
  343. package/esm/type/return-type/return-type.d.mts +5 -0
  344. package/esm/type/return-type/return-type.mjs +32 -0
  345. package/esm/type/schema/anyschema.d.mts +32 -0
  346. package/esm/type/schema/anyschema.mjs +28 -0
  347. package/esm/type/schema/index.d.mts +2 -0
  348. package/esm/type/schema/index.mjs +29 -0
  349. package/esm/type/schema/schema.d.mts +29 -0
  350. package/esm/type/schema/schema.mjs +28 -0
  351. package/esm/type/static/index.d.mts +1 -0
  352. package/esm/type/static/index.mjs +28 -0
  353. package/esm/type/static/static.d.mts +34 -0
  354. package/esm/type/static/static.mjs +28 -0
  355. package/esm/type/strict/index.d.mts +1 -0
  356. package/esm/type/strict/index.mjs +28 -0
  357. package/esm/type/strict/strict.d.mts +3 -0
  358. package/esm/type/strict/strict.mjs +31 -0
  359. package/esm/type/string/index.d.mts +1 -0
  360. package/esm/type/string/index.mjs +28 -0
  361. package/esm/type/string/string.d.mts +25 -0
  362. package/esm/type/string/string.mjs +32 -0
  363. package/esm/type/symbol/index.d.mts +1 -0
  364. package/esm/type/symbol/index.mjs +28 -0
  365. package/esm/type/symbol/symbol.d.mts +10 -0
  366. package/esm/type/symbol/symbol.mjs +32 -0
  367. package/esm/type/symbols/index.d.mts +1 -0
  368. package/esm/type/symbols/index.mjs +28 -0
  369. package/esm/type/symbols/symbols.mjs +37 -0
  370. package/esm/type/template-literal/finite.d.mts +16 -0
  371. package/esm/type/template-literal/finite.mjs +66 -0
  372. package/esm/type/template-literal/generate.d.mts +15 -0
  373. package/esm/type/template-literal/generate.mjs +69 -0
  374. package/esm/type/template-literal/index.d.mts +7 -0
  375. package/esm/type/template-literal/index.mjs +34 -0
  376. package/esm/type/template-literal/parser.mjs +169 -0
  377. package/esm/type/template-literal/pattern.d.mts +4 -0
  378. package/esm/type/template-literal/pattern.mjs +56 -0
  379. package/esm/type/template-literal/syntax.d.mts +20 -0
  380. package/esm/type/template-literal/syntax.mjs +83 -0
  381. package/esm/type/template-literal/template-literal.d.mts +30 -0
  382. package/esm/type/template-literal/template-literal.mjs +39 -0
  383. package/esm/type/template-literal/union.d.mts +7 -0
  384. package/esm/type/template-literal/union.mjs +44 -0
  385. package/esm/type/transform/index.d.mts +1 -0
  386. package/esm/type/transform/index.mjs +28 -0
  387. package/esm/type/transform/transform.d.mts +29 -0
  388. package/esm/type/transform/transform.mjs +69 -0
  389. package/esm/type/tuple/index.d.mts +1 -0
  390. package/esm/type/tuple/index.mjs +28 -0
  391. package/esm/type/tuple/tuple.d.mts +15 -0
  392. package/esm/type/tuple/tuple.mjs +38 -0
  393. package/esm/type/type/index.d.mts +6 -0
  394. package/esm/type/type/index.mjs +40 -0
  395. package/esm/type/type/javascript.d.mts +58 -0
  396. package/esm/type/type/javascript.mjs +116 -0
  397. package/esm/type/type/json.d.mts +139 -0
  398. package/esm/type/type/json.mjs +251 -0
  399. package/esm/type/type/type.d.mts +58 -0
  400. package/esm/type/type/type.mjs +88 -0
  401. package/esm/type/uint8array/index.d.mts +1 -0
  402. package/esm/type/uint8array/index.mjs +28 -0
  403. package/esm/type/uint8array/uint8array.d.mts +13 -0
  404. package/esm/type/uint8array/uint8array.mjs +32 -0
  405. package/esm/type/undefined/index.d.mts +1 -0
  406. package/esm/type/undefined/index.mjs +28 -0
  407. package/esm/type/undefined/undefined.d.mts +9 -0
  408. package/esm/type/undefined/undefined.mjs +32 -0
  409. package/esm/type/union/index.d.mts +1 -0
  410. package/esm/type/union/index.mjs +28 -0
  411. package/esm/type/union/union.d.mts +16 -0
  412. package/esm/type/union/union.mjs +45 -0
  413. package/esm/type/unknown/index.d.mts +1 -0
  414. package/esm/type/unknown/index.mjs +28 -0
  415. package/esm/type/unknown/unknown.d.mts +8 -0
  416. package/esm/type/unknown/unknown.mjs +35 -0
  417. package/esm/type/unsafe/index.d.mts +1 -0
  418. package/esm/type/unsafe/index.mjs +28 -0
  419. package/esm/type/unsafe/unsafe.d.mts +11 -0
  420. package/esm/type/unsafe/unsafe.mjs +35 -0
  421. package/esm/type/void/index.d.mts +1 -0
  422. package/esm/type/void/index.mjs +28 -0
  423. package/esm/type/void/void.d.mts +9 -0
  424. package/esm/type/void/void.mjs +36 -0
  425. package/esm/value/cast/cast.d.mts +23 -0
  426. package/esm/value/cast/cast.mjs +260 -0
  427. package/esm/value/cast/index.d.mts +1 -0
  428. package/esm/value/cast/index.mjs +28 -0
  429. package/esm/value/check/check.d.mts +10 -0
  430. package/esm/value/check/check.mjs +464 -0
  431. package/esm/value/check/index.d.mts +1 -0
  432. package/esm/value/check/index.mjs +28 -0
  433. package/esm/value/clean/clean.d.mts +5 -0
  434. package/esm/value/clean/clean.mjs +163 -0
  435. package/esm/value/clean/index.d.mts +1 -0
  436. package/esm/value/clean/index.mjs +28 -0
  437. package/esm/value/clone/clone.mjs +64 -0
  438. package/esm/value/clone/index.d.mts +1 -0
  439. package/esm/value/clone/index.mjs +28 -0
  440. package/esm/value/convert/convert.d.mts +9 -0
  441. package/esm/value/convert/convert.mjs +287 -0
  442. package/esm/value/convert/index.d.mts +1 -0
  443. package/esm/value/convert/index.mjs +28 -0
  444. package/esm/value/create/create.d.mts +31 -0
  445. package/esm/value/create/create.mjs +504 -0
  446. package/esm/value/create/index.d.mts +1 -0
  447. package/esm/value/create/index.mjs +28 -0
  448. package/esm/value/default/default.d.mts +5 -0
  449. package/esm/value/default/default.mjs +171 -0
  450. package/esm/value/default/index.d.mts +1 -0
  451. package/esm/value/default/index.mjs +28 -0
  452. package/esm/value/delta/delta.d.mts +41 -0
  453. package/esm/value/delta/delta.mjs +194 -0
  454. package/esm/value/delta/index.d.mts +1 -0
  455. package/esm/value/delta/index.mjs +28 -0
  456. package/esm/value/deref/deref.d.mts +9 -0
  457. package/esm/value/deref/deref.mjs +41 -0
  458. package/esm/value/deref/index.d.mts +1 -0
  459. package/esm/value/deref/index.mjs +28 -0
  460. package/esm/value/equal/equal.mjs +73 -0
  461. package/esm/value/equal/index.d.mts +1 -0
  462. package/esm/value/equal/index.mjs +28 -0
  463. package/esm/value/guard/guard.mjs +123 -0
  464. package/esm/value/guard/index.d.mts +1 -0
  465. package/esm/value/guard/index.mjs +28 -0
  466. package/esm/value/hash/hash.mjs +173 -0
  467. package/esm/value/hash/index.d.mts +1 -0
  468. package/esm/value/hash/index.mjs +28 -0
  469. package/esm/value/index.d.mts +18 -0
  470. package/esm/value/index.mjs +57 -0
  471. package/esm/value/mutate/index.d.mts +1 -0
  472. package/esm/value/mutate/index.mjs +28 -0
  473. package/esm/value/mutate/mutate.mjs +123 -0
  474. package/esm/value/pointer/index.d.mts +1 -0
  475. package/esm/value/pointer/index.mjs +28 -0
  476. package/esm/value/pointer/pointer.mjs +146 -0
  477. package/esm/value/transform/decode.d.mts +19 -0
  478. package/esm/value/transform/decode.mjs +210 -0
  479. package/esm/value/transform/encode.d.mts +20 -0
  480. package/esm/value/transform/encode.mjs +218 -0
  481. package/esm/value/transform/has.d.mts +3 -0
  482. package/esm/value/transform/has.mjs +142 -0
  483. package/esm/value/transform/index.d.mts +3 -0
  484. package/esm/value/transform/index.mjs +30 -0
  485. package/esm/value/value/index.d.mts +1 -0
  486. package/esm/value/value/index.mjs +28 -0
  487. package/esm/value/value/value.d.mts +53 -0
  488. package/esm/value/value/value.mjs +107 -0
  489. package/package.json +32 -11
  490. package/compiler/compiler.d.ts +0 -56
  491. package/compiler/compiler.js +0 -657
  492. package/compiler/index.d.ts +0 -2
  493. package/compiler/index.js +0 -48
  494. package/errors/errors.d.ts +0 -89
  495. package/errors/errors.js +0 -588
  496. package/errors/index.d.ts +0 -1
  497. package/index.d.ts +0 -71
  498. package/index.js +0 -205
  499. package/system/errors.d.ts +0 -14
  500. package/system/errors.js +0 -192
  501. package/system/index.d.ts +0 -4
  502. package/system/index.js +0 -41
  503. package/system/policy.js +0 -74
  504. package/system/system.d.ts +0 -13
  505. package/system/system.js +0 -71
  506. package/type/any/any.d.ts +0 -8
  507. package/type/any/any.js +0 -36
  508. package/type/any/index.d.ts +0 -1
  509. package/type/array/array.d.ts +0 -25
  510. package/type/array/array.js +0 -42
  511. package/type/array/index.d.ts +0 -1
  512. package/type/async-iterator/async-iterator.d.ts +0 -11
  513. package/type/async-iterator/async-iterator.js +0 -42
  514. package/type/async-iterator/index.d.ts +0 -1
  515. package/type/awaited/awaited.d.ts +0 -12
  516. package/type/awaited/awaited.js +0 -66
  517. package/type/awaited/index.d.ts +0 -1
  518. package/type/bigint/bigint.d.ts +0 -16
  519. package/type/bigint/bigint.js +0 -40
  520. package/type/bigint/index.d.ts +0 -1
  521. package/type/boolean/boolean.d.ts +0 -9
  522. package/type/boolean/boolean.js +0 -40
  523. package/type/boolean/index.d.ts +0 -1
  524. package/type/clone/index.d.ts +0 -2
  525. package/type/clone/type.d.ts +0 -5
  526. package/type/clone/type.js +0 -41
  527. package/type/composite/composite.d.ts +0 -15
  528. package/type/composite/composite.js +0 -47
  529. package/type/composite/index.d.ts +0 -1
  530. package/type/const/const.d.ts +0 -30
  531. package/type/const/const.js +0 -84
  532. package/type/const/index.d.ts +0 -1
  533. package/type/constructor/constructor.d.ts +0 -17
  534. package/type/constructor/constructor.js +0 -43
  535. package/type/constructor/index.d.ts +0 -1
  536. package/type/constructor-parameters/constructor-parameters.d.ts +0 -7
  537. package/type/constructor-parameters/constructor-parameters.js +0 -37
  538. package/type/constructor-parameters/index.d.ts +0 -1
  539. package/type/date/date.d.ts +0 -21
  540. package/type/date/date.js +0 -40
  541. package/type/date/index.d.ts +0 -1
  542. package/type/deref/deref.d.ts +0 -24
  543. package/type/deref/deref.js +0 -136
  544. package/type/deref/index.d.ts +0 -1
  545. package/type/discard/index.d.ts +0 -1
  546. package/type/enum/enum.d.ts +0 -14
  547. package/type/enum/enum.js +0 -46
  548. package/type/enum/index.d.ts +0 -1
  549. package/type/exclude/exclude.d.ts +0 -21
  550. package/type/exclude/exclude.js +0 -54
  551. package/type/exclude/index.d.ts +0 -1
  552. package/type/extends/extends-check.d.ts +0 -9
  553. package/type/extends/extends-check.js +0 -654
  554. package/type/extends/extends-undefined.d.ts +0 -3
  555. package/type/extends/extends-undefined.js +0 -51
  556. package/type/extends/extends.d.ts +0 -9
  557. package/type/extends/extends.js +0 -47
  558. package/type/extends/index.d.ts +0 -3
  559. package/type/extract/extract.d.ts +0 -20
  560. package/type/extract/extract.js +0 -54
  561. package/type/extract/index.d.ts +0 -1
  562. package/type/function/function.d.ts +0 -17
  563. package/type/function/function.js +0 -43
  564. package/type/function/index.d.ts +0 -1
  565. package/type/guard/index.d.ts +0 -2
  566. package/type/guard/type.d.ts +0 -130
  567. package/type/guard/type.js +0 -515
  568. package/type/helpers/helpers.d.ts +0 -42
  569. package/type/helpers/index.d.ts +0 -1
  570. package/type/index.d.ts +0 -70
  571. package/type/indexed/index.d.ts +0 -3
  572. package/type/indexed/indexed-key.d.ts +0 -17
  573. package/type/indexed/indexed-key.js +0 -65
  574. package/type/indexed/indexed-type.d.ts +0 -33
  575. package/type/indexed/indexed-type.js +0 -106
  576. package/type/indexed/indexed.d.ts +0 -8
  577. package/type/indexed/indexed.js +0 -41
  578. package/type/instance-type/index.d.ts +0 -1
  579. package/type/instance-type/instance-type.d.ts +0 -5
  580. package/type/instance-type/instance-type.js +0 -36
  581. package/type/integer/index.d.ts +0 -1
  582. package/type/integer/integer.d.ts +0 -16
  583. package/type/integer/integer.js +0 -40
  584. package/type/intersect/index.d.ts +0 -1
  585. package/type/intersect/intersect.d.ts +0 -22
  586. package/type/intersect/intersect.js +0 -59
  587. package/type/intrinsic/index.d.ts +0 -1
  588. package/type/intrinsic/intrinsic.d.ts +0 -27
  589. package/type/intrinsic/intrinsic.js +0 -106
  590. package/type/iterator/index.d.ts +0 -1
  591. package/type/iterator/iterator.d.ts +0 -11
  592. package/type/iterator/iterator.js +0 -42
  593. package/type/keyof/index.d.ts +0 -3
  594. package/type/keyof/keyof-string.d.ts +0 -30
  595. package/type/keyof/keyof-string.js +0 -103
  596. package/type/keyof/keyof-type.d.ts +0 -11
  597. package/type/keyof/keyof-type.js +0 -48
  598. package/type/keyof/keyof.d.ts +0 -5
  599. package/type/keyof/keyof.js +0 -38
  600. package/type/literal/index.d.ts +0 -1
  601. package/type/literal/literal.d.ts +0 -10
  602. package/type/literal/literal.js +0 -41
  603. package/type/mapped/index.d.ts +0 -1
  604. package/type/mapped/mapped.d.ts +0 -26
  605. package/type/mapped/mapped.js +0 -47
  606. package/type/modifiers/index.d.ts +0 -1
  607. package/type/modifiers/modifiers.d.ts +0 -18
  608. package/type/modifiers/modifiers.js +0 -78
  609. package/type/never/index.d.ts +0 -1
  610. package/type/never/never.d.ts +0 -9
  611. package/type/never/never.js +0 -40
  612. package/type/not/index.d.ts +0 -1
  613. package/type/not/not.d.ts +0 -10
  614. package/type/not/not.js +0 -41
  615. package/type/null/index.d.ts +0 -1
  616. package/type/null/null.d.ts +0 -9
  617. package/type/null/null.js +0 -40
  618. package/type/number/index.d.ts +0 -1
  619. package/type/number/number.d.ts +0 -16
  620. package/type/number/number.js +0 -40
  621. package/type/object/index.d.ts +0 -1
  622. package/type/object/object.d.ts +0 -44
  623. package/type/object/object.js +0 -47
  624. package/type/omit/index.d.ts +0 -1
  625. package/type/omit/omit.d.ts +0 -21
  626. package/type/omit/omit.js +0 -75
  627. package/type/operators/index.d.ts +0 -1
  628. package/type/optional/index.d.ts +0 -1
  629. package/type/optional/optional.d.ts +0 -7
  630. package/type/optional/optional.js +0 -37
  631. package/type/parameters/index.d.ts +0 -1
  632. package/type/parameters/parameters.d.ts +0 -7
  633. package/type/parameters/parameters.js +0 -37
  634. package/type/partial/index.d.ts +0 -1
  635. package/type/partial/partial.d.ts +0 -23
  636. package/type/partial/partial.js +0 -73
  637. package/type/patterns/index.d.ts +0 -1
  638. package/type/pick/index.d.ts +0 -1
  639. package/type/pick/pick.d.ts +0 -21
  640. package/type/pick/pick.js +0 -66
  641. package/type/promise/index.d.ts +0 -1
  642. package/type/promise/promise.d.ts +0 -11
  643. package/type/promise/promise.js +0 -42
  644. package/type/readonly/index.d.ts +0 -1
  645. package/type/readonly/readonly.d.ts +0 -7
  646. package/type/readonly/readonly.js +0 -37
  647. package/type/readonly-optional/index.d.ts +0 -1
  648. package/type/readonly-optional/readonly-optional.d.ts +0 -6
  649. package/type/readonly-optional/readonly-optional.js +0 -37
  650. package/type/record/index.d.ts +0 -1
  651. package/type/record/record.d.ts +0 -55
  652. package/type/record/record.js +0 -97
  653. package/type/recursive/index.d.ts +0 -1
  654. package/type/recursive/recursive.d.ts +0 -15
  655. package/type/recursive/recursive.js +0 -48
  656. package/type/ref/index.d.ts +0 -1
  657. package/type/ref/ref.d.ts +0 -12
  658. package/type/ref/ref.js +0 -45
  659. package/type/regexp/index.d.ts +0 -1
  660. package/type/regexp/regexp.d.ts +0 -7
  661. package/type/regexp/regexp.js +0 -38
  662. package/type/registry/index.d.ts +0 -2
  663. package/type/required/index.d.ts +0 -1
  664. package/type/required/required.d.ts +0 -23
  665. package/type/required/required.js +0 -72
  666. package/type/rest/index.d.ts +0 -1
  667. package/type/rest/rest.d.ts +0 -10
  668. package/type/rest/rest.js +0 -41
  669. package/type/return-type/index.d.ts +0 -1
  670. package/type/return-type/return-type.d.ts +0 -5
  671. package/type/return-type/return-type.js +0 -36
  672. package/type/schema/anyschema.d.ts +0 -32
  673. package/type/schema/index.d.ts +0 -2
  674. package/type/schema/schema.d.ts +0 -29
  675. package/type/schema/schema.js +0 -30
  676. package/type/static/index.d.ts +0 -1
  677. package/type/static/static.d.ts +0 -34
  678. package/type/strict/index.d.ts +0 -1
  679. package/type/strict/strict.d.ts +0 -3
  680. package/type/string/index.d.ts +0 -1
  681. package/type/string/string.d.ts +0 -25
  682. package/type/string/string.js +0 -36
  683. package/type/symbol/index.d.ts +0 -1
  684. package/type/symbol/symbol.d.ts +0 -10
  685. package/type/symbol/symbol.js +0 -36
  686. package/type/symbols/index.d.ts +0 -1
  687. package/type/template-literal/finite.d.ts +0 -16
  688. package/type/template-literal/generate.d.ts +0 -15
  689. package/type/template-literal/index.d.ts +0 -7
  690. package/type/template-literal/pattern.d.ts +0 -4
  691. package/type/template-literal/pattern.js +0 -61
  692. package/type/template-literal/syntax.d.ts +0 -20
  693. package/type/template-literal/syntax.js +0 -87
  694. package/type/template-literal/template-literal.d.ts +0 -30
  695. package/type/template-literal/template-literal.js +0 -43
  696. package/type/template-literal/union.d.ts +0 -7
  697. package/type/template-literal/union.js +0 -48
  698. package/type/transform/index.d.ts +0 -1
  699. package/type/transform/transform.d.ts +0 -29
  700. package/type/transform/transform.js +0 -72
  701. package/type/tuple/index.d.ts +0 -1
  702. package/type/tuple/tuple.d.ts +0 -15
  703. package/type/tuple/tuple.js +0 -42
  704. package/type/type/index.d.ts +0 -6
  705. package/type/type/index.js +0 -44
  706. package/type/type/javascript.d.ts +0 -58
  707. package/type/type/javascript.js +0 -120
  708. package/type/type/json.d.ts +0 -139
  709. package/type/type/json.js +0 -255
  710. package/type/type/type.d.ts +0 -58
  711. package/type/type/type.js +0 -153
  712. package/type/uint8array/index.d.ts +0 -1
  713. package/type/uint8array/uint8array.d.ts +0 -13
  714. package/type/uint8array/uint8array.js +0 -36
  715. package/type/undefined/index.d.ts +0 -1
  716. package/type/undefined/undefined.d.ts +0 -9
  717. package/type/undefined/undefined.js +0 -36
  718. package/type/union/index.d.ts +0 -1
  719. package/type/union/union.d.ts +0 -16
  720. package/type/union/union.js +0 -50
  721. package/type/unknown/index.d.ts +0 -1
  722. package/type/unknown/unknown.d.ts +0 -8
  723. package/type/unknown/unknown.js +0 -39
  724. package/type/unsafe/index.d.ts +0 -1
  725. package/type/unsafe/unsafe.d.ts +0 -11
  726. package/type/unsafe/unsafe.js +0 -39
  727. package/type/void/index.d.ts +0 -1
  728. package/type/void/void.d.ts +0 -9
  729. package/type/void/void.js +0 -40
  730. package/value/cast/cast.d.ts +0 -23
  731. package/value/cast/cast.js +0 -263
  732. package/value/cast/index.d.ts +0 -1
  733. package/value/check/check.d.ts +0 -10
  734. package/value/check/check.js +0 -468
  735. package/value/check/index.d.ts +0 -1
  736. package/value/clean/clean.d.ts +0 -5
  737. package/value/clean/clean.js +0 -167
  738. package/value/clean/index.d.ts +0 -1
  739. package/value/clone/clone.js +0 -68
  740. package/value/clone/index.d.ts +0 -1
  741. package/value/convert/convert.d.ts +0 -9
  742. package/value/convert/convert.js +0 -291
  743. package/value/convert/index.d.ts +0 -1
  744. package/value/create/create.d.ts +0 -31
  745. package/value/create/create.js +0 -507
  746. package/value/create/index.d.ts +0 -1
  747. package/value/default/default.d.ts +0 -5
  748. package/value/default/default.js +0 -175
  749. package/value/default/index.d.ts +0 -1
  750. package/value/delta/delta.d.ts +0 -41
  751. package/value/delta/delta.js +0 -199
  752. package/value/delta/index.d.ts +0 -1
  753. package/value/deref/deref.d.ts +0 -9
  754. package/value/deref/index.d.ts +0 -1
  755. package/value/equal/equal.js +0 -77
  756. package/value/equal/index.d.ts +0 -1
  757. package/value/guard/index.d.ts +0 -1
  758. package/value/hash/hash.js +0 -177
  759. package/value/hash/index.d.ts +0 -1
  760. package/value/index.d.ts +0 -18
  761. package/value/index.js +0 -123
  762. package/value/mutate/index.d.ts +0 -1
  763. package/value/mutate/mutate.js +0 -129
  764. package/value/pointer/index.d.ts +0 -1
  765. package/value/transform/decode.d.ts +0 -19
  766. package/value/transform/decode.js +0 -211
  767. package/value/transform/encode.d.ts +0 -20
  768. package/value/transform/encode.js +0 -219
  769. package/value/transform/has.d.ts +0 -3
  770. package/value/transform/has.js +0 -146
  771. package/value/transform/index.d.ts +0 -3
  772. package/value/value/index.d.ts +0 -1
  773. package/value/value/value.d.ts +0 -53
  774. package/value/value/value.js +0 -125
  775. /package/{errors → cjs/errors}/index.js +0 -0
  776. /package/{type → cjs/type}/any/index.js +0 -0
  777. /package/{type → cjs/type}/array/index.js +0 -0
  778. /package/{type → cjs/type}/async-iterator/index.js +0 -0
  779. /package/{type → cjs/type}/awaited/index.js +0 -0
  780. /package/{type → cjs/type}/bigint/index.js +0 -0
  781. /package/{type → cjs/type}/boolean/index.js +0 -0
  782. /package/{type → cjs/type}/clone/index.js +0 -0
  783. /package/{type → cjs/type}/clone/value.js +0 -0
  784. /package/{type → cjs/type}/composite/index.js +0 -0
  785. /package/{type → cjs/type}/const/index.js +0 -0
  786. /package/{type → cjs/type}/constructor/index.js +0 -0
  787. /package/{type → cjs/type}/constructor-parameters/index.js +0 -0
  788. /package/{type → cjs/type}/date/index.js +0 -0
  789. /package/{type → cjs/type}/deref/index.js +0 -0
  790. /package/{type → cjs/type}/discard/discard.js +0 -0
  791. /package/{type → cjs/type}/discard/index.js +0 -0
  792. /package/{type → cjs/type}/enum/index.js +0 -0
  793. /package/{type → cjs/type}/exclude/index.js +0 -0
  794. /package/{type → cjs/type}/extends/index.js +0 -0
  795. /package/{type → cjs/type}/extract/index.js +0 -0
  796. /package/{type → cjs/type}/function/index.js +0 -0
  797. /package/{type → cjs/type}/guard/index.js +0 -0
  798. /package/{type → cjs/type}/guard/value.js +0 -0
  799. /package/{type → cjs/type}/helpers/helpers.js +0 -0
  800. /package/{type → cjs/type}/helpers/index.js +0 -0
  801. /package/{type → cjs/type}/index.js +0 -0
  802. /package/{type → cjs/type}/indexed/index.js +0 -0
  803. /package/{type → cjs/type}/instance-type/index.js +0 -0
  804. /package/{type → cjs/type}/integer/index.js +0 -0
  805. /package/{type → cjs/type}/intersect/index.js +0 -0
  806. /package/{type → cjs/type}/intrinsic/index.js +0 -0
  807. /package/{type → cjs/type}/iterator/index.js +0 -0
  808. /package/{type → cjs/type}/keyof/index.js +0 -0
  809. /package/{type → cjs/type}/literal/index.js +0 -0
  810. /package/{type → cjs/type}/mapped/index.js +0 -0
  811. /package/{type → cjs/type}/modifiers/index.js +0 -0
  812. /package/{type → cjs/type}/never/index.js +0 -0
  813. /package/{type → cjs/type}/not/index.js +0 -0
  814. /package/{type → cjs/type}/null/index.js +0 -0
  815. /package/{type → cjs/type}/number/index.js +0 -0
  816. /package/{type → cjs/type}/object/index.js +0 -0
  817. /package/{type → cjs/type}/omit/index.js +0 -0
  818. /package/{type → cjs/type}/operators/index.js +0 -0
  819. /package/{type → cjs/type}/operators/operators.js +0 -0
  820. /package/{type → cjs/type}/optional/index.js +0 -0
  821. /package/{type → cjs/type}/parameters/index.js +0 -0
  822. /package/{type → cjs/type}/partial/index.js +0 -0
  823. /package/{type → cjs/type}/patterns/index.js +0 -0
  824. /package/{type → cjs/type}/patterns/patterns.js +0 -0
  825. /package/{type → cjs/type}/pick/index.js +0 -0
  826. /package/{type → cjs/type}/promise/index.js +0 -0
  827. /package/{type → cjs/type}/readonly/index.js +0 -0
  828. /package/{type → cjs/type}/readonly-optional/index.js +0 -0
  829. /package/{type → cjs/type}/record/index.js +0 -0
  830. /package/{type → cjs/type}/recursive/index.js +0 -0
  831. /package/{type → cjs/type}/ref/index.js +0 -0
  832. /package/{type → cjs/type}/regexp/index.js +0 -0
  833. /package/{type → cjs/type}/registry/format.js +0 -0
  834. /package/{type → cjs/type}/registry/index.js +0 -0
  835. /package/{type → cjs/type}/registry/type.js +0 -0
  836. /package/{type → cjs/type}/required/index.js +0 -0
  837. /package/{type → cjs/type}/rest/index.js +0 -0
  838. /package/{type → cjs/type}/return-type/index.js +0 -0
  839. /package/{type → cjs/type}/schema/anyschema.js +0 -0
  840. /package/{type → cjs/type}/schema/index.js +0 -0
  841. /package/{type → cjs/type}/static/index.js +0 -0
  842. /package/{type → cjs/type}/static/static.js +0 -0
  843. /package/{type → cjs/type}/strict/index.js +0 -0
  844. /package/{type → cjs/type}/strict/strict.js +0 -0
  845. /package/{type → cjs/type}/string/index.js +0 -0
  846. /package/{type → cjs/type}/symbol/index.js +0 -0
  847. /package/{type → cjs/type}/symbols/index.js +0 -0
  848. /package/{type → cjs/type}/symbols/symbols.js +0 -0
  849. /package/{type → cjs/type}/template-literal/finite.js +0 -0
  850. /package/{type → cjs/type}/template-literal/generate.js +0 -0
  851. /package/{type → cjs/type}/template-literal/index.js +0 -0
  852. /package/{type → cjs/type}/template-literal/parser.js +0 -0
  853. /package/{type → cjs/type}/transform/index.js +0 -0
  854. /package/{type → cjs/type}/tuple/index.js +0 -0
  855. /package/{type → cjs/type}/uint8array/index.js +0 -0
  856. /package/{type → cjs/type}/undefined/index.js +0 -0
  857. /package/{type → cjs/type}/union/index.js +0 -0
  858. /package/{type → cjs/type}/unknown/index.js +0 -0
  859. /package/{type → cjs/type}/unsafe/index.js +0 -0
  860. /package/{type → cjs/type}/void/index.js +0 -0
  861. /package/{value → cjs/value}/cast/index.js +0 -0
  862. /package/{value → cjs/value}/check/index.js +0 -0
  863. /package/{value → cjs/value}/clean/index.js +0 -0
  864. /package/{value → cjs/value}/clone/index.js +0 -0
  865. /package/{value → cjs/value}/convert/index.js +0 -0
  866. /package/{value → cjs/value}/create/index.js +0 -0
  867. /package/{value → cjs/value}/default/index.js +0 -0
  868. /package/{value → cjs/value}/delta/index.js +0 -0
  869. /package/{value → cjs/value}/deref/deref.js +0 -0
  870. /package/{value → cjs/value}/deref/index.js +0 -0
  871. /package/{value → cjs/value}/equal/index.js +0 -0
  872. /package/{value → cjs/value}/guard/guard.js +0 -0
  873. /package/{value → cjs/value}/guard/index.js +0 -0
  874. /package/{value → cjs/value}/hash/index.js +0 -0
  875. /package/{value → cjs/value}/mutate/index.js +0 -0
  876. /package/{value → cjs/value}/pointer/index.js +0 -0
  877. /package/{value → cjs/value}/pointer/pointer.js +0 -0
  878. /package/{value → cjs/value}/transform/index.js +0 -0
  879. /package/{value → cjs/value}/value/index.js +0 -0
  880. /package/{system/policy.d.ts → esm/system/policy.d.mts} +0 -0
  881. /package/{type/clone/value.d.ts → esm/type/clone/value.d.mts} +0 -0
  882. /package/{type/discard/discard.d.ts → esm/type/discard/discard.d.mts} +0 -0
  883. /package/{type/guard/value.d.ts → esm/type/guard/value.d.mts} +0 -0
  884. /package/{type/operators/operators.d.ts → esm/type/operators/operators.d.mts} +0 -0
  885. /package/{type/patterns/patterns.d.ts → esm/type/patterns/patterns.d.mts} +0 -0
  886. /package/{type/registry/format.d.ts → esm/type/registry/format.d.mts} +0 -0
  887. /package/{type/registry/type.d.ts → esm/type/registry/type.d.mts} +0 -0
  888. /package/{type/symbols/symbols.d.ts → esm/type/symbols/symbols.d.mts} +0 -0
  889. /package/{type/template-literal/parser.d.ts → esm/type/template-literal/parser.d.mts} +0 -0
  890. /package/{value/clone/clone.d.ts → esm/value/clone/clone.d.mts} +0 -0
  891. /package/{value/equal/equal.d.ts → esm/value/equal/equal.d.mts} +0 -0
  892. /package/{value/guard/guard.d.ts → esm/value/guard/guard.d.mts} +0 -0
  893. /package/{value/hash/hash.d.ts → esm/value/hash/hash.d.mts} +0 -0
  894. /package/{value/mutate/mutate.d.ts → esm/value/mutate/mutate.d.mts} +0 -0
  895. /package/{value/pointer/pointer.d.ts → esm/value/pointer/pointer.d.mts} +0 -0
package/index.js DELETED
@@ -1,205 +0,0 @@
1
- "use strict";
2
- /*--------------------------------------------------------------------------
3
-
4
- @sinclair/typebox
5
-
6
- The MIT License (MIT)
7
-
8
- Copyright (c) 2017-2023 Haydn Paterson (sinclair) <haydn.developer@gmail.com>
9
-
10
- Permission is hereby granted, free of charge, to any person obtaining a copy
11
- of this software and associated documentation files (the "Software"), to deal
12
- in the Software without restriction, including without limitation the rights
13
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
- copies of the Software, and to permit persons to whom the Software is
15
- furnished to do so, subject to the following conditions:
16
-
17
- The above copyright notice and this permission notice shall be included in
18
- all copies or substantial portions of the Software.
19
-
20
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26
- THE SOFTWARE.
27
-
28
- ---------------------------------------------------------------------------*/
29
- Object.defineProperty(exports, "__esModule", { value: true });
30
- exports.Uppercase = exports.Uncapitalize = exports.Lowercase = exports.Capitalize = exports.Iterator = exports.Intersect = exports.Integer = exports.InstanceType = exports.IndexedTypeResolve = exports.IndexedKeyResolve = exports.Index = exports.Increment = exports.Function = exports.Extract = exports.ExtendsUndefinedCheck = exports.ExtendsResult = exports.ExtendsCheck = exports.Extends = exports.Exclude = exports.Enum = exports.Deref = exports.Date = exports.ConstructorParameters = exports.Constructor = exports.Const = exports.Composite = exports.Boolean = exports.BigInt = exports.Awaited = exports.AsyncIterator = exports.Array = exports.Any = exports.Clone = exports.CloneRest = exports.CloneType = exports.ValueGuard = exports.TypeGuard = exports.FormatRegistry = exports.TypeRegistry = exports.PatternStringExact = exports.PatternString = exports.PatternNumberExact = exports.PatternNumber = exports.PatternBooleanExact = exports.PatternBoolean = exports.TransformKind = exports.OptionalKind = exports.ReadonlyKind = exports.Hint = exports.Kind = void 0;
31
- exports.Type = exports.JavaScriptTypeBuilder = exports.JsonTypeBuilder = exports.Void = exports.Unsafe = exports.Unknown = exports.Union = exports.Undefined = exports.Uint8Array = exports.Tuple = exports.TransformEncodeBuilder = exports.TransformDecodeBuilder = exports.Transform = exports.TemplateLiteralGenerate = exports.TemplateLiteralParse = exports.IsTemplateLiteralFinite = exports.TemplateLiteral = exports.Symbol = exports.String = exports.Strict = exports.ReturnType = exports.Rest = exports.Required = exports.RegExp = exports.Ref = exports.Recursive = exports.Record = exports.ReadonlyOptional = exports.Readonly = exports.Promise = exports.Pick = exports.Partial = exports.Parameters = exports.Optional = exports.Omit = exports.Object = exports.Number = exports.Null = exports.Not = exports.Never = exports.Mapped = exports.Literal = exports.KeyOfTypeResolve = exports.KeyOfStringResolvePattern = exports.KeyOfStringResolve = exports.KeyOf = exports.IntrinsicResolve = void 0;
32
- // ------------------------------------------------------------------
33
- // Infrastructure
34
- // ------------------------------------------------------------------
35
- var index_1 = require("./type/symbols/index");
36
- Object.defineProperty(exports, "Kind", { enumerable: true, get: function () { return index_1.Kind; } });
37
- Object.defineProperty(exports, "Hint", { enumerable: true, get: function () { return index_1.Hint; } });
38
- Object.defineProperty(exports, "ReadonlyKind", { enumerable: true, get: function () { return index_1.ReadonlyKind; } });
39
- Object.defineProperty(exports, "OptionalKind", { enumerable: true, get: function () { return index_1.OptionalKind; } });
40
- Object.defineProperty(exports, "TransformKind", { enumerable: true, get: function () { return index_1.TransformKind; } });
41
- var index_2 = require("./type/patterns/index");
42
- Object.defineProperty(exports, "PatternBoolean", { enumerable: true, get: function () { return index_2.PatternBoolean; } });
43
- Object.defineProperty(exports, "PatternBooleanExact", { enumerable: true, get: function () { return index_2.PatternBooleanExact; } });
44
- Object.defineProperty(exports, "PatternNumber", { enumerable: true, get: function () { return index_2.PatternNumber; } });
45
- Object.defineProperty(exports, "PatternNumberExact", { enumerable: true, get: function () { return index_2.PatternNumberExact; } });
46
- Object.defineProperty(exports, "PatternString", { enumerable: true, get: function () { return index_2.PatternString; } });
47
- Object.defineProperty(exports, "PatternStringExact", { enumerable: true, get: function () { return index_2.PatternStringExact; } });
48
- var index_3 = require("./type/registry/index");
49
- Object.defineProperty(exports, "TypeRegistry", { enumerable: true, get: function () { return index_3.TypeRegistry; } });
50
- Object.defineProperty(exports, "FormatRegistry", { enumerable: true, get: function () { return index_3.FormatRegistry; } });
51
- var index_4 = require("./type/guard/index");
52
- Object.defineProperty(exports, "TypeGuard", { enumerable: true, get: function () { return index_4.TypeGuard; } });
53
- Object.defineProperty(exports, "ValueGuard", { enumerable: true, get: function () { return index_4.ValueGuard; } });
54
- var type_1 = require("./type/clone/type");
55
- Object.defineProperty(exports, "CloneType", { enumerable: true, get: function () { return type_1.CloneType; } });
56
- Object.defineProperty(exports, "CloneRest", { enumerable: true, get: function () { return type_1.CloneRest; } });
57
- var value_1 = require("./type/clone/value");
58
- Object.defineProperty(exports, "Clone", { enumerable: true, get: function () { return value_1.Clone; } });
59
- // ------------------------------------------------------------------
60
- // Type
61
- // ------------------------------------------------------------------
62
- var index_5 = require("./type/any/index");
63
- Object.defineProperty(exports, "Any", { enumerable: true, get: function () { return index_5.Any; } });
64
- var index_6 = require("./type/array/index");
65
- Object.defineProperty(exports, "Array", { enumerable: true, get: function () { return index_6.Array; } });
66
- var index_7 = require("./type/async-iterator/index");
67
- Object.defineProperty(exports, "AsyncIterator", { enumerable: true, get: function () { return index_7.AsyncIterator; } });
68
- var index_8 = require("./type/awaited/index");
69
- Object.defineProperty(exports, "Awaited", { enumerable: true, get: function () { return index_8.Awaited; } });
70
- var index_9 = require("./type/bigint/index");
71
- Object.defineProperty(exports, "BigInt", { enumerable: true, get: function () { return index_9.BigInt; } });
72
- var index_10 = require("./type/boolean/index");
73
- Object.defineProperty(exports, "Boolean", { enumerable: true, get: function () { return index_10.Boolean; } });
74
- var index_11 = require("./type/composite/index");
75
- Object.defineProperty(exports, "Composite", { enumerable: true, get: function () { return index_11.Composite; } });
76
- var index_12 = require("./type/const/index");
77
- Object.defineProperty(exports, "Const", { enumerable: true, get: function () { return index_12.Const; } });
78
- var index_13 = require("./type/constructor/index");
79
- Object.defineProperty(exports, "Constructor", { enumerable: true, get: function () { return index_13.Constructor; } });
80
- var index_14 = require("./type/constructor-parameters/index");
81
- Object.defineProperty(exports, "ConstructorParameters", { enumerable: true, get: function () { return index_14.ConstructorParameters; } });
82
- var index_15 = require("./type/date/index");
83
- Object.defineProperty(exports, "Date", { enumerable: true, get: function () { return index_15.Date; } });
84
- var index_16 = require("./type/deref/index");
85
- Object.defineProperty(exports, "Deref", { enumerable: true, get: function () { return index_16.Deref; } });
86
- var index_17 = require("./type/enum/index");
87
- Object.defineProperty(exports, "Enum", { enumerable: true, get: function () { return index_17.Enum; } });
88
- var index_18 = require("./type/exclude/index");
89
- Object.defineProperty(exports, "Exclude", { enumerable: true, get: function () { return index_18.Exclude; } });
90
- var index_19 = require("./type/extends/index");
91
- Object.defineProperty(exports, "Extends", { enumerable: true, get: function () { return index_19.Extends; } });
92
- Object.defineProperty(exports, "ExtendsCheck", { enumerable: true, get: function () { return index_19.ExtendsCheck; } });
93
- Object.defineProperty(exports, "ExtendsResult", { enumerable: true, get: function () { return index_19.ExtendsResult; } });
94
- Object.defineProperty(exports, "ExtendsUndefinedCheck", { enumerable: true, get: function () { return index_19.ExtendsUndefinedCheck; } });
95
- var index_20 = require("./type/extract/index");
96
- Object.defineProperty(exports, "Extract", { enumerable: true, get: function () { return index_20.Extract; } });
97
- var index_21 = require("./type/function/index");
98
- Object.defineProperty(exports, "Function", { enumerable: true, get: function () { return index_21.Function; } });
99
- var index_22 = require("./type/helpers/index");
100
- Object.defineProperty(exports, "Increment", { enumerable: true, get: function () { return index_22.Increment; } });
101
- var index_23 = require("./type/indexed/index");
102
- Object.defineProperty(exports, "Index", { enumerable: true, get: function () { return index_23.Index; } });
103
- Object.defineProperty(exports, "IndexedKeyResolve", { enumerable: true, get: function () { return index_23.IndexedKeyResolve; } });
104
- Object.defineProperty(exports, "IndexedTypeResolve", { enumerable: true, get: function () { return index_23.IndexedTypeResolve; } });
105
- var index_24 = require("./type/instance-type/index");
106
- Object.defineProperty(exports, "InstanceType", { enumerable: true, get: function () { return index_24.InstanceType; } });
107
- var index_25 = require("./type/integer/index");
108
- Object.defineProperty(exports, "Integer", { enumerable: true, get: function () { return index_25.Integer; } });
109
- var index_26 = require("./type/intersect/index");
110
- Object.defineProperty(exports, "Intersect", { enumerable: true, get: function () { return index_26.Intersect; } });
111
- var index_27 = require("./type/iterator/index");
112
- Object.defineProperty(exports, "Iterator", { enumerable: true, get: function () { return index_27.Iterator; } });
113
- var index_28 = require("./type/intrinsic/index");
114
- Object.defineProperty(exports, "Capitalize", { enumerable: true, get: function () { return index_28.Capitalize; } });
115
- Object.defineProperty(exports, "Lowercase", { enumerable: true, get: function () { return index_28.Lowercase; } });
116
- Object.defineProperty(exports, "Uncapitalize", { enumerable: true, get: function () { return index_28.Uncapitalize; } });
117
- Object.defineProperty(exports, "Uppercase", { enumerable: true, get: function () { return index_28.Uppercase; } });
118
- Object.defineProperty(exports, "IntrinsicResolve", { enumerable: true, get: function () { return index_28.IntrinsicResolve; } });
119
- var index_29 = require("./type/keyof/index");
120
- Object.defineProperty(exports, "KeyOf", { enumerable: true, get: function () { return index_29.KeyOf; } });
121
- Object.defineProperty(exports, "KeyOfStringResolve", { enumerable: true, get: function () { return index_29.KeyOfStringResolve; } });
122
- Object.defineProperty(exports, "KeyOfStringResolvePattern", { enumerable: true, get: function () { return index_29.KeyOfStringResolvePattern; } });
123
- Object.defineProperty(exports, "KeyOfTypeResolve", { enumerable: true, get: function () { return index_29.KeyOfTypeResolve; } });
124
- var index_30 = require("./type/literal/index");
125
- Object.defineProperty(exports, "Literal", { enumerable: true, get: function () { return index_30.Literal; } });
126
- var index_31 = require("./type/mapped/index");
127
- Object.defineProperty(exports, "Mapped", { enumerable: true, get: function () { return index_31.Mapped; } });
128
- var index_32 = require("./type/never/index");
129
- Object.defineProperty(exports, "Never", { enumerable: true, get: function () { return index_32.Never; } });
130
- var index_33 = require("./type/not/index");
131
- Object.defineProperty(exports, "Not", { enumerable: true, get: function () { return index_33.Not; } });
132
- var index_34 = require("./type/null/index");
133
- Object.defineProperty(exports, "Null", { enumerable: true, get: function () { return index_34.Null; } });
134
- var index_35 = require("./type/number/index");
135
- Object.defineProperty(exports, "Number", { enumerable: true, get: function () { return index_35.Number; } });
136
- var index_36 = require("./type/object/index");
137
- Object.defineProperty(exports, "Object", { enumerable: true, get: function () { return index_36.Object; } });
138
- var index_37 = require("./type/omit/index");
139
- Object.defineProperty(exports, "Omit", { enumerable: true, get: function () { return index_37.Omit; } });
140
- var index_38 = require("./type/optional/index");
141
- Object.defineProperty(exports, "Optional", { enumerable: true, get: function () { return index_38.Optional; } });
142
- var index_39 = require("./type/parameters/index");
143
- Object.defineProperty(exports, "Parameters", { enumerable: true, get: function () { return index_39.Parameters; } });
144
- var index_40 = require("./type/partial/index");
145
- Object.defineProperty(exports, "Partial", { enumerable: true, get: function () { return index_40.Partial; } });
146
- var index_41 = require("./type/pick/index");
147
- Object.defineProperty(exports, "Pick", { enumerable: true, get: function () { return index_41.Pick; } });
148
- var index_42 = require("./type/promise/index");
149
- Object.defineProperty(exports, "Promise", { enumerable: true, get: function () { return index_42.Promise; } });
150
- var index_43 = require("./type/readonly/index");
151
- Object.defineProperty(exports, "Readonly", { enumerable: true, get: function () { return index_43.Readonly; } });
152
- var index_44 = require("./type/readonly-optional/index");
153
- Object.defineProperty(exports, "ReadonlyOptional", { enumerable: true, get: function () { return index_44.ReadonlyOptional; } });
154
- var index_45 = require("./type/record/index");
155
- Object.defineProperty(exports, "Record", { enumerable: true, get: function () { return index_45.Record; } });
156
- var index_46 = require("./type/recursive/index");
157
- Object.defineProperty(exports, "Recursive", { enumerable: true, get: function () { return index_46.Recursive; } });
158
- var index_47 = require("./type/ref/index");
159
- Object.defineProperty(exports, "Ref", { enumerable: true, get: function () { return index_47.Ref; } });
160
- var index_48 = require("./type/regexp/index");
161
- Object.defineProperty(exports, "RegExp", { enumerable: true, get: function () { return index_48.RegExp; } });
162
- var index_49 = require("./type/required/index");
163
- Object.defineProperty(exports, "Required", { enumerable: true, get: function () { return index_49.Required; } });
164
- var index_50 = require("./type/rest/index");
165
- Object.defineProperty(exports, "Rest", { enumerable: true, get: function () { return index_50.Rest; } });
166
- var index_51 = require("./type/return-type/index");
167
- Object.defineProperty(exports, "ReturnType", { enumerable: true, get: function () { return index_51.ReturnType; } });
168
- var index_52 = require("./type/strict/index");
169
- Object.defineProperty(exports, "Strict", { enumerable: true, get: function () { return index_52.Strict; } });
170
- var index_53 = require("./type/string/index");
171
- Object.defineProperty(exports, "String", { enumerable: true, get: function () { return index_53.String; } });
172
- var index_54 = require("./type/symbol/index");
173
- Object.defineProperty(exports, "Symbol", { enumerable: true, get: function () { return index_54.Symbol; } });
174
- var index_55 = require("./type/template-literal/index");
175
- Object.defineProperty(exports, "TemplateLiteral", { enumerable: true, get: function () { return index_55.TemplateLiteral; } });
176
- Object.defineProperty(exports, "IsTemplateLiteralFinite", { enumerable: true, get: function () { return index_55.IsTemplateLiteralFinite; } });
177
- Object.defineProperty(exports, "TemplateLiteralParse", { enumerable: true, get: function () { return index_55.TemplateLiteralParse; } });
178
- Object.defineProperty(exports, "TemplateLiteralGenerate", { enumerable: true, get: function () { return index_55.TemplateLiteralGenerate; } });
179
- var index_56 = require("./type/transform/index");
180
- Object.defineProperty(exports, "Transform", { enumerable: true, get: function () { return index_56.Transform; } });
181
- Object.defineProperty(exports, "TransformDecodeBuilder", { enumerable: true, get: function () { return index_56.TransformDecodeBuilder; } });
182
- Object.defineProperty(exports, "TransformEncodeBuilder", { enumerable: true, get: function () { return index_56.TransformEncodeBuilder; } });
183
- var index_57 = require("./type/tuple/index");
184
- Object.defineProperty(exports, "Tuple", { enumerable: true, get: function () { return index_57.Tuple; } });
185
- var index_58 = require("./type/uint8array/index");
186
- Object.defineProperty(exports, "Uint8Array", { enumerable: true, get: function () { return index_58.Uint8Array; } });
187
- var index_59 = require("./type/undefined/index");
188
- Object.defineProperty(exports, "Undefined", { enumerable: true, get: function () { return index_59.Undefined; } });
189
- var index_60 = require("./type/union/index");
190
- Object.defineProperty(exports, "Union", { enumerable: true, get: function () { return index_60.Union; } });
191
- var index_61 = require("./type/unknown/index");
192
- Object.defineProperty(exports, "Unknown", { enumerable: true, get: function () { return index_61.Unknown; } });
193
- var index_62 = require("./type/unsafe/index");
194
- Object.defineProperty(exports, "Unsafe", { enumerable: true, get: function () { return index_62.Unsafe; } });
195
- var index_63 = require("./type/void/index");
196
- Object.defineProperty(exports, "Void", { enumerable: true, get: function () { return index_63.Void; } });
197
- // ------------------------------------------------------------------
198
- // Namespace
199
- // ------------------------------------------------------------------
200
- var index_64 = require("./type/type/index");
201
- Object.defineProperty(exports, "JsonTypeBuilder", { enumerable: true, get: function () { return index_64.JsonTypeBuilder; } });
202
- Object.defineProperty(exports, "JavaScriptTypeBuilder", { enumerable: true, get: function () { return index_64.JavaScriptTypeBuilder; } });
203
- const index_65 = require("./type/type/index");
204
- Object.defineProperty(exports, "Type", { enumerable: true, get: function () { return index_65.Type; } });
205
- exports.default = index_65.Type;
@@ -1,14 +0,0 @@
1
- import { ValueErrorType } from '../errors/errors';
2
- import { TSchema } from '../type/schema/index';
3
- export type ErrorFunction = (schema: TSchema, type: ValueErrorType) => string;
4
- /** Manages error message providers */
5
- export declare namespace TypeSystemErrorFunction {
6
- /** Resets the error message function to en-us */
7
- function Reset(): void;
8
- /** Sets the error message function used to generate error messages */
9
- function Set(callback: ErrorFunction): void;
10
- /** Gets the error message function */
11
- function Get(): ErrorFunction;
12
- }
13
- /** Creates an error message using en-US as the default locale */
14
- export declare function DefaultErrorFunction(schema: TSchema, errorType: ValueErrorType): string;
package/system/errors.js DELETED
@@ -1,192 +0,0 @@
1
- "use strict";
2
- /*--------------------------------------------------------------------------
3
-
4
- @sinclair/typebox/system
5
-
6
- The MIT License (MIT)
7
-
8
- Copyright (c) 2017-2023 Haydn Paterson (sinclair) <haydn.developer@gmail.com>
9
-
10
- Permission is hereby granted, free of charge, to any person obtaining a copy
11
- of this software and associated documentation files (the "Software"), to deal
12
- in the Software without restriction, including without limitation the rights
13
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
- copies of the Software, and to permit persons to whom the Software is
15
- furnished to do so, subject to the following conditions:
16
-
17
- The above copyright notice and this permission notice shall be included in
18
- all copies or substantial portions of the Software.
19
-
20
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26
- THE SOFTWARE.
27
-
28
- ---------------------------------------------------------------------------*/
29
- Object.defineProperty(exports, "__esModule", { value: true });
30
- exports.DefaultErrorFunction = exports.TypeSystemErrorFunction = void 0;
31
- const errors_1 = require("../errors/errors");
32
- const index_1 = require("../type/symbols/index");
33
- // ------------------------------------------------------------------
34
- // TypeSystemErrorFunction
35
- // ------------------------------------------------------------------
36
- /** Manages error message providers */
37
- var TypeSystemErrorFunction;
38
- (function (TypeSystemErrorFunction) {
39
- let errorMessageFunction = DefaultErrorFunction;
40
- /** Resets the error message function to en-us */
41
- function Reset() {
42
- errorMessageFunction = DefaultErrorFunction;
43
- }
44
- TypeSystemErrorFunction.Reset = Reset;
45
- /** Sets the error message function used to generate error messages */
46
- function Set(callback) {
47
- errorMessageFunction = callback;
48
- }
49
- TypeSystemErrorFunction.Set = Set;
50
- /** Gets the error message function */
51
- function Get() {
52
- return errorMessageFunction;
53
- }
54
- TypeSystemErrorFunction.Get = Get;
55
- })(TypeSystemErrorFunction || (exports.TypeSystemErrorFunction = TypeSystemErrorFunction = {}));
56
- // ------------------------------------------------------------------
57
- // DefaultErrorFunction
58
- // ------------------------------------------------------------------
59
- /** Creates an error message using en-US as the default locale */
60
- function DefaultErrorFunction(schema, errorType) {
61
- switch (errorType) {
62
- case errors_1.ValueErrorType.ArrayContains:
63
- return 'Expected array to contain at least one matching value';
64
- case errors_1.ValueErrorType.ArrayMaxContains:
65
- return `Expected array to contain no more than ${schema.maxContains} matching values`;
66
- case errors_1.ValueErrorType.ArrayMinContains:
67
- return `Expected array to contain at least ${schema.minContains} matching values`;
68
- case errors_1.ValueErrorType.ArrayMaxItems:
69
- return `Expected array length to be less or equal to ${schema.maxItems}`;
70
- case errors_1.ValueErrorType.ArrayMinItems:
71
- return `Expected array length to be greater or equal to ${schema.minItems}`;
72
- case errors_1.ValueErrorType.ArrayUniqueItems:
73
- return 'Expected array elements to be unique';
74
- case errors_1.ValueErrorType.Array:
75
- return 'Expected array';
76
- case errors_1.ValueErrorType.AsyncIterator:
77
- return 'Expected AsyncIterator';
78
- case errors_1.ValueErrorType.BigIntExclusiveMaximum:
79
- return `Expected bigint to be less than ${schema.exclusiveMaximum}`;
80
- case errors_1.ValueErrorType.BigIntExclusiveMinimum:
81
- return `Expected bigint to be greater than ${schema.exclusiveMinimum}`;
82
- case errors_1.ValueErrorType.BigIntMaximum:
83
- return `Expected bigint to be less or equal to ${schema.maximum}`;
84
- case errors_1.ValueErrorType.BigIntMinimum:
85
- return `Expected bigint to be greater or equal to ${schema.minimum}`;
86
- case errors_1.ValueErrorType.BigIntMultipleOf:
87
- return `Expected bigint to be a multiple of ${schema.multipleOf}`;
88
- case errors_1.ValueErrorType.BigInt:
89
- return 'Expected bigint';
90
- case errors_1.ValueErrorType.Boolean:
91
- return 'Expected boolean';
92
- case errors_1.ValueErrorType.DateExclusiveMinimumTimestamp:
93
- return `Expected Date timestamp to be greater than ${schema.exclusiveMinimumTimestamp}`;
94
- case errors_1.ValueErrorType.DateExclusiveMaximumTimestamp:
95
- return `Expected Date timestamp to be less than ${schema.exclusiveMaximumTimestamp}`;
96
- case errors_1.ValueErrorType.DateMinimumTimestamp:
97
- return `Expected Date timestamp to be greater or equal to ${schema.minimumTimestamp}`;
98
- case errors_1.ValueErrorType.DateMaximumTimestamp:
99
- return `Expected Date timestamp to be less or equal to ${schema.maximumTimestamp}`;
100
- case errors_1.ValueErrorType.DateMultipleOfTimestamp:
101
- return `Expected Date timestamp to be a multiple of ${schema.multipleOfTimestamp}`;
102
- case errors_1.ValueErrorType.Date:
103
- return 'Expected Date';
104
- case errors_1.ValueErrorType.Function:
105
- return 'Expected function';
106
- case errors_1.ValueErrorType.IntegerExclusiveMaximum:
107
- return `Expected integer to be less than ${schema.exclusiveMaximum}`;
108
- case errors_1.ValueErrorType.IntegerExclusiveMinimum:
109
- return `Expected integer to be greater than ${schema.exclusiveMinimum}`;
110
- case errors_1.ValueErrorType.IntegerMaximum:
111
- return `Expected integer to be less or equal to ${schema.maximum}`;
112
- case errors_1.ValueErrorType.IntegerMinimum:
113
- return `Expected integer to be greater or equal to ${schema.minimum}`;
114
- case errors_1.ValueErrorType.IntegerMultipleOf:
115
- return `Expected integer to be a multiple of ${schema.multipleOf}`;
116
- case errors_1.ValueErrorType.Integer:
117
- return 'Expected integer';
118
- case errors_1.ValueErrorType.IntersectUnevaluatedProperties:
119
- return 'Unexpected property';
120
- case errors_1.ValueErrorType.Intersect:
121
- return 'Expected all values to match';
122
- case errors_1.ValueErrorType.Iterator:
123
- return 'Expected Iterator';
124
- case errors_1.ValueErrorType.Literal:
125
- return `Expected ${typeof schema.const === 'string' ? `'${schema.const}'` : schema.const}`;
126
- case errors_1.ValueErrorType.Never:
127
- return 'Never';
128
- case errors_1.ValueErrorType.Not:
129
- return 'Value should not match';
130
- case errors_1.ValueErrorType.Null:
131
- return 'Expected null';
132
- case errors_1.ValueErrorType.NumberExclusiveMaximum:
133
- return `Expected number to be less than ${schema.exclusiveMaximum}`;
134
- case errors_1.ValueErrorType.NumberExclusiveMinimum:
135
- return `Expected number to be greater than ${schema.exclusiveMinimum}`;
136
- case errors_1.ValueErrorType.NumberMaximum:
137
- return `Expected number to be less or equal to ${schema.maximum}`;
138
- case errors_1.ValueErrorType.NumberMinimum:
139
- return `Expected number to be greater or equal to ${schema.minimum}`;
140
- case errors_1.ValueErrorType.NumberMultipleOf:
141
- return `Expected number to be a multiple of ${schema.multipleOf}`;
142
- case errors_1.ValueErrorType.Number:
143
- return 'Expected number';
144
- case errors_1.ValueErrorType.Object:
145
- return 'Expected object';
146
- case errors_1.ValueErrorType.ObjectAdditionalProperties:
147
- return 'Unexpected property';
148
- case errors_1.ValueErrorType.ObjectMaxProperties:
149
- return `Expected object to have no more than ${schema.maxProperties} properties`;
150
- case errors_1.ValueErrorType.ObjectMinProperties:
151
- return `Expected object to have at least ${schema.minProperties} properties`;
152
- case errors_1.ValueErrorType.ObjectRequiredProperty:
153
- return 'Required property';
154
- case errors_1.ValueErrorType.Promise:
155
- return 'Expected Promise';
156
- case errors_1.ValueErrorType.StringFormatUnknown:
157
- return `Unknown format '${schema.format}'`;
158
- case errors_1.ValueErrorType.StringFormat:
159
- return `Expected string to match '${schema.format}' format`;
160
- case errors_1.ValueErrorType.StringMaxLength:
161
- return `Expected string length less or equal to ${schema.maxLength}`;
162
- case errors_1.ValueErrorType.StringMinLength:
163
- return `Expected string length greater or equal to ${schema.minLength}`;
164
- case errors_1.ValueErrorType.StringPattern:
165
- return `Expected string to match '${schema.pattern}'`;
166
- case errors_1.ValueErrorType.String:
167
- return 'Expected string';
168
- case errors_1.ValueErrorType.Symbol:
169
- return 'Expected symbol';
170
- case errors_1.ValueErrorType.TupleLength:
171
- return `Expected tuple to have ${schema.maxItems || 0} elements`;
172
- case errors_1.ValueErrorType.Tuple:
173
- return 'Expected tuple';
174
- case errors_1.ValueErrorType.Uint8ArrayMaxByteLength:
175
- return `Expected byte length less or equal to ${schema.maxByteLength}`;
176
- case errors_1.ValueErrorType.Uint8ArrayMinByteLength:
177
- return `Expected byte length greater or equal to ${schema.minByteLength}`;
178
- case errors_1.ValueErrorType.Uint8Array:
179
- return 'Expected Uint8Array';
180
- case errors_1.ValueErrorType.Undefined:
181
- return 'Expected undefined';
182
- case errors_1.ValueErrorType.Union:
183
- return 'Expected union value';
184
- case errors_1.ValueErrorType.Void:
185
- return 'Expected void';
186
- case errors_1.ValueErrorType.Kind:
187
- return `Expected kind '${schema[index_1.Kind]}'`;
188
- default:
189
- return 'Unknown error type';
190
- }
191
- }
192
- exports.DefaultErrorFunction = DefaultErrorFunction;
package/system/index.d.ts DELETED
@@ -1,4 +0,0 @@
1
- export { ValueErrorType } from '../errors/errors';
2
- export { DefaultErrorFunction, ErrorFunction, TypeSystemErrorFunction } from './errors';
3
- export { TypeSystemPolicy } from './policy';
4
- export { TypeSystem, TypeSystemDuplicateFormat, TypeSystemDuplicateTypeKind } from './system';
package/system/index.js DELETED
@@ -1,41 +0,0 @@
1
- "use strict";
2
- /*--------------------------------------------------------------------------
3
-
4
- @sinclair/typebox/system
5
-
6
- The MIT License (MIT)
7
-
8
- Copyright (c) 2017-2023 Haydn Paterson (sinclair) <haydn.developer@gmail.com>
9
-
10
- Permission is hereby granted, free of charge, to any person obtaining a copy
11
- of this software and associated documentation files (the "Software"), to deal
12
- in the Software without restriction, including without limitation the rights
13
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
- copies of the Software, and to permit persons to whom the Software is
15
- furnished to do so, subject to the following conditions:
16
-
17
- The above copyright notice and this permission notice shall be included in
18
- all copies or substantial portions of the Software.
19
-
20
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26
- THE SOFTWARE.
27
-
28
- ---------------------------------------------------------------------------*/
29
- Object.defineProperty(exports, "__esModule", { value: true });
30
- exports.TypeSystemDuplicateTypeKind = exports.TypeSystemDuplicateFormat = exports.TypeSystem = exports.TypeSystemPolicy = exports.TypeSystemErrorFunction = exports.DefaultErrorFunction = exports.ValueErrorType = void 0;
31
- var errors_1 = require("../errors/errors");
32
- Object.defineProperty(exports, "ValueErrorType", { enumerable: true, get: function () { return errors_1.ValueErrorType; } });
33
- var errors_2 = require("./errors");
34
- Object.defineProperty(exports, "DefaultErrorFunction", { enumerable: true, get: function () { return errors_2.DefaultErrorFunction; } });
35
- Object.defineProperty(exports, "TypeSystemErrorFunction", { enumerable: true, get: function () { return errors_2.TypeSystemErrorFunction; } });
36
- var policy_1 = require("./policy");
37
- Object.defineProperty(exports, "TypeSystemPolicy", { enumerable: true, get: function () { return policy_1.TypeSystemPolicy; } });
38
- var system_1 = require("./system");
39
- Object.defineProperty(exports, "TypeSystem", { enumerable: true, get: function () { return system_1.TypeSystem; } });
40
- Object.defineProperty(exports, "TypeSystemDuplicateFormat", { enumerable: true, get: function () { return system_1.TypeSystemDuplicateFormat; } });
41
- Object.defineProperty(exports, "TypeSystemDuplicateTypeKind", { enumerable: true, get: function () { return system_1.TypeSystemDuplicateTypeKind; } });
package/system/policy.js DELETED
@@ -1,74 +0,0 @@
1
- "use strict";
2
- /*--------------------------------------------------------------------------
3
-
4
- @sinclair/typebox/system
5
-
6
- The MIT License (MIT)
7
-
8
- Copyright (c) 2017-2023 Haydn Paterson (sinclair) <haydn.developer@gmail.com>
9
-
10
- Permission is hereby granted, free of charge, to any person obtaining a copy
11
- of this software and associated documentation files (the "Software"), to deal
12
- in the Software without restriction, including without limitation the rights
13
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
- copies of the Software, and to permit persons to whom the Software is
15
- furnished to do so, subject to the following conditions:
16
-
17
- The above copyright notice and this permission notice shall be included in
18
- all copies or substantial portions of the Software.
19
-
20
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26
- THE SOFTWARE.
27
-
28
- ---------------------------------------------------------------------------*/
29
- Object.defineProperty(exports, "__esModule", { value: true });
30
- exports.TypeSystemPolicy = void 0;
31
- const index_1 = require("../value/guard/index");
32
- // ------------------------------------------------------------------
33
- // TypeSystemPolicy
34
- // ------------------------------------------------------------------
35
- /** Shared assertion routines used by the value and errors modules */
36
- var TypeSystemPolicy;
37
- (function (TypeSystemPolicy) {
38
- /** Sets whether TypeBox should assert optional properties using the TypeScript `exactOptionalPropertyTypes` assertion policy. The default is `false` */
39
- TypeSystemPolicy.ExactOptionalPropertyTypes = false;
40
- /** Sets whether arrays should be treated as a kind of objects. The default is `false` */
41
- TypeSystemPolicy.AllowArrayObject = false;
42
- /** Sets whether `NaN` or `Infinity` should be treated as valid numeric values. The default is `false` */
43
- TypeSystemPolicy.AllowNaN = false;
44
- /** Sets whether `null` should validate for void types. The default is `false` */
45
- TypeSystemPolicy.AllowNullVoid = false;
46
- /** Asserts this value using the ExactOptionalPropertyTypes policy */
47
- function IsExactOptionalProperty(value, key) {
48
- return TypeSystemPolicy.ExactOptionalPropertyTypes ? key in value : value[key] !== undefined;
49
- }
50
- TypeSystemPolicy.IsExactOptionalProperty = IsExactOptionalProperty;
51
- /** Asserts this value using the AllowArrayObjects policy */
52
- function IsObjectLike(value) {
53
- const isObject = (0, index_1.IsObject)(value);
54
- return TypeSystemPolicy.AllowArrayObject ? isObject : isObject && !(0, index_1.IsArray)(value);
55
- }
56
- TypeSystemPolicy.IsObjectLike = IsObjectLike;
57
- /** Asserts this value as a record using the AllowArrayObjects policy */
58
- function IsRecordLike(value) {
59
- return IsObjectLike(value) && !(value instanceof Date) && !(value instanceof Uint8Array);
60
- }
61
- TypeSystemPolicy.IsRecordLike = IsRecordLike;
62
- /** Asserts this value using the AllowNaN policy */
63
- function IsNumberLike(value) {
64
- const isNumber = (0, index_1.IsNumber)(value);
65
- return TypeSystemPolicy.AllowNaN ? isNumber : isNumber && Number.isFinite(value);
66
- }
67
- TypeSystemPolicy.IsNumberLike = IsNumberLike;
68
- /** Asserts this value using the AllowVoidNull policy */
69
- function IsVoidLike(value) {
70
- const isUndefined = (0, index_1.IsUndefined)(value);
71
- return TypeSystemPolicy.AllowNullVoid ? isUndefined || value === null : isUndefined;
72
- }
73
- TypeSystemPolicy.IsVoidLike = IsVoidLike;
74
- })(TypeSystemPolicy || (exports.TypeSystemPolicy = TypeSystemPolicy = {}));
@@ -1,13 +0,0 @@
1
- export declare class TypeSystemDuplicateTypeKind extends Error {
2
- constructor(kind: string);
3
- }
4
- export declare class TypeSystemDuplicateFormat extends Error {
5
- constructor(kind: string);
6
- }
7
- /** Creates user defined types and formats and provides overrides for value checking behaviours */
8
- export declare namespace TypeSystem {
9
- /** Creates a new type */
10
- function Type<Type, Options = Record<PropertyKey, unknown>>(kind: string, check: (options: Options, value: unknown) => boolean): (options?: Partial<Options>) => import("../type/unsafe/unsafe").TUnsafe<Type>;
11
- /** Creates a new string format */
12
- function Format<F extends string>(format: F, check: (value: string) => boolean): F;
13
- }
package/system/system.js DELETED
@@ -1,71 +0,0 @@
1
- "use strict";
2
- /*--------------------------------------------------------------------------
3
-
4
- @sinclair/typebox/system
5
-
6
- The MIT License (MIT)
7
-
8
- Copyright (c) 2017-2023 Haydn Paterson (sinclair) <haydn.developer@gmail.com>
9
-
10
- Permission is hereby granted, free of charge, to any person obtaining a copy
11
- of this software and associated documentation files (the "Software"), to deal
12
- in the Software without restriction, including without limitation the rights
13
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
- copies of the Software, and to permit persons to whom the Software is
15
- furnished to do so, subject to the following conditions:
16
-
17
- The above copyright notice and this permission notice shall be included in
18
- all copies or substantial portions of the Software.
19
-
20
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26
- THE SOFTWARE.
27
-
28
- ---------------------------------------------------------------------------*/
29
- Object.defineProperty(exports, "__esModule", { value: true });
30
- exports.TypeSystem = exports.TypeSystemDuplicateFormat = exports.TypeSystemDuplicateTypeKind = void 0;
31
- const index_1 = require("../type/registry/index");
32
- const index_2 = require("../type/unsafe/index");
33
- const index_3 = require("../type/symbols/index");
34
- // ------------------------------------------------------------------
35
- // Errors
36
- // ------------------------------------------------------------------
37
- class TypeSystemDuplicateTypeKind extends Error {
38
- constructor(kind) {
39
- super(`Duplicate type kind '${kind}' detected`);
40
- }
41
- }
42
- exports.TypeSystemDuplicateTypeKind = TypeSystemDuplicateTypeKind;
43
- class TypeSystemDuplicateFormat extends Error {
44
- constructor(kind) {
45
- super(`Duplicate string format '${kind}' detected`);
46
- }
47
- }
48
- exports.TypeSystemDuplicateFormat = TypeSystemDuplicateFormat;
49
- // ------------------------------------------------------------------
50
- // TypeSystem
51
- // ------------------------------------------------------------------
52
- /** Creates user defined types and formats and provides overrides for value checking behaviours */
53
- var TypeSystem;
54
- (function (TypeSystem) {
55
- /** Creates a new type */
56
- function Type(kind, check) {
57
- if (index_1.TypeRegistry.Has(kind))
58
- throw new TypeSystemDuplicateTypeKind(kind);
59
- index_1.TypeRegistry.Set(kind, check);
60
- return (options = {}) => (0, index_2.Unsafe)({ ...options, [index_3.Kind]: kind });
61
- }
62
- TypeSystem.Type = Type;
63
- /** Creates a new string format */
64
- function Format(format, check) {
65
- if (index_1.FormatRegistry.Has(format))
66
- throw new TypeSystemDuplicateFormat(format);
67
- index_1.FormatRegistry.Set(format, check);
68
- return format;
69
- }
70
- TypeSystem.Format = Format;
71
- })(TypeSystem || (exports.TypeSystem = TypeSystem = {}));
package/type/any/any.d.ts DELETED
@@ -1,8 +0,0 @@
1
- import type { TSchema, SchemaOptions } from '../schema/index';
2
- import { Kind } from '../symbols/index';
3
- export interface TAny extends TSchema {
4
- [Kind]: 'Any';
5
- static: any;
6
- }
7
- /** `[Json]` Creates an Any type */
8
- export declare function Any(options?: SchemaOptions): TAny;