@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,1788 @@
1
+ /*!
2
+ Copyright 2013 Lovell Fuller and others.
3
+ SPDX-License-Identifier: Apache-2.0
4
+ */
5
+
6
+ const path = require('node:path');
7
+ const is = require('./is.cjs');
8
+ const sharp = require('./sharp.cjs');
9
+
10
+ const formats = new Map([
11
+ ['heic', 'heif'],
12
+ ['heif', 'heif'],
13
+ ['avif', 'avif'],
14
+ ['jpeg', 'jpeg'],
15
+ ['jpg', 'jpeg'],
16
+ ['jpe', 'jpeg'],
17
+ ['tile', 'tile'],
18
+ ['dz', 'tile'],
19
+ ['png', 'png'],
20
+ ['raw', 'raw'],
21
+ ['tiff', 'tiff'],
22
+ ['tif', 'tiff'],
23
+ ['webp', 'webp'],
24
+ ['gif', 'gif'],
25
+ ['jp2', 'jp2'],
26
+ ['jpx', 'jp2'],
27
+ ['j2k', 'jp2'],
28
+ ['j2c', 'jp2'],
29
+ ['jxl', 'jxl']
30
+ ]);
31
+
32
+ const jp2Regex = /\.(jp[2x]|j2[kc])$/i;
33
+
34
+ const errJp2Save = () => new Error('JP2 output requires libvips with support for OpenJPEG');
35
+
36
+ const bitdepthFromColourCount = (colours) => 1 << 31 - Math.clz32(Math.ceil(Math.log2(colours)));
37
+
38
+ /**
39
+ * Write output image data to a file.
40
+ *
41
+ * If an explicit output format is not selected, it will be inferred from the extension,
42
+ * with JPEG, PNG, WebP, AVIF, TIFF, GIF, DZI, and libvips' V format supported.
43
+ * Note that raw pixel data is only supported for buffer output.
44
+ *
45
+ * By default all metadata will be removed, which includes EXIF-based orientation.
46
+ * See {@link #withmetadata withMetadata} for control over this.
47
+ *
48
+ * The caller is responsible for ensuring directory structures and permissions exist.
49
+ *
50
+ * A `Promise` is returned when `callback` is not provided.
51
+ *
52
+ * @example
53
+ * sharp(input)
54
+ * .toFile('output.png', (err, info) => { ... });
55
+ *
56
+ * @example
57
+ * sharp(input)
58
+ * .toFile('output.png')
59
+ * .then(info => { ... })
60
+ * .catch(err => { ... });
61
+ *
62
+ * @param {string} fileOut - the path to write the image data to.
63
+ * @param {Function} [callback] - called on completion with two arguments `(err, info)`.
64
+ * `info` contains the output image `format`, `size` (bytes), `width`, `height`,
65
+ * `channels` and `premultiplied` (indicating if premultiplication was used).
66
+ * When using a crop strategy also contains `cropOffsetLeft` and `cropOffsetTop`.
67
+ * When using the attention crop strategy also contains `attentionX` and `attentionY`, the focal point of the cropped region.
68
+ * Animated output will also contain `pageHeight` and `pages`.
69
+ * May also contain `textAutofitDpi` (dpi the font was rendered at) if image was created from text.
70
+ * @returns {Promise<Object>} - when no callback is provided
71
+ * @throws {Error} Invalid parameters
72
+ */
73
+ function toFile (fileOut, callback) {
74
+ let err;
75
+ if (!is.string(fileOut)) {
76
+ err = new Error('Missing output file path');
77
+ } else if (is.string(this.options.input.file) && path.resolve(this.options.input.file) === path.resolve(fileOut)) {
78
+ err = new Error('Cannot use same file for input and output');
79
+ } else if (jp2Regex.test(path.extname(fileOut)) && !this.constructor.format.jp2.output.file) {
80
+ err = errJp2Save();
81
+ }
82
+ if (err) {
83
+ if (is.fn(callback)) {
84
+ callback(err);
85
+ } else {
86
+ return Promise.reject(err);
87
+ }
88
+ } else {
89
+ this.options.fileOut = fileOut;
90
+ const stack = Error();
91
+ return this._pipeline(callback, stack);
92
+ }
93
+ return this;
94
+ }
95
+
96
+ /**
97
+ * Write output to a Buffer.
98
+ * JPEG, PNG, WebP, AVIF, TIFF, GIF and raw pixel data output are supported.
99
+ *
100
+ * Use {@link #toformat toFormat} or one of the format-specific functions such as {@link #jpeg jpeg}, {@link #png png} etc. to set the output format.
101
+ *
102
+ * If no explicit format is set, the output format will match the input image, except SVG input which becomes PNG output.
103
+ *
104
+ * By default all metadata will be removed, which includes EXIF-based orientation.
105
+ * See {@link #withmetadata withMetadata} for control over this.
106
+ *
107
+ * `callback`, if present, gets three arguments `(err, data, info)` where:
108
+ * - `err` is an error, if any.
109
+ * - `data` is the output image data.
110
+ * - `info` contains the output image `format`, `size` (bytes), `width`, `height`,
111
+ * `channels` and `premultiplied` (indicating if premultiplication was used).
112
+ * When using a crop strategy also contains `cropOffsetLeft` and `cropOffsetTop`.
113
+ * Animated output will also contain `pageHeight` and `pages`.
114
+ * May also contain `textAutofitDpi` (dpi the font was rendered at) if image was created from text.
115
+ *
116
+ * The underlying `ArrayBuffer` may be marked as non-transferable by some JavaScript runtimes.
117
+ * Use {@link #touint8array toUint8Array} for a guaranteed transferable `ArrayBuffer`.
118
+ *
119
+ * A `Promise` is returned when `callback` is not provided.
120
+ *
121
+ * @example
122
+ * const data = await sharp(input)
123
+ * .png()
124
+ * .toBuffer();
125
+ *
126
+ * @example
127
+ * const { data, info } = await sharp(input)
128
+ * .png()
129
+ * .toBuffer({ resolveWithObject: true });
130
+ *
131
+ * @example
132
+ * const { data, info } = await sharp('my-image.jpg')
133
+ * // output the raw pixels
134
+ * .raw()
135
+ * .toBuffer({ resolveWithObject: true });
136
+ *
137
+ * // create a more type safe way to work with the raw pixel data
138
+ * // this will not copy the data, instead it will change `data`s underlying ArrayBuffer
139
+ * // so `data` and `pixelArray` point to the same memory location
140
+ * const pixelArray = new Uint8ClampedArray(data.buffer);
141
+ *
142
+ * // When you are done changing the pixelArray, sharp takes the `pixelArray` as an input
143
+ * const { width, height, channels } = info;
144
+ * await sharp(pixelArray, { raw: { width, height, channels } })
145
+ * .toFile('my-changed-image.jpg');
146
+ *
147
+ * @param {Object} [options]
148
+ * @param {boolean} [options.resolveWithObject] Resolve the Promise with an Object containing `data` and `info` properties instead of resolving only with `data`.
149
+ * @param {Function} [callback]
150
+ * @returns {Promise<Buffer>} - when no callback is provided
151
+ */
152
+ function toBuffer (options, callback) {
153
+ if (is.object(options)) {
154
+ this._setBooleanOption('resolveWithObject', options.resolveWithObject);
155
+ } else if (this.options.resolveWithObject) {
156
+ this.options.resolveWithObject = false;
157
+ }
158
+ this.options.fileOut = '';
159
+ const stack = Error();
160
+ return this._pipeline(is.fn(options) ? options : callback, stack);
161
+ }
162
+
163
+ /**
164
+ * Write output to a `Uint8Array` backed by a transferable `ArrayBuffer`.
165
+ * JPEG, PNG, WebP, AVIF, TIFF, GIF and raw pixel data output are supported.
166
+ *
167
+ * Use {@link #toformat toFormat} or one of the format-specific functions such as {@link #jpeg jpeg}, {@link #png png} etc. to set the output format.
168
+ *
169
+ * If no explicit format is set, the output format will match the input image, except SVG input which becomes PNG output.
170
+ *
171
+ * By default all metadata will be removed, which includes EXIF-based orientation.
172
+ * See {@link #keepexif keepExif} and similar methods for control over this.
173
+ *
174
+ * Resolves with an `Object` containing:
175
+ * - `data` is the output image as a `Uint8Array` backed by a transferable `ArrayBuffer`.
176
+ * - `info` contains properties relating to the output image such as `width` and `height`.
177
+ *
178
+ * @since v0.35.0
179
+ *
180
+ * @example
181
+ * const { data, info } = await sharp(input).toUint8Array();
182
+ *
183
+ * @example
184
+ * const { data } = await sharp(input)
185
+ * .avif()
186
+ * .toUint8Array();
187
+ * const base64String = data.toBase64();
188
+ *
189
+ * @returns {Promise<{ data: Uint8Array, info: Object }>}
190
+ */
191
+ function toUint8Array () {
192
+ this.options.resolveWithObject = true;
193
+ this.options.typedArrayOut = true;
194
+ const stack = Error();
195
+ return this._pipeline(null, stack);
196
+ }
197
+
198
+ /**
199
+ * Set output density (DPI) in EXIF metadata.
200
+ *
201
+ * @since 0.35.0
202
+ *
203
+ * @example
204
+ * const data = await sharp(input)
205
+ * .withDensity(96)
206
+ * .toBuffer();
207
+ *
208
+ * @param {number} density Number of pixels per inch (DPI).
209
+ * @returns {Sharp}
210
+ * @throws {Error} Invalid parameters
211
+ */
212
+ function withDensity (density) {
213
+ if (is.number(density) && density > 0) {
214
+ this.options.withMetadataDensity = density;
215
+ } else {
216
+ throw is.invalidParameterError('density', 'positive number', density);
217
+ }
218
+ return this.keepExif();
219
+ }
220
+
221
+ /**
222
+ * Keep all EXIF metadata from the input image in the output image.
223
+ *
224
+ * EXIF metadata is unsupported for TIFF output.
225
+ *
226
+ * @since 0.33.0
227
+ *
228
+ * @example
229
+ * const outputWithExif = await sharp(inputWithExif)
230
+ * .keepExif()
231
+ * .toBuffer();
232
+ *
233
+ * @returns {Sharp}
234
+ */
235
+ function keepExif () {
236
+ this.options.keepMetadata |= 0b00001;
237
+ return this;
238
+ }
239
+
240
+ /**
241
+ * Set EXIF metadata in the output image, ignoring any EXIF in the input image.
242
+ *
243
+ * @since 0.33.0
244
+ *
245
+ * @example
246
+ * const dataWithExif = await sharp(input)
247
+ * .withExif({
248
+ * IFD0: {
249
+ * Copyright: 'The National Gallery'
250
+ * },
251
+ * IFD3: {
252
+ * GPSLatitudeRef: 'N',
253
+ * GPSLatitude: '51/1 30/1 3230/100',
254
+ * GPSLongitudeRef: 'W',
255
+ * GPSLongitude: '0/1 7/1 4366/100'
256
+ * }
257
+ * })
258
+ * .toBuffer();
259
+ *
260
+ * @param {Object<string, Object<string, string>>} exif Object keyed by IFD0, IFD1 etc. of key/value string pairs to write as EXIF data.
261
+ * @returns {Sharp}
262
+ * @throws {Error} Invalid parameters
263
+ */
264
+ function withExif (exif) {
265
+ if (is.object(exif)) {
266
+ for (const [ifd, entries] of Object.entries(exif)) {
267
+ if (is.object(entries)) {
268
+ for (const [k, v] of Object.entries(entries)) {
269
+ if (is.string(v)) {
270
+ this.options.withExif[`exif-${ifd.toLowerCase()}-${k}`] = v;
271
+ } else {
272
+ throw is.invalidParameterError(`${ifd}.${k}`, 'string', v);
273
+ }
274
+ }
275
+ } else {
276
+ throw is.invalidParameterError(ifd, 'object', entries);
277
+ }
278
+ }
279
+ } else {
280
+ throw is.invalidParameterError('exif', 'object', exif);
281
+ }
282
+ this.options.withExifMerge = false;
283
+ return this.keepExif();
284
+ }
285
+
286
+ /**
287
+ * Update EXIF metadata from the input image in the output image.
288
+ *
289
+ * @since 0.33.0
290
+ *
291
+ * @example
292
+ * const dataWithMergedExif = await sharp(inputWithExif)
293
+ * .withExifMerge({
294
+ * IFD0: {
295
+ * Copyright: 'The National Gallery'
296
+ * }
297
+ * })
298
+ * .toBuffer();
299
+ *
300
+ * @param {Object<string, Object<string, string>>} exif Object keyed by IFD0, IFD1 etc. of key/value string pairs to write as EXIF data.
301
+ * @returns {Sharp}
302
+ * @throws {Error} Invalid parameters
303
+ */
304
+ function withExifMerge (exif) {
305
+ this.withExif(exif);
306
+ this.options.withExifMerge = true;
307
+ return this;
308
+ }
309
+
310
+ /**
311
+ * Keep ICC profile from the input image in the output image.
312
+ *
313
+ * When input and output colour spaces differ, use with {@link /api-colour/#tocolourspace toColourspace} and optionally {@link /api-colour/#pipelinecolourspace pipelineColourspace}.
314
+ *
315
+ * @since 0.33.0
316
+ *
317
+ * @example
318
+ * const outputWithIccProfile = await sharp(inputWithIccProfile)
319
+ * .keepIccProfile()
320
+ * .toBuffer();
321
+ *
322
+ * @example
323
+ * const cmykOutputWithIccProfile = await sharp(cmykInputWithIccProfile)
324
+ * .pipelineColourspace('cmyk')
325
+ * .toColourspace('cmyk')
326
+ * .keepIccProfile()
327
+ * .toBuffer();
328
+ *
329
+ * @returns {Sharp}
330
+ */
331
+ function keepIccProfile () {
332
+ this.options.keepMetadata |= 0b01000;
333
+ return this;
334
+ }
335
+
336
+ /**
337
+ * Transform using an ICC profile and attach to the output image.
338
+ *
339
+ * This can either be an absolute filesystem path or
340
+ * built-in profile name (`srgb`, `p3`, `cmyk`).
341
+ *
342
+ * @since 0.33.0
343
+ *
344
+ * @example
345
+ * const outputWithP3 = await sharp(input)
346
+ * .withIccProfile('p3')
347
+ * .toBuffer();
348
+ *
349
+ * @param {string} icc - Absolute filesystem path to output ICC profile or built-in profile name (srgb, p3, cmyk).
350
+ * @param {Object} [options]
351
+ * @param {number} [options.attach=true] Should the ICC profile be included in the output image metadata?
352
+ * @returns {Sharp}
353
+ * @throws {Error} Invalid parameters
354
+ */
355
+ function withIccProfile (icc, options) {
356
+ if (is.string(icc)) {
357
+ this.options.withIccProfile = icc;
358
+ } else {
359
+ throw is.invalidParameterError('icc', 'string', icc);
360
+ }
361
+ this.keepIccProfile();
362
+ if (is.object(options)) {
363
+ if (is.defined(options.attach)) {
364
+ if (is.bool(options.attach)) {
365
+ if (!options.attach) {
366
+ this.options.keepMetadata &= ~0b01000;
367
+ }
368
+ } else {
369
+ throw is.invalidParameterError('attach', 'boolean', options.attach);
370
+ }
371
+ }
372
+ }
373
+ return this;
374
+ }
375
+
376
+ /**
377
+ * If the input contains gain map metadata, attempt to process the image and gain map separately,
378
+ * recombining them into a single output image.
379
+ *
380
+ * This approach is faster and should produce better results than {@link #withgainmap withGainMap},
381
+ * however not all operations are supported.
382
+ *
383
+ * Only JPEG input and output are supported.
384
+ * JPEG output options other than `quality` are ignored.
385
+ *
386
+ * This feature is experimental and the API may change.
387
+ *
388
+ * @since 0.35.0
389
+ *
390
+ * @example
391
+ * const outputWithResizedGainMap = await sharp(inputWithGainMap)
392
+ * .keepGainMap()
393
+ * .resize({ width: 64 })
394
+ * .toBuffer();
395
+ *
396
+ * @returns {Sharp}
397
+ */
398
+ function keepGainMap() {
399
+ this.options.keepGainMap = true;
400
+ this.options.withGainMap = false;
401
+ this.options.keepMetadata |= 0b100000;
402
+ return this;
403
+ }
404
+
405
+ /**
406
+ * If the input contains gain map metadata, use it to convert the main image to HDR (High Dynamic Range) before further processing.
407
+ * The input gain map is discarded.
408
+ *
409
+ * If the output is JPEG, generate and attach a new ISO 21496-1 gain map.
410
+ * JPEG output options other than `quality` are ignored.
411
+ *
412
+ * This feature is experimental and the API may change.
413
+ *
414
+ * @since 0.35.0
415
+ *
416
+ * @example
417
+ * const outputWithRegeneratedGainMap = await sharp(inputWithGainMap)
418
+ * .withGainMap()
419
+ * .toBuffer();
420
+ *
421
+ * @returns {Sharp}
422
+ */
423
+ function withGainMap() {
424
+ this.options.withGainMap = true;
425
+ this.options.keepGainMap = false;
426
+ this.options.colourspace = 'scrgb';
427
+ return this;
428
+ }
429
+
430
+ /**
431
+ * Keep XMP metadata from the input image in the output image.
432
+ *
433
+ * @since 0.34.3
434
+ *
435
+ * @example
436
+ * const outputWithXmp = await sharp(inputWithXmp)
437
+ * .keepXmp()
438
+ * .toBuffer();
439
+ *
440
+ * @returns {Sharp}
441
+ */
442
+ function keepXmp () {
443
+ this.options.keepMetadata |= 0b00010;
444
+ return this;
445
+ }
446
+
447
+ /**
448
+ * Set XMP metadata in the output image.
449
+ *
450
+ * Supported by PNG, JPEG, WebP, and TIFF output.
451
+ *
452
+ * @since 0.34.3
453
+ *
454
+ * @example
455
+ * const xmpString = `
456
+ * <?xml version="1.0"?>
457
+ * <x:xmpmeta xmlns:x="adobe:ns:meta/">
458
+ * <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
459
+ * <rdf:Description rdf:about="" xmlns:dc="http://purl.org/dc/elements/1.1/">
460
+ * <dc:creator><rdf:Seq><rdf:li>John Doe</rdf:li></rdf:Seq></dc:creator>
461
+ * </rdf:Description>
462
+ * </rdf:RDF>
463
+ * </x:xmpmeta>`;
464
+ *
465
+ * const data = await sharp(input)
466
+ * .withXmp(xmpString)
467
+ * .toBuffer();
468
+ *
469
+ * @param {string} xmp String containing XMP metadata to be embedded in the output image.
470
+ * @returns {Sharp}
471
+ * @throws {Error} Invalid parameters
472
+ */
473
+ function withXmp (xmp) {
474
+ if (is.string(xmp) && xmp.length > 0) {
475
+ this.options.withXmp = xmp;
476
+ this.options.keepMetadata |= 0b00010;
477
+ } else {
478
+ throw is.invalidParameterError('xmp', 'non-empty string', xmp);
479
+ }
480
+ return this;
481
+ }
482
+
483
+ /**
484
+ * Keep all metadata (EXIF, ICC, XMP, IPTC) from the input image in the output image.
485
+ *
486
+ * The default behaviour, when `keepMetadata` is not used, is to convert to the device-independent
487
+ * sRGB colour space and strip all metadata, including the removal of any ICC profile.
488
+ *
489
+ * @since 0.33.0
490
+ *
491
+ * @example
492
+ * const outputWithMetadata = await sharp(inputWithMetadata)
493
+ * .keepMetadata()
494
+ * .toBuffer();
495
+ *
496
+ * @returns {Sharp}
497
+ */
498
+ function keepMetadata () {
499
+ this.options.keepMetadata |= 0b11111;
500
+ return this;
501
+ }
502
+
503
+ /**
504
+ * Keep most metadata (EXIF, XMP, IPTC) from the input image in the output image.
505
+ *
506
+ * This will also convert to and add a web-friendly sRGB ICC profile if appropriate.
507
+ *
508
+ * Allows orientation and density to be set or updated.
509
+ *
510
+ * @example
511
+ * const outputSrgbWithMetadata = await sharp(inputRgbWithMetadata)
512
+ * .withMetadata()
513
+ * .toBuffer();
514
+ *
515
+ * @example
516
+ * // Set output metadata to 96 DPI
517
+ * const data = await sharp(input)
518
+ * .withMetadata({ density: 96 })
519
+ * .toBuffer();
520
+ *
521
+ * @param {Object} [options]
522
+ * @param {number} [options.orientation] Used to update the EXIF `Orientation` tag, integer between 1 and 8.
523
+ * @param {number} [options.density] Number of pixels per inch (DPI).
524
+ * @returns {Sharp}
525
+ * @throws {Error} Invalid parameters
526
+ */
527
+ function withMetadata (options) {
528
+ this.keepMetadata();
529
+ this.withIccProfile('srgb');
530
+ if (is.object(options)) {
531
+ if (is.defined(options.orientation)) {
532
+ if (is.integer(options.orientation) && is.inRange(options.orientation, 1, 8)) {
533
+ this.options.withMetadataOrientation = options.orientation;
534
+ } else {
535
+ throw is.invalidParameterError('orientation', 'integer between 1 and 8', options.orientation);
536
+ }
537
+ }
538
+ if (is.defined(options.density)) {
539
+ if (is.number(options.density) && options.density > 0) {
540
+ this.options.withMetadataDensity = options.density;
541
+ } else {
542
+ throw is.invalidParameterError('density', 'positive number', options.density);
543
+ }
544
+ }
545
+ if (is.defined(options.icc)) {
546
+ this.withIccProfile(options.icc);
547
+ }
548
+ if (is.defined(options.exif)) {
549
+ this.withExifMerge(options.exif);
550
+ }
551
+ }
552
+ return this;
553
+ }
554
+
555
+ /**
556
+ * Force output to a given format.
557
+ *
558
+ * @example
559
+ * // Convert any input to PNG output
560
+ * const data = await sharp(input)
561
+ * .toFormat('png')
562
+ * .toBuffer();
563
+ *
564
+ * @param {(string|Object)} format - as a string or an Object with an 'id' attribute
565
+ * @param {Object} options - output options
566
+ * @returns {Sharp}
567
+ * @throws {Error} unsupported format or options
568
+ */
569
+ function toFormat (format, options) {
570
+ const actualFormat = formats.get((is.object(format) && is.string(format.id) ? format.id : format).toLowerCase());
571
+ if (!actualFormat) {
572
+ throw is.invalidParameterError('format', `one of: ${[...formats.keys()].join(', ')}`, format);
573
+ }
574
+ return this[actualFormat](options);
575
+ }
576
+
577
+ /**
578
+ * Use these JPEG options for output image.
579
+ *
580
+ * @example
581
+ * // Convert any input to very high quality JPEG output
582
+ * const data = await sharp(input)
583
+ * .jpeg({
584
+ * quality: 100,
585
+ * chromaSubsampling: '4:4:4'
586
+ * })
587
+ * .toBuffer();
588
+ *
589
+ * @example
590
+ * // Use mozjpeg to reduce output JPEG file size (slower)
591
+ * const data = await sharp(input)
592
+ * .jpeg({ mozjpeg: true })
593
+ * .toBuffer();
594
+ *
595
+ * @param {Object} [options] - output options
596
+ * @param {number} [options.quality=80] - quality, integer 1-100
597
+ * @param {boolean} [options.progressive=false] - use progressive (interlace) scan
598
+ * @param {string} [options.chromaSubsampling='4:2:0'] - set to '4:4:4' to prevent chroma subsampling otherwise defaults to '4:2:0' chroma subsampling
599
+ * @param {boolean} [options.optimiseCoding=true] - optimise Huffman coding tables
600
+ * @param {boolean} [options.optimizeCoding=true] - alternative spelling of optimiseCoding
601
+ * @param {boolean} [options.mozjpeg=false] - use mozjpeg defaults, equivalent to `{ trellisQuantisation: true, overshootDeringing: true, optimiseScans: true, quantisationTable: 3 }`
602
+ * @param {boolean} [options.trellisQuantisation=false] - apply trellis quantisation
603
+ * @param {boolean} [options.overshootDeringing=false] - apply overshoot deringing
604
+ * @param {boolean} [options.optimiseScans=false] - optimise progressive scans, forces progressive
605
+ * @param {boolean} [options.optimizeScans=false] - alternative spelling of optimiseScans
606
+ * @param {number} [options.quantisationTable=0] - quantization table to use, integer 0-8
607
+ * @param {number} [options.quantizationTable=0] - alternative spelling of quantisationTable
608
+ * @param {boolean} [options.force=true] - force JPEG output, otherwise attempt to use input format
609
+ * @returns {Sharp}
610
+ * @throws {Error} Invalid options
611
+ */
612
+ function jpeg (options) {
613
+ if (is.object(options)) {
614
+ if (is.defined(options.quality)) {
615
+ if (is.integer(options.quality) && is.inRange(options.quality, 1, 100)) {
616
+ this.options.jpegQuality = options.quality;
617
+ } else {
618
+ throw is.invalidParameterError('quality', 'integer between 1 and 100', options.quality);
619
+ }
620
+ }
621
+ if (is.defined(options.progressive)) {
622
+ this._setBooleanOption('jpegProgressive', options.progressive);
623
+ }
624
+ if (is.defined(options.chromaSubsampling)) {
625
+ if (is.string(options.chromaSubsampling) && is.inArray(options.chromaSubsampling, ['4:2:0', '4:4:4'])) {
626
+ this.options.jpegChromaSubsampling = options.chromaSubsampling;
627
+ } else {
628
+ throw is.invalidParameterError('chromaSubsampling', 'one of: 4:2:0, 4:4:4', options.chromaSubsampling);
629
+ }
630
+ }
631
+ const optimiseCoding = is.bool(options.optimizeCoding) ? options.optimizeCoding : options.optimiseCoding;
632
+ if (is.defined(optimiseCoding)) {
633
+ this._setBooleanOption('jpegOptimiseCoding', optimiseCoding);
634
+ }
635
+ if (is.defined(options.mozjpeg)) {
636
+ if (is.bool(options.mozjpeg)) {
637
+ if (options.mozjpeg) {
638
+ this.options.jpegTrellisQuantisation = true;
639
+ this.options.jpegOvershootDeringing = true;
640
+ this.options.jpegOptimiseScans = true;
641
+ this.options.jpegProgressive = true;
642
+ this.options.jpegQuantisationTable = 3;
643
+ }
644
+ } else {
645
+ throw is.invalidParameterError('mozjpeg', 'boolean', options.mozjpeg);
646
+ }
647
+ }
648
+ const trellisQuantisation = is.bool(options.trellisQuantization) ? options.trellisQuantization : options.trellisQuantisation;
649
+ if (is.defined(trellisQuantisation)) {
650
+ this._setBooleanOption('jpegTrellisQuantisation', trellisQuantisation);
651
+ }
652
+ if (is.defined(options.overshootDeringing)) {
653
+ this._setBooleanOption('jpegOvershootDeringing', options.overshootDeringing);
654
+ }
655
+ const optimiseScans = is.bool(options.optimizeScans) ? options.optimizeScans : options.optimiseScans;
656
+ if (is.defined(optimiseScans)) {
657
+ this._setBooleanOption('jpegOptimiseScans', optimiseScans);
658
+ if (optimiseScans) {
659
+ this.options.jpegProgressive = true;
660
+ }
661
+ }
662
+ const quantisationTable = is.number(options.quantizationTable) ? options.quantizationTable : options.quantisationTable;
663
+ if (is.defined(quantisationTable)) {
664
+ if (is.integer(quantisationTable) && is.inRange(quantisationTable, 0, 8)) {
665
+ this.options.jpegQuantisationTable = quantisationTable;
666
+ } else {
667
+ throw is.invalidParameterError('quantisationTable', 'integer between 0 and 8', quantisationTable);
668
+ }
669
+ }
670
+ }
671
+ return this._updateFormatOut('jpeg', options);
672
+ }
673
+
674
+ /**
675
+ * Use these PNG options for output image.
676
+ *
677
+ * By default, PNG output is full colour at 8 bits per pixel.
678
+ *
679
+ * Indexed PNG input at 1, 2 or 4 bits per pixel is converted to 8 bits per pixel.
680
+ * Set `palette` to `true` for slower, indexed PNG output.
681
+ *
682
+ * For 16 bits per pixel output, convert to `rgb16` via
683
+ * {@link /api-colour/#tocolourspace toColourspace}.
684
+ *
685
+ * @example
686
+ * // Convert any input to full colour PNG output
687
+ * const data = await sharp(input)
688
+ * .png()
689
+ * .toBuffer();
690
+ *
691
+ * @example
692
+ * // Convert any input to indexed PNG output (slower)
693
+ * const data = await sharp(input)
694
+ * .png({ palette: true })
695
+ * .toBuffer();
696
+ *
697
+ * @example
698
+ * // Output 16 bits per pixel RGB(A)
699
+ * const data = await sharp(input)
700
+ * .toColourspace('rgb16')
701
+ * .png()
702
+ * .toBuffer();
703
+ *
704
+ * @param {Object} [options]
705
+ * @param {boolean} [options.progressive=false] - use progressive (interlace) scan
706
+ * @param {number} [options.compressionLevel=6] - zlib compression level, 0 (fastest, largest) to 9 (slowest, smallest)
707
+ * @param {boolean} [options.adaptiveFiltering=false] - use adaptive row filtering
708
+ * @param {boolean} [options.palette=false] - quantise to a palette-based image with alpha transparency support
709
+ * @param {number} [options.quality=100] - use the lowest number of colours needed to achieve given quality, sets `palette` to `true`
710
+ * @param {number} [options.effort=7] - CPU effort, between 1 (fastest) and 10 (slowest), sets `palette` to `true`
711
+ * @param {number} [options.colours=256] - maximum number of palette entries, sets `palette` to `true`
712
+ * @param {number} [options.colors=256] - alternative spelling of `options.colours`, sets `palette` to `true`
713
+ * @param {number} [options.dither=1.0] - level of Floyd-Steinberg error diffusion, sets `palette` to `true`
714
+ * @param {boolean} [options.force=true] - force PNG output, otherwise attempt to use input format
715
+ * @returns {Sharp}
716
+ * @throws {Error} Invalid options
717
+ */
718
+ function png (options) {
719
+ if (is.object(options)) {
720
+ if (is.defined(options.progressive)) {
721
+ this._setBooleanOption('pngProgressive', options.progressive);
722
+ }
723
+ if (is.defined(options.compressionLevel)) {
724
+ if (is.integer(options.compressionLevel) && is.inRange(options.compressionLevel, 0, 9)) {
725
+ this.options.pngCompressionLevel = options.compressionLevel;
726
+ } else {
727
+ throw is.invalidParameterError('compressionLevel', 'integer between 0 and 9', options.compressionLevel);
728
+ }
729
+ }
730
+ if (is.defined(options.adaptiveFiltering)) {
731
+ this._setBooleanOption('pngAdaptiveFiltering', options.adaptiveFiltering);
732
+ }
733
+ const colours = options.colours || options.colors;
734
+ if (is.defined(colours)) {
735
+ if (is.integer(colours) && is.inRange(colours, 2, 256)) {
736
+ this.options.pngBitdepth = bitdepthFromColourCount(colours);
737
+ } else {
738
+ throw is.invalidParameterError('colours', 'integer between 2 and 256', colours);
739
+ }
740
+ }
741
+ if (is.defined(options.palette)) {
742
+ this._setBooleanOption('pngPalette', options.palette);
743
+ } else if ([options.quality, options.effort, options.colours, options.colors, options.dither].some(is.defined)) {
744
+ this._setBooleanOption('pngPalette', true);
745
+ }
746
+ if (this.options.pngPalette) {
747
+ if (is.defined(options.quality)) {
748
+ if (is.integer(options.quality) && is.inRange(options.quality, 0, 100)) {
749
+ this.options.pngQuality = options.quality;
750
+ } else {
751
+ throw is.invalidParameterError('quality', 'integer between 0 and 100', options.quality);
752
+ }
753
+ }
754
+ if (is.defined(options.effort)) {
755
+ if (is.integer(options.effort) && is.inRange(options.effort, 1, 10)) {
756
+ this.options.pngEffort = options.effort;
757
+ } else {
758
+ throw is.invalidParameterError('effort', 'integer between 1 and 10', options.effort);
759
+ }
760
+ }
761
+ if (is.defined(options.dither)) {
762
+ if (is.number(options.dither) && is.inRange(options.dither, 0, 1)) {
763
+ this.options.pngDither = options.dither;
764
+ } else {
765
+ throw is.invalidParameterError('dither', 'number between 0.0 and 1.0', options.dither);
766
+ }
767
+ }
768
+ }
769
+ }
770
+ return this._updateFormatOut('png', options);
771
+ }
772
+
773
+ /**
774
+ * Use these WebP options for output image.
775
+ *
776
+ * @example
777
+ * // Convert any input to lossless WebP output
778
+ * const data = await sharp(input)
779
+ * .webp({ lossless: true })
780
+ * .toBuffer();
781
+ *
782
+ * @example
783
+ * // Optimise the file size of an animated WebP
784
+ * const outputWebp = await sharp(inputWebp, { animated: true })
785
+ * .webp({ effort: 6 })
786
+ * .toBuffer();
787
+ *
788
+ * @param {Object} [options] - output options
789
+ * @param {number} [options.quality=80] - quality, integer 1-100
790
+ * @param {number} [options.alphaQuality=100] - quality of alpha layer, integer 0-100
791
+ * @param {boolean} [options.lossless=false] - use lossless compression mode
792
+ * @param {boolean} [options.nearLossless=false] - use near_lossless compression mode
793
+ * @param {boolean} [options.smartSubsample=false] - use high quality chroma subsampling
794
+ * @param {boolean} [options.smartDeblock=false] - auto-adjust the deblocking filter, can improve low contrast edges (slow)
795
+ * @param {string} [options.preset='default'] - named preset for preprocessing/filtering, one of: default, photo, picture, drawing, icon, text
796
+ * @param {number} [options.effort=4] - CPU effort, between 0 (fastest) and 6 (slowest)
797
+ * @param {number} [options.loop=0] - number of animation iterations, use 0 for infinite animation
798
+ * @param {number|number[]} [options.delay] - delay(s) between animation frames (in milliseconds)
799
+ * @param {boolean} [options.minSize=false] - prevent use of animation key frames to minimise file size (slow)
800
+ * @param {boolean} [options.mixed=false] - allow mixture of lossy and lossless animation frames (slow)
801
+ * @param {boolean} [options.exact=false] - preserve the colour data in transparent pixels
802
+ * @param {boolean} [options.force=true] - force WebP output, otherwise attempt to use input format
803
+ * @returns {Sharp}
804
+ * @throws {Error} Invalid options
805
+ */
806
+ function webp (options) {
807
+ if (is.object(options)) {
808
+ if (is.defined(options.quality)) {
809
+ if (is.integer(options.quality) && is.inRange(options.quality, 1, 100)) {
810
+ this.options.webpQuality = options.quality;
811
+ } else {
812
+ throw is.invalidParameterError('quality', 'integer between 1 and 100', options.quality);
813
+ }
814
+ }
815
+ if (is.defined(options.alphaQuality)) {
816
+ if (is.integer(options.alphaQuality) && is.inRange(options.alphaQuality, 0, 100)) {
817
+ this.options.webpAlphaQuality = options.alphaQuality;
818
+ } else {
819
+ throw is.invalidParameterError('alphaQuality', 'integer between 0 and 100', options.alphaQuality);
820
+ }
821
+ }
822
+ if (is.defined(options.lossless)) {
823
+ this._setBooleanOption('webpLossless', options.lossless);
824
+ }
825
+ if (is.defined(options.nearLossless)) {
826
+ this._setBooleanOption('webpNearLossless', options.nearLossless);
827
+ }
828
+ if (is.defined(options.smartSubsample)) {
829
+ this._setBooleanOption('webpSmartSubsample', options.smartSubsample);
830
+ }
831
+ if (is.defined(options.smartDeblock)) {
832
+ this._setBooleanOption('webpSmartDeblock', options.smartDeblock);
833
+ }
834
+ if (is.defined(options.preset)) {
835
+ if (is.string(options.preset) && is.inArray(options.preset, ['default', 'photo', 'picture', 'drawing', 'icon', 'text'])) {
836
+ this.options.webpPreset = options.preset;
837
+ } else {
838
+ throw is.invalidParameterError('preset', 'one of: default, photo, picture, drawing, icon, text', options.preset);
839
+ }
840
+ }
841
+ if (is.defined(options.effort)) {
842
+ if (is.integer(options.effort) && is.inRange(options.effort, 0, 6)) {
843
+ this.options.webpEffort = options.effort;
844
+ } else {
845
+ throw is.invalidParameterError('effort', 'integer between 0 and 6', options.effort);
846
+ }
847
+ }
848
+ if (is.defined(options.minSize)) {
849
+ this._setBooleanOption('webpMinSize', options.minSize);
850
+ }
851
+ if (is.defined(options.mixed)) {
852
+ this._setBooleanOption('webpMixed', options.mixed);
853
+ }
854
+ if (is.defined(options.exact)) {
855
+ this._setBooleanOption('webpExact', options.exact);
856
+ }
857
+ }
858
+ trySetAnimationOptions(options, this.options);
859
+ return this._updateFormatOut('webp', options);
860
+ }
861
+
862
+ /**
863
+ * Use these GIF options for the output image.
864
+ *
865
+ * The first entry in the palette is reserved for transparency.
866
+ *
867
+ * The palette of the input image will be re-used if possible.
868
+ *
869
+ * @since 0.30.0
870
+ *
871
+ * @example
872
+ * // Convert PNG to GIF
873
+ * await sharp(pngBuffer)
874
+ * .gif()
875
+ * .toBuffer();
876
+ *
877
+ * @example
878
+ * // Convert animated WebP to animated GIF
879
+ * await sharp('animated.webp', { animated: true })
880
+ * .toFile('animated.gif');
881
+ *
882
+ * @example
883
+ * // Create a 128x128, cropped, non-dithered, animated thumbnail of an animated GIF
884
+ * const out = await sharp('in.gif', { animated: true })
885
+ * .resize({ width: 128, height: 128 })
886
+ * .gif({ dither: 0 })
887
+ * .toBuffer();
888
+ *
889
+ * @example
890
+ * // Lossy file size reduction of animated GIF
891
+ * await sharp('in.gif', { animated: true })
892
+ * .gif({ interFrameMaxError: 8 })
893
+ * .toFile('optim.gif');
894
+ *
895
+ * @param {Object} [options] - output options
896
+ * @param {boolean} [options.reuse=true] - re-use existing palette, otherwise generate new (slow)
897
+ * @param {boolean} [options.progressive=false] - use progressive (interlace) scan
898
+ * @param {number} [options.colours=256] - maximum number of palette entries, including transparency, between 2 and 256
899
+ * @param {number} [options.colors=256] - alternative spelling of `options.colours`
900
+ * @param {number} [options.effort=7] - CPU effort, between 1 (fastest) and 10 (slowest)
901
+ * @param {number} [options.dither=1.0] - level of Floyd-Steinberg error diffusion, between 0 (least) and 1 (most)
902
+ * @param {number} [options.interFrameMaxError=0] - maximum inter-frame error for transparency, between 0 (lossless) and 32
903
+ * @param {number} [options.interPaletteMaxError=3] - maximum inter-palette error for palette reuse, between 0 and 256
904
+ * @param {boolean} [options.keepDuplicateFrames=false] - keep duplicate frames in the output instead of combining them
905
+ * @param {number} [options.loop=0] - number of animation iterations, use 0 for infinite animation
906
+ * @param {number|number[]} [options.delay] - delay(s) between animation frames (in milliseconds)
907
+ * @param {boolean} [options.force=true] - force GIF output, otherwise attempt to use input format
908
+ * @returns {Sharp}
909
+ * @throws {Error} Invalid options
910
+ */
911
+ function gif (options) {
912
+ if (is.object(options)) {
913
+ if (is.defined(options.reuse)) {
914
+ this._setBooleanOption('gifReuse', options.reuse);
915
+ }
916
+ if (is.defined(options.progressive)) {
917
+ this._setBooleanOption('gifProgressive', options.progressive);
918
+ }
919
+ const colours = options.colours || options.colors;
920
+ if (is.defined(colours)) {
921
+ if (is.integer(colours) && is.inRange(colours, 2, 256)) {
922
+ this.options.gifBitdepth = bitdepthFromColourCount(colours);
923
+ } else {
924
+ throw is.invalidParameterError('colours', 'integer between 2 and 256', colours);
925
+ }
926
+ }
927
+ if (is.defined(options.effort)) {
928
+ if (is.integer(options.effort) && is.inRange(options.effort, 1, 10)) {
929
+ this.options.gifEffort = options.effort;
930
+ } else {
931
+ throw is.invalidParameterError('effort', 'integer between 1 and 10', options.effort);
932
+ }
933
+ }
934
+ if (is.defined(options.dither)) {
935
+ if (is.number(options.dither) && is.inRange(options.dither, 0, 1)) {
936
+ this.options.gifDither = options.dither;
937
+ } else {
938
+ throw is.invalidParameterError('dither', 'number between 0.0 and 1.0', options.dither);
939
+ }
940
+ }
941
+ if (is.defined(options.interFrameMaxError)) {
942
+ if (is.number(options.interFrameMaxError) && is.inRange(options.interFrameMaxError, 0, 32)) {
943
+ this.options.gifInterFrameMaxError = options.interFrameMaxError;
944
+ } else {
945
+ throw is.invalidParameterError('interFrameMaxError', 'number between 0.0 and 32.0', options.interFrameMaxError);
946
+ }
947
+ }
948
+ if (is.defined(options.interPaletteMaxError)) {
949
+ if (is.number(options.interPaletteMaxError) && is.inRange(options.interPaletteMaxError, 0, 256)) {
950
+ this.options.gifInterPaletteMaxError = options.interPaletteMaxError;
951
+ } else {
952
+ throw is.invalidParameterError('interPaletteMaxError', 'number between 0.0 and 256.0', options.interPaletteMaxError);
953
+ }
954
+ }
955
+ if (is.defined(options.keepDuplicateFrames)) {
956
+ if (is.bool(options.keepDuplicateFrames)) {
957
+ this._setBooleanOption('gifKeepDuplicateFrames', options.keepDuplicateFrames);
958
+ } else {
959
+ throw is.invalidParameterError('keepDuplicateFrames', 'boolean', options.keepDuplicateFrames);
960
+ }
961
+ }
962
+ }
963
+ trySetAnimationOptions(options, this.options);
964
+ return this._updateFormatOut('gif', options);
965
+ }
966
+
967
+ /**
968
+ * Use these JP2 options for output image.
969
+ *
970
+ * Requires libvips compiled with support for OpenJPEG.
971
+ * The prebuilt binaries do not include this - see
972
+ * {@link /install#custom-libvips installing a custom libvips}.
973
+ *
974
+ * @example
975
+ * // Convert any input to lossless JP2 output
976
+ * const data = await sharp(input)
977
+ * .jp2({ lossless: true })
978
+ * .toBuffer();
979
+ *
980
+ * @example
981
+ * // Convert any input to very high quality JP2 output
982
+ * const data = await sharp(input)
983
+ * .jp2({
984
+ * quality: 100,
985
+ * chromaSubsampling: '4:4:4'
986
+ * })
987
+ * .toBuffer();
988
+ *
989
+ * @since 0.29.1
990
+ *
991
+ * @param {Object} [options] - output options
992
+ * @param {number} [options.quality=80] - quality, integer 1-100
993
+ * @param {boolean} [options.lossless=false] - use lossless compression mode
994
+ * @param {number} [options.tileWidth=512] - horizontal tile size
995
+ * @param {number} [options.tileHeight=512] - vertical tile size
996
+ * @param {string} [options.chromaSubsampling='4:4:4'] - set to '4:2:0' to use chroma subsampling
997
+ * @returns {Sharp}
998
+ * @throws {Error} Invalid options
999
+ */
1000
+ function jp2 (options) {
1001
+ /* node:coverage ignore next 41 */
1002
+ if (!this.constructor.format.jp2.output.buffer) {
1003
+ throw errJp2Save();
1004
+ }
1005
+ if (is.object(options)) {
1006
+ if (is.defined(options.quality)) {
1007
+ if (is.integer(options.quality) && is.inRange(options.quality, 1, 100)) {
1008
+ this.options.jp2Quality = options.quality;
1009
+ } else {
1010
+ throw is.invalidParameterError('quality', 'integer between 1 and 100', options.quality);
1011
+ }
1012
+ }
1013
+ if (is.defined(options.lossless)) {
1014
+ if (is.bool(options.lossless)) {
1015
+ this.options.jp2Lossless = options.lossless;
1016
+ } else {
1017
+ throw is.invalidParameterError('lossless', 'boolean', options.lossless);
1018
+ }
1019
+ }
1020
+ if (is.defined(options.tileWidth)) {
1021
+ if (is.integer(options.tileWidth) && is.inRange(options.tileWidth, 1, 32768)) {
1022
+ this.options.jp2TileWidth = options.tileWidth;
1023
+ } else {
1024
+ throw is.invalidParameterError('tileWidth', 'integer between 1 and 32768', options.tileWidth);
1025
+ }
1026
+ }
1027
+ if (is.defined(options.tileHeight)) {
1028
+ if (is.integer(options.tileHeight) && is.inRange(options.tileHeight, 1, 32768)) {
1029
+ this.options.jp2TileHeight = options.tileHeight;
1030
+ } else {
1031
+ throw is.invalidParameterError('tileHeight', 'integer between 1 and 32768', options.tileHeight);
1032
+ }
1033
+ }
1034
+ if (is.defined(options.chromaSubsampling)) {
1035
+ if (is.string(options.chromaSubsampling) && is.inArray(options.chromaSubsampling, ['4:2:0', '4:4:4'])) {
1036
+ this.options.jp2ChromaSubsampling = options.chromaSubsampling;
1037
+ } else {
1038
+ throw is.invalidParameterError('chromaSubsampling', 'one of: 4:2:0, 4:4:4', options.chromaSubsampling);
1039
+ }
1040
+ }
1041
+ }
1042
+ return this._updateFormatOut('jp2', options);
1043
+ }
1044
+
1045
+ /**
1046
+ * Set animation options if available.
1047
+ * @private
1048
+ *
1049
+ * @param {Object} [source] - output options
1050
+ * @param {number} [source.loop=0] - number of animation iterations, use 0 for infinite animation
1051
+ * @param {number[]} [source.delay] - list of delays between animation frames (in milliseconds)
1052
+ * @param {Object} [target] - target object for valid options
1053
+ * @throws {Error} Invalid options
1054
+ */
1055
+ function trySetAnimationOptions (source, target) {
1056
+ if (is.object(source) && is.defined(source.loop)) {
1057
+ if (is.integer(source.loop) && is.inRange(source.loop, 0, 65535)) {
1058
+ target.loop = source.loop;
1059
+ } else {
1060
+ throw is.invalidParameterError('loop', 'integer between 0 and 65535', source.loop);
1061
+ }
1062
+ }
1063
+ if (is.object(source) && is.defined(source.delay)) {
1064
+ // We allow singular values as well
1065
+ if (is.integer(source.delay) && is.inRange(source.delay, 0, 65535)) {
1066
+ target.delay = [source.delay];
1067
+ } else if (
1068
+ Array.isArray(source.delay) &&
1069
+ source.delay.every(is.integer) &&
1070
+ source.delay.every(v => is.inRange(v, 0, 65535))) {
1071
+ target.delay = source.delay;
1072
+ } else {
1073
+ throw is.invalidParameterError('delay', 'integer or an array of integers between 0 and 65535', source.delay);
1074
+ }
1075
+ }
1076
+ }
1077
+
1078
+ /**
1079
+ * Use these TIFF options for output image.
1080
+ *
1081
+ * The `density` can be set in pixels/inch via {@link #withmetadata withMetadata}
1082
+ * instead of providing `xres` and `yres` in pixels/mm.
1083
+ *
1084
+ * @example
1085
+ * // Convert SVG input to LZW-compressed, 1 bit per pixel TIFF output
1086
+ * sharp('input.svg')
1087
+ * .tiff({
1088
+ * compression: 'lzw',
1089
+ * bitdepth: 1
1090
+ * })
1091
+ * .toFile('1-bpp-output.tiff')
1092
+ * .then(info => { ... });
1093
+ *
1094
+ * @param {Object} [options] - output options
1095
+ * @param {number} [options.quality=80] - quality, integer 1-100
1096
+ * @param {boolean} [options.force=true] - force TIFF output, otherwise attempt to use input format
1097
+ * @param {string} [options.compression='jpeg'] - compression options: none, jpeg, deflate, packbits, ccittfax4, lzw, webp, zstd, jp2k
1098
+ * @param {boolean} [options.bigtiff=false] - use BigTIFF variant (has no effect when compression is none)
1099
+ * @param {string} [options.predictor='horizontal'] - compression predictor options: none, horizontal, float
1100
+ * @param {boolean} [options.pyramid=false] - write an image pyramid
1101
+ * @param {boolean} [options.tile=false] - write a tiled tiff
1102
+ * @param {number} [options.tileWidth=256] - horizontal tile size, valid values are integers in the range 1-32768
1103
+ * @param {number} [options.tileHeight=256] - vertical tile size, valid values are integers in the range 1-32768
1104
+ * @param {number} [options.xres=1.0] - horizontal resolution in pixels/mm, valid values are numbers in the range 0.001-1000000
1105
+ * @param {number} [options.yres=1.0] - vertical resolution in pixels/mm, valid values are numbers in the range 0.001-1000000
1106
+ * @param {string} [options.resolutionUnit='inch'] - resolution unit options: inch, cm
1107
+ * @param {number} [options.bitdepth=0] - reduce bitdepth to 1, 2 or 4 bit
1108
+ * @param {boolean} [options.miniswhite=false] - write 1-bit images as miniswhite
1109
+ * @returns {Sharp}
1110
+ * @throws {Error} Invalid options
1111
+ */
1112
+ function tiff (options) {
1113
+ if (is.object(options)) {
1114
+ if (is.defined(options.quality)) {
1115
+ if (is.integer(options.quality) && is.inRange(options.quality, 1, 100)) {
1116
+ this.options.tiffQuality = options.quality;
1117
+ } else {
1118
+ throw is.invalidParameterError('quality', 'integer between 1 and 100', options.quality);
1119
+ }
1120
+ }
1121
+ if (is.defined(options.bitdepth)) {
1122
+ if (is.integer(options.bitdepth) && is.inArray(options.bitdepth, [1, 2, 4])) {
1123
+ this.options.tiffBitdepth = options.bitdepth;
1124
+ } else {
1125
+ throw is.invalidParameterError('bitdepth', '1, 2 or 4', options.bitdepth);
1126
+ }
1127
+ }
1128
+ // tiling
1129
+ if (is.defined(options.tile)) {
1130
+ this._setBooleanOption('tiffTile', options.tile);
1131
+ }
1132
+ if (is.defined(options.tileWidth)) {
1133
+ if (is.integer(options.tileWidth) && is.inRange(options.tileWidth, 1, 32768)) {
1134
+ this.options.tiffTileWidth = options.tileWidth;
1135
+ } else {
1136
+ throw is.invalidParameterError('tileWidth', 'integer between 1 and 32768', options.tileWidth);
1137
+ }
1138
+ }
1139
+ if (is.defined(options.tileHeight)) {
1140
+ if (is.integer(options.tileHeight) && is.inRange(options.tileHeight, 1, 32768)) {
1141
+ this.options.tiffTileHeight = options.tileHeight;
1142
+ } else {
1143
+ throw is.invalidParameterError('tileHeight', 'integer between 1 and 32768', options.tileHeight);
1144
+ }
1145
+ }
1146
+ // miniswhite
1147
+ if (is.defined(options.miniswhite)) {
1148
+ this._setBooleanOption('tiffMiniswhite', options.miniswhite);
1149
+ }
1150
+ // pyramid
1151
+ if (is.defined(options.pyramid)) {
1152
+ this._setBooleanOption('tiffPyramid', options.pyramid);
1153
+ }
1154
+ // resolution
1155
+ if (is.defined(options.xres)) {
1156
+ if (is.number(options.xres) && is.inRange(options.xres, 0.001, 1000000)) {
1157
+ this.options.tiffXres = options.xres;
1158
+ } else {
1159
+ throw is.invalidParameterError('xres', 'number between 0.001 and 1000000', options.xres);
1160
+ }
1161
+ }
1162
+ if (is.defined(options.yres)) {
1163
+ if (is.number(options.yres) && is.inRange(options.yres, 0.001, 1000000)) {
1164
+ this.options.tiffYres = options.yres;
1165
+ } else {
1166
+ throw is.invalidParameterError('yres', 'number between 0.001 and 1000000', options.yres);
1167
+ }
1168
+ }
1169
+ // compression
1170
+ if (is.defined(options.compression)) {
1171
+ if (is.string(options.compression) && is.inArray(options.compression, ['none', 'jpeg', 'deflate', 'packbits', 'ccittfax4', 'lzw', 'webp', 'zstd', 'jp2k'])) {
1172
+ this.options.tiffCompression = options.compression;
1173
+ } else {
1174
+ throw is.invalidParameterError('compression', 'one of: none, jpeg, deflate, packbits, ccittfax4, lzw, webp, zstd, jp2k', options.compression);
1175
+ }
1176
+ }
1177
+ // bigtiff
1178
+ if (is.defined(options.bigtiff)) {
1179
+ this._setBooleanOption('tiffBigtiff', options.bigtiff);
1180
+ }
1181
+ // predictor
1182
+ if (is.defined(options.predictor)) {
1183
+ if (is.string(options.predictor) && is.inArray(options.predictor, ['none', 'horizontal', 'float'])) {
1184
+ this.options.tiffPredictor = options.predictor;
1185
+ } else {
1186
+ throw is.invalidParameterError('predictor', 'one of: none, horizontal, float', options.predictor);
1187
+ }
1188
+ }
1189
+ // resolutionUnit
1190
+ if (is.defined(options.resolutionUnit)) {
1191
+ if (is.string(options.resolutionUnit) && is.inArray(options.resolutionUnit, ['inch', 'cm'])) {
1192
+ this.options.tiffResolutionUnit = options.resolutionUnit;
1193
+ } else {
1194
+ throw is.invalidParameterError('resolutionUnit', 'one of: inch, cm', options.resolutionUnit);
1195
+ }
1196
+ }
1197
+ }
1198
+ return this._updateFormatOut('tiff', options);
1199
+ }
1200
+
1201
+ /**
1202
+ * Use these AVIF options for output image.
1203
+ *
1204
+ * AVIF image sequences are not supported.
1205
+ *
1206
+ * @example
1207
+ * const data = await sharp(input)
1208
+ * .avif({ effort: 2 })
1209
+ * .toBuffer();
1210
+ *
1211
+ * @example
1212
+ * const data = await sharp(input)
1213
+ * .avif({ lossless: true })
1214
+ * .toBuffer();
1215
+ *
1216
+ * @since 0.27.0
1217
+ *
1218
+ * @param {Object} [options] - output options
1219
+ * @param {number} [options.quality=50] - quality, integer 1-100
1220
+ * @param {boolean} [options.lossless=false] - use lossless compression
1221
+ * @param {number} [options.effort=4] - CPU effort, between 0 (fastest) and 9 (slowest)
1222
+ * @param {string} [options.chromaSubsampling='4:4:4'] - set to '4:2:0' to use chroma subsampling
1223
+ * @param {number} [options.bitdepth=8] - set bitdepth to 8, 10 or 12 bit
1224
+ * @param {string} [options.tune='auto'] - tune output for a quality metric, one of 'auto' (default), 'iq', 'psnr' or 'ssim'
1225
+ * @returns {Sharp}
1226
+ * @throws {Error} Invalid options
1227
+ */
1228
+ function avif (options) {
1229
+ return this.heif({ ...options, compression: 'av1' });
1230
+ }
1231
+
1232
+ /**
1233
+ * Use these HEIF options for output image.
1234
+ *
1235
+ * Support for patent-encumbered HEIC images using `hevc` compression requires the use of a
1236
+ * globally-installed libvips compiled with support for libheif, libde265 and x265.
1237
+ *
1238
+ * @example
1239
+ * const data = await sharp(input)
1240
+ * .heif({ compression: 'hevc' })
1241
+ * .toBuffer();
1242
+ *
1243
+ * @since 0.23.0
1244
+ *
1245
+ * @param {Object} options - output options
1246
+ * @param {string} options.compression - compression format: av1, hevc
1247
+ * @param {number} [options.quality=50] - quality, integer 1-100
1248
+ * @param {boolean} [options.lossless=false] - use lossless compression
1249
+ * @param {number} [options.effort=4] - CPU effort, between 0 (fastest) and 9 (slowest)
1250
+ * @param {string} [options.chromaSubsampling='4:4:4'] - set to '4:2:0' to use chroma subsampling
1251
+ * @param {number} [options.bitdepth=8] - set bitdepth to 8, 10 or 12 bit
1252
+ * @param {string} [options.tune='auto'] - tune output for a quality metric, one of 'auto' (default), 'iq', 'psnr' or 'ssim'
1253
+ * @returns {Sharp}
1254
+ * @throws {Error} Invalid options
1255
+ */
1256
+ function heif (options) {
1257
+ if (is.object(options)) {
1258
+ if (is.string(options.compression) && is.inArray(options.compression, ['av1', 'hevc'])) {
1259
+ this.options.heifCompression = options.compression;
1260
+ } else {
1261
+ throw is.invalidParameterError('compression', 'one of: av1, hevc', options.compression);
1262
+ }
1263
+ if (is.defined(options.quality)) {
1264
+ if (is.integer(options.quality) && is.inRange(options.quality, 1, 100)) {
1265
+ this.options.heifQuality = options.quality;
1266
+ } else {
1267
+ throw is.invalidParameterError('quality', 'integer between 1 and 100', options.quality);
1268
+ }
1269
+ }
1270
+ if (is.defined(options.lossless)) {
1271
+ if (is.bool(options.lossless)) {
1272
+ this.options.heifLossless = options.lossless;
1273
+ } else {
1274
+ throw is.invalidParameterError('lossless', 'boolean', options.lossless);
1275
+ }
1276
+ }
1277
+ if (is.defined(options.effort)) {
1278
+ if (is.integer(options.effort) && is.inRange(options.effort, 0, 9)) {
1279
+ this.options.heifEffort = options.effort;
1280
+ } else {
1281
+ throw is.invalidParameterError('effort', 'integer between 0 and 9', options.effort);
1282
+ }
1283
+ }
1284
+ if (is.defined(options.chromaSubsampling)) {
1285
+ if (is.string(options.chromaSubsampling) && is.inArray(options.chromaSubsampling, ['4:2:0', '4:4:4'])) {
1286
+ this.options.heifChromaSubsampling = options.chromaSubsampling;
1287
+ } else {
1288
+ throw is.invalidParameterError('chromaSubsampling', 'one of: 4:2:0, 4:4:4', options.chromaSubsampling);
1289
+ }
1290
+ }
1291
+ if (is.defined(options.bitdepth)) {
1292
+ if (is.integer(options.bitdepth) && is.inArray(options.bitdepth, [8, 10, 12])) {
1293
+ this.options.heifBitdepth = options.bitdepth;
1294
+ } else {
1295
+ throw is.invalidParameterError('bitdepth', '8, 10 or 12', options.bitdepth);
1296
+ }
1297
+ }
1298
+ if (is.defined(options.tune)) {
1299
+ if (is.string(options.tune) && is.inArray(options.tune, ['auto', 'iq', 'psnr', 'ssim'])) {
1300
+ if (this.options.heifLossless && options.tune === 'iq') {
1301
+ this.options.heifTune = 'ssim';
1302
+ } else {
1303
+ this.options.heifTune = options.tune;
1304
+ }
1305
+ } else {
1306
+ throw is.invalidParameterError('tune', 'one of: auto, iq, psnr, ssim', options.tune);
1307
+ }
1308
+ }
1309
+ } else {
1310
+ throw is.invalidParameterError('options', 'Object', options);
1311
+ }
1312
+ return this._updateFormatOut('heif', options);
1313
+ }
1314
+
1315
+ /**
1316
+ * Use these JPEG-XL (JXL) options for output image.
1317
+ *
1318
+ * This feature is experimental, please do not use in production systems.
1319
+ *
1320
+ * Requires libvips compiled with support for libjxl.
1321
+ * The prebuilt binaries do not include this - see
1322
+ * {@link /install/#custom-libvips installing a custom libvips}.
1323
+ *
1324
+ * @since 0.31.3
1325
+ *
1326
+ * @param {Object} [options] - output options
1327
+ * @param {number} [options.distance=1.0] - maximum encoding error, between 0 (highest quality) and 15 (lowest quality)
1328
+ * @param {number} [options.quality] - calculate `distance` based on JPEG-like quality, between 1 and 100, overrides distance if specified
1329
+ * @param {number} [options.decodingTier=0] - target decode speed tier, between 0 (highest quality) and 4 (lowest quality)
1330
+ * @param {boolean} [options.lossless=false] - use lossless compression
1331
+ * @param {number} [options.effort=7] - CPU effort, between 1 (fastest) and 9 (slowest)
1332
+ * @param {number} [options.loop=0] - number of animation iterations, use 0 for infinite animation
1333
+ * @param {number|number[]} [options.delay] - delay(s) between animation frames (in milliseconds)
1334
+ * @returns {Sharp}
1335
+ * @throws {Error} Invalid options
1336
+ */
1337
+ function jxl (options) {
1338
+ if (is.object(options)) {
1339
+ if (is.defined(options.quality)) {
1340
+ if (is.integer(options.quality) && is.inRange(options.quality, 1, 100)) {
1341
+ // https://github.com/libjxl/libjxl/blob/0aeea7f180bafd6893c1db8072dcb67d2aa5b03d/tools/cjxl_main.cc#L640-L644
1342
+ this.options.jxlDistance = options.quality >= 30
1343
+ ? 0.1 + (100 - options.quality) * 0.09
1344
+ : 53 / 3000 * options.quality * options.quality - 23 / 20 * options.quality + 25;
1345
+ } else {
1346
+ throw is.invalidParameterError('quality', 'integer between 1 and 100', options.quality);
1347
+ }
1348
+ } else if (is.defined(options.distance)) {
1349
+ if (is.number(options.distance) && is.inRange(options.distance, 0, 15)) {
1350
+ this.options.jxlDistance = options.distance;
1351
+ } else {
1352
+ throw is.invalidParameterError('distance', 'number between 0.0 and 15.0', options.distance);
1353
+ }
1354
+ }
1355
+ if (is.defined(options.decodingTier)) {
1356
+ if (is.integer(options.decodingTier) && is.inRange(options.decodingTier, 0, 4)) {
1357
+ this.options.jxlDecodingTier = options.decodingTier;
1358
+ } else {
1359
+ throw is.invalidParameterError('decodingTier', 'integer between 0 and 4', options.decodingTier);
1360
+ }
1361
+ }
1362
+ if (is.defined(options.lossless)) {
1363
+ if (is.bool(options.lossless)) {
1364
+ this.options.jxlLossless = options.lossless;
1365
+ } else {
1366
+ throw is.invalidParameterError('lossless', 'boolean', options.lossless);
1367
+ }
1368
+ }
1369
+ if (is.defined(options.effort)) {
1370
+ if (is.integer(options.effort) && is.inRange(options.effort, 1, 9)) {
1371
+ this.options.jxlEffort = options.effort;
1372
+ } else {
1373
+ throw is.invalidParameterError('effort', 'integer between 1 and 9', options.effort);
1374
+ }
1375
+ }
1376
+ }
1377
+ trySetAnimationOptions(options, this.options);
1378
+ return this._updateFormatOut('jxl', options);
1379
+ }
1380
+
1381
+ /**
1382
+ * Force output to be raw, uncompressed pixel data.
1383
+ * Pixel ordering is left-to-right, top-to-bottom, without padding.
1384
+ * Channel ordering will be RGB or RGBA for non-greyscale colourspaces.
1385
+ *
1386
+ * @example
1387
+ * // Extract raw, unsigned 8-bit RGB pixel data from JPEG input
1388
+ * const { data, info } = await sharp('input.jpg')
1389
+ * .raw()
1390
+ * .toBuffer({ resolveWithObject: true });
1391
+ *
1392
+ * @example
1393
+ * // Extract alpha channel as raw, unsigned 16-bit pixel data from PNG input
1394
+ * const data = await sharp('input.png')
1395
+ * .ensureAlpha()
1396
+ * .extractChannel(3)
1397
+ * .toColourspace('b-w')
1398
+ * .raw({ depth: 'ushort' })
1399
+ * .toBuffer();
1400
+ *
1401
+ * @param {Object} [options] - output options
1402
+ * @param {string} [options.depth='uchar'] - bit depth, one of: char, uchar (default), short, ushort, int, uint, float, complex, double, dpcomplex
1403
+ * @returns {Sharp}
1404
+ * @throws {Error} Invalid options
1405
+ */
1406
+ function raw (options) {
1407
+ if (is.object(options)) {
1408
+ if (is.defined(options.depth)) {
1409
+ if (is.string(options.depth) && is.inArray(options.depth,
1410
+ ['char', 'uchar', 'short', 'ushort', 'int', 'uint', 'float', 'complex', 'double', 'dpcomplex']
1411
+ )) {
1412
+ this.options.rawDepth = options.depth;
1413
+ } else {
1414
+ throw is.invalidParameterError('depth', 'one of: char, uchar, short, ushort, int, uint, float, complex, double, dpcomplex', options.depth);
1415
+ }
1416
+ }
1417
+ }
1418
+ return this._updateFormatOut('raw');
1419
+ }
1420
+
1421
+ /**
1422
+ * Use tile-based deep zoom (image pyramid) output.
1423
+ *
1424
+ * Set the format and options for tile images via the `toFormat`, `jpeg`, `png` or `webp` functions.
1425
+ * Use a `.zip` or `.szi` file extension with `toFile` to write to a compressed archive file format.
1426
+ *
1427
+ * The container will be set to `zip` when the output is a Buffer or Stream, otherwise it will default to `fs`.
1428
+ *
1429
+ * @example
1430
+ * sharp('input.tiff')
1431
+ * .png()
1432
+ * .tile({
1433
+ * size: 512
1434
+ * })
1435
+ * .toFile('output.dz', function(err, info) {
1436
+ * // output.dzi is the Deep Zoom XML definition
1437
+ * // output_files contains 512x512 tiles grouped by zoom level
1438
+ * });
1439
+ *
1440
+ * @example
1441
+ * const zipFileWithTiles = await sharp(input)
1442
+ * .tile({ basename: "tiles" })
1443
+ * .toBuffer();
1444
+ *
1445
+ * @example
1446
+ * const iiififier = sharp().tile({ layout: "iiif" });
1447
+ * readableStream
1448
+ * .pipe(iiififier)
1449
+ * .pipe(writeableStream);
1450
+ *
1451
+ * @param {Object} [options]
1452
+ * @param {number} [options.size=256] tile size in pixels, a value between 1 and 8192.
1453
+ * @param {number} [options.overlap=0] tile overlap in pixels, a value between 0 and 8192.
1454
+ * @param {number} [options.angle=0] tile angle of rotation, must be a multiple of 90.
1455
+ * @param {string|Object} [options.background={r: 255, g: 255, b: 255, alpha: 1}] - background colour, parsed by the [color](https://www.npmjs.org/package/color) module, defaults to white without transparency.
1456
+ * @param {string} [options.depth] how deep to make the pyramid, possible values are `onepixel`, `onetile` or `one`, default based on layout.
1457
+ * @param {number} [options.skipBlanks=-1] Threshold to skip tile generation. Range is 0-255 for 8-bit images, 0-65535 for 16-bit images. Default is 5 for `google` layout, -1 (no skip) otherwise.
1458
+ * @param {string} [options.container='fs'] tile container, with value `fs` (filesystem) or `zip` (compressed file).
1459
+ * @param {string} [options.layout='dz'] filesystem layout, possible values are `dz`, `iiif`, `iiif3`, `zoomify` or `google`.
1460
+ * @param {boolean} [options.centre=false] centre image in tile.
1461
+ * @param {boolean} [options.center=false] alternative spelling of centre.
1462
+ * @param {string} [options.id='https://example.com/iiif'] when `layout` is `iiif`/`iiif3`, sets the `@id`/`id` attribute of `info.json`
1463
+ * @param {string} [options.basename] the name of the directory within the zip file when container is `zip`.
1464
+ * @returns {Sharp}
1465
+ * @throws {Error} Invalid parameters
1466
+ */
1467
+ function tile (options) {
1468
+ if (is.object(options)) {
1469
+ // Size of square tiles, in pixels
1470
+ if (is.defined(options.size)) {
1471
+ if (is.integer(options.size) && is.inRange(options.size, 1, 8192)) {
1472
+ this.options.tileSize = options.size;
1473
+ } else {
1474
+ throw is.invalidParameterError('size', 'integer between 1 and 8192', options.size);
1475
+ }
1476
+ }
1477
+ // Overlap of tiles, in pixels
1478
+ if (is.defined(options.overlap)) {
1479
+ if (is.integer(options.overlap) && is.inRange(options.overlap, 0, 8192)) {
1480
+ if (options.overlap > this.options.tileSize) {
1481
+ throw is.invalidParameterError('overlap', `<= size (${this.options.tileSize})`, options.overlap);
1482
+ }
1483
+ this.options.tileOverlap = options.overlap;
1484
+ } else {
1485
+ throw is.invalidParameterError('overlap', 'integer between 0 and 8192', options.overlap);
1486
+ }
1487
+ }
1488
+ // Container
1489
+ if (is.defined(options.container)) {
1490
+ if (is.string(options.container) && is.inArray(options.container, ['fs', 'zip'])) {
1491
+ this.options.tileContainer = options.container;
1492
+ } else {
1493
+ throw is.invalidParameterError('container', 'one of: fs, zip', options.container);
1494
+ }
1495
+ }
1496
+ // Layout
1497
+ if (is.defined(options.layout)) {
1498
+ if (is.string(options.layout) && is.inArray(options.layout, ['dz', 'google', 'iiif', 'iiif3', 'zoomify'])) {
1499
+ this.options.tileLayout = options.layout;
1500
+ } else {
1501
+ throw is.invalidParameterError('layout', 'one of: dz, google, iiif, iiif3, zoomify', options.layout);
1502
+ }
1503
+ }
1504
+ // Angle of rotation,
1505
+ if (is.defined(options.angle)) {
1506
+ if (is.integer(options.angle) && !(options.angle % 90)) {
1507
+ this.options.tileAngle = options.angle;
1508
+ } else {
1509
+ throw is.invalidParameterError('angle', 'positive/negative multiple of 90', options.angle);
1510
+ }
1511
+ }
1512
+ // Background colour
1513
+ this._setBackgroundColourOption('tileBackground', options.background);
1514
+ // Depth of tiles
1515
+ if (is.defined(options.depth)) {
1516
+ if (is.string(options.depth) && is.inArray(options.depth, ['onepixel', 'onetile', 'one'])) {
1517
+ this.options.tileDepth = options.depth;
1518
+ } else {
1519
+ throw is.invalidParameterError('depth', 'one of: onepixel, onetile, one', options.depth);
1520
+ }
1521
+ }
1522
+ // Threshold to skip blank tiles
1523
+ if (is.defined(options.skipBlanks)) {
1524
+ if (is.integer(options.skipBlanks) && is.inRange(options.skipBlanks, -1, 65535)) {
1525
+ this.options.tileSkipBlanks = options.skipBlanks;
1526
+ } else {
1527
+ throw is.invalidParameterError('skipBlanks', 'integer between -1 and 255/65535', options.skipBlanks);
1528
+ }
1529
+ } else if (is.defined(options.layout) && options.layout === 'google') {
1530
+ this.options.tileSkipBlanks = 5;
1531
+ }
1532
+ // Center image in tile
1533
+ const centre = is.bool(options.center) ? options.center : options.centre;
1534
+ if (is.defined(centre)) {
1535
+ this._setBooleanOption('tileCentre', centre);
1536
+ }
1537
+ // @id attribute for IIIF layout
1538
+ if (is.defined(options.id)) {
1539
+ if (is.string(options.id)) {
1540
+ this.options.tileId = options.id;
1541
+ } else {
1542
+ throw is.invalidParameterError('id', 'string', options.id);
1543
+ }
1544
+ }
1545
+ // Basename for zip container
1546
+ if (is.defined(options.basename)) {
1547
+ if (is.string(options.basename)) {
1548
+ this.options.tileBasename = options.basename;
1549
+ } else {
1550
+ throw is.invalidParameterError('basename', 'string', options.basename);
1551
+ }
1552
+ }
1553
+ }
1554
+ // Format
1555
+ if (is.inArray(this.options.formatOut, ['jpeg', 'png', 'webp'])) {
1556
+ this.options.tileFormat = this.options.formatOut;
1557
+ } else if (this.options.formatOut !== 'input') {
1558
+ throw is.invalidParameterError('format', 'one of: jpeg, png, webp', this.options.formatOut);
1559
+ }
1560
+ return this._updateFormatOut('dz');
1561
+ }
1562
+
1563
+ /**
1564
+ * Set a timeout for processing, in seconds.
1565
+ * Use a value of zero to continue processing indefinitely, the default behaviour.
1566
+ *
1567
+ * The clock starts when libvips opens an input image for processing.
1568
+ * Time spent waiting for a libuv thread to become available is not included.
1569
+ *
1570
+ * @example
1571
+ * // Ensure processing takes no longer than 3 seconds
1572
+ * try {
1573
+ * const data = await sharp(input)
1574
+ * .blur(1000)
1575
+ * .timeout({ seconds: 3 })
1576
+ * .toBuffer();
1577
+ * } catch (err) {
1578
+ * if (err.message.includes('timeout')) { ... }
1579
+ * }
1580
+ *
1581
+ * @since 0.29.2
1582
+ *
1583
+ * @param {Object} options
1584
+ * @param {number} options.seconds - Number of seconds after which processing will be stopped
1585
+ * @returns {Sharp}
1586
+ */
1587
+ function timeout (options) {
1588
+ if (!is.plainObject(options)) {
1589
+ throw is.invalidParameterError('options', 'object', options);
1590
+ }
1591
+ if (is.integer(options.seconds) && is.inRange(options.seconds, 0, 3600)) {
1592
+ this.options.timeoutSeconds = options.seconds;
1593
+ } else {
1594
+ throw is.invalidParameterError('seconds', 'integer between 0 and 3600', options.seconds);
1595
+ }
1596
+ return this;
1597
+ }
1598
+
1599
+ /**
1600
+ * Update the output format unless options.force is false,
1601
+ * in which case revert to input format.
1602
+ * @private
1603
+ * @param {string} formatOut
1604
+ * @param {Object} [options]
1605
+ * @param {boolean} [options.force=true] - force output format, otherwise attempt to use input format
1606
+ * @returns {Sharp}
1607
+ */
1608
+ function _updateFormatOut (formatOut, options) {
1609
+ if (!(is.object(options) && options.force === false)) {
1610
+ this.options.formatOut = formatOut;
1611
+ }
1612
+ return this;
1613
+ }
1614
+
1615
+ /**
1616
+ * Update a boolean attribute of the this.options Object.
1617
+ * @private
1618
+ * @param {string} key
1619
+ * @param {boolean} val
1620
+ * @throws {Error} Invalid key
1621
+ */
1622
+ function _setBooleanOption (key, val) {
1623
+ if (is.bool(val)) {
1624
+ this.options[key] = val;
1625
+ } else {
1626
+ throw is.invalidParameterError(key, 'boolean', val);
1627
+ }
1628
+ }
1629
+
1630
+ /**
1631
+ * Called by a WriteableStream to notify us it is ready for data.
1632
+ * @private
1633
+ */
1634
+ function _read () {
1635
+ if (!this.options.streamOut) {
1636
+ this.options.streamOut = true;
1637
+ const stack = Error();
1638
+ this._pipeline(undefined, stack);
1639
+ }
1640
+ }
1641
+
1642
+ /**
1643
+ * Invoke the C++ image processing pipeline
1644
+ * Supports callback, stream and promise variants
1645
+ * @private
1646
+ */
1647
+ function _pipeline (callback, stack) {
1648
+ if (typeof callback === 'function') {
1649
+ // output=file/buffer
1650
+ if (this._isStreamInput()) {
1651
+ // output=file/buffer, input=stream
1652
+ this.on('finish', () => {
1653
+ this._flattenBufferIn();
1654
+ sharp.pipeline(this.options, (err, data, info) => {
1655
+ if (err) {
1656
+ callback(is.nativeError(err, stack));
1657
+ } else {
1658
+ callback(null, data, info);
1659
+ }
1660
+ });
1661
+ });
1662
+ } else {
1663
+ // output=file/buffer, input=file/buffer
1664
+ sharp.pipeline(this.options, (err, data, info) => {
1665
+ if (err) {
1666
+ callback(is.nativeError(err, stack));
1667
+ } else {
1668
+ callback(null, data, info);
1669
+ }
1670
+ });
1671
+ }
1672
+ return this;
1673
+ } else if (this.options.streamOut) {
1674
+ // output=stream
1675
+ if (this._isStreamInput()) {
1676
+ // output=stream, input=stream
1677
+ this.once('finish', () => {
1678
+ this._flattenBufferIn();
1679
+ sharp.pipeline(this.options, (err, data, info) => {
1680
+ if (err) {
1681
+ this.emit('error', is.nativeError(err, stack));
1682
+ } else {
1683
+ this.emit('info', info);
1684
+ this.push(data);
1685
+ }
1686
+ this.push(null);
1687
+ this.on('end', () => this.emit('close'));
1688
+ });
1689
+ });
1690
+ if (this.streamInFinished) {
1691
+ this.emit('finish');
1692
+ }
1693
+ } else {
1694
+ // output=stream, input=file/buffer
1695
+ sharp.pipeline(this.options, (err, data, info) => {
1696
+ if (err) {
1697
+ this.emit('error', is.nativeError(err, stack));
1698
+ } else {
1699
+ this.emit('info', info);
1700
+ this.push(data);
1701
+ }
1702
+ this.push(null);
1703
+ this.on('end', () => this.emit('close'));
1704
+ });
1705
+ }
1706
+ return this;
1707
+ } else {
1708
+ // output=promise
1709
+ if (this._isStreamInput()) {
1710
+ // output=promise, input=stream
1711
+ return new Promise((resolve, reject) => {
1712
+ this.once('finish', () => {
1713
+ this._flattenBufferIn();
1714
+ sharp.pipeline(this.options, (err, data, info) => {
1715
+ if (err) {
1716
+ reject(is.nativeError(err, stack));
1717
+ } else {
1718
+ if (this.options.resolveWithObject) {
1719
+ resolve({ data, info });
1720
+ } else {
1721
+ resolve(data);
1722
+ }
1723
+ }
1724
+ });
1725
+ });
1726
+ });
1727
+ } else {
1728
+ // output=promise, input=file/buffer
1729
+ return new Promise((resolve, reject) => {
1730
+ sharp.pipeline(this.options, (err, data, info) => {
1731
+ if (err) {
1732
+ reject(is.nativeError(err, stack));
1733
+ } else {
1734
+ if (this.options.resolveWithObject) {
1735
+ resolve({ data, info });
1736
+ } else {
1737
+ resolve(data);
1738
+ }
1739
+ }
1740
+ });
1741
+ });
1742
+ }
1743
+ }
1744
+ }
1745
+
1746
+ /**
1747
+ * Decorate the Sharp prototype with output-related functions.
1748
+ * @module Sharp
1749
+ * @private
1750
+ */
1751
+ module.exports = (Sharp) => {
1752
+ Object.assign(Sharp.prototype, {
1753
+ // Public
1754
+ toFile,
1755
+ toBuffer,
1756
+ toUint8Array,
1757
+ withDensity,
1758
+ keepExif,
1759
+ withExif,
1760
+ withExifMerge,
1761
+ keepIccProfile,
1762
+ withIccProfile,
1763
+ keepGainMap,
1764
+ withGainMap,
1765
+ keepXmp,
1766
+ withXmp,
1767
+ keepMetadata,
1768
+ withMetadata,
1769
+ toFormat,
1770
+ jpeg,
1771
+ jp2,
1772
+ png,
1773
+ webp,
1774
+ tiff,
1775
+ avif,
1776
+ heif,
1777
+ jxl,
1778
+ gif,
1779
+ raw,
1780
+ tile,
1781
+ timeout,
1782
+ // Private
1783
+ _updateFormatOut,
1784
+ _setBooleanOption,
1785
+ _read,
1786
+ _pipeline
1787
+ });
1788
+ };