@openclaw/clickclack 0.0.0 → 2026.6.11-beta.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (746) hide show
  1. package/README.md +12 -2
  2. package/dist/api.js +2 -0
  3. package/dist/channel-B8wm8lOk.js +876 -0
  4. package/dist/channel-plugin-api.js +2 -0
  5. package/dist/index.js +21 -0
  6. package/dist/runtime-api.js +3 -0
  7. package/node_modules/ws/LICENSE +20 -0
  8. package/node_modules/ws/README.md +548 -0
  9. package/node_modules/ws/browser.js +8 -0
  10. package/node_modules/ws/index.js +22 -0
  11. package/node_modules/ws/lib/buffer-util.js +131 -0
  12. package/node_modules/ws/lib/constants.js +19 -0
  13. package/node_modules/ws/lib/event-target.js +292 -0
  14. package/node_modules/ws/lib/extension.js +203 -0
  15. package/node_modules/ws/lib/limiter.js +55 -0
  16. package/node_modules/ws/lib/permessage-deflate.js +528 -0
  17. package/node_modules/ws/lib/receiver.js +760 -0
  18. package/node_modules/ws/lib/sender.js +607 -0
  19. package/node_modules/ws/lib/stream.js +161 -0
  20. package/node_modules/ws/lib/subprotocol.js +62 -0
  21. package/node_modules/ws/lib/validation.js +152 -0
  22. package/node_modules/ws/lib/websocket-server.js +562 -0
  23. package/node_modules/ws/lib/websocket.js +1407 -0
  24. package/node_modules/ws/package.json +70 -0
  25. package/node_modules/ws/wrapper.mjs +21 -0
  26. package/node_modules/zod/LICENSE +21 -0
  27. package/node_modules/zod/README.md +191 -0
  28. package/node_modules/zod/index.cjs +33 -0
  29. package/node_modules/zod/index.d.cts +4 -0
  30. package/node_modules/zod/index.d.ts +4 -0
  31. package/node_modules/zod/index.js +4 -0
  32. package/node_modules/zod/locales/index.cjs +17 -0
  33. package/node_modules/zod/locales/index.d.cts +1 -0
  34. package/node_modules/zod/locales/index.d.ts +1 -0
  35. package/node_modules/zod/locales/index.js +1 -0
  36. package/node_modules/zod/locales/package.json +7 -0
  37. package/node_modules/zod/mini/index.cjs +32 -0
  38. package/node_modules/zod/mini/index.d.cts +3 -0
  39. package/node_modules/zod/mini/index.d.ts +3 -0
  40. package/node_modules/zod/mini/index.js +3 -0
  41. package/node_modules/zod/mini/package.json +7 -0
  42. package/node_modules/zod/package.json +135 -0
  43. package/node_modules/zod/src/index.ts +4 -0
  44. package/node_modules/zod/src/locales/index.ts +1 -0
  45. package/node_modules/zod/src/mini/index.ts +3 -0
  46. package/node_modules/zod/src/v3/ZodError.ts +330 -0
  47. package/node_modules/zod/src/v3/benchmarks/datetime.ts +58 -0
  48. package/node_modules/zod/src/v3/benchmarks/discriminatedUnion.ts +80 -0
  49. package/node_modules/zod/src/v3/benchmarks/index.ts +59 -0
  50. package/node_modules/zod/src/v3/benchmarks/ipv4.ts +57 -0
  51. package/node_modules/zod/src/v3/benchmarks/object.ts +69 -0
  52. package/node_modules/zod/src/v3/benchmarks/primitives.ts +162 -0
  53. package/node_modules/zod/src/v3/benchmarks/realworld.ts +63 -0
  54. package/node_modules/zod/src/v3/benchmarks/string.ts +55 -0
  55. package/node_modules/zod/src/v3/benchmarks/union.ts +80 -0
  56. package/node_modules/zod/src/v3/errors.ts +13 -0
  57. package/node_modules/zod/src/v3/external.ts +6 -0
  58. package/node_modules/zod/src/v3/helpers/enumUtil.ts +17 -0
  59. package/node_modules/zod/src/v3/helpers/errorUtil.ts +8 -0
  60. package/node_modules/zod/src/v3/helpers/parseUtil.ts +176 -0
  61. package/node_modules/zod/src/v3/helpers/partialUtil.ts +34 -0
  62. package/node_modules/zod/src/v3/helpers/typeAliases.ts +2 -0
  63. package/node_modules/zod/src/v3/helpers/util.ts +224 -0
  64. package/node_modules/zod/src/v3/index.ts +4 -0
  65. package/node_modules/zod/src/v3/locales/en.ts +124 -0
  66. package/node_modules/zod/src/v3/standard-schema.ts +113 -0
  67. package/node_modules/zod/src/v3/tests/Mocker.ts +54 -0
  68. package/node_modules/zod/src/v3/tests/all-errors.test.ts +157 -0
  69. package/node_modules/zod/src/v3/tests/anyunknown.test.ts +28 -0
  70. package/node_modules/zod/src/v3/tests/array.test.ts +71 -0
  71. package/node_modules/zod/src/v3/tests/async-parsing.test.ts +388 -0
  72. package/node_modules/zod/src/v3/tests/async-refinements.test.ts +46 -0
  73. package/node_modules/zod/src/v3/tests/base.test.ts +29 -0
  74. package/node_modules/zod/src/v3/tests/bigint.test.ts +55 -0
  75. package/node_modules/zod/src/v3/tests/branded.test.ts +53 -0
  76. package/node_modules/zod/src/v3/tests/catch.test.ts +220 -0
  77. package/node_modules/zod/src/v3/tests/coerce.test.ts +133 -0
  78. package/node_modules/zod/src/v3/tests/complex.test.ts +70 -0
  79. package/node_modules/zod/src/v3/tests/custom.test.ts +31 -0
  80. package/node_modules/zod/src/v3/tests/date.test.ts +32 -0
  81. package/node_modules/zod/src/v3/tests/deepmasking.test.ts +186 -0
  82. package/node_modules/zod/src/v3/tests/default.test.ts +112 -0
  83. package/node_modules/zod/src/v3/tests/description.test.ts +33 -0
  84. package/node_modules/zod/src/v3/tests/discriminated-unions.test.ts +315 -0
  85. package/node_modules/zod/src/v3/tests/enum.test.ts +80 -0
  86. package/node_modules/zod/src/v3/tests/error.test.ts +551 -0
  87. package/node_modules/zod/src/v3/tests/firstparty.test.ts +87 -0
  88. package/node_modules/zod/src/v3/tests/firstpartyschematypes.test.ts +21 -0
  89. package/node_modules/zod/src/v3/tests/function.test.ts +261 -0
  90. package/node_modules/zod/src/v3/tests/generics.test.ts +48 -0
  91. package/node_modules/zod/src/v3/tests/instanceof.test.ts +37 -0
  92. package/node_modules/zod/src/v3/tests/intersection.test.ts +110 -0
  93. package/node_modules/zod/src/v3/tests/language-server.source.ts +76 -0
  94. package/node_modules/zod/src/v3/tests/language-server.test.ts +207 -0
  95. package/node_modules/zod/src/v3/tests/literal.test.ts +36 -0
  96. package/node_modules/zod/src/v3/tests/map.test.ts +110 -0
  97. package/node_modules/zod/src/v3/tests/masking.test.ts +4 -0
  98. package/node_modules/zod/src/v3/tests/mocker.test.ts +19 -0
  99. package/node_modules/zod/src/v3/tests/nan.test.ts +24 -0
  100. package/node_modules/zod/src/v3/tests/nativeEnum.test.ts +87 -0
  101. package/node_modules/zod/src/v3/tests/nullable.test.ts +42 -0
  102. package/node_modules/zod/src/v3/tests/number.test.ts +176 -0
  103. package/node_modules/zod/src/v3/tests/object-augmentation.test.ts +29 -0
  104. package/node_modules/zod/src/v3/tests/object-in-es5-env.test.ts +29 -0
  105. package/node_modules/zod/src/v3/tests/object.test.ts +434 -0
  106. package/node_modules/zod/src/v3/tests/optional.test.ts +42 -0
  107. package/node_modules/zod/src/v3/tests/parseUtil.test.ts +23 -0
  108. package/node_modules/zod/src/v3/tests/parser.test.ts +41 -0
  109. package/node_modules/zod/src/v3/tests/partials.test.ts +243 -0
  110. package/node_modules/zod/src/v3/tests/pickomit.test.ts +111 -0
  111. package/node_modules/zod/src/v3/tests/pipeline.test.ts +29 -0
  112. package/node_modules/zod/src/v3/tests/preprocess.test.ts +186 -0
  113. package/node_modules/zod/src/v3/tests/primitive.test.ts +440 -0
  114. package/node_modules/zod/src/v3/tests/promise.test.ts +90 -0
  115. package/node_modules/zod/src/v3/tests/readonly.test.ts +194 -0
  116. package/node_modules/zod/src/v3/tests/record.test.ts +171 -0
  117. package/node_modules/zod/src/v3/tests/recursive.test.ts +197 -0
  118. package/node_modules/zod/src/v3/tests/refine.test.ts +313 -0
  119. package/node_modules/zod/src/v3/tests/safeparse.test.ts +27 -0
  120. package/node_modules/zod/src/v3/tests/set.test.ts +142 -0
  121. package/node_modules/zod/src/v3/tests/standard-schema.test.ts +83 -0
  122. package/node_modules/zod/src/v3/tests/string.test.ts +916 -0
  123. package/node_modules/zod/src/v3/tests/transformer.test.ts +233 -0
  124. package/node_modules/zod/src/v3/tests/tuple.test.ts +90 -0
  125. package/node_modules/zod/src/v3/tests/unions.test.ts +57 -0
  126. package/node_modules/zod/src/v3/tests/validations.test.ts +133 -0
  127. package/node_modules/zod/src/v3/tests/void.test.ts +15 -0
  128. package/node_modules/zod/src/v3/types.ts +5138 -0
  129. package/node_modules/zod/src/v4/classic/checks.ts +32 -0
  130. package/node_modules/zod/src/v4/classic/coerce.ts +27 -0
  131. package/node_modules/zod/src/v4/classic/compat.ts +70 -0
  132. package/node_modules/zod/src/v4/classic/errors.ts +82 -0
  133. package/node_modules/zod/src/v4/classic/external.ts +52 -0
  134. package/node_modules/zod/src/v4/classic/from-json-schema.ts +659 -0
  135. package/node_modules/zod/src/v4/classic/index.ts +5 -0
  136. package/node_modules/zod/src/v4/classic/iso.ts +90 -0
  137. package/node_modules/zod/src/v4/classic/parse.ts +82 -0
  138. package/node_modules/zod/src/v4/classic/schemas.ts +2672 -0
  139. package/node_modules/zod/src/v4/classic/tests/anyunknown.test.ts +26 -0
  140. package/node_modules/zod/src/v4/classic/tests/apply.test.ts +59 -0
  141. package/node_modules/zod/src/v4/classic/tests/array.test.ts +264 -0
  142. package/node_modules/zod/src/v4/classic/tests/assignability.test.ts +216 -0
  143. package/node_modules/zod/src/v4/classic/tests/async-parsing.test.ts +381 -0
  144. package/node_modules/zod/src/v4/classic/tests/async-refinements.test.ts +68 -0
  145. package/node_modules/zod/src/v4/classic/tests/base.test.ts +7 -0
  146. package/node_modules/zod/src/v4/classic/tests/bigint.test.ts +54 -0
  147. package/node_modules/zod/src/v4/classic/tests/brand.test.ts +106 -0
  148. package/node_modules/zod/src/v4/classic/tests/catch.test.ts +326 -0
  149. package/node_modules/zod/src/v4/classic/tests/coalesce.test.ts +20 -0
  150. package/node_modules/zod/src/v4/classic/tests/codec-examples.test.ts +573 -0
  151. package/node_modules/zod/src/v4/classic/tests/codec.test.ts +703 -0
  152. package/node_modules/zod/src/v4/classic/tests/coerce.test.ts +160 -0
  153. package/node_modules/zod/src/v4/classic/tests/continuability.test.ts +374 -0
  154. package/node_modules/zod/src/v4/classic/tests/custom.test.ts +40 -0
  155. package/node_modules/zod/src/v4/classic/tests/date.test.ts +62 -0
  156. package/node_modules/zod/src/v4/classic/tests/datetime.test.ts +302 -0
  157. package/node_modules/zod/src/v4/classic/tests/default.test.ts +409 -0
  158. package/node_modules/zod/src/v4/classic/tests/describe-meta-checks.test.ts +27 -0
  159. package/node_modules/zod/src/v4/classic/tests/description.test.ts +32 -0
  160. package/node_modules/zod/src/v4/classic/tests/detached-methods.test.ts +197 -0
  161. package/node_modules/zod/src/v4/classic/tests/discriminated-unions.test.ts +694 -0
  162. package/node_modules/zod/src/v4/classic/tests/enum.test.ts +285 -0
  163. package/node_modules/zod/src/v4/classic/tests/error-utils.test.ts +807 -0
  164. package/node_modules/zod/src/v4/classic/tests/error.test.ts +711 -0
  165. package/node_modules/zod/src/v4/classic/tests/file.test.ts +96 -0
  166. package/node_modules/zod/src/v4/classic/tests/firstparty.test.ts +179 -0
  167. package/node_modules/zod/src/v4/classic/tests/fix-json-issue.test.ts +26 -0
  168. package/node_modules/zod/src/v4/classic/tests/from-json-schema.test.ts +895 -0
  169. package/node_modules/zod/src/v4/classic/tests/function.test.ts +360 -0
  170. package/node_modules/zod/src/v4/classic/tests/generics.test.ts +72 -0
  171. package/node_modules/zod/src/v4/classic/tests/global-config.test.ts +39 -0
  172. package/node_modules/zod/src/v4/classic/tests/hash.test.ts +68 -0
  173. package/node_modules/zod/src/v4/classic/tests/index.test.ts +939 -0
  174. package/node_modules/zod/src/v4/classic/tests/instanceof.test.ts +60 -0
  175. package/node_modules/zod/src/v4/classic/tests/intersection.test.ts +198 -0
  176. package/node_modules/zod/src/v4/classic/tests/jitless-allows-eval.test.ts +46 -0
  177. package/node_modules/zod/src/v4/classic/tests/json.test.ts +109 -0
  178. package/node_modules/zod/src/v4/classic/tests/lazy.test.ts +227 -0
  179. package/node_modules/zod/src/v4/classic/tests/literal.test.ts +117 -0
  180. package/node_modules/zod/src/v4/classic/tests/locales_ka.test.ts +29 -0
  181. package/node_modules/zod/src/v4/classic/tests/locales_ro.test.ts +24 -0
  182. package/node_modules/zod/src/v4/classic/tests/map.test.ts +330 -0
  183. package/node_modules/zod/src/v4/classic/tests/nan.test.ts +21 -0
  184. package/node_modules/zod/src/v4/classic/tests/nested-refine.test.ts +168 -0
  185. package/node_modules/zod/src/v4/classic/tests/nonoptional.test.ts +101 -0
  186. package/node_modules/zod/src/v4/classic/tests/nullable.test.ts +22 -0
  187. package/node_modules/zod/src/v4/classic/tests/number.test.ts +325 -0
  188. package/node_modules/zod/src/v4/classic/tests/object.test.ts +717 -0
  189. package/node_modules/zod/src/v4/classic/tests/optional.test.ts +333 -0
  190. package/node_modules/zod/src/v4/classic/tests/partial.test.ts +450 -0
  191. package/node_modules/zod/src/v4/classic/tests/pickomit.test.ts +211 -0
  192. package/node_modules/zod/src/v4/classic/tests/pipe.test.ts +101 -0
  193. package/node_modules/zod/src/v4/classic/tests/prefault.test.ts +74 -0
  194. package/node_modules/zod/src/v4/classic/tests/preprocess-types.test.ts +26 -0
  195. package/node_modules/zod/src/v4/classic/tests/preprocess.test.ts +351 -0
  196. package/node_modules/zod/src/v4/classic/tests/primitive.test.ts +175 -0
  197. package/node_modules/zod/src/v4/classic/tests/promise.test.ts +81 -0
  198. package/node_modules/zod/src/v4/classic/tests/prototypes.test.ts +23 -0
  199. package/node_modules/zod/src/v4/classic/tests/readonly.test.ts +252 -0
  200. package/node_modules/zod/src/v4/classic/tests/record.test.ts +717 -0
  201. package/node_modules/zod/src/v4/classic/tests/recursive-types.test.ts +631 -0
  202. package/node_modules/zod/src/v4/classic/tests/refine.test.ts +633 -0
  203. package/node_modules/zod/src/v4/classic/tests/registries.test.ts +243 -0
  204. package/node_modules/zod/src/v4/classic/tests/set.test.ts +181 -0
  205. package/node_modules/zod/src/v4/classic/tests/standard-schema.test.ts +134 -0
  206. package/node_modules/zod/src/v4/classic/tests/string-formats.test.ts +125 -0
  207. package/node_modules/zod/src/v4/classic/tests/string.test.ts +1224 -0
  208. package/node_modules/zod/src/v4/classic/tests/stringbool.test.ts +106 -0
  209. package/node_modules/zod/src/v4/classic/tests/template-literal.test.ts +771 -0
  210. package/node_modules/zod/src/v4/classic/tests/to-json-schema-methods.test.ts +438 -0
  211. package/node_modules/zod/src/v4/classic/tests/to-json-schema.test.ts +3125 -0
  212. package/node_modules/zod/src/v4/classic/tests/transform.test.ts +378 -0
  213. package/node_modules/zod/src/v4/classic/tests/tuple.test.ts +496 -0
  214. package/node_modules/zod/src/v4/classic/tests/union.test.ts +273 -0
  215. package/node_modules/zod/src/v4/classic/tests/url.test.ts +13 -0
  216. package/node_modules/zod/src/v4/classic/tests/validations.test.ts +283 -0
  217. package/node_modules/zod/src/v4/classic/tests/void.test.ts +12 -0
  218. package/node_modules/zod/src/v4/core/api.ts +1823 -0
  219. package/node_modules/zod/src/v4/core/checks.ts +1293 -0
  220. package/node_modules/zod/src/v4/core/config.ts +15 -0
  221. package/node_modules/zod/src/v4/core/core.ts +153 -0
  222. package/node_modules/zod/src/v4/core/doc.ts +44 -0
  223. package/node_modules/zod/src/v4/core/errors.ts +455 -0
  224. package/node_modules/zod/src/v4/core/index.ts +16 -0
  225. package/node_modules/zod/src/v4/core/json-schema-generator.ts +126 -0
  226. package/node_modules/zod/src/v4/core/json-schema-processors.ts +666 -0
  227. package/node_modules/zod/src/v4/core/json-schema.ts +147 -0
  228. package/node_modules/zod/src/v4/core/parse.ts +195 -0
  229. package/node_modules/zod/src/v4/core/regexes.ts +190 -0
  230. package/node_modules/zod/src/v4/core/registries.ts +105 -0
  231. package/node_modules/zod/src/v4/core/schemas.ts +4730 -0
  232. package/node_modules/zod/src/v4/core/standard-schema.ts +159 -0
  233. package/node_modules/zod/src/v4/core/tests/extend.test.ts +59 -0
  234. package/node_modules/zod/src/v4/core/tests/index.test.ts +46 -0
  235. package/node_modules/zod/src/v4/core/tests/locales/be.test.ts +124 -0
  236. package/node_modules/zod/src/v4/core/tests/locales/el.test.ts +215 -0
  237. package/node_modules/zod/src/v4/core/tests/locales/en.test.ts +22 -0
  238. package/node_modules/zod/src/v4/core/tests/locales/es.test.ts +181 -0
  239. package/node_modules/zod/src/v4/core/tests/locales/fr.test.ts +72 -0
  240. package/node_modules/zod/src/v4/core/tests/locales/he.test.ts +379 -0
  241. package/node_modules/zod/src/v4/core/tests/locales/hr.test.ts +163 -0
  242. package/node_modules/zod/src/v4/core/tests/locales/nl.test.ts +46 -0
  243. package/node_modules/zod/src/v4/core/tests/locales/ru.test.ts +128 -0
  244. package/node_modules/zod/src/v4/core/tests/locales/tr.test.ts +69 -0
  245. package/node_modules/zod/src/v4/core/tests/locales/uz.test.ts +105 -0
  246. package/node_modules/zod/src/v4/core/tests/record-constructor.test.ts +125 -0
  247. package/node_modules/zod/src/v4/core/tests/recursive-tuples.test.ts +45 -0
  248. package/node_modules/zod/src/v4/core/to-json-schema.ts +622 -0
  249. package/node_modules/zod/src/v4/core/util.ts +983 -0
  250. package/node_modules/zod/src/v4/core/versions.ts +5 -0
  251. package/node_modules/zod/src/v4/core/zsf.ts +323 -0
  252. package/node_modules/zod/src/v4/index.ts +4 -0
  253. package/node_modules/zod/src/v4/locales/ar.ts +115 -0
  254. package/node_modules/zod/src/v4/locales/az.ts +111 -0
  255. package/node_modules/zod/src/v4/locales/be.ts +176 -0
  256. package/node_modules/zod/src/v4/locales/bg.ts +128 -0
  257. package/node_modules/zod/src/v4/locales/ca.ts +116 -0
  258. package/node_modules/zod/src/v4/locales/cs.ts +118 -0
  259. package/node_modules/zod/src/v4/locales/da.ts +123 -0
  260. package/node_modules/zod/src/v4/locales/de.ts +116 -0
  261. package/node_modules/zod/src/v4/locales/el.ts +121 -0
  262. package/node_modules/zod/src/v4/locales/en.ts +123 -0
  263. package/node_modules/zod/src/v4/locales/eo.ts +118 -0
  264. package/node_modules/zod/src/v4/locales/es.ts +141 -0
  265. package/node_modules/zod/src/v4/locales/fa.ts +126 -0
  266. package/node_modules/zod/src/v4/locales/fi.ts +121 -0
  267. package/node_modules/zod/src/v4/locales/fr-CA.ts +116 -0
  268. package/node_modules/zod/src/v4/locales/fr.ts +132 -0
  269. package/node_modules/zod/src/v4/locales/he.ts +246 -0
  270. package/node_modules/zod/src/v4/locales/hr.ts +131 -0
  271. package/node_modules/zod/src/v4/locales/hu.ts +117 -0
  272. package/node_modules/zod/src/v4/locales/hy.ts +164 -0
  273. package/node_modules/zod/src/v4/locales/id.ts +115 -0
  274. package/node_modules/zod/src/v4/locales/index.ts +52 -0
  275. package/node_modules/zod/src/v4/locales/is.ts +119 -0
  276. package/node_modules/zod/src/v4/locales/it.ts +116 -0
  277. package/node_modules/zod/src/v4/locales/ja.ts +114 -0
  278. package/node_modules/zod/src/v4/locales/ka.ts +123 -0
  279. package/node_modules/zod/src/v4/locales/kh.ts +7 -0
  280. package/node_modules/zod/src/v4/locales/km.ts +119 -0
  281. package/node_modules/zod/src/v4/locales/ko.ts +121 -0
  282. package/node_modules/zod/src/v4/locales/lt.ts +239 -0
  283. package/node_modules/zod/src/v4/locales/mk.ts +118 -0
  284. package/node_modules/zod/src/v4/locales/ms.ts +115 -0
  285. package/node_modules/zod/src/v4/locales/nl.ts +121 -0
  286. package/node_modules/zod/src/v4/locales/no.ts +116 -0
  287. package/node_modules/zod/src/v4/locales/ota.ts +117 -0
  288. package/node_modules/zod/src/v4/locales/pl.ts +118 -0
  289. package/node_modules/zod/src/v4/locales/ps.ts +126 -0
  290. package/node_modules/zod/src/v4/locales/pt.ts +116 -0
  291. package/node_modules/zod/src/v4/locales/ro.ts +129 -0
  292. package/node_modules/zod/src/v4/locales/ru.ts +176 -0
  293. package/node_modules/zod/src/v4/locales/sl.ts +118 -0
  294. package/node_modules/zod/src/v4/locales/sv.ts +119 -0
  295. package/node_modules/zod/src/v4/locales/ta.ts +118 -0
  296. package/node_modules/zod/src/v4/locales/th.ts +119 -0
  297. package/node_modules/zod/src/v4/locales/tr.ts +111 -0
  298. package/node_modules/zod/src/v4/locales/ua.ts +7 -0
  299. package/node_modules/zod/src/v4/locales/uk.ts +117 -0
  300. package/node_modules/zod/src/v4/locales/ur.ts +119 -0
  301. package/node_modules/zod/src/v4/locales/uz.ts +117 -0
  302. package/node_modules/zod/src/v4/locales/vi.ts +117 -0
  303. package/node_modules/zod/src/v4/locales/yo.ts +124 -0
  304. package/node_modules/zod/src/v4/locales/zh-CN.ts +116 -0
  305. package/node_modules/zod/src/v4/locales/zh-TW.ts +115 -0
  306. package/node_modules/zod/src/v4/mini/checks.ts +32 -0
  307. package/node_modules/zod/src/v4/mini/coerce.ts +27 -0
  308. package/node_modules/zod/src/v4/mini/external.ts +41 -0
  309. package/node_modules/zod/src/v4/mini/index.ts +3 -0
  310. package/node_modules/zod/src/v4/mini/iso.ts +66 -0
  311. package/node_modules/zod/src/v4/mini/parse.ts +14 -0
  312. package/node_modules/zod/src/v4/mini/schemas.ts +1947 -0
  313. package/node_modules/zod/src/v4/mini/tests/apply.test.ts +24 -0
  314. package/node_modules/zod/src/v4/mini/tests/assignability.test.ts +129 -0
  315. package/node_modules/zod/src/v4/mini/tests/brand.test.ts +94 -0
  316. package/node_modules/zod/src/v4/mini/tests/checks.test.ts +144 -0
  317. package/node_modules/zod/src/v4/mini/tests/codec.test.ts +548 -0
  318. package/node_modules/zod/src/v4/mini/tests/computed.test.ts +36 -0
  319. package/node_modules/zod/src/v4/mini/tests/error.test.ts +22 -0
  320. package/node_modules/zod/src/v4/mini/tests/functions.test.ts +5 -0
  321. package/node_modules/zod/src/v4/mini/tests/index.test.ts +993 -0
  322. package/node_modules/zod/src/v4/mini/tests/number.test.ts +95 -0
  323. package/node_modules/zod/src/v4/mini/tests/object.test.ts +227 -0
  324. package/node_modules/zod/src/v4/mini/tests/prototypes.test.ts +43 -0
  325. package/node_modules/zod/src/v4/mini/tests/recursive-types.test.ts +325 -0
  326. package/node_modules/zod/src/v4/mini/tests/standard-schema.test.ts +50 -0
  327. package/node_modules/zod/src/v4/mini/tests/string.test.ts +352 -0
  328. package/node_modules/zod/src/v4-mini/index.ts +3 -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 +112 -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/package.json +7 -0
  374. package/node_modules/zod/v3/standard-schema.cjs +2 -0
  375. package/node_modules/zod/v3/standard-schema.d.cts +102 -0
  376. package/node_modules/zod/v3/standard-schema.d.ts +102 -0
  377. package/node_modules/zod/v3/standard-schema.js +1 -0
  378. package/node_modules/zod/v3/types.cjs +3777 -0
  379. package/node_modules/zod/v3/types.d.cts +1034 -0
  380. package/node_modules/zod/v3/types.d.ts +1034 -0
  381. package/node_modules/zod/v3/types.js +3695 -0
  382. package/node_modules/zod/v4/classic/checks.cjs +33 -0
  383. package/node_modules/zod/v4/classic/checks.d.cts +1 -0
  384. package/node_modules/zod/v4/classic/checks.d.ts +1 -0
  385. package/node_modules/zod/v4/classic/checks.js +1 -0
  386. package/node_modules/zod/v4/classic/coerce.cjs +47 -0
  387. package/node_modules/zod/v4/classic/coerce.d.cts +17 -0
  388. package/node_modules/zod/v4/classic/coerce.d.ts +17 -0
  389. package/node_modules/zod/v4/classic/coerce.js +17 -0
  390. package/node_modules/zod/v4/classic/compat.cjs +61 -0
  391. package/node_modules/zod/v4/classic/compat.d.cts +50 -0
  392. package/node_modules/zod/v4/classic/compat.d.ts +50 -0
  393. package/node_modules/zod/v4/classic/compat.js +31 -0
  394. package/node_modules/zod/v4/classic/errors.cjs +74 -0
  395. package/node_modules/zod/v4/classic/errors.d.cts +30 -0
  396. package/node_modules/zod/v4/classic/errors.d.ts +30 -0
  397. package/node_modules/zod/v4/classic/errors.js +48 -0
  398. package/node_modules/zod/v4/classic/external.cjs +73 -0
  399. package/node_modules/zod/v4/classic/external.d.cts +16 -0
  400. package/node_modules/zod/v4/classic/external.d.ts +16 -0
  401. package/node_modules/zod/v4/classic/external.js +20 -0
  402. package/node_modules/zod/v4/classic/from-json-schema.cjs +625 -0
  403. package/node_modules/zod/v4/classic/from-json-schema.d.cts +12 -0
  404. package/node_modules/zod/v4/classic/from-json-schema.d.ts +12 -0
  405. package/node_modules/zod/v4/classic/from-json-schema.js +599 -0
  406. package/node_modules/zod/v4/classic/index.cjs +33 -0
  407. package/node_modules/zod/v4/classic/index.d.cts +4 -0
  408. package/node_modules/zod/v4/classic/index.d.ts +4 -0
  409. package/node_modules/zod/v4/classic/index.js +4 -0
  410. package/node_modules/zod/v4/classic/iso.cjs +60 -0
  411. package/node_modules/zod/v4/classic/iso.d.cts +22 -0
  412. package/node_modules/zod/v4/classic/iso.d.ts +22 -0
  413. package/node_modules/zod/v4/classic/iso.js +30 -0
  414. package/node_modules/zod/v4/classic/package.json +7 -0
  415. package/node_modules/zod/v4/classic/parse.cjs +41 -0
  416. package/node_modules/zod/v4/classic/parse.d.cts +31 -0
  417. package/node_modules/zod/v4/classic/parse.d.ts +31 -0
  418. package/node_modules/zod/v4/classic/parse.js +15 -0
  419. package/node_modules/zod/v4/classic/schemas.cjs +1511 -0
  420. package/node_modules/zod/v4/classic/schemas.d.cts +767 -0
  421. package/node_modules/zod/v4/classic/schemas.d.ts +767 -0
  422. package/node_modules/zod/v4/classic/schemas.js +1395 -0
  423. package/node_modules/zod/v4/core/api.cjs +1227 -0
  424. package/node_modules/zod/v4/core/api.d.cts +325 -0
  425. package/node_modules/zod/v4/core/api.d.ts +325 -0
  426. package/node_modules/zod/v4/core/api.js +1087 -0
  427. package/node_modules/zod/v4/core/checks.cjs +601 -0
  428. package/node_modules/zod/v4/core/checks.d.cts +278 -0
  429. package/node_modules/zod/v4/core/checks.d.ts +278 -0
  430. package/node_modules/zod/v4/core/checks.js +575 -0
  431. package/node_modules/zod/v4/core/core.cjs +85 -0
  432. package/node_modules/zod/v4/core/core.d.cts +70 -0
  433. package/node_modules/zod/v4/core/core.d.ts +70 -0
  434. package/node_modules/zod/v4/core/core.js +78 -0
  435. package/node_modules/zod/v4/core/doc.cjs +39 -0
  436. package/node_modules/zod/v4/core/doc.d.cts +14 -0
  437. package/node_modules/zod/v4/core/doc.d.ts +14 -0
  438. package/node_modules/zod/v4/core/doc.js +35 -0
  439. package/node_modules/zod/v4/core/errors.cjs +216 -0
  440. package/node_modules/zod/v4/core/errors.d.cts +221 -0
  441. package/node_modules/zod/v4/core/errors.d.ts +221 -0
  442. package/node_modules/zod/v4/core/errors.js +185 -0
  443. package/node_modules/zod/v4/core/index.cjs +47 -0
  444. package/node_modules/zod/v4/core/index.d.cts +16 -0
  445. package/node_modules/zod/v4/core/index.d.ts +16 -0
  446. package/node_modules/zod/v4/core/index.js +16 -0
  447. package/node_modules/zod/v4/core/json-schema-generator.cjs +99 -0
  448. package/node_modules/zod/v4/core/json-schema-generator.d.cts +65 -0
  449. package/node_modules/zod/v4/core/json-schema-generator.d.ts +65 -0
  450. package/node_modules/zod/v4/core/json-schema-generator.js +95 -0
  451. package/node_modules/zod/v4/core/json-schema-processors.cjs +644 -0
  452. package/node_modules/zod/v4/core/json-schema-processors.d.cts +49 -0
  453. package/node_modules/zod/v4/core/json-schema-processors.d.ts +49 -0
  454. package/node_modules/zod/v4/core/json-schema-processors.js +601 -0
  455. package/node_modules/zod/v4/core/json-schema.cjs +2 -0
  456. package/node_modules/zod/v4/core/json-schema.d.cts +88 -0
  457. package/node_modules/zod/v4/core/json-schema.d.ts +88 -0
  458. package/node_modules/zod/v4/core/json-schema.js +1 -0
  459. package/node_modules/zod/v4/core/package.json +7 -0
  460. package/node_modules/zod/v4/core/parse.cjs +131 -0
  461. package/node_modules/zod/v4/core/parse.d.cts +49 -0
  462. package/node_modules/zod/v4/core/parse.d.ts +49 -0
  463. package/node_modules/zod/v4/core/parse.js +93 -0
  464. package/node_modules/zod/v4/core/regexes.cjs +172 -0
  465. package/node_modules/zod/v4/core/regexes.d.cts +85 -0
  466. package/node_modules/zod/v4/core/regexes.d.ts +85 -0
  467. package/node_modules/zod/v4/core/regexes.js +139 -0
  468. package/node_modules/zod/v4/core/registries.cjs +56 -0
  469. package/node_modules/zod/v4/core/registries.d.cts +35 -0
  470. package/node_modules/zod/v4/core/registries.d.ts +35 -0
  471. package/node_modules/zod/v4/core/registries.js +51 -0
  472. package/node_modules/zod/v4/core/schemas.cjs +2270 -0
  473. package/node_modules/zod/v4/core/schemas.d.cts +1184 -0
  474. package/node_modules/zod/v4/core/schemas.d.ts +1184 -0
  475. package/node_modules/zod/v4/core/schemas.js +2239 -0
  476. package/node_modules/zod/v4/core/standard-schema.cjs +2 -0
  477. package/node_modules/zod/v4/core/standard-schema.d.cts +126 -0
  478. package/node_modules/zod/v4/core/standard-schema.d.ts +126 -0
  479. package/node_modules/zod/v4/core/standard-schema.js +1 -0
  480. package/node_modules/zod/v4/core/to-json-schema.cjs +457 -0
  481. package/node_modules/zod/v4/core/to-json-schema.d.cts +114 -0
  482. package/node_modules/zod/v4/core/to-json-schema.d.ts +114 -0
  483. package/node_modules/zod/v4/core/to-json-schema.js +448 -0
  484. package/node_modules/zod/v4/core/util.cjs +734 -0
  485. package/node_modules/zod/v4/core/util.d.cts +200 -0
  486. package/node_modules/zod/v4/core/util.d.ts +200 -0
  487. package/node_modules/zod/v4/core/util.js +674 -0
  488. package/node_modules/zod/v4/core/versions.cjs +8 -0
  489. package/node_modules/zod/v4/core/versions.d.cts +5 -0
  490. package/node_modules/zod/v4/core/versions.d.ts +5 -0
  491. package/node_modules/zod/v4/core/versions.js +5 -0
  492. package/node_modules/zod/v4/index.cjs +22 -0
  493. package/node_modules/zod/v4/index.d.cts +3 -0
  494. package/node_modules/zod/v4/index.d.ts +3 -0
  495. package/node_modules/zod/v4/index.js +3 -0
  496. package/node_modules/zod/v4/locales/ar.cjs +133 -0
  497. package/node_modules/zod/v4/locales/ar.d.cts +5 -0
  498. package/node_modules/zod/v4/locales/ar.d.ts +4 -0
  499. package/node_modules/zod/v4/locales/ar.js +106 -0
  500. package/node_modules/zod/v4/locales/az.cjs +132 -0
  501. package/node_modules/zod/v4/locales/az.d.cts +5 -0
  502. package/node_modules/zod/v4/locales/az.d.ts +4 -0
  503. package/node_modules/zod/v4/locales/az.js +105 -0
  504. package/node_modules/zod/v4/locales/be.cjs +183 -0
  505. package/node_modules/zod/v4/locales/be.d.cts +5 -0
  506. package/node_modules/zod/v4/locales/be.d.ts +4 -0
  507. package/node_modules/zod/v4/locales/be.js +156 -0
  508. package/node_modules/zod/v4/locales/bg.cjs +147 -0
  509. package/node_modules/zod/v4/locales/bg.d.cts +5 -0
  510. package/node_modules/zod/v4/locales/bg.d.ts +4 -0
  511. package/node_modules/zod/v4/locales/bg.js +120 -0
  512. package/node_modules/zod/v4/locales/ca.cjs +134 -0
  513. package/node_modules/zod/v4/locales/ca.d.cts +5 -0
  514. package/node_modules/zod/v4/locales/ca.d.ts +4 -0
  515. package/node_modules/zod/v4/locales/ca.js +107 -0
  516. package/node_modules/zod/v4/locales/cs.cjs +138 -0
  517. package/node_modules/zod/v4/locales/cs.d.cts +5 -0
  518. package/node_modules/zod/v4/locales/cs.d.ts +4 -0
  519. package/node_modules/zod/v4/locales/cs.js +111 -0
  520. package/node_modules/zod/v4/locales/da.cjs +142 -0
  521. package/node_modules/zod/v4/locales/da.d.cts +5 -0
  522. package/node_modules/zod/v4/locales/da.d.ts +4 -0
  523. package/node_modules/zod/v4/locales/da.js +115 -0
  524. package/node_modules/zod/v4/locales/de.cjs +135 -0
  525. package/node_modules/zod/v4/locales/de.d.cts +5 -0
  526. package/node_modules/zod/v4/locales/de.d.ts +4 -0
  527. package/node_modules/zod/v4/locales/de.js +108 -0
  528. package/node_modules/zod/v4/locales/el.cjs +136 -0
  529. package/node_modules/zod/v4/locales/el.d.cts +5 -0
  530. package/node_modules/zod/v4/locales/el.d.ts +4 -0
  531. package/node_modules/zod/v4/locales/el.js +109 -0
  532. package/node_modules/zod/v4/locales/en.cjs +140 -0
  533. package/node_modules/zod/v4/locales/en.d.cts +5 -0
  534. package/node_modules/zod/v4/locales/en.d.ts +4 -0
  535. package/node_modules/zod/v4/locales/en.js +113 -0
  536. package/node_modules/zod/v4/locales/eo.cjs +136 -0
  537. package/node_modules/zod/v4/locales/eo.d.cts +5 -0
  538. package/node_modules/zod/v4/locales/eo.d.ts +4 -0
  539. package/node_modules/zod/v4/locales/eo.js +109 -0
  540. package/node_modules/zod/v4/locales/es.cjs +159 -0
  541. package/node_modules/zod/v4/locales/es.d.cts +5 -0
  542. package/node_modules/zod/v4/locales/es.d.ts +4 -0
  543. package/node_modules/zod/v4/locales/es.js +132 -0
  544. package/node_modules/zod/v4/locales/fa.cjs +141 -0
  545. package/node_modules/zod/v4/locales/fa.d.cts +5 -0
  546. package/node_modules/zod/v4/locales/fa.d.ts +4 -0
  547. package/node_modules/zod/v4/locales/fa.js +114 -0
  548. package/node_modules/zod/v4/locales/fi.cjs +139 -0
  549. package/node_modules/zod/v4/locales/fi.d.cts +5 -0
  550. package/node_modules/zod/v4/locales/fi.d.ts +4 -0
  551. package/node_modules/zod/v4/locales/fi.js +112 -0
  552. package/node_modules/zod/v4/locales/fr-CA.cjs +134 -0
  553. package/node_modules/zod/v4/locales/fr-CA.d.cts +5 -0
  554. package/node_modules/zod/v4/locales/fr-CA.d.ts +4 -0
  555. package/node_modules/zod/v4/locales/fr-CA.js +107 -0
  556. package/node_modules/zod/v4/locales/fr.cjs +152 -0
  557. package/node_modules/zod/v4/locales/fr.d.cts +5 -0
  558. package/node_modules/zod/v4/locales/fr.d.ts +4 -0
  559. package/node_modules/zod/v4/locales/fr.js +125 -0
  560. package/node_modules/zod/v4/locales/he.cjs +241 -0
  561. package/node_modules/zod/v4/locales/he.d.cts +5 -0
  562. package/node_modules/zod/v4/locales/he.d.ts +4 -0
  563. package/node_modules/zod/v4/locales/he.js +214 -0
  564. package/node_modules/zod/v4/locales/hr.cjs +149 -0
  565. package/node_modules/zod/v4/locales/hr.d.cts +5 -0
  566. package/node_modules/zod/v4/locales/hr.d.ts +4 -0
  567. package/node_modules/zod/v4/locales/hr.js +122 -0
  568. package/node_modules/zod/v4/locales/hu.cjs +135 -0
  569. package/node_modules/zod/v4/locales/hu.d.cts +5 -0
  570. package/node_modules/zod/v4/locales/hu.d.ts +4 -0
  571. package/node_modules/zod/v4/locales/hu.js +108 -0
  572. package/node_modules/zod/v4/locales/hy.cjs +174 -0
  573. package/node_modules/zod/v4/locales/hy.d.cts +5 -0
  574. package/node_modules/zod/v4/locales/hy.d.ts +4 -0
  575. package/node_modules/zod/v4/locales/hy.js +147 -0
  576. package/node_modules/zod/v4/locales/id.cjs +133 -0
  577. package/node_modules/zod/v4/locales/id.d.cts +5 -0
  578. package/node_modules/zod/v4/locales/id.d.ts +4 -0
  579. package/node_modules/zod/v4/locales/id.js +106 -0
  580. package/node_modules/zod/v4/locales/index.cjs +111 -0
  581. package/node_modules/zod/v4/locales/index.d.cts +52 -0
  582. package/node_modules/zod/v4/locales/index.d.ts +52 -0
  583. package/node_modules/zod/v4/locales/index.js +52 -0
  584. package/node_modules/zod/v4/locales/is.cjs +136 -0
  585. package/node_modules/zod/v4/locales/is.d.cts +5 -0
  586. package/node_modules/zod/v4/locales/is.d.ts +4 -0
  587. package/node_modules/zod/v4/locales/is.js +109 -0
  588. package/node_modules/zod/v4/locales/it.cjs +135 -0
  589. package/node_modules/zod/v4/locales/it.d.cts +5 -0
  590. package/node_modules/zod/v4/locales/it.d.ts +4 -0
  591. package/node_modules/zod/v4/locales/it.js +108 -0
  592. package/node_modules/zod/v4/locales/ja.cjs +134 -0
  593. package/node_modules/zod/v4/locales/ja.d.cts +5 -0
  594. package/node_modules/zod/v4/locales/ja.d.ts +4 -0
  595. package/node_modules/zod/v4/locales/ja.js +107 -0
  596. package/node_modules/zod/v4/locales/ka.cjs +139 -0
  597. package/node_modules/zod/v4/locales/ka.d.cts +5 -0
  598. package/node_modules/zod/v4/locales/ka.d.ts +4 -0
  599. package/node_modules/zod/v4/locales/ka.js +112 -0
  600. package/node_modules/zod/v4/locales/kh.cjs +12 -0
  601. package/node_modules/zod/v4/locales/kh.d.cts +5 -0
  602. package/node_modules/zod/v4/locales/kh.d.ts +5 -0
  603. package/node_modules/zod/v4/locales/kh.js +5 -0
  604. package/node_modules/zod/v4/locales/km.cjs +137 -0
  605. package/node_modules/zod/v4/locales/km.d.cts +5 -0
  606. package/node_modules/zod/v4/locales/km.d.ts +4 -0
  607. package/node_modules/zod/v4/locales/km.js +110 -0
  608. package/node_modules/zod/v4/locales/ko.cjs +138 -0
  609. package/node_modules/zod/v4/locales/ko.d.cts +5 -0
  610. package/node_modules/zod/v4/locales/ko.d.ts +4 -0
  611. package/node_modules/zod/v4/locales/ko.js +111 -0
  612. package/node_modules/zod/v4/locales/lt.cjs +230 -0
  613. package/node_modules/zod/v4/locales/lt.d.cts +5 -0
  614. package/node_modules/zod/v4/locales/lt.d.ts +4 -0
  615. package/node_modules/zod/v4/locales/lt.js +203 -0
  616. package/node_modules/zod/v4/locales/mk.cjs +136 -0
  617. package/node_modules/zod/v4/locales/mk.d.cts +5 -0
  618. package/node_modules/zod/v4/locales/mk.d.ts +4 -0
  619. package/node_modules/zod/v4/locales/mk.js +109 -0
  620. package/node_modules/zod/v4/locales/ms.cjs +134 -0
  621. package/node_modules/zod/v4/locales/ms.d.cts +5 -0
  622. package/node_modules/zod/v4/locales/ms.d.ts +4 -0
  623. package/node_modules/zod/v4/locales/ms.js +107 -0
  624. package/node_modules/zod/v4/locales/nl.cjs +137 -0
  625. package/node_modules/zod/v4/locales/nl.d.cts +5 -0
  626. package/node_modules/zod/v4/locales/nl.d.ts +4 -0
  627. package/node_modules/zod/v4/locales/nl.js +110 -0
  628. package/node_modules/zod/v4/locales/no.cjs +135 -0
  629. package/node_modules/zod/v4/locales/no.d.cts +5 -0
  630. package/node_modules/zod/v4/locales/no.d.ts +4 -0
  631. package/node_modules/zod/v4/locales/no.js +108 -0
  632. package/node_modules/zod/v4/locales/ota.cjs +136 -0
  633. package/node_modules/zod/v4/locales/ota.d.cts +5 -0
  634. package/node_modules/zod/v4/locales/ota.d.ts +4 -0
  635. package/node_modules/zod/v4/locales/ota.js +109 -0
  636. package/node_modules/zod/v4/locales/package.json +7 -0
  637. package/node_modules/zod/v4/locales/pl.cjs +136 -0
  638. package/node_modules/zod/v4/locales/pl.d.cts +5 -0
  639. package/node_modules/zod/v4/locales/pl.d.ts +4 -0
  640. package/node_modules/zod/v4/locales/pl.js +109 -0
  641. package/node_modules/zod/v4/locales/ps.cjs +141 -0
  642. package/node_modules/zod/v4/locales/ps.d.cts +5 -0
  643. package/node_modules/zod/v4/locales/ps.d.ts +4 -0
  644. package/node_modules/zod/v4/locales/ps.js +114 -0
  645. package/node_modules/zod/v4/locales/pt.cjs +135 -0
  646. package/node_modules/zod/v4/locales/pt.d.cts +5 -0
  647. package/node_modules/zod/v4/locales/pt.d.ts +4 -0
  648. package/node_modules/zod/v4/locales/pt.js +108 -0
  649. package/node_modules/zod/v4/locales/ro.cjs +146 -0
  650. package/node_modules/zod/v4/locales/ro.d.cts +5 -0
  651. package/node_modules/zod/v4/locales/ro.d.ts +4 -0
  652. package/node_modules/zod/v4/locales/ro.js +119 -0
  653. package/node_modules/zod/v4/locales/ru.cjs +183 -0
  654. package/node_modules/zod/v4/locales/ru.d.cts +5 -0
  655. package/node_modules/zod/v4/locales/ru.d.ts +4 -0
  656. package/node_modules/zod/v4/locales/ru.js +156 -0
  657. package/node_modules/zod/v4/locales/sl.cjs +136 -0
  658. package/node_modules/zod/v4/locales/sl.d.cts +5 -0
  659. package/node_modules/zod/v4/locales/sl.d.ts +4 -0
  660. package/node_modules/zod/v4/locales/sl.js +109 -0
  661. package/node_modules/zod/v4/locales/sv.cjs +137 -0
  662. package/node_modules/zod/v4/locales/sv.d.cts +5 -0
  663. package/node_modules/zod/v4/locales/sv.d.ts +4 -0
  664. package/node_modules/zod/v4/locales/sv.js +110 -0
  665. package/node_modules/zod/v4/locales/ta.cjs +137 -0
  666. package/node_modules/zod/v4/locales/ta.d.cts +5 -0
  667. package/node_modules/zod/v4/locales/ta.d.ts +4 -0
  668. package/node_modules/zod/v4/locales/ta.js +110 -0
  669. package/node_modules/zod/v4/locales/th.cjs +137 -0
  670. package/node_modules/zod/v4/locales/th.d.cts +5 -0
  671. package/node_modules/zod/v4/locales/th.d.ts +4 -0
  672. package/node_modules/zod/v4/locales/th.js +110 -0
  673. package/node_modules/zod/v4/locales/tr.cjs +132 -0
  674. package/node_modules/zod/v4/locales/tr.d.cts +5 -0
  675. package/node_modules/zod/v4/locales/tr.d.ts +4 -0
  676. package/node_modules/zod/v4/locales/tr.js +105 -0
  677. package/node_modules/zod/v4/locales/ua.cjs +12 -0
  678. package/node_modules/zod/v4/locales/ua.d.cts +5 -0
  679. package/node_modules/zod/v4/locales/ua.d.ts +5 -0
  680. package/node_modules/zod/v4/locales/ua.js +5 -0
  681. package/node_modules/zod/v4/locales/uk.cjs +135 -0
  682. package/node_modules/zod/v4/locales/uk.d.cts +5 -0
  683. package/node_modules/zod/v4/locales/uk.d.ts +4 -0
  684. package/node_modules/zod/v4/locales/uk.js +108 -0
  685. package/node_modules/zod/v4/locales/ur.cjs +137 -0
  686. package/node_modules/zod/v4/locales/ur.d.cts +5 -0
  687. package/node_modules/zod/v4/locales/ur.d.ts +4 -0
  688. package/node_modules/zod/v4/locales/ur.js +110 -0
  689. package/node_modules/zod/v4/locales/uz.cjs +137 -0
  690. package/node_modules/zod/v4/locales/uz.d.cts +5 -0
  691. package/node_modules/zod/v4/locales/uz.d.ts +4 -0
  692. package/node_modules/zod/v4/locales/uz.js +110 -0
  693. package/node_modules/zod/v4/locales/vi.cjs +135 -0
  694. package/node_modules/zod/v4/locales/vi.d.cts +5 -0
  695. package/node_modules/zod/v4/locales/vi.d.ts +4 -0
  696. package/node_modules/zod/v4/locales/vi.js +108 -0
  697. package/node_modules/zod/v4/locales/yo.cjs +134 -0
  698. package/node_modules/zod/v4/locales/yo.d.cts +5 -0
  699. package/node_modules/zod/v4/locales/yo.d.ts +4 -0
  700. package/node_modules/zod/v4/locales/yo.js +107 -0
  701. package/node_modules/zod/v4/locales/zh-CN.cjs +136 -0
  702. package/node_modules/zod/v4/locales/zh-CN.d.cts +5 -0
  703. package/node_modules/zod/v4/locales/zh-CN.d.ts +4 -0
  704. package/node_modules/zod/v4/locales/zh-CN.js +109 -0
  705. package/node_modules/zod/v4/locales/zh-TW.cjs +134 -0
  706. package/node_modules/zod/v4/locales/zh-TW.d.cts +5 -0
  707. package/node_modules/zod/v4/locales/zh-TW.d.ts +4 -0
  708. package/node_modules/zod/v4/locales/zh-TW.js +107 -0
  709. package/node_modules/zod/v4/mini/checks.cjs +34 -0
  710. package/node_modules/zod/v4/mini/checks.d.cts +1 -0
  711. package/node_modules/zod/v4/mini/checks.d.ts +1 -0
  712. package/node_modules/zod/v4/mini/checks.js +1 -0
  713. package/node_modules/zod/v4/mini/coerce.cjs +52 -0
  714. package/node_modules/zod/v4/mini/coerce.d.cts +7 -0
  715. package/node_modules/zod/v4/mini/coerce.d.ts +7 -0
  716. package/node_modules/zod/v4/mini/coerce.js +22 -0
  717. package/node_modules/zod/v4/mini/external.cjs +63 -0
  718. package/node_modules/zod/v4/mini/external.d.cts +13 -0
  719. package/node_modules/zod/v4/mini/external.d.ts +13 -0
  720. package/node_modules/zod/v4/mini/external.js +14 -0
  721. package/node_modules/zod/v4/mini/index.cjs +32 -0
  722. package/node_modules/zod/v4/mini/index.d.cts +3 -0
  723. package/node_modules/zod/v4/mini/index.d.ts +3 -0
  724. package/node_modules/zod/v4/mini/index.js +3 -0
  725. package/node_modules/zod/v4/mini/iso.cjs +64 -0
  726. package/node_modules/zod/v4/mini/iso.d.cts +22 -0
  727. package/node_modules/zod/v4/mini/iso.d.ts +22 -0
  728. package/node_modules/zod/v4/mini/iso.js +34 -0
  729. package/node_modules/zod/v4/mini/package.json +7 -0
  730. package/node_modules/zod/v4/mini/parse.cjs +16 -0
  731. package/node_modules/zod/v4/mini/parse.d.cts +1 -0
  732. package/node_modules/zod/v4/mini/parse.d.ts +1 -0
  733. package/node_modules/zod/v4/mini/parse.js +1 -0
  734. package/node_modules/zod/v4/mini/schemas.cjs +1083 -0
  735. package/node_modules/zod/v4/mini/schemas.d.cts +445 -0
  736. package/node_modules/zod/v4/mini/schemas.d.ts +445 -0
  737. package/node_modules/zod/v4/mini/schemas.js +961 -0
  738. package/node_modules/zod/v4/package.json +7 -0
  739. package/node_modules/zod/v4-mini/index.cjs +32 -0
  740. package/node_modules/zod/v4-mini/index.d.cts +3 -0
  741. package/node_modules/zod/v4-mini/index.d.ts +3 -0
  742. package/node_modules/zod/v4-mini/index.js +3 -0
  743. package/node_modules/zod/v4-mini/package.json +7 -0
  744. package/npm-shrinkwrap.json +54 -0
  745. package/openclaw.plugin.json +317 -0
  746. package/package.json +74 -7
