typebox 0.0.1 → 1.0.0-rc

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 (1246) hide show
  1. package/build/compile/code.d.mts +12 -0
  2. package/build/compile/code.mjs +65 -0
  3. package/build/compile/compile.d.mts +6 -0
  4. package/build/compile/compile.mjs +11 -0
  5. package/build/compile/index.d.mts +12 -0
  6. package/build/compile/index.mjs +13 -0
  7. package/build/compile/validator.d.mts +30 -0
  8. package/build/compile/validator.mjs +83 -0
  9. package/build/error/errors.d.mts +213 -0
  10. package/build/error/errors.mjs +1 -0
  11. package/build/error/index.d.mts +1 -0
  12. package/build/error/index.mjs +1 -0
  13. package/build/format/_registry.d.mts +15 -0
  14. package/build/format/_registry.mjs +96 -0
  15. package/build/format/date-time.d.mts +6 -0
  16. package/build/format/date-time.mjs +11 -0
  17. package/build/format/date.d.mts +6 -0
  18. package/build/format/date.mjs +19 -0
  19. package/build/format/duration.d.mts +5 -0
  20. package/build/format/duration.mjs +8 -0
  21. package/build/format/email.d.mts +2 -0
  22. package/build/format/email.mjs +5 -0
  23. package/build/format/format.d.mts +22 -0
  24. package/build/format/format.mjs +22 -0
  25. package/build/format/hostname.d.mts +2 -0
  26. package/build/format/hostname.mjs +5 -0
  27. package/build/format/idn-email.d.mts +2 -0
  28. package/build/format/idn-email.mjs +5 -0
  29. package/build/format/idn-hostname.d.mts +5 -0
  30. package/build/format/idn-hostname.mjs +128 -0
  31. package/build/format/index.d.mts +4 -0
  32. package/build/format/index.mjs +4 -0
  33. package/build/format/ipv4.d.mts +6 -0
  34. package/build/format/ipv4.mjs +9 -0
  35. package/build/format/ipv6.d.mts +6 -0
  36. package/build/format/ipv6.mjs +9 -0
  37. package/build/format/iri-reference.d.mts +5 -0
  38. package/build/format/iri-reference.mjs +59 -0
  39. package/build/format/iri.d.mts +5 -0
  40. package/build/format/iri.mjs +13 -0
  41. package/build/format/json-pointer-uri-fragment.d.mts +6 -0
  42. package/build/format/json-pointer-uri-fragment.mjs +9 -0
  43. package/build/format/json-pointer.d.mts +6 -0
  44. package/build/format/json-pointer.mjs +9 -0
  45. package/build/format/regex.d.mts +6 -0
  46. package/build/format/regex.mjs +17 -0
  47. package/build/format/relative-json-pointer.d.mts +6 -0
  48. package/build/format/relative-json-pointer.mjs +9 -0
  49. package/build/format/time.d.mts +5 -0
  50. package/build/format/time.mjs +27 -0
  51. package/build/format/uri-reference.d.mts +6 -0
  52. package/build/format/uri-reference.mjs +9 -0
  53. package/build/format/uri-template.d.mts +6 -0
  54. package/build/format/uri-template.mjs +10 -0
  55. package/build/format/uri.d.mts +6 -0
  56. package/build/format/uri.mjs +9 -0
  57. package/build/format/url.d.mts +6 -0
  58. package/build/format/url.mjs +9 -0
  59. package/build/format/uuid.d.mts +6 -0
  60. package/build/format/uuid.mjs +9 -0
  61. package/build/guard/emit.d.mts +56 -0
  62. package/build/guard/emit.mjs +183 -0
  63. package/build/guard/globals.d.mts +35 -0
  64. package/build/guard/globals.mjs +90 -0
  65. package/build/guard/guard.d.mts +57 -0
  66. package/build/guard/guard.mjs +180 -0
  67. package/build/guard/index.d.mts +6 -0
  68. package/build/guard/index.mjs +6 -0
  69. package/build/guard/native.d.mts +20 -0
  70. package/build/guard/native.mjs +60 -0
  71. package/build/index.d.mts +8 -0
  72. package/build/index.mjs +14 -0
  73. package/build/schema/build.d.mts +35 -0
  74. package/build/schema/build.mjs +97 -0
  75. package/build/schema/check.d.mts +5 -0
  76. package/build/schema/check.mjs +12 -0
  77. package/build/schema/deref/deref.d.mts +4 -0
  78. package/build/schema/deref/deref.mjs +77 -0
  79. package/build/schema/deref/index.d.mts +1 -0
  80. package/build/schema/deref/index.mjs +1 -0
  81. package/build/schema/engine/_context.d.mts +42 -0
  82. package/build/schema/engine/_context.mjs +121 -0
  83. package/build/schema/engine/_externals.d.mts +9 -0
  84. package/build/schema/engine/_externals.mjs +34 -0
  85. package/build/schema/engine/_functions.d.mts +5 -0
  86. package/build/schema/engine/_functions.mjs +46 -0
  87. package/build/schema/engine/_reducer.d.mts +3 -0
  88. package/build/schema/engine/_reducer.mjs +45 -0
  89. package/build/schema/engine/_refine.d.mts +5 -0
  90. package/build/schema/engine/_refine.mjs +29 -0
  91. package/build/schema/engine/_standard.d.mts +5 -0
  92. package/build/schema/engine/_standard.mjs +27 -0
  93. package/build/schema/engine/additionalItems.d.mts +5 -0
  94. package/build/schema/engine/additionalItems.mjs +48 -0
  95. package/build/schema/engine/additionalProperties.d.mts +8 -0
  96. package/build/schema/engine/additionalProperties.mjs +103 -0
  97. package/build/schema/engine/allOf.d.mts +5 -0
  98. package/build/schema/engine/allOf.mjs +47 -0
  99. package/build/schema/engine/anyOf.d.mts +5 -0
  100. package/build/schema/engine/anyOf.mjs +52 -0
  101. package/build/schema/engine/boolean.d.mts +4 -0
  102. package/build/schema/engine/boolean.mjs +25 -0
  103. package/build/schema/engine/const.d.mts +5 -0
  104. package/build/schema/engine/const.mjs +30 -0
  105. package/build/schema/engine/contains.d.mts +5 -0
  106. package/build/schema/engine/contains.mjs +40 -0
  107. package/build/schema/engine/dependencies.d.mts +5 -0
  108. package/build/schema/engine/dependencies.mjs +45 -0
  109. package/build/schema/engine/dependentRequired.d.mts +5 -0
  110. package/build/schema/engine/dependentRequired.mjs +40 -0
  111. package/build/schema/engine/dependentSchemas.d.mts +5 -0
  112. package/build/schema/engine/dependentSchemas.mjs +38 -0
  113. package/build/schema/engine/enum.d.mts +5 -0
  114. package/build/schema/engine/enum.mjs +33 -0
  115. package/build/schema/engine/exclusiveMaximum.d.mts +5 -0
  116. package/build/schema/engine/exclusiveMaximum.mjs +25 -0
  117. package/build/schema/engine/exclusiveMinimum.d.mts +5 -0
  118. package/build/schema/engine/exclusiveMinimum.mjs +25 -0
  119. package/build/schema/engine/format.d.mts +5 -0
  120. package/build/schema/engine/format.mjs +26 -0
  121. package/build/schema/engine/if.d.mts +5 -0
  122. package/build/schema/engine/if.mjs +47 -0
  123. package/build/schema/engine/index.d.mts +47 -0
  124. package/build/schema/engine/index.mjs +53 -0
  125. package/build/schema/engine/items.d.mts +5 -0
  126. package/build/schema/engine/items.mjs +65 -0
  127. package/build/schema/engine/maxContains.d.mts +5 -0
  128. package/build/schema/engine/maxContains.mjs +40 -0
  129. package/build/schema/engine/maxItems.d.mts +5 -0
  130. package/build/schema/engine/maxItems.mjs +25 -0
  131. package/build/schema/engine/maxLength.d.mts +5 -0
  132. package/build/schema/engine/maxLength.mjs +25 -0
  133. package/build/schema/engine/maxProperties.d.mts +5 -0
  134. package/build/schema/engine/maxProperties.mjs +25 -0
  135. package/build/schema/engine/maximum.d.mts +5 -0
  136. package/build/schema/engine/maximum.mjs +25 -0
  137. package/build/schema/engine/minContains.d.mts +5 -0
  138. package/build/schema/engine/minContains.mjs +39 -0
  139. package/build/schema/engine/minItems.d.mts +5 -0
  140. package/build/schema/engine/minItems.mjs +25 -0
  141. package/build/schema/engine/minLength.d.mts +5 -0
  142. package/build/schema/engine/minLength.mjs +25 -0
  143. package/build/schema/engine/minProperties.d.mts +5 -0
  144. package/build/schema/engine/minProperties.mjs +25 -0
  145. package/build/schema/engine/minimum.d.mts +5 -0
  146. package/build/schema/engine/minimum.mjs +25 -0
  147. package/build/schema/engine/multipleOf.d.mts +5 -0
  148. package/build/schema/engine/multipleOf.mjs +25 -0
  149. package/build/schema/engine/not.d.mts +5 -0
  150. package/build/schema/engine/not.mjs +36 -0
  151. package/build/schema/engine/oneOf.d.mts +5 -0
  152. package/build/schema/engine/oneOf.mjs +58 -0
  153. package/build/schema/engine/pattern.d.mts +5 -0
  154. package/build/schema/engine/pattern.mjs +28 -0
  155. package/build/schema/engine/patternProperties.d.mts +5 -0
  156. package/build/schema/engine/patternProperties.mjs +42 -0
  157. package/build/schema/engine/prefixItems.d.mts +5 -0
  158. package/build/schema/engine/prefixItems.mjs +35 -0
  159. package/build/schema/engine/properties.d.mts +5 -0
  160. package/build/schema/engine/properties.mjs +41 -0
  161. package/build/schema/engine/propertyNames.d.mts +5 -0
  162. package/build/schema/engine/propertyNames.mjs +37 -0
  163. package/build/schema/engine/ref.d.mts +5 -0
  164. package/build/schema/engine/ref.mjs +43 -0
  165. package/build/schema/engine/required.d.mts +5 -0
  166. package/build/schema/engine/required.mjs +32 -0
  167. package/build/schema/engine/schema.d.mts +5 -0
  168. package/build/schema/engine/schema.mjs +322 -0
  169. package/build/schema/engine/type.d.mts +5 -0
  170. package/build/schema/engine/type.mjs +74 -0
  171. package/build/schema/engine/unevaluatedItems.d.mts +5 -0
  172. package/build/schema/engine/unevaluatedItems.mjs +49 -0
  173. package/build/schema/engine/unevaluatedProperties.d.mts +5 -0
  174. package/build/schema/engine/unevaluatedProperties.mjs +49 -0
  175. package/build/schema/engine/uniqueItems.d.mts +5 -0
  176. package/build/schema/engine/uniqueItems.mjs +51 -0
  177. package/build/schema/errors.d.mts +6 -0
  178. package/build/schema/errors.mjs +24 -0
  179. package/build/schema/index.d.mts +16 -0
  180. package/build/schema/index.mjs +19 -0
  181. package/build/schema/schema.d.mts +5 -0
  182. package/build/schema/schema.mjs +5 -0
  183. package/build/schema/types/_refine.d.mts +13 -0
  184. package/build/schema/types/_refine.mjs +18 -0
  185. package/build/schema/types/_standard.d.mts +14 -0
  186. package/build/schema/types/_standard.mjs +19 -0
  187. package/build/schema/types/additionalItems.d.mts +9 -0
  188. package/build/schema/types/additionalItems.mjs +14 -0
  189. package/build/schema/types/additionalProperties.d.mts +9 -0
  190. package/build/schema/types/additionalProperties.mjs +14 -0
  191. package/build/schema/types/allOf.d.mts +9 -0
  192. package/build/schema/types/allOf.mjs +15 -0
  193. package/build/schema/types/anyOf.d.mts +9 -0
  194. package/build/schema/types/anyOf.mjs +15 -0
  195. package/build/schema/types/const.d.mts +9 -0
  196. package/build/schema/types/const.mjs +12 -0
  197. package/build/schema/types/contains.d.mts +9 -0
  198. package/build/schema/types/contains.mjs +14 -0
  199. package/build/schema/types/contentEncoding.d.mts +9 -0
  200. package/build/schema/types/contentEncoding.mjs +13 -0
  201. package/build/schema/types/contentMediaType.d.mts +9 -0
  202. package/build/schema/types/contentMediaType.mjs +13 -0
  203. package/build/schema/types/default.d.mts +9 -0
  204. package/build/schema/types/default.mjs +12 -0
  205. package/build/schema/types/defs.d.mts +6 -0
  206. package/build/schema/types/defs.mjs +12 -0
  207. package/build/schema/types/dependencies.d.mts +11 -0
  208. package/build/schema/types/dependencies.mjs +16 -0
  209. package/build/schema/types/dependentRequired.d.mts +9 -0
  210. package/build/schema/types/dependentRequired.mjs +15 -0
  211. package/build/schema/types/dependentSchemas.d.mts +9 -0
  212. package/build/schema/types/dependentSchemas.mjs +15 -0
  213. package/build/schema/types/else.d.mts +9 -0
  214. package/build/schema/types/else.mjs +14 -0
  215. package/build/schema/types/enum.d.mts +9 -0
  216. package/build/schema/types/enum.mjs +13 -0
  217. package/build/schema/types/exclusiveMaximum.d.mts +9 -0
  218. package/build/schema/types/exclusiveMaximum.mjs +13 -0
  219. package/build/schema/types/exclusiveMinimum.d.mts +9 -0
  220. package/build/schema/types/exclusiveMinimum.mjs +13 -0
  221. package/build/schema/types/format.d.mts +9 -0
  222. package/build/schema/types/format.mjs +13 -0
  223. package/build/schema/types/id.d.mts +9 -0
  224. package/build/schema/types/id.mjs +13 -0
  225. package/build/schema/types/if.d.mts +9 -0
  226. package/build/schema/types/if.mjs +14 -0
  227. package/build/schema/types/index.d.mts +51 -0
  228. package/build/schema/types/index.mjs +57 -0
  229. package/build/schema/types/items.d.mts +19 -0
  230. package/build/schema/types/items.mjs +26 -0
  231. package/build/schema/types/maxContains.d.mts +9 -0
  232. package/build/schema/types/maxContains.mjs +13 -0
  233. package/build/schema/types/maxItems.d.mts +9 -0
  234. package/build/schema/types/maxItems.mjs +13 -0
  235. package/build/schema/types/maxLength.d.mts +9 -0
  236. package/build/schema/types/maxLength.mjs +13 -0
  237. package/build/schema/types/maxProperties.d.mts +9 -0
  238. package/build/schema/types/maxProperties.mjs +13 -0
  239. package/build/schema/types/maximum.d.mts +9 -0
  240. package/build/schema/types/maximum.mjs +13 -0
  241. package/build/schema/types/minContains.d.mts +9 -0
  242. package/build/schema/types/minContains.mjs +13 -0
  243. package/build/schema/types/minItems.d.mts +9 -0
  244. package/build/schema/types/minItems.mjs +13 -0
  245. package/build/schema/types/minLength.d.mts +9 -0
  246. package/build/schema/types/minLength.mjs +13 -0
  247. package/build/schema/types/minProperties.d.mts +9 -0
  248. package/build/schema/types/minProperties.mjs +13 -0
  249. package/build/schema/types/minimum.d.mts +9 -0
  250. package/build/schema/types/minimum.mjs +13 -0
  251. package/build/schema/types/multipleOf.d.mts +9 -0
  252. package/build/schema/types/multipleOf.mjs +13 -0
  253. package/build/schema/types/not.d.mts +9 -0
  254. package/build/schema/types/not.mjs +14 -0
  255. package/build/schema/types/oneOf.d.mts +9 -0
  256. package/build/schema/types/oneOf.mjs +15 -0
  257. package/build/schema/types/pattern.d.mts +9 -0
  258. package/build/schema/types/pattern.mjs +14 -0
  259. package/build/schema/types/patternProperties.d.mts +9 -0
  260. package/build/schema/types/patternProperties.mjs +15 -0
  261. package/build/schema/types/prefixItems.d.mts +8 -0
  262. package/build/schema/types/prefixItems.mjs +14 -0
  263. package/build/schema/types/properties.d.mts +9 -0
  264. package/build/schema/types/properties.mjs +15 -0
  265. package/build/schema/types/propertyNames.d.mts +9 -0
  266. package/build/schema/types/propertyNames.mjs +15 -0
  267. package/build/schema/types/ref.d.mts +9 -0
  268. package/build/schema/types/ref.mjs +13 -0
  269. package/build/schema/types/required.d.mts +9 -0
  270. package/build/schema/types/required.mjs +14 -0
  271. package/build/schema/types/schema.d.mts +9 -0
  272. package/build/schema/types/schema.mjs +14 -0
  273. package/build/schema/types/static.d.mts +115 -0
  274. package/build/schema/types/static.mjs +2 -0
  275. package/build/schema/types/then.d.mts +9 -0
  276. package/build/schema/types/then.mjs +14 -0
  277. package/build/schema/types/type.d.mts +9 -0
  278. package/build/schema/types/type.mjs +15 -0
  279. package/build/schema/types/unevaluatedItems.d.mts +9 -0
  280. package/build/schema/types/unevaluatedItems.mjs +14 -0
  281. package/build/schema/types/unevaluatedProperties.d.mts +9 -0
  282. package/build/schema/types/unevaluatedProperties.mjs +14 -0
  283. package/build/schema/types/uniqueItems.d.mts +9 -0
  284. package/build/schema/types/uniqueItems.mjs +13 -0
  285. package/build/system/arguments/arguments.d.mts +5 -0
  286. package/build/system/arguments/arguments.mjs +9 -0
  287. package/build/system/arguments/index.d.mts +1 -0
  288. package/build/system/arguments/index.mjs +1 -0
  289. package/build/system/environment/can-evaluate.d.mts +2 -0
  290. package/build/system/environment/can-evaluate.mjs +26 -0
  291. package/build/system/environment/environment.d.mts +1 -0
  292. package/build/system/environment/environment.mjs +1 -0
  293. package/build/system/environment/index.d.mts +1 -0
  294. package/build/system/environment/index.mjs +1 -0
  295. package/build/system/hashing/hash.d.mts +4 -0
  296. package/build/system/hashing/hash.mjs +232 -0
  297. package/build/system/hashing/index.d.mts +1 -0
  298. package/build/system/hashing/index.mjs +1 -0
  299. package/build/system/index.d.mts +4 -0
  300. package/build/system/index.mjs +4 -0
  301. package/build/system/locale/_config.d.mts +7 -0
  302. package/build/system/locale/_config.mjs +15 -0
  303. package/build/system/locale/_locale.d.mts +40 -0
  304. package/build/system/locale/_locale.mjs +40 -0
  305. package/build/system/locale/ar_001.d.mts +3 -0
  306. package/build/system/locale/ar_001.mjs +41 -0
  307. package/build/system/locale/bn_BD.d.mts +3 -0
  308. package/build/system/locale/bn_BD.mjs +41 -0
  309. package/build/system/locale/cs_CZ.d.mts +3 -0
  310. package/build/system/locale/cs_CZ.mjs +41 -0
  311. package/build/system/locale/de_DE.d.mts +3 -0
  312. package/build/system/locale/de_DE.mjs +41 -0
  313. package/build/system/locale/el_GR.d.mts +3 -0
  314. package/build/system/locale/el_GR.mjs +41 -0
  315. package/build/system/locale/en_US.d.mts +3 -0
  316. package/build/system/locale/en_US.mjs +40 -0
  317. package/build/system/locale/es_419.d.mts +3 -0
  318. package/build/system/locale/es_419.mjs +41 -0
  319. package/build/system/locale/es_AR.d.mts +3 -0
  320. package/build/system/locale/es_AR.mjs +41 -0
  321. package/build/system/locale/es_ES.d.mts +3 -0
  322. package/build/system/locale/es_ES.mjs +41 -0
  323. package/build/system/locale/es_MX.d.mts +3 -0
  324. package/build/system/locale/es_MX.mjs +41 -0
  325. package/build/system/locale/fa_IR.d.mts +3 -0
  326. package/build/system/locale/fa_IR.mjs +41 -0
  327. package/build/system/locale/fil_PH.d.mts +3 -0
  328. package/build/system/locale/fil_PH.mjs +41 -0
  329. package/build/system/locale/fr_CA.d.mts +3 -0
  330. package/build/system/locale/fr_CA.mjs +41 -0
  331. package/build/system/locale/fr_FR.d.mts +3 -0
  332. package/build/system/locale/fr_FR.mjs +41 -0
  333. package/build/system/locale/ha_NG.d.mts +3 -0
  334. package/build/system/locale/ha_NG.mjs +41 -0
  335. package/build/system/locale/hi_IN.d.mts +3 -0
  336. package/build/system/locale/hi_IN.mjs +41 -0
  337. package/build/system/locale/hu_HU.d.mts +3 -0
  338. package/build/system/locale/hu_HU.mjs +41 -0
  339. package/build/system/locale/id_ID.d.mts +3 -0
  340. package/build/system/locale/id_ID.mjs +41 -0
  341. package/build/system/locale/index.d.mts +1 -0
  342. package/build/system/locale/index.mjs +1 -0
  343. package/build/system/locale/it_IT.d.mts +3 -0
  344. package/build/system/locale/it_IT.mjs +41 -0
  345. package/build/system/locale/ja_JP.d.mts +3 -0
  346. package/build/system/locale/ja_JP.mjs +41 -0
  347. package/build/system/locale/ko_KR.d.mts +3 -0
  348. package/build/system/locale/ko_KR.mjs +41 -0
  349. package/build/system/locale/ms_MY.d.mts +3 -0
  350. package/build/system/locale/ms_MY.mjs +41 -0
  351. package/build/system/locale/nl_NL.d.mts +3 -0
  352. package/build/system/locale/nl_NL.mjs +41 -0
  353. package/build/system/locale/pl_PL.d.mts +3 -0
  354. package/build/system/locale/pl_PL.mjs +41 -0
  355. package/build/system/locale/pt_BR.d.mts +3 -0
  356. package/build/system/locale/pt_BR.mjs +41 -0
  357. package/build/system/locale/pt_PT.d.mts +3 -0
  358. package/build/system/locale/pt_PT.mjs +41 -0
  359. package/build/system/locale/ro_RO.d.mts +3 -0
  360. package/build/system/locale/ro_RO.mjs +41 -0
  361. package/build/system/locale/ru_RU.d.mts +3 -0
  362. package/build/system/locale/ru_RU.mjs +41 -0
  363. package/build/system/locale/sv_SE.d.mts +3 -0
  364. package/build/system/locale/sv_SE.mjs +41 -0
  365. package/build/system/locale/sw_TZ.d.mts +3 -0
  366. package/build/system/locale/sw_TZ.mjs +41 -0
  367. package/build/system/locale/th_TH.d.mts +3 -0
  368. package/build/system/locale/th_TH.mjs +41 -0
  369. package/build/system/locale/tr_TR.d.mts +3 -0
  370. package/build/system/locale/tr_TR.mjs +41 -0
  371. package/build/system/locale/uk_UA.d.mts +3 -0
  372. package/build/system/locale/uk_UA.mjs +41 -0
  373. package/build/system/locale/ur_PK.d.mts +3 -0
  374. package/build/system/locale/ur_PK.mjs +41 -0
  375. package/build/system/locale/vi_VN.d.mts +3 -0
  376. package/build/system/locale/vi_VN.mjs +41 -0
  377. package/build/system/locale/yo_NG.d.mts +3 -0
  378. package/build/system/locale/yo_NG.mjs +41 -0
  379. package/build/system/locale/zh_Hans.d.mts +3 -0
  380. package/build/system/locale/zh_Hans.mjs +41 -0
  381. package/build/system/locale/zh_Hant.d.mts +3 -0
  382. package/build/system/locale/zh_Hant.mjs +41 -0
  383. package/build/system/memory/assign.d.mts +14 -0
  384. package/build/system/memory/assign.mjs +10 -0
  385. package/build/system/memory/clone.d.mts +6 -0
  386. package/build/system/memory/clone.mjs +63 -0
  387. package/build/system/memory/create.d.mts +8 -0
  388. package/build/system/memory/create.mjs +23 -0
  389. package/build/system/memory/discard.d.mts +4 -0
  390. package/build/system/memory/discard.mjs +16 -0
  391. package/build/system/memory/index.d.mts +1 -0
  392. package/build/system/memory/index.mjs +1 -0
  393. package/build/system/memory/memory.d.mts +6 -0
  394. package/build/system/memory/memory.mjs +7 -0
  395. package/build/system/memory/metrics.d.mts +14 -0
  396. package/build/system/memory/metrics.mjs +8 -0
  397. package/build/system/memory/update.d.mts +7 -0
  398. package/build/system/memory/update.mjs +32 -0
  399. package/build/system/settings/index.d.mts +1 -0
  400. package/build/system/settings/index.mjs +1 -0
  401. package/build/system/settings/settings.d.mts +37 -0
  402. package/build/system/settings/settings.mjs +28 -0
  403. package/build/system/system.d.mts +6 -0
  404. package/build/system/system.mjs +6 -0
  405. package/build/system/unreachable/index.d.mts +1 -0
  406. package/build/system/unreachable/index.mjs +1 -0
  407. package/build/system/unreachable/unreachable.d.mts +3 -0
  408. package/build/system/unreachable/unreachable.mjs +6 -0
  409. package/build/type/action/_optional.d.mts +19 -0
  410. package/build/type/action/_optional.mjs +40 -0
  411. package/build/type/action/_readonly.d.mts +19 -0
  412. package/build/type/action/_readonly.mjs +40 -0
  413. package/build/type/action/awaited.d.mts +11 -0
  414. package/build/type/action/awaited.mjs +11 -0
  415. package/build/type/action/capitalize.d.mts +11 -0
  416. package/build/type/action/capitalize.mjs +11 -0
  417. package/build/type/action/conditional.d.mts +11 -0
  418. package/build/type/action/conditional.mjs +11 -0
  419. package/build/type/action/constructor-parameters.d.mts +11 -0
  420. package/build/type/action/constructor-parameters.mjs +11 -0
  421. package/build/type/action/evaluate.d.mts +11 -0
  422. package/build/type/action/evaluate.mjs +11 -0
  423. package/build/type/action/exclude.d.mts +11 -0
  424. package/build/type/action/exclude.mjs +11 -0
  425. package/build/type/action/extract.d.mts +11 -0
  426. package/build/type/action/extract.mjs +11 -0
  427. package/build/type/action/index.d.mts +26 -0
  428. package/build/type/action/index.mjs +26 -0
  429. package/build/type/action/indexed.d.mts +14 -0
  430. package/build/type/action/indexed.mjs +14 -0
  431. package/build/type/action/instance-type.d.mts +11 -0
  432. package/build/type/action/instance-type.mjs +11 -0
  433. package/build/type/action/interface.d.mts +14 -0
  434. package/build/type/action/interface.mjs +19 -0
  435. package/build/type/action/keyof.d.mts +11 -0
  436. package/build/type/action/keyof.mjs +11 -0
  437. package/build/type/action/lowercase.d.mts +11 -0
  438. package/build/type/action/lowercase.mjs +11 -0
  439. package/build/type/action/mapped.d.mts +12 -0
  440. package/build/type/action/mapped.mjs +11 -0
  441. package/build/type/action/module.d.mts +12 -0
  442. package/build/type/action/module.mjs +11 -0
  443. package/build/type/action/non-nullable.d.mts +11 -0
  444. package/build/type/action/non-nullable.mjs +11 -0
  445. package/build/type/action/omit.d.mts +14 -0
  446. package/build/type/action/omit.mjs +14 -0
  447. package/build/type/action/options.d.mts +12 -0
  448. package/build/type/action/options.mjs +11 -0
  449. package/build/type/action/parameters.d.mts +11 -0
  450. package/build/type/action/parameters.mjs +11 -0
  451. package/build/type/action/partial.d.mts +11 -0
  452. package/build/type/action/partial.mjs +11 -0
  453. package/build/type/action/pick.d.mts +14 -0
  454. package/build/type/action/pick.mjs +14 -0
  455. package/build/type/action/required.d.mts +11 -0
  456. package/build/type/action/required.mjs +11 -0
  457. package/build/type/action/return-type.d.mts +11 -0
  458. package/build/type/action/return-type.mjs +11 -0
  459. package/build/type/action/uncapitalize.d.mts +11 -0
  460. package/build/type/action/uncapitalize.mjs +11 -0
  461. package/build/type/action/uppercase.d.mts +11 -0
  462. package/build/type/action/uppercase.mjs +11 -0
  463. package/build/type/engine/awaited/index.d.mts +1 -0
  464. package/build/type/engine/awaited/index.mjs +1 -0
  465. package/build/type/engine/awaited/instantiate.d.mts +10 -0
  466. package/build/type/engine/awaited/instantiate.mjs +19 -0
  467. package/build/type/engine/call/instantiate.d.mts +20 -0
  468. package/build/type/engine/call/instantiate.mjs +38 -0
  469. package/build/type/engine/call/resolve-arguments.d.mts +13 -0
  470. package/build/type/engine/call/resolve-arguments.mjs +39 -0
  471. package/build/type/engine/call/resolve-target.d.mts +25 -0
  472. package/build/type/engine/call/resolve-target.mjs +27 -0
  473. package/build/type/engine/conditional/index.d.mts +1 -0
  474. package/build/type/engine/conditional/index.mjs +1 -0
  475. package/build/type/engine/conditional/instantiate.d.mts +10 -0
  476. package/build/type/engine/conditional/instantiate.mjs +19 -0
  477. package/build/type/engine/constructor-parameters/index.d.mts +1 -0
  478. package/build/type/engine/constructor-parameters/index.mjs +1 -0
  479. package/build/type/engine/constructor-parameters/instantiate.d.mts +14 -0
  480. package/build/type/engine/constructor-parameters/instantiate.mjs +21 -0
  481. package/build/type/engine/cyclic/candidates.d.mts +9 -0
  482. package/build/type/engine/cyclic/candidates.mjs +19 -0
  483. package/build/type/engine/cyclic/check.d.mts +24 -0
  484. package/build/type/engine/cyclic/check.mjs +54 -0
  485. package/build/type/engine/cyclic/dependencies.d.mts +25 -0
  486. package/build/type/engine/cyclic/dependencies.mjs +53 -0
  487. package/build/type/engine/cyclic/extends.d.mts +31 -0
  488. package/build/type/engine/cyclic/extends.mjs +53 -0
  489. package/build/type/engine/cyclic/index.d.mts +6 -0
  490. package/build/type/engine/cyclic/index.mjs +6 -0
  491. package/build/type/engine/cyclic/instantiate.d.mts +20 -0
  492. package/build/type/engine/cyclic/instantiate.mjs +29 -0
  493. package/build/type/engine/cyclic/target.d.mts +10 -0
  494. package/build/type/engine/cyclic/target.mjs +16 -0
  495. package/build/type/engine/enum/enum-to-union.d.mts +14 -0
  496. package/build/type/engine/enum/enum-to-union.mjs +24 -0
  497. package/build/type/engine/enum/index.d.mts +2 -0
  498. package/build/type/engine/enum/index.mjs +2 -0
  499. package/build/type/engine/enum/typescript-enum-to-enum-values.d.mts +7 -0
  500. package/build/type/engine/enum/typescript-enum-to-enum-values.mjs +6 -0
  501. package/build/type/engine/evaluate/broaden.d.mts +16 -0
  502. package/build/type/engine/evaluate/broaden.mjs +48 -0
  503. package/build/type/engine/evaluate/compare.d.mts +15 -0
  504. package/build/type/engine/evaluate/compare.mjs +21 -0
  505. package/build/type/engine/evaluate/composite.d.mts +30 -0
  506. package/build/type/engine/evaluate/composite.mjs +63 -0
  507. package/build/type/engine/evaluate/distribute.d.mts +26 -0
  508. package/build/type/engine/evaluate/distribute.mjs +53 -0
  509. package/build/type/engine/evaluate/evaluate.d.mts +11 -0
  510. package/build/type/engine/evaluate/evaluate.mjs +19 -0
  511. package/build/type/engine/evaluate/flatten.d.mts +6 -0
  512. package/build/type/engine/evaluate/flatten.mjs +11 -0
  513. package/build/type/engine/evaluate/index.d.mts +8 -0
  514. package/build/type/engine/evaluate/index.mjs +8 -0
  515. package/build/type/engine/evaluate/instantiate.d.mts +8 -0
  516. package/build/type/engine/evaluate/instantiate.mjs +17 -0
  517. package/build/type/engine/evaluate/narrow.d.mts +5 -0
  518. package/build/type/engine/evaluate/narrow.mjs +11 -0
  519. package/build/type/engine/exclude/index.d.mts +1 -0
  520. package/build/type/engine/exclude/index.mjs +1 -0
  521. package/build/type/engine/exclude/instantiate.d.mts +16 -0
  522. package/build/type/engine/exclude/instantiate.mjs +36 -0
  523. package/build/type/engine/extract/index.d.mts +1 -0
  524. package/build/type/engine/extract/index.mjs +1 -0
  525. package/build/type/engine/extract/instantiate.d.mts +16 -0
  526. package/build/type/engine/extract/instantiate.mjs +36 -0
  527. package/build/type/engine/helpers/index.d.mts +3 -0
  528. package/build/type/engine/helpers/index.mjs +3 -0
  529. package/build/type/engine/helpers/keys-to-indexer.d.mts +7 -0
  530. package/build/type/engine/helpers/keys-to-indexer.mjs +15 -0
  531. package/build/type/engine/helpers/keys.d.mts +3 -0
  532. package/build/type/engine/helpers/keys.mjs +8 -0
  533. package/build/type/engine/helpers/union.d.mts +7 -0
  534. package/build/type/engine/helpers/union.mjs +2 -0
  535. package/build/type/engine/index.d.mts +30 -0
  536. package/build/type/engine/index.mjs +36 -0
  537. package/build/type/engine/indexable/from-cyclic.d.mts +6 -0
  538. package/build/type/engine/indexable/from-cyclic.mjs +8 -0
  539. package/build/type/engine/indexable/from-enum.d.mts +6 -0
  540. package/build/type/engine/indexable/from-enum.mjs +8 -0
  541. package/build/type/engine/indexable/from-intersect.d.mts +5 -0
  542. package/build/type/engine/indexable/from-intersect.mjs +8 -0
  543. package/build/type/engine/indexable/from-literal.d.mts +3 -0
  544. package/build/type/engine/indexable/from-literal.mjs +5 -0
  545. package/build/type/engine/indexable/from-template-literal.d.mts +5 -0
  546. package/build/type/engine/indexable/from-template-literal.mjs +8 -0
  547. package/build/type/engine/indexable/from-type.d.mts +17 -0
  548. package/build/type/engine/indexable/from-type.mjs +22 -0
  549. package/build/type/engine/indexable/from-union.d.mts +4 -0
  550. package/build/type/engine/indexable/from-union.mjs +7 -0
  551. package/build/type/engine/indexable/to-indexable-keys.d.mts +10 -0
  552. package/build/type/engine/indexable/to-indexable-keys.mjs +12 -0
  553. package/build/type/engine/indexable/to-indexable.d.mts +9 -0
  554. package/build/type/engine/indexable/to-indexable.mjs +14 -0
  555. package/build/type/engine/indexed/array-indexer.d.mts +12 -0
  556. package/build/type/engine/indexed/array-indexer.mjs +18 -0
  557. package/build/type/engine/indexed/from-array.d.mts +15 -0
  558. package/build/type/engine/indexed/from-array.mjs +26 -0
  559. package/build/type/engine/indexed/from-object.d.mts +9 -0
  560. package/build/type/engine/indexed/from-object.mjs +18 -0
  561. package/build/type/engine/indexed/from-tuple.d.mts +13 -0
  562. package/build/type/engine/indexed/from-tuple.mjs +28 -0
  563. package/build/type/engine/indexed/index.d.mts +1 -0
  564. package/build/type/engine/indexed/index.mjs +1 -0
  565. package/build/type/engine/indexed/instantiate.d.mts +21 -0
  566. package/build/type/engine/indexed/instantiate.mjs +37 -0
  567. package/build/type/engine/instance-type/index.d.mts +1 -0
  568. package/build/type/engine/instance-type/index.mjs +1 -0
  569. package/build/type/engine/instance-type/instantiate.d.mts +12 -0
  570. package/build/type/engine/instance-type/instantiate.mjs +20 -0
  571. package/build/type/engine/instantiate.d.mts +162 -0
  572. package/build/type/engine/instantiate.mjs +165 -0
  573. package/build/type/engine/interface/index.d.mts +1 -0
  574. package/build/type/engine/interface/index.mjs +1 -0
  575. package/build/type/engine/interface/instantiate.d.mts +16 -0
  576. package/build/type/engine/interface/instantiate.mjs +19 -0
  577. package/build/type/engine/intrinsics/from-literal.d.mts +5 -0
  578. package/build/type/engine/intrinsics/from-literal.mjs +9 -0
  579. package/build/type/engine/intrinsics/from-template-literal.d.mts +6 -0
  580. package/build/type/engine/intrinsics/from-template-literal.mjs +8 -0
  581. package/build/type/engine/intrinsics/from-type.d.mts +10 -0
  582. package/build/type/engine/intrinsics/from-type.mjs +13 -0
  583. package/build/type/engine/intrinsics/from-union.d.mts +6 -0
  584. package/build/type/engine/intrinsics/from-union.mjs +7 -0
  585. package/build/type/engine/intrinsics/index.d.mts +1 -0
  586. package/build/type/engine/intrinsics/index.mjs +1 -0
  587. package/build/type/engine/intrinsics/instantiate.d.mts +34 -0
  588. package/build/type/engine/intrinsics/instantiate.mjs +48 -0
  589. package/build/type/engine/intrinsics/mapping.d.mts +9 -0
  590. package/build/type/engine/intrinsics/mapping.mjs +4 -0
  591. package/build/type/engine/keyof/from-array.d.mts +4 -0
  592. package/build/type/engine/keyof/from-array.mjs +5 -0
  593. package/build/type/engine/keyof/from-object.d.mts +10 -0
  594. package/build/type/engine/keyof/from-object.mjs +20 -0
  595. package/build/type/engine/keyof/from-record.d.mts +4 -0
  596. package/build/type/engine/keyof/from-record.mjs +5 -0
  597. package/build/type/engine/keyof/from-tuple.d.mts +5 -0
  598. package/build/type/engine/keyof/from-tuple.mjs +7 -0
  599. package/build/type/engine/keyof/index.d.mts +1 -0
  600. package/build/type/engine/keyof/index.mjs +1 -0
  601. package/build/type/engine/keyof/instantiate.d.mts +25 -0
  602. package/build/type/engine/keyof/instantiate.mjs +42 -0
  603. package/build/type/engine/mapped/index.d.mts +1 -0
  604. package/build/type/engine/mapped/index.mjs +1 -0
  605. package/build/type/engine/mapped/instantiate.d.mts +28 -0
  606. package/build/type/engine/mapped/instantiate.mjs +47 -0
  607. package/build/type/engine/mapped/mapped-keys.d.mts +14 -0
  608. package/build/type/engine/mapped/mapped-keys.mjs +29 -0
  609. package/build/type/engine/module/index.d.mts +1 -0
  610. package/build/type/engine/module/index.mjs +1 -0
  611. package/build/type/engine/module/instantiate.d.mts +21 -0
  612. package/build/type/engine/module/instantiate.mjs +33 -0
  613. package/build/type/engine/non-nullable/index.d.mts +1 -0
  614. package/build/type/engine/non-nullable/index.mjs +1 -0
  615. package/build/type/engine/non-nullable/instantiate.d.mts +15 -0
  616. package/build/type/engine/non-nullable/instantiate.mjs +21 -0
  617. package/build/type/engine/object/collapse.d.mts +12 -0
  618. package/build/type/engine/object/collapse.mjs +14 -0
  619. package/build/type/engine/object/from-cyclic.d.mts +6 -0
  620. package/build/type/engine/object/from-cyclic.mjs +8 -0
  621. package/build/type/engine/object/from-intersect.d.mts +14 -0
  622. package/build/type/engine/object/from-intersect.mjs +17 -0
  623. package/build/type/engine/object/from-object.d.mts +3 -0
  624. package/build/type/engine/object/from-object.mjs +4 -0
  625. package/build/type/engine/object/from-tuple.d.mts +6 -0
  626. package/build/type/engine/object/from-tuple.mjs +9 -0
  627. package/build/type/engine/object/from-type.d.mts +14 -0
  628. package/build/type/engine/object/from-type.mjs +19 -0
  629. package/build/type/engine/object/from-union.d.mts +12 -0
  630. package/build/type/engine/object/from-union.mjs +26 -0
  631. package/build/type/engine/object/index.d.mts +1 -0
  632. package/build/type/engine/object/index.mjs +1 -0
  633. package/build/type/engine/omit/index.d.mts +1 -0
  634. package/build/type/engine/omit/index.mjs +1 -0
  635. package/build/type/engine/omit/instantiate.d.mts +16 -0
  636. package/build/type/engine/omit/instantiate.mjs +31 -0
  637. package/build/type/engine/options/index.d.mts +1 -0
  638. package/build/type/engine/options/index.mjs +1 -0
  639. package/build/type/engine/options/instantiate.d.mts +8 -0
  640. package/build/type/engine/options/instantiate.mjs +13 -0
  641. package/build/type/engine/parameters/index.d.mts +1 -0
  642. package/build/type/engine/parameters/index.mjs +1 -0
  643. package/build/type/engine/parameters/instantiate.d.mts +14 -0
  644. package/build/type/engine/parameters/instantiate.mjs +21 -0
  645. package/build/type/engine/partial/from-cyclic.d.mts +10 -0
  646. package/build/type/engine/partial/from-cyclic.mjs +11 -0
  647. package/build/type/engine/partial/from-intersect.d.mts +5 -0
  648. package/build/type/engine/partial/from-intersect.mjs +7 -0
  649. package/build/type/engine/partial/from-object.d.mts +8 -0
  650. package/build/type/engine/partial/from-object.mjs +11 -0
  651. package/build/type/engine/partial/from-type.d.mts +12 -0
  652. package/build/type/engine/partial/from-type.mjs +16 -0
  653. package/build/type/engine/partial/from-union.d.mts +5 -0
  654. package/build/type/engine/partial/from-union.mjs +7 -0
  655. package/build/type/engine/partial/index.d.mts +1 -0
  656. package/build/type/engine/partial/index.mjs +1 -0
  657. package/build/type/engine/partial/instantiate.d.mts +9 -0
  658. package/build/type/engine/partial/instantiate.mjs +14 -0
  659. package/build/type/engine/patterns/index.d.mts +2 -0
  660. package/build/type/engine/patterns/index.mjs +2 -0
  661. package/build/type/engine/patterns/pattern.d.mts +7 -0
  662. package/build/type/engine/patterns/pattern.mjs +13 -0
  663. package/build/type/engine/patterns/template.d.mts +7 -0
  664. package/build/type/engine/patterns/template.mjs +20 -0
  665. package/build/type/engine/pick/index.d.mts +1 -0
  666. package/build/type/engine/pick/index.mjs +1 -0
  667. package/build/type/engine/pick/instantiate.d.mts +17 -0
  668. package/build/type/engine/pick/instantiate.mjs +31 -0
  669. package/build/type/engine/record/from-key-any.d.mts +4 -0
  670. package/build/type/engine/record/from-key-any.mjs +6 -0
  671. package/build/type/engine/record/from-key-boolean.d.mts +7 -0
  672. package/build/type/engine/record/from-key-boolean.mjs +5 -0
  673. package/build/type/engine/record/from-key-enum.d.mts +6 -0
  674. package/build/type/engine/record/from-key-enum.mjs +8 -0
  675. package/build/type/engine/record/from-key-integer.d.mts +5 -0
  676. package/build/type/engine/record/from-key-integer.mjs +7 -0
  677. package/build/type/engine/record/from-key-intersect.d.mts +5 -0
  678. package/build/type/engine/record/from-key-intersect.mjs +8 -0
  679. package/build/type/engine/record/from-key-literal.d.mts +11 -0
  680. package/build/type/engine/record/from-key-literal.mjs +10 -0
  681. package/build/type/engine/record/from-key-number.d.mts +5 -0
  682. package/build/type/engine/record/from-key-number.mjs +7 -0
  683. package/build/type/engine/record/from-key-string.d.mts +5 -0
  684. package/build/type/engine/record/from-key-string.mjs +12 -0
  685. package/build/type/engine/record/from-key-template-literal.d.mts +8 -0
  686. package/build/type/engine/record/from-key-template-literal.mjs +12 -0
  687. package/build/type/engine/record/from-key-union.d.mts +20 -0
  688. package/build/type/engine/record/from-key-union.mjs +39 -0
  689. package/build/type/engine/record/from-key.d.mts +24 -0
  690. package/build/type/engine/record/from-key.mjs +40 -0
  691. package/build/type/engine/record/index.d.mts +1 -0
  692. package/build/type/engine/record/index.mjs +1 -0
  693. package/build/type/engine/record/instantiate.d.mts +9 -0
  694. package/build/type/engine/record/instantiate.mjs +16 -0
  695. package/build/type/engine/record/record-create.d.mts +3 -0
  696. package/build/type/engine/record/record-create.mjs +7 -0
  697. package/build/type/engine/ref/index.d.mts +1 -0
  698. package/build/type/engine/ref/index.mjs +1 -0
  699. package/build/type/engine/ref/instantiate.d.mts +6 -0
  700. package/build/type/engine/ref/instantiate.mjs +11 -0
  701. package/build/type/engine/required/from-cyclic.d.mts +10 -0
  702. package/build/type/engine/required/from-cyclic.mjs +11 -0
  703. package/build/type/engine/required/from-intersect.d.mts +5 -0
  704. package/build/type/engine/required/from-intersect.mjs +7 -0
  705. package/build/type/engine/required/from-object.d.mts +8 -0
  706. package/build/type/engine/required/from-object.mjs +11 -0
  707. package/build/type/engine/required/from-type.d.mts +12 -0
  708. package/build/type/engine/required/from-type.mjs +16 -0
  709. package/build/type/engine/required/from-union.d.mts +5 -0
  710. package/build/type/engine/required/from-union.mjs +7 -0
  711. package/build/type/engine/required/index.d.mts +1 -0
  712. package/build/type/engine/required/index.mjs +1 -0
  713. package/build/type/engine/required/instantiate.d.mts +9 -0
  714. package/build/type/engine/required/instantiate.mjs +14 -0
  715. package/build/type/engine/rest/index.d.mts +1 -0
  716. package/build/type/engine/rest/index.mjs +1 -0
  717. package/build/type/engine/rest/spread.d.mts +12 -0
  718. package/build/type/engine/rest/spread.mjs +19 -0
  719. package/build/type/engine/return-type/index.d.mts +1 -0
  720. package/build/type/engine/return-type/index.mjs +1 -0
  721. package/build/type/engine/return-type/instantiate.d.mts +11 -0
  722. package/build/type/engine/return-type/instantiate.mjs +18 -0
  723. package/build/type/engine/template-literal/create.d.mts +1 -0
  724. package/build/type/engine/template-literal/create.mjs +5 -0
  725. package/build/type/engine/template-literal/decode.d.mts +20 -0
  726. package/build/type/engine/template-literal/decode.mjs +73 -0
  727. package/build/type/engine/template-literal/encode.d.mts +31 -0
  728. package/build/type/engine/template-literal/encode.mjs +80 -0
  729. package/build/type/engine/template-literal/finite.d.mts +12 -0
  730. package/build/type/engine/template-literal/finite.mjs +30 -0
  731. package/build/type/engine/template-literal/index.d.mts +5 -0
  732. package/build/type/engine/template-literal/index.mjs +5 -0
  733. package/build/type/engine/template-literal/instantiate.d.mts +9 -0
  734. package/build/type/engine/template-literal/instantiate.mjs +14 -0
  735. package/build/type/engine/template-literal/static.d.mts +18 -0
  736. package/build/type/engine/template-literal/static.mjs +2 -0
  737. package/build/type/engine/tuple/to-object.d.mts +12 -0
  738. package/build/type/engine/tuple/to-object.mjs +13 -0
  739. package/build/type/extends/any.d.mts +9 -0
  740. package/build/type/extends/any.mjs +12 -0
  741. package/build/type/extends/array.d.mts +7 -0
  742. package/build/type/extends/array.mjs +9 -0
  743. package/build/type/extends/async-iterator.d.mts +7 -0
  744. package/build/type/extends/async-iterator.mjs +9 -0
  745. package/build/type/extends/bigint.d.mts +7 -0
  746. package/build/type/extends/bigint.mjs +9 -0
  747. package/build/type/extends/boolean.d.mts +7 -0
  748. package/build/type/extends/boolean.mjs +9 -0
  749. package/build/type/extends/constructor.d.mts +8 -0
  750. package/build/type/extends/constructor.mjs +16 -0
  751. package/build/type/extends/enum.d.mts +7 -0
  752. package/build/type/extends/enum.mjs +6 -0
  753. package/build/type/extends/extends-left.d.mts +55 -0
  754. package/build/type/extends/extends-left.mjs +83 -0
  755. package/build/type/extends/extends-right.d.mts +25 -0
  756. package/build/type/extends/extends-right.mjs +59 -0
  757. package/build/type/extends/extends.d.mts +11 -0
  758. package/build/type/extends/extends.mjs +15 -0
  759. package/build/type/extends/function.d.mts +8 -0
  760. package/build/type/extends/function.mjs +16 -0
  761. package/build/type/extends/index.d.mts +2 -0
  762. package/build/type/extends/index.mjs +2 -0
  763. package/build/type/extends/inference.d.mts +34 -0
  764. package/build/type/extends/inference.mjs +72 -0
  765. package/build/type/extends/integer.d.mts +8 -0
  766. package/build/type/extends/integer.mjs +10 -0
  767. package/build/type/extends/intersect.d.mts +6 -0
  768. package/build/type/extends/intersect.mjs +15 -0
  769. package/build/type/extends/iterator.d.mts +7 -0
  770. package/build/type/extends/iterator.mjs +9 -0
  771. package/build/type/extends/literal.d.mts +17 -0
  772. package/build/type/extends/literal.mjs +41 -0
  773. package/build/type/extends/never.d.mts +8 -0
  774. package/build/type/extends/never.mjs +9 -0
  775. package/build/type/extends/null.d.mts +7 -0
  776. package/build/type/extends/null.mjs +9 -0
  777. package/build/type/extends/number.d.mts +7 -0
  778. package/build/type/extends/number.mjs +9 -0
  779. package/build/type/extends/object.d.mts +25 -0
  780. package/build/type/extends/object.mjs +89 -0
  781. package/build/type/extends/parameters.d.mts +15 -0
  782. package/build/type/extends/parameters.mjs +37 -0
  783. package/build/type/extends/promise.d.mts +7 -0
  784. package/build/type/extends/promise.mjs +9 -0
  785. package/build/type/extends/result.d.mts +21 -0
  786. package/build/type/extends/result.mjs +33 -0
  787. package/build/type/extends/return-type.d.mts +7 -0
  788. package/build/type/extends/return-type.mjs +9 -0
  789. package/build/type/extends/string.d.mts +7 -0
  790. package/build/type/extends/string.mjs +9 -0
  791. package/build/type/extends/symbol.d.mts +7 -0
  792. package/build/type/extends/symbol.mjs +9 -0
  793. package/build/type/extends/template-literal.d.mts +6 -0
  794. package/build/type/extends/template-literal.mjs +7 -0
  795. package/build/type/extends/tuple.d.mts +25 -0
  796. package/build/type/extends/tuple.mjs +82 -0
  797. package/build/type/extends/undefined.d.mts +8 -0
  798. package/build/type/extends/undefined.mjs +10 -0
  799. package/build/type/extends/union.d.mts +11 -0
  800. package/build/type/extends/union.mjs +36 -0
  801. package/build/type/extends/unknown.d.mts +9 -0
  802. package/build/type/extends/unknown.mjs +12 -0
  803. package/build/type/extends/void.d.mts +7 -0
  804. package/build/type/extends/void.mjs +9 -0
  805. package/build/type/index.d.mts +5 -0
  806. package/build/type/index.mjs +5 -0
  807. package/build/type/script/index.d.mts +1 -0
  808. package/build/type/script/index.mjs +1 -0
  809. package/build/type/script/mapping.d.mts +358 -0
  810. package/build/type/script/mapping.mjs +525 -0
  811. package/build/type/script/parser.d.mts +256 -0
  812. package/build/type/script/parser.mjs +132 -0
  813. package/build/type/script/script.d.mts +17 -0
  814. package/build/type/script/script.mjs +21 -0
  815. package/build/type/script/token/bigint.d.mts +8 -0
  816. package/build/type/script/token/bigint.mjs +20 -0
  817. package/build/type/script/token/const.d.mts +11 -0
  818. package/build/type/script/token/const.mjs +18 -0
  819. package/build/type/script/token/ident.d.mts +16 -0
  820. package/build/type/script/token/ident.mjs +35 -0
  821. package/build/type/script/token/index.d.mts +9 -0
  822. package/build/type/script/token/index.mjs +9 -0
  823. package/build/type/script/token/integer.d.mts +19 -0
  824. package/build/type/script/token/integer.mjs +45 -0
  825. package/build/type/script/token/internal/char.d.mts +73 -0
  826. package/build/type/script/token/internal/char.mjs +25 -0
  827. package/build/type/script/token/internal/guard.d.mts +1 -0
  828. package/build/type/script/token/internal/guard.mjs +15 -0
  829. package/build/type/script/token/internal/many.d.mts +7 -0
  830. package/build/type/script/token/internal/many.mjs +17 -0
  831. package/build/type/script/token/internal/optional.d.mts +5 -0
  832. package/build/type/script/token/internal/optional.mjs +12 -0
  833. package/build/type/script/token/internal/result.d.mts +2 -0
  834. package/build/type/script/token/internal/result.mjs +7 -0
  835. package/build/type/script/token/internal/take.d.mts +6 -0
  836. package/build/type/script/token/internal/take.mjs +19 -0
  837. package/build/type/script/token/internal/trim.d.mts +19 -0
  838. package/build/type/script/token/internal/trim.mjs +34 -0
  839. package/build/type/script/token/number.d.mts +20 -0
  840. package/build/type/script/token/number.mjs +65 -0
  841. package/build/type/script/token/span.d.mts +10 -0
  842. package/build/type/script/token/span.mjs +35 -0
  843. package/build/type/script/token/string.d.mts +11 -0
  844. package/build/type/script/token/string.mjs +24 -0
  845. package/build/type/script/token/until.d.mts +6 -0
  846. package/build/type/script/token/until.mjs +21 -0
  847. package/build/type/script/token/until_1.d.mts +5 -0
  848. package/build/type/script/token/until_1.mjs +16 -0
  849. package/build/type/types/_codec.d.mts +30 -0
  850. package/build/type/types/_codec.mjs +59 -0
  851. package/build/type/types/_optional.d.mts +16 -0
  852. package/build/type/types/_optional.mjs +27 -0
  853. package/build/type/types/_readonly.d.mts +16 -0
  854. package/build/type/types/_readonly.mjs +26 -0
  855. package/build/type/types/_refine.d.mts +19 -0
  856. package/build/type/types/_refine.mjs +20 -0
  857. package/build/type/types/any.d.mts +10 -0
  858. package/build/type/types/any.mjs +18 -0
  859. package/build/type/types/array.d.mts +16 -0
  860. package/build/type/types/array.mjs +24 -0
  861. package/build/type/types/async-iterator.d.mts +16 -0
  862. package/build/type/types/async-iterator.mjs +24 -0
  863. package/build/type/types/base.d.mts +40 -0
  864. package/build/type/types/base.mjs +78 -0
  865. package/build/type/types/bigint.d.mts +12 -0
  866. package/build/type/types/bigint.mjs +21 -0
  867. package/build/type/types/boolean.d.mts +11 -0
  868. package/build/type/types/boolean.mjs +17 -0
  869. package/build/type/types/call.d.mts +16 -0
  870. package/build/type/types/call.mjs +21 -0
  871. package/build/type/types/constructor.d.mts +18 -0
  872. package/build/type/types/constructor.mjs +24 -0
  873. package/build/type/types/cyclic.d.mts +16 -0
  874. package/build/type/types/cyclic.mjs +29 -0
  875. package/build/type/types/deferred.d.mts +12 -0
  876. package/build/type/types/deferred.mjs +16 -0
  877. package/build/type/types/enum.d.mts +15 -0
  878. package/build/type/types/enum.mjs +17 -0
  879. package/build/type/types/function.d.mts +18 -0
  880. package/build/type/types/function.mjs +24 -0
  881. package/build/type/types/generic.d.mts +13 -0
  882. package/build/type/types/generic.mjs +17 -0
  883. package/build/type/types/identifier.d.mts +11 -0
  884. package/build/type/types/identifier.mjs +17 -0
  885. package/build/type/types/index.d.mts +47 -0
  886. package/build/type/types/index.mjs +53 -0
  887. package/build/type/types/infer.d.mts +15 -0
  888. package/build/type/types/infer.mjs +20 -0
  889. package/build/type/types/integer.d.mts +12 -0
  890. package/build/type/types/integer.mjs +21 -0
  891. package/build/type/types/intersect.d.mts +15 -0
  892. package/build/type/types/intersect.mjs +24 -0
  893. package/build/type/types/iterator.d.mts +16 -0
  894. package/build/type/types/iterator.mjs +24 -0
  895. package/build/type/types/literal.d.mts +22 -0
  896. package/build/type/types/literal.mjs +41 -0
  897. package/build/type/types/never.d.mts +12 -0
  898. package/build/type/types/never.mjs +21 -0
  899. package/build/type/types/null.d.mts +11 -0
  900. package/build/type/types/null.mjs +17 -0
  901. package/build/type/types/number.d.mts +12 -0
  902. package/build/type/types/number.mjs +21 -0
  903. package/build/type/types/object.d.mts +17 -0
  904. package/build/type/types/object.mjs +27 -0
  905. package/build/type/types/parameter.d.mts +17 -0
  906. package/build/type/types/parameter.mjs +21 -0
  907. package/build/type/types/promise.d.mts +16 -0
  908. package/build/type/types/promise.mjs +24 -0
  909. package/build/type/types/properties.d.mts +42 -0
  910. package/build/type/types/properties.mjs +16 -0
  911. package/build/type/types/record.d.mts +44 -0
  912. package/build/type/types/record.mjs +61 -0
  913. package/build/type/types/ref.d.mts +13 -0
  914. package/build/type/types/ref.mjs +17 -0
  915. package/build/type/types/rest.d.mts +11 -0
  916. package/build/type/types/rest.mjs +17 -0
  917. package/build/type/types/schema.d.mts +199 -0
  918. package/build/type/types/schema.mjs +15 -0
  919. package/build/type/types/static.d.mts +47 -0
  920. package/build/type/types/static.mjs +3 -0
  921. package/build/type/types/string.d.mts +12 -0
  922. package/build/type/types/string.mjs +22 -0
  923. package/build/type/types/symbol.d.mts +11 -0
  924. package/build/type/types/symbol.mjs +17 -0
  925. package/build/type/types/template-literal.d.mts +24 -0
  926. package/build/type/types/template-literal.mjs +26 -0
  927. package/build/type/types/this.d.mts +14 -0
  928. package/build/type/types/this.mjs +17 -0
  929. package/build/type/types/tuple.d.mts +37 -0
  930. package/build/type/types/tuple.mjs +25 -0
  931. package/build/type/types/undefined.d.mts +11 -0
  932. package/build/type/types/undefined.mjs +17 -0
  933. package/build/type/types/union.d.mts +15 -0
  934. package/build/type/types/union.mjs +24 -0
  935. package/build/type/types/unknown.d.mts +10 -0
  936. package/build/type/types/unknown.mjs +17 -0
  937. package/build/type/types/unsafe.d.mts +10 -0
  938. package/build/type/types/unsafe.mjs +18 -0
  939. package/build/type/types/void.d.mts +11 -0
  940. package/build/type/types/void.mjs +17 -0
  941. package/build/typebox.d.mts +71 -0
  942. package/build/typebox.mjs +87 -0
  943. package/build/value/assert/assert.d.mts +8 -0
  944. package/build/value/assert/assert.mjs +27 -0
  945. package/build/value/assert/index.d.mts +1 -0
  946. package/build/value/assert/index.mjs +1 -0
  947. package/build/value/check/check.d.mts +5 -0
  948. package/build/value/check/check.mjs +11 -0
  949. package/build/value/check/index.d.mts +1 -0
  950. package/build/value/check/index.mjs +1 -0
  951. package/build/value/clean/additional.d.mts +2 -0
  952. package/build/value/clean/additional.mjs +6 -0
  953. package/build/value/clean/clean.d.mts +15 -0
  954. package/build/value/clean/clean.mjs +15 -0
  955. package/build/value/clean/from-array.d.mts +2 -0
  956. package/build/value/clean/from-array.mjs +8 -0
  957. package/build/value/clean/from-base.d.mts +2 -0
  958. package/build/value/clean/from-base.mjs +4 -0
  959. package/build/value/clean/from-cyclic.d.mts +2 -0
  960. package/build/value/clean/from-cyclic.mjs +6 -0
  961. package/build/value/clean/from-intersect.d.mts +2 -0
  962. package/build/value/clean/from-intersect.mjs +25 -0
  963. package/build/value/clean/from-object.d.mts +2 -0
  964. package/build/value/clean/from-object.mjs +31 -0
  965. package/build/value/clean/from-record.d.mts +2 -0
  966. package/build/value/clean/from-record.mjs +32 -0
  967. package/build/value/clean/from-ref.d.mts +2 -0
  968. package/build/value/clean/from-ref.mjs +8 -0
  969. package/build/value/clean/from-tuple.d.mts +2 -0
  970. package/build/value/clean/from-tuple.mjs +14 -0
  971. package/build/value/clean/from-type.d.mts +2 -0
  972. package/build/value/clean/from-type.mjs +23 -0
  973. package/build/value/clean/from-union.d.mts +2 -0
  974. package/build/value/clean/from-union.mjs +12 -0
  975. package/build/value/clean/index.d.mts +1 -0
  976. package/build/value/clean/index.mjs +1 -0
  977. package/build/value/clone/clone.d.mts +5 -0
  978. package/build/value/clone/clone.mjs +60 -0
  979. package/build/value/clone/index.d.mts +1 -0
  980. package/build/value/clone/index.mjs +1 -0
  981. package/build/value/codec/callback.d.mts +2 -0
  982. package/build/value/codec/callback.mjs +25 -0
  983. package/build/value/codec/decode.d.mts +19 -0
  984. package/build/value/codec/decode.mjs +48 -0
  985. package/build/value/codec/encode.d.mts +9 -0
  986. package/build/value/codec/encode.mjs +43 -0
  987. package/build/value/codec/from-array.d.mts +2 -0
  988. package/build/value/codec/from-array.mjs +38 -0
  989. package/build/value/codec/from-cyclic.d.mts +2 -0
  990. package/build/value/codec/from-cyclic.mjs +8 -0
  991. package/build/value/codec/from-intersect.d.mts +2 -0
  992. package/build/value/codec/from-intersect.mjs +28 -0
  993. package/build/value/codec/from-object.d.mts +2 -0
  994. package/build/value/codec/from-object.mjs +44 -0
  995. package/build/value/codec/from-record.d.mts +2 -0
  996. package/build/value/codec/from-record.mjs +44 -0
  997. package/build/value/codec/from-ref.d.mts +2 -0
  998. package/build/value/codec/from-ref.mjs +10 -0
  999. package/build/value/codec/from-tuple.d.mts +2 -0
  1000. package/build/value/codec/from-tuple.mjs +35 -0
  1001. package/build/value/codec/from-type.d.mts +2 -0
  1002. package/build/value/codec/from-type.mjs +22 -0
  1003. package/build/value/codec/from-union.d.mts +2 -0
  1004. package/build/value/codec/from-union.mjs +42 -0
  1005. package/build/value/codec/has.d.mts +5 -0
  1006. package/build/value/codec/has.mjs +85 -0
  1007. package/build/value/codec/index.d.mts +3 -0
  1008. package/build/value/codec/index.mjs +3 -0
  1009. package/build/value/convert/convert.d.mts +13 -0
  1010. package/build/value/convert/convert.mjs +15 -0
  1011. package/build/value/convert/from-additional.d.mts +6 -0
  1012. package/build/value/convert/from-additional.mjs +18 -0
  1013. package/build/value/convert/from-array.d.mts +2 -0
  1014. package/build/value/convert/from-array.mjs +8 -0
  1015. package/build/value/convert/from-base.d.mts +2 -0
  1016. package/build/value/convert/from-base.mjs +4 -0
  1017. package/build/value/convert/from-bigint.d.mts +2 -0
  1018. package/build/value/convert/from-bigint.mjs +9 -0
  1019. package/build/value/convert/from-boolean.d.mts +2 -0
  1020. package/build/value/convert/from-boolean.mjs +9 -0
  1021. package/build/value/convert/from-cyclic.d.mts +2 -0
  1022. package/build/value/convert/from-cyclic.mjs +6 -0
  1023. package/build/value/convert/from-enum.d.mts +2 -0
  1024. package/build/value/convert/from-enum.mjs +7 -0
  1025. package/build/value/convert/from-integer.d.mts +2 -0
  1026. package/build/value/convert/from-integer.mjs +9 -0
  1027. package/build/value/convert/from-intersect.d.mts +2 -0
  1028. package/build/value/convert/from-intersect.mjs +7 -0
  1029. package/build/value/convert/from-literal.d.mts +2 -0
  1030. package/build/value/convert/from-literal.mjs +44 -0
  1031. package/build/value/convert/from-null.d.mts +2 -0
  1032. package/build/value/convert/from-null.mjs +9 -0
  1033. package/build/value/convert/from-number.d.mts +2 -0
  1034. package/build/value/convert/from-number.mjs +9 -0
  1035. package/build/value/convert/from-object.d.mts +2 -0
  1036. package/build/value/convert/from-object.mjs +23 -0
  1037. package/build/value/convert/from-record.d.mts +2 -0
  1038. package/build/value/convert/from-record.mjs +23 -0
  1039. package/build/value/convert/from-ref.d.mts +2 -0
  1040. package/build/value/convert/from-ref.mjs +8 -0
  1041. package/build/value/convert/from-string.d.mts +2 -0
  1042. package/build/value/convert/from-string.mjs +9 -0
  1043. package/build/value/convert/from-template-literal.d.mts +2 -0
  1044. package/build/value/convert/from-template-literal.mjs +7 -0
  1045. package/build/value/convert/from-tuple.d.mts +2 -0
  1046. package/build/value/convert/from-tuple.mjs +11 -0
  1047. package/build/value/convert/from-type.d.mts +2 -0
  1048. package/build/value/convert/from-type.mjs +45 -0
  1049. package/build/value/convert/from-undefined.d.mts +2 -0
  1050. package/build/value/convert/from-undefined.mjs +9 -0
  1051. package/build/value/convert/from-union.d.mts +2 -0
  1052. package/build/value/convert/from-union.mjs +13 -0
  1053. package/build/value/convert/from-void.d.mts +2 -0
  1054. package/build/value/convert/from-void.mjs +9 -0
  1055. package/build/value/convert/index.d.mts +1 -0
  1056. package/build/value/convert/index.mjs +1 -0
  1057. package/build/value/convert/try/index.d.mts +1 -0
  1058. package/build/value/convert/try/index.mjs +1 -0
  1059. package/build/value/convert/try/try-bigint.d.mts +2 -0
  1060. package/build/value/convert/try/try-bigint.mjs +74 -0
  1061. package/build/value/convert/try/try-boolean.d.mts +2 -0
  1062. package/build/value/convert/try/try-boolean.mjs +64 -0
  1063. package/build/value/convert/try/try-null.d.mts +2 -0
  1064. package/build/value/convert/try/try-null.mjs +61 -0
  1065. package/build/value/convert/try/try-number.d.mts +2 -0
  1066. package/build/value/convert/try/try-number.mjs +76 -0
  1067. package/build/value/convert/try/try-result.d.mts +8 -0
  1068. package/build/value/convert/try/try-result.mjs +18 -0
  1069. package/build/value/convert/try/try-string.d.mts +2 -0
  1070. package/build/value/convert/try/try-string.mjs +56 -0
  1071. package/build/value/convert/try/try-undefined.d.mts +2 -0
  1072. package/build/value/convert/try/try-undefined.mjs +61 -0
  1073. package/build/value/convert/try/try.d.mts +7 -0
  1074. package/build/value/convert/try/try.mjs +7 -0
  1075. package/build/value/create/create.d.mts +5 -0
  1076. package/build/value/create/create.mjs +11 -0
  1077. package/build/value/create/error.d.mts +5 -0
  1078. package/build/value/create/error.mjs +7 -0
  1079. package/build/value/create/from-array.d.mts +2 -0
  1080. package/build/value/create/from-array.mjs +10 -0
  1081. package/build/value/create/from-async-iterator.d.mts +2 -0
  1082. package/build/value/create/from-async-iterator.mjs +5 -0
  1083. package/build/value/create/from-base.d.mts +2 -0
  1084. package/build/value/create/from-base.mjs +4 -0
  1085. package/build/value/create/from-bigint.d.mts +2 -0
  1086. package/build/value/create/from-bigint.mjs +7 -0
  1087. package/build/value/create/from-boolean.d.mts +2 -0
  1088. package/build/value/create/from-boolean.mjs +4 -0
  1089. package/build/value/create/from-constructor.d.mts +2 -0
  1090. package/build/value/create/from-constructor.mjs +10 -0
  1091. package/build/value/create/from-cyclic.d.mts +2 -0
  1092. package/build/value/create/from-cyclic.mjs +6 -0
  1093. package/build/value/create/from-default.d.mts +3 -0
  1094. package/build/value/create/from-default.mjs +10 -0
  1095. package/build/value/create/from-enum.d.mts +2 -0
  1096. package/build/value/create/from-enum.mjs +6 -0
  1097. package/build/value/create/from-function.d.mts +2 -0
  1098. package/build/value/create/from-function.mjs +6 -0
  1099. package/build/value/create/from-integer.d.mts +2 -0
  1100. package/build/value/create/from-integer.mjs +8 -0
  1101. package/build/value/create/from-intersect.d.mts +2 -0
  1102. package/build/value/create/from-intersect.mjs +6 -0
  1103. package/build/value/create/from-iterator.d.mts +2 -0
  1104. package/build/value/create/from-iterator.mjs +5 -0
  1105. package/build/value/create/from-literal.d.mts +2 -0
  1106. package/build/value/create/from-literal.mjs +4 -0
  1107. package/build/value/create/from-never.d.mts +2 -0
  1108. package/build/value/create/from-never.mjs +5 -0
  1109. package/build/value/create/from-null.d.mts +2 -0
  1110. package/build/value/create/from-null.mjs +4 -0
  1111. package/build/value/create/from-number.d.mts +2 -0
  1112. package/build/value/create/from-number.mjs +8 -0
  1113. package/build/value/create/from-object.d.mts +2 -0
  1114. package/build/value/create/from-object.mjs +9 -0
  1115. package/build/value/create/from-promise.d.mts +2 -0
  1116. package/build/value/create/from-promise.mjs +5 -0
  1117. package/build/value/create/from-record.d.mts +2 -0
  1118. package/build/value/create/from-record.mjs +8 -0
  1119. package/build/value/create/from-ref.d.mts +2 -0
  1120. package/build/value/create/from-ref.mjs +9 -0
  1121. package/build/value/create/from-string.d.mts +2 -0
  1122. package/build/value/create/from-string.mjs +9 -0
  1123. package/build/value/create/from-symbol.d.mts +2 -0
  1124. package/build/value/create/from-symbol.mjs +4 -0
  1125. package/build/value/create/from-template-literal.d.mts +2 -0
  1126. package/build/value/create/from-template-literal.mjs +11 -0
  1127. package/build/value/create/from-tuple.d.mts +2 -0
  1128. package/build/value/create/from-tuple.mjs +5 -0
  1129. package/build/value/create/from-type.d.mts +2 -0
  1130. package/build/value/create/from-type.mjs +69 -0
  1131. package/build/value/create/from-undefined.d.mts +2 -0
  1132. package/build/value/create/from-undefined.mjs +4 -0
  1133. package/build/value/create/from-union.d.mts +2 -0
  1134. package/build/value/create/from-union.mjs +9 -0
  1135. package/build/value/create/from-void.d.mts +2 -0
  1136. package/build/value/create/from-void.mjs +4 -0
  1137. package/build/value/create/index.d.mts +2 -0
  1138. package/build/value/create/index.mjs +2 -0
  1139. package/build/value/default/default.d.mts +13 -0
  1140. package/build/value/default/default.mjs +15 -0
  1141. package/build/value/default/from-array.d.mts +2 -0
  1142. package/build/value/default/from-array.mjs +12 -0
  1143. package/build/value/default/from-base.d.mts +2 -0
  1144. package/build/value/default/from-base.mjs +5 -0
  1145. package/build/value/default/from-cyclic.d.mts +2 -0
  1146. package/build/value/default/from-cyclic.mjs +7 -0
  1147. package/build/value/default/from-default.d.mts +3 -0
  1148. package/build/value/default/from-default.mjs +13 -0
  1149. package/build/value/default/from-intersect.d.mts +2 -0
  1150. package/build/value/default/from-intersect.mjs +8 -0
  1151. package/build/value/default/from-object.d.mts +2 -0
  1152. package/build/value/default/from-object.mjs +30 -0
  1153. package/build/value/default/from-record.d.mts +2 -0
  1154. package/build/value/default/from-record.mjs +26 -0
  1155. package/build/value/default/from-ref.d.mts +2 -0
  1156. package/build/value/default/from-ref.mjs +9 -0
  1157. package/build/value/default/from-tuple.d.mts +2 -0
  1158. package/build/value/default/from-tuple.mjs +14 -0
  1159. package/build/value/default/from-type.d.mts +2 -0
  1160. package/build/value/default/from-type.mjs +27 -0
  1161. package/build/value/default/from-union.d.mts +2 -0
  1162. package/build/value/default/from-union.mjs +14 -0
  1163. package/build/value/default/index.d.mts +1 -0
  1164. package/build/value/default/index.mjs +1 -0
  1165. package/build/value/delta/diff.d.mts +10 -0
  1166. package/build/value/delta/diff.mjs +129 -0
  1167. package/build/value/delta/edit.d.mts +24 -0
  1168. package/build/value/delta/edit.mjs +17 -0
  1169. package/build/value/delta/index.d.mts +3 -0
  1170. package/build/value/delta/index.mjs +3 -0
  1171. package/build/value/delta/patch.d.mts +8 -0
  1172. package/build/value/delta/patch.mjs +42 -0
  1173. package/build/value/equal/equal.d.mts +2 -0
  1174. package/build/value/equal/equal.mjs +6 -0
  1175. package/build/value/equal/index.d.mts +1 -0
  1176. package/build/value/equal/index.mjs +1 -0
  1177. package/build/value/errors/errors.d.mts +16 -0
  1178. package/build/value/errors/errors.mjs +17 -0
  1179. package/build/value/errors/index.d.mts +1 -0
  1180. package/build/value/errors/index.mjs +1 -0
  1181. package/build/value/hash/hash.d.mts +6 -0
  1182. package/build/value/hash/hash.mjs +10 -0
  1183. package/build/value/hash/index.d.mts +1 -0
  1184. package/build/value/hash/index.mjs +1 -0
  1185. package/build/value/index.d.mts +20 -0
  1186. package/build/value/index.mjs +26 -0
  1187. package/build/value/mutate/error.d.mts +3 -0
  1188. package/build/value/mutate/error.mjs +6 -0
  1189. package/build/value/mutate/from-array.d.mts +2 -0
  1190. package/build/value/mutate/from-array.mjs +16 -0
  1191. package/build/value/mutate/from-object.d.mts +2 -0
  1192. package/build/value/mutate/from-object.mjs +27 -0
  1193. package/build/value/mutate/from-unknown.d.mts +2 -0
  1194. package/build/value/mutate/from-unknown.mjs +7 -0
  1195. package/build/value/mutate/from-value.d.mts +2 -0
  1196. package/build/value/mutate/from-value.mjs +12 -0
  1197. package/build/value/mutate/index.d.mts +1 -0
  1198. package/build/value/mutate/index.mjs +1 -0
  1199. package/build/value/mutate/mutate.d.mts +9 -0
  1200. package/build/value/mutate/mutate.mjs +39 -0
  1201. package/build/value/parse/index.d.mts +1 -0
  1202. package/build/value/parse/index.mjs +1 -0
  1203. package/build/value/parse/parse.d.mts +20 -0
  1204. package/build/value/parse/parse.mjs +47 -0
  1205. package/build/value/pipeline/index.d.mts +1 -0
  1206. package/build/value/pipeline/index.mjs +1 -0
  1207. package/build/value/pipeline/pipeline.d.mts +10 -0
  1208. package/build/value/pipeline/pipeline.mjs +15 -0
  1209. package/build/value/pointer/index.d.mts +1 -0
  1210. package/build/value/pointer/index.mjs +1 -0
  1211. package/build/value/pointer/pointer.d.mts +17 -0
  1212. package/build/value/pointer/pointer.mjs +137 -0
  1213. package/build/value/repair/error.d.mts +7 -0
  1214. package/build/value/repair/error.mjs +8 -0
  1215. package/build/value/repair/from-array.d.mts +2 -0
  1216. package/build/value/repair/from-array.mjs +39 -0
  1217. package/build/value/repair/from-enum.d.mts +2 -0
  1218. package/build/value/repair/from-enum.mjs +7 -0
  1219. package/build/value/repair/from-intersect.d.mts +2 -0
  1220. package/build/value/repair/from-intersect.mjs +7 -0
  1221. package/build/value/repair/from-object.d.mts +2 -0
  1222. package/build/value/repair/from-object.mjs +33 -0
  1223. package/build/value/repair/from-record.d.mts +2 -0
  1224. package/build/value/repair/from-record.mjs +33 -0
  1225. package/build/value/repair/from-ref.d.mts +2 -0
  1226. package/build/value/repair/from-ref.mjs +9 -0
  1227. package/build/value/repair/from-template-literal.d.mts +2 -0
  1228. package/build/value/repair/from-template-literal.mjs +7 -0
  1229. package/build/value/repair/from-tuple.d.mts +2 -0
  1230. package/build/value/repair/from-tuple.mjs +12 -0
  1231. package/build/value/repair/from-type.d.mts +2 -0
  1232. package/build/value/repair/from-type.mjs +59 -0
  1233. package/build/value/repair/from-union.d.mts +2 -0
  1234. package/build/value/repair/from-union.mjs +71 -0
  1235. package/build/value/repair/from-unknown.d.mts +2 -0
  1236. package/build/value/repair/from-unknown.mjs +12 -0
  1237. package/build/value/repair/index.d.mts +1 -0
  1238. package/build/value/repair/index.mjs +1 -0
  1239. package/build/value/repair/repair.d.mts +17 -0
  1240. package/build/value/repair/repair.mjs +20 -0
  1241. package/build/value/value.d.mts +16 -0
  1242. package/build/value/value.mjs +16 -0
  1243. package/license +23 -0
  1244. package/package.json +75 -7
  1245. package/readme.md +235 -0
  1246. package/index.ts +0 -1
