@marshulll/openclaw-wecom 0.1.6 → 0.1.8

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 (677) hide show
  1. package/README.en.md +3 -0
  2. package/README.md +3 -0
  3. package/README.zh.md +3 -0
  4. package/docs/INSTALL.md +3 -0
  5. package/node_modules/fast-xml-parser/CHANGELOG.md +606 -0
  6. package/node_modules/fast-xml-parser/LICENSE +21 -0
  7. package/node_modules/fast-xml-parser/README.md +237 -0
  8. package/node_modules/fast-xml-parser/package.json +72 -0
  9. package/node_modules/fast-xml-parser/src/cli/cli.js +93 -0
  10. package/node_modules/fast-xml-parser/src/cli/man.js +12 -0
  11. package/node_modules/fast-xml-parser/src/cli/read.js +92 -0
  12. package/node_modules/fast-xml-parser/src/fxp.d.ts +418 -0
  13. package/node_modules/fast-xml-parser/src/fxp.js +11 -0
  14. package/node_modules/fast-xml-parser/src/ignoreAttributes.js +20 -0
  15. package/node_modules/fast-xml-parser/src/util.js +72 -0
  16. package/node_modules/fast-xml-parser/src/v5/CharsSymbol.js +16 -0
  17. package/node_modules/fast-xml-parser/src/v5/EntitiesParser.js +107 -0
  18. package/node_modules/fast-xml-parser/src/v5/OptionsBuilder.js +64 -0
  19. package/node_modules/fast-xml-parser/src/v5/OutputBuilders/BaseOutputBuilder.js +71 -0
  20. package/node_modules/fast-xml-parser/src/v5/OutputBuilders/JsArrBuilder.js +103 -0
  21. package/node_modules/fast-xml-parser/src/v5/OutputBuilders/JsMinArrBuilder.js +102 -0
  22. package/node_modules/fast-xml-parser/src/v5/OutputBuilders/JsObjBuilder.js +156 -0
  23. package/node_modules/fast-xml-parser/src/v5/OutputBuilders/ParserOptionsBuilder.js +99 -0
  24. package/node_modules/fast-xml-parser/src/v5/Report.js +0 -0
  25. package/node_modules/fast-xml-parser/src/v5/TagPath.js +81 -0
  26. package/node_modules/fast-xml-parser/src/v5/TagPathMatcher.js +15 -0
  27. package/node_modules/fast-xml-parser/src/v5/XMLParser.js +85 -0
  28. package/node_modules/fast-xml-parser/src/v5/Xml2JsParser.js +237 -0
  29. package/node_modules/fast-xml-parser/src/v5/XmlPartReader.js +216 -0
  30. package/node_modules/fast-xml-parser/src/v5/XmlSpecialTagsReader.js +118 -0
  31. package/node_modules/fast-xml-parser/src/v5/inputSource/BufferSource.js +118 -0
  32. package/node_modules/fast-xml-parser/src/v5/inputSource/StringSource.js +123 -0
  33. package/node_modules/fast-xml-parser/src/v5/valueParsers/EntitiesParser.js +107 -0
  34. package/node_modules/fast-xml-parser/src/v5/valueParsers/booleanParser.js +23 -0
  35. package/node_modules/fast-xml-parser/src/v5/valueParsers/booleanParserExt.js +20 -0
  36. package/node_modules/fast-xml-parser/src/v5/valueParsers/currency.js +40 -0
  37. package/node_modules/fast-xml-parser/src/v5/valueParsers/join.js +14 -0
  38. package/node_modules/fast-xml-parser/src/v5/valueParsers/number.js +16 -0
  39. package/node_modules/fast-xml-parser/src/v5/valueParsers/trim.js +8 -0
  40. package/node_modules/fast-xml-parser/src/v6/CharsSymbol.js +16 -0
  41. package/node_modules/fast-xml-parser/src/v6/EntitiesParser.js +104 -0
  42. package/node_modules/fast-xml-parser/src/v6/OptionsBuilder.js +61 -0
  43. package/node_modules/fast-xml-parser/src/v6/OutputBuilders/BaseOutputBuilder.js +69 -0
  44. package/node_modules/fast-xml-parser/src/v6/OutputBuilders/JsArrBuilder.js +103 -0
  45. package/node_modules/fast-xml-parser/src/v6/OutputBuilders/JsMinArrBuilder.js +100 -0
  46. package/node_modules/fast-xml-parser/src/v6/OutputBuilders/JsObjBuilder.js +154 -0
  47. package/node_modules/fast-xml-parser/src/v6/OutputBuilders/ParserOptionsBuilder.js +94 -0
  48. package/node_modules/fast-xml-parser/src/v6/Report.js +0 -0
  49. package/node_modules/fast-xml-parser/src/v6/TagPath.js +81 -0
  50. package/node_modules/fast-xml-parser/src/v6/TagPathMatcher.js +13 -0
  51. package/node_modules/fast-xml-parser/src/v6/XMLParser.js +83 -0
  52. package/node_modules/fast-xml-parser/src/v6/Xml2JsParser.js +235 -0
  53. package/node_modules/fast-xml-parser/src/v6/XmlPartReader.js +210 -0
  54. package/node_modules/fast-xml-parser/src/v6/XmlSpecialTagsReader.js +111 -0
  55. package/node_modules/fast-xml-parser/src/v6/inputSource/BufferSource.js +116 -0
  56. package/node_modules/fast-xml-parser/src/v6/inputSource/StringSource.js +121 -0
  57. package/node_modules/fast-xml-parser/src/v6/valueParsers/EntitiesParser.js +105 -0
  58. package/node_modules/fast-xml-parser/src/v6/valueParsers/booleanParser.js +22 -0
  59. package/node_modules/fast-xml-parser/src/v6/valueParsers/booleanParserExt.js +19 -0
  60. package/node_modules/fast-xml-parser/src/v6/valueParsers/currency.js +38 -0
  61. package/node_modules/fast-xml-parser/src/v6/valueParsers/join.js +13 -0
  62. package/node_modules/fast-xml-parser/src/v6/valueParsers/number.js +14 -0
  63. package/node_modules/fast-xml-parser/src/v6/valueParsers/trim.js +6 -0
  64. package/node_modules/fast-xml-parser/src/validator.js +425 -0
  65. package/node_modules/fast-xml-parser/src/xmlbuilder/json2xml.js +286 -0
  66. package/node_modules/fast-xml-parser/src/xmlbuilder/orderedJs2Xml.js +135 -0
  67. package/node_modules/fast-xml-parser/src/xmlbuilder/prettifyJs2Xml.js +0 -0
  68. package/node_modules/fast-xml-parser/src/xmlparser/DocTypeReader.js +153 -0
  69. package/node_modules/fast-xml-parser/src/xmlparser/OptionsBuilder.js +48 -0
  70. package/node_modules/fast-xml-parser/src/xmlparser/OrderedObjParser.js +606 -0
  71. package/node_modules/fast-xml-parser/src/xmlparser/XMLParser.js +58 -0
  72. package/node_modules/fast-xml-parser/src/xmlparser/node2json.js +113 -0
  73. package/node_modules/fast-xml-parser/src/xmlparser/xmlNode.js +25 -0
  74. package/node_modules/strnum/.vscode/launch.json +25 -0
  75. package/node_modules/strnum/CHANGELOG.md +22 -0
  76. package/node_modules/strnum/LICENSE +21 -0
  77. package/node_modules/strnum/README.md +97 -0
  78. package/node_modules/strnum/package.json +30 -0
  79. package/node_modules/strnum/strnum.js +111 -0
  80. package/node_modules/strnum/strnum.test.js +165 -0
  81. package/node_modules/zod/LICENSE +21 -0
  82. package/node_modules/zod/README.md +208 -0
  83. package/node_modules/zod/index.cjs +33 -0
  84. package/node_modules/zod/index.d.cts +4 -0
  85. package/node_modules/zod/index.d.ts +4 -0
  86. package/node_modules/zod/index.js +4 -0
  87. package/node_modules/zod/package.json +118 -0
  88. package/node_modules/zod/src/index.ts +4 -0
  89. package/node_modules/zod/src/v3/ZodError.ts +330 -0
  90. package/node_modules/zod/src/v3/benchmarks/datetime.ts +58 -0
  91. package/node_modules/zod/src/v3/benchmarks/discriminatedUnion.ts +80 -0
  92. package/node_modules/zod/src/v3/benchmarks/index.ts +59 -0
  93. package/node_modules/zod/src/v3/benchmarks/ipv4.ts +57 -0
  94. package/node_modules/zod/src/v3/benchmarks/object.ts +69 -0
  95. package/node_modules/zod/src/v3/benchmarks/primitives.ts +162 -0
  96. package/node_modules/zod/src/v3/benchmarks/realworld.ts +63 -0
  97. package/node_modules/zod/src/v3/benchmarks/string.ts +55 -0
  98. package/node_modules/zod/src/v3/benchmarks/union.ts +80 -0
  99. package/node_modules/zod/src/v3/errors.ts +13 -0
  100. package/node_modules/zod/src/v3/external.ts +6 -0
  101. package/node_modules/zod/src/v3/helpers/enumUtil.ts +17 -0
  102. package/node_modules/zod/src/v3/helpers/errorUtil.ts +8 -0
  103. package/node_modules/zod/src/v3/helpers/parseUtil.ts +176 -0
  104. package/node_modules/zod/src/v3/helpers/partialUtil.ts +34 -0
  105. package/node_modules/zod/src/v3/helpers/typeAliases.ts +2 -0
  106. package/node_modules/zod/src/v3/helpers/util.ts +224 -0
  107. package/node_modules/zod/src/v3/index.ts +4 -0
  108. package/node_modules/zod/src/v3/locales/en.ts +124 -0
  109. package/node_modules/zod/src/v3/standard-schema.ts +113 -0
  110. package/node_modules/zod/src/v3/tests/Mocker.ts +54 -0
  111. package/node_modules/zod/src/v3/tests/all-errors.test.ts +157 -0
  112. package/node_modules/zod/src/v3/tests/anyunknown.test.ts +28 -0
  113. package/node_modules/zod/src/v3/tests/array.test.ts +71 -0
  114. package/node_modules/zod/src/v3/tests/async-parsing.test.ts +388 -0
  115. package/node_modules/zod/src/v3/tests/async-refinements.test.ts +46 -0
  116. package/node_modules/zod/src/v3/tests/base.test.ts +29 -0
  117. package/node_modules/zod/src/v3/tests/bigint.test.ts +55 -0
  118. package/node_modules/zod/src/v3/tests/branded.test.ts +53 -0
  119. package/node_modules/zod/src/v3/tests/catch.test.ts +220 -0
  120. package/node_modules/zod/src/v3/tests/coerce.test.ts +133 -0
  121. package/node_modules/zod/src/v3/tests/complex.test.ts +56 -0
  122. package/node_modules/zod/src/v3/tests/custom.test.ts +31 -0
  123. package/node_modules/zod/src/v3/tests/date.test.ts +32 -0
  124. package/node_modules/zod/src/v3/tests/deepmasking.test.ts +186 -0
  125. package/node_modules/zod/src/v3/tests/default.test.ts +112 -0
  126. package/node_modules/zod/src/v3/tests/description.test.ts +33 -0
  127. package/node_modules/zod/src/v3/tests/discriminated-unions.test.ts +315 -0
  128. package/node_modules/zod/src/v3/tests/enum.test.ts +80 -0
  129. package/node_modules/zod/src/v3/tests/error.test.ts +551 -0
  130. package/node_modules/zod/src/v3/tests/firstparty.test.ts +87 -0
  131. package/node_modules/zod/src/v3/tests/firstpartyschematypes.test.ts +21 -0
  132. package/node_modules/zod/src/v3/tests/function.test.ts +257 -0
  133. package/node_modules/zod/src/v3/tests/generics.test.ts +48 -0
  134. package/node_modules/zod/src/v3/tests/instanceof.test.ts +37 -0
  135. package/node_modules/zod/src/v3/tests/intersection.test.ts +110 -0
  136. package/node_modules/zod/src/v3/tests/language-server.source.ts +76 -0
  137. package/node_modules/zod/src/v3/tests/language-server.test.ts +207 -0
  138. package/node_modules/zod/src/v3/tests/literal.test.ts +36 -0
  139. package/node_modules/zod/src/v3/tests/map.test.ts +110 -0
  140. package/node_modules/zod/src/v3/tests/masking.test.ts +4 -0
  141. package/node_modules/zod/src/v3/tests/mocker.test.ts +19 -0
  142. package/node_modules/zod/src/v3/tests/nan.test.ts +21 -0
  143. package/node_modules/zod/src/v3/tests/nativeEnum.test.ts +87 -0
  144. package/node_modules/zod/src/v3/tests/nullable.test.ts +42 -0
  145. package/node_modules/zod/src/v3/tests/number.test.ts +176 -0
  146. package/node_modules/zod/src/v3/tests/object-augmentation.test.ts +29 -0
  147. package/node_modules/zod/src/v3/tests/object-in-es5-env.test.ts +29 -0
  148. package/node_modules/zod/src/v3/tests/object.test.ts +434 -0
  149. package/node_modules/zod/src/v3/tests/optional.test.ts +42 -0
  150. package/node_modules/zod/src/v3/tests/parseUtil.test.ts +23 -0
  151. package/node_modules/zod/src/v3/tests/parser.test.ts +41 -0
  152. package/node_modules/zod/src/v3/tests/partials.test.ts +243 -0
  153. package/node_modules/zod/src/v3/tests/pickomit.test.ts +111 -0
  154. package/node_modules/zod/src/v3/tests/pipeline.test.ts +29 -0
  155. package/node_modules/zod/src/v3/tests/preprocess.test.ts +186 -0
  156. package/node_modules/zod/src/v3/tests/primitive.test.ts +440 -0
  157. package/node_modules/zod/src/v3/tests/promise.test.ts +90 -0
  158. package/node_modules/zod/src/v3/tests/readonly.test.ts +194 -0
  159. package/node_modules/zod/src/v3/tests/record.test.ts +171 -0
  160. package/node_modules/zod/src/v3/tests/recursive.test.ts +197 -0
  161. package/node_modules/zod/src/v3/tests/refine.test.ts +313 -0
  162. package/node_modules/zod/src/v3/tests/safeparse.test.ts +27 -0
  163. package/node_modules/zod/src/v3/tests/set.test.ts +142 -0
  164. package/node_modules/zod/src/v3/tests/standard-schema.test.ts +83 -0
  165. package/node_modules/zod/src/v3/tests/string.test.ts +916 -0
  166. package/node_modules/zod/src/v3/tests/transformer.test.ts +233 -0
  167. package/node_modules/zod/src/v3/tests/tuple.test.ts +90 -0
  168. package/node_modules/zod/src/v3/tests/unions.test.ts +57 -0
  169. package/node_modules/zod/src/v3/tests/validations.test.ts +133 -0
  170. package/node_modules/zod/src/v3/tests/void.test.ts +15 -0
  171. package/node_modules/zod/src/v3/types.ts +5136 -0
  172. package/node_modules/zod/src/v4/classic/checks.ts +30 -0
  173. package/node_modules/zod/src/v4/classic/coerce.ts +27 -0
  174. package/node_modules/zod/src/v4/classic/compat.ts +66 -0
  175. package/node_modules/zod/src/v4/classic/errors.ts +75 -0
  176. package/node_modules/zod/src/v4/classic/external.ts +50 -0
  177. package/node_modules/zod/src/v4/classic/index.ts +5 -0
  178. package/node_modules/zod/src/v4/classic/iso.ts +90 -0
  179. package/node_modules/zod/src/v4/classic/parse.ts +33 -0
  180. package/node_modules/zod/src/v4/classic/schemas.ts +2054 -0
  181. package/node_modules/zod/src/v4/classic/tests/anyunknown.test.ts +26 -0
  182. package/node_modules/zod/src/v4/classic/tests/array.test.ts +264 -0
  183. package/node_modules/zod/src/v4/classic/tests/assignability.test.ts +210 -0
  184. package/node_modules/zod/src/v4/classic/tests/async-parsing.test.ts +381 -0
  185. package/node_modules/zod/src/v4/classic/tests/async-refinements.test.ts +68 -0
  186. package/node_modules/zod/src/v4/classic/tests/base.test.ts +7 -0
  187. package/node_modules/zod/src/v4/classic/tests/bigint.test.ts +54 -0
  188. package/node_modules/zod/src/v4/classic/tests/brand.test.ts +63 -0
  189. package/node_modules/zod/src/v4/classic/tests/catch.test.ts +252 -0
  190. package/node_modules/zod/src/v4/classic/tests/coalesce.test.ts +20 -0
  191. package/node_modules/zod/src/v4/classic/tests/coerce.test.ts +160 -0
  192. package/node_modules/zod/src/v4/classic/tests/continuability.test.ts +352 -0
  193. package/node_modules/zod/src/v4/classic/tests/custom.test.ts +40 -0
  194. package/node_modules/zod/src/v4/classic/tests/date.test.ts +31 -0
  195. package/node_modules/zod/src/v4/classic/tests/datetime.test.ts +296 -0
  196. package/node_modules/zod/src/v4/classic/tests/default.test.ts +313 -0
  197. package/node_modules/zod/src/v4/classic/tests/description.test.ts +32 -0
  198. package/node_modules/zod/src/v4/classic/tests/discriminated-unions.test.ts +619 -0
  199. package/node_modules/zod/src/v4/classic/tests/enum.test.ts +285 -0
  200. package/node_modules/zod/src/v4/classic/tests/error-utils.test.ts +527 -0
  201. package/node_modules/zod/src/v4/classic/tests/error.test.ts +711 -0
  202. package/node_modules/zod/src/v4/classic/tests/file.test.ts +91 -0
  203. package/node_modules/zod/src/v4/classic/tests/firstparty.test.ts +175 -0
  204. package/node_modules/zod/src/v4/classic/tests/function.test.ts +268 -0
  205. package/node_modules/zod/src/v4/classic/tests/generics.test.ts +72 -0
  206. package/node_modules/zod/src/v4/classic/tests/index.test.ts +829 -0
  207. package/node_modules/zod/src/v4/classic/tests/instanceof.test.ts +34 -0
  208. package/node_modules/zod/src/v4/classic/tests/intersection.test.ts +171 -0
  209. package/node_modules/zod/src/v4/classic/tests/json.test.ts +108 -0
  210. package/node_modules/zod/src/v4/classic/tests/lazy.test.ts +227 -0
  211. package/node_modules/zod/src/v4/classic/tests/literal.test.ts +92 -0
  212. package/node_modules/zod/src/v4/classic/tests/map.test.ts +196 -0
  213. package/node_modules/zod/src/v4/classic/tests/nan.test.ts +21 -0
  214. package/node_modules/zod/src/v4/classic/tests/nested-refine.test.ts +168 -0
  215. package/node_modules/zod/src/v4/classic/tests/nonoptional.test.ts +86 -0
  216. package/node_modules/zod/src/v4/classic/tests/nullable.test.ts +22 -0
  217. package/node_modules/zod/src/v4/classic/tests/number.test.ts +247 -0
  218. package/node_modules/zod/src/v4/classic/tests/object.test.ts +563 -0
  219. package/node_modules/zod/src/v4/classic/tests/optional.test.ts +123 -0
  220. package/node_modules/zod/src/v4/classic/tests/partial.test.ts +147 -0
  221. package/node_modules/zod/src/v4/classic/tests/pickomit.test.ts +127 -0
  222. package/node_modules/zod/src/v4/classic/tests/pipe.test.ts +81 -0
  223. package/node_modules/zod/src/v4/classic/tests/prefault.test.ts +37 -0
  224. package/node_modules/zod/src/v4/classic/tests/preprocess.test.ts +298 -0
  225. package/node_modules/zod/src/v4/classic/tests/primitive.test.ts +175 -0
  226. package/node_modules/zod/src/v4/classic/tests/promise.test.ts +81 -0
  227. package/node_modules/zod/src/v4/classic/tests/prototypes.test.ts +23 -0
  228. package/node_modules/zod/src/v4/classic/tests/readonly.test.ts +252 -0
  229. package/node_modules/zod/src/v4/classic/tests/record.test.ts +342 -0
  230. package/node_modules/zod/src/v4/classic/tests/recursive-types.test.ts +356 -0
  231. package/node_modules/zod/src/v4/classic/tests/refine.test.ts +532 -0
  232. package/node_modules/zod/src/v4/classic/tests/registries.test.ts +204 -0
  233. package/node_modules/zod/src/v4/classic/tests/set.test.ts +179 -0
  234. package/node_modules/zod/src/v4/classic/tests/standard-schema.test.ts +57 -0
  235. package/node_modules/zod/src/v4/classic/tests/string-formats.test.ts +109 -0
  236. package/node_modules/zod/src/v4/classic/tests/string.test.ts +881 -0
  237. package/node_modules/zod/src/v4/classic/tests/stringbool.test.ts +66 -0
  238. package/node_modules/zod/src/v4/classic/tests/template-literal.test.ts +758 -0
  239. package/node_modules/zod/src/v4/classic/tests/to-json-schema.test.ts +2314 -0
  240. package/node_modules/zod/src/v4/classic/tests/transform.test.ts +250 -0
  241. package/node_modules/zod/src/v4/classic/tests/tuple.test.ts +163 -0
  242. package/node_modules/zod/src/v4/classic/tests/union.test.ts +94 -0
  243. package/node_modules/zod/src/v4/classic/tests/validations.test.ts +283 -0
  244. package/node_modules/zod/src/v4/classic/tests/void.test.ts +12 -0
  245. package/node_modules/zod/src/v4/core/api.ts +1594 -0
  246. package/node_modules/zod/src/v4/core/checks.ts +1283 -0
  247. package/node_modules/zod/src/v4/core/config.ts +15 -0
  248. package/node_modules/zod/src/v4/core/core.ts +134 -0
  249. package/node_modules/zod/src/v4/core/doc.ts +44 -0
  250. package/node_modules/zod/src/v4/core/errors.ts +424 -0
  251. package/node_modules/zod/src/v4/core/function.ts +176 -0
  252. package/node_modules/zod/src/v4/core/index.ts +15 -0
  253. package/node_modules/zod/src/v4/core/json-schema.ts +143 -0
  254. package/node_modules/zod/src/v4/core/parse.ts +94 -0
  255. package/node_modules/zod/src/v4/core/regexes.ts +135 -0
  256. package/node_modules/zod/src/v4/core/registries.ts +96 -0
  257. package/node_modules/zod/src/v4/core/schemas.ts +3842 -0
  258. package/node_modules/zod/src/v4/core/standard-schema.ts +64 -0
  259. package/node_modules/zod/src/v4/core/tests/index.test.ts +46 -0
  260. package/node_modules/zod/src/v4/core/tests/locales/be.test.ts +124 -0
  261. package/node_modules/zod/src/v4/core/tests/locales/en.test.ts +22 -0
  262. package/node_modules/zod/src/v4/core/tests/locales/ru.test.ts +128 -0
  263. package/node_modules/zod/src/v4/core/tests/locales/tr.test.ts +69 -0
  264. package/node_modules/zod/src/v4/core/to-json-schema.ts +977 -0
  265. package/node_modules/zod/src/v4/core/util.ts +775 -0
  266. package/node_modules/zod/src/v4/core/versions.ts +5 -0
  267. package/node_modules/zod/src/v4/core/zsf.ts +323 -0
  268. package/node_modules/zod/src/v4/index.ts +4 -0
  269. package/node_modules/zod/src/v4/locales/ar.ts +125 -0
  270. package/node_modules/zod/src/v4/locales/az.ts +121 -0
  271. package/node_modules/zod/src/v4/locales/be.ts +184 -0
  272. package/node_modules/zod/src/v4/locales/ca.ts +127 -0
  273. package/node_modules/zod/src/v4/locales/cs.ts +142 -0
  274. package/node_modules/zod/src/v4/locales/de.ts +124 -0
  275. package/node_modules/zod/src/v4/locales/en.ts +127 -0
  276. package/node_modules/zod/src/v4/locales/eo.ts +125 -0
  277. package/node_modules/zod/src/v4/locales/es.ts +125 -0
  278. package/node_modules/zod/src/v4/locales/fa.ts +134 -0
  279. package/node_modules/zod/src/v4/locales/fi.ts +131 -0
  280. package/node_modules/zod/src/v4/locales/fr-CA.ts +126 -0
  281. package/node_modules/zod/src/v4/locales/fr.ts +124 -0
  282. package/node_modules/zod/src/v4/locales/he.ts +125 -0
  283. package/node_modules/zod/src/v4/locales/hu.ts +126 -0
  284. package/node_modules/zod/src/v4/locales/id.ts +125 -0
  285. package/node_modules/zod/src/v4/locales/index.ts +39 -0
  286. package/node_modules/zod/src/v4/locales/it.ts +125 -0
  287. package/node_modules/zod/src/v4/locales/ja.ts +122 -0
  288. package/node_modules/zod/src/v4/locales/kh.ts +126 -0
  289. package/node_modules/zod/src/v4/locales/ko.ts +131 -0
  290. package/node_modules/zod/src/v4/locales/mk.ts +127 -0
  291. package/node_modules/zod/src/v4/locales/ms.ts +124 -0
  292. package/node_modules/zod/src/v4/locales/nl.ts +126 -0
  293. package/node_modules/zod/src/v4/locales/no.ts +124 -0
  294. package/node_modules/zod/src/v4/locales/ota.ts +125 -0
  295. package/node_modules/zod/src/v4/locales/pl.ts +126 -0
  296. package/node_modules/zod/src/v4/locales/ps.ts +133 -0
  297. package/node_modules/zod/src/v4/locales/pt.ts +123 -0
  298. package/node_modules/zod/src/v4/locales/ru.ts +184 -0
  299. package/node_modules/zod/src/v4/locales/sl.ts +126 -0
  300. package/node_modules/zod/src/v4/locales/sv.ts +127 -0
  301. package/node_modules/zod/src/v4/locales/ta.ts +125 -0
  302. package/node_modules/zod/src/v4/locales/th.ts +126 -0
  303. package/node_modules/zod/src/v4/locales/tr.ts +121 -0
  304. package/node_modules/zod/src/v4/locales/ua.ts +126 -0
  305. package/node_modules/zod/src/v4/locales/ur.ts +126 -0
  306. package/node_modules/zod/src/v4/locales/vi.ts +125 -0
  307. package/node_modules/zod/src/v4/locales/zh-CN.ts +123 -0
  308. package/node_modules/zod/src/v4/locales/zh-TW.ts +125 -0
  309. package/node_modules/zod/src/v4/mini/checks.ts +32 -0
  310. package/node_modules/zod/src/v4/mini/coerce.ts +22 -0
  311. package/node_modules/zod/src/v4/mini/external.ts +40 -0
  312. package/node_modules/zod/src/v4/mini/index.ts +3 -0
  313. package/node_modules/zod/src/v4/mini/iso.ts +62 -0
  314. package/node_modules/zod/src/v4/mini/parse.ts +1 -0
  315. package/node_modules/zod/src/v4/mini/schemas.ts +1579 -0
  316. package/node_modules/zod/src/v4/mini/tests/assignability.test.ts +129 -0
  317. package/node_modules/zod/src/v4/mini/tests/brand.test.ts +51 -0
  318. package/node_modules/zod/src/v4/mini/tests/checks.test.ts +144 -0
  319. package/node_modules/zod/src/v4/mini/tests/computed.test.ts +36 -0
  320. package/node_modules/zod/src/v4/mini/tests/error.test.ts +22 -0
  321. package/node_modules/zod/src/v4/mini/tests/functions.test.ts +43 -0
  322. package/node_modules/zod/src/v4/mini/tests/index.test.ts +871 -0
  323. package/node_modules/zod/src/v4/mini/tests/number.test.ts +95 -0
  324. package/node_modules/zod/src/v4/mini/tests/object.test.ts +185 -0
  325. package/node_modules/zod/src/v4/mini/tests/prototypes.test.ts +43 -0
  326. package/node_modules/zod/src/v4/mini/tests/recursive-types.test.ts +275 -0
  327. package/node_modules/zod/src/v4/mini/tests/string.test.ts +299 -0
  328. package/node_modules/zod/src/v4-mini/index.ts +1 -0
  329. package/node_modules/zod/v3/ZodError.cjs +138 -0
  330. package/node_modules/zod/v3/ZodError.d.cts +164 -0
  331. package/node_modules/zod/v3/ZodError.d.ts +164 -0
  332. package/node_modules/zod/v3/ZodError.js +133 -0
  333. package/node_modules/zod/v3/errors.cjs +17 -0
  334. package/node_modules/zod/v3/errors.d.cts +5 -0
  335. package/node_modules/zod/v3/errors.d.ts +5 -0
  336. package/node_modules/zod/v3/errors.js +9 -0
  337. package/node_modules/zod/v3/external.cjs +22 -0
  338. package/node_modules/zod/v3/external.d.cts +6 -0
  339. package/node_modules/zod/v3/external.d.ts +6 -0
  340. package/node_modules/zod/v3/external.js +6 -0
  341. package/node_modules/zod/v3/helpers/enumUtil.cjs +2 -0
  342. package/node_modules/zod/v3/helpers/enumUtil.d.cts +8 -0
  343. package/node_modules/zod/v3/helpers/enumUtil.d.ts +8 -0
  344. package/node_modules/zod/v3/helpers/enumUtil.js +1 -0
  345. package/node_modules/zod/v3/helpers/errorUtil.cjs +9 -0
  346. package/node_modules/zod/v3/helpers/errorUtil.d.cts +9 -0
  347. package/node_modules/zod/v3/helpers/errorUtil.d.ts +9 -0
  348. package/node_modules/zod/v3/helpers/errorUtil.js +6 -0
  349. package/node_modules/zod/v3/helpers/parseUtil.cjs +124 -0
  350. package/node_modules/zod/v3/helpers/parseUtil.d.cts +78 -0
  351. package/node_modules/zod/v3/helpers/parseUtil.d.ts +78 -0
  352. package/node_modules/zod/v3/helpers/parseUtil.js +109 -0
  353. package/node_modules/zod/v3/helpers/partialUtil.cjs +2 -0
  354. package/node_modules/zod/v3/helpers/partialUtil.d.cts +8 -0
  355. package/node_modules/zod/v3/helpers/partialUtil.d.ts +8 -0
  356. package/node_modules/zod/v3/helpers/partialUtil.js +1 -0
  357. package/node_modules/zod/v3/helpers/typeAliases.cjs +2 -0
  358. package/node_modules/zod/v3/helpers/typeAliases.d.cts +2 -0
  359. package/node_modules/zod/v3/helpers/typeAliases.d.ts +2 -0
  360. package/node_modules/zod/v3/helpers/typeAliases.js +1 -0
  361. package/node_modules/zod/v3/helpers/util.cjs +137 -0
  362. package/node_modules/zod/v3/helpers/util.d.cts +85 -0
  363. package/node_modules/zod/v3/helpers/util.d.ts +85 -0
  364. package/node_modules/zod/v3/helpers/util.js +133 -0
  365. package/node_modules/zod/v3/index.cjs +33 -0
  366. package/node_modules/zod/v3/index.d.cts +4 -0
  367. package/node_modules/zod/v3/index.d.ts +4 -0
  368. package/node_modules/zod/v3/index.js +4 -0
  369. package/node_modules/zod/v3/locales/en.cjs +111 -0
  370. package/node_modules/zod/v3/locales/en.d.cts +3 -0
  371. package/node_modules/zod/v3/locales/en.d.ts +3 -0
  372. package/node_modules/zod/v3/locales/en.js +109 -0
  373. package/node_modules/zod/v3/standard-schema.cjs +2 -0
  374. package/node_modules/zod/v3/standard-schema.d.cts +102 -0
  375. package/node_modules/zod/v3/standard-schema.d.ts +102 -0
  376. package/node_modules/zod/v3/standard-schema.js +1 -0
  377. package/node_modules/zod/v3/types.cjs +3775 -0
  378. package/node_modules/zod/v3/types.d.cts +1031 -0
  379. package/node_modules/zod/v3/types.d.ts +1031 -0
  380. package/node_modules/zod/v3/types.js +3693 -0
  381. package/node_modules/zod/v4/classic/checks.cjs +32 -0
  382. package/node_modules/zod/v4/classic/checks.d.cts +1 -0
  383. package/node_modules/zod/v4/classic/checks.d.ts +1 -0
  384. package/node_modules/zod/v4/classic/checks.js +1 -0
  385. package/node_modules/zod/v4/classic/coerce.cjs +47 -0
  386. package/node_modules/zod/v4/classic/coerce.d.cts +17 -0
  387. package/node_modules/zod/v4/classic/coerce.d.ts +17 -0
  388. package/node_modules/zod/v4/classic/coerce.js +17 -0
  389. package/node_modules/zod/v4/classic/compat.cjs +57 -0
  390. package/node_modules/zod/v4/classic/compat.d.cts +46 -0
  391. package/node_modules/zod/v4/classic/compat.d.ts +46 -0
  392. package/node_modules/zod/v4/classic/compat.js +27 -0
  393. package/node_modules/zod/v4/classic/errors.cjs +67 -0
  394. package/node_modules/zod/v4/classic/errors.d.cts +30 -0
  395. package/node_modules/zod/v4/classic/errors.d.ts +30 -0
  396. package/node_modules/zod/v4/classic/errors.js +41 -0
  397. package/node_modules/zod/v4/classic/external.cjs +70 -0
  398. package/node_modules/zod/v4/classic/external.d.cts +13 -0
  399. package/node_modules/zod/v4/classic/external.d.ts +13 -0
  400. package/node_modules/zod/v4/classic/external.js +18 -0
  401. package/node_modules/zod/v4/classic/index.cjs +33 -0
  402. package/node_modules/zod/v4/classic/index.d.cts +4 -0
  403. package/node_modules/zod/v4/classic/index.d.ts +4 -0
  404. package/node_modules/zod/v4/classic/index.js +4 -0
  405. package/node_modules/zod/v4/classic/iso.cjs +60 -0
  406. package/node_modules/zod/v4/classic/iso.d.cts +22 -0
  407. package/node_modules/zod/v4/classic/iso.d.ts +22 -0
  408. package/node_modules/zod/v4/classic/iso.js +30 -0
  409. package/node_modules/zod/v4/classic/parse.cjs +32 -0
  410. package/node_modules/zod/v4/classic/parse.d.cts +23 -0
  411. package/node_modules/zod/v4/classic/parse.d.ts +23 -0
  412. package/node_modules/zod/v4/classic/parse.js +6 -0
  413. package/node_modules/zod/v4/classic/schemas.cjs +1109 -0
  414. package/node_modules/zod/v4/classic/schemas.d.cts +630 -0
  415. package/node_modules/zod/v4/classic/schemas.d.ts +630 -0
  416. package/node_modules/zod/v4/classic/schemas.js +1006 -0
  417. package/node_modules/zod/v4/core/api.cjs +1039 -0
  418. package/node_modules/zod/v4/core/api.d.cts +284 -0
  419. package/node_modules/zod/v4/core/api.d.ts +284 -0
  420. package/node_modules/zod/v4/core/api.js +906 -0
  421. package/node_modules/zod/v4/core/checks.cjs +591 -0
  422. package/node_modules/zod/v4/core/checks.d.cts +278 -0
  423. package/node_modules/zod/v4/core/checks.d.ts +278 -0
  424. package/node_modules/zod/v4/core/checks.js +565 -0
  425. package/node_modules/zod/v4/core/core.cjs +67 -0
  426. package/node_modules/zod/v4/core/core.d.cts +49 -0
  427. package/node_modules/zod/v4/core/core.d.ts +49 -0
  428. package/node_modules/zod/v4/core/core.js +61 -0
  429. package/node_modules/zod/v4/core/doc.cjs +39 -0
  430. package/node_modules/zod/v4/core/doc.d.cts +14 -0
  431. package/node_modules/zod/v4/core/doc.d.ts +14 -0
  432. package/node_modules/zod/v4/core/doc.js +35 -0
  433. package/node_modules/zod/v4/core/errors.cjs +226 -0
  434. package/node_modules/zod/v4/core/errors.d.cts +208 -0
  435. package/node_modules/zod/v4/core/errors.d.ts +208 -0
  436. package/node_modules/zod/v4/core/errors.js +195 -0
  437. package/node_modules/zod/v4/core/function.cjs +102 -0
  438. package/node_modules/zod/v4/core/function.d.cts +52 -0
  439. package/node_modules/zod/v4/core/function.d.ts +52 -0
  440. package/node_modules/zod/v4/core/function.js +75 -0
  441. package/node_modules/zod/v4/core/index.cjs +44 -0
  442. package/node_modules/zod/v4/core/index.d.cts +15 -0
  443. package/node_modules/zod/v4/core/index.d.ts +15 -0
  444. package/node_modules/zod/v4/core/index.js +15 -0
  445. package/node_modules/zod/v4/core/json-schema.cjs +2 -0
  446. package/node_modules/zod/v4/core/json-schema.d.cts +87 -0
  447. package/node_modules/zod/v4/core/json-schema.d.ts +87 -0
  448. package/node_modules/zod/v4/core/json-schema.js +1 -0
  449. package/node_modules/zod/v4/core/parse.cjs +87 -0
  450. package/node_modules/zod/v4/core/parse.d.cts +25 -0
  451. package/node_modules/zod/v4/core/parse.d.ts +25 -0
  452. package/node_modules/zod/v4/core/parse.js +57 -0
  453. package/node_modules/zod/v4/core/regexes.cjs +103 -0
  454. package/node_modules/zod/v4/core/regexes.d.cts +62 -0
  455. package/node_modules/zod/v4/core/regexes.d.ts +62 -0
  456. package/node_modules/zod/v4/core/regexes.js +95 -0
  457. package/node_modules/zod/v4/core/registries.cjs +56 -0
  458. package/node_modules/zod/v4/core/registries.d.cts +35 -0
  459. package/node_modules/zod/v4/core/registries.d.ts +35 -0
  460. package/node_modules/zod/v4/core/registries.js +51 -0
  461. package/node_modules/zod/v4/core/schemas.cjs +1748 -0
  462. package/node_modules/zod/v4/core/schemas.d.cts +1041 -0
  463. package/node_modules/zod/v4/core/schemas.d.ts +1041 -0
  464. package/node_modules/zod/v4/core/schemas.js +1717 -0
  465. package/node_modules/zod/v4/core/standard-schema.cjs +2 -0
  466. package/node_modules/zod/v4/core/standard-schema.d.cts +55 -0
  467. package/node_modules/zod/v4/core/standard-schema.d.ts +55 -0
  468. package/node_modules/zod/v4/core/standard-schema.js +1 -0
  469. package/node_modules/zod/v4/core/to-json-schema.cjs +854 -0
  470. package/node_modules/zod/v4/core/to-json-schema.d.cts +88 -0
  471. package/node_modules/zod/v4/core/to-json-schema.d.ts +88 -0
  472. package/node_modules/zod/v4/core/to-json-schema.js +849 -0
  473. package/node_modules/zod/v4/core/util.cjs +539 -0
  474. package/node_modules/zod/v4/core/util.d.cts +183 -0
  475. package/node_modules/zod/v4/core/util.d.ts +183 -0
  476. package/node_modules/zod/v4/core/util.js +493 -0
  477. package/node_modules/zod/v4/core/versions.cjs +8 -0
  478. package/node_modules/zod/v4/core/versions.d.cts +5 -0
  479. package/node_modules/zod/v4/core/versions.d.ts +5 -0
  480. package/node_modules/zod/v4/core/versions.js +5 -0
  481. package/node_modules/zod/v4/index.cjs +22 -0
  482. package/node_modules/zod/v4/index.d.cts +3 -0
  483. package/node_modules/zod/v4/index.d.ts +3 -0
  484. package/node_modules/zod/v4/index.js +3 -0
  485. package/node_modules/zod/v4/locales/ar.cjs +142 -0
  486. package/node_modules/zod/v4/locales/ar.d.cts +4 -0
  487. package/node_modules/zod/v4/locales/ar.d.ts +4 -0
  488. package/node_modules/zod/v4/locales/ar.js +116 -0
  489. package/node_modules/zod/v4/locales/az.cjs +141 -0
  490. package/node_modules/zod/v4/locales/az.d.cts +4 -0
  491. package/node_modules/zod/v4/locales/az.d.ts +4 -0
  492. package/node_modules/zod/v4/locales/az.js +115 -0
  493. package/node_modules/zod/v4/locales/be.cjs +190 -0
  494. package/node_modules/zod/v4/locales/be.d.cts +4 -0
  495. package/node_modules/zod/v4/locales/be.d.ts +4 -0
  496. package/node_modules/zod/v4/locales/be.js +164 -0
  497. package/node_modules/zod/v4/locales/ca.cjs +144 -0
  498. package/node_modules/zod/v4/locales/ca.d.cts +4 -0
  499. package/node_modules/zod/v4/locales/ca.d.ts +4 -0
  500. package/node_modules/zod/v4/locales/ca.js +118 -0
  501. package/node_modules/zod/v4/locales/cs.cjs +161 -0
  502. package/node_modules/zod/v4/locales/cs.d.cts +4 -0
  503. package/node_modules/zod/v4/locales/cs.d.ts +4 -0
  504. package/node_modules/zod/v4/locales/cs.js +135 -0
  505. package/node_modules/zod/v4/locales/de.cjs +142 -0
  506. package/node_modules/zod/v4/locales/de.d.cts +4 -0
  507. package/node_modules/zod/v4/locales/de.d.ts +4 -0
  508. package/node_modules/zod/v4/locales/de.js +116 -0
  509. package/node_modules/zod/v4/locales/en.cjs +145 -0
  510. package/node_modules/zod/v4/locales/en.d.cts +5 -0
  511. package/node_modules/zod/v4/locales/en.d.ts +5 -0
  512. package/node_modules/zod/v4/locales/en.js +117 -0
  513. package/node_modules/zod/v4/locales/eo.cjs +144 -0
  514. package/node_modules/zod/v4/locales/eo.d.cts +5 -0
  515. package/node_modules/zod/v4/locales/eo.d.ts +5 -0
  516. package/node_modules/zod/v4/locales/eo.js +116 -0
  517. package/node_modules/zod/v4/locales/es.cjs +143 -0
  518. package/node_modules/zod/v4/locales/es.d.cts +4 -0
  519. package/node_modules/zod/v4/locales/es.d.ts +4 -0
  520. package/node_modules/zod/v4/locales/es.js +117 -0
  521. package/node_modules/zod/v4/locales/fa.cjs +148 -0
  522. package/node_modules/zod/v4/locales/fa.d.cts +4 -0
  523. package/node_modules/zod/v4/locales/fa.d.ts +4 -0
  524. package/node_modules/zod/v4/locales/fa.js +122 -0
  525. package/node_modules/zod/v4/locales/fi.cjs +148 -0
  526. package/node_modules/zod/v4/locales/fi.d.cts +4 -0
  527. package/node_modules/zod/v4/locales/fi.d.ts +4 -0
  528. package/node_modules/zod/v4/locales/fi.js +122 -0
  529. package/node_modules/zod/v4/locales/fr-CA.cjs +143 -0
  530. package/node_modules/zod/v4/locales/fr-CA.d.cts +4 -0
  531. package/node_modules/zod/v4/locales/fr-CA.d.ts +4 -0
  532. package/node_modules/zod/v4/locales/fr-CA.js +117 -0
  533. package/node_modules/zod/v4/locales/fr.cjs +142 -0
  534. package/node_modules/zod/v4/locales/fr.d.cts +4 -0
  535. package/node_modules/zod/v4/locales/fr.d.ts +4 -0
  536. package/node_modules/zod/v4/locales/fr.js +116 -0
  537. package/node_modules/zod/v4/locales/he.cjs +143 -0
  538. package/node_modules/zod/v4/locales/he.d.cts +4 -0
  539. package/node_modules/zod/v4/locales/he.d.ts +4 -0
  540. package/node_modules/zod/v4/locales/he.js +117 -0
  541. package/node_modules/zod/v4/locales/hu.cjs +143 -0
  542. package/node_modules/zod/v4/locales/hu.d.cts +4 -0
  543. package/node_modules/zod/v4/locales/hu.d.ts +4 -0
  544. package/node_modules/zod/v4/locales/hu.js +117 -0
  545. package/node_modules/zod/v4/locales/id.cjs +142 -0
  546. package/node_modules/zod/v4/locales/id.d.cts +4 -0
  547. package/node_modules/zod/v4/locales/id.d.ts +4 -0
  548. package/node_modules/zod/v4/locales/id.js +116 -0
  549. package/node_modules/zod/v4/locales/index.cjs +84 -0
  550. package/node_modules/zod/v4/locales/index.d.cts +39 -0
  551. package/node_modules/zod/v4/locales/index.d.ts +39 -0
  552. package/node_modules/zod/v4/locales/index.js +39 -0
  553. package/node_modules/zod/v4/locales/it.cjs +143 -0
  554. package/node_modules/zod/v4/locales/it.d.cts +4 -0
  555. package/node_modules/zod/v4/locales/it.d.ts +4 -0
  556. package/node_modules/zod/v4/locales/it.js +117 -0
  557. package/node_modules/zod/v4/locales/ja.cjs +141 -0
  558. package/node_modules/zod/v4/locales/ja.d.cts +4 -0
  559. package/node_modules/zod/v4/locales/ja.d.ts +4 -0
  560. package/node_modules/zod/v4/locales/ja.js +115 -0
  561. package/node_modules/zod/v4/locales/kh.cjs +143 -0
  562. package/node_modules/zod/v4/locales/kh.d.cts +4 -0
  563. package/node_modules/zod/v4/locales/kh.d.ts +4 -0
  564. package/node_modules/zod/v4/locales/kh.js +117 -0
  565. package/node_modules/zod/v4/locales/ko.cjs +147 -0
  566. package/node_modules/zod/v4/locales/ko.d.cts +4 -0
  567. package/node_modules/zod/v4/locales/ko.d.ts +4 -0
  568. package/node_modules/zod/v4/locales/ko.js +121 -0
  569. package/node_modules/zod/v4/locales/mk.cjs +144 -0
  570. package/node_modules/zod/v4/locales/mk.d.cts +4 -0
  571. package/node_modules/zod/v4/locales/mk.d.ts +4 -0
  572. package/node_modules/zod/v4/locales/mk.js +118 -0
  573. package/node_modules/zod/v4/locales/ms.cjs +142 -0
  574. package/node_modules/zod/v4/locales/ms.d.cts +4 -0
  575. package/node_modules/zod/v4/locales/ms.d.ts +4 -0
  576. package/node_modules/zod/v4/locales/ms.js +116 -0
  577. package/node_modules/zod/v4/locales/nl.cjs +143 -0
  578. package/node_modules/zod/v4/locales/nl.d.cts +4 -0
  579. package/node_modules/zod/v4/locales/nl.d.ts +4 -0
  580. package/node_modules/zod/v4/locales/nl.js +117 -0
  581. package/node_modules/zod/v4/locales/no.cjs +142 -0
  582. package/node_modules/zod/v4/locales/no.d.cts +4 -0
  583. package/node_modules/zod/v4/locales/no.d.ts +4 -0
  584. package/node_modules/zod/v4/locales/no.js +116 -0
  585. package/node_modules/zod/v4/locales/ota.cjs +143 -0
  586. package/node_modules/zod/v4/locales/ota.d.cts +4 -0
  587. package/node_modules/zod/v4/locales/ota.d.ts +4 -0
  588. package/node_modules/zod/v4/locales/ota.js +117 -0
  589. package/node_modules/zod/v4/locales/pl.cjs +143 -0
  590. package/node_modules/zod/v4/locales/pl.d.cts +4 -0
  591. package/node_modules/zod/v4/locales/pl.d.ts +4 -0
  592. package/node_modules/zod/v4/locales/pl.js +117 -0
  593. package/node_modules/zod/v4/locales/ps.cjs +148 -0
  594. package/node_modules/zod/v4/locales/ps.d.cts +4 -0
  595. package/node_modules/zod/v4/locales/ps.d.ts +4 -0
  596. package/node_modules/zod/v4/locales/ps.js +122 -0
  597. package/node_modules/zod/v4/locales/pt.cjs +142 -0
  598. package/node_modules/zod/v4/locales/pt.d.cts +4 -0
  599. package/node_modules/zod/v4/locales/pt.d.ts +4 -0
  600. package/node_modules/zod/v4/locales/pt.js +116 -0
  601. package/node_modules/zod/v4/locales/ru.cjs +190 -0
  602. package/node_modules/zod/v4/locales/ru.d.cts +4 -0
  603. package/node_modules/zod/v4/locales/ru.d.ts +4 -0
  604. package/node_modules/zod/v4/locales/ru.js +164 -0
  605. package/node_modules/zod/v4/locales/sl.cjs +143 -0
  606. package/node_modules/zod/v4/locales/sl.d.cts +4 -0
  607. package/node_modules/zod/v4/locales/sl.d.ts +4 -0
  608. package/node_modules/zod/v4/locales/sl.js +117 -0
  609. package/node_modules/zod/v4/locales/sv.cjs +144 -0
  610. package/node_modules/zod/v4/locales/sv.d.cts +4 -0
  611. package/node_modules/zod/v4/locales/sv.d.ts +4 -0
  612. package/node_modules/zod/v4/locales/sv.js +118 -0
  613. package/node_modules/zod/v4/locales/ta.cjs +143 -0
  614. package/node_modules/zod/v4/locales/ta.d.cts +4 -0
  615. package/node_modules/zod/v4/locales/ta.d.ts +4 -0
  616. package/node_modules/zod/v4/locales/ta.js +117 -0
  617. package/node_modules/zod/v4/locales/th.cjs +143 -0
  618. package/node_modules/zod/v4/locales/th.d.cts +4 -0
  619. package/node_modules/zod/v4/locales/th.d.ts +4 -0
  620. package/node_modules/zod/v4/locales/th.js +117 -0
  621. package/node_modules/zod/v4/locales/tr.cjs +143 -0
  622. package/node_modules/zod/v4/locales/tr.d.cts +5 -0
  623. package/node_modules/zod/v4/locales/tr.d.ts +5 -0
  624. package/node_modules/zod/v4/locales/tr.js +115 -0
  625. package/node_modules/zod/v4/locales/ua.cjs +143 -0
  626. package/node_modules/zod/v4/locales/ua.d.cts +4 -0
  627. package/node_modules/zod/v4/locales/ua.d.ts +4 -0
  628. package/node_modules/zod/v4/locales/ua.js +117 -0
  629. package/node_modules/zod/v4/locales/ur.cjs +143 -0
  630. package/node_modules/zod/v4/locales/ur.d.cts +4 -0
  631. package/node_modules/zod/v4/locales/ur.d.ts +4 -0
  632. package/node_modules/zod/v4/locales/ur.js +117 -0
  633. package/node_modules/zod/v4/locales/vi.cjs +142 -0
  634. package/node_modules/zod/v4/locales/vi.d.cts +4 -0
  635. package/node_modules/zod/v4/locales/vi.d.ts +4 -0
  636. package/node_modules/zod/v4/locales/vi.js +116 -0
  637. package/node_modules/zod/v4/locales/zh-CN.cjs +142 -0
  638. package/node_modules/zod/v4/locales/zh-CN.d.cts +4 -0
  639. package/node_modules/zod/v4/locales/zh-CN.d.ts +4 -0
  640. package/node_modules/zod/v4/locales/zh-CN.js +116 -0
  641. package/node_modules/zod/v4/locales/zh-TW.cjs +143 -0
  642. package/node_modules/zod/v4/locales/zh-TW.d.cts +4 -0
  643. package/node_modules/zod/v4/locales/zh-TW.d.ts +4 -0
  644. package/node_modules/zod/v4/locales/zh-TW.js +117 -0
  645. package/node_modules/zod/v4/mini/checks.cjs +34 -0
  646. package/node_modules/zod/v4/mini/checks.d.cts +1 -0
  647. package/node_modules/zod/v4/mini/checks.d.ts +1 -0
  648. package/node_modules/zod/v4/mini/checks.js +1 -0
  649. package/node_modules/zod/v4/mini/coerce.cjs +47 -0
  650. package/node_modules/zod/v4/mini/coerce.d.cts +7 -0
  651. package/node_modules/zod/v4/mini/coerce.d.ts +7 -0
  652. package/node_modules/zod/v4/mini/coerce.js +17 -0
  653. package/node_modules/zod/v4/mini/external.cjs +62 -0
  654. package/node_modules/zod/v4/mini/external.d.cts +11 -0
  655. package/node_modules/zod/v4/mini/external.d.ts +11 -0
  656. package/node_modules/zod/v4/mini/external.js +13 -0
  657. package/node_modules/zod/v4/mini/index.cjs +32 -0
  658. package/node_modules/zod/v4/mini/index.d.cts +3 -0
  659. package/node_modules/zod/v4/mini/index.d.ts +3 -0
  660. package/node_modules/zod/v4/mini/index.js +3 -0
  661. package/node_modules/zod/v4/mini/iso.cjs +60 -0
  662. package/node_modules/zod/v4/mini/iso.d.cts +22 -0
  663. package/node_modules/zod/v4/mini/iso.d.ts +22 -0
  664. package/node_modules/zod/v4/mini/iso.js +30 -0
  665. package/node_modules/zod/v4/mini/parse.cjs +8 -0
  666. package/node_modules/zod/v4/mini/parse.d.cts +1 -0
  667. package/node_modules/zod/v4/mini/parse.d.ts +1 -0
  668. package/node_modules/zod/v4/mini/parse.js +1 -0
  669. package/node_modules/zod/v4/mini/schemas.cjs +839 -0
  670. package/node_modules/zod/v4/mini/schemas.d.cts +356 -0
  671. package/node_modules/zod/v4/mini/schemas.d.ts +356 -0
  672. package/node_modules/zod/v4/mini/schemas.js +732 -0
  673. package/node_modules/zod/v4-mini/index.cjs +17 -0
  674. package/node_modules/zod/v4-mini/index.d.cts +1 -0
  675. package/node_modules/zod/v4-mini/index.d.ts +1 -0
  676. package/node_modules/zod/v4-mini/index.js +1 -0
  677. package/package.json +5 -1