@@ -0,0 +1,876 @@
1
+ import { createAccountListHelpers, hasConfiguredAccountValue } from "openclaw/plugin-sdk/account-helpers";
2
+ import { DEFAULT_ACCOUNT_ID, normalizeAccountId } from "openclaw/plugin-sdk/account-id";
3
+ import { resolveMergedAccountConfig } from "openclaw/plugin-sdk/account-resolution";
4
+ import { resolveIntegerOption } from "openclaw/plugin-sdk/number-runtime";
5
+ import { resolveDefaultSecretProviderAlias } from "openclaw/plugin-sdk/provider-auth";
6
+ import { buildSecretInputSchema, normalizeResolvedSecretInputString, normalizeSecretInputString, resolveSecretInputString } from "openclaw/plugin-sdk/secret-input";
7
+ import { normalizeOptionalString } from "openclaw/plugin-sdk/string-coerce-runtime";
8
+ import { buildChannelOutboundSessionRoute, buildThreadAwareOutboundSessionRoute, createChatChannelPlugin } from "openclaw/plugin-sdk/channel-core";
9
+ import { createMessageReceiptFromOutboundResults, defineChannelMessageAdapter } from "openclaw/plugin-sdk/channel-outbound";
10
+ import { getChatChannelMeta } from "openclaw/plugin-sdk/channel-plugin-common";
11
+ import { createComputedAccountStatusAdapter, createDefaultChannelRuntimeState } from "openclaw/plugin-sdk/status-helpers";
12
+ import { buildChannelConfigSchema } from "openclaw/plugin-sdk/channel-config-schema";
13
+ import { z } from "zod";
14
+ import { resolveStableChannelMessageIngress } from "openclaw/plugin-sdk/channel-ingress-runtime";
15
+ import { createPluginRuntimeStore } from "openclaw/plugin-sdk/runtime-store";
16
+ import { readResponseTextLimited } from "openclaw/plugin-sdk/provider-http";
17
+ import { WebSocket } from "ws";
18
+ //#region extensions/clickclack/src/accounts.ts
19
+ /**
20
+ * Resolves ClickClack account configuration from root channel config, named
21
+ * account overrides, and secret-provider references.
22
+ */
23
+ const DEFAULT_RECONNECT_MS = 1500;
24
+ const MIN_RECONNECT_MS = 100;
25
+ const MAX_RECONNECT_MS = 6e4;
26
+ const { listAccountIds: listClickClackAccountIds, resolveDefaultAccountId: resolveDefaultClickClackAccountId } = createAccountListHelpers("clickclack", {
27
+ normalizeAccountId,
28
+ hasImplicitDefaultAccount: (cfg) => {
29
+ const channel = cfg.channels?.clickclack;
30
+ return Boolean(channel?.baseUrl?.trim() && hasConfiguredAccountValue(channel.token) && channel.workspace?.trim());
31
+ }
32
+ });
33
+ function resolveMergedClickClackAccountConfig(cfg, accountId) {
34
+ return resolveMergedAccountConfig({
35
+ channelConfig: cfg.channels?.clickclack,
36
+ accounts: cfg.channels?.clickclack?.accounts,
37
+ accountId,
38
+ omitKeys: ["defaultAccount"],
39
+ normalizeAccountId
40
+ });
41
+ }
42
+ function resolveClickClackToken(params) {
43
+ const resolved = resolveSecretInputString({
44
+ value: params.value,
45
+ path: params.accountId === DEFAULT_ACCOUNT_ID ? "channels.clickclack.token" : `channels.clickclack.accounts.${params.accountId}.token`,
46
+ defaults: params.cfg.secrets?.defaults,
47
+ mode: "inspect"
48
+ });
49
+ if (resolved.status !== "available") {
50
+ if (resolved.status === "configured_unavailable" && resolved.ref.source === "env") {
51
+ const providerConfig = params.cfg.secrets?.providers?.[resolved.ref.provider];
52
+ if (providerConfig) {
53
+ if (providerConfig.source !== "env") throw new Error(`Secret provider "${resolved.ref.provider}" has source "${providerConfig.source}" but ref requests "env".`);
54
+ if (providerConfig.allowlist && !providerConfig.allowlist.includes(resolved.ref.id)) throw new Error(`Environment variable "${resolved.ref.id}" is not allowlisted in secrets.providers.${resolved.ref.provider}.allowlist.`);
55
+ } else if (resolved.ref.provider !== resolveDefaultSecretProviderAlias({ secrets: params.cfg.secrets }, "env")) throw new Error(`Secret provider "${resolved.ref.provider}" is not configured (ref: env:${resolved.ref.provider}:${resolved.ref.id}).`);
56
+ return normalizeSecretInputString((params.env ?? process.env)[resolved.ref.id]) ?? "";
57
+ }
58
+ return "";
59
+ }
60
+ return normalizeResolvedSecretInputString({
61
+ value: resolved.value,
62
+ path: "channels.clickclack.token"
63
+ }) ?? "";
64
+ }
65
+ /**
66
+ * Builds the normalized account snapshot used by gateway, outbound delivery,
67
+ * status reporting, and channel routing.
68
+ */
69
+ function resolveClickClackAccount(params) {
70
+ const accountId = normalizeAccountId(params.accountId);
71
+ const merged = resolveMergedClickClackAccountConfig(params.cfg, accountId);
72
+ const enabled = params.cfg.channels?.clickclack?.enabled !== false && merged.enabled !== false;
73
+ const baseUrl = merged.baseUrl?.trim().replace(/\/$/, "") ?? "";
74
+ const token = resolveClickClackToken({
75
+ cfg: params.cfg,
76
+ value: merged.token,
77
+ accountId,
78
+ env: params.env
79
+ });
80
+ const workspace = merged.workspace?.trim() ?? "";
81
+ return {
82
+ accountId,
83
+ enabled,
84
+ configured: Boolean(baseUrl && token && workspace),
85
+ name: normalizeOptionalString(merged.name),
86
+ baseUrl,
87
+ token,
88
+ workspace,
89
+ botUserId: normalizeOptionalString(merged.botUserId),
90
+ agentId: normalizeOptionalString(merged.agentId),
91
+ replyMode: merged.replyMode === "model" ? "model" : "agent",
92
+ model: normalizeOptionalString(merged.model),
93
+ systemPrompt: normalizeOptionalString(merged.systemPrompt),
94
+ timeoutSeconds: merged.timeoutSeconds,
95
+ toolsAllow: merged.toolsAllow,
96
+ defaultTo: merged.defaultTo?.trim() || "channel:general",
97
+ allowFrom: merged.allowFrom ?? ["*"],
98
+ reconnectMs: resolveIntegerOption(merged.reconnectMs, DEFAULT_RECONNECT_MS, {
99
+ min: MIN_RECONNECT_MS,
100
+ max: MAX_RECONNECT_MS
101
+ }),
102
+ config: {
103
+ ...merged,
104
+ allowFrom: merged.allowFrom ?? ["*"]
105
+ }
106
+ };
107
+ }
108
+ /**
109
+ * Returns all enabled accounts, including the implicit default account when
110
+ * legacy top-level ClickClack config is present.
111
+ */
112
+ function listEnabledClickClackAccounts(cfg) {
113
+ return listClickClackAccountIds(cfg).map((accountId) => resolveClickClackAccount({
114
+ cfg,
115
+ accountId
116
+ })).filter((account) => account.enabled);
117
+ }
118
+ //#endregion
119
+ //#region extensions/clickclack/src/config-schema.ts
120
+ /**
121
+ * Zod-backed config schema for ClickClack channel accounts.
122
+ */
123
+ const ClickClackAccountConfigSchema = z.object({
124
+ name: z.string().optional(),
125
+ enabled: z.boolean().optional(),
126
+ baseUrl: z.string().url().optional(),
127
+ token: buildSecretInputSchema().optional(),
128
+ workspace: z.string().optional(),
129
+ botUserId: z.string().optional(),
130
+ agentId: z.string().optional(),
131
+ replyMode: z.enum(["agent", "model"]).optional(),
132
+ model: z.string().optional(),
133
+ systemPrompt: z.string().optional(),
134
+ timeoutSeconds: z.number().int().min(1).max(3600).optional(),
135
+ toolsAllow: z.array(z.string()).optional(),
136
+ defaultTo: z.string().optional(),
137
+ allowFrom: z.array(z.string()).optional(),
138
+ reconnectMs: z.number().int().min(100).max(6e4).optional()
139
+ }).strict();
140
+ /**
141
+ * Config schema exported to core so `openclaw doctor` and config validation
142
+ * understand both default and named ClickClack accounts.
143
+ */
144
+ const clickClackConfigSchema = buildChannelConfigSchema(ClickClackAccountConfigSchema.extend({
145
+ accounts: z.record(z.string(), ClickClackAccountConfigSchema.partial()).optional(),
146
+ defaultAccount: z.string().optional()
147
+ }).strict());
148
+ //#endregion
149
+ //#region extensions/clickclack/src/runtime.ts
150
+ /**
151
+ * Runtime store for host-provided OpenClaw services used by the ClickClack
152
+ * bundled plugin.
153
+ */
154
+ const { setRuntime: setClickClackRuntime, getRuntime: getClickClackRuntime } = createPluginRuntimeStore({
155
+ pluginId: "clickclack",
156
+ errorMessage: "ClickClack runtime not initialized"
157
+ });
158
+ //#endregion
159
+ //#region extensions/clickclack/src/access.ts
160
+ /**
161
+ * Maps ClickClack senders and conversations onto the shared channel ingress
162
+ * allowlist/command authorization contract.
163
+ */
164
+ const CHANNEL_ID$2 = "clickclack";
165
+ function normalizeClickClackUserId(value) {
166
+ const trimmed = value.trim();
167
+ if (!trimmed) return null;
168
+ const withoutProvider = trimmed.replace(/^(clickclack|cc):/i, "").trim();
169
+ return withoutProvider.match(/^dm:(.+)$/i)?.[1]?.trim() || withoutProvider || null;
170
+ }
171
+ const clickClackIngressIdentity = {
172
+ key: "user-id",
173
+ normalizeEntry: normalizeClickClackUserId,
174
+ normalizeSubject: normalizeClickClackUserId,
175
+ isWildcardEntry: (entry) => normalizeClickClackUserId(entry) === "*",
176
+ entryIdPrefix: "clickclack-user"
177
+ };
178
+ /**
179
+ * Resolves whether a ClickClack message should enter the agent pipeline and
180
+ * whether its command-style body may run tools.
181
+ */
182
+ async function resolveClickClackInboundAccess(params) {
183
+ const runtime = getClickClackRuntime();
184
+ const isDirect = Boolean(params.message.direct_conversation_id);
185
+ const cfg = params.config;
186
+ const shouldCheckCommand = runtime.channel.commands.shouldComputeCommandAuthorized(params.message.body, cfg);
187
+ const resolved = await resolveStableChannelMessageIngress({
188
+ channelId: CHANNEL_ID$2,
189
+ accountId: params.account.accountId,
190
+ identity: clickClackIngressIdentity,
191
+ cfg,
192
+ subject: { stableId: params.message.author_id },
193
+ conversation: {
194
+ kind: isDirect ? "direct" : "group",
195
+ id: isDirect ? params.message.direct_conversation_id ?? params.message.author_id : params.message.channel_id ?? params.message.thread_root_id
196
+ },
197
+ allowFrom: params.account.allowFrom,
198
+ dmPolicy: "allowlist",
199
+ groupPolicy: "allowlist",
200
+ command: shouldCheckCommand ? {
201
+ cfg,
202
+ modeWhenAccessGroupsOff: "configured"
203
+ } : false
204
+ });
205
+ return {
206
+ shouldDispatch: resolved.ingress.admission === "dispatch",
207
+ commandAuthorized: resolved.commandAccess.requested ? resolved.commandAccess.authorized : resolved.senderAccess.allowed
208
+ };
209
+ }
210
+ //#endregion
211
+ //#region extensions/clickclack/src/http-client.ts
212
+ /**
213
+ * Thin ClickClack REST/websocket client used by gateway, resolver, and outbound
214
+ * delivery code.
215
+ */
216
+ const CLICKCLACK_ERROR_BODY_LIMIT_BYTES = 8 * 1024;
217
+ /**
218
+ * Creates a typed client for the ClickClack API using bearer-token auth.
219
+ */
220
+ function createClickClackClient(options) {
221
+ const baseUrl = options.baseUrl.replace(/\/$/, "");
222
+ const fetcher = options.fetch ?? fetch;
223
+ const headers = {
224
+ Authorization: `Bearer ${options.token}`,
225
+ Accept: "application/json"
226
+ };
227
+ async function request(path, init = {}) {
228
+ const requestHeaders = new Headers(init.headers);
229
+ for (const [key, value] of Object.entries(headers)) requestHeaders.set(key, value);
230
+ if (init.body && !(init.body instanceof FormData)) requestHeaders.set("Content-Type", "application/json");
231
+ const response = await fetcher(`${baseUrl}${path}`, {
232
+ ...init,
233
+ headers: requestHeaders
234
+ });
235
+ if (!response.ok) {
236
+ const detail = await readResponseTextLimited(response, CLICKCLACK_ERROR_BODY_LIMIT_BYTES);
237
+ throw new Error(`ClickClack ${response.status}: ${detail}`);
238
+ }
239
+ return await response.json();
240
+ }
241
+ return {
242
+ me: async () => {
243
+ return (await request("/api/me")).user;
244
+ },
245
+ workspaces: async () => {
246
+ return (await request("/api/workspaces")).workspaces;
247
+ },
248
+ channels: async (workspaceId) => {
249
+ return (await request(`/api/workspaces/${encodeURIComponent(workspaceId)}/channels`)).channels;
250
+ },
251
+ channelMessages: async (channelId, afterSeq, limit = 20) => {
252
+ return (await request(`/api/channels/${encodeURIComponent(channelId)}/messages?after_seq=${afterSeq}&limit=${limit}`)).messages;
253
+ },
254
+ directMessages: async (conversationId, afterSeq, limit = 20) => {
255
+ return (await request(`/api/dms/${encodeURIComponent(conversationId)}/messages?after_seq=${afterSeq}&limit=${limit}`)).messages;
256
+ },
257
+ thread: async (messageId) => await request(`/api/messages/${encodeURIComponent(messageId)}/thread`),
258
+ createChannelMessage: async (channelId, body) => {
259
+ return (await request(`/api/channels/${encodeURIComponent(channelId)}/messages`, {
260
+ method: "POST",
261
+ body: JSON.stringify({ body })
262
+ })).message;
263
+ },
264
+ createThreadReply: async (messageId, body) => {
265
+ return (await request(`/api/messages/${encodeURIComponent(messageId)}/thread/replies`, {
266
+ method: "POST",
267
+ body: JSON.stringify({ body })
268
+ })).message;
269
+ },
270
+ createDirectConversation: async (workspaceId, memberIds) => {
271
+ return (await request("/api/dms", {
272
+ method: "POST",
273
+ body: JSON.stringify({
274
+ workspace_id: workspaceId,
275
+ member_ids: memberIds
276
+ })
277
+ })).conversation;
278
+ },
279
+ createDirectMessage: async (conversationId, body) => {
280
+ return (await request(`/api/dms/${encodeURIComponent(conversationId)}/messages`, {
281
+ method: "POST",
282
+ body: JSON.stringify({ body })
283
+ })).message;
284
+ },
285
+ events: async (workspaceId, afterCursor) => {
286
+ const query = new URLSearchParams({ workspace_id: workspaceId });
287
+ if (afterCursor) query.set("after_cursor", afterCursor);
288
+ return (await request(`/api/realtime/events?${query.toString()}`)).events;
289
+ },
290
+ websocket: (workspaceId, afterCursor) => {
291
+ const url = new URL(`${baseUrl}/api/realtime/ws`);
292
+ url.protocol = url.protocol === "https:" ? "wss:" : "ws:";
293
+ url.searchParams.set("workspace_id", workspaceId);
294
+ if (afterCursor) url.searchParams.set("after_cursor", afterCursor);
295
+ return new WebSocket(url, { headers: { Authorization: `Bearer ${options.token}` } });
296
+ }
297
+ };
298
+ }
299
+ //#endregion
300
+ //#region extensions/clickclack/src/resolve.ts
301
+ /**
302
+ * Resolves a workspace slug/name/id from config to a ClickClack workspace id.
303
+ */
304
+ async function resolveWorkspaceId(client, workspace) {
305
+ if (workspace.startsWith("wsp_")) return workspace;
306
+ const found = (await client.workspaces()).find((candidate) => candidate.id === workspace || candidate.slug === workspace || candidate.name === workspace);
307
+ if (!found) throw new Error(`ClickClack workspace not found: ${workspace}`);
308
+ return found.id;
309
+ }
310
+ /**
311
+ * Resolves a channel name/id from config or target input to a ClickClack
312
+ * channel id.
313
+ */
314
+ async function resolveChannelId(client, workspaceId, channel) {
315
+ if (channel.startsWith("chn_")) return channel;
316
+ const found = (await client.channels(workspaceId)).find((candidate) => candidate.id === channel || candidate.name === channel);
317
+ if (!found) throw new Error(`ClickClack channel not found: ${channel}`);
318
+ return found.id;
319
+ }
320
+ //#endregion
321
+ //#region extensions/clickclack/src/target.ts
322
+ /**
323
+ * Parses `channel:name`, `thread:msg_id`, `dm:usr_id`, or a bare channel name.
324
+ */
325
+ function parseClickClackTarget(raw) {
326
+ const value = raw.trim();
327
+ if (!value) throw new Error("ClickClack target is required");
328
+ const [prefix, ...rest] = value.split(":");
329
+ const body = rest.join(":").trim();
330
+ if (prefix === "channel" && body) return {
331
+ chatType: "group",
332
+ kind: "channel",
333
+ id: body
334
+ };
335
+ if (prefix === "thread" && body) return {
336
+ chatType: "group",
337
+ kind: "thread",
338
+ id: body
339
+ };
340
+ if (prefix === "dm" && body) return {
341
+ chatType: "direct",
342
+ kind: "dm",
343
+ id: body
344
+ };
345
+ if (!body) return {
346
+ chatType: "group",
347
+ kind: "channel",
348
+ id: value
349
+ };
350
+ throw new Error(`Unsupported ClickClack target: ${raw}`);
351
+ }
352
+ /** Formats a parsed ClickClack target back into canonical target syntax. */
353
+ function buildClickClackTarget(target) {
354
+ return `${target.kind}:${target.id}`;
355
+ }
356
+ /** Normalizes user-entered ClickClack target text for channel routing. */
357
+ function normalizeClickClackTarget(raw) {
358
+ return buildClickClackTarget(parseClickClackTarget(raw));
359
+ }
360
+ /** Reports whether a target string can be offered to the ClickClack parser. */
361
+ function looksLikeClickClackTarget(raw) {
362
+ return /^(channel|thread|dm):/i.test(raw.trim()) || raw.trim().length > 0;
363
+ }
364
+ //#endregion
365
+ //#region extensions/clickclack/src/outbound.ts
366
+ /**
367
+ * Outbound ClickClack delivery helpers for channel messages, thread replies,
368
+ * and direct messages.
369
+ */
370
+ /**
371
+ * Sends text to a normalized ClickClack target and returns the created message
372
+ * id for receipt/session tracking.
373
+ */
374
+ async function sendClickClackText(params) {
375
+ const account = resolveClickClackAccount({
376
+ cfg: params.cfg,
377
+ accountId: params.accountId
378
+ });
379
+ const client = createClickClackClient({
380
+ baseUrl: account.baseUrl,
381
+ token: account.token
382
+ });
383
+ const workspaceId = await resolveWorkspaceId(client, account.workspace);
384
+ const parsed = parseClickClackTarget(params.to);
385
+ const explicitThreadId = params.threadId == null ? "" : String(params.threadId);
386
+ const replyToId = params.replyToId == null ? "" : String(params.replyToId);
387
+ if (explicitThreadId || replyToId || parsed.kind === "thread") {
388
+ const rootId = explicitThreadId || replyToId || parsed.id;
389
+ const message = await client.createThreadReply(rootId, params.text);
390
+ return {
391
+ to: params.to,
392
+ messageId: message.id
393
+ };
394
+ }
395
+ if (parsed.kind === "dm") {
396
+ const dm = await client.createDirectConversation(workspaceId, [parsed.id]);
397
+ const message = await client.createDirectMessage(dm.id, params.text);
398
+ return {
399
+ to: params.to,
400
+ messageId: message.id
401
+ };
402
+ }
403
+ const channelId = await resolveChannelId(client, workspaceId, parsed.id);
404
+ const message = await client.createChannelMessage(channelId, params.text);
405
+ return {
406
+ to: params.to,
407
+ messageId: message.id
408
+ };
409
+ }
410
+ //#endregion
411
+ //#region extensions/clickclack/src/inbound.ts
412
+ const CHANNEL_ID$1 = "clickclack";
413
+ function resolveAccountAgentRoute(params) {
414
+ const runtime = getClickClackRuntime();
415
+ const route = runtime.channel.routing.resolveAgentRoute({
416
+ cfg: params.cfg,
417
+ channel: CHANNEL_ID$1,
418
+ accountId: params.account.accountId,
419
+ peer: {
420
+ kind: params.isDirect ? "direct" : "channel",
421
+ id: params.target
422
+ }
423
+ });
424
+ const agentId = params.account.agentId ?? route.agentId;
425
+ if (agentId === route.agentId) return route;
426
+ return {
427
+ ...route,
428
+ agentId,
429
+ sessionKey: runtime.channel.routing.buildAgentSessionKey({
430
+ agentId,
431
+ channel: CHANNEL_ID$1,
432
+ accountId: params.account.accountId,
433
+ peer: {
434
+ kind: params.isDirect ? "direct" : "channel",
435
+ id: params.target
436
+ }
437
+ })
438
+ };
439
+ }
440
+ async function dispatchModelReply(params) {
441
+ const text = (await getClickClackRuntime().llm.complete({
442
+ agentId: params.route.agentId,
443
+ model: params.account.model,
444
+ maxTokens: 96,
445
+ purpose: "clickclack bot reply",
446
+ systemPrompt: params.account.systemPrompt,
447
+ messages: [{
448
+ role: "user",
449
+ content: params.message.body
450
+ }]
451
+ })).text.trim();
452
+ if (!text) return;
453
+ await sendClickClackText({
454
+ cfg: params.cfg,
455
+ accountId: params.account.accountId,
456
+ to: params.target,
457
+ text,
458
+ threadId: params.message.parent_message_id ? params.message.thread_root_id : void 0,
459
+ replyToId: params.message.id
460
+ });
461
+ }
462
+ /**
463
+ * Dispatches one already-fetched ClickClack message through the configured
464
+ * reply mode for its account.
465
+ */
466
+ async function handleClickClackInbound(params) {
467
+ const runtime = getClickClackRuntime();
468
+ const message = params.message;
469
+ const access = params.access ?? await resolveClickClackInboundAccess({
470
+ account: params.account,
471
+ config: params.config,
472
+ message
473
+ });
474
+ if (!access.shouldDispatch) return;
475
+ const isDirect = Boolean(message.direct_conversation_id);
476
+ const target = buildClickClackTarget(isDirect ? {
477
+ chatType: "direct",
478
+ kind: "dm",
479
+ id: message.author_id
480
+ } : {
481
+ chatType: "group",
482
+ kind: "channel",
483
+ id: message.channel_id ?? ""
484
+ });
485
+ const route = resolveAccountAgentRoute({
486
+ cfg: params.config,
487
+ account: params.account,
488
+ target,
489
+ isDirect
490
+ });
491
+ if (params.account.replyMode === "model") {
492
+ await dispatchModelReply({
493
+ account: params.account,
494
+ cfg: params.config,
495
+ message,
496
+ route,
497
+ target
498
+ });
499
+ return;
500
+ }
501
+ const senderName = message.author?.display_name || message.author_id;
502
+ const previousTimestamp = runtime.channel.session.readSessionUpdatedAt({
503
+ storePath: runtime.channel.session.resolveStorePath(params.config.session?.store, { agentId: route.agentId }),
504
+ sessionKey: route.sessionKey
505
+ });
506
+ const body = runtime.channel.reply.formatAgentEnvelope({
507
+ channel: "ClickClack",
508
+ from: senderName,
509
+ timestamp: new Date(message.created_at),
510
+ previousTimestamp,
511
+ envelope: runtime.channel.reply.resolveEnvelopeFormatOptions(params.config),
512
+ body: message.body
513
+ });
514
+ const storePath = runtime.channel.session.resolveStorePath(params.config.session?.store, { agentId: route.agentId });
515
+ const ctxPayload = runtime.channel.reply.finalizeInboundContext({
516
+ Body: body,
517
+ BodyForAgent: message.body,
518
+ RawBody: message.body,
519
+ CommandBody: message.body,
520
+ From: target,
521
+ To: target,
522
+ SessionKey: route.sessionKey,
523
+ AccountId: route.accountId ?? params.account.accountId,
524
+ ChatType: isDirect ? "direct" : "group",
525
+ WasMentioned: isDirect ? void 0 : true,
526
+ ConversationLabel: isDirect ? senderName : message.channel_id,
527
+ GroupChannel: message.channel_id,
528
+ NativeChannelId: message.channel_id || message.direct_conversation_id,
529
+ MessageThreadId: message.parent_message_id ? message.thread_root_id : void 0,
530
+ ThreadParentId: message.parent_message_id ? message.thread_root_id : void 0,
531
+ SenderName: senderName,
532
+ SenderId: message.author_id,
533
+ Provider: CHANNEL_ID$1,
534
+ Surface: CHANNEL_ID$1,
535
+ MessageSid: message.id,
536
+ MessageSidFull: message.id,
537
+ ReplyToId: message.id,
538
+ Timestamp: message.created_at,
539
+ OriginatingChannel: CHANNEL_ID$1,
540
+ OriginatingTo: target,
541
+ CommandAuthorized: access.commandAuthorized
542
+ });
543
+ await runtime.channel.inbound.dispatchReply({
544
+ cfg: params.config,
545
+ channel: CHANNEL_ID$1,
546
+ accountId: params.account.accountId,
547
+ agentId: route.agentId,
548
+ routeSessionKey: route.sessionKey,
549
+ storePath,
550
+ ctxPayload,
551
+ recordInboundSession: runtime.channel.session.recordInboundSession,
552
+ dispatchReplyWithBufferedBlockDispatcher: runtime.channel.reply.dispatchReplyWithBufferedBlockDispatcher,
553
+ toolsAllow: params.account.toolsAllow,
554
+ delivery: {
555
+ deliver: async (payload) => {
556
+ const text = payload && typeof payload === "object" && "text" in payload ? payload.text ?? "" : "";
557
+ if (!text.trim()) return;
558
+ await sendClickClackText({
559
+ cfg: params.config,
560
+ accountId: params.account.accountId,
561
+ to: target,
562
+ text,
563
+ threadId: message.parent_message_id ? message.thread_root_id : void 0,
564
+ replyToId: message.id
565
+ });
566
+ },
567
+ onError: (error) => {
568
+ throw error instanceof Error ? error : /* @__PURE__ */ new Error(`clickclack dispatch failed: ${String(error)}`);
569
+ }
570
+ },
571
+ replyPipeline: {},
572
+ record: { onRecordError: (error) => {
573
+ throw error instanceof Error ? error : /* @__PURE__ */ new Error(`clickclack session record failed: ${String(error)}`);
574
+ } }
575
+ });
576
+ }
577
+ //#endregion
578
+ //#region extensions/clickclack/src/gateway.ts
579
+ function payloadString(event, key) {
580
+ const value = event.payload?.[key];
581
+ return typeof value === "string" ? value : "";
582
+ }
583
+ async function resolveEventMessage(params) {
584
+ const messageId = payloadString(params.event, "message_id");
585
+ if (!messageId) return null;
586
+ const directConversationId = payloadString(params.event, "direct_conversation_id");
587
+ if (directConversationId && typeof params.event.seq === "number") return (await params.client.directMessages(directConversationId, params.event.seq - 1, 10)).find((message) => message.id === messageId) ?? null;
588
+ if (params.event.type === "thread.reply_created") {
589
+ const rootId = payloadString(params.event, "root_message_id");
590
+ if (!rootId) return null;
591
+ return (await params.client.thread(rootId)).replies.find((message) => message.id === messageId) ?? null;
592
+ }
593
+ if (params.event.channel_id && typeof params.event.seq === "number") return (await params.client.channelMessages(params.event.channel_id, params.event.seq - 1, 10)).find((message) => message.id === messageId) ?? null;
594
+ return null;
595
+ }
596
+ function decodeSocketMessage(data) {
597
+ if (typeof data === "string") return data;
598
+ if (Buffer.isBuffer(data)) return data.toString("utf8");
599
+ if (data instanceof ArrayBuffer) return Buffer.from(data).toString("utf8");
600
+ return Buffer.concat(data).toString("utf8");
601
+ }
602
+ function parseSocketEvent(data) {
603
+ try {
604
+ return JSON.parse(decodeSocketMessage(data));
605
+ } catch {
606
+ return null;
607
+ }
608
+ }
609
+ async function processEvent(params) {
610
+ if (params.event.type !== "message.created" && params.event.type !== "thread.reply_created") return;
611
+ if (payloadString(params.event, "author_id") === params.botUserId) return;
612
+ const message = await resolveEventMessage({
613
+ client: params.client,
614
+ event: params.event
615
+ });
616
+ if (!message || message.author_id === params.botUserId) return;
617
+ if (message.author?.kind === "bot") return;
618
+ const access = await resolveClickClackInboundAccess({
619
+ account: params.account,
620
+ config: params.config,
621
+ message
622
+ });
623
+ if (!access.shouldDispatch) return;
624
+ await handleClickClackInbound({
625
+ account: params.account,
626
+ config: params.config,
627
+ message,
628
+ access
629
+ });
630
+ }
631
+ async function startClickClackGatewayAccount(ctx) {
632
+ const configuredAccount = resolveClickClackAccount({
633
+ cfg: ctx.cfg,
634
+ accountId: ctx.account.accountId
635
+ });
636
+ if (!configuredAccount.configured) throw new Error(`ClickClack is not configured for account "${configuredAccount.accountId}"`);
637
+ const client = createClickClackClient({
638
+ baseUrl: configuredAccount.baseUrl,
639
+ token: configuredAccount.token
640
+ });
641
+ const workspaceId = await resolveWorkspaceId(client, configuredAccount.workspace);
642
+ const me = await client.me();
643
+ const account = {
644
+ ...configuredAccount,
645
+ workspace: workspaceId,
646
+ botUserId: configuredAccount.botUserId ?? me.id
647
+ };
648
+ ctx.setStatus({
649
+ accountId: account.accountId,
650
+ running: true,
651
+ configured: true,
652
+ enabled: account.enabled,
653
+ baseUrl: account.baseUrl
654
+ });
655
+ let afterCursor = "";
656
+ let initialized = false;
657
+ try {
658
+ while (!ctx.abortSignal.aborted) {
659
+ const backlog = await client.events(workspaceId, afterCursor);
660
+ if (!initialized) {
661
+ for (const event of backlog) afterCursor = event.cursor || afterCursor;
662
+ initialized = true;
663
+ } else for (const event of backlog) {
664
+ afterCursor = event.cursor || afterCursor;
665
+ await processEvent({
666
+ account,
667
+ config: ctx.cfg,
668
+ client,
669
+ event,
670
+ botUserId: account.botUserId
671
+ });
672
+ }
673
+ const socket = client.websocket(workspaceId, afterCursor);
674
+ await new Promise((resolve, reject) => {
675
+ let settled = false;
676
+ let removeAbortListener;
677
+ const finishSocketCycle = () => {
678
+ if (settled) return;
679
+ settled = true;
680
+ removeAbortListener?.();
681
+ removeAbortListener = void 0;
682
+ resolve();
683
+ };
684
+ const abort = () => {
685
+ socket.close();
686
+ finishSocketCycle();
687
+ };
688
+ ctx.abortSignal.addEventListener("abort", abort, { once: true });
689
+ removeAbortListener = () => ctx.abortSignal.removeEventListener("abort", abort);
690
+ socket.on("message", (data) => {
691
+ (async () => {
692
+ const event = parseSocketEvent(data);
693
+ if (!event) {
694
+ ctx.log?.warn?.(`[${account.accountId}] skipped malformed ClickClack websocket event`);
695
+ return;
696
+ }
697
+ afterCursor = event.cursor || afterCursor;
698
+ await processEvent({
699
+ account,
700
+ config: ctx.cfg,
701
+ client,
702
+ event,
703
+ botUserId: account.botUserId ?? ""
704
+ });
705
+ })().catch(reject);
706
+ });
707
+ socket.on("close", finishSocketCycle);
708
+ socket.on("error", (error) => {
709
+ if (settled || ctx.abortSignal.aborted) {
710
+ finishSocketCycle();
711
+ return;
712
+ }
713
+ ctx.log?.warn?.(`[${account.accountId}] ClickClack websocket error; reconnecting: ${error instanceof Error ? error.message : String(error)}`);
714
+ finishSocketCycle();
715
+ socket.close();
716
+ });
717
+ });
718
+ if (!ctx.abortSignal.aborted) await new Promise((resolve) => {
719
+ setTimeout(resolve, account.reconnectMs);
720
+ });
721
+ }
722
+ } finally {
723
+ ctx.setStatus({
724
+ accountId: account.accountId,
725
+ running: false
726
+ });
727
+ }
728
+ }
729
+ //#endregion
730
+ //#region extensions/clickclack/src/channel.ts
731
+ /**
732
+ * ClickClack channel plugin definition: target parsing, account config, status,
733
+ * gateway startup, and outbound delivery wiring.
734
+ */
735
+ const CHANNEL_ID = "clickclack";
736
+ const meta = { ...getChatChannelMeta(CHANNEL_ID) };
737
+ const clickClackMessageAdapter = defineChannelMessageAdapter({
738
+ id: CHANNEL_ID,
739
+ durableFinal: { capabilities: {
740
+ text: true,
741
+ replyTo: true,
742
+ thread: true,
743
+ messageSendingHooks: true
744
+ } },
745
+ send: { text: async (ctx) => {
746
+ const result = await sendClickClackText({
747
+ cfg: ctx.cfg,
748
+ accountId: ctx.accountId,
749
+ to: ctx.to,
750
+ text: ctx.text,
751
+ threadId: ctx.threadId,
752
+ replyToId: ctx.replyToId
753
+ });
754
+ const threadId = ctx.threadId == null ? void 0 : String(ctx.threadId);
755
+ const replyToId = ctx.replyToId ?? void 0;
756
+ return {
757
+ messageId: result.messageId,
758
+ receipt: createMessageReceiptFromOutboundResults({
759
+ results: [{
760
+ channel: CHANNEL_ID,
761
+ messageId: result.messageId
762
+ }],
763
+ threadId,
764
+ replyToId,
765
+ kind: "text"
766
+ })
767
+ };
768
+ } }
769
+ });
770
+ /**
771
+ * Channel plugin instance registered by the bundled ClickClack entry.
772
+ */
773
+ const clickClackPlugin = createChatChannelPlugin({
774
+ base: {
775
+ id: CHANNEL_ID,
776
+ meta,
777
+ capabilities: {
778
+ chatTypes: ["direct", "group"],
779
+ threads: true,
780
+ blockStreaming: true
781
+ },
782
+ reload: { configPrefixes: ["channels.clickclack"] },
783
+ configSchema: clickClackConfigSchema,
784
+ config: {
785
+ listAccountIds: (cfg) => listClickClackAccountIds(cfg),
786
+ resolveAccount: (cfg, accountId) => resolveClickClackAccount({
787
+ cfg,
788
+ accountId
789
+ }),
790
+ defaultAccountId: (cfg) => resolveDefaultClickClackAccountId(cfg),
791
+ isConfigured: (account) => account.configured,
792
+ resolveAllowFrom: ({ cfg, accountId }) => resolveClickClackAccount({
793
+ cfg,
794
+ accountId
795
+ }).allowFrom,
796
+ resolveDefaultTo: ({ cfg, accountId }) => resolveClickClackAccount({
797
+ cfg,
798
+ accountId
799
+ }).defaultTo
800
+ },
801
+ messaging: {
802
+ targetPrefixes: ["clickclack", "cc"],
803
+ normalizeTarget: normalizeClickClackTarget,
804
+ inferTargetChatType: ({ to }) => parseClickClackTarget(to).chatType,
805
+ targetResolver: {
806
+ looksLikeId: looksLikeClickClackTarget,
807
+ hint: "<channel:name|dm:usr_id|thread:msg_id>"
808
+ },
809
+ resolveOutboundSessionRoute: ({ cfg, agentId, accountId, target, replyToId, threadId, currentSessionKey }) => {
810
+ const parsed = parseClickClackTarget(target);
811
+ return buildThreadAwareOutboundSessionRoute({
812
+ route: buildChannelOutboundSessionRoute({
813
+ cfg,
814
+ agentId,
815
+ channel: CHANNEL_ID,
816
+ accountId,
817
+ peer: {
818
+ kind: parsed.chatType === "direct" ? "direct" : "channel",
819
+ id: buildClickClackTarget(parsed)
820
+ },
821
+ chatType: parsed.chatType,
822
+ from: `clickclack:${accountId ?? DEFAULT_ACCOUNT_ID}`,
823
+ to: buildClickClackTarget(parsed)
824
+ }),
825
+ replyToId,
826
+ threadId: threadId ?? (parsed.kind === "thread" ? parsed.id : void 0),
827
+ currentSessionKey,
828
+ canRecoverCurrentThread: () => true
829
+ });
830
+ },
831
+ resolveSessionConversation: ({ rawId }) => {
832
+ const parsed = parseClickClackTarget(rawId);
833
+ if (parsed.kind === "dm") return null;
834
+ return {
835
+ id: parsed.id,
836
+ threadId: parsed.kind === "thread" ? parsed.id : void 0,
837
+ baseConversationId: parsed.id,
838
+ parentConversationCandidates: [parsed.id]
839
+ };
840
+ }
841
+ },
842
+ status: createComputedAccountStatusAdapter({
843
+ defaultRuntime: createDefaultChannelRuntimeState(DEFAULT_ACCOUNT_ID),
844
+ buildChannelSummary: ({ snapshot }) => ({
845
+ ok: snapshot.configured,
846
+ label: snapshot.configured ? "configured" : "missing config",
847
+ detail: snapshot.baseUrl ?? ""
848
+ }),
849
+ resolveAccountSnapshot: ({ account }) => ({
850
+ accountId: account.accountId,
851
+ name: account.name,
852
+ enabled: account.enabled,
853
+ configured: account.configured,
854
+ baseUrl: account.baseUrl
855
+ })
856
+ }),
857
+ gateway: { startAccount: startClickClackGatewayAccount },
858
+ message: clickClackMessageAdapter
859
+ },
860
+ outbound: {
861
+ base: { deliveryMode: "direct" },
862
+ attachedResults: {
863
+ channel: CHANNEL_ID,
864
+ sendText: async ({ cfg, to, text, accountId, threadId, replyToId }) => await sendClickClackText({
865
+ cfg,
866
+ accountId,
867
+ to,
868
+ text,
869
+ threadId,
870
+ replyToId
871
+ })
872
+ }
873
+ }
874
+ });
875
+ //#endregion
876
+ export { getClickClackRuntime as a, DEFAULT_ACCOUNT_ID as c, resolveClickClackAccount as d, resolveDefaultClickClackAccountId as f, createClickClackClient as i, listClickClackAccountIds as l, buildClickClackTarget as n, setClickClackRuntime as o, parseClickClackTarget as r, clickClackConfigSchema as s, clickClackPlugin as t, listEnabledClickClackAccounts as u };