@@ -0,0 +1,41 @@
1
+ // deno-fmt-ignore-file
2
+ // deno-coverage-ignore-start
3
+ /** Persian (Iran) - ISO 639-1 language code 'fa' with ISO 3166-1 alpha-2 country code 'IR' for Iran. */
4
+ export function fa_IR(error) {
5
+ switch (error.keyword) {
6
+ case 'additionalProperties': return 'نباید ویژگی‌های اضافی داشته باشد';
7
+ case 'anyOf': return 'باید با یکی از طرح‌واره‌های anyOf مطابقت داشته باشد';
8
+ case 'boolean': return 'طرح‌واره نادرست است';
9
+ case 'const': return 'باید برابر با ثابت باشد';
10
+ case 'contains': return 'باید حداقل 1 مورد معتبر داشته باشد';
11
+ case 'dependencies': return `باید دارای ویژگی‌های ${error.params.dependencies.join(', ')} باشد زمانی که ویژگی ${error.params.property} وجود دارد`;
12
+ case 'dependentRequired': return `باید دارای ویژگی‌های ${error.params.dependencies.join(', ')} باشد زمانی که ویژگی ${error.params.property} وجود دارد`;
13
+ case 'enum': return 'باید برابر با یکی از مقادیر مجاز باشد';
14
+ case 'exclusiveMaximum': return `باید ${error.params.comparison} ${error.params.limit} باشد`;
15
+ case 'exclusiveMinimum': return `باید ${error.params.comparison} ${error.params.limit} باشد`;
16
+ case 'format': return `باید با فرمت "${error.params.format}" مطابقت داشته باشد`;
17
+ case 'if': return `باید با طرح‌واره "${error.params.failingKeyword}" مطابقت داشته باشد`;
18
+ case 'maxItems': return `نباید بیشتر از ${error.params.limit} آیتم داشته باشد`;
19
+ case 'maxLength': return `نباید بیشتر از ${error.params.limit} کاراکتر داشته باشد`;
20
+ case 'maxProperties': return `نباید بیشتر از ${error.params.limit} ویژگی داشته باشد`;
21
+ case 'maximum': return `باید ${error.params.comparison} ${error.params.limit} باشد`;
22
+ case 'minItems': return `نباید کمتر از ${error.params.limit} آیتم داشته باشد`;
23
+ case 'minLength': return `نباید کمتر از ${error.params.limit} کاراکتر داشته باشد`;
24
+ case 'minProperties': return `نباید کمتر از ${error.params.limit} ویژگی داشته باشد`;
25
+ case 'minimum': return `باید ${error.params.comparison} ${error.params.limit} باشد`;
26
+ case 'multipleOf': return `باید مضربی از ${error.params.multipleOf} باشد`;
27
+ case 'not': return 'نباید معتبر باشد';
28
+ case 'oneOf': return 'باید دقیقاً با یک طرح‌واره در oneOf مطابقت داشته باشد';
29
+ case 'pattern': return `باید با الگوی "${error.params.pattern}" مطابقت داشته باشد`;
30
+ case 'propertyNames': return `نام ویژگی‌ها ${error.params.propertyNames.join(', ')} نامعتبر است`;
31
+ case 'required': return `باید ویژگی‌های الزامی ${error.params.requiredProperties.join(', ')} را داشته باشد`;
32
+ case 'type': return typeof error.params.type === 'string' ? `باید ${error.params.type} باشد` : `باید یکی از این دو باشد: ${error.params.type.join(' یا ')}`;
33
+ case 'unevaluatedItems': return 'نباید آیتم‌های ارزیابی نشده داشته باشد';
34
+ case 'unevaluatedProperties': return 'نباید ویژگی‌های ارزیابی نشده داشته باشد';
35
+ case 'uniqueItems': return `نباید آیتم‌های تکراری داشته باشد`;
36
+ case '~refine': return error.params.message;
37
+ case '~standard': return `باید با طرح‌واره ${error.params.vendor} مطابقت داشته باشد`;
38
+ default: return 'یک خطای اعتبارسنجی ناشناخته رخ داده است';
39
+ }
40
+ }
41
+ // deno-coverage-ignore-stop
@@ -0,0 +1,3 @@
1
+ import { TValidationError } from '../../error/index.mjs';
2
+ /** Filipino (Philippines) - ISO 639-1 language code 'fil' with ISO 3166-1 */
3
+ export declare function fil_PH(error: TValidationError): string;
@@ -0,0 +1,41 @@
1
+ // deno-fmt-ignore-file
2
+ // deno-coverage-ignore-start
3
+ /** Filipino (Philippines) - ISO 639-1 language code 'fil' with ISO 3166-1 */
4
+ export function fil_PH(error) {
5
+ switch (error.keyword) {
6
+ case 'additionalProperties': return 'hindi dapat magkaroon ng karagdagang mga katangian';
7
+ case 'anyOf': return 'dapat tumugma sa isang schema sa anyOf';
8
+ case 'boolean': return 'mali ang schema';
9
+ case 'const': return 'dapat katumbas ng konstante';
10
+ case 'contains': return 'dapat maglaman ng hindi bababa sa 1 wastong item';
11
+ case 'dependencies': return `dapat magkaroon ng mga katangian ${error.params.dependencies.join(', ')} kapag naroroon ang katangian ${error.params.property}`;
12
+ case 'dependentRequired': return `dapat magkaroon ng mga katangian ${error.params.dependencies.join(', ')} kapag naroroon ang katangian ${error.params.property}`;
13
+ case 'enum': return 'dapat katumbas ng isa sa mga pinapayagang halaga';
14
+ case 'exclusiveMaximum': return `dapat ${error.params.comparison} ${error.params.limit}`;
15
+ case 'exclusiveMinimum': return `dapat ${error.params.comparison} ${error.params.limit}`;
16
+ case 'format': return `dapat tumugma sa format na "${error.params.format}"`;
17
+ case 'if': return `dapat tumugma sa "${error.params.failingKeyword}" schema`;
18
+ case 'maxItems': return `hindi dapat magkaroon ng higit sa ${error.params.limit} item`;
19
+ case 'maxLength': return `hindi dapat magkaroon ng higit sa ${error.params.limit} karakter`;
20
+ case 'maxProperties': return `hindi dapat magkaroon ng higit sa ${error.params.limit} katangian`;
21
+ case 'maximum': return `dapat ${error.params.comparison} ${error.params.limit}`;
22
+ case 'minItems': return `hindi dapat magkaroon ng mas kaunti sa ${error.params.limit} item`;
23
+ case 'minLength': return `hindi dapat magkaroon ng mas kaunti sa ${error.params.limit} karakter`;
24
+ case 'minProperties': return `hindi dapat magkaroon ng mas kaunti sa ${error.params.limit} katangian`;
25
+ case 'minimum': return `dapat ${error.params.comparison} ${error.params.limit}`;
26
+ case 'multipleOf': return `dapat maramihan ng ${error.params.multipleOf}`;
27
+ case 'not': return 'hindi dapat wasto';
28
+ case 'oneOf': return 'dapat tumugma nang eksakto sa isang schema sa oneOf';
29
+ case 'pattern': return `dapat tumugma sa pattern na "${error.params.pattern}"`;
30
+ case 'propertyNames': return `ang mga pangalan ng katangian na ${error.params.propertyNames.join(', ')} ay hindi wasto`;
31
+ case 'required': return `dapat magkaroon ng mga kinakailangang katangian ${error.params.requiredProperties.join(', ')}`;
32
+ case 'type': return typeof error.params.type === 'string' ? `dapat ${error.params.type}` : `dapat ay ${error.params.type.join(' o ')}`;
33
+ case 'unevaluatedItems': return 'hindi dapat magkaroon ng mga hindi pa nasusuring item';
34
+ case 'unevaluatedProperties': return 'hindi dapat magkaroon ng mga hindi pa nasusuring katangian';
35
+ case 'uniqueItems': return `hindi dapat magkaroon ng mga duplicate na item`;
36
+ case '~refine': return error.params.message;
37
+ case '~standard': return `dapat tumugma laban sa ${error.params.vendor} schema`;
38
+ default: return 'nagkaroon ng hindi kilalang error sa pagpapatunay';
39
+ }
40
+ }
41
+ // deno-coverage-ignore-stop
@@ -0,0 +1,3 @@
1
+ import { TValidationError } from '../../error/index.mjs';
2
+ /** French (Canada) - ISO 639-1 language code 'fr' with ISO 3166-1 alpha-2 country code 'CA' for Canada. */
3
+ export declare function fr_CA(error: TValidationError): string;
@@ -0,0 +1,41 @@
1
+ // deno-fmt-ignore-file
2
+ // deno-coverage-ignore-start
3
+ /** French (Canada) - ISO 639-1 language code 'fr' with ISO 3166-1 alpha-2 country code 'CA' for Canada. */
4
+ export function fr_CA(error) {
5
+ switch (error.keyword) {
6
+ case 'additionalProperties': return 'ne doit pas avoir de propriétés additionnelles';
7
+ case 'anyOf': return 'doit correspondre à un schéma dans anyOf';
8
+ case 'boolean': return 'le schéma est faux';
9
+ case 'const': return 'doit être égal à la constante';
10
+ case 'contains': return 'doit contenir au moins 1 élément valide';
11
+ case 'dependencies': return `doit avoir les propriétés ${error.params.dependencies.join(', ')} lorsque la propriété ${error.params.property} est présente`;
12
+ case 'dependentRequired': return `doit avoir les propriétés ${error.params.dependencies.join(', ')} lorsque la propriété ${error.params.property} est présente`;
13
+ case 'enum': return 'doit être égal à l\'une des valeurs autorisées';
14
+ case 'exclusiveMaximum': return `doit être ${error.params.comparison} ${error.params.limit}`;
15
+ case 'exclusiveMinimum': return `doit être ${error.params.comparison} ${error.params.limit}`;
16
+ case 'format': return `doit correspondre au format "${error.params.format}"`;
17
+ case 'if': return `doit correspondre au schéma "${error.params.failingKeyword}"`;
18
+ case 'maxItems': return `ne doit pas avoir plus de ${error.params.limit} éléments`;
19
+ case 'maxLength': return `ne doit pas avoir plus de ${error.params.limit} caractères`;
20
+ case 'maxProperties': return `ne doit pas avoir plus de ${error.params.limit} propriétés`;
21
+ case 'maximum': return `doit être ${error.params.comparison} ${error.params.limit}`;
22
+ case 'minItems': return `ne doit pas avoir moins de ${error.params.limit} éléments`;
23
+ case 'minLength': return `ne doit pas avoir moins de ${error.params.limit} caractères`;
24
+ case 'minProperties': return `ne doit pas avoir moins de ${error.params.limit} propriétés`;
25
+ case 'minimum': return `doit être ${error.params.comparison} ${error.params.limit}`;
26
+ case 'multipleOf': return `doit être un multiple de ${error.params.multipleOf}`;
27
+ case 'not': return 'ne doit pas être valide';
28
+ case 'oneOf': return 'doit correspondre exactement à un schéma dans oneOf';
29
+ case 'pattern': return `doit correspondre au motif "${error.params.pattern}"`;
30
+ case 'propertyNames': return `les noms de propriété ${error.params.propertyNames.join(', ')} sont invalides`;
31
+ case 'required': return `doit avoir les propriétés requises ${error.params.requiredProperties.join(', ')}`;
32
+ case 'type': return typeof error.params.type === 'string' ? `doit être ${error.params.type}` : `doit être l'un des types suivants : ${error.params.type.join(' ou ')}`;
33
+ case 'unevaluatedItems': return 'ne doit pas avoir d\'éléments non évalués';
34
+ case 'unevaluatedProperties': return 'ne doit pas avoir de propriétés non évaluées';
35
+ case 'uniqueItems': return `ne doit pas avoir d'éléments en double`;
36
+ case '~refine': return error.params.message;
37
+ case '~standard': return `doit correspondre au schéma ${error.params.vendor}`;
38
+ default: return 'une erreur de validation inconnue est survenue';
39
+ }
40
+ }
41
+ // deno-coverage-ignore-stop
@@ -0,0 +1,3 @@
1
+ import { TValidationError } from '../../error/index.mjs';
2
+ /** French (France) - ISO 639-1 language code 'fr' with ISO 3166-1 alpha-2 country code 'FR' for France. */
3
+ export declare function fr_FR(error: TValidationError): string;
@@ -0,0 +1,41 @@
1
+ // deno-fmt-ignore-file
2
+ // deno-coverage-ignore-start
3
+ /** French (France) - ISO 639-1 language code 'fr' with ISO 3166-1 alpha-2 country code 'FR' for France. */
4
+ export function fr_FR(error) {
5
+ switch (error.keyword) {
6
+ case 'additionalProperties': return 'ne doit pas avoir de propriétés additionnelles';
7
+ case 'anyOf': return 'doit correspondre à un schéma dans anyOf';
8
+ case 'boolean': return 'le schéma est faux';
9
+ case 'const': return 'doit être égal à la constante';
10
+ case 'contains': return 'doit contenir au moins 1 élément valide';
11
+ case 'dependencies': return `doit avoir les propriétés ${error.params.dependencies.join(', ')} lorsque la propriété ${error.params.property} est présente`;
12
+ case 'dependentRequired': return `doit avoir les propriétés ${error.params.dependencies.join(', ')} lorsque la propriété ${error.params.property} est présente`;
13
+ case 'enum': return 'doit être égal à l\'une des valeurs autorisées';
14
+ case 'exclusiveMaximum': return `doit être ${error.params.comparison} ${error.params.limit}`;
15
+ case 'exclusiveMinimum': return `doit être ${error.params.comparison} ${error.params.limit}`;
16
+ case 'format': return `doit correspondre au format "${error.params.format}"`;
17
+ case 'if': return `doit correspondre au schéma "${error.params.failingKeyword}"`;
18
+ case 'maxItems': return `ne doit pas avoir plus de ${error.params.limit} éléments`;
19
+ case 'maxLength': return `ne doit pas avoir plus de ${error.params.limit} caractères`;
20
+ case 'maxProperties': return `ne doit pas avoir plus de ${error.params.limit} propriétés`;
21
+ case 'maximum': return `doit être ${error.params.comparison} ${error.params.limit}`;
22
+ case 'minItems': return `ne doit pas avoir moins de ${error.params.limit} éléments`;
23
+ case 'minLength': return `ne doit pas avoir moins de ${error.params.limit} caractères`;
24
+ case 'minProperties': return `ne doit pas avoir moins de ${error.params.limit} propriétés`;
25
+ case 'minimum': return `doit être ${error.params.comparison} ${error.params.limit}`;
26
+ case 'multipleOf': return `doit être un multiple de ${error.params.multipleOf}`;
27
+ case 'not': return 'ne doit pas être valide';
28
+ case 'oneOf': return 'doit correspondre exactement à un schéma dans oneOf';
29
+ case 'pattern': return `doit correspondre au motif "${error.params.pattern}"`;
30
+ case 'propertyNames': return `les noms de propriété ${error.params.propertyNames.join(', ')} sont invalides`;
31
+ case 'required': return `doit avoir les propriétés requises ${error.params.requiredProperties.join(', ')}`;
32
+ case 'type': return typeof error.params.type === 'string' ? `doit être ${error.params.type}` : `doit être l'un des types suivants : ${error.params.type.join(' ou ')}`;
33
+ case 'unevaluatedItems': return 'ne doit pas avoir d\'éléments non évalués';
34
+ case 'unevaluatedProperties': return 'ne doit pas avoir de propriétés non évaluées';
35
+ case 'uniqueItems': return `ne doit pas avoir d'éléments en double`;
36
+ case '~refine': return error.params.message;
37
+ case '~standard': return `doit correspondre au schéma ${error.params.vendor}`;
38
+ default: return 'une erreur de validation inconnue est survenue';
39
+ }
40
+ }
41
+ // deno-coverage-ignore-stop
@@ -0,0 +1,3 @@
1
+ import { TValidationError } from '../../error/index.mjs';
2
+ /** Hausa (Nigeria) - ISO 639-1 language code 'ha' with ISO 3166-1 alpha-2 country code 'NG' for Nigeria. */
3
+ export declare function ha_NG(error: TValidationError): string;
@@ -0,0 +1,41 @@
1
+ // deno-fmt-ignore-file
2
+ // deno-coverage-ignore-start
3
+ /** Hausa (Nigeria) - ISO 639-1 language code 'ha' with ISO 3166-1 alpha-2 country code 'NG' for Nigeria. */
4
+ export function ha_NG(error) {
5
+ switch (error.keyword) {
6
+ case 'additionalProperties': return 'kada ya kasance yana da ƙarin kaddarori';
7
+ case 'anyOf': return 'dole ne ya dace da wani tsari a cikin anyOf';
8
+ case 'boolean': return 'tsarin yana da karya';
9
+ case 'const': return 'dole ne ya zama daidai da madaidaicin';
10
+ case 'contains': return 'dole ne ya ƙunshi aƙalla abu 1 mai inganci';
11
+ case 'dependencies': return `dole ne ya kasance yana da kaddarori ${error.params.dependencies.join(', ')} idan kadara ${error.params.property} tana nan`;
12
+ case 'dependentRequired': return `dole ne ya kasance yana da kaddarori ${error.params.dependencies.join(', ')} idan kadara ${error.params.property} tana nan`;
13
+ case 'enum': return 'dole ne ya zama daidai da ɗayan ƙimar da aka yarda';
14
+ case 'exclusiveMaximum': return `dole ne ya zama ${error.params.comparison} ${error.params.limit}`;
15
+ case 'exclusiveMinimum': return `dole ne ya zama ${error.params.comparison} ${error.params.limit}`;
16
+ case 'format': return `dole ne ya dace da tsarin "${error.params.format}"`;
17
+ case 'if': return `dole ne ya dace da tsarin "${error.params.failingKeyword}"`;
18
+ case 'maxItems': return `kada ya kasance yana da fiye da abubuwa ${error.params.limit}`;
19
+ case 'maxLength': return `kada ya kasance yana da fiye da haruffa ${error.params.limit}`;
20
+ case 'maxProperties': return `kada ya kasance yana da fiye da kaddarori ${error.params.limit}`;
21
+ case 'maximum': return `dole ne ya zama ${error.params.comparison} ${error.params.limit}`;
22
+ case 'minItems': return `kada ya kasance yana da ƙasa da abubuwa ${error.params.limit}`;
23
+ case 'minLength': return `kada ya kasance yana da ƙasa da haruffa ${error.params.limit}`;
24
+ case 'minProperties': return `kada ya kasance yana da ƙasa da kaddarori ${error.params.limit}`;
25
+ case 'minimum': return `dole ne ya zama ${error.params.comparison} ${error.params.limit}`;
26
+ case 'multipleOf': return `dole ne ya zama ninki na ${error.params.multipleOf}`;
27
+ case 'not': return 'kada ya zama mai inganci';
28
+ case 'oneOf': return 'dole ne ya dace da tsari ɗaya kawai a cikin oneOf';
29
+ case 'pattern': return `dole ne ya dace da tsari "${error.params.pattern}"`;
30
+ case 'propertyNames': return `sunayen kaddarori ${error.params.propertyNames.join(', ')} ba su da inganci`;
31
+ case 'required': return `dole ne ya kasance yana da kaddarori masu mahimmanci ${error.params.requiredProperties.join(', ')}`;
32
+ case 'type': return typeof error.params.type === 'string' ? `dole ne ya zama ${error.params.type}` : `dole ne ya zama ɗaya daga cikin ${error.params.type.join(' ko ')}`;
33
+ case 'unevaluatedItems': return 'kada ya kasance yana da abubuwan da ba a kimanta su ba';
34
+ case 'unevaluatedProperties': return 'kada ya kasance yana da kaddarorin da ba a kimanta su ba';
35
+ case 'uniqueItems': return `kada ya kasance yana da abubuwan da suka yi kama`;
36
+ case '~refine': return error.params.message;
37
+ case '~standard': return `dole ne ya dace da tsarin ${error.params.vendor}`;
38
+ default: return 'an sami kuskuren tabbatarwa da ba a sani ba';
39
+ }
40
+ }
41
+ // deno-coverage-ignore-stop
@@ -0,0 +1,3 @@
1
+ import { TValidationError } from '../../error/index.mjs';
2
+ /** Hindi (India) - ISO 639-1 language code 'hi' with ISO 3166-1 alpha-2 country code 'IN' for India. */
3
+ export declare function hi_IN(error: TValidationError): string;
@@ -0,0 +1,41 @@
1
+ // deno-fmt-ignore-file
2
+ // deno-coverage-ignore-start
3
+ /** Hindi (India) - ISO 639-1 language code 'hi' with ISO 3166-1 alpha-2 country code 'IN' for India. */
4
+ export function hi_IN(error) {
5
+ switch (error.keyword) {
6
+ case 'additionalProperties': return 'में अतिरिक्त गुण नहीं होने चाहिए';
7
+ case 'anyOf': return 'anyOf में एक स्कीमा से मेल खाना चाहिए';
8
+ case 'boolean': return 'स्कीमा गलत है';
9
+ case 'const': return 'स्थिरांक के बराबर होना चाहिए';
10
+ case 'contains': return 'में कम से कम 1 वैध आइटम होना चाहिए';
11
+ case 'dependencies': return `जब गुण ${error.params.property} मौजूद हो तो उसमें ${error.params.dependencies.join(', ')} गुण होने चाहिए`;
12
+ case 'dependentRequired': return `जब गुण ${error.params.property} मौजूद हो तो उसमें ${error.params.dependencies.join(', ')} गुण होने चाहिए`;
13
+ case 'enum': return 'अनुमत मानों में से एक के बराबर होना चाहिए';
14
+ case 'exclusiveMaximum': return `${error.params.comparison} ${error.params.limit} होना चाहिए`;
15
+ case 'exclusiveMinimum': return `${error.params.comparison} ${error.params.limit} होना चाहिए`;
16
+ case 'format': return `"${error.params.format}" प्रारूप से मेल खाना चाहिए`;
17
+ case 'if': return `"${error.params.failingKeyword}" स्कीमा से मेल खाना चाहिए`;
18
+ case 'maxItems': return `में ${error.params.limit} से अधिक आइटम नहीं होने चाहिए`;
19
+ case 'maxLength': return `में ${error.params.limit} से अधिक वर्ण नहीं होने चाहिए`;
20
+ case 'maxProperties': return `में ${error.params.limit} से अधिक गुण नहीं होने चाहिए`;
21
+ case 'maximum': return `${error.params.comparison} ${error.params.limit} होना चाहिए`;
22
+ case 'minItems': return `में ${error.params.limit} से कम आइटम नहीं होने चाहिए`;
23
+ case 'minLength': return `में ${error.params.limit} से कम वर्ण नहीं होने चाहिए`;
24
+ case 'minProperties': return `में ${error.params.limit} से कम गुण नहीं होने चाहिए`;
25
+ case 'minimum': return `${error.params.comparison} ${error.params.limit} होना चाहिए`;
26
+ case 'multipleOf': return `${error.params.multipleOf} का गुणज होना चाहिए`;
27
+ case 'not': return 'वैध नहीं होना चाहिए';
28
+ case 'oneOf': return 'oneOf में ठीक एक स्कीमा से मेल खाना चाहिए';
29
+ case 'pattern': return `पैटर्न "${error.params.pattern}" से मेल खाना चाहिए`;
30
+ case 'propertyNames': return `गुण नाम ${error.params.propertyNames.join(', ')} अमान्य हैं`;
31
+ case 'required': return `में आवश्यक गुण ${error.params.requiredProperties.join(', ')} होने चाहिए`;
32
+ case 'type': return typeof error.params.type === 'string' ? `${error.params.type} होना चाहिए` : `या तो ${error.params.type.join(' या ')} होना चाहिए`;
33
+ case 'unevaluatedItems': return 'में अप्रयुक्त आइटम नहीं होने चाहिए';
34
+ case 'unevaluatedProperties': return 'में अप्रयुक्त गुण नहीं होने चाहिए';
35
+ case 'uniqueItems': return `में डुप्लिकेट आइटम नहीं होने चाहिए`;
36
+ case '~refine': return error.params.message;
37
+ case '~standard': return `${error.params.vendor} स्कीमा के विरुद्ध मेल खाना चाहिए`;
38
+ default: return 'एक अज्ञात सत्यापन त्रुटि हुई';
39
+ }
40
+ }
41
+ // deno-coverage-ignore-stop
@@ -0,0 +1,3 @@
1
+ import { TValidationError } from '../../error/index.mjs';
2
+ /** Hungarian (Hungary) - ISO 639-1 language code 'hu' with ISO 3166-1 alpha-2 country code 'HU' for Hungary. */
3
+ export declare function hu_HU(error: TValidationError): string;
@@ -0,0 +1,41 @@
1
+ // deno-fmt-ignore-file
2
+ // deno-coverage-ignore-start
3
+ /** Hungarian (Hungary) - ISO 639-1 language code 'hu' with ISO 3166-1 alpha-2 country code 'HU' for Hungary. */
4
+ export function hu_HU(error) {
5
+ switch (error.keyword) {
6
+ case 'additionalProperties': return 'nem lehetnek további tulajdonságai';
7
+ case 'anyOf': return 'meg kell egyeznie az anyOf-ban található sémák egyikével';
8
+ case 'boolean': return 'a séma hamis';
9
+ case 'const': return 'egyenlőnek kell lennie az állandóval';
10
+ case 'contains': return 'legalább 1 érvényes elemet kell tartalmaznia';
11
+ case 'dependencies': return `rendelkeznie kell a(z) ${error.params.dependencies.join(', ')} tulajdonságokkal, ha a(z) ${error.params.property} tulajdonság jelen van`;
12
+ case 'dependentRequired': return `rendelkeznie kell a(z) ${error.params.dependencies.join(', ')} tulajdonságokkal, ha a(z) ${error.params.property} tulajdonság jelen van`;
13
+ case 'enum': return 'egyenlőnek kell lennie az engedélyezett értékek egyikével';
14
+ case 'exclusiveMaximum': return `${error.params.comparison} ${error.params.limit} kell lennie`;
15
+ case 'exclusiveMinimum': return `${error.params.comparison} ${error.params.limit} kell lennie`;
16
+ case 'format': return `meg kell egyeznie a(z) "${error.params.format}" formátummal`;
17
+ case 'if': return `meg kell egyeznie a(z) "${error.params.failingKeyword}" sémával`;
18
+ case 'maxItems': return `nem lehet több, mint ${error.params.limit} eleme`;
19
+ case 'maxLength': return `nem lehet több, mint ${error.params.limit} karaktere`;
20
+ case 'maxProperties': return `nem lehet több, mint ${error.params.limit} tulajdonsága`;
21
+ case 'maximum': return `${error.params.comparison} ${error.params.limit} kell lennie`;
22
+ case 'minItems': return `nem lehet kevesebb, mint ${error.params.limit} eleme`;
23
+ case 'minLength': return `nem lehet kevesebb, mint ${error.params.limit} karaktere`;
24
+ case 'minProperties': return `nem lehet kevesebb, mint ${error.params.limit} tulajdonsága`;
25
+ case 'minimum': return `${error.params.comparison} ${error.params.limit} kell lennie`;
26
+ case 'multipleOf': return `a(z) ${error.params.multipleOf} többszörösének kell lennie`;
27
+ case 'not': return 'nem lehet érvényes';
28
+ case 'oneOf': return 'pontosan egy sémának kell megfelelnie a oneOf-ban';
29
+ case 'pattern': return `meg kell egyeznie a(z) "${error.params.pattern}" mintával`;
30
+ case 'propertyNames': return `a tulajdonságnevek (${error.params.propertyNames.join(', ')}) érvénytelenek`;
31
+ case 'required': return `rendelkeznie kell a(z) ${error.params.requiredProperties.join(', ')} kötelező tulajdonságokkal`;
32
+ case 'type': return typeof error.params.type === 'string' ? `típusának ${error.params.type} kell lennie` : `típusának ${error.params.type.join(' vagy ')} kell lennie`;
33
+ case 'unevaluatedItems': return 'nem lehetnek nem értékelt elemei';
34
+ case 'unevaluatedProperties': return 'nem lehetnek nem értékelt tulajdonságai';
35
+ case 'uniqueItems': return `nem lehetnek ismétlődő elemei`;
36
+ case '~refine': return error.params.message;
37
+ case '~standard': return `meg kell egyeznie a(z) ${error.params.vendor} sémával`;
38
+ default: return 'ismeretlen validációs hiba történt';
39
+ }
40
+ }
41
+ // deno-coverage-ignore-stop
@@ -0,0 +1,3 @@
1
+ import { TValidationError } from '../../error/index.mjs';
2
+ /** Indonesian (Indonesia) - ISO 639-1 language code 'id' with ISO 3166-1 alpha-2 country code 'ID' for Indonesia. */
3
+ export declare function id_ID(error: TValidationError): string;
@@ -0,0 +1,41 @@
1
+ // deno-fmt-ignore-file
2
+ // deno-coverage-ignore-start
3
+ /** Indonesian (Indonesia) - ISO 639-1 language code 'id' with ISO 3166-1 alpha-2 country code 'ID' for Indonesia. */
4
+ export function id_ID(error) {
5
+ switch (error.keyword) {
6
+ case 'additionalProperties': return 'tidak boleh memiliki properti tambahan';
7
+ case 'anyOf': return 'harus cocok dengan skema di anyOf';
8
+ case 'boolean': return 'skema salah';
9
+ case 'const': return 'harus sama dengan konstanta';
10
+ case 'contains': return 'harus mengandung setidaknya 1 item yang valid';
11
+ case 'dependencies': return `harus memiliki properti ${error.params.dependencies.join(', ')} ketika properti ${error.params.property} ada`;
12
+ case 'dependentRequired': return `harus memiliki properti ${error.params.dependencies.join(', ')} ketika properti ${error.params.property} ada`;
13
+ case 'enum': return 'harus sama dengan salah satu nilai yang diizinkan';
14
+ case 'exclusiveMaximum': return `harus ${error.params.comparison} ${error.params.limit}`;
15
+ case 'exclusiveMinimum': return `harus ${error.params.comparison} ${error.params.limit}`;
16
+ case 'format': return `harus cocok dengan format "${error.params.format}"`;
17
+ case 'if': return `harus cocok dengan skema "${error.params.failingKeyword}"`;
18
+ case 'maxItems': return `tidak boleh memiliki lebih dari ${error.params.limit} item`;
19
+ case 'maxLength': return `tidak boleh memiliki lebih dari ${error.params.limit} karakter`;
20
+ case 'maxProperties': return `tidak boleh memiliki lebih dari ${error.params.limit} properti`;
21
+ case 'maximum': return `harus ${error.params.comparison} ${error.params.limit}`;
22
+ case 'minItems': return `tidak boleh memiliki kurang dari ${error.params.limit} item`;
23
+ case 'minLength': return `tidak boleh memiliki kurang dari ${error.params.limit} karakter`;
24
+ case 'minProperties': return `tidak boleh memiliki kurang dari ${error.params.limit} properti`;
25
+ case 'minimum': return `harus ${error.params.comparison} ${error.params.limit}`;
26
+ case 'multipleOf': return `harus kelipatan dari ${error.params.multipleOf}`;
27
+ case 'not': return 'tidak boleh valid';
28
+ case 'oneOf': return 'harus cocok persis dengan satu skema di oneOf';
29
+ case 'pattern': return `harus cocok dengan pola "${error.params.pattern}"`;
30
+ case 'propertyNames': return `nama properti ${error.params.propertyNames.join(', ')} tidak valid`;
31
+ case 'required': return `harus memiliki properti yang wajib diisi ${error.params.requiredProperties.join(', ')}`;
32
+ case 'type': return typeof error.params.type === 'string' ? `harus berupa ${error.params.type}` : `harus berupa ${error.params.type.join(' atau ')}`;
33
+ case 'unevaluatedItems': return 'tidak boleh memiliki item yang belum dievaluasi';
34
+ case 'unevaluatedProperties': return 'tidak boleh memiliki properti yang belum dievaluasi';
35
+ case 'uniqueItems': return `tidak boleh memiliki item duplikat`;
36
+ case '~refine': return error.params.message;
37
+ case '~standard': return `harus cocok dengan skema ${error.params.vendor}`;
38
+ default: return 'terjadi kesalahan validasi yang tidak diketahui';
39
+ }
40
+ }
41
+ // deno-coverage-ignore-stop
@@ -0,0 +1 @@
1
+ export * as Locale from './_locale.mjs';
@@ -0,0 +1 @@
1
+ export * as Locale from './_locale.mjs';
@@ -0,0 +1,3 @@
1
+ import { TValidationError } from '../../error/index.mjs';
2
+ /** Italian (Italy) - ISO 639-1 language code 'it' with ISO 3166-1 alpha-2 country code 'IT' for Italy. */
3
+ export declare function it_IT(error: TValidationError): string;
@@ -0,0 +1,41 @@
1
+ // deno-fmt-ignore-file
2
+ // deno-coverage-ignore-start
3
+ /** Italian (Italy) - ISO 639-1 language code 'it' with ISO 3166-1 alpha-2 country code 'IT' for Italy. */
4
+ export function it_IT(error) {
5
+ switch (error.keyword) {
6
+ case 'additionalProperties': return 'non deve avere proprietà aggiuntive';
7
+ case 'anyOf': return 'deve corrispondere a uno schema in anyOf';
8
+ case 'boolean': return 'lo schema è falso';
9
+ case 'const': return 'deve essere uguale alla costante';
10
+ case 'contains': return 'deve contenere almeno 1 elemento valido';
11
+ case 'dependencies': return `deve avere le proprietà ${error.params.dependencies.join(', ')} quando la proprietà ${error.params.property} è presente`;
12
+ case 'dependentRequired': return `deve avere le proprietà ${error.params.dependencies.join(', ')} quando la proprietà ${error.params.property} è presente`;
13
+ case 'enum': return 'deve essere uguale a uno dei valori consentiti';
14
+ case 'exclusiveMaximum': return `deve essere ${error.params.comparison} ${error.params.limit}`;
15
+ case 'exclusiveMinimum': return `deve essere ${error.params.comparison} ${error.params.limit}`;
16
+ case 'format': return `deve corrispondere al formato "${error.params.format}"`;
17
+ case 'if': return `deve corrispondere allo schema "${error.params.failingKeyword}"`;
18
+ case 'maxItems': return `non deve avere più di ${error.params.limit} elementi`;
19
+ case 'maxLength': return `non deve avere più di ${error.params.limit} caratteri`;
20
+ case 'maxProperties': return `non deve avere più di ${error.params.limit} proprietà`;
21
+ case 'maximum': return `deve essere ${error.params.comparison} ${error.params.limit}`;
22
+ case 'minItems': return `non deve avere meno di ${error.params.limit} elementi`;
23
+ case 'minLength': return `non deve avere meno di ${error.params.limit} caratteri`;
24
+ case 'minProperties': return `non deve avere meno di ${error.params.limit} proprietà`;
25
+ case 'minimum': return `deve essere ${error.params.comparison} ${error.params.limit}`;
26
+ case 'multipleOf': return `deve essere un multiplo di ${error.params.multipleOf}`;
27
+ case 'not': return 'non deve essere valido';
28
+ case 'oneOf': return 'deve corrispondere esattamente a uno schema in oneOf';
29
+ case 'pattern': return `deve corrispondere al pattern "${error.params.pattern}"`;
30
+ case 'propertyNames': return `i nomi delle proprietà ${error.params.propertyNames.join(', ')} non sono validi`;
31
+ case 'required': return `deve avere le proprietà richieste ${error.params.requiredProperties.join(', ')}`;
32
+ case 'type': return typeof error.params.type === 'string' ? `deve essere ${error.params.type}` : `deve essere ${error.params.type.join(' o ')}`;
33
+ case 'unevaluatedItems': return 'non deve avere elementi non valutati';
34
+ case 'unevaluatedProperties': return 'non deve avere proprietà non valutate';
35
+ case 'uniqueItems': return `non deve avere elementi duplicati`;
36
+ case '~refine': return error.params.message;
37
+ case '~standard': return `deve corrispondere allo schema ${error.params.vendor}`;
38
+ default: return 'si è verificato un errore di validazione sconosciuto';
39
+ }
40
+ }
41
+ // deno-coverage-ignore-stop
@@ -0,0 +1,3 @@
1
+ import { TValidationError } from '../../error/index.mjs';
2
+ /** Japanese (Japan) - ISO 639-1 language code 'ja' with ISO 3166-1 alpha-2 country code 'JP' for Japan. */
3
+ export declare function ja_JP(error: TValidationError): string;
@@ -0,0 +1,41 @@
1
+ // deno-fmt-ignore-file
2
+ // deno-coverage-ignore-start
3
+ /** Japanese (Japan) - ISO 639-1 language code 'ja' with ISO 3166-1 alpha-2 country code 'JP' for Japan. */
4
+ export function ja_JP(error) {
5
+ switch (error.keyword) {
6
+ case 'additionalProperties': return '追加のプロパティを持つことはできません';
7
+ case 'anyOf': return 'anyOf のスキーマと一致する必要があります';
8
+ case 'boolean': return 'スキーマが false です';
9
+ case 'const': return '定数と等しい必要があります';
10
+ case 'contains': return '少なくとも1つの有効なアイテムを含む必要があります';
11
+ case 'dependencies': return `プロパティ ${error.params.property} が存在する場合、プロパティ ${error.params.dependencies.join(', ')} を持つ必要があります`;
12
+ case 'dependentRequired': return `プロパティ ${error.params.property} が存在する場合、プロパティ ${error.params.dependencies.join(', ')} を持つ必要があります`;
13
+ case 'enum': return '許可された値のいずれかと等しい必要があります';
14
+ case 'exclusiveMaximum': return `${error.params.comparison} ${error.params.limit} である必要があります`;
15
+ case 'exclusiveMinimum': return `${error.params.comparison} ${error.params.limit} である必要があります`;
16
+ case 'format': return `フォーマット "${error.params.format}" と一致する必要があります`;
17
+ case 'if': return `"${error.params.failingKeyword}" スキーマと一致する必要があります`;
18
+ case 'maxItems': return `${error.params.limit} 個を超えるアイテムを持つことはできません`;
19
+ case 'maxLength': return `${error.params.limit} 文字を超えることはできません`;
20
+ case 'maxProperties': return `${error.params.limit} 個を超えるプロパティを持つことはできません`;
21
+ case 'maximum': return `${error.params.comparison} ${error.params.limit} である必要があります`;
22
+ case 'minItems': return `${error.params.limit} 個未満のアイテムを持つことはできません`;
23
+ case 'minLength': return `${error.params.limit} 文字未満であることはできません`;
24
+ case 'minProperties': return `${error.params.limit} 個未満のプロパティを持つことはできません`;
25
+ case 'minimum': return `${error.params.comparison} ${error.params.limit} である必要があります`;
26
+ case 'multipleOf': return `${error.params.multipleOf} の倍数である必要があります`;
27
+ case 'not': return '有効であってはなりません';
28
+ case 'oneOf': return 'oneOf のいずれか1つのスキーマと正確に一致する必要があります';
29
+ case 'pattern': return `パターン "${error.params.pattern}" と一致する必要があります`;
30
+ case 'propertyNames': return `プロパティ名 ${error.params.propertyNames.join(', ')} は無効です`;
31
+ case 'required': return `必須プロパティ ${error.params.requiredProperties.join(', ')} を持つ必要があります`;
32
+ case 'type': return typeof error.params.type === 'string' ? `${error.params.type} である必要があります` : `${error.params.type.join(' または ')} のいずれかである必要があります`;
33
+ case 'unevaluatedItems': return '未評価のアイテムを持つことはできません';
34
+ case 'unevaluatedProperties': return '未評価のプロパティを持つことはできません';
35
+ case 'uniqueItems': return `重複するアイテムを持つことはできません`;
36
+ case '~refine': return error.params.message;
37
+ case '~standard': return `${error.params.vendor} スキーマと一致する必要があります`;
38
+ default: return '不明なバリデーションエラーが発生しました';
39
+ }
40
+ }
41
+ // deno-coverage-ignore-stop
@@ -0,0 +1,3 @@
1
+ import { TValidationError } from '../../error/index.mjs';
2
+ /** Korean (South Korea) - ISO 639-1 language code 'ko' with ISO 3166-1 alpha-2 country code 'KR' for South Korea. */
3
+ export declare function ko_KR(error: TValidationError): string;
@@ -0,0 +1,41 @@
1
+ // deno-fmt-ignore-file
2
+ // deno-coverage-ignore-start
3
+ /** Korean (South Korea) - ISO 639-1 language code 'ko' with ISO 3166-1 alpha-2 country code 'KR' for South Korea. */
4
+ export function ko_KR(error) {
5
+ switch (error.keyword) {
6
+ case 'additionalProperties': return '추가 속성을 가질 수 없습니다';
7
+ case 'anyOf': return 'anyOf의 스키마와 일치해야 합니다';
8
+ case 'boolean': return '스키마가 잘못되었습니다';
9
+ case 'const': return '상수와 같아야 합니다';
10
+ case 'contains': return '최소 1개의 유효한 항목을 포함해야 합니다';
11
+ case 'dependencies': return `속성 ${error.params.property}이(가) 존재할 때 속성 ${error.params.dependencies.join(', ')}을(를) 가지고 있어야 합니다`;
12
+ case 'dependentRequired': return `속성 ${error.params.property}이(가) 존재할 때 속성 ${error.params.dependencies.join(', ')}을(를) 가지고 있어야 합니다`;
13
+ case 'enum': return '허용된 값 중 하나와 같아야 합니다';
14
+ case 'exclusiveMaximum': return `${error.params.comparison} ${error.params.limit}이어야 합니다`;
15
+ case 'exclusiveMinimum': return `${error.params.comparison} ${error.params.limit}이어야 합니다`;
16
+ case 'format': return `"${error.params.format}" 형식과 일치해야 합니다`;
17
+ case 'if': return `"${error.params.failingKeyword}" 스키마와 일치해야 합니다`;
18
+ case 'maxItems': return `항목이 ${error.params.limit}개보다 많을 수 없습니다`;
19
+ case 'maxLength': return `글자 수가 ${error.params.limit}개보다 많을 수 없습니다`;
20
+ case 'maxProperties': return `속성이 ${error.params.limit}개보다 많을 수 없습니다`;
21
+ case 'maximum': return `${error.params.comparison} ${error.params.limit}이어야 합니다`;
22
+ case 'minItems': return `항목이 ${error.params.limit}개보다 적을 수 없습니다`;
23
+ case 'minLength': return `글자 수가 ${error.params.limit}개보다 적을 수 없습니다`;
24
+ case 'minProperties': return `속성이 ${error.params.limit}개보다 적을 수 없습니다`;
25
+ case 'minimum': return `${error.params.comparison} ${error.params.limit}이어야 합니다`;
26
+ case 'multipleOf': return `${error.params.multipleOf}의 배수여야 합니다`;
27
+ case 'not': return '유효하지 않아야 합니다';
28
+ case 'oneOf': return 'oneOf의 스키마 중 정확히 하나와 일치해야 합니다';
29
+ case 'pattern': return `패턴 "${error.params.pattern}"과 일치해야 합니다`;
30
+ case 'propertyNames': return `속성 이름 ${error.params.propertyNames.join(', ')}이(가) 유효하지 않습니다`;
31
+ case 'required': return `필수 속성 ${error.params.requiredProperties.join(', ')}을(를) 가지고 있어야 합니다`;
32
+ case 'type': return typeof error.params.type === 'string' ? `${error.params.type}이어야 합니다` : `${error.params.type.join(' 또는 ')} 중 하나여야 합니다`;
33
+ case 'unevaluatedItems': return '평가되지 않은 항목을 가질 수 없습니다';
34
+ case 'unevaluatedProperties': return '평가되지 않은 속성을 가질 수 없습니다';
35
+ case 'uniqueItems': return `중복 항목을 가질 수 없습니다`;
36
+ case '~refine': return error.params.message;
37
+ case '~standard': return `${error.params.vendor} 스키마와 일치해야 합니다`;
38
+ default: return '알 수 없는 유효성 검사 오류가 발생했습니다';
39
+ }
40
+ }
41
+ // deno-coverage-ignore-stop
@@ -0,0 +1,3 @@
1
+ import { TValidationError } from '../../error/index.mjs';
2
+ /** Malay (Malaysia) - ISO 639-1 language code 'ms' with ISO 3166-1 alpha-2 country code 'MY' for Malaysia. */
3
+ export declare function ms_MY(error: TValidationError): string;
@@ -0,0 +1,41 @@
1
+ // deno-fmt-ignore-file
2
+ // deno-coverage-ignore-start
3
+ /** Malay (Malaysia) - ISO 639-1 language code 'ms' with ISO 3166-1 alpha-2 country code 'MY' for Malaysia. */
4
+ export function ms_MY(error) {
5
+ switch (error.keyword) {
6
+ case 'additionalProperties': return 'tidak boleh mempunyai sifat tambahan';
7
+ case 'anyOf': return 'mesti sepadan dengan skema dalam anyOf';
8
+ case 'boolean': return 'skema adalah palsu';
9
+ case 'const': return 'mesti sama dengan pemalar';
10
+ case 'contains': return 'mesti mengandungi sekurang-kurangnya 1 item yang sah';
11
+ case 'dependencies': return `mesti mempunyai sifat ${error.params.dependencies.join(', ')} apabila sifat ${error.params.property} hadir`;
12
+ case 'dependentRequired': return `mesti mempunyai sifat ${error.params.dependencies.join(', ')} apabila sifat ${error.params.property} hadir`;
13
+ case 'enum': return 'mesti sama dengan salah satu nilai yang dibenarkan';
14
+ case 'exclusiveMaximum': return `mesti ${error.params.comparison} ${error.params.limit}`;
15
+ case 'exclusiveMinimum': return `mesti ${error.params.comparison} ${error.params.limit}`;
16
+ case 'format': return `mesti sepadan dengan format "${error.params.format}"`;
17
+ case 'if': return `mesti sepadan dengan skema "${error.params.failingKeyword}"`;
18
+ case 'maxItems': return `tidak boleh mempunyai lebih daripada ${error.params.limit} item`;
19
+ case 'maxLength': return `tidak boleh mempunyai lebih daripada ${error.params.limit} aksara`;
20
+ case 'maxProperties': return `tidak boleh mempunyai lebih daripada ${error.params.limit} sifat`;
21
+ case 'maximum': return `mesti ${error.params.comparison} ${error.params.limit}`;
22
+ case 'minItems': return `tidak boleh mempunyai kurang daripada ${error.params.limit} item`;
23
+ case 'minLength': return `tidak boleh mempunyai kurang daripada ${error.params.limit} aksara`;
24
+ case 'minProperties': return `tidak boleh mempunyai kurang daripada ${error.params.limit} sifat`;
25
+ case 'minimum': return `mesti ${error.params.comparison} ${error.params.limit}`;
26
+ case 'multipleOf': return `mesti gandaan ${error.params.multipleOf}`;
27
+ case 'not': return 'tidak boleh sah';
28
+ case 'oneOf': return 'mesti sepadan dengan tepat satu skema dalam oneOf';
29
+ case 'pattern': return `mesti sepadan dengan corak "${error.params.pattern}"`;
30
+ case 'propertyNames': return `nama sifat ${error.params.propertyNames.join(', ')} tidak sah`;
31
+ case 'required': return `mesti mempunyai sifat yang diperlukan ${error.params.requiredProperties.join(', ')}`;
32
+ case 'type': return typeof error.params.type === 'string' ? `mesti ${error.params.type}` : `mesti sama ada ${error.params.type.join(' atau ')}`;
33
+ case 'unevaluatedItems': return 'tidak boleh mempunyai item yang tidak dinilai';
34
+ case 'unevaluatedProperties': return 'tidak boleh mempunyai sifat yang tidak dinilai';
35
+ case 'uniqueItems': return `tidak boleh mempunyai item pendua`;
36
+ case '~refine': return error.params.message;
37
+ case '~standard': return `mesti sepadan dengan skema ${error.params.vendor}`;
38
+ default: return 'ralat pengesahan yang tidak diketahui berlaku';
39
+ }
40
+ }
41
+ // deno-coverage-ignore-stop
@@ -0,0 +1,3 @@
1
+ import { TValidationError } from '../../error/index.mjs';
2
+ /** Dutch (Netherlands) - ISO 639-1 language code 'nl' with ISO 3166-1 alpha-2 country code 'NL' for Netherlands. */
3
+ export declare function nl_NL(error: TValidationError): string;