package/README.en.md CHANGED
@@ -21,6 +21,7 @@ openclaw plugins install @marshulll/openclaw-wecom
21
21
  openclaw plugins enable openclaw-wecom
22
22
  openclaw gateway restart
23
23
  ```
24
+ > The npm package **bundles dependencies** (no extra `npm install` on the server).
24
25
 
25
26
  ### Local path
26
27
  ```bash
@@ -28,6 +29,7 @@ openclaw plugins install --link /path/to/openclaw-wecom
28
29
  openclaw plugins enable openclaw-wecom
29
30
  openclaw gateway restart
30
31
  ```
32
+ > For local path installs, run `npm install` in the project directory first.
31
33
 
32
34
  ## Configuration
33
35
  Write config to `~/.openclaw/openclaw.json`.
@@ -91,6 +93,7 @@ Install guide: `docs/INSTALL.md`
91
93
  - No reply: ensure plugin enabled and gateway restarted
92
94
  - Media too large: adjust `media.maxBytes` or send smaller files
93
95
  - invalid access_token: verify `corpId/corpSecret/agentId`
96
+ - Plugin failed to load due to missing deps: upgrade to latest and install via npm
94
97
 
95
98
  ## Docs
96
99
  - Dev doc: `docs/TECHNICAL.md`
package/README.md CHANGED
@@ -21,6 +21,7 @@ openclaw plugins install @marshulll/openclaw-wecom
21
21
  openclaw plugins enable openclaw-wecom
22
22
  openclaw gateway restart
23
23
  ```
