@xrkseek/harness-cli 0.0.10 → 0.1.0

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 (1000) hide show
  1. package/README.md +13 -6
  2. package/dist/commands/plugin.d.ts.map +1 -1
  3. package/dist/commands/plugin.js +4 -3
  4. package/dist/commands/plugin.js.map +1 -1
  5. package/dist/commands/restart.d.ts.map +1 -1
  6. package/dist/commands/restart.js +16 -7
  7. package/dist/commands/restart.js.map +1 -1
  8. package/dist/commands/serve.d.ts.map +1 -1
  9. package/dist/commands/serve.js +15 -3
  10. package/dist/commands/serve.js.map +1 -1
  11. package/dist/host-lock.d.ts +15 -0
  12. package/dist/host-lock.d.ts.map +1 -0
  13. package/dist/host-lock.js +64 -0
  14. package/dist/host-lock.js.map +1 -0
  15. package/dist/parse-args.d.ts.map +1 -1
  16. package/dist/parse-args.js +13 -10
  17. package/dist/parse-args.js.map +1 -1
  18. package/dist/plugin/install-client.d.ts.map +1 -1
  19. package/dist/plugin/install-client.js +80 -2
  20. package/dist/plugin/install-client.js.map +1 -1
  21. package/dist/port.d.ts +20 -2
  22. package/dist/port.d.ts.map +1 -1
  23. package/dist/port.js +147 -28
  24. package/dist/port.js.map +1 -1
  25. package/node_modules/@img/colour/LICENSE.md +82 -0
  26. package/node_modules/@img/colour/README.md +15 -0
  27. package/node_modules/@img/colour/color.cjs +1596 -0
  28. package/node_modules/@img/colour/index.cjs +1 -0
  29. package/node_modules/@img/colour/index.d.ts +929 -0
  30. package/node_modules/@img/colour/package.json +58 -0
  31. package/node_modules/@img/sharp-win32-x64/LICENSE +191 -0
  32. package/node_modules/@img/sharp-win32-x64/README.md +59 -0
  33. package/node_modules/@img/sharp-win32-x64/index.cjs +1 -0
  34. package/node_modules/@img/sharp-win32-x64/lib/libvips-42.dll +0 -0
  35. package/node_modules/@img/sharp-win32-x64/lib/libvips-cpp-8.18.3.dll +0 -0
  36. package/node_modules/@img/sharp-win32-x64/lib/sharp-win32-x64-0.35.3.node +0 -0
  37. package/node_modules/@img/sharp-win32-x64/package.json +40 -0
  38. package/node_modules/@img/sharp-win32-x64/versions.json +30 -0
  39. package/node_modules/@types/node/LICENSE +21 -0
  40. package/node_modules/@types/node/README.md +15 -0
  41. package/node_modules/@types/node/assert/strict.d.ts +111 -0
  42. package/node_modules/@types/node/assert.d.ts +1115 -0
  43. package/node_modules/@types/node/async_hooks.d.ts +623 -0
  44. package/node_modules/@types/node/buffer.buffer.d.ts +472 -0
  45. package/node_modules/@types/node/buffer.d.ts +1934 -0
  46. package/node_modules/@types/node/child_process.d.ts +1476 -0
  47. package/node_modules/@types/node/cluster.d.ts +578 -0
  48. package/node_modules/@types/node/compatibility/iterators.d.ts +21 -0
  49. package/node_modules/@types/node/console.d.ts +453 -0
  50. package/node_modules/@types/node/constants.d.ts +21 -0
  51. package/node_modules/@types/node/crypto.d.ts +5417 -0
  52. package/node_modules/@types/node/dgram.d.ts +600 -0
  53. package/node_modules/@types/node/diagnostics_channel.d.ts +576 -0
  54. package/node_modules/@types/node/dns/promises.d.ts +503 -0
  55. package/node_modules/@types/node/dns.d.ts +923 -0
  56. package/node_modules/@types/node/domain.d.ts +166 -0
  57. package/node_modules/@types/node/events.d.ts +976 -0
  58. package/node_modules/@types/node/fs/promises.d.ts +1341 -0
  59. package/node_modules/@types/node/fs.d.ts +4714 -0
  60. package/node_modules/@types/node/globals.d.ts +170 -0
  61. package/node_modules/@types/node/globals.typedarray.d.ts +41 -0
  62. package/node_modules/@types/node/http.d.ts +2154 -0
  63. package/node_modules/@types/node/http2.d.ts +2835 -0
  64. package/node_modules/@types/node/https.d.ts +585 -0
  65. package/node_modules/@types/node/index.d.ts +101 -0
  66. package/node_modules/@types/node/inspector.d.ts +277 -0
  67. package/node_modules/@types/node/inspector.generated.d.ts +4239 -0
  68. package/node_modules/@types/node/module.d.ts +843 -0
  69. package/node_modules/@types/node/net.d.ts +1073 -0
  70. package/node_modules/@types/node/os.d.ts +507 -0
  71. package/node_modules/@types/node/package.json +155 -0
  72. package/node_modules/@types/node/path.d.ts +200 -0
  73. package/node_modules/@types/node/perf_hooks.d.ts +1042 -0
  74. package/node_modules/@types/node/process.d.ts +2102 -0
  75. package/node_modules/@types/node/punycode.d.ts +117 -0
  76. package/node_modules/@types/node/querystring.d.ts +152 -0
  77. package/node_modules/@types/node/readline/promises.d.ts +161 -0
  78. package/node_modules/@types/node/readline.d.ts +600 -0
  79. package/node_modules/@types/node/repl.d.ts +438 -0
  80. package/node_modules/@types/node/sea.d.ts +162 -0
  81. package/node_modules/@types/node/sqlite.d.ts +1040 -0
  82. package/node_modules/@types/node/stream/consumers.d.ts +38 -0
  83. package/node_modules/@types/node/stream/promises.d.ts +90 -0
  84. package/node_modules/@types/node/stream/web.d.ts +573 -0
  85. package/node_modules/@types/node/stream.d.ts +1706 -0
  86. package/node_modules/@types/node/string_decoder.d.ts +67 -0
  87. package/node_modules/@types/node/test.d.ts +2349 -0
  88. package/node_modules/@types/node/timers/promises.d.ts +108 -0
  89. package/node_modules/@types/node/timers.d.ts +285 -0
  90. package/node_modules/@types/node/tls.d.ts +1279 -0
  91. package/node_modules/@types/node/trace_events.d.ts +197 -0
  92. package/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +468 -0
  93. package/node_modules/@types/node/ts5.6/compatibility/float16array.d.ts +71 -0
  94. package/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +36 -0
  95. package/node_modules/@types/node/ts5.6/index.d.ts +103 -0
  96. package/node_modules/@types/node/ts5.7/compatibility/float16array.d.ts +72 -0
  97. package/node_modules/@types/node/ts5.7/index.d.ts +103 -0
  98. package/node_modules/@types/node/tty.d.ts +208 -0
  99. package/node_modules/@types/node/url.d.ts +1079 -0
  100. package/node_modules/@types/node/util.d.ts +2336 -0
  101. package/node_modules/@types/node/v8.d.ts +982 -0
  102. package/node_modules/@types/node/vm.d.ts +1195 -0
  103. package/node_modules/@types/node/wasi.d.ts +202 -0
  104. package/node_modules/@types/node/web-globals/abortcontroller.d.ts +34 -0
  105. package/node_modules/@types/node/web-globals/crypto.d.ts +32 -0
  106. package/node_modules/@types/node/web-globals/domexception.d.ts +68 -0
  107. package/node_modules/@types/node/web-globals/events.d.ts +97 -0
  108. package/node_modules/@types/node/web-globals/fetch.d.ts +62 -0
  109. package/node_modules/@types/node/web-globals/navigator.d.ts +25 -0
  110. package/node_modules/@types/node/web-globals/storage.d.ts +24 -0
  111. package/node_modules/@types/node/web-globals/streams.d.ts +22 -0
  112. package/node_modules/@types/node/worker_threads.d.ts +894 -0
  113. package/node_modules/@types/node/zlib.d.ts +745 -0
  114. package/node_modules/@xrkseek/attachment/dist/error.d.ts +3 -2
  115. package/node_modules/@xrkseek/attachment/dist/error.d.ts.map +1 -1
  116. package/node_modules/@xrkseek/attachment/dist/error.js +17 -2
  117. package/node_modules/@xrkseek/attachment/dist/error.js.map +1 -1
  118. package/node_modules/@xrkseek/attachment/dist/index.d.ts +2 -2
  119. package/node_modules/@xrkseek/attachment/dist/index.d.ts.map +1 -1
  120. package/node_modules/@xrkseek/attachment/dist/index.js +1 -1
  121. package/node_modules/@xrkseek/attachment/dist/index.js.map +1 -1
  122. package/node_modules/@xrkseek/attachment/dist/memory.d.ts.map +1 -1
  123. package/node_modules/@xrkseek/attachment/dist/memory.js +6 -0
  124. package/node_modules/@xrkseek/attachment/dist/memory.js.map +1 -1
  125. package/node_modules/@xrkseek/attachment/dist/store.d.ts +6 -1
  126. package/node_modules/@xrkseek/attachment/dist/store.d.ts.map +1 -1
  127. package/node_modules/@xrkseek/attachment/dist/types.d.ts +19 -0
  128. package/node_modules/@xrkseek/attachment/dist/types.d.ts.map +1 -1
  129. package/node_modules/@xrkseek/attachment/dist/types.js.map +1 -1
  130. package/node_modules/@xrkseek/attachment-local/README.md +3 -0
  131. package/node_modules/@xrkseek/attachment-local/dist/compression-limiter.d.ts +18 -0
  132. package/node_modules/@xrkseek/attachment-local/dist/compression-limiter.d.ts.map +1 -0
  133. package/node_modules/@xrkseek/attachment-local/dist/compression-limiter.js +43 -0
  134. package/node_modules/@xrkseek/attachment-local/dist/compression-limiter.js.map +1 -0
  135. package/node_modules/@xrkseek/attachment-local/dist/encoding.d.ts +23 -0
  136. package/node_modules/@xrkseek/attachment-local/dist/encoding.d.ts.map +1 -0
  137. package/node_modules/@xrkseek/attachment-local/dist/encoding.js +33 -0
  138. package/node_modules/@xrkseek/attachment-local/dist/encoding.js.map +1 -0
  139. package/node_modules/@xrkseek/attachment-local/dist/image.d.ts +54 -0
  140. package/node_modules/@xrkseek/attachment-local/dist/image.d.ts.map +1 -0
  141. package/node_modules/@xrkseek/attachment-local/dist/image.js +97 -0
  142. package/node_modules/@xrkseek/attachment-local/dist/image.js.map +1 -0
  143. package/node_modules/@xrkseek/attachment-local/dist/index.d.ts +32 -0
  144. package/node_modules/@xrkseek/attachment-local/dist/index.d.ts.map +1 -0
  145. package/node_modules/@xrkseek/attachment-local/dist/index.js +188 -0
  146. package/node_modules/@xrkseek/attachment-local/dist/index.js.map +1 -0
  147. package/node_modules/@xrkseek/attachment-local/dist/normalization.d.ts +44 -0
  148. package/node_modules/@xrkseek/attachment-local/dist/normalization.d.ts.map +1 -0
  149. package/node_modules/@xrkseek/attachment-local/dist/normalization.js +148 -0
  150. package/node_modules/@xrkseek/attachment-local/dist/normalization.js.map +1 -0
  151. package/node_modules/@xrkseek/attachment-local/dist/request-image.d.ts +34 -0
  152. package/node_modules/@xrkseek/attachment-local/dist/request-image.d.ts.map +1 -0
  153. package/node_modules/@xrkseek/attachment-local/dist/request-image.js +208 -0
  154. package/node_modules/@xrkseek/attachment-local/dist/request-image.js.map +1 -0
  155. package/node_modules/@xrkseek/attachment-local/dist/store.d.ts +58 -0
  156. package/node_modules/@xrkseek/attachment-local/dist/store.d.ts.map +1 -0
  157. package/node_modules/@xrkseek/attachment-local/dist/store.js +290 -0
  158. package/node_modules/@xrkseek/attachment-local/dist/store.js.map +1 -0
  159. package/node_modules/@xrkseek/attachment-local/package.json +25 -0
  160. package/node_modules/@xrkseek/exec-fs/dist/index.d.ts +3 -0
  161. package/node_modules/@xrkseek/exec-fs/dist/index.d.ts.map +1 -1
  162. package/node_modules/@xrkseek/exec-fs/dist/index.js +10 -0
  163. package/node_modules/@xrkseek/exec-fs/dist/index.js.map +1 -1
  164. package/node_modules/@xrkseek/exec-fs/dist/read-image.d.ts +35 -0
  165. package/node_modules/@xrkseek/exec-fs/dist/read-image.d.ts.map +1 -0
  166. package/node_modules/@xrkseek/exec-fs/dist/read-image.js +120 -0
  167. package/node_modules/@xrkseek/exec-fs/dist/read-image.js.map +1 -0
  168. package/node_modules/@xrkseek/exec-fs/package.json +3 -1
  169. package/node_modules/@xrkseek/llm/dist/index.d.ts +1 -0
  170. package/node_modules/@xrkseek/llm/dist/index.d.ts.map +1 -1
  171. package/node_modules/@xrkseek/llm/dist/index.js.map +1 -1
  172. package/node_modules/@xrkseek/llm-deepseek/README.md +3 -1
  173. package/node_modules/@xrkseek/llm-deepseek/dist/file-id.d.ts +10 -0
  174. package/node_modules/@xrkseek/llm-deepseek/dist/file-id.d.ts.map +1 -0
  175. package/node_modules/@xrkseek/llm-deepseek/dist/file-id.js +8 -0
  176. package/node_modules/@xrkseek/llm-deepseek/dist/file-id.js.map +1 -0
  177. package/node_modules/@xrkseek/llm-deepseek/dist/file-store.d.ts +40 -0
  178. package/node_modules/@xrkseek/llm-deepseek/dist/file-store.d.ts.map +1 -0
  179. package/node_modules/@xrkseek/llm-deepseek/dist/file-store.js +164 -0
  180. package/node_modules/@xrkseek/llm-deepseek/dist/file-store.js.map +1 -0
  181. package/node_modules/@xrkseek/llm-deepseek/dist/files-api.d.ts +56 -0
  182. package/node_modules/@xrkseek/llm-deepseek/dist/files-api.d.ts.map +1 -0
  183. package/node_modules/@xrkseek/llm-deepseek/dist/files-api.js +180 -0
  184. package/node_modules/@xrkseek/llm-deepseek/dist/files-api.js.map +1 -0
  185. package/node_modules/@xrkseek/llm-deepseek/dist/index.d.ts +15 -6
  186. package/node_modules/@xrkseek/llm-deepseek/dist/index.d.ts.map +1 -1
  187. package/node_modules/@xrkseek/llm-deepseek/dist/index.js +63 -13
  188. package/node_modules/@xrkseek/llm-deepseek/dist/index.js.map +1 -1
  189. package/node_modules/@xrkseek/llm-deepseek/dist/request-policy.d.ts +8 -0
  190. package/node_modules/@xrkseek/llm-deepseek/dist/request-policy.d.ts.map +1 -0
  191. package/node_modules/@xrkseek/llm-deepseek/dist/request-policy.js +12 -0
  192. package/node_modules/@xrkseek/llm-deepseek/dist/request-policy.js.map +1 -0
  193. package/node_modules/@xrkseek/llm-deepseek/dist/upload-index.d.ts +28 -0
  194. package/node_modules/@xrkseek/llm-deepseek/dist/upload-index.d.ts.map +1 -0
  195. package/node_modules/@xrkseek/llm-deepseek/dist/upload-index.js +142 -0
  196. package/node_modules/@xrkseek/llm-deepseek/dist/upload-index.js.map +1 -0
  197. package/node_modules/@xrkseek/llm-deepseek/package.json +3 -1
  198. package/node_modules/@xrkseek/llm-openai-compatible/dist/index.d.ts +27 -0
  199. package/node_modules/@xrkseek/llm-openai-compatible/dist/index.d.ts.map +1 -1
  200. package/node_modules/@xrkseek/llm-openai-compatible/dist/index.js +20 -5
  201. package/node_modules/@xrkseek/llm-openai-compatible/dist/index.js.map +1 -1
  202. package/node_modules/@xrkseek/llm-registry/dist/registry.d.ts +1 -0
  203. package/node_modules/@xrkseek/llm-registry/dist/registry.d.ts.map +1 -1
  204. package/node_modules/@xrkseek/llm-registry/dist/registry.js +15 -1
  205. package/node_modules/@xrkseek/llm-registry/dist/registry.js.map +1 -1
  206. package/node_modules/@xrkseek/preset-harness/README.md +5 -2
  207. package/node_modules/@xrkseek/preset-harness/dist/preset.d.ts +5 -0
  208. package/node_modules/@xrkseek/preset-harness/dist/preset.d.ts.map +1 -1
  209. package/node_modules/@xrkseek/preset-harness/dist/preset.js +12 -3
  210. package/node_modules/@xrkseek/preset-harness/dist/preset.js.map +1 -1
  211. package/node_modules/@xrkseek/preset-harness/dist/tsconfig.tsbuildinfo +1 -1
  212. package/node_modules/@xrkseek/preset-harness/package.json +1 -0
  213. package/node_modules/@xrkseek/preset-minimal/dist/tsconfig.tsbuildinfo +1 -1
  214. package/node_modules/@xrkseek/preset-server/dist/preset.d.ts.map +1 -1
  215. package/node_modules/@xrkseek/preset-server/dist/preset.js +3 -1
  216. package/node_modules/@xrkseek/preset-server/dist/preset.js.map +1 -1
  217. package/node_modules/@xrkseek/preset-server/dist/tsconfig.tsbuildinfo +1 -1
  218. package/node_modules/@xrkseek/protocol/dist/content.d.ts +5 -0
  219. package/node_modules/@xrkseek/protocol/dist/content.d.ts.map +1 -1
  220. package/node_modules/@xrkseek/protocol/dist/content.js +8 -1
  221. package/node_modules/@xrkseek/protocol/dist/content.js.map +1 -1
  222. package/node_modules/@xrkseek/server-face/dist/context.d.ts +6 -3
  223. package/node_modules/@xrkseek/server-face/dist/context.d.ts.map +1 -1
  224. package/node_modules/@xrkseek/server-face/dist/cordis-bridge.d.ts +9 -0
  225. package/node_modules/@xrkseek/server-face/dist/cordis-bridge.d.ts.map +1 -0
  226. package/node_modules/@xrkseek/server-face/dist/cordis-bridge.js +28 -0
  227. package/node_modules/@xrkseek/server-face/dist/cordis-bridge.js.map +1 -0
  228. package/node_modules/@xrkseek/server-face/dist/cost-meter-balance.d.ts +16 -0
  229. package/node_modules/@xrkseek/server-face/dist/cost-meter-balance.d.ts.map +1 -0
  230. package/node_modules/@xrkseek/server-face/dist/cost-meter-balance.js +141 -0
  231. package/node_modules/@xrkseek/server-face/dist/cost-meter-balance.js.map +1 -0
  232. package/node_modules/@xrkseek/server-face/dist/cost-meter-coding-plan-service.d.ts +13 -0
  233. package/node_modules/@xrkseek/server-face/dist/cost-meter-coding-plan-service.d.ts.map +1 -0
  234. package/node_modules/@xrkseek/server-face/dist/cost-meter-coding-plan-service.js +158 -0
  235. package/node_modules/@xrkseek/server-face/dist/cost-meter-coding-plan-service.js.map +1 -0
  236. package/node_modules/@xrkseek/server-face/dist/cost-meter-coding-plans.d.ts +284 -0
  237. package/node_modules/@xrkseek/server-face/dist/cost-meter-coding-plans.d.ts.map +1 -0
  238. package/node_modules/@xrkseek/server-face/dist/cost-meter-coding-plans.js +696 -0
  239. package/node_modules/@xrkseek/server-face/dist/cost-meter-coding-plans.js.map +1 -0
  240. package/node_modules/@xrkseek/server-face/dist/cost-meter-custom-balance.d.ts +15 -0
  241. package/node_modules/@xrkseek/server-face/dist/cost-meter-custom-balance.d.ts.map +1 -0
  242. package/node_modules/@xrkseek/server-face/dist/cost-meter-custom-balance.js +196 -0
  243. package/node_modules/@xrkseek/server-face/dist/cost-meter-custom-balance.js.map +1 -0
  244. package/node_modules/@xrkseek/server-face/dist/cost-meter-go-quota.d.ts +19 -0
  245. package/node_modules/@xrkseek/server-face/dist/cost-meter-go-quota.d.ts.map +1 -0
  246. package/node_modules/@xrkseek/server-face/dist/cost-meter-go-quota.js +143 -0
  247. package/node_modules/@xrkseek/server-face/dist/cost-meter-go-quota.js.map +1 -0
  248. package/node_modules/@xrkseek/server-face/dist/cost-meter-pricing.d.ts +16 -0
  249. package/node_modules/@xrkseek/server-face/dist/cost-meter-pricing.d.ts.map +1 -0
  250. package/node_modules/@xrkseek/server-face/dist/cost-meter-pricing.js +84 -0
  251. package/node_modules/@xrkseek/server-face/dist/cost-meter-pricing.js.map +1 -0
  252. package/node_modules/@xrkseek/server-face/dist/cost-meter-record.d.ts +19 -0
  253. package/node_modules/@xrkseek/server-face/dist/cost-meter-record.d.ts.map +1 -0
  254. package/node_modules/@xrkseek/server-face/dist/cost-meter-record.js +221 -0
  255. package/node_modules/@xrkseek/server-face/dist/cost-meter-record.js.map +1 -0
  256. package/node_modules/@xrkseek/server-face/dist/cost-meter-store.d.ts +133 -0
  257. package/node_modules/@xrkseek/server-face/dist/cost-meter-store.d.ts.map +1 -0
  258. package/node_modules/@xrkseek/server-face/dist/cost-meter-store.js +561 -0
  259. package/node_modules/@xrkseek/server-face/dist/cost-meter-store.js.map +1 -0
  260. package/node_modules/@xrkseek/server-face/dist/dispatch.d.ts.map +1 -1
  261. package/node_modules/@xrkseek/server-face/dist/dispatch.js +15 -0
  262. package/node_modules/@xrkseek/server-face/dist/dispatch.js.map +1 -1
  263. package/node_modules/@xrkseek/server-face/dist/handlers/cordis-stub.d.ts +0 -5
  264. package/node_modules/@xrkseek/server-face/dist/handlers/cordis-stub.d.ts.map +1 -1
  265. package/node_modules/@xrkseek/server-face/dist/handlers/cordis-stub.js +277 -24
  266. package/node_modules/@xrkseek/server-face/dist/handlers/cordis-stub.js.map +1 -1
  267. package/node_modules/@xrkseek/server-face/dist/handlers/cost-meter.d.ts +30 -0
  268. package/node_modules/@xrkseek/server-face/dist/handlers/cost-meter.d.ts.map +1 -0
  269. package/node_modules/@xrkseek/server-face/dist/handlers/cost-meter.js +48 -0
  270. package/node_modules/@xrkseek/server-face/dist/handlers/cost-meter.js.map +1 -0
  271. package/node_modules/@xrkseek/server-face/dist/handlers/references.d.ts +6 -0
  272. package/node_modules/@xrkseek/server-face/dist/handlers/references.d.ts.map +1 -0
  273. package/node_modules/@xrkseek/server-face/dist/handlers/references.js +42 -0
  274. package/node_modules/@xrkseek/server-face/dist/handlers/references.js.map +1 -0
  275. package/node_modules/@xrkseek/server-face/dist/handlers/staged-client-code.d.ts +6 -0
  276. package/node_modules/@xrkseek/server-face/dist/handlers/staged-client-code.d.ts.map +1 -0
  277. package/node_modules/@xrkseek/server-face/dist/handlers/staged-client-code.js +24 -0
  278. package/node_modules/@xrkseek/server-face/dist/handlers/staged-client-code.js.map +1 -0
  279. package/node_modules/@xrkseek/server-face/dist/index.d.ts +1 -0
  280. package/node_modules/@xrkseek/server-face/dist/index.d.ts.map +1 -1
  281. package/node_modules/@xrkseek/server-face/dist/index.js +1 -0
  282. package/node_modules/@xrkseek/server-face/dist/index.js.map +1 -1
  283. package/node_modules/@xrkseek/server-face/dist/llm-resolve.d.ts.map +1 -1
  284. package/node_modules/@xrkseek/server-face/dist/llm-resolve.js +5 -3
  285. package/node_modules/@xrkseek/server-face/dist/llm-resolve.js.map +1 -1
  286. package/node_modules/@xrkseek/server-face/dist/plugin-inventory.d.ts +2 -2
  287. package/node_modules/@xrkseek/server-face/dist/plugin-inventory.d.ts.map +1 -1
  288. package/node_modules/@xrkseek/server-face/dist/plugin-inventory.js +7 -3
  289. package/node_modules/@xrkseek/server-face/dist/plugin-inventory.js.map +1 -1
  290. package/node_modules/@xrkseek/server-face/dist/presets-catalog.d.ts.map +1 -1
  291. package/node_modules/@xrkseek/server-face/dist/presets-catalog.js +3 -3
  292. package/node_modules/@xrkseek/server-face/dist/presets-catalog.js.map +1 -1
  293. package/node_modules/@xrkseek/server-face/dist/projections/index.d.ts +2 -0
  294. package/node_modules/@xrkseek/server-face/dist/projections/index.d.ts.map +1 -1
  295. package/node_modules/@xrkseek/server-face/dist/projections/index.js +2 -0
  296. package/node_modules/@xrkseek/server-face/dist/projections/index.js.map +1 -1
  297. package/node_modules/@xrkseek/server-face/dist/projections/install-defaults.d.ts.map +1 -1
  298. package/node_modules/@xrkseek/server-face/dist/projections/install-defaults.js +12 -0
  299. package/node_modules/@xrkseek/server-face/dist/projections/install-defaults.js.map +1 -1
  300. package/node_modules/@xrkseek/server-face/dist/projections/registry.d.ts +45 -0
  301. package/node_modules/@xrkseek/server-face/dist/projections/registry.d.ts.map +1 -1
  302. package/node_modules/@xrkseek/server-face/dist/projections/registry.js.map +1 -1
  303. package/node_modules/@xrkseek/server-face/dist/projections/units/auto-review.d.ts +40 -0
  304. package/node_modules/@xrkseek/server-face/dist/projections/units/auto-review.d.ts.map +1 -0
  305. package/node_modules/@xrkseek/server-face/dist/projections/units/auto-review.js +103 -0
  306. package/node_modules/@xrkseek/server-face/dist/projections/units/auto-review.js.map +1 -0
  307. package/node_modules/@xrkseek/server-face/dist/projections/units/context-headers.d.ts +9 -0
  308. package/node_modules/@xrkseek/server-face/dist/projections/units/context-headers.d.ts.map +1 -0
  309. package/node_modules/@xrkseek/server-face/dist/projections/units/context-headers.js +24 -0
  310. package/node_modules/@xrkseek/server-face/dist/projections/units/context-headers.js.map +1 -0
  311. package/node_modules/@xrkseek/server-face/dist/projections/units/context-timeline.d.ts +37 -0
  312. package/node_modules/@xrkseek/server-face/dist/projections/units/context-timeline.d.ts.map +1 -0
  313. package/node_modules/@xrkseek/server-face/dist/projections/units/context-timeline.js +109 -0
  314. package/node_modules/@xrkseek/server-face/dist/projections/units/context-timeline.js.map +1 -0
  315. package/node_modules/@xrkseek/server-face/dist/projections/units/cost-usage.d.ts +35 -0
  316. package/node_modules/@xrkseek/server-face/dist/projections/units/cost-usage.d.ts.map +1 -0
  317. package/node_modules/@xrkseek/server-face/dist/projections/units/cost-usage.js +151 -0
  318. package/node_modules/@xrkseek/server-face/dist/projections/units/cost-usage.js.map +1 -0
  319. package/node_modules/@xrkseek/server-face/dist/reference-discovery.d.ts +13 -0
  320. package/node_modules/@xrkseek/server-face/dist/reference-discovery.d.ts.map +1 -0
  321. package/node_modules/@xrkseek/server-face/dist/reference-discovery.js +81 -0
  322. package/node_modules/@xrkseek/server-face/dist/reference-discovery.js.map +1 -0
  323. package/node_modules/@xrkseek/server-face/dist/runtime.d.ts +5 -1
  324. package/node_modules/@xrkseek/server-face/dist/runtime.d.ts.map +1 -1
  325. package/node_modules/@xrkseek/server-face/dist/runtime.js +25 -0
  326. package/node_modules/@xrkseek/server-face/dist/runtime.js.map +1 -1
  327. package/node_modules/@xrkseek/server-face/dist/settings-credentials.d.ts +15 -0
  328. package/node_modules/@xrkseek/server-face/dist/settings-credentials.d.ts.map +1 -1
  329. package/node_modules/@xrkseek/server-face/dist/settings-credentials.js.map +1 -1
  330. package/node_modules/@xrkseek/server-face/dist/slash.d.ts.map +1 -1
  331. package/node_modules/@xrkseek/server-face/dist/slash.js +19 -0
  332. package/node_modules/@xrkseek/server-face/dist/slash.js.map +1 -1
  333. package/node_modules/@xrkseek/server-face/dist/wire/paths.d.ts.map +1 -1
  334. package/node_modules/@xrkseek/server-face/dist/wire/paths.js +3 -0
  335. package/node_modules/@xrkseek/server-face/dist/wire/paths.js.map +1 -1
  336. package/node_modules/@xrkseek/server-face/package.json +3 -0
  337. package/node_modules/@xrkseek/server-host/dist/auto-review-bridge.d.ts +4 -0
  338. package/node_modules/@xrkseek/server-host/dist/auto-review-bridge.d.ts.map +1 -0
  339. package/node_modules/@xrkseek/server-host/dist/auto-review-bridge.js +10 -0
  340. package/node_modules/@xrkseek/server-host/dist/auto-review-bridge.js.map +1 -0
  341. package/node_modules/@xrkseek/server-host/dist/cost-meter-bridge.d.ts +11 -0
  342. package/node_modules/@xrkseek/server-host/dist/cost-meter-bridge.d.ts.map +1 -0
  343. package/node_modules/@xrkseek/server-host/dist/cost-meter-bridge.js +29 -0
  344. package/node_modules/@xrkseek/server-host/dist/cost-meter-bridge.js.map +1 -0
  345. package/node_modules/@xrkseek/server-host/dist/harness-connector-bridge.d.ts +15 -0
  346. package/node_modules/@xrkseek/server-host/dist/harness-connector-bridge.d.ts.map +1 -0
  347. package/node_modules/@xrkseek/server-host/dist/harness-connector-bridge.js +34 -0
  348. package/node_modules/@xrkseek/server-host/dist/harness-connector-bridge.js.map +1 -0
  349. package/node_modules/@xrkseek/server-host/dist/index.d.ts +6 -1
  350. package/node_modules/@xrkseek/server-host/dist/index.d.ts.map +1 -1
  351. package/node_modules/@xrkseek/server-host/dist/index.js +126 -19
  352. package/node_modules/@xrkseek/server-host/dist/index.js.map +1 -1
  353. package/node_modules/@xrkseek/server-host/dist/sidebar-pty.d.ts +17 -0
  354. package/node_modules/@xrkseek/server-host/dist/sidebar-pty.d.ts.map +1 -0
  355. package/node_modules/@xrkseek/server-host/dist/sidebar-pty.js +201 -0
  356. package/node_modules/@xrkseek/server-host/dist/sidebar-pty.js.map +1 -0
  357. package/node_modules/@xrkseek/server-host/dist/usage-stats-bridge.d.ts +10 -0
  358. package/node_modules/@xrkseek/server-host/dist/usage-stats-bridge.d.ts.map +1 -0
  359. package/node_modules/@xrkseek/server-host/dist/usage-stats-bridge.js +31 -0
  360. package/node_modules/@xrkseek/server-host/dist/usage-stats-bridge.js.map +1 -0
  361. package/node_modules/@xrkseek/server-host/dist/wallet-bridge.d.ts +7 -0
  362. package/node_modules/@xrkseek/server-host/dist/wallet-bridge.d.ts.map +1 -0
  363. package/node_modules/@xrkseek/server-host/dist/wallet-bridge.js +40 -0
  364. package/node_modules/@xrkseek/server-host/dist/wallet-bridge.js.map +1 -0
  365. package/node_modules/@xrkseek/server-host/package.json +8 -1
  366. package/node_modules/@xrkseek/server-http/dist/boot-inject.d.ts +12 -0
  367. package/node_modules/@xrkseek/server-http/dist/boot-inject.d.ts.map +1 -1
  368. package/node_modules/@xrkseek/server-http/dist/boot-inject.js +54 -0
  369. package/node_modules/@xrkseek/server-http/dist/boot-inject.js.map +1 -1
  370. package/node_modules/@xrkseek/server-http/dist/dsh-compat/adapter-compose.d.ts +6 -0
  371. package/node_modules/@xrkseek/server-http/dist/dsh-compat/adapter-compose.d.ts.map +1 -0
  372. package/node_modules/@xrkseek/server-http/dist/dsh-compat/adapter-compose.js +141 -0
  373. package/node_modules/@xrkseek/server-http/dist/dsh-compat/adapter-compose.js.map +1 -0
  374. package/node_modules/@xrkseek/server-http/dist/dsh-compat/adapter-providers.d.ts +3 -0
  375. package/node_modules/@xrkseek/server-http/dist/dsh-compat/adapter-providers.d.ts.map +1 -0
  376. package/node_modules/@xrkseek/server-http/dist/dsh-compat/adapter-providers.js +445 -0
  377. package/node_modules/@xrkseek/server-http/dist/dsh-compat/adapter-providers.js.map +1 -0
  378. package/node_modules/@xrkseek/server-http/dist/dsh-compat/adapter-registry.d.ts +7 -0
  379. package/node_modules/@xrkseek/server-http/dist/dsh-compat/adapter-registry.d.ts.map +1 -0
  380. package/node_modules/@xrkseek/server-http/dist/dsh-compat/adapter-registry.js +15 -0
  381. package/node_modules/@xrkseek/server-http/dist/dsh-compat/adapter-registry.js.map +1 -0
  382. package/node_modules/@xrkseek/server-http/dist/dsh-compat/adapter-types.d.ts +57 -0
  383. package/node_modules/@xrkseek/server-http/dist/dsh-compat/adapter-types.d.ts.map +1 -0
  384. package/node_modules/@xrkseek/server-http/dist/dsh-compat/adapter-types.js +2 -0
  385. package/node_modules/@xrkseek/server-http/dist/dsh-compat/adapter-types.js.map +1 -0
  386. package/node_modules/@xrkseek/server-http/dist/dsh-compat/adapters/builtin.d.ts +10 -0
  387. package/node_modules/@xrkseek/server-http/dist/dsh-compat/adapters/builtin.d.ts.map +1 -0
  388. package/node_modules/@xrkseek/server-http/dist/dsh-compat/adapters/builtin.js +275 -0
  389. package/node_modules/@xrkseek/server-http/dist/dsh-compat/adapters/builtin.js.map +1 -0
  390. package/node_modules/@xrkseek/server-http/dist/dsh-compat/audit-community-client.d.ts +10 -0
  391. package/node_modules/@xrkseek/server-http/dist/dsh-compat/audit-community-client.d.ts.map +1 -0
  392. package/node_modules/@xrkseek/server-http/dist/dsh-compat/audit-community-client.js +41 -0
  393. package/node_modules/@xrkseek/server-http/dist/dsh-compat/audit-community-client.js.map +1 -0
  394. package/node_modules/@xrkseek/server-http/dist/dsh-compat/auto-review-http.d.ts +17 -0
  395. package/node_modules/@xrkseek/server-http/dist/dsh-compat/auto-review-http.d.ts.map +1 -0
  396. package/node_modules/@xrkseek/server-http/dist/dsh-compat/auto-review-http.js +184 -0
  397. package/node_modules/@xrkseek/server-http/dist/dsh-compat/auto-review-http.js.map +1 -0
  398. package/node_modules/@xrkseek/server-http/dist/dsh-compat/barrel.d.ts +5 -0
  399. package/node_modules/@xrkseek/server-http/dist/dsh-compat/barrel.d.ts.map +1 -0
  400. package/node_modules/@xrkseek/server-http/dist/dsh-compat/barrel.js +5 -0
  401. package/node_modules/@xrkseek/server-http/dist/dsh-compat/barrel.js.map +1 -0
  402. package/node_modules/@xrkseek/server-http/dist/dsh-compat/bundle-chunk-stub.d.ts +21 -0
  403. package/node_modules/@xrkseek/server-http/dist/dsh-compat/bundle-chunk-stub.d.ts.map +1 -0
  404. package/node_modules/@xrkseek/server-http/dist/dsh-compat/bundle-chunk-stub.js +122 -0
  405. package/node_modules/@xrkseek/server-http/dist/dsh-compat/bundle-chunk-stub.js.map +1 -0
  406. package/node_modules/@xrkseek/server-http/dist/dsh-compat/chat-import.d.ts +10 -0
  407. package/node_modules/@xrkseek/server-http/dist/dsh-compat/chat-import.d.ts.map +1 -0
  408. package/node_modules/@xrkseek/server-http/dist/dsh-compat/chat-import.js +58 -0
  409. package/node_modules/@xrkseek/server-http/dist/dsh-compat/chat-import.js.map +1 -0
  410. package/node_modules/@xrkseek/server-http/dist/dsh-compat/community-root-http.d.ts +7 -0
  411. package/node_modules/@xrkseek/server-http/dist/dsh-compat/community-root-http.d.ts.map +1 -0
  412. package/node_modules/@xrkseek/server-http/dist/dsh-compat/community-root-http.js +59 -0
  413. package/node_modules/@xrkseek/server-http/dist/dsh-compat/community-root-http.js.map +1 -0
  414. package/node_modules/@xrkseek/server-http/dist/dsh-compat/cordis-fiber-runner.d.ts +25 -0
  415. package/node_modules/@xrkseek/server-http/dist/dsh-compat/cordis-fiber-runner.d.ts.map +1 -0
  416. package/node_modules/@xrkseek/server-http/dist/dsh-compat/cordis-fiber-runner.js +154 -0
  417. package/node_modules/@xrkseek/server-http/dist/dsh-compat/cordis-fiber-runner.js.map +1 -0
  418. package/node_modules/@xrkseek/server-http/dist/dsh-compat/cordis-fiber-worker.d.ts +2 -0
  419. package/node_modules/@xrkseek/server-http/dist/dsh-compat/cordis-fiber-worker.d.ts.map +1 -0
  420. package/node_modules/@xrkseek/server-http/dist/dsh-compat/cordis-fiber-worker.js +77 -0
  421. package/node_modules/@xrkseek/server-http/dist/dsh-compat/cordis-fiber-worker.js.map +1 -0
  422. package/node_modules/@xrkseek/server-http/dist/dsh-compat/cordis-registry.d.ts +16 -0
  423. package/node_modules/@xrkseek/server-http/dist/dsh-compat/cordis-registry.d.ts.map +1 -0
  424. package/node_modules/@xrkseek/server-http/dist/dsh-compat/cordis-registry.js +121 -0
  425. package/node_modules/@xrkseek/server-http/dist/dsh-compat/cordis-registry.js.map +1 -0
  426. package/node_modules/@xrkseek/server-http/dist/dsh-compat/cordis-settings-fallback.d.ts +12 -0
  427. package/node_modules/@xrkseek/server-http/dist/dsh-compat/cordis-settings-fallback.d.ts.map +1 -0
  428. package/node_modules/@xrkseek/server-http/dist/dsh-compat/cordis-settings-fallback.js +48 -0
  429. package/node_modules/@xrkseek/server-http/dist/dsh-compat/cordis-settings-fallback.js.map +1 -0
  430. package/node_modules/@xrkseek/server-http/dist/dsh-compat/create-host-plugin.d.ts +18 -0
  431. package/node_modules/@xrkseek/server-http/dist/dsh-compat/create-host-plugin.d.ts.map +1 -0
  432. package/node_modules/@xrkseek/server-http/dist/dsh-compat/create-host-plugin.js +62 -0
  433. package/node_modules/@xrkseek/server-http/dist/dsh-compat/create-host-plugin.js.map +1 -0
  434. package/node_modules/@xrkseek/server-http/dist/dsh-compat/dream-skin.d.ts +9 -0
  435. package/node_modules/@xrkseek/server-http/dist/dsh-compat/dream-skin.d.ts.map +1 -0
  436. package/node_modules/@xrkseek/server-http/dist/dsh-compat/dream-skin.js +42 -0
  437. package/node_modules/@xrkseek/server-http/dist/dsh-compat/dream-skin.js.map +1 -0
  438. package/node_modules/@xrkseek/server-http/dist/dsh-compat/dsh-client-scan.d.ts +6 -0
  439. package/node_modules/@xrkseek/server-http/dist/dsh-compat/dsh-client-scan.d.ts.map +1 -0
  440. package/node_modules/@xrkseek/server-http/dist/dsh-compat/dsh-client-scan.js +88 -0
  441. package/node_modules/@xrkseek/server-http/dist/dsh-compat/dsh-client-scan.js.map +1 -0
  442. package/node_modules/@xrkseek/server-http/dist/dsh-compat/dsh-community-infer.d.ts +9 -0
  443. package/node_modules/@xrkseek/server-http/dist/dsh-compat/dsh-community-infer.d.ts.map +1 -0
  444. package/node_modules/@xrkseek/server-http/dist/dsh-compat/dsh-community-infer.js +67 -0
  445. package/node_modules/@xrkseek/server-http/dist/dsh-compat/dsh-community-infer.js.map +1 -0
  446. package/node_modules/@xrkseek/server-http/dist/dsh-compat/dsh-compat-matrix.d.ts +18 -0
  447. package/node_modules/@xrkseek/server-http/dist/dsh-compat/dsh-compat-matrix.d.ts.map +1 -0
  448. package/node_modules/@xrkseek/server-http/dist/dsh-compat/dsh-compat-matrix.js +198 -0
  449. package/node_modules/@xrkseek/server-http/dist/dsh-compat/dsh-compat-matrix.js.map +1 -0
  450. package/node_modules/@xrkseek/server-http/dist/dsh-compat/dsh-compat-upgrades.d.ts +27 -0
  451. package/node_modules/@xrkseek/server-http/dist/dsh-compat/dsh-compat-upgrades.d.ts.map +1 -0
  452. package/node_modules/@xrkseek/server-http/dist/dsh-compat/dsh-compat-upgrades.js +71 -0
  453. package/node_modules/@xrkseek/server-http/dist/dsh-compat/dsh-compat-upgrades.js.map +1 -0
  454. package/node_modules/@xrkseek/server-http/dist/dsh-compat/dsh-envelope.d.ts +8 -0
  455. package/node_modules/@xrkseek/server-http/dist/dsh-compat/dsh-envelope.d.ts.map +1 -0
  456. package/node_modules/@xrkseek/server-http/dist/dsh-compat/dsh-envelope.js +12 -0
  457. package/node_modules/@xrkseek/server-http/dist/dsh-compat/dsh-envelope.js.map +1 -0
  458. package/node_modules/@xrkseek/server-http/dist/dsh-compat/dsh-package-names.d.ts +2 -0
  459. package/node_modules/@xrkseek/server-http/dist/dsh-compat/dsh-package-names.d.ts.map +1 -0
  460. package/node_modules/@xrkseek/server-http/dist/dsh-compat/dsh-package-names.js +6 -0
  461. package/node_modules/@xrkseek/server-http/dist/dsh-compat/dsh-package-names.js.map +1 -0
  462. package/node_modules/@xrkseek/server-http/dist/dsh-compat/dsh-path-capabilities.d.ts +22 -0
  463. package/node_modules/@xrkseek/server-http/dist/dsh-compat/dsh-path-capabilities.d.ts.map +1 -0
  464. package/node_modules/@xrkseek/server-http/dist/dsh-compat/dsh-path-capabilities.js +219 -0
  465. package/node_modules/@xrkseek/server-http/dist/dsh-compat/dsh-path-capabilities.js.map +1 -0
  466. package/node_modules/@xrkseek/server-http/dist/dsh-compat/dsh-plugin-presets.d.ts +4 -0
  467. package/node_modules/@xrkseek/server-http/dist/dsh-compat/dsh-plugin-presets.d.ts.map +1 -0
  468. package/node_modules/@xrkseek/server-http/dist/dsh-compat/dsh-plugin-presets.js +53 -0
  469. package/node_modules/@xrkseek/server-http/dist/dsh-compat/dsh-plugin-presets.js.map +1 -0
  470. package/node_modules/@xrkseek/server-http/dist/dsh-compat/generic-dsh-http.d.ts +11 -0
  471. package/node_modules/@xrkseek/server-http/dist/dsh-compat/generic-dsh-http.d.ts.map +1 -0
  472. package/node_modules/@xrkseek/server-http/dist/dsh-compat/generic-dsh-http.js +61 -0
  473. package/node_modules/@xrkseek/server-http/dist/dsh-compat/generic-dsh-http.js.map +1 -0
  474. package/node_modules/@xrkseek/server-http/dist/dsh-compat/generic-plugin-http.d.ts +7 -0
  475. package/node_modules/@xrkseek/server-http/dist/dsh-compat/generic-plugin-http.d.ts.map +1 -0
  476. package/node_modules/@xrkseek/server-http/dist/dsh-compat/generic-plugin-http.js +150 -0
  477. package/node_modules/@xrkseek/server-http/dist/dsh-compat/generic-plugin-http.js.map +1 -0
  478. package/node_modules/@xrkseek/server-http/dist/dsh-compat/genui.d.ts +10 -0
  479. package/node_modules/@xrkseek/server-http/dist/dsh-compat/genui.d.ts.map +1 -0
  480. package/node_modules/@xrkseek/server-http/dist/dsh-compat/genui.js +239 -0
  481. package/node_modules/@xrkseek/server-http/dist/dsh-compat/genui.js.map +1 -0
  482. package/node_modules/@xrkseek/server-http/dist/dsh-compat/harness-connector-store.d.ts +22 -0
  483. package/node_modules/@xrkseek/server-http/dist/dsh-compat/harness-connector-store.d.ts.map +1 -0
  484. package/node_modules/@xrkseek/server-http/dist/dsh-compat/harness-connector-store.js +83 -0
  485. package/node_modules/@xrkseek/server-http/dist/dsh-compat/harness-connector-store.js.map +1 -0
  486. package/node_modules/@xrkseek/server-http/dist/dsh-compat/harness-connector.d.ts +18 -0
  487. package/node_modules/@xrkseek/server-http/dist/dsh-compat/harness-connector.d.ts.map +1 -0
  488. package/node_modules/@xrkseek/server-http/dist/dsh-compat/harness-connector.js +191 -0
  489. package/node_modules/@xrkseek/server-http/dist/dsh-compat/harness-connector.js.map +1 -0
  490. package/node_modules/@xrkseek/server-http/dist/dsh-compat/honest-envelope.d.ts +21 -0
  491. package/node_modules/@xrkseek/server-http/dist/dsh-compat/honest-envelope.d.ts.map +1 -0
  492. package/node_modules/@xrkseek/server-http/dist/dsh-compat/honest-envelope.js +105 -0
  493. package/node_modules/@xrkseek/server-http/dist/dsh-compat/honest-envelope.js.map +1 -0
  494. package/node_modules/@xrkseek/server-http/dist/dsh-compat/honest-http-catchall.d.ts +7 -0
  495. package/node_modules/@xrkseek/server-http/dist/dsh-compat/honest-http-catchall.d.ts.map +1 -0
  496. package/node_modules/@xrkseek/server-http/dist/dsh-compat/honest-http-catchall.js +57 -0
  497. package/node_modules/@xrkseek/server-http/dist/dsh-compat/honest-http-catchall.js.map +1 -0
  498. package/node_modules/@xrkseek/server-http/dist/dsh-compat/host-apply-bridge.d.ts +6 -0
  499. package/node_modules/@xrkseek/server-http/dist/dsh-compat/host-apply-bridge.d.ts.map +1 -0
  500. package/node_modules/@xrkseek/server-http/dist/dsh-compat/host-apply-bridge.js +74 -0
  501. package/node_modules/@xrkseek/server-http/dist/dsh-compat/host-apply-bridge.js.map +1 -0
  502. package/node_modules/@xrkseek/server-http/dist/dsh-compat/host-apply-registry.d.ts +14 -0
  503. package/node_modules/@xrkseek/server-http/dist/dsh-compat/host-apply-registry.d.ts.map +1 -0
  504. package/node_modules/@xrkseek/server-http/dist/dsh-compat/host-apply-registry.js +17 -0
  505. package/node_modules/@xrkseek/server-http/dist/dsh-compat/host-apply-registry.js.map +1 -0
  506. package/node_modules/@xrkseek/server-http/dist/dsh-compat/host-feature-bridge.d.ts +76 -0
  507. package/node_modules/@xrkseek/server-http/dist/dsh-compat/host-feature-bridge.d.ts.map +1 -0
  508. package/node_modules/@xrkseek/server-http/dist/dsh-compat/host-feature-bridge.js +551 -0
  509. package/node_modules/@xrkseek/server-http/dist/dsh-compat/host-feature-bridge.js.map +1 -0
  510. package/node_modules/@xrkseek/server-http/dist/dsh-compat/host-manifest.d.ts +7 -0
  511. package/node_modules/@xrkseek/server-http/dist/dsh-compat/host-manifest.d.ts.map +1 -0
  512. package/node_modules/@xrkseek/server-http/dist/dsh-compat/host-manifest.js +136 -0
  513. package/node_modules/@xrkseek/server-http/dist/dsh-compat/host-manifest.js.map +1 -0
  514. package/node_modules/@xrkseek/server-http/dist/dsh-compat/im-channels.d.ts +21 -0
  515. package/node_modules/@xrkseek/server-http/dist/dsh-compat/im-channels.d.ts.map +1 -0
  516. package/node_modules/@xrkseek/server-http/dist/dsh-compat/im-channels.js +281 -0
  517. package/node_modules/@xrkseek/server-http/dist/dsh-compat/im-channels.js.map +1 -0
  518. package/node_modules/@xrkseek/server-http/dist/dsh-compat/im-messaging-bridge.d.ts +16 -0
  519. package/node_modules/@xrkseek/server-http/dist/dsh-compat/im-messaging-bridge.d.ts.map +1 -0
  520. package/node_modules/@xrkseek/server-http/dist/dsh-compat/im-messaging-bridge.js +163 -0
  521. package/node_modules/@xrkseek/server-http/dist/dsh-compat/im-messaging-bridge.js.map +1 -0
  522. package/node_modules/@xrkseek/server-http/dist/dsh-compat/im-office.d.ts +5 -0
  523. package/node_modules/@xrkseek/server-http/dist/dsh-compat/im-office.d.ts.map +1 -0
  524. package/node_modules/@xrkseek/server-http/dist/dsh-compat/im-office.js +125 -0
  525. package/node_modules/@xrkseek/server-http/dist/dsh-compat/im-office.js.map +1 -0
  526. package/node_modules/@xrkseek/server-http/dist/dsh-compat/im-provision-bridge.d.ts +17 -0
  527. package/node_modules/@xrkseek/server-http/dist/dsh-compat/im-provision-bridge.d.ts.map +1 -0
  528. package/node_modules/@xrkseek/server-http/dist/dsh-compat/im-provision-bridge.js +188 -0
  529. package/node_modules/@xrkseek/server-http/dist/dsh-compat/im-provision-bridge.js.map +1 -0
  530. package/node_modules/@xrkseek/server-http/dist/dsh-compat/im-rpc-adapter.d.ts +9 -0
  531. package/node_modules/@xrkseek/server-http/dist/dsh-compat/im-rpc-adapter.d.ts.map +1 -0
  532. package/node_modules/@xrkseek/server-http/dist/dsh-compat/im-rpc-adapter.js +55 -0
  533. package/node_modules/@xrkseek/server-http/dist/dsh-compat/im-rpc-adapter.js.map +1 -0
  534. package/node_modules/@xrkseek/server-http/dist/dsh-compat/index.d.ts +37 -0
  535. package/node_modules/@xrkseek/server-http/dist/dsh-compat/index.d.ts.map +1 -0
  536. package/node_modules/@xrkseek/server-http/dist/dsh-compat/index.js +36 -0
  537. package/node_modules/@xrkseek/server-http/dist/dsh-compat/index.js.map +1 -0
  538. package/node_modules/@xrkseek/server-http/dist/dsh-compat/json-store.d.ts +5 -0
  539. package/node_modules/@xrkseek/server-http/dist/dsh-compat/json-store.d.ts.map +1 -0
  540. package/node_modules/@xrkseek/server-http/dist/dsh-compat/json-store.js +28 -0
  541. package/node_modules/@xrkseek/server-http/dist/dsh-compat/json-store.js.map +1 -0
  542. package/node_modules/@xrkseek/server-http/dist/dsh-compat/market-adapter.d.ts +7 -0
  543. package/node_modules/@xrkseek/server-http/dist/dsh-compat/market-adapter.d.ts.map +1 -0
  544. package/node_modules/@xrkseek/server-http/dist/dsh-compat/market-adapter.js +108 -0
  545. package/node_modules/@xrkseek/server-http/dist/dsh-compat/market-adapter.js.map +1 -0
  546. package/node_modules/@xrkseek/server-http/dist/dsh-compat/market.d.ts +7 -0
  547. package/node_modules/@xrkseek/server-http/dist/dsh-compat/market.d.ts.map +1 -0
  548. package/node_modules/@xrkseek/server-http/dist/dsh-compat/market.js +218 -0
  549. package/node_modules/@xrkseek/server-http/dist/dsh-compat/market.js.map +1 -0
  550. package/node_modules/@xrkseek/server-http/dist/dsh-compat/memento.d.ts +10 -0
  551. package/node_modules/@xrkseek/server-http/dist/dsh-compat/memento.d.ts.map +1 -0
  552. package/node_modules/@xrkseek/server-http/dist/dsh-compat/memento.js +81 -0
  553. package/node_modules/@xrkseek/server-http/dist/dsh-compat/memento.js.map +1 -0
  554. package/node_modules/@xrkseek/server-http/dist/dsh-compat/meta.d.ts +10 -0
  555. package/node_modules/@xrkseek/server-http/dist/dsh-compat/meta.d.ts.map +1 -0
  556. package/node_modules/@xrkseek/server-http/dist/dsh-compat/meta.js +15 -0
  557. package/node_modules/@xrkseek/server-http/dist/dsh-compat/meta.js.map +1 -0
  558. package/node_modules/@xrkseek/server-http/dist/dsh-compat/mnemon-adapter.d.ts +8 -0
  559. package/node_modules/@xrkseek/server-http/dist/dsh-compat/mnemon-adapter.d.ts.map +1 -0
  560. package/node_modules/@xrkseek/server-http/dist/dsh-compat/mnemon-adapter.js +83 -0
  561. package/node_modules/@xrkseek/server-http/dist/dsh-compat/mnemon-adapter.js.map +1 -0
  562. package/node_modules/@xrkseek/server-http/dist/dsh-compat/mnemon-shapes.d.ts +9 -0
  563. package/node_modules/@xrkseek/server-http/dist/dsh-compat/mnemon-shapes.d.ts.map +1 -0
  564. package/node_modules/@xrkseek/server-http/dist/dsh-compat/mnemon-shapes.js +144 -0
  565. package/node_modules/@xrkseek/server-http/dist/dsh-compat/mnemon-shapes.js.map +1 -0
  566. package/node_modules/@xrkseek/server-http/dist/dsh-compat/mnemon-store.d.ts +17 -0
  567. package/node_modules/@xrkseek/server-http/dist/dsh-compat/mnemon-store.d.ts.map +1 -0
  568. package/node_modules/@xrkseek/server-http/dist/dsh-compat/mnemon-store.js +52 -0
  569. package/node_modules/@xrkseek/server-http/dist/dsh-compat/mnemon-store.js.map +1 -0
  570. package/node_modules/@xrkseek/server-http/dist/dsh-compat/mnemon.d.ts +11 -0
  571. package/node_modules/@xrkseek/server-http/dist/dsh-compat/mnemon.d.ts.map +1 -0
  572. package/node_modules/@xrkseek/server-http/dist/dsh-compat/mnemon.js +221 -0
  573. package/node_modules/@xrkseek/server-http/dist/dsh-compat/mnemon.js.map +1 -0
  574. package/node_modules/@xrkseek/server-http/dist/dsh-compat/mobile-access.d.ts +22 -0
  575. package/node_modules/@xrkseek/server-http/dist/dsh-compat/mobile-access.d.ts.map +1 -0
  576. package/node_modules/@xrkseek/server-http/dist/dsh-compat/mobile-access.js +155 -0
  577. package/node_modules/@xrkseek/server-http/dist/dsh-compat/mobile-access.js.map +1 -0
  578. package/node_modules/@xrkseek/server-http/dist/dsh-compat/modlens.d.ts +14 -0
  579. package/node_modules/@xrkseek/server-http/dist/dsh-compat/modlens.d.ts.map +1 -0
  580. package/node_modules/@xrkseek/server-http/dist/dsh-compat/modlens.js +213 -0
  581. package/node_modules/@xrkseek/server-http/dist/dsh-compat/modlens.js.map +1 -0
  582. package/node_modules/@xrkseek/server-http/dist/dsh-compat/modsearch.d.ts +14 -0
  583. package/node_modules/@xrkseek/server-http/dist/dsh-compat/modsearch.d.ts.map +1 -0
  584. package/node_modules/@xrkseek/server-http/dist/dsh-compat/modsearch.js +200 -0
  585. package/node_modules/@xrkseek/server-http/dist/dsh-compat/modsearch.js.map +1 -0
  586. package/node_modules/@xrkseek/server-http/dist/dsh-compat/noema.d.ts +11 -0
  587. package/node_modules/@xrkseek/server-http/dist/dsh-compat/noema.d.ts.map +1 -0
  588. package/node_modules/@xrkseek/server-http/dist/dsh-compat/noema.js +200 -0
  589. package/node_modules/@xrkseek/server-http/dist/dsh-compat/noema.js.map +1 -0
  590. package/node_modules/@xrkseek/server-http/dist/dsh-compat/persisted-settings-store.d.ts +6 -0
  591. package/node_modules/@xrkseek/server-http/dist/dsh-compat/persisted-settings-store.d.ts.map +1 -0
  592. package/node_modules/@xrkseek/server-http/dist/dsh-compat/persisted-settings-store.js +47 -0
  593. package/node_modules/@xrkseek/server-http/dist/dsh-compat/persisted-settings-store.js.map +1 -0
  594. package/node_modules/@xrkseek/server-http/dist/dsh-compat/plugin-host-manifest.d.ts +15 -0
  595. package/node_modules/@xrkseek/server-http/dist/dsh-compat/plugin-host-manifest.d.ts.map +1 -0
  596. package/node_modules/@xrkseek/server-http/dist/dsh-compat/plugin-host-manifest.js +132 -0
  597. package/node_modules/@xrkseek/server-http/dist/dsh-compat/plugin-host-manifest.js.map +1 -0
  598. package/node_modules/@xrkseek/server-http/dist/dsh-compat/plugin-surface-adapter.d.ts +13 -0
  599. package/node_modules/@xrkseek/server-http/dist/dsh-compat/plugin-surface-adapter.d.ts.map +1 -0
  600. package/node_modules/@xrkseek/server-http/dist/dsh-compat/plugin-surface-adapter.js +336 -0
  601. package/node_modules/@xrkseek/server-http/dist/dsh-compat/plugin-surface-adapter.js.map +1 -0
  602. package/node_modules/@xrkseek/server-http/dist/dsh-compat/pocket.d.ts +10 -0
  603. package/node_modules/@xrkseek/server-http/dist/dsh-compat/pocket.d.ts.map +1 -0
  604. package/node_modules/@xrkseek/server-http/dist/dsh-compat/pocket.js +86 -0
  605. package/node_modules/@xrkseek/server-http/dist/dsh-compat/pocket.js.map +1 -0
  606. package/node_modules/@xrkseek/server-http/dist/dsh-compat/releases.d.ts +8 -0
  607. package/node_modules/@xrkseek/server-http/dist/dsh-compat/releases.d.ts.map +1 -0
  608. package/node_modules/@xrkseek/server-http/dist/dsh-compat/releases.js +34 -0
  609. package/node_modules/@xrkseek/server-http/dist/dsh-compat/releases.js.map +1 -0
  610. package/node_modules/@xrkseek/server-http/dist/dsh-compat/settings-defaults.d.ts +4 -0
  611. package/node_modules/@xrkseek/server-http/dist/dsh-compat/settings-defaults.d.ts.map +1 -0
  612. package/node_modules/@xrkseek/server-http/dist/dsh-compat/settings-defaults.js +170 -0
  613. package/node_modules/@xrkseek/server-http/dist/dsh-compat/settings-defaults.js.map +1 -0
  614. package/node_modules/@xrkseek/server-http/dist/dsh-compat/settings-store.d.ts +33 -0
  615. package/node_modules/@xrkseek/server-http/dist/dsh-compat/settings-store.d.ts.map +1 -0
  616. package/node_modules/@xrkseek/server-http/dist/dsh-compat/settings-store.js +108 -0
  617. package/node_modules/@xrkseek/server-http/dist/dsh-compat/settings-store.js.map +1 -0
  618. package/node_modules/@xrkseek/server-http/dist/dsh-compat/shared-registry.d.ts +10 -0
  619. package/node_modules/@xrkseek/server-http/dist/dsh-compat/shared-registry.d.ts.map +1 -0
  620. package/node_modules/@xrkseek/server-http/dist/dsh-compat/shared-registry.js +38 -0
  621. package/node_modules/@xrkseek/server-http/dist/dsh-compat/shared-registry.js.map +1 -0
  622. package/node_modules/@xrkseek/server-http/dist/dsh-compat/sidebar-adapter.d.ts +10 -0
  623. package/node_modules/@xrkseek/server-http/dist/dsh-compat/sidebar-adapter.d.ts.map +1 -0
  624. package/node_modules/@xrkseek/server-http/dist/dsh-compat/sidebar-adapter.js +358 -0
  625. package/node_modules/@xrkseek/server-http/dist/dsh-compat/sidebar-adapter.js.map +1 -0
  626. package/node_modules/@xrkseek/server-http/dist/dsh-compat/sidebar-git.d.ts +25 -0
  627. package/node_modules/@xrkseek/server-http/dist/dsh-compat/sidebar-git.d.ts.map +1 -0
  628. package/node_modules/@xrkseek/server-http/dist/dsh-compat/sidebar-git.js +78 -0
  629. package/node_modules/@xrkseek/server-http/dist/dsh-compat/sidebar-git.js.map +1 -0
  630. package/node_modules/@xrkseek/server-http/dist/dsh-compat/sidebar-prefs-store.d.ts +9 -0
  631. package/node_modules/@xrkseek/server-http/dist/dsh-compat/sidebar-prefs-store.d.ts.map +1 -0
  632. package/node_modules/@xrkseek/server-http/dist/dsh-compat/sidebar-prefs-store.js +56 -0
  633. package/node_modules/@xrkseek/server-http/dist/dsh-compat/sidebar-prefs-store.js.map +1 -0
  634. package/node_modules/@xrkseek/server-http/dist/dsh-compat/skin-market.d.ts +11 -0
  635. package/node_modules/@xrkseek/server-http/dist/dsh-compat/skin-market.d.ts.map +1 -0
  636. package/node_modules/@xrkseek/server-http/dist/dsh-compat/skin-market.js +106 -0
  637. package/node_modules/@xrkseek/server-http/dist/dsh-compat/skin-market.js.map +1 -0
  638. package/node_modules/@xrkseek/server-http/dist/dsh-compat/surface-registry.d.ts +18 -0
  639. package/node_modules/@xrkseek/server-http/dist/dsh-compat/surface-registry.d.ts.map +1 -0
  640. package/node_modules/@xrkseek/server-http/dist/dsh-compat/surface-registry.js +240 -0
  641. package/node_modules/@xrkseek/server-http/dist/dsh-compat/surface-registry.js.map +1 -0
  642. package/node_modules/@xrkseek/server-http/dist/dsh-compat/surfaces.d.ts +5 -0
  643. package/node_modules/@xrkseek/server-http/dist/dsh-compat/surfaces.d.ts.map +1 -0
  644. package/node_modules/@xrkseek/server-http/dist/dsh-compat/surfaces.js +78 -0
  645. package/node_modules/@xrkseek/server-http/dist/dsh-compat/surfaces.js.map +1 -0
  646. package/node_modules/@xrkseek/server-http/dist/dsh-compat/tokenledger.d.ts +42 -0
  647. package/node_modules/@xrkseek/server-http/dist/dsh-compat/tokenledger.d.ts.map +1 -0
  648. package/node_modules/@xrkseek/server-http/dist/dsh-compat/tokenledger.js +117 -0
  649. package/node_modules/@xrkseek/server-http/dist/dsh-compat/tokenledger.js.map +1 -0
  650. package/node_modules/@xrkseek/server-http/dist/dsh-compat/tongflow-node-runtime.d.ts +11 -0
  651. package/node_modules/@xrkseek/server-http/dist/dsh-compat/tongflow-node-runtime.d.ts.map +1 -0
  652. package/node_modules/@xrkseek/server-http/dist/dsh-compat/tongflow-node-runtime.js +111 -0
  653. package/node_modules/@xrkseek/server-http/dist/dsh-compat/tongflow-node-runtime.js.map +1 -0
  654. package/node_modules/@xrkseek/server-http/dist/dsh-compat/tongflow.d.ts +16 -0
  655. package/node_modules/@xrkseek/server-http/dist/dsh-compat/tongflow.d.ts.map +1 -0
  656. package/node_modules/@xrkseek/server-http/dist/dsh-compat/tongflow.js +455 -0
  657. package/node_modules/@xrkseek/server-http/dist/dsh-compat/tongflow.js.map +1 -0
  658. package/node_modules/@xrkseek/server-http/dist/dsh-compat/turn-rewind-store.d.ts +26 -0
  659. package/node_modules/@xrkseek/server-http/dist/dsh-compat/turn-rewind-store.d.ts.map +1 -0
  660. package/node_modules/@xrkseek/server-http/dist/dsh-compat/turn-rewind-store.js +22 -0
  661. package/node_modules/@xrkseek/server-http/dist/dsh-compat/turn-rewind-store.js.map +1 -0
  662. package/node_modules/@xrkseek/server-http/dist/dsh-compat/turn-rewind-workspace.d.ts +12 -0
  663. package/node_modules/@xrkseek/server-http/dist/dsh-compat/turn-rewind-workspace.d.ts.map +1 -0
  664. package/node_modules/@xrkseek/server-http/dist/dsh-compat/turn-rewind-workspace.js +123 -0
  665. package/node_modules/@xrkseek/server-http/dist/dsh-compat/turn-rewind-workspace.js.map +1 -0
  666. package/node_modules/@xrkseek/server-http/dist/dsh-compat/turn-rewind.d.ts +16 -0
  667. package/node_modules/@xrkseek/server-http/dist/dsh-compat/turn-rewind.d.ts.map +1 -0
  668. package/node_modules/@xrkseek/server-http/dist/dsh-compat/turn-rewind.js +99 -0
  669. package/node_modules/@xrkseek/server-http/dist/dsh-compat/turn-rewind.js.map +1 -0
  670. package/node_modules/@xrkseek/server-http/dist/dsh-compat/underlying/contracts/wallet-port.d.ts +106 -0
  671. package/node_modules/@xrkseek/server-http/dist/dsh-compat/underlying/contracts/wallet-port.d.ts.map +1 -0
  672. package/node_modules/@xrkseek/server-http/dist/dsh-compat/underlying/contracts/wallet-port.js +6 -0
  673. package/node_modules/@xrkseek/server-http/dist/dsh-compat/underlying/contracts/wallet-port.js.map +1 -0
  674. package/node_modules/@xrkseek/server-http/dist/dsh-compat/underlying/doc-store.d.ts +14 -0
  675. package/node_modules/@xrkseek/server-http/dist/dsh-compat/underlying/doc-store.d.ts.map +1 -0
  676. package/node_modules/@xrkseek/server-http/dist/dsh-compat/underlying/doc-store.js +21 -0
  677. package/node_modules/@xrkseek/server-http/dist/dsh-compat/underlying/doc-store.js.map +1 -0
  678. package/node_modules/@xrkseek/server-http/dist/dsh-compat/underlying/http-kit.d.ts +9 -0
  679. package/node_modules/@xrkseek/server-http/dist/dsh-compat/underlying/http-kit.d.ts.map +1 -0
  680. package/node_modules/@xrkseek/server-http/dist/dsh-compat/underlying/http-kit.js +22 -0
  681. package/node_modules/@xrkseek/server-http/dist/dsh-compat/underlying/http-kit.js.map +1 -0
  682. package/node_modules/@xrkseek/server-http/dist/dsh-compat/underlying/index.d.ts +22 -0
  683. package/node_modules/@xrkseek/server-http/dist/dsh-compat/underlying/index.d.ts.map +1 -0
  684. package/node_modules/@xrkseek/server-http/dist/dsh-compat/underlying/index.js +13 -0
  685. package/node_modules/@xrkseek/server-http/dist/dsh-compat/underlying/index.js.map +1 -0
  686. package/node_modules/@xrkseek/server-http/dist/dsh-compat/underlying/wallet-service.d.ts +21 -0
  687. package/node_modules/@xrkseek/server-http/dist/dsh-compat/underlying/wallet-service.d.ts.map +1 -0
  688. package/node_modules/@xrkseek/server-http/dist/dsh-compat/underlying/wallet-service.js +190 -0
  689. package/node_modules/@xrkseek/server-http/dist/dsh-compat/underlying/wallet-service.js.map +1 -0
  690. package/node_modules/@xrkseek/server-http/dist/dsh-compat/undo.d.ts +10 -0
  691. package/node_modules/@xrkseek/server-http/dist/dsh-compat/undo.d.ts.map +1 -0
  692. package/node_modules/@xrkseek/server-http/dist/dsh-compat/undo.js +438 -0
  693. package/node_modules/@xrkseek/server-http/dist/dsh-compat/undo.js.map +1 -0
  694. package/node_modules/@xrkseek/server-http/dist/dsh-compat/usage-stats.d.ts +8 -0
  695. package/node_modules/@xrkseek/server-http/dist/dsh-compat/usage-stats.d.ts.map +1 -0
  696. package/node_modules/@xrkseek/server-http/dist/dsh-compat/usage-stats.js +69 -0
  697. package/node_modules/@xrkseek/server-http/dist/dsh-compat/usage-stats.js.map +1 -0
  698. package/node_modules/@xrkseek/server-http/dist/dsh-compat/vision-adapter.d.ts +6 -0
  699. package/node_modules/@xrkseek/server-http/dist/dsh-compat/vision-adapter.d.ts.map +1 -0
  700. package/node_modules/@xrkseek/server-http/dist/dsh-compat/vision-adapter.js +62 -0
  701. package/node_modules/@xrkseek/server-http/dist/dsh-compat/vision-adapter.js.map +1 -0
  702. package/node_modules/@xrkseek/server-http/dist/dsh-compat/vision-defaults.d.ts +5 -0
  703. package/node_modules/@xrkseek/server-http/dist/dsh-compat/vision-defaults.d.ts.map +1 -0
  704. package/node_modules/@xrkseek/server-http/dist/dsh-compat/vision-defaults.js +17 -0
  705. package/node_modules/@xrkseek/server-http/dist/dsh-compat/vision-defaults.js.map +1 -0
  706. package/node_modules/@xrkseek/server-http/dist/dsh-compat/vision-router-adapter.d.ts +7 -0
  707. package/node_modules/@xrkseek/server-http/dist/dsh-compat/vision-router-adapter.d.ts.map +1 -0
  708. package/node_modules/@xrkseek/server-http/dist/dsh-compat/vision-router-adapter.js +67 -0
  709. package/node_modules/@xrkseek/server-http/dist/dsh-compat/vision-router-adapter.js.map +1 -0
  710. package/node_modules/@xrkseek/server-http/dist/dsh-compat/vision.d.ts +12 -0
  711. package/node_modules/@xrkseek/server-http/dist/dsh-compat/vision.d.ts.map +1 -0
  712. package/node_modules/@xrkseek/server-http/dist/dsh-compat/vision.js +198 -0
  713. package/node_modules/@xrkseek/server-http/dist/dsh-compat/vision.js.map +1 -0
  714. package/node_modules/@xrkseek/server-http/dist/dsh-compat/wallet.d.ts +15 -0
  715. package/node_modules/@xrkseek/server-http/dist/dsh-compat/wallet.d.ts.map +1 -0
  716. package/node_modules/@xrkseek/server-http/dist/dsh-compat/wallet.js +111 -0
  717. package/node_modules/@xrkseek/server-http/dist/dsh-compat/wallet.js.map +1 -0
  718. package/node_modules/@xrkseek/server-http/dist/dsh-compat/wallpaper.d.ts +9 -0
  719. package/node_modules/@xrkseek/server-http/dist/dsh-compat/wallpaper.d.ts.map +1 -0
  720. package/node_modules/@xrkseek/server-http/dist/dsh-compat/wallpaper.js +161 -0
  721. package/node_modules/@xrkseek/server-http/dist/dsh-compat/wallpaper.js.map +1 -0
  722. package/node_modules/@xrkseek/server-http/dist/dsh-compat/wire/settings-provider.d.ts +6 -0
  723. package/node_modules/@xrkseek/server-http/dist/dsh-compat/wire/settings-provider.d.ts.map +1 -0
  724. package/node_modules/@xrkseek/server-http/dist/dsh-compat/wire/settings-provider.js +31 -0
  725. package/node_modules/@xrkseek/server-http/dist/dsh-compat/wire/settings-provider.js.map +1 -0
  726. package/node_modules/@xrkseek/server-http/dist/dsh-compat/wire/stub-handlers.d.ts +9 -0
  727. package/node_modules/@xrkseek/server-http/dist/dsh-compat/wire/stub-handlers.d.ts.map +1 -0
  728. package/node_modules/@xrkseek/server-http/dist/dsh-compat/wire/stub-handlers.js +103 -0
  729. package/node_modules/@xrkseek/server-http/dist/dsh-compat/wire/stub-handlers.js.map +1 -0
  730. package/node_modules/@xrkseek/server-http/dist/dsh-compat/xrk-host-apply.d.ts +49 -0
  731. package/node_modules/@xrkseek/server-http/dist/dsh-compat/xrk-host-apply.d.ts.map +1 -0
  732. package/node_modules/@xrkseek/server-http/dist/dsh-compat/xrk-host-apply.js +190 -0
  733. package/node_modules/@xrkseek/server-http/dist/dsh-compat/xrk-host-apply.js.map +1 -0
  734. package/node_modules/@xrkseek/server-http/dist/dsh-compat/xrk-json-store.d.ts +9 -0
  735. package/node_modules/@xrkseek/server-http/dist/dsh-compat/xrk-json-store.d.ts.map +1 -0
  736. package/node_modules/@xrkseek/server-http/dist/dsh-compat/xrk-json-store.js +44 -0
  737. package/node_modules/@xrkseek/server-http/dist/dsh-compat/xrk-json-store.js.map +1 -0
  738. package/node_modules/@xrkseek/server-http/dist/dsh-compat.d.ts +6 -0
  739. package/node_modules/@xrkseek/server-http/dist/dsh-compat.d.ts.map +1 -0
  740. package/node_modules/@xrkseek/server-http/dist/dsh-compat.js +6 -0
  741. package/node_modules/@xrkseek/server-http/dist/dsh-compat.js.map +1 -0
  742. package/node_modules/@xrkseek/server-http/dist/host-wire.d.ts +14 -0
  743. package/node_modules/@xrkseek/server-http/dist/host-wire.d.ts.map +1 -0
  744. package/node_modules/@xrkseek/server-http/dist/host-wire.js +15 -0
  745. package/node_modules/@xrkseek/server-http/dist/host-wire.js.map +1 -0
  746. package/node_modules/@xrkseek/server-http/dist/http-json.d.ts +12 -0
  747. package/node_modules/@xrkseek/server-http/dist/http-json.d.ts.map +1 -0
  748. package/node_modules/@xrkseek/server-http/dist/http-json.js +40 -0
  749. package/node_modules/@xrkseek/server-http/dist/http-json.js.map +1 -0
  750. package/node_modules/@xrkseek/server-http/dist/index.d.ts +12 -1
  751. package/node_modules/@xrkseek/server-http/dist/index.d.ts.map +1 -1
  752. package/node_modules/@xrkseek/server-http/dist/index.js +12 -1
  753. package/node_modules/@xrkseek/server-http/dist/index.js.map +1 -1
  754. package/node_modules/@xrkseek/server-http/dist/public-routes.d.ts +19 -0
  755. package/node_modules/@xrkseek/server-http/dist/public-routes.d.ts.map +1 -0
  756. package/node_modules/@xrkseek/server-http/dist/public-routes.js +34 -0
  757. package/node_modules/@xrkseek/server-http/dist/public-routes.js.map +1 -0
  758. package/node_modules/@xrkseek/server-http/dist/xrk/plugin-mutate.d.ts +13 -0
  759. package/node_modules/@xrkseek/server-http/dist/xrk/plugin-mutate.d.ts.map +1 -0
  760. package/node_modules/@xrkseek/server-http/dist/xrk/plugin-mutate.js +58 -0
  761. package/node_modules/@xrkseek/server-http/dist/xrk/plugin-mutate.js.map +1 -0
  762. package/node_modules/@xrkseek/server-http/dist/xrk/plugin-routes.d.ts +16 -0
  763. package/node_modules/@xrkseek/server-http/dist/xrk/plugin-routes.d.ts.map +1 -0
  764. package/node_modules/@xrkseek/server-http/dist/xrk/plugin-routes.js +49 -0
  765. package/node_modules/@xrkseek/server-http/dist/xrk/plugin-routes.js.map +1 -0
  766. package/node_modules/@xrkseek/server-http/dist/xrk/plugin-services.d.ts +35 -0
  767. package/node_modules/@xrkseek/server-http/dist/xrk/plugin-services.d.ts.map +1 -0
  768. package/node_modules/@xrkseek/server-http/dist/xrk/plugin-services.js +103 -0
  769. package/node_modules/@xrkseek/server-http/dist/xrk/plugin-services.js.map +1 -0
  770. package/node_modules/@xrkseek/server-http/package.json +2 -1
  771. package/node_modules/@xrkseek/server-loader/dist/host.d.ts +6 -0
  772. package/node_modules/@xrkseek/server-loader/dist/host.d.ts.map +1 -0
  773. package/node_modules/@xrkseek/server-loader/dist/host.js +11 -0
  774. package/node_modules/@xrkseek/server-loader/dist/host.js.map +1 -0
  775. package/node_modules/@xrkseek/server-loader/dist/index.d.ts +2 -1
  776. package/node_modules/@xrkseek/server-loader/dist/index.d.ts.map +1 -1
  777. package/node_modules/@xrkseek/server-loader/dist/index.js +1 -0
  778. package/node_modules/@xrkseek/server-loader/dist/index.js.map +1 -1
  779. package/node_modules/@xrkseek/server-loader/dist/kinds.d.ts +5 -0
  780. package/node_modules/@xrkseek/server-loader/dist/kinds.d.ts.map +1 -1
  781. package/node_modules/@xrkseek/server-loader/dist/kinds.js +5 -0
  782. package/node_modules/@xrkseek/server-loader/dist/kinds.js.map +1 -1
  783. package/node_modules/@xrkseek/server-loader/dist/load.d.ts.map +1 -1
  784. package/node_modules/@xrkseek/server-loader/dist/load.js +5 -0
  785. package/node_modules/@xrkseek/server-loader/dist/load.js.map +1 -1
  786. package/node_modules/@xrkseek/server-loader/dist/types.d.ts +40 -0
  787. package/node_modules/@xrkseek/server-loader/dist/types.d.ts.map +1 -1
  788. package/node_modules/@xrkseek/xrk-file-reference/README.i18n.yaml +6 -0
  789. package/node_modules/@xrkseek/xrk-file-reference/README.md +22 -0
  790. package/node_modules/@xrkseek/xrk-file-reference/README.zh.md +22 -0
  791. package/node_modules/@xrkseek/xrk-file-reference/package.json +68 -0
  792. package/node_modules/@xrkseek/xrk-file-reference-local/README.i18n.yaml +6 -0
  793. package/node_modules/@xrkseek/xrk-file-reference-local/README.md +45 -0
  794. package/node_modules/@xrkseek/xrk-file-reference-local/README.zh.md +45 -0
  795. package/node_modules/@xrkseek/xrk-file-reference-local/package.json +56 -0
  796. package/node_modules/@xrkseek/xrk-session-reference/README.i18n.yaml +6 -0
  797. package/node_modules/@xrkseek/xrk-session-reference/README.md +50 -0
  798. package/node_modules/@xrkseek/xrk-session-reference/README.zh.md +50 -0
  799. package/node_modules/@xrkseek/xrk-session-reference/package.json +79 -0
  800. package/node_modules/detect-libc/LICENSE +201 -0
  801. package/node_modules/detect-libc/README.md +163 -0
  802. package/node_modules/detect-libc/index.d.ts +14 -0
  803. package/node_modules/detect-libc/lib/detect-libc.js +313 -0
  804. package/node_modules/detect-libc/lib/elf.js +39 -0
  805. package/node_modules/detect-libc/lib/filesystem.js +51 -0
  806. package/node_modules/detect-libc/lib/process.js +24 -0
  807. package/node_modules/detect-libc/package.json +44 -0
  808. package/node_modules/semver/LICENSE +15 -0
  809. package/node_modules/semver/README.md +680 -0
  810. package/node_modules/semver/bin/semver.js +195 -0
  811. package/node_modules/semver/classes/comparator.js +143 -0
  812. package/node_modules/semver/classes/index.js +7 -0
  813. package/node_modules/semver/classes/range.js +577 -0
  814. package/node_modules/semver/classes/semver.js +350 -0
  815. package/node_modules/semver/functions/clean.js +8 -0
  816. package/node_modules/semver/functions/cmp.js +54 -0
  817. package/node_modules/semver/functions/coerce.js +62 -0
  818. package/node_modules/semver/functions/compare-build.js +9 -0
  819. package/node_modules/semver/functions/compare-loose.js +5 -0
  820. package/node_modules/semver/functions/compare.js +7 -0
  821. package/node_modules/semver/functions/diff.js +60 -0
  822. package/node_modules/semver/functions/eq.js +5 -0
  823. package/node_modules/semver/functions/gt.js +5 -0
  824. package/node_modules/semver/functions/gte.js +5 -0
  825. package/node_modules/semver/functions/inc.js +21 -0
  826. package/node_modules/semver/functions/lt.js +5 -0
  827. package/node_modules/semver/functions/lte.js +5 -0
  828. package/node_modules/semver/functions/major.js +5 -0
  829. package/node_modules/semver/functions/minor.js +5 -0
  830. package/node_modules/semver/functions/neq.js +5 -0
  831. package/node_modules/semver/functions/parse.js +18 -0
  832. package/node_modules/semver/functions/patch.js +5 -0
  833. package/node_modules/semver/functions/prerelease.js +8 -0
  834. package/node_modules/semver/functions/rcompare.js +5 -0
  835. package/node_modules/semver/functions/rsort.js +5 -0
  836. package/node_modules/semver/functions/satisfies.js +12 -0
  837. package/node_modules/semver/functions/sort.js +5 -0
  838. package/node_modules/semver/functions/truncate.js +48 -0
  839. package/node_modules/semver/functions/valid.js +8 -0
  840. package/node_modules/semver/index.js +93 -0
  841. package/node_modules/semver/internal/constants.js +37 -0
  842. package/node_modules/semver/internal/debug.js +11 -0
  843. package/node_modules/semver/internal/identifiers.js +29 -0
  844. package/node_modules/semver/internal/lrucache.js +42 -0
  845. package/node_modules/semver/internal/parse-options.js +17 -0
  846. package/node_modules/semver/internal/re.js +223 -0
  847. package/node_modules/semver/package.json +78 -0
  848. package/node_modules/semver/preload.js +4 -0
  849. package/node_modules/semver/range.bnf +17 -0
  850. package/node_modules/semver/ranges/gtr.js +6 -0
  851. package/node_modules/semver/ranges/intersects.js +9 -0
  852. package/node_modules/semver/ranges/ltr.js +6 -0
  853. package/node_modules/semver/ranges/max-satisfying.js +27 -0
  854. package/node_modules/semver/ranges/min-satisfying.js +26 -0
  855. package/node_modules/semver/ranges/min-version.js +63 -0
  856. package/node_modules/semver/ranges/outside.js +82 -0
  857. package/node_modules/semver/ranges/simplify.js +49 -0
  858. package/node_modules/semver/ranges/subset.js +249 -0
  859. package/node_modules/semver/ranges/to-comparators.js +10 -0
  860. package/node_modules/semver/ranges/valid.js +13 -0
  861. package/node_modules/sharp/LICENSE +191 -0
  862. package/node_modules/sharp/README.md +112 -0
  863. package/node_modules/sharp/dist/channel.cjs +177 -0
  864. package/node_modules/sharp/dist/channel.mjs +177 -0
  865. package/node_modules/sharp/dist/colour.cjs +199 -0
  866. package/node_modules/sharp/dist/colour.mjs +199 -0
  867. package/node_modules/sharp/dist/composite.cjs +213 -0
  868. package/node_modules/sharp/dist/composite.mjs +213 -0
  869. package/node_modules/sharp/dist/constructor.cjs +511 -0
  870. package/node_modules/sharp/dist/constructor.mjs +511 -0
  871. package/node_modules/sharp/dist/index.cjs +25 -0
  872. package/node_modules/sharp/dist/index.d.cts +1999 -0
  873. package/node_modules/sharp/dist/index.d.mts +2046 -0
  874. package/node_modules/sharp/dist/index.mjs +25 -0
  875. package/node_modules/sharp/dist/input.cjs +814 -0
  876. package/node_modules/sharp/dist/input.mjs +814 -0
  877. package/node_modules/sharp/dist/is.cjs +143 -0
  878. package/node_modules/sharp/dist/is.mjs +143 -0
  879. package/node_modules/sharp/dist/libvips.cjs +212 -0
  880. package/node_modules/sharp/dist/libvips.mjs +212 -0
  881. package/node_modules/sharp/dist/operation.cjs +998 -0
  882. package/node_modules/sharp/dist/operation.mjs +998 -0
  883. package/node_modules/sharp/dist/output.cjs +1788 -0
  884. package/node_modules/sharp/dist/output.mjs +1788 -0
  885. package/node_modules/sharp/dist/resize.cjs +617 -0
  886. package/node_modules/sharp/dist/resize.mjs +617 -0
  887. package/node_modules/sharp/dist/sharp.cjs +174 -0
  888. package/node_modules/sharp/dist/sharp.mjs +174 -0
  889. package/node_modules/sharp/dist/utility.cjs +301 -0
  890. package/node_modules/sharp/dist/utility.mjs +301 -0
  891. package/node_modules/sharp/install/build.js +38 -0
  892. package/node_modules/sharp/lib/index.d.ts +1999 -0
  893. package/node_modules/sharp/package.json +227 -0
  894. package/node_modules/sharp/src/binding.gyp +303 -0
  895. package/node_modules/sharp/src/common.cc +1183 -0
  896. package/node_modules/sharp/src/common.h +421 -0
  897. package/node_modules/sharp/src/metadata.cc +404 -0
  898. package/node_modules/sharp/src/metadata.h +95 -0
  899. package/node_modules/sharp/src/operations.cc +516 -0
  900. package/node_modules/sharp/src/operations.h +137 -0
  901. package/node_modules/sharp/src/pipeline.cc +1948 -0
  902. package/node_modules/sharp/src/pipeline.h +422 -0
  903. package/node_modules/sharp/src/sharp.cc +43 -0
  904. package/node_modules/sharp/src/stats.cc +186 -0
  905. package/node_modules/sharp/src/stats.h +62 -0
  906. package/node_modules/sharp/src/utilities.cc +289 -0
  907. package/node_modules/sharp/src/utilities.h +22 -0
  908. package/node_modules/undici-types/LICENSE +21 -0
  909. package/node_modules/undici-types/README.md +6 -0
  910. package/node_modules/undici-types/agent.d.ts +32 -0
  911. package/node_modules/undici-types/api.d.ts +43 -0
  912. package/node_modules/undici-types/balanced-pool.d.ts +30 -0
  913. package/node_modules/undici-types/cache-interceptor.d.ts +173 -0
  914. package/node_modules/undici-types/cache.d.ts +36 -0
  915. package/node_modules/undici-types/client-stats.d.ts +15 -0
  916. package/node_modules/undici-types/client.d.ts +108 -0
  917. package/node_modules/undici-types/connector.d.ts +34 -0
  918. package/node_modules/undici-types/content-type.d.ts +21 -0
  919. package/node_modules/undici-types/cookies.d.ts +30 -0
  920. package/node_modules/undici-types/diagnostics-channel.d.ts +74 -0
  921. package/node_modules/undici-types/dispatcher.d.ts +276 -0
  922. package/node_modules/undici-types/env-http-proxy-agent.d.ts +22 -0
  923. package/node_modules/undici-types/errors.d.ts +161 -0
  924. package/node_modules/undici-types/eventsource.d.ts +66 -0
  925. package/node_modules/undici-types/fetch.d.ts +211 -0
  926. package/node_modules/undici-types/formdata.d.ts +108 -0
  927. package/node_modules/undici-types/global-dispatcher.d.ts +9 -0
  928. package/node_modules/undici-types/global-origin.d.ts +7 -0
  929. package/node_modules/undici-types/h2c-client.d.ts +73 -0
  930. package/node_modules/undici-types/handlers.d.ts +15 -0
  931. package/node_modules/undici-types/header.d.ts +160 -0
  932. package/node_modules/undici-types/index.d.ts +88 -0
  933. package/node_modules/undici-types/interceptors.d.ts +73 -0
  934. package/node_modules/undici-types/mock-agent.d.ts +68 -0
  935. package/node_modules/undici-types/mock-call-history.d.ts +111 -0
  936. package/node_modules/undici-types/mock-client.d.ts +27 -0
  937. package/node_modules/undici-types/mock-errors.d.ts +12 -0
  938. package/node_modules/undici-types/mock-interceptor.d.ts +94 -0
  939. package/node_modules/undici-types/mock-pool.d.ts +27 -0
  940. package/node_modules/undici-types/package.json +55 -0
  941. package/node_modules/undici-types/patch.d.ts +29 -0
  942. package/node_modules/undici-types/pool-stats.d.ts +19 -0
  943. package/node_modules/undici-types/pool.d.ts +41 -0
  944. package/node_modules/undici-types/proxy-agent.d.ts +29 -0
  945. package/node_modules/undici-types/readable.d.ts +68 -0
  946. package/node_modules/undici-types/retry-agent.d.ts +8 -0
  947. package/node_modules/undici-types/retry-handler.d.ts +125 -0
  948. package/node_modules/undici-types/round-robin-pool.d.ts +41 -0
  949. package/node_modules/undici-types/snapshot-agent.d.ts +109 -0
  950. package/node_modules/undici-types/util.d.ts +18 -0
  951. package/node_modules/undici-types/utility.d.ts +7 -0
  952. package/node_modules/undici-types/webidl.d.ts +341 -0
  953. package/node_modules/undici-types/websocket.d.ts +186 -0
  954. package/package.json +23 -1
  955. package/product-web/assets/{index-CSGf6Qzd.css → index-C0u-TtQQ.css} +1 -1
  956. package/product-web/assets/index-CHKZdZNt.js +112 -0
  957. package/product-web/assets/index-CHKZdZNt.js.map +1 -0
  958. package/product-web/assets/langs/{php-DY2VakOf.js → php-9bx0az3O.js} +2 -2
  959. package/product-web/assets/langs/{php-DY2VakOf.js.map → php-9bx0az3O.js.map} +1 -1
  960. package/product-web/assets/langs/{ruby-hwtoiFmS.js → ruby-HDLHRjSL.js} +2 -2
  961. package/product-web/assets/langs/{ruby-hwtoiFmS.js.map → ruby-HDLHRjSL.js.map} +1 -1
  962. package/product-web/assets/{vendor-CldRVjca.js → vendor-CeMKrCZm.js} +36 -35
  963. package/product-web/assets/vendor-CeMKrCZm.js.map +1 -0
  964. package/product-web/boot.json +20 -1
  965. package/product-web/index.html +3 -3
  966. package/product-web/plugins/@xrkseek/client-locale/client.js +3 -3
  967. package/product-web/plugins/@xrkseek/client-modules/client.js +83 -12
  968. package/product-web/plugins/@xrkseek/client-runtime/client.js +5 -37
  969. package/product-web/plugins/@xrkseek/client-ui-agent-preset/client.js +63 -80
  970. package/product-web/plugins/@xrkseek/client-ui-attachment/client.js +782 -0
  971. package/product-web/plugins/@xrkseek/client-ui-commands/client.js +8 -8
  972. package/product-web/plugins/@xrkseek/client-ui-conversation/client.js +933 -505
  973. package/product-web/plugins/@xrkseek/client-ui-deliverables/client.js +6 -6
  974. package/product-web/plugins/@xrkseek/client-ui-directory-picker-browse/client.js +28 -28
  975. package/product-web/plugins/@xrkseek/client-ui-goal/client.js +8 -8
  976. package/product-web/plugins/@xrkseek/client-ui-input-trigger/client.js +82 -26
  977. package/product-web/plugins/@xrkseek/client-ui-jobs/client.js +8 -8
  978. package/product-web/plugins/@xrkseek/client-ui-layout/client.js +4 -4
  979. package/product-web/plugins/@xrkseek/client-ui-message-feedback/client.js +5 -5
  980. package/product-web/plugins/@xrkseek/client-ui-model-selection/client.js +17 -17
  981. package/product-web/plugins/@xrkseek/client-ui-permission-presets/client.js +3 -3
  982. package/product-web/plugins/@xrkseek/client-ui-plan/client.js +1 -1
  983. package/product-web/plugins/@xrkseek/client-ui-reference/client.js +148 -0
  984. package/product-web/plugins/@xrkseek/client-ui-settings-general/client.js +12 -12
  985. package/product-web/plugins/@xrkseek/client-ui-settings-models/client.js +62 -62
  986. package/product-web/plugins/@xrkseek/client-ui-settings-plugin-inventory/client.js +12 -12
  987. package/product-web/plugins/@xrkseek/client-ui-settings-plugins/client.js +38 -38
  988. package/product-web/plugins/@xrkseek/client-ui-sidebar/client.js +16 -16
  989. package/product-web/plugins/@xrkseek/client-ui-skill/client.js +11 -11
  990. package/product-web/plugins/@xrkseek/client-ui-subagent/client.js +289 -157
  991. package/product-web/plugins/@xrkseek/client-ui-theme/client.js +2 -2
  992. package/product-web/plugins/@xrkseek/client-ui-tool/client.js +41 -41
  993. package/product-web/plugins/@xrkseek/client-ui-trajectory/client.js +149 -170
  994. package/product-web/plugins/@xrkseek/client-ui-user-questions/client.js +28 -28
  995. package/product-web/plugins/@xrkseek/client-ui-workflow-run/client.js +14 -14
  996. package/product-web/plugins/@xrkseek/client-ui-workspace/client.js +52 -52
  997. package/product-web/plugins/@xrkseek/xrk-api-remotes/client.js +20 -1
  998. package/product-web/assets/index-CcF0Sxxg.js +0 -297
  999. package/product-web/assets/index-CcF0Sxxg.js.map +0 -1
  1000. package/product-web/assets/vendor-CldRVjca.js.map +0 -1