24
+ > npm 安装包已**内置依赖**(无需再在服务器执行 `npm install`)。
24
25
 
25
26
  ### 本地路径加载
26
27
  ```bash
@@ -28,6 +29,7 @@ openclaw plugins install --link /path/to/openclaw-wecom
28
29
  openclaw plugins enable openclaw-wecom
29
30
  openclaw gateway restart
30
31
  ```
32
+ > 本地路径加载需要先在项目目录执行 `npm install`。
31
33
 
32
34
  ## 配置
33
35
  主配置写入:`~/.openclaw/openclaw.json`
@@ -91,6 +93,7 @@ openclaw gateway restart
91
93
  - 没有回复:确认已启用插件并重启 gateway
92
94
  - 媒体过大:调整 `media.maxBytes` 或发送更小文件
93
95
  - invalid access_token:检查 `corpId/corpSecret/agentId`
96
+ - 依赖缺失导致插件未加载:请升级到最新版本并通过 npm 安装
94
97
 
95
98
  ## 资料入口
96
99
  - 开发文档:`docs/TECHNICAL.md`
package/README.zh.md CHANGED
@@ -21,6 +21,7 @@ openclaw plugins install @marshulll/openclaw-wecom
21
21
  openclaw plugins enable openclaw-wecom
22
22
  openclaw gateway restart
23
23
  ```
24
+ > npm 安装包已**内置依赖**(无需再在服务器执行 `npm install`)。
24
25
 
25
26
  ### 本地路径加载
26
27
  ```bash
@@ -28,6 +29,7 @@ openclaw plugins install --link /path/to/openclaw-wecom
28
29
  openclaw plugins enable openclaw-wecom
29
30
  openclaw gateway restart
30
31
  ```
32
+ > 本地路径加载需要先在项目目录执行 `npm install`。
31
33
 
32
34
  ## 配置
33
35
  主配置写入:`~/.openclaw/openclaw.json`
@@ -91,6 +93,7 @@ openclaw gateway restart
91
93
  - 没有回复:确认已启用插件并重启 gateway
92
94
  - 媒体过大:调整 `media.maxBytes` 或发送更小文件
93
95
  - invalid access_token:检查 `corpId/corpSecret/agentId`
96
+ - 依赖缺失导致插件未加载:请升级到最新版本并通过 npm 安装
94
97
 
95
98
  ## 资料入口
96
99
  - 开发文档:`docs/TECHNICAL.md`
package/docs/INSTALL.md CHANGED
@@ -8,6 +8,7 @@ openclaw plugins install @marshulll/openclaw-wecom
8
8
  openclaw plugins enable openclaw-wecom
9
9
  openclaw gateway restart
10
10
  ```