@@ -0,0 +1,199 @@
1
+ /*!
2
+ Copyright 2013 Lovell Fuller and others.
3
+ SPDX-License-Identifier: Apache-2.0
4
+ */
5
+
6
+ const color = require('@img/colour');
7
+ const is = require('./is.cjs');
8
+
9
+ /**
10
+ * Colourspaces.
11
+ * @private
12
+ */
13
+ const colourspace = {
14
+ multiband: 'multiband',
15
+ 'b-w': 'b-w',
16
+ bw: 'b-w',
17
+ cmyk: 'cmyk',
18
+ srgb: 'srgb'
19
+ };
20
+
21
+ /**
22
+ * Tint the image using the provided colour.
23
+ * An alpha channel may be present and will be unchanged by the operation.
24
+ *
25
+ * @example
26
+ * const output = await sharp(input)
27
+ * .tint({ r: 255, g: 240, b: 16 })
28
+ * .toBuffer();
29
+ *
30
+ * @param {string|Object} tint - Parsed by the [color](https://www.npmjs.org/package/color) module.
31
+ * @returns {Sharp}
32
+ * @throws {Error} Invalid parameter
33
+ */
34
+ function tint (tint) {
35
+ this._setBackgroundColourOption('tint', tint);
36
+ return this;
37
+ }
38
+
39
+ /**
40
+ * Convert to 8-bit greyscale; 256 shades of grey.
41
+ * This is a linear operation. If the input image is in a non-linear colour space such as sRGB, use `gamma()` with `greyscale()` for the best results.
42
+ * By default the output image will be web-friendly sRGB and contain three (identical) colour channels.
43
+ * This may be overridden by other sharp operations such as `toColourspace('b-w')`,
44
+ * which will produce an output image containing one colour channel.
45
+ * An alpha channel may be present, and will be unchanged by the operation.
46
+ *
47
+ * @example
48
+ * const output = await sharp(input).greyscale().toBuffer();
49
+ *
50
+ * @param {Boolean} [greyscale=true]
51
+ * @returns {Sharp}
52
+ */
53
+ function greyscale (greyscale) {
54
+ this.options.greyscale = is.bool(greyscale) ? greyscale : true;
55
+ return this;
56
+ }
57
+
58
+ /**
59
+ * Alternative spelling of `greyscale`.
60
+ * @param {Boolean} [grayscale=true]
61
+ * @returns {Sharp}
62
+ */
63
+ function grayscale (grayscale) {
64
+ return this.greyscale(grayscale);
65
+ }
66
+
67
+ /**
68
+ * Set the pipeline colourspace.
69
+ *
70
+ * The input image will be converted to the provided colourspace at the start of the pipeline.
71
+ * All operations will use this colourspace before converting to the output colourspace,
72
+ * as defined by {@link #tocolourspace toColourspace}.
73
+ *
74
+ * @since 0.29.0
75
+ *
76
+ * @example
77
+ * // Run pipeline in 16 bits per channel RGB while converting final result to 8 bits per channel sRGB.
78
+ * await sharp(input)
79
+ * .pipelineColourspace('rgb16')
80
+ * .toColourspace('srgb')
81
+ * .toFile('16bpc-pipeline-to-8bpc-output.png')
82
+ *
83
+ * @param {string} [colourspace] - pipeline colourspace e.g. `rgb16`, `scrgb`, `lab`, `grey16` [...](https://www.libvips.org/API/current/enum.Interpretation.html)
84
+ * @returns {Sharp}
85
+ * @throws {Error} Invalid parameters
86
+ */
87
+ function pipelineColourspace (colourspace) {
88
+ if (!is.string(colourspace)) {
89
+ throw is.invalidParameterError('colourspace', 'string', colourspace);
90
+ }
91
+ this.options.colourspacePipeline = colourspace;
92
+ return this;
93
+ }
94
+
95
+ /**
96
+ * Alternative spelling of `pipelineColourspace`.
97
+ * @param {string} [colorspace] - pipeline colorspace.
98
+ * @returns {Sharp}
99
+ * @throws {Error} Invalid parameters
100
+ */
101
+ function pipelineColorspace (colorspace) {
102
+ return this.pipelineColourspace(colorspace);
103
+ }
104
+
105
+ /**
106
+ * Set the output colourspace.
107
+ * By default output image will be web-friendly sRGB, with additional channels interpreted as alpha channels.
108
+ *
109
+ * @example
110
+ * // Output 16 bits per pixel RGB
111
+ * await sharp(input)
112
+ * .toColourspace('rgb16')
113
+ * .toFile('16-bpp.png')
114
+ *
115
+ * @param {string} [colourspace] - output colourspace e.g. `srgb`, `rgb`, `cmyk`, `lab`, `b-w` [...](https://www.libvips.org/API/current/enum.Interpretation.html)
116
+ * @returns {Sharp}
117
+ * @throws {Error} Invalid parameters
118
+ */
119
+ function toColourspace (colourspace) {
120
+ if (!is.string(colourspace)) {
121
+ throw is.invalidParameterError('colourspace', 'string', colourspace);
122
+ }
123
+ this.options.colourspace = colourspace;
124
+ return this;
125
+ }
126
+
127
+ /**
128
+ * Alternative spelling of `toColourspace`.
129
+ * @param {string} [colorspace] - output colorspace.
130
+ * @returns {Sharp}
131
+ * @throws {Error} Invalid parameters
132
+ */
133
+ function toColorspace (colorspace) {
134
+ return this.toColourspace(colorspace);
135
+ }
136
+
137
+ /**
138
+ * Create a RGBA colour array from a given value.
139
+ * @private
140
+ * @param {string|Object} value
141
+ * @throws {Error} Invalid value
142
+ */
143
+ function _getBackgroundColourOption (value) {
144
+ if (
145
+ is.object(value) ||
146
+ (is.string(value) && value.length >= 3 && value.length <= 200)
147
+ ) {
148
+ const colour = color(value);
149
+ const red = colour.red();
150
+ const green = colour.green();
151
+ const blue = colour.blue();
152
+ const alpha = Math.round(colour.alpha() * 255);
153
+ for (const [channel, component] of [['red', red], ['green', green], ['blue', blue], ['alpha', alpha]]) {
154
+ if (!is.number(component)) {
155
+ throw is.invalidParameterError(`background.${channel}`, 'number', component);
156
+ }
157
+ }
158
+ return [red, green, blue, alpha];
159
+ } else {
160
+ throw is.invalidParameterError('background', 'object or string', value);
161
+ }
162
+ }
163
+
164
+ /**
165
+ * Update a colour attribute of the this.options Object.
166
+ * @private
167
+ * @param {string} key
168
+ * @param {string|Object} value
169
+ * @throws {Error} Invalid value
170
+ */
171
+ function _setBackgroundColourOption (key, value) {
172
+ if (is.defined(value)) {
173
+ this.options[key] = _getBackgroundColourOption(value);
174
+ }
175
+ }
176
+
177
+ /**
178
+ * Decorate the Sharp prototype with colour-related functions.
179
+ * @module Sharp
180
+ * @private
181
+ */
182
+ module.exports = (Sharp) => {
183
+ Object.assign(Sharp.prototype, {
184
+ // Public
185
+ tint,
186
+ greyscale,
187
+ grayscale,
188
+ pipelineColourspace,
189
+ pipelineColorspace,
190
+ toColourspace,
191
+ toColorspace,
192
+ // Private
193
+ _getBackgroundColourOption,
194
+ _setBackgroundColourOption
195
+ });
196
+ // Class attributes
197
+ Sharp.colourspace = colourspace;
198
+ Sharp.colorspace = colourspace;
199
+ };
@@ -0,0 +1,199 @@
1
+ /*!
2
+ Copyright 2013 Lovell Fuller and others.
3
+ SPDX-License-Identifier: Apache-2.0
4
+ */
5
+
6
+ import color from '@img/colour';
7
+ import is from './is.mjs';
8
+
9
+ /**
10
+ * Colourspaces.
11
+ * @private
12
+ */
13
+ const colourspace = {
14
+ multiband: 'multiband',
15
+ 'b-w': 'b-w',
16
+ bw: 'b-w',
17
+ cmyk: 'cmyk',
18
+ srgb: 'srgb'
19
+ };
20
+
21
+ /**
22
+ * Tint the image using the provided colour.
23
+ * An alpha channel may be present and will be unchanged by the operation.
24
+ *
25
+ * @example
26
+ * const output = await sharp(input)
27
+ * .tint({ r: 255, g: 240, b: 16 })
28
+ * .toBuffer();
29
+ *
30
+ * @param {string|Object} tint - Parsed by the [color](https://www.npmjs.org/package/color) module.
31
+ * @returns {Sharp}
32
+ * @throws {Error} Invalid parameter
33
+ */
34
+ function tint (tint) {
35
+ this._setBackgroundColourOption('tint', tint);
36
+ return this;
37
+ }
38
+
39
+ /**
40
+ * Convert to 8-bit greyscale; 256 shades of grey.
41
+ * This is a linear operation. If the input image is in a non-linear colour space such as sRGB, use `gamma()` with `greyscale()` for the best results.
42
+ * By default the output image will be web-friendly sRGB and contain three (identical) colour channels.
43
+ * This may be overridden by other sharp operations such as `toColourspace('b-w')`,
44
+ * which will produce an output image containing one colour channel.
45
+ * An alpha channel may be present, and will be unchanged by the operation.
46
+ *
47
+ * @example
48
+ * const output = await sharp(input).greyscale().toBuffer();
49
+ *
50
+ * @param {Boolean} [greyscale=true]
51
+ * @returns {Sharp}
52
+ */
53
+ function greyscale (greyscale) {
54
+ this.options.greyscale = is.bool(greyscale) ? greyscale : true;
55
+ return this;
56
+ }
57
+
58
+ /**
59
+ * Alternative spelling of `greyscale`.
60
+ * @param {Boolean} [grayscale=true]
61
+ * @returns {Sharp}
62
+ */
63
+ function grayscale (grayscale) {
64
+ return this.greyscale(grayscale);
65
+ }
66
+
67
+ /**
68
+ * Set the pipeline colourspace.
69
+ *
70
+ * The input image will be converted to the provided colourspace at the start of the pipeline.
71
+ * All operations will use this colourspace before converting to the output colourspace,
72
+ * as defined by {@link #tocolourspace toColourspace}.
73
+ *
74
+ * @since 0.29.0
75
+ *
76
+ * @example
77
+ * // Run pipeline in 16 bits per channel RGB while converting final result to 8 bits per channel sRGB.
78
+ * await sharp(input)
79
+ * .pipelineColourspace('rgb16')
80
+ * .toColourspace('srgb')
81
+ * .toFile('16bpc-pipeline-to-8bpc-output.png')
82
+ *
83
+ * @param {string} [colourspace] - pipeline colourspace e.g. `rgb16`, `scrgb`, `lab`, `grey16` [...](https://www.libvips.org/API/current/enum.Interpretation.html)
84
+ * @returns {Sharp}
85
+ * @throws {Error} Invalid parameters
86
+ */
87
+ function pipelineColourspace (colourspace) {
88
+ if (!is.string(colourspace)) {
89
+ throw is.invalidParameterError('colourspace', 'string', colourspace);
90
+ }
91
+ this.options.colourspacePipeline = colourspace;
92
+ return this;
93
+ }
94
+
95
+ /**
96
+ * Alternative spelling of `pipelineColourspace`.
97
+ * @param {string} [colorspace] - pipeline colorspace.
98
+ * @returns {Sharp}
99
+ * @throws {Error} Invalid parameters
100
+ */
101
+ function pipelineColorspace (colorspace) {
102
+ return this.pipelineColourspace(colorspace);
103
+ }
104
+
105
+ /**
106
+ * Set the output colourspace.
107
+ * By default output image will be web-friendly sRGB, with additional channels interpreted as alpha channels.
108
+ *
109
+ * @example
110
+ * // Output 16 bits per pixel RGB
111
+ * await sharp(input)
112
+ * .toColourspace('rgb16')
113
+ * .toFile('16-bpp.png')
114
+ *
115
+ * @param {string} [colourspace] - output colourspace e.g. `srgb`, `rgb`, `cmyk`, `lab`, `b-w` [...](https://www.libvips.org/API/current/enum.Interpretation.html)
116
+ * @returns {Sharp}
117
+ * @throws {Error} Invalid parameters
118
+ */
119
+ function toColourspace (colourspace) {
120
+ if (!is.string(colourspace)) {
121
+ throw is.invalidParameterError('colourspace', 'string', colourspace);
122
+ }
123
+ this.options.colourspace = colourspace;
124
+ return this;
125
+ }
126
+
127
+ /**
128
+ * Alternative spelling of `toColourspace`.
129
+ * @param {string} [colorspace] - output colorspace.
130
+ * @returns {Sharp}
131
+ * @throws {Error} Invalid parameters
132
+ */
133
+ function toColorspace (colorspace) {
134
+ return this.toColourspace(colorspace);
135
+ }
136
+
137
+ /**
138
+ * Create a RGBA colour array from a given value.
139
+ * @private
140
+ * @param {string|Object} value
141
+ * @throws {Error} Invalid value
142
+ */
143
+ function _getBackgroundColourOption (value) {
144
+ if (
145
+ is.object(value) ||
146
+ (is.string(value) && value.length >= 3 && value.length <= 200)
147
+ ) {
148
+ const colour = color(value);
149
+ const red = colour.red();
150
+ const green = colour.green();
151
+ const blue = colour.blue();
152
+ const alpha = Math.round(colour.alpha() * 255);
153
+ for (const [channel, component] of [['red', red], ['green', green], ['blue', blue], ['alpha', alpha]]) {
154
+ if (!is.number(component)) {
155
+ throw is.invalidParameterError(`background.${channel}`, 'number', component);
156
+ }
157
+ }
158
+ return [red, green, blue, alpha];
159
+ } else {
160
+ throw is.invalidParameterError('background', 'object or string', value);
161
+ }
162
+ }
163
+
164
+ /**
165
+ * Update a colour attribute of the this.options Object.
166
+ * @private
167
+ * @param {string} key
168
+ * @param {string|Object} value
169
+ * @throws {Error} Invalid value
170
+ */
171
+ function _setBackgroundColourOption (key, value) {
172
+ if (is.defined(value)) {
173
+ this.options[key] = _getBackgroundColourOption(value);
174
+ }
175
+ }
176
+
177
+ /**
178
+ * Decorate the Sharp prototype with colour-related functions.
179
+ * @module Sharp
180
+ * @private
181
+ */
182
+ export default (Sharp) => {
183
+ Object.assign(Sharp.prototype, {
184
+ // Public
185
+ tint,
186
+ greyscale,
187
+ grayscale,
188
+ pipelineColourspace,
189
+ pipelineColorspace,
190
+ toColourspace,
191
+ toColorspace,
192
+ // Private
193
+ _getBackgroundColourOption,
194
+ _setBackgroundColourOption
195
+ });
196
+ // Class attributes
197
+ Sharp.colourspace = colourspace;
198
+ Sharp.colorspace = colourspace;
199
+ };
@@ -0,0 +1,213 @@
1
+ /*!
2
+ Copyright 2013 Lovell Fuller and others.
3
+ SPDX-License-Identifier: Apache-2.0
4
+ */
5
+
6
+ const is = require('./is.cjs');
7
+
8
+ /**
9
+ * Blend modes.
10
+ * @member
11
+ * @private
12
+ */
13
+ const blend = {
14
+ clear: 'clear',
15
+ source: 'source',
16
+ over: 'over',
17
+ in: 'in',
18
+ out: 'out',
19
+ atop: 'atop',
20
+ dest: 'dest',
21
+ 'dest-over': 'dest-over',
22
+ 'dest-in': 'dest-in',
23
+ 'dest-out': 'dest-out',
24
+ 'dest-atop': 'dest-atop',
25
+ xor: 'xor',
26
+ add: 'add',
27
+ saturate: 'saturate',
28
+ multiply: 'multiply',
29
+ screen: 'screen',
30
+ overlay: 'overlay',
31
+ darken: 'darken',
32
+ lighten: 'lighten',
33
+ 'colour-dodge': 'colour-dodge',
34
+ 'color-dodge': 'colour-dodge',
35
+ 'colour-burn': 'colour-burn',
36
+ 'color-burn': 'colour-burn',
37
+ 'hard-light': 'hard-light',
38
+ 'soft-light': 'soft-light',
39
+ difference: 'difference',
40
+ exclusion: 'exclusion'
41
+ };
42
+
43
+ /**
44
+ * Composite image(s) over the processed (resized, extracted etc.) image.
45
+ *
46
+ * The images to composite must be the same size or smaller than the processed image.
47
+ * If both `top` and `left` options are provided, they take precedence over `gravity`.
48
+ *
49
+ * Other operations in the same processing pipeline (e.g. resize, rotate, flip,
50
+ * flop, extract) will always be applied to the input image before composition.
51
+ *
52
+ * The `blend` option can be one of `clear`, `source`, `over`, `in`, `out`, `atop`,
53
+ * `dest`, `dest-over`, `dest-in`, `dest-out`, `dest-atop`,
54
+ * `xor`, `add`, `saturate`, `multiply`, `screen`, `overlay`, `darken`, `lighten`,
55
+ * `colour-dodge`, `color-dodge`, `colour-burn`,`color-burn`,
56
+ * `hard-light`, `soft-light`, `difference`, `exclusion`.
57
+ *
58
+ * More information about blend modes can be found at
59
+ * https://www.libvips.org/API/current/enum.BlendMode.html
60
+ * and https://www.cairographics.org/operators/
61
+ *
62
+ * @since 0.22.0
63
+ *
64
+ * @example
65
+ * await sharp(background)
66
+ * .composite([
67
+ * { input: layer1, gravity: 'northwest' },
68
+ * { input: layer2, gravity: 'southeast' },
69
+ * ])
70
+ * .toFile('combined.png');
71
+ *
72
+ * @example
73
+ * const output = await sharp('input.gif', { animated: true })
74
+ * .composite([
75
+ * { input: 'overlay.png', tile: true, blend: 'saturate' }
76
+ * ])
77
+ * .toBuffer();
78
+ *
79
+ * @example
80
+ * sharp('input.png')
81
+ * .rotate(180)
82
+ * .resize(300)
83
+ * .flatten( { background: '#ff6600' } )
84
+ * .composite([{ input: 'overlay.png', gravity: 'southeast' }])
85
+ * .sharpen()
86
+ * .withMetadata()
87
+ * .webp( { quality: 90 } )
88
+ * .toBuffer()
89
+ * .then(function(outputBuffer) {
90
+ * // outputBuffer contains upside down, 300px wide, alpha channel flattened
91
+ * // onto orange background, composited with overlay.png with SE gravity,
92
+ * // sharpened, with metadata, 90% quality WebP image data. Phew!
93
+ * });
94
+ *
95
+ * @param {Object[]} images - Ordered list of images to composite
96
+ * @param {Buffer|String} [images[].input] - Buffer containing image data, String containing the path to an image file, or Create object (see below)
97
+ * @param {Object} [images[].input.create] - describes a blank overlay to be created.
98
+ * @param {Number} [images[].input.create.width]
99
+ * @param {Number} [images[].input.create.height]
100
+ * @param {Number} [images[].input.create.channels] - 3-4
101
+ * @param {String|Object} [images[].input.create.background] - parsed by the [color](https://www.npmjs.org/package/color) module to extract values for red, green, blue and alpha.
102
+ * @param {Object} [images[].input.text] - describes a new text image to be created.
103
+ * @param {string} [images[].input.text.text] - text to render as a UTF-8 string. It can contain Pango markup, for example `<i>Le</i>Monde`.
104
+ * @param {string} [images[].input.text.font] - font name to render with.
105
+ * @param {string} [images[].input.text.fontfile] - absolute filesystem path to a font file that can be used by `font`.
106
+ * @param {number} [images[].input.text.width=0] - integral number of pixels to word-wrap at. Lines of text wider than this will be broken at word boundaries.
107
+ * @param {number} [images[].input.text.height=0] - integral number of pixels high. When defined, `dpi` will be ignored and the text will automatically fit the pixel resolution defined by `width` and `height`. Will be ignored if `width` is not specified or set to 0.
108
+ * @param {string} [images[].input.text.align='left'] - text alignment (`'left'`, `'centre'`, `'center'`, `'right'`).
109
+ * @param {boolean} [images[].input.text.justify=false] - set this to true to apply justification to the text.
110
+ * @param {number} [images[].input.text.dpi=72] - the resolution (size) at which to render the text. Does not take effect if `height` is specified.
111
+ * @param {boolean} [images[].input.text.rgba=false] - set this to true to enable RGBA output. This is useful for colour emoji rendering, or support for Pango markup features like `<span foreground="red">Red!</span>`.
112
+ * @param {number} [images[].input.text.spacing=0] - text line height in points. Will use the font line height if none is specified.
113
+ * @param {Boolean} [images[].autoOrient=false] - set to true to use EXIF orientation data, if present, to orient the image.
114
+ * @param {String} [images[].blend='over'] - how to blend this image with the image below.
115
+ * @param {String} [images[].gravity='centre'] - gravity at which to place the overlay.
116
+ * @param {Number} [images[].top] - the pixel offset from the top edge.
117
+ * @param {Number} [images[].left] - the pixel offset from the left edge.
118
+ * @param {Boolean} [images[].tile=false] - set to true to repeat the overlay image across the entire image with the given `gravity`.
119
+ * @param {Boolean} [images[].premultiplied=false] - set to true to avoid premultiplying the image below. Equivalent to the `--premultiplied` vips option.
120
+ * @param {Number} [images[].density=72] - number representing the DPI for vector overlay image.
121
+ * @param {Object} [images[].raw] - describes overlay when using raw pixel data.
122
+ * @param {Number} [images[].raw.width]
123
+ * @param {Number} [images[].raw.height]
124
+ * @param {Number} [images[].raw.channels]
125
+ * @param {boolean} [images[].animated=false] - Set to `true` to read all frames/pages of an animated image.
126
+ * @param {string} [images[].failOn='warning'] - @see {@link /api-constructor/ constructor parameters}
127
+ * @param {number|boolean} [images[].limitInputPixels=268402689] - @see {@link /api-constructor/ constructor parameters}
128
+ * @param {number|boolean} [images[].limitInputChannels=5] - @see {@link /api-constructor/ constructor parameters}
129
+ * @returns {Sharp}
130
+ * @throws {Error} Invalid parameters
131
+ */
132
+ function composite (images) {
133
+ if (!Array.isArray(images)) {
134
+ throw is.invalidParameterError('images to composite', 'array', images);
135
+ }
136
+ this.options.composite = images.map(image => {
137
+ if (!is.object(image)) {
138
+ throw is.invalidParameterError('image to composite', 'object', image);
139
+ }
140
+ const inputOptions = this._inputOptionsFromObject(image);
141
+ const composite = {
142
+ input: this._createInputDescriptor(image.input, inputOptions, { allowStream: false }),
143
+ blend: 'over',
144
+ tile: false,
145
+ left: 0,
146
+ top: 0,
147
+ hasOffset: false,
148
+ gravity: 0,
149
+ premultiplied: false
150
+ };
151
+ if (is.defined(image.blend)) {
152
+ if (is.string(blend[image.blend])) {
153
+ composite.blend = blend[image.blend];
154
+ } else {
155
+ throw is.invalidParameterError('blend', 'valid blend name', image.blend);
156
+ }
157
+ }
158
+ if (is.defined(image.tile)) {
159
+ if (is.bool(image.tile)) {
160
+ composite.tile = image.tile;
161
+ } else {
162
+ throw is.invalidParameterError('tile', 'boolean', image.tile);
163
+ }
164
+ }
165
+ if (is.defined(image.left)) {
166
+ if (is.integer(image.left)) {
167
+ composite.left = image.left;
168
+ } else {
169
+ throw is.invalidParameterError('left', 'integer', image.left);
170
+ }
171
+ }
172
+ if (is.defined(image.top)) {
173
+ if (is.integer(image.top)) {
174
+ composite.top = image.top;
175
+ } else {
176
+ throw is.invalidParameterError('top', 'integer', image.top);
177
+ }
178
+ }
179
+ if (is.defined(image.top) !== is.defined(image.left)) {
180
+ throw new Error('Expected both left and top to be set');
181
+ } else {
182
+ composite.hasOffset = is.integer(image.top) && is.integer(image.left);
183
+ }
184
+ if (is.defined(image.gravity)) {
185
+ if (is.integer(image.gravity) && is.inRange(image.gravity, 0, 8)) {
186
+ composite.gravity = image.gravity;
187
+ } else if (is.string(image.gravity) && is.integer(this.constructor.gravity[image.gravity])) {
188
+ composite.gravity = this.constructor.gravity[image.gravity];
189
+ } else {
190
+ throw is.invalidParameterError('gravity', 'valid gravity', image.gravity);
191
+ }
192
+ }
193
+ if (is.defined(image.premultiplied)) {
194
+ if (is.bool(image.premultiplied)) {
195
+ composite.premultiplied = image.premultiplied;
196
+ } else {
197
+ throw is.invalidParameterError('premultiplied', 'boolean', image.premultiplied);
198
+ }
199
+ }
200
+ return composite;
201
+ });
202
+ return this;
203
+ }
204
+
205
+ /**
206
+ * Decorate the Sharp prototype with composite-related functions.
207
+ * @module Sharp
208
+ * @private
209
+ */
210
+ module.exports = (Sharp) => {
211
+ Sharp.prototype.composite = composite;
212
+ Sharp.blend = blend;
213
+ };