11
+ > npm 包已内置依赖(无需在服务器额外执行 `npm install`)。
11
12
 
12
13
  ### 方式二:本地路径加载
13
14
  ```bash
@@ -15,6 +16,7 @@ openclaw plugins install --link /path/to/openclaw-wecom
15
16
  openclaw plugins enable openclaw-wecom
16
17
  openclaw gateway restart
17
18
  ```
19
+ > 本地路径加载前请先在项目目录执行 `npm install`。
18
20
 
19
21
  ## 配置
20
22
 
@@ -101,3 +103,4 @@ openclaw gateway restart
101
103
  ## 常见问题
102
104
  - 回调验证失败:检查 Token / AESKey / URL 是否一致
103
105
  - 没有回复:检查 OpenClaw 是否已启用插件并重启 gateway
106
+ - 插件加载失败(缺依赖):升级到最新版本并用 npm 安装
@@ -0,0 +1,606 @@
1
+ <small>Note: If you find missing information about particular minor version, that version must have been changed without any functional change in this library.</small>
2
+
3
+ **4.5.2 / 2025-02-18**
4
+ - Fix null CDATA to comply with undefined behavior (#701) (By [Matthieu BOHEAS](https://github.com/Kelgors))
5
+ - Fix(performance): Update check for leaf node in saveTextToParentTag function in OrderedObjParser.js (#707) (By [...](https://github.com/tomingtoming))
6
+ - Fix: emit full JSON string from CLI when no output filename specified (#710) (By [Matt Benson](https://github.com/mbenson))
7
+
8
+ **4.5.1 / 2024-12-15**
9
+ - Fix empty tag key name for v5 (#697). no impact on v4
10
+ - Fixes entity parsing when used in strict mode (#699)
11
+
12
+ **4.5.0 / 2024-09-03**
13
+ - feat #666: ignoreAttributes support function, and array of string or regex (By [ArtemM](https://github.com/mav-rik))
14
+
15
+ **4.4.1 / 2024-07-28**
16
+ - v5 fix: maximum length limit to currency value
17
+ - fix #634: build attributes with oneListGroup and attributesGroupName (#653)(By [Andreas Naziris](https://github.com/a-rasin))
18
+ - fix: get oneListGroup to work as expected for array of strings (#662)(By [Andreas Naziris](https://github.com/a-rasin))
19
+
20
+ **4.4.0 / 2024-05-18**
21
+ - fix #654: parse attribute list correctly for self closing stop node.
22
+ - fix: validator bug when closing tag is not opened. (#647) (By [Ryosuke Fukatani](https://github.com/RyosukeFukatani))
23
+ - fix #581: typings; return type of `tagValueProcessor` & `attributeValueProcessor` (#582) (By [monholm]())
24
+
25
+ **4.3.6 / 2024-03-16**
26
+ - Add support for parsing HTML numeric entities (#645) (By [Jonas Schade ](https://github.com/DerZade))
27
+
28
+ **4.3.5 / 2024-02-24**
29
+ - code for v5 is added for experimental use
30
+
31
+ **4.3.4 / 2024-01-10**
32
+ - fix: Don't escape entities in CDATA sections (#633) (By [wackbyte](https://github.com/wackbyte))
33
+
34
+ **4.3.3 / 2024-01-10**
35
+ - Remove unnecessary regex
36
+
37
+ **4.3.2 / 2023-10-02**
38
+ - fix `jObj.hasOwnProperty` when give input is null (By [Arda TANRIKULU](https://github.com/ardatan))
39
+
40
+ **4.3.1 / 2023-09-24**
41
+ - revert back "Fix typings for builder and parser to make return type generic" to avoid failure of existing projects. Need to decide a common approach.
42
+
43
+ **4.3.0 / 2023-09-20**
44
+ - Fix stopNodes to work with removeNSPrefix (#607) (#608) (By [Craig Andrews]https://github.com/candrews))
45
+ - Fix #610 ignore properties set to Object.prototype
46
+ - Fix typings for builder and parser to make return type generic (By [Sarah Dayan](https://github.com/sarahdayan))
47
+
48
+ **4.2.7 / 2023-07-30**
49
+ - Fix: builder should set text node correctly when only textnode is present (#589) (By [qianqing](https://github.com/joneqian))
50
+ - Fix: Fix for null and undefined attributes when building xml (#585) (#598). A null or undefined value should be ignored. (By [Eugenio Ceschia](https://github.com/cecia234))
51
+
52
+ **4.2.6 / 2023-07-17**
53
+ - Fix: Remove trailing slash from jPath for self-closing tags (#595) (By [Maciej Radzikowski](https://github.com/m-radzikowski))
54
+
55
+ **4.2.5 / 2023-06-22**
56
+ - change code implementation
57
+
58
+ **4.2.4 / 2023-06-06**
59
+ - fix security bug
60
+
61
+ **4.2.3 / 2023-06-05**
62
+ - fix security bug
63
+
64
+ **4.2.2 / 2023-04-18**
65
+ - fix #562: fix unpaired tag when it comes in last of a nested tag. Also throw error when unpaired tag is used as closing tag
66
+
67
+ **4.2.1 / 2023-04-18**
68
+ - fix: jpath after unpaired tags
69
+
70
+ **4.2.0 / 2023-04-09**
71
+ - support `updateTag` parser property
72
+
73
+ **4.1.4 / 2023-04-08**
74
+ - update typings to let user create XMLBuilder instance without options (#556) (By [Patrick](https://github.com/omggga))
75
+ - fix: IsArray option isn't parsing tags with 0 as value correctly #490 (#557) (By [Aleksandr Murashkin](https://github.com/p-kuen))
76
+ - feature: support `oneListGroup` to group repeated children tags udder single group
77
+
78
+ **4.1.3 / 2023-02-26**
79
+ - fix #546: Support complex entity value
80
+
81
+ **4.1.2 / 2023-02-12**
82
+ - Security Fix
83
+
84
+ **4.1.1 / 2023-02-03**
85
+ - Fix #540: ignoreAttributes breaks unpairedTags
86
+ - Refactor XML builder code
87
+
88
+ **4.1.0 / 2023-02-02**
89
+ - Fix '<' or '>' in DTD comment throwing an error. (#533) (By [Adam Baker](https://github.com/Cwazywierdo))
90
+ - Set "eNotation" to 'true' as default
91
+
92
+ **4.0.15 / 2023-01-25**
93
+ - make "eNotation" optional
94
+
95
+ **4.0.14 / 2023-01-22**
96
+ - fixed: add missed typing "eNotation" to parse values
97
+
98
+ **4.0.13 / 2023-01-07**
99
+ - preserveorder formatting (By [mdeknowis](https://github.com/mdeknowis))
100
+ - support `transformAttributeName` (By [Erik Rothoff Andersson](https://github.com/erkie))
101
+
102
+ **4.0.12 / 2022-11-19**
103
+ - fix typescript
104
+
105
+ **4.0.11 / 2022-10-05**
106
+ - fix #501: parse for entities only once
107
+
108
+ **4.0.10 / 2022-09-14**
109
+ - fix broken links in demo site (By [Yannick Lang](https://github.com/layaxx))
110
+ - fix #491: tagValueProcessor type definition (By [Andrea Francesco Speziale](https://github.com/andreafspeziale))
111
+ - Add jsdocs for tagValueProcessor
112
+
113
+
114
+ **4.0.9 / 2022-07-10**
115
+ - fix #470: stop-tag can have self-closing tag with same name
116
+ - fix #472: stopNode can have any special tag inside
117
+ - Allow !ATTLIST and !NOTATION with DOCTYPE
118
+ - Add transformTagName option to transform tag names when parsing (#469) (By [Erik Rothoff Andersson](https://github.com/erkie))
119
+
120
+ **4.0.8 / 2022-05-28**
121
+ - Fix CDATA parsing returning empty string when value = 0 (#451) (By [ndelanou](https://github.com/ndelanou))
122
+ - Fix stopNodes when same tag appears inside node (#456) (By [patrickshipe](https://github.com/patrickshipe))
123
+ - fix #468: prettify own properties only
124
+
125
+ **4.0.7 / 2022-03-18**
126
+ - support CDATA even if tag order is not preserved
127
+ - support Comments even if tag order is not preserved
128
+ - fix #446: XMLbuilder should not indent XML declaration
129
+
130
+ **4.0.6 / 2022-03-08**
131
+ - fix: call tagValueProcessor only once for array items
132
+ - fix: missing changed for #437
133
+
134
+ **4.0.5 / 2022-03-06**
135
+ - fix #437: call tagValueProcessor from XML builder
136
+
137
+ **4.0.4 / 2022-03-03**
138
+ - fix #435: should skip unpaired and self-closing nodes when set as stopnodes
139
+
140
+ **4.0.3 / 2022-02-15**
141
+ - fix: ReferenceError when Bundled with Strict (#431) (By [Andreas Heissenberger](https://github.com/aheissenberger))
142
+
143
+
144
+ **4.0.2 / 2022-02-04**
145
+ - builder supports `suppressUnpairedNode`
146
+ - parser supports `ignoreDeclaration` and `ignorePiTags`
147
+ - fix: when comment is parsed as text value if given as `<!--> ...` #423
148
+ - builder supports decoding `&`
149
+
150
+ **4.0.1 / 2022-01-08**
151
+ - fix builder for pi tag
152
+ - fix: support suppressBooleanAttrs by builder
153
+
154
+ **4.0.0 / 2022-01-06**
155
+ - Generating different combined, parser only, builder only, validator only browser bundles
156
+ - Keeping cjs modules as they can be imported in cjs and esm modules both. Otherwise refer `esm` branch.
157
+
158
+ **4.0.0-beta.8 / 2021-12-13**
159
+ - call tagValueProcessor for stop nodes
160
+
161
+ **4.0.0-beta.7 / 2021-12-09**
162
+ - fix Validator bug when an attribute has no value but '=' only
163
+ - XML Builder should suppress unpaired tags by default.
164
+ - documents update for missing features
165
+ - refactoring to use Object.assign
166
+ - refactoring to remove repeated code
167
+
168
+ **4.0.0-beta.6 / 2021-12-05**
169
+ - Support PI Tags processing
170
+ - Support `suppressBooleanAttributes` by XML Builder for attributes with value `true`.
171
+
172
+ **4.0.0-beta.5 / 2021-12-04**
173
+ - fix: when a tag with name "attributes"
174
+
175
+ **4.0.0-beta.4 / 2021-12-02**
176
+ - Support HTML document parsing
177
+ - skip stop nodes parsing when building the XML from JS object
178
+ - Support external entites without DOCTYPE
179
+ - update dev dependency: strnum v1.0.5 to fix long number issue
180
+
181
+ **4.0.0-beta.3 / 2021-11-30**
182
+ - support global stopNodes expression like "*.stop"
183
+ - support self-closing and paired unpaired tags
184
+ - fix: CDATA should not be parsed.
185
+ - Fix typings for XMLBuilder (#396)(By [Anders Emil Salvesen](https://github.com/andersem))
186
+ - supports XML entities, HTML entities, DOCTYPE entities
187
+
188
+ **⚠️ 4.0.0-beta.2 / 2021-11-19**
189
+ - rename `attrMap` to `attibutes` in parser output when `preserveOrder:true`
190
+ - supports unpairedTags
191
+
192
+ **⚠️ 4.0.0-beta.1 / 2021-11-18**
193
+ - Parser returns an array now
194
+ - to make the structure common
195
+ - and to return root level detail
196
+ - renamed `cdataTagName` to `cdataPropName`
197
+ - Added `commentPropName`
198
+ - fix typings
199
+
200
+ **⚠️ 4.0.0-beta.0 / 2021-11-16**
201
+ - Name change of many configuration properties.
202
+ - `attrNodeName` to `attributesGroupName`
203
+ - `attrValueProcessor` to `attributeValueProcessor`
204
+ - `parseNodeValue` to `parseTagValue`
205
+ - `ignoreNameSpace` to `removeNSPrefix`
206
+ - `numParseOptions` to `numberParseOptions`
207
+ - spelling correction for `suppressEmptyNode`
208
+ - Name change of cli and browser bundle to **fxparser**
209
+ - `isArray` option is added to parse a tag into array
210
+ - `preserveOrder` option is added to render XML in such a way that the result js Object maintains the order of properties same as in XML.
211
+ - Processing behaviour of `tagValueProcessor` and `attributeValueProcessor` are changes with extra input parameters
212
+ - j2xparser is renamed to XMLBuilder.
213
+ - You need to build XML parser instance for given options first before parsing XML.
214
+ - fix #327, #336: throw error when extra text after XML content
215
+ - fix #330: attribute value can have '\n',
216
+ - fix #350: attrbiutes can be separated by '\n' from tagname
217
+
218
+ 3.21.1 / 2021-10-31
219
+ - Correctly format JSON elements with a text prop but no attribute props ( By [haddadnj](https://github.com/haddadnj) )
220
+
221
+ 3.21.0 / 2021-10-25
222
+ - feat: added option `rootNodeName` to set tag name for array input when converting js object to XML.
223
+ - feat: added option `alwaysCreateTextNode` to force text node creation (by: *@massimo-ua*)
224
+ - ⚠️ feat: Better error location for unclosed tags. (by *@Gei0r*)
225
+ - Some error messages would be changed when validating XML. Eg
226
+ - `{ InvalidXml: "Invalid '[ \"rootNode\"]' found." }` → `{InvalidTag: "Unclosed tag 'rootNode'."}`
227
+ - `{ InvalidTag: "Closing tag 'rootNode' is expected inplace of 'rootnode'." }` → `{ InvalidTag: "Expected closing tag 'rootNode' (opened in line 1) instead of closing tag 'rootnode'."}`
228
+ - ⚠️ feat: Column in error response when validating XML
229
+ ```js
230
+ {
231
+ "code": "InvalidAttr",
232
+ "msg": "Attribute 'abc' is repeated.",
233
+ "line": 1,
234
+ "col": 22
235
+ }
236
+ ```
237
+
238
+ 3.20.1 / 2021-09-25
239
+ - update strnum package
240
+
241
+ 3.20.0 / 2021-09-10
242
+ - Use strnum npm package to parse string to number
243
+ - breaking change: long number will be parsed to scientific notation.
244
+
245
+ 3.19.0 / 2021-03-14
246
+ - License changed to MIT original
247
+ - Fix #321 : namespace tag parsing
248
+
249
+ 3.18.0 / 2021-02-05
250
+ - Support RegEx and function in arrayMode option
251
+ - Fix #317 : validate nested PI tags
252
+
253
+ 3.17.4 / 2020-06-07
254
+ - Refactor some code to support IE11
255
+ - Fix: `<tag >` space as attribute string
256
+
257
+ 3.17.3 / 2020-05-23
258
+ - Fix: tag name separated by \n \t
259
+ - Fix: throw error for unclosed tags
260
+
261
+ 3.17.2 / 2020-05-23
262
+ - Fixed an issue in processing doctype tag
263
+ - Fixed tagName where it should not have whitespace chars
264
+
265
+ 3.17.1 / 2020-05-19
266
+ - Fixed an issue in checking opening tag
267
+
268
+ 3.17.0 / 2020-05-18
269
+ - parser: fix '<' issue when it comes in aatr value
270
+ - parser: refactoring to remove dependency from regex
271
+ - validator: fix IE 11 issue for error messages
272
+ - updated dev dependencies
273
+ - separated benchmark module to sub-module
274
+ - breaking change: comments will not be removed from CDATA data
275
+
276
+ 3.16.0 / 2020-01-12
277
+ - validaor: fix for ampersand characters (#215)
278
+ - refactoring to support unicode chars in tag name
279
+ - update typing for validator error
280
+
281
+ 3.15.1 / 2019-12-09
282
+ - validaor: fix multiple roots are not allowed
283
+
284
+ 3.15.0 / 2019-11-23
285
+ - validaor: improve error messaging
286
+ - validator: add line number in case of error
287
+ - validator: add more error scenarios to make it more descriptive
288
+
289
+ 3.14.0 / 2019-10-25
290
+ - arrayMode for XML to JS obj parsing
291
+
292
+ 3.13.0 / 2019-10-02
293
+ - pass tag/attr name to tag/attr value processor
294
+ - inbuilt optional validation with XML parser
295
+
296
+ 3.12.21 / 2019-10-02
297
+ - Fix validator for unclosed XMLs
298
+ - move nimnjs dependency to dev dependency
299
+ - update dependencies
300
+
301
+ 3.12.20 / 2019-08-16
302
+ - Revert: Fix #167: '>' in attribute value as it is causing high performance degrade.
303
+
304
+ 3.12.19 / 2019-07-28
305
+ - Fix js to xml parser should work for date values. (broken: `tagValueProcessor` will receive the original value instead of string always) (breaking change)
306
+
307
+ 3.12.18 / 2019-07-27
308
+ - remove configstore dependency
309
+
310
+ 3.12.17 / 2019-07-14
311
+ - Fix #167: '>' in attribute value
312
+
313
+ 3.12.16 / 2019-03-23
314
+ - Support a new option "stopNodes". (#150)
315
+ Accept the list of tags which are not required to be parsed. Instead, all the nested tag and data will be assigned as string.
316
+ - Don't show post-install message
317
+
318
+ 3.12.12 / 2019-01-11
319
+ - fix : IE parseInt, parseFloat error
320
+
321
+ 3.12.11 / 2018-12-24
322
+ - fix #132: "/" should not be parsed as boolean attr in case of self closing tags
323
+
324
+ 3.12.9 / 2018-11-23
325
+ - fix #129 : validator should not fail when an atrribute name is 'length'
326
+
327
+ 3.12.8 / 2018-11-22
328
+ - fix #128 : use 'attrValueProcessor' to process attribute value in json2xml parser
329
+
330
+ 3.12.6 / 2018-11-10
331
+ - Fix #126: check for type
332
+
333
+ 3.12.4 / 2018-09-12
334
+ - Fix: include tasks in npm package
335
+
336
+ 3.12.3 / 2018-09-12
337
+ - Fix CLI issue raised in last PR
338
+
339
+ 3.12.2 / 2018-09-11
340
+ - Fix formatting for JSON to XML output
341
+ - Migrate to webpack (PR merged)
342
+ - fix cli (PR merged)
343
+
344
+ 3.12.0 / 2018-08-06
345
+ - Support hexadecimal values
346
+ - Support true number parsing
347
+
348
+ 3.11.2 / 2018-07-23
349
+ - Update Demo for more options
350
+ - Update license information
351
+ - Update readme for formatting, users, and spelling mistakes
352
+ - Add missing typescript definition for j2xParser
353
+ - refactoring: change filenames
354
+
355
+ 3.11.1 / 2018-06-05
356
+ - fix #93: read the text after self closing tag
357
+
358
+ 3.11.0 / 2018-05-20
359
+ - return defaultOptions if there are not options in buildOptions function
360
+ - added localeRange declaration in parser.d.ts
361
+ - Added support of cyrillic characters in validator XML
362
+ - fixed bug in validator work when XML data with byte order marker
363
+
364
+ 3.10.0 / 2018-05-13
365
+ - Added support of cyrillic characters in parsing XML to JSON
366
+
367
+ 3.9.11 / 2018-05-09
368
+ - fix https://github.com/NaturalIntelligence/fast-xml-parser/issues/80 fix nimn chars
369
+ - update package information
370
+ - fix https://github.com/NaturalIntelligence/fast-xml-parser/issues/86: json 2 xml parser : property with null value should be parsed to self closing tag.
371
+ - update online demo
372
+ - revert zombiejs to old version to support old version of node
373
+ - update dependencies
374
+
375
+ 3.3.10 / 2018-04-23
376
+ - fix #77 : parse even if closing tag has space before '>'
377
+ - include all css & js lib in demo app
378
+ - remove babel dependencies until needed
379
+
380
+ 3.3.9 / 2018-04-18
381
+ - fix #74 : TS2314 TypeScript compiler error
382
+
383
+ 3.3.8 / 2018-04-17
384
+ - fix #73 : IE doesn't support Object.assign
385
+
386
+ 3.3.7 / 2018-04-14
387
+ - fix: use let insted of const in for loop of validator
388
+ - Merge pull request
389
+ https://github.com/NaturalIntelligence/fast-xml-parser/issues/71 from bb/master
390
+ first draft of typings for typescript
391
+ https://github.com/NaturalIntelligence/fast-xml-parser/issues/69
392
+ - Merge pull request
393
+ https://github.com/NaturalIntelligence/fast-xml-parser/issues/70 from bb/patch-1
394
+ fix some typos in readme
395
+
396
+ 3.3.6 / 2018-03-21
397
+ - change arrow functions to full notation for IE compatibility
398
+
399
+ 3.3.5 / 2018-03-15
400
+ - fix https://github.com/NaturalIntelligence/fast-xml-parser/issues/67 : attrNodeName invalid behavior
401
+ - fix: remove decodeHTML char condition
402
+
403
+ 3.3.4 / 2018-03-14
404
+ - remove dependency on "he" package
405
+ - refactor code to separate methods in separate files.
406
+ - draft code for transforming XML to json string. It is not officially documented due to performance issue.
407
+
408
+ 3.3.0 / 2018-03-05
409
+ - use common default options for XML parsing for consistency. And add `parseToNimn` method.
410
+ - update nexttodo
411
+ - update README about XML to Nimn transformation and remove special notes about 3.x release
412
+ - update CONTRIBUTING.ms mentioning nexttodo
413
+ - add negative case for XML PIs
414
+ - validate xml processing instruction tags https://github.com/NaturalIntelligence/fast-xml-parser/issues/62
415
+ - nimndata: handle array with object
416
+ - nimndata: node with nested node and text node
417
+ - nimndata: handle attributes and text node
418
+ - nimndata: add options, handle array
419
+ - add xml to nimn data converter
420
+ - x2j: direct access property with tagname
421
+ - update changelog
422
+ - fix validator when single quote presents in value enclosed with double quotes or vice versa
423
+ - Revert "remove unneded nimnjs dependency, move opencollective to devDependencies and replace it
424
+ with more light opencollective-postinstall"
425
+ This reverts commit d47aa7181075d82db4fee97fd8ea32b056fe3f46.
426
+ - Merge pull request: https://github.com/NaturalIntelligence/fast-xml-parser/issues/63 from HaroldPutman/suppress-undefined
427
+ Keep undefined nodes out of the XML output : This is useful when you are deleting nodes from the JSON and rewriting XML.
428
+
429
+ 3.2.4 / 2018-03-01
430
+ - fix #59 fix in validator when open quote presents in attribute value
431
+ - Create nexttodo.md
432
+ - exclude static from bitHound tests
433
+ - add package lock
434
+
435
+ 3.2.3 / 2018-02-28
436
+ - Merge pull request from Delagen/master: fix namespaces can contain the same characters as xml names
437
+
438
+ 3.2.2 / 2018-02-22
439
+ - fix: attribute xmlns should not be removed if ignoreNameSpace is false
440
+ - create CONTRIBUTING.md
441
+
442
+ 3.2.1 / 2018-02-17
443
+ - fix: empty attribute should be parsed
444
+
445
+ 3.2.0 / 2018-02-16
446
+ - Merge pull request : Dev to Master
447
+ - Update README and version
448
+ - j2x:add performance test
449
+ - j2x: Remove extra empty line before closing tag
450
+ - j2x: suppress empty nodes to self closing node if configured
451
+ - j2x: provide option to give indentation depth
452
+ - j2x: make optional formatting
453
+ - j2x: encodeHTMLchat
454
+ - j2x: handle cdata tag
455
+ - j2x: handle grouped attributes
456
+ - convert json to xml
457
+ - nested object
458
+ - array
459
+ - attributes
460
+ - text value
461
+ - small refactoring
462
+ - Merge pull request: Update cli.js to let user validate XML file or data
463
+ - Add option for rendering CDATA as separate property
464
+
465
+ 3.0.1 / 2018-02-09
466
+ - fix CRLF: replace it with single space in attributes value only.
467
+
468
+ 3.0.0 / 2018-02-08
469
+ - change online tool with new changes
470
+ - update info about new options
471
+ - separate tag value processing to separate function
472
+ - make HTML decoding optional
473
+ - give an option to allow boolean attributes
474
+ - change cli options as per v3
475
+ - Correct comparison table format on README
476
+ - update v3 information
477
+ - some performance improvement changes
478
+ - Make regex object local to the method and move some common methods to util
479
+ - Change parser to
480
+ - handle multiple instances of CDATA
481
+ - make triming of value optionals
482
+ - HTML decode attribute and text value
483
+ - refactor code to separate files
484
+ - Ignore newline chars without RE (in validator)
485
+ - validate for XML prolog
486
+ - Validate DOCTYPE without RE
487
+ - Update validator to return error response
488
+ - Update README to add detail about V3
489
+ - Separate xmlNode model class
490
+ - include vscode debug config
491
+ - fix for repeated object
492
+ - fix attribute regex for boolean attributes
493
+ - Fix validator for invalid attributes
494
+ 2.9.4 / 2018-02-02
495
+ - Merge pull request: Decode HTML characters
496
+ - refactor source folder name
497
+ - ignore bundle / browser js to be published to npm
498
+ 2.9.3 / 2018-01-26
499
+ - Merge pull request: Correctly remove CRLF line breaks
500
+ - Enable to parse attribute in online editor
501
+ - Fix testing demo app test
502
+ - Describe parsing options
503
+ - Add options for online demo
504
+ 2.9.2 / 2018-01-18
505
+ - Remove check if tag starting with "XML"
506
+ - Fix: when there are spaces before / after CDATA
507
+
508
+ 2.9.1 / 2018-01-16
509
+ - Fix: newline should be replaced with single space
510
+ - Fix: for single and multiline comments
511
+ - validate xml with CDATA
512
+ - Fix: the issue when there is no space between 2 attributes
513
+ - Fix: https://github.com/NaturalIntelligence/fast-xml-parser/issues/33: when there is newline char in attr val, it doesn't parse
514
+ - Merge pull request: fix ignoreNamespace
515
+ - fix: don't wrap attributes if only namespace attrs
516
+ - fix: use portfinder for run tests, update deps
517
+ - fix: don't treat namespaces as attributes when ignoreNamespace enabled
518
+
519
+ 2.9.0 / 2018-01-10
520
+ - Rewrite the validator to handle large files.
521
+ Ignore DOCTYPE validation.
522
+ - Fix: When attribute value has equal sign
523
+
524
+ 2.8.3 / 2017-12-15
525
+ - Fix: when a tag has value along with subtags
526
+
527
+ 2.8.2 / 2017-12-04
528
+ - Fix value parsing for IE
529
+
530
+ 2.8.1 / 2017-12-01
531
+ - fix: validator should return false instead of err when invalid XML
532
+
533
+ 2.8.0 / 2017-11-29
534
+ - Add CLI option to ignore value conversion
535
+ - Fix variable name when filename is given on CLI
536
+ - Update CLI help text
537
+ - Merge pull request: xml2js: Accept standard input
538
+ - Test Node 8
539
+ - Update dependencies
540
+ - Bundle readToEnd
541
+ - Add ability to read from standard input
542
+
543
+ 2.7.4 / 2017-09-22
544
+ - Merge pull request: Allow wrap attributes with subobject to compatible with other parsers output
545
+
546
+ 2.7.3 / 2017-08-02
547
+ - fix: handle CDATA with regx
548
+
549
+ 2.7.2 / 2017-07-30
550
+ - Change travis config for yarn caching
551
+ - fix validator: when tag property is same as array property
552
+ - Merge pull request: Failing test case in validator for valid SVG
553
+
554
+ 2.7.1 / 2017-07-26
555
+ - Fix: Handle val 0
556
+
557
+ 2.7.0 / 2017-07-25
558
+ - Fix test for arrayMode
559
+ - Merge pull request: Add arrayMode option to parse any nodes as arrays
560
+
561
+ 2.6.0 / 2017-07-14
562
+ - code improvement
563
+ - Add unit tests for value conversion for attr
564
+ - Merge pull request: option of an attribute value conversion to a number (textAttrConversion) the same way as the textNodeConversion option does. Default value is false.
565
+
566
+ 2.5.1 / 2017-07-01
567
+ - Fix XML element name pattern
568
+ - Fix XML element name pattern while parsing
569
+ - Fix validation for xml tag element
570
+
571
+ 2.5.0 / 2017-06-25
572
+ - Improve Validator performance
573
+ - update attr matching regex
574
+ - Add perf tests
575
+ - Improve atrr regex to handle all cases
576
+
577
+ 2.4.4 / 2017-06-08
578
+ - Bug fix: when an attribute has single or double quote in value
579
+
580
+ 2.4.3 / 2017-06-05
581
+ - Bug fix: when multiple CDATA tags are given
582
+ - Merge pull request: add option "textNodeConversion"
583
+ - add option "textNodeConversion"
584
+
585
+ 2.4.1 / 2017-04-14
586
+ - fix tests
587
+ - Bug fix: preserve initial space of node value
588
+ - Handle CDATA
589
+
590
+ 2.3.1 / 2017-03-15
591
+ - Bug fix: when single self closing tag
592
+ - Merge pull request: fix .codeclimate.yml
593
+ - Update .codeclimate.yml - Fixed config so it does not error anymore.
594
+ - Update .codeclimate.yml
595
+
596
+ 2.3.0 / 2017-02-26
597
+ - Code improvement
598
+ - add bithound config
599
+ - Update usage
600
+ - Update travis to generate bundle js before running tests
601
+ - 1.Browserify, 2. add more tests for validator
602
+ - Add validator
603
+ - Fix CLI default parameter bug
604
+
605
+ 2.2.1 / 2017-02-05
606
+ - Bug fix: CLI default option