maka-agent 0.2.0-dev.18.20260904 → 0.2.0-dev.20.20260904

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 (1202) hide show
  1. package/LICENSE +36 -3
  2. package/RUNTIME_HOST_PEER_THIRD_PARTY_NOTICES.txt +1 -1
  3. package/THIRD_PARTY_NOTICES.txt +82 -255
  4. package/dist/cli-ui-locale.js +7 -2
  5. package/dist/mcp-capability-provider.js +2 -1
  6. package/dist/pi-tui-mcp-status.js +7 -2
  7. package/dist/runtime-host-lifecycle-transaction.js +15 -0
  8. package/dist/runtime-host-managed-deployment.js +50 -4
  9. package/dist/runtime-host-package-deployment.js +1 -0
  10. package/dist/runtime-host-update-command.js +3 -1
  11. package/dist/runtime-host-windows-service.js +37 -3
  12. package/dist/runtime-host-windows-task-launcher-artifact.js +75 -0
  13. package/dist/tui-copy-catalog.js +342 -11
  14. package/native/runtime-host-peer/prebuilds/darwin-arm64/maka_runtime_host_peer.node +0 -0
  15. package/native/runtime-host-peer/prebuilds/linux-arm64/maka_runtime_host_peer.node +0 -0
  16. package/native/runtime-host-peer/prebuilds/linux-x64/maka_runtime_host_peer.node +0 -0
  17. package/native/runtime-host-peer/prebuilds/win32-x64/maka_runtime_host_peer.node +0 -0
  18. package/native/runtime-host-windows-task-launcher/prebuilds/win32-x64/maka-runtime-host-task-launcher.exe +0 -0
  19. package/node_modules/@ai-sdk/anthropic/CHANGELOG.md +51 -0
  20. package/node_modules/@ai-sdk/anthropic/dist/index.js +577 -229
  21. package/node_modules/@ai-sdk/anthropic/dist/internal/index.js +154 -86
  22. package/node_modules/@ai-sdk/anthropic/docs/05-anthropic.mdx +18 -9
  23. package/node_modules/@ai-sdk/anthropic/package.json +6 -6
  24. package/node_modules/@ai-sdk/code-mode/package.json +5 -5
  25. package/node_modules/@ai-sdk/cohere/CHANGELOG.md +52 -0
  26. package/node_modules/@ai-sdk/cohere/dist/index.js +20 -22
  27. package/node_modules/@ai-sdk/cohere/package.json +6 -6
  28. package/node_modules/@ai-sdk/gateway/CHANGELOG.md +101 -0
  29. package/node_modules/@ai-sdk/gateway/dist/index.js +789 -227
  30. package/node_modules/@ai-sdk/gateway/docs/00-ai-gateway.mdx +300 -0
  31. package/node_modules/@ai-sdk/gateway/package.json +8 -8
  32. package/node_modules/@ai-sdk/google/CHANGELOG.md +84 -0
  33. package/node_modules/@ai-sdk/google/dist/index.js +3404 -2285
  34. package/node_modules/@ai-sdk/google/dist/internal/index.js +266 -94
  35. package/node_modules/@ai-sdk/google/docs/15-google.mdx +78 -60
  36. package/node_modules/@ai-sdk/google/package.json +6 -6
  37. package/node_modules/@ai-sdk/open-responses/CHANGELOG.md +16 -0
  38. package/node_modules/@ai-sdk/open-responses/dist/index.js +523 -13
  39. package/node_modules/@ai-sdk/open-responses/docs/06-open-responses.mdx +116 -2
  40. package/node_modules/@ai-sdk/open-responses/package.json +3 -3
  41. package/node_modules/@ai-sdk/openai/CHANGELOG.md +66 -0
  42. package/node_modules/@ai-sdk/openai/dist/index.js +966 -453
  43. package/node_modules/@ai-sdk/openai/dist/internal/index.js +847 -340
  44. package/node_modules/@ai-sdk/openai/docs/03-openai.mdx +31 -11
  45. package/node_modules/@ai-sdk/openai/package.json +6 -6
  46. package/node_modules/@ai-sdk/openai-compatible/CHANGELOG.md +66 -0
  47. package/node_modules/@ai-sdk/openai-compatible/dist/index.js +98 -19
  48. package/node_modules/@ai-sdk/openai-compatible/dist/internal/index.js +9 -0
  49. package/node_modules/@ai-sdk/openai-compatible/docs/index.mdx +79 -0
  50. package/node_modules/@ai-sdk/openai-compatible/package.json +6 -6
  51. package/node_modules/@ai-sdk/provider/CHANGELOG.md +12 -0
  52. package/node_modules/@ai-sdk/provider/package.json +3 -3
  53. package/node_modules/@ai-sdk/provider-utils/CHANGELOG.md +44 -0
  54. package/node_modules/@ai-sdk/provider-utils/dist/index.js +215 -23
  55. package/node_modules/@ai-sdk/provider-utils/package.json +5 -5
  56. package/node_modules/@earendil-works/pi-tui/README.md +1 -1
  57. package/node_modules/@earendil-works/pi-tui/dist/autocomplete.js +36 -3
  58. package/node_modules/@earendil-works/pi-tui/dist/components/markdown.js +9 -4
  59. package/node_modules/@earendil-works/pi-tui/dist/components/settings-list.js +24 -4
  60. package/node_modules/@earendil-works/pi-tui/dist/components/text.js +5 -4
  61. package/node_modules/@earendil-works/pi-tui/dist/index.js +1 -1
  62. package/node_modules/@earendil-works/pi-tui/dist/keybindings.js +2 -2
  63. package/node_modules/@earendil-works/pi-tui/dist/native-modifiers.js +2 -8
  64. package/node_modules/@earendil-works/pi-tui/dist/native-module-path.js +19 -0
  65. package/node_modules/@earendil-works/pi-tui/dist/terminal-image.js +37 -2
  66. package/node_modules/@earendil-works/pi-tui/dist/terminal.js +4 -10
  67. package/node_modules/@earendil-works/pi-tui/dist/tui-alt-screen.js +63 -16
  68. package/node_modules/@earendil-works/pi-tui/dist/tui-main-screen.js +105 -45
  69. package/node_modules/@earendil-works/pi-tui/package.json +1 -1
  70. package/node_modules/@maka/core/dist/agent-run.js +23 -338
  71. package/node_modules/@maka/core/dist/artifacts.js +2 -0
  72. package/node_modules/@maka/core/dist/execution-inspect.js +9 -20
  73. package/node_modules/@maka/core/dist/model-call-attempt.js +66 -0
  74. package/node_modules/@maka/core/dist/provider-registry.js +0 -9
  75. package/node_modules/@maka/core/dist/redaction.js +44 -24
  76. package/node_modules/@maka/core/dist/relative-time.js +6 -5
  77. package/node_modules/@maka/core/dist/runtime-boundary.js +79 -27
  78. package/node_modules/@maka/core/dist/runtime-event-store.js +6 -0
  79. package/node_modules/@maka/core/dist/runtime-event.js +153 -0
  80. package/node_modules/@maka/core/dist/runtime-invocation.js +223 -0
  81. package/node_modules/@maka/core/dist/settings.js +5 -6
  82. package/node_modules/@maka/core/dist/tool-quiet-preview.js +15 -5
  83. package/node_modules/@maka/core/dist/ui-locale.js +18 -7
  84. package/node_modules/@maka/core/dist/workhub-creation-intent.js +19 -5
  85. package/node_modules/{@formatjs → @maka/core/node_modules/@formatjs}/icu-messageformat-parser/index.js +21 -19
  86. package/node_modules/{@formatjs → @maka/core/node_modules/@formatjs}/icu-messageformat-parser/manipulator.js +6 -4
  87. package/node_modules/{@formatjs → @maka/core/node_modules/@formatjs}/icu-messageformat-parser/no-parser.js +6 -4
  88. package/node_modules/{@formatjs → @maka/core/node_modules/@formatjs}/icu-messageformat-parser/package.json +1 -1
  89. package/node_modules/{@formatjs → @maka/core/node_modules/@formatjs}/icu-messageformat-parser/printer.js +3 -3
  90. package/node_modules/{intl-messageformat → @maka/core/node_modules/intl-messageformat}/intl-messageformat.iife.js +15 -15
  91. package/node_modules/{intl-messageformat → @maka/core/node_modules/intl-messageformat}/package.json +2 -2
  92. package/node_modules/@maka/core/package.json +3 -1
  93. package/node_modules/@maka/eval/node_modules/undici/docs/docs/api/Client.md +4 -0
  94. package/node_modules/@maka/eval/node_modules/undici/docs/docs/api/EnvHttpProxyAgent.md +3 -2
  95. package/node_modules/@maka/eval/node_modules/undici/docs/docs/api/EventSource.md +4 -0
  96. package/node_modules/@maka/eval/node_modules/undici/lib/cache/memory-cache-store.js +1 -1
  97. package/node_modules/@maka/eval/node_modules/undici/lib/dispatcher/agent.js +7 -2
  98. package/node_modules/@maka/eval/node_modules/undici/lib/dispatcher/balanced-pool.js +1 -1
  99. package/node_modules/@maka/eval/node_modules/undici/lib/dispatcher/client-h1.js +12 -4
  100. package/node_modules/@maka/eval/node_modules/undici/lib/dispatcher/client-h2.js +43 -3
  101. package/node_modules/@maka/eval/node_modules/undici/lib/dispatcher/client.js +3 -2
  102. package/node_modules/@maka/eval/node_modules/undici/lib/dispatcher/dispatcher-base.js +13 -1
  103. package/node_modules/@maka/eval/node_modules/undici/lib/dispatcher/dispatcher.js +10 -0
  104. package/node_modules/@maka/eval/node_modules/undici/lib/dispatcher/env-http-proxy-agent.js +10 -3
  105. package/node_modules/@maka/eval/node_modules/undici/lib/dispatcher/proxy-agent.js +1 -1
  106. package/node_modules/@maka/eval/node_modules/undici/lib/dispatcher/round-robin-pool.js +1 -1
  107. package/node_modules/@maka/eval/node_modules/undici/lib/dispatcher/socks5-proxy-agent.js +3 -1
  108. package/node_modules/@maka/eval/node_modules/undici/lib/handler/cache-handler.js +8 -0
  109. package/node_modules/@maka/eval/node_modules/undici/lib/handler/decorator-handler.js +7 -1
  110. package/node_modules/@maka/eval/node_modules/undici/lib/handler/deduplication-handler.js +12 -6
  111. package/node_modules/@maka/eval/node_modules/undici/lib/handler/redirect-handler.js +8 -0
  112. package/node_modules/@maka/eval/node_modules/undici/lib/handler/retry-handler.js +83 -11
  113. package/node_modules/@maka/eval/node_modules/undici/lib/interceptor/dump.js +1 -1
  114. package/node_modules/@maka/eval/node_modules/undici/lib/mock/mock-agent.js +13 -1
  115. package/node_modules/@maka/eval/node_modules/undici/lib/mock/mock-utils.js +11 -10
  116. package/node_modules/@maka/eval/node_modules/undici/lib/web/cookies/parse.js +4 -2
  117. package/node_modules/@maka/eval/node_modules/undici/lib/web/eventsource/eventsource-stream.js +28 -1
  118. package/node_modules/@maka/eval/node_modules/undici/lib/web/eventsource/eventsource.js +4 -1
  119. package/node_modules/@maka/eval/node_modules/undici/lib/web/fetch/request.js +2 -3
  120. package/node_modules/@maka/eval/node_modules/undici/package.json +3 -3
  121. package/node_modules/@maka/eval/package.json +1 -1
  122. package/node_modules/@maka/runtime/dist/agent-graph-timeline.js +12 -11
  123. package/node_modules/@maka/runtime/dist/agent-run-inspect.js +42 -77
  124. package/node_modules/@maka/runtime/dist/agent-run-recovery.js +36 -46
  125. package/node_modules/@maka/runtime/dist/agent-run.js +205 -329
  126. package/node_modules/@maka/runtime/dist/ai-sdk-backend.js +37 -18
  127. package/node_modules/@maka/runtime/dist/ai-sdk-compaction.js +28 -21
  128. package/node_modules/@maka/runtime/dist/context-diagnostics.js +17 -14
  129. package/node_modules/@maka/runtime/dist/continuation-replay.js +1 -1
  130. package/node_modules/@maka/runtime/dist/conversation-copy.js +128 -151
  131. package/node_modules/@maka/runtime/dist/execution-inspect.js +44 -39
  132. package/node_modules/@maka/runtime/dist/history-compact-checkpoint-coordinator.js +16 -6
  133. package/node_modules/@maka/runtime/dist/history-compact-ledger.js +6 -8
  134. package/node_modules/@maka/runtime/dist/history-compaction.js +9 -7
  135. package/node_modules/@maka/runtime/dist/interaction-authority.js +16 -0
  136. package/node_modules/@maka/runtime/dist/latest-context-snapshot.js +14 -19
  137. package/node_modules/@maka/runtime/dist/model-history.js +13 -8
  138. package/node_modules/@maka/runtime/dist/model-projection-transition-ledger.js +3 -3
  139. package/node_modules/@maka/runtime/dist/openai-codex-history-compactor.js +7 -9
  140. package/node_modules/@maka/runtime/dist/prior-run-context.js +24 -94
  141. package/node_modules/@maka/runtime/dist/process-tree-terminator.js +2 -2
  142. package/node_modules/@maka/runtime/dist/prompt-composition.js +3 -10
  143. package/node_modules/@maka/runtime/dist/provider-request-telemetry.js +9 -54
  144. package/node_modules/@maka/runtime/dist/request-shape.js +63 -177
  145. package/node_modules/@maka/runtime/dist/runtime-event-backfill.js +21 -13
  146. package/node_modules/@maka/runtime/dist/runtime-event-read-model.js +75 -64
  147. package/node_modules/@maka/runtime/dist/runtime-kernel.js +101 -69
  148. package/node_modules/@maka/runtime/dist/runtime-ledger-repair.js +85 -393
  149. package/node_modules/@maka/runtime/dist/runtime-read-model.js +29 -112
  150. package/node_modules/@maka/runtime/dist/runtime-resume.js +69 -118
  151. package/node_modules/@maka/runtime/dist/session-manager.js +293 -334
  152. package/node_modules/@maka/runtime/dist/stream-graph-coordinator.js +0 -3
  153. package/node_modules/@maka/runtime/dist/stream-graph-projection.js +12 -15
  154. package/node_modules/@maka/runtime/dist/terminal-run-commit.js +37 -172
  155. package/node_modules/@maka/runtime/dist/workers/filesystem-worker.js +6125 -1773
  156. package/node_modules/@maka/runtime/node_modules/@slack/socket-mode/README.md +44 -8
  157. package/node_modules/@maka/runtime/node_modules/@slack/socket-mode/dist/package.json +4 -4
  158. package/node_modules/@maka/runtime/node_modules/@slack/socket-mode/dist/src/SlackWebSocket.js +39 -3
  159. package/node_modules/@maka/runtime/node_modules/@slack/socket-mode/dist/src/SocketModeClient.js +4 -0
  160. package/node_modules/@maka/runtime/node_modules/@slack/socket-mode/package.json +4 -4
  161. package/node_modules/@maka/runtime/node_modules/undici/docs/docs/api/Client.md +4 -0
  162. package/node_modules/@maka/runtime/node_modules/undici/docs/docs/api/EnvHttpProxyAgent.md +3 -2
  163. package/node_modules/@maka/runtime/node_modules/undici/docs/docs/api/EventSource.md +4 -0
  164. package/node_modules/@maka/runtime/node_modules/undici/lib/cache/memory-cache-store.js +1 -1
  165. package/node_modules/@maka/runtime/node_modules/undici/lib/dispatcher/agent.js +7 -2
  166. package/node_modules/@maka/runtime/node_modules/undici/lib/dispatcher/balanced-pool.js +1 -1
  167. package/node_modules/@maka/runtime/node_modules/undici/lib/dispatcher/client-h1.js +12 -4
  168. package/node_modules/@maka/runtime/node_modules/undici/lib/dispatcher/client-h2.js +43 -3
  169. package/node_modules/@maka/runtime/node_modules/undici/lib/dispatcher/client.js +3 -2
  170. package/node_modules/@maka/runtime/node_modules/undici/lib/dispatcher/dispatcher-base.js +13 -1
  171. package/node_modules/@maka/runtime/node_modules/undici/lib/dispatcher/dispatcher.js +10 -0
  172. package/node_modules/@maka/runtime/node_modules/undici/lib/dispatcher/env-http-proxy-agent.js +10 -3
  173. package/node_modules/@maka/runtime/node_modules/undici/lib/dispatcher/proxy-agent.js +1 -1
  174. package/node_modules/@maka/runtime/node_modules/undici/lib/dispatcher/round-robin-pool.js +1 -1
  175. package/node_modules/@maka/runtime/node_modules/undici/lib/dispatcher/socks5-proxy-agent.js +3 -1
  176. package/node_modules/@maka/runtime/node_modules/undici/lib/handler/cache-handler.js +8 -0
  177. package/node_modules/@maka/runtime/node_modules/undici/lib/handler/decorator-handler.js +7 -1
  178. package/node_modules/@maka/runtime/node_modules/undici/lib/handler/deduplication-handler.js +12 -6
  179. package/node_modules/@maka/runtime/node_modules/undici/lib/handler/redirect-handler.js +8 -0
  180. package/node_modules/@maka/runtime/node_modules/undici/lib/handler/retry-handler.js +83 -11
  181. package/node_modules/@maka/runtime/node_modules/undici/lib/interceptor/dump.js +1 -1
  182. package/node_modules/@maka/runtime/node_modules/undici/lib/mock/mock-agent.js +13 -1
  183. package/node_modules/@maka/runtime/node_modules/undici/lib/mock/mock-utils.js +11 -10
  184. package/node_modules/@maka/runtime/node_modules/undici/lib/web/cookies/parse.js +4 -2
  185. package/node_modules/@maka/runtime/node_modules/undici/lib/web/eventsource/eventsource-stream.js +28 -1
  186. package/node_modules/@maka/runtime/node_modules/undici/lib/web/eventsource/eventsource.js +4 -1
  187. package/node_modules/@maka/runtime/node_modules/undici/lib/web/fetch/request.js +2 -3
  188. package/node_modules/@maka/runtime/node_modules/undici/package.json +3 -3
  189. package/node_modules/@maka/runtime/package.json +13 -12
  190. package/node_modules/@maka/runtime-host/dist/client/connection.js +25 -2
  191. package/node_modules/@maka/runtime-host/dist/client/host-retirement.js +2 -2
  192. package/node_modules/@maka/runtime-host/dist/client/index.js +1 -0
  193. package/node_modules/@maka/runtime-host/dist/client/launcher.js +1 -1
  194. package/node_modules/@maka/runtime-host/dist/client/process-identity.js +73 -0
  195. package/node_modules/@maka/runtime-host/dist/client/reconnect-lifecycle.js +4 -2
  196. package/node_modules/@maka/runtime-host/dist/client/registered-host-termination.js +166 -0
  197. package/node_modules/@maka/{storage/dist/provider-request-capture-artifact.js → runtime-host/dist/client-capability-entity-id.js} +8 -12
  198. package/node_modules/@maka/runtime-host/dist/protocol/client-capability.js +5 -17
  199. package/node_modules/@maka/runtime-host/dist/protocol/host-resources.js +253 -0
  200. package/node_modules/@maka/runtime-host/dist/protocol/index.js +11 -1
  201. package/node_modules/@maka/runtime-host/dist/protocol/operations.js +4 -1
  202. package/node_modules/@maka/runtime-host/dist/server/access-credential-store.js +5 -0
  203. package/node_modules/@maka/runtime-host/dist/server/canonical-turn-snapshot.js +19 -15
  204. package/node_modules/@maka/runtime-host/dist/server/execution-composition.js +38 -14
  205. package/node_modules/@maka/runtime-host/dist/server/execution-inspect-coordinator.js +35 -29
  206. package/node_modules/@maka/runtime-host/dist/server/execution-model-composition.js +1 -13
  207. package/node_modules/@maka/runtime-host/dist/server/host-kernel.js +6 -0
  208. package/node_modules/@maka/runtime-host/dist/server/host-resource-collector.js +223 -0
  209. package/node_modules/@maka/runtime-host/dist/server/host-resource-probe-main.js +44 -0
  210. package/node_modules/@maka/runtime-host/dist/server/host-resource-probe.js +83 -0
  211. package/node_modules/@maka/runtime-host/dist/server/hosted-execution-projection.js +12 -7
  212. package/node_modules/@maka/runtime-host/dist/server/hosted-execution-recovery.js +4 -5
  213. package/node_modules/@maka/runtime-host/dist/server/operation-dispatcher.js +2 -0
  214. package/node_modules/@maka/runtime-host/dist/server/root-turn-coordinator.js +8 -16
  215. package/node_modules/@maka/runtime-host/dist/server/session-admission-gate.js +12 -0
  216. package/node_modules/@maka/runtime-host/dist/server/session-revision-coordinator.js +1 -1
  217. package/node_modules/@maka/runtime-host/dist/server/session-revision-graph-references.js +19 -10
  218. package/node_modules/@maka/runtime-host/dist/server/session-transcript-reader.js +2 -2
  219. package/node_modules/@maka/runtime-host/dist/transport/peer-native.js +10 -0
  220. package/node_modules/@maka/runtime-host/package.json +3 -1
  221. package/node_modules/@maka/storage/dist/agent-run-store.js +128 -215
  222. package/node_modules/@maka/storage/dist/artifact-store.js +108 -68
  223. package/node_modules/@maka/storage/dist/artifact-stores.js +78 -1
  224. package/node_modules/@maka/storage/dist/execution-record-codec.js +1 -22
  225. package/node_modules/@maka/storage/dist/execution-stores.js +10 -11
  226. package/node_modules/@maka/storage/dist/legacy-run-header.js +327 -0
  227. package/node_modules/@maka/storage/dist/operational-state-store.js +24 -1
  228. package/node_modules/@maka/storage/dist/runtime-event-persistence.js +5 -0
  229. package/node_modules/@maka/storage/dist/session-copy-cleanup.js +6 -4
  230. package/node_modules/@maka/storage/dist/sqlite-artifact-metadata.js +20 -5
  231. package/node_modules/@maka/storage/dist/sqlite-core-execution-schema.js +10 -2
  232. package/node_modules/@maka/storage/dist/sqlite-runtime-schema.js +283 -1
  233. package/node_modules/@maka/storage/dist/sqlite-runtime-store.js +239 -63
  234. package/node_modules/@maka/storage/dist/work-board-store.js +4 -4
  235. package/node_modules/@maka/storage/package.json +1 -1
  236. package/node_modules/@slack/types/dist/events/agent.js +3 -0
  237. package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/index.js +1 -0
  238. package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/package.json +1 -1
  239. package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/README.md +19 -27
  240. package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/methods.js +26 -0
  241. package/node_modules/@slack/web-api/dist/types/request/agents.js +3 -0
  242. package/node_modules/@slack/web-api/dist/types/request/blocks.js +3 -0
  243. package/node_modules/@slack/web-api/dist/types/response/AdminUsersGetExpirationResponse.js +11 -0
  244. package/node_modules/@slack/web-api/dist/types/response/AgentsSessionsRenameResponse.js +11 -0
  245. package/node_modules/@slack/web-api/dist/types/response/AgentsSessionsSetStatusResponse.js +11 -0
  246. package/node_modules/@slack/web-api/dist/types/response/BlocksValidateResponse.js +11 -0
  247. package/node_modules/@slack/web-api/dist/types/response/ChatAppendStreamResponse.js +11 -0
  248. package/node_modules/@slack/web-api/dist/types/response/ChatStartStreamResponse.js +11 -0
  249. package/node_modules/@slack/web-api/dist/types/response/ChatStopStreamResponse.js +48 -0
  250. package/node_modules/@slack/web-api/dist/types/response/PinsListResponse.js +67 -0
  251. package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/SearchAllResponse.js +1 -11
  252. package/node_modules/@slack/web-api/dist/types/response/SearchFilesResponse.js +48 -0
  253. package/node_modules/@slack/web-api/dist/types/response/SlackListsAccessDeleteResponse.js +11 -0
  254. package/node_modules/@slack/web-api/dist/types/response/SlackListsAccessSetResponse.js +11 -0
  255. package/node_modules/@slack/web-api/dist/types/response/SlackListsCreateResponse.js +11 -0
  256. package/node_modules/@slack/web-api/dist/types/response/SlackListsDownloadGetResponse.js +11 -0
  257. package/node_modules/@slack/web-api/dist/types/response/SlackListsDownloadStartResponse.js +11 -0
  258. package/node_modules/@slack/web-api/dist/types/response/SlackListsItemsCreateResponse.js +11 -0
  259. package/node_modules/@slack/web-api/dist/types/response/SlackListsItemsDeleteMultipleResponse.js +11 -0
  260. package/node_modules/@slack/web-api/dist/types/response/SlackListsItemsDeleteResponse.js +11 -0
  261. package/node_modules/@slack/web-api/dist/types/response/SlackListsItemsInfoResponse.js +11 -0
  262. package/node_modules/@slack/web-api/dist/types/response/SlackListsItemsListResponse.js +11 -0
  263. package/node_modules/@slack/web-api/dist/types/response/SlackListsItemsUpdateResponse.js +11 -0
  264. package/node_modules/@slack/web-api/dist/types/response/SlackListsUpdateResponse.js +11 -0
  265. package/node_modules/@slack/web-api/dist/types/response/WorkflowsFeaturedAddResponse.js +11 -0
  266. package/node_modules/@slack/web-api/dist/types/response/WorkflowsFeaturedListResponse.js +11 -0
  267. package/node_modules/@slack/web-api/dist/types/response/WorkflowsFeaturedRemoveResponse.js +11 -0
  268. package/node_modules/@slack/web-api/dist/types/response/WorkflowsFeaturedSetResponse.js +11 -0
  269. package/node_modules/@slack/web-api/node_modules/@types/retry/LICENSE +21 -0
  270. package/node_modules/@slack/web-api/node_modules/@types/retry/README.md +15 -0
  271. package/node_modules/@slack/web-api/node_modules/@types/retry/package.json +30 -0
  272. package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/package.json +8 -8
  273. package/node_modules/@types/node/README.md +1 -1
  274. package/node_modules/@types/node/package.json +2 -2
  275. package/node_modules/ai/CHANGELOG.md +148 -0
  276. package/node_modules/ai/dist/index.js +1718 -1042
  277. package/node_modules/ai/dist/internal/index.js +60 -72
  278. package/node_modules/ai/docs/02-foundations/02-providers-and-models.mdx +2 -3
  279. package/node_modules/ai/docs/03-agents/06-policy-tool-approvals.mdx +1 -1
  280. package/node_modules/ai/docs/03-agents/06-tool-approvals.mdx +6 -0
  281. package/node_modules/ai/docs/03-agents/07-workflow-agent.mdx +20 -7
  282. package/node_modules/ai/docs/03-ai-sdk-core/15-tools-and-tool-calling.mdx +6 -4
  283. package/node_modules/ai/docs/03-ai-sdk-core/35-image-generation.mdx +28 -12
  284. package/node_modules/ai/docs/03-ai-sdk-core/50-error-handling.mdx +17 -2
  285. package/node_modules/ai/docs/03-ai-sdk-core/60-telemetry.mdx +6 -4
  286. package/node_modules/ai/docs/03-ai-sdk-harnesses/02-harness-agent.mdx +149 -1
  287. package/node_modules/ai/docs/03-ai-sdk-harnesses/04-skills.mdx +6 -2
  288. package/node_modules/ai/docs/03-ai-sdk-harnesses/05-harness-adapters.mdx +4 -4
  289. package/node_modules/ai/docs/04-ai-sdk-ui/03-chatbot-tool-usage.mdx +6 -0
  290. package/node_modules/ai/docs/04-ai-sdk-ui/21-transport.mdx +6 -2
  291. package/node_modules/ai/docs/04-ai-sdk-ui/50-stream-protocol.mdx +2 -2
  292. package/node_modules/ai/docs/07-reference/01-ai-sdk-core/01-generate-text.mdx +1 -1
  293. package/node_modules/ai/docs/07-reference/01-ai-sdk-core/02-stream-text.mdx +15 -7
  294. package/node_modules/ai/docs/07-reference/01-ai-sdk-core/06-embed-many.mdx +6 -2
  295. package/node_modules/ai/docs/07-reference/01-ai-sdk-core/16-tool-loop-agent.mdx +1 -1
  296. package/node_modules/ai/docs/07-reference/01-ai-sdk-core/80-smooth-stream.mdx +4 -2
  297. package/node_modules/ai/docs/07-reference/02-ai-sdk-ui/31-convert-to-model-messages.mdx +2 -2
  298. package/node_modules/ai/docs/07-reference/02-ai-sdk-ui/40-create-ui-message-stream.mdx +35 -6
  299. package/node_modules/ai/docs/07-reference/04-ai-sdk-workflow/01-workflow-agent.mdx +15 -1
  300. package/node_modules/ai/docs/07-reference/04-ai-sdk-workflow/02-workflow-chat-transport.mdx +25 -11
  301. package/node_modules/ai/docs/07-reference/04-ai-sdk-workflow/03-generate-video.mdx +157 -0
  302. package/node_modules/ai/docs/07-reference/04-ai-sdk-workflow/index.mdx +6 -0
  303. package/node_modules/ai/docs/07-reference/05-ai-sdk-errors/ai-stream-provider-error.mdx +52 -0
  304. package/node_modules/ai/docs/07-reference/05-ai-sdk-errors/index.mdx +1 -0
  305. package/node_modules/ai/package.json +19 -9
  306. package/node_modules/fs-native-extensions/package.json +1 -1
  307. package/node_modules/fs-native-extensions/prebuilds/android-arm/fs-native-extensions.bare +0 -0
  308. package/node_modules/fs-native-extensions/prebuilds/android-arm64/fs-native-extensions.bare +0 -0
  309. package/node_modules/fs-native-extensions/prebuilds/android-ia32/fs-native-extensions.bare +0 -0
  310. package/node_modules/fs-native-extensions/prebuilds/android-x64/fs-native-extensions.bare +0 -0
  311. package/node_modules/fs-native-extensions/prebuilds/darwin-arm64/fs-native-extensions.bare +0 -0
  312. package/node_modules/fs-native-extensions/prebuilds/darwin-arm64/fs-native-extensions.node +0 -0
  313. package/node_modules/fs-native-extensions/prebuilds/darwin-x64/fs-native-extensions.bare +0 -0
  314. package/node_modules/fs-native-extensions/prebuilds/darwin-x64/fs-native-extensions.node +0 -0
  315. package/node_modules/fs-native-extensions/prebuilds/ios-arm64/fs-native-extensions.bare +0 -0
  316. package/node_modules/fs-native-extensions/prebuilds/ios-arm64-simulator/fs-native-extensions.bare +0 -0
  317. package/node_modules/fs-native-extensions/prebuilds/ios-x64-simulator/fs-native-extensions.bare +0 -0
  318. package/node_modules/fs-native-extensions/prebuilds/linux-arm64/fs-native-extensions.bare +0 -0
  319. package/node_modules/fs-native-extensions/prebuilds/linux-x64/fs-native-extensions.bare +0 -0
  320. package/node_modules/fs-native-extensions/prebuilds/win32-arm64/fs-native-extensions.bare +0 -0
  321. package/node_modules/fs-native-extensions/prebuilds/win32-arm64/fs-native-extensions.node +0 -0
  322. package/node_modules/fs-native-extensions/prebuilds/win32-x64/fs-native-extensions.bare +0 -0
  323. package/node_modules/fs-native-extensions/prebuilds/win32-x64/fs-native-extensions.node +0 -0
  324. package/node_modules/fs-native-extensions/src/win32.c +50 -11
  325. package/node_modules/systeminformation/LICENSE +20 -0
  326. package/node_modules/systeminformation/README.md +1251 -0
  327. package/node_modules/systeminformation/lib/audio.js +335 -0
  328. package/node_modules/systeminformation/lib/battery.js +334 -0
  329. package/node_modules/systeminformation/lib/bluetooth.js +315 -0
  330. package/node_modules/systeminformation/lib/bluetoothVendors.js +1138 -0
  331. package/node_modules/systeminformation/lib/cli.js +100 -0
  332. package/node_modules/systeminformation/lib/cpu.js +2285 -0
  333. package/node_modules/systeminformation/lib/docker.js +791 -0
  334. package/node_modules/systeminformation/lib/dockerSocket.js +117 -0
  335. package/node_modules/systeminformation/lib/filesystem.js +1853 -0
  336. package/node_modules/systeminformation/lib/graphics.js +1317 -0
  337. package/node_modules/systeminformation/lib/index.js +520 -0
  338. package/node_modules/systeminformation/lib/internet.js +265 -0
  339. package/node_modules/systeminformation/lib/memory.js +622 -0
  340. package/node_modules/systeminformation/lib/network.js +2008 -0
  341. package/node_modules/systeminformation/lib/osinfo.js +1290 -0
  342. package/node_modules/systeminformation/lib/printer.js +209 -0
  343. package/node_modules/systeminformation/lib/processes.js +1459 -0
  344. package/node_modules/systeminformation/lib/system.js +855 -0
  345. package/node_modules/systeminformation/lib/usb.js +309 -0
  346. package/node_modules/systeminformation/lib/users.js +412 -0
  347. package/node_modules/systeminformation/lib/util.js +2833 -0
  348. package/node_modules/systeminformation/lib/virtualbox.js +116 -0
  349. package/node_modules/systeminformation/lib/wifi.js +839 -0
  350. package/node_modules/systeminformation/package.json +102 -0
  351. package/node_modules/undici/docs/docs/api/Client.md +4 -0
  352. package/node_modules/undici/docs/docs/api/EnvHttpProxyAgent.md +3 -2
  353. package/node_modules/undici/docs/docs/api/EventSource.md +4 -0
  354. package/node_modules/undici/lib/cache/memory-cache-store.js +1 -1
  355. package/node_modules/undici/lib/dispatcher/agent.js +7 -2
  356. package/node_modules/undici/lib/dispatcher/balanced-pool.js +1 -1
  357. package/node_modules/undici/lib/dispatcher/client-h1.js +12 -4
  358. package/node_modules/undici/lib/dispatcher/client-h2.js +43 -3
  359. package/node_modules/undici/lib/dispatcher/client.js +3 -2
  360. package/node_modules/undici/lib/dispatcher/dispatcher-base.js +13 -1
  361. package/node_modules/undici/lib/dispatcher/dispatcher.js +10 -0
  362. package/node_modules/undici/lib/dispatcher/env-http-proxy-agent.js +10 -3
  363. package/node_modules/undici/lib/dispatcher/proxy-agent.js +1 -1
  364. package/node_modules/undici/lib/dispatcher/round-robin-pool.js +1 -1
  365. package/node_modules/undici/lib/dispatcher/socks5-proxy-agent.js +3 -1
  366. package/node_modules/undici/lib/handler/cache-handler.js +8 -0
  367. package/node_modules/undici/lib/handler/decorator-handler.js +7 -1
  368. package/node_modules/undici/lib/handler/deduplication-handler.js +12 -6
  369. package/node_modules/undici/lib/handler/redirect-handler.js +8 -0
  370. package/node_modules/undici/lib/handler/retry-handler.js +83 -11
  371. package/node_modules/undici/lib/interceptor/dump.js +1 -1
  372. package/node_modules/undici/lib/mock/mock-agent.js +13 -1
  373. package/node_modules/undici/lib/mock/mock-utils.js +11 -10
  374. package/node_modules/undici/lib/web/cookies/parse.js +4 -2
  375. package/node_modules/undici/lib/web/eventsource/eventsource-stream.js +28 -1
  376. package/node_modules/undici/lib/web/eventsource/eventsource.js +4 -1
  377. package/node_modules/undici/lib/web/fetch/request.js +2 -3
  378. package/node_modules/undici/package.json +3 -3
  379. package/node_modules/zod/README.md +27 -0
  380. package/node_modules/zod/compile.cjs +77 -0
  381. package/node_modules/zod/compile.js +52 -0
  382. package/node_modules/zod/index.cjs +2 -2
  383. package/node_modules/zod/index.js +5 -2
  384. package/node_modules/zod/package.json +13 -2
  385. package/node_modules/zod/v3/ZodError.cjs +22 -12
  386. package/node_modules/zod/v3/ZodError.js +22 -12
  387. package/node_modules/zod/v3/types.cjs +7 -5
  388. package/node_modules/zod/v3/types.js +7 -5
  389. package/node_modules/zod/v4/classic/checks.cjs +2 -1
  390. package/node_modules/zod/v4/classic/checks.js +1 -1
  391. package/node_modules/zod/v4/classic/deep-partial.cjs +39 -0
  392. package/node_modules/zod/v4/classic/deep-partial.js +13 -0
  393. package/node_modules/zod/v4/classic/errors.cjs +43 -34
  394. package/node_modules/zod/v4/classic/errors.js +43 -34
  395. package/node_modules/zod/v4/classic/external.cjs +30 -27
  396. package/node_modules/zod/v4/classic/external.js +5 -8
  397. package/node_modules/zod/v4/classic/from-json-schema.cjs +136 -75
  398. package/node_modules/zod/v4/classic/from-json-schema.js +136 -75
  399. package/node_modules/zod/v4/classic/in-out.cjs +63 -0
  400. package/node_modules/zod/v4/classic/in-out.js +36 -0
  401. package/node_modules/zod/v4/classic/index.cjs +2 -2
  402. package/node_modules/zod/v4/classic/index.js +2 -2
  403. package/node_modules/zod/v4/classic/iso.cjs +11 -22
  404. package/node_modules/zod/v4/classic/iso.js +2 -17
  405. package/node_modules/zod/v4/classic/parse.cjs +4 -1
  406. package/node_modules/zod/v4/classic/parse.js +1 -0
  407. package/node_modules/zod/v4/classic/schemas.cjs +498 -398
  408. package/node_modules/zod/v4/classic/schemas.js +492 -396
  409. package/node_modules/zod/v4/core/api.cjs +23 -4
  410. package/node_modules/zod/v4/core/api.js +21 -4
  411. package/node_modules/zod/v4/core/checks.cjs +37 -31
  412. package/node_modules/zod/v4/core/checks.js +37 -31
  413. package/node_modules/zod/v4/core/compile.cjs +1813 -0
  414. package/node_modules/zod/v4/core/compile.js +1783 -0
  415. package/node_modules/zod/v4/core/core.cjs +81 -18
  416. package/node_modules/zod/v4/core/core.js +82 -19
  417. package/node_modules/zod/v4/core/doc.cjs +5 -7
  418. package/node_modules/zod/v4/core/doc.js +5 -7
  419. package/node_modules/zod/v4/core/errors.cjs +110 -25
  420. package/node_modules/zod/v4/core/errors.js +110 -25
  421. package/node_modules/zod/v4/core/index.cjs +5 -1
  422. package/node_modules/zod/v4/core/index.js +3 -0
  423. package/node_modules/zod/v4/core/json-schema-generator.cjs +4 -0
  424. package/node_modules/zod/v4/core/json-schema-generator.js +4 -0
  425. package/node_modules/zod/v4/core/json-schema-processors.cjs +264 -95
  426. package/node_modules/zod/v4/core/json-schema-processors.js +243 -97
  427. package/node_modules/zod/v4/core/memoizer.cjs +272 -0
  428. package/node_modules/zod/v4/core/memoizer.js +265 -0
  429. package/node_modules/zod/v4/core/parse.cjs +96 -34
  430. package/node_modules/zod/v4/core/parse.js +94 -33
  431. package/node_modules/zod/v4/core/regexes.cjs +27 -15
  432. package/node_modules/zod/v4/core/regexes.js +24 -13
  433. package/node_modules/zod/v4/core/registries.js +2 -2
  434. package/node_modules/zod/v4/core/schemas.cjs +537 -326
  435. package/node_modules/zod/v4/core/schemas.js +526 -325
  436. package/node_modules/zod/v4/core/to-json-schema.cjs +242 -39
  437. package/node_modules/zod/v4/core/to-json-schema.js +241 -39
  438. package/node_modules/zod/v4/core/util.cjs +212 -31
  439. package/node_modules/zod/v4/core/util.js +202 -30
  440. package/node_modules/zod/v4/core/versions.cjs +2 -2
  441. package/node_modules/zod/v4/core/versions.js +2 -2
  442. package/node_modules/zod/v4/core/visit.cjs +195 -0
  443. package/node_modules/zod/v4/core/visit.js +169 -0
  444. package/node_modules/zod/v4/index.cjs +15 -5
  445. package/node_modules/zod/v4/index.js +3 -2
  446. package/node_modules/zod/v4/locales/ar.cjs +3 -0
  447. package/node_modules/zod/v4/locales/ar.js +3 -0
  448. package/node_modules/zod/v4/locales/az.cjs +3 -0
  449. package/node_modules/zod/v4/locales/az.js +3 -0
  450. package/node_modules/zod/v4/locales/be.cjs +10 -0
  451. package/node_modules/zod/v4/locales/be.js +10 -0
  452. package/node_modules/zod/v4/locales/bg.cjs +3 -0
  453. package/node_modules/zod/v4/locales/bg.js +3 -0
  454. package/node_modules/zod/v4/locales/bn.cjs +138 -0
  455. package/node_modules/zod/v4/locales/bn.js +111 -0
  456. package/node_modules/zod/v4/locales/ca.cjs +3 -0
  457. package/node_modules/zod/v4/locales/ca.js +3 -0
  458. package/node_modules/zod/v4/locales/ckb.cjs +158 -0
  459. package/node_modules/zod/v4/locales/ckb.js +131 -0
  460. package/node_modules/zod/v4/locales/cs.cjs +3 -0
  461. package/node_modules/zod/v4/locales/cs.js +3 -0
  462. package/node_modules/zod/v4/locales/da.cjs +5 -2
  463. package/node_modules/zod/v4/locales/da.js +5 -2
  464. package/node_modules/zod/v4/locales/de.cjs +3 -0
  465. package/node_modules/zod/v4/locales/de.js +3 -0
  466. package/node_modules/zod/v4/locales/el.cjs +1 -0
  467. package/node_modules/zod/v4/locales/el.js +1 -0
  468. package/node_modules/zod/v4/locales/en.cjs +14 -4
  469. package/node_modules/zod/v4/locales/en.js +14 -4
  470. package/node_modules/zod/v4/locales/eo.cjs +3 -0
  471. package/node_modules/zod/v4/locales/eo.js +3 -0
  472. package/node_modules/zod/v4/locales/es.cjs +2 -0
  473. package/node_modules/zod/v4/locales/es.js +2 -0
  474. package/node_modules/zod/v4/locales/fa.cjs +3 -0
  475. package/node_modules/zod/v4/locales/fa.js +3 -0
  476. package/node_modules/zod/v4/locales/fi.cjs +3 -0
  477. package/node_modules/zod/v4/locales/fi.js +3 -0
  478. package/node_modules/zod/v4/locales/fr-CA.cjs +3 -0
  479. package/node_modules/zod/v4/locales/fr-CA.js +3 -0
  480. package/node_modules/zod/v4/locales/fr.cjs +16 -14
  481. package/node_modules/zod/v4/locales/fr.js +16 -14
  482. package/node_modules/zod/v4/locales/gu.cjs +138 -0
  483. package/node_modules/zod/v4/locales/gu.js +111 -0
  484. package/node_modules/zod/v4/locales/he.cjs +5 -0
  485. package/node_modules/zod/v4/locales/he.js +5 -0
  486. package/node_modules/zod/v4/locales/hi.cjs +136 -0
  487. package/node_modules/zod/v4/locales/hi.js +109 -0
  488. package/node_modules/zod/v4/locales/hr.cjs +2 -0
  489. package/node_modules/zod/v4/locales/hr.js +2 -0
  490. package/node_modules/zod/v4/locales/hu.cjs +3 -0
  491. package/node_modules/zod/v4/locales/hu.js +3 -0
  492. package/node_modules/zod/v4/locales/hy.cjs +9 -0
  493. package/node_modules/zod/v4/locales/hy.js +9 -0
  494. package/node_modules/zod/v4/locales/id.cjs +3 -0
  495. package/node_modules/zod/v4/locales/id.js +3 -0
  496. package/node_modules/zod/v4/locales/index.cjs +22 -2
  497. package/node_modules/zod/v4/locales/index.js +10 -0
  498. package/node_modules/zod/v4/locales/is.cjs +3 -0
  499. package/node_modules/zod/v4/locales/is.js +3 -0
  500. package/node_modules/zod/v4/locales/it.cjs +3 -0
  501. package/node_modules/zod/v4/locales/it.js +3 -0
  502. package/node_modules/zod/v4/locales/ja.cjs +3 -0
  503. package/node_modules/zod/v4/locales/ja.js +3 -0
  504. package/node_modules/zod/v4/locales/ka.cjs +3 -0
  505. package/node_modules/zod/v4/locales/ka.js +3 -0
  506. package/node_modules/zod/v4/locales/km.cjs +3 -0
  507. package/node_modules/zod/v4/locales/km.js +3 -0
  508. package/node_modules/zod/v4/locales/kn.cjs +141 -0
  509. package/node_modules/zod/v4/locales/kn.js +114 -0
  510. package/node_modules/zod/v4/locales/ko.cjs +3 -0
  511. package/node_modules/zod/v4/locales/ko.js +3 -0
  512. package/node_modules/zod/v4/locales/lt.cjs +2 -0
  513. package/node_modules/zod/v4/locales/lt.js +2 -0
  514. package/node_modules/zod/v4/locales/mk.cjs +3 -0
  515. package/node_modules/zod/v4/locales/mk.js +3 -0
  516. package/node_modules/zod/v4/locales/ms.cjs +3 -0
  517. package/node_modules/zod/v4/locales/ms.js +3 -0
  518. package/node_modules/zod/v4/locales/ne.cjs +136 -0
  519. package/node_modules/zod/v4/locales/ne.js +109 -0
  520. package/node_modules/zod/v4/locales/nl.cjs +3 -0
  521. package/node_modules/zod/v4/locales/nl.js +3 -0
  522. package/node_modules/zod/v4/locales/nn.cjs +138 -0
  523. package/node_modules/zod/v4/locales/nn.js +111 -0
  524. package/node_modules/zod/v4/locales/no.cjs +5 -2
  525. package/node_modules/zod/v4/locales/no.js +5 -2
  526. package/node_modules/zod/v4/locales/ota.cjs +3 -0
  527. package/node_modules/zod/v4/locales/ota.js +3 -0
  528. package/node_modules/zod/v4/locales/pl.cjs +3 -0
  529. package/node_modules/zod/v4/locales/pl.js +3 -0
  530. package/node_modules/zod/v4/locales/ps.cjs +3 -0
  531. package/node_modules/zod/v4/locales/ps.js +3 -0
  532. package/node_modules/zod/v4/locales/pt-BR.cjs +168 -0
  533. package/node_modules/zod/v4/locales/pt-BR.js +141 -0
  534. package/node_modules/zod/v4/locales/pt.cjs +87 -55
  535. package/node_modules/zod/v4/locales/pt.js +87 -55
  536. package/node_modules/zod/v4/locales/ro.cjs +1 -0
  537. package/node_modules/zod/v4/locales/ro.js +1 -0
  538. package/node_modules/zod/v4/locales/ru.cjs +10 -0
  539. package/node_modules/zod/v4/locales/ru.js +10 -0
  540. package/node_modules/zod/v4/locales/sk.cjs +141 -0
  541. package/node_modules/zod/v4/locales/sk.js +114 -0
  542. package/node_modules/zod/v4/locales/sl.cjs +3 -0
  543. package/node_modules/zod/v4/locales/sl.js +3 -0
  544. package/node_modules/zod/v4/locales/sv.cjs +5 -2
  545. package/node_modules/zod/v4/locales/sv.js +5 -2
  546. package/node_modules/zod/v4/locales/ta.cjs +3 -0
  547. package/node_modules/zod/v4/locales/ta.js +3 -0
  548. package/node_modules/zod/v4/locales/th.cjs +3 -0
  549. package/node_modules/zod/v4/locales/th.js +3 -0
  550. package/node_modules/zod/v4/locales/tk.cjs +132 -0
  551. package/node_modules/zod/v4/locales/tk.js +105 -0
  552. package/node_modules/zod/v4/locales/tr.cjs +3 -0
  553. package/node_modules/zod/v4/locales/tr.js +3 -0
  554. package/node_modules/zod/v4/locales/uk.cjs +3 -0
  555. package/node_modules/zod/v4/locales/uk.js +3 -0
  556. package/node_modules/zod/v4/locales/ur.cjs +3 -0
  557. package/node_modules/zod/v4/locales/ur.js +3 -0
  558. package/node_modules/zod/v4/locales/uz.cjs +1 -0
  559. package/node_modules/zod/v4/locales/uz.js +1 -0
  560. package/node_modules/zod/v4/locales/vi.cjs +3 -0
  561. package/node_modules/zod/v4/locales/vi.js +3 -0
  562. package/node_modules/zod/v4/locales/yo.cjs +3 -0
  563. package/node_modules/zod/v4/locales/yo.js +3 -0
  564. package/node_modules/zod/v4/locales/zh-CN.cjs +3 -0
  565. package/node_modules/zod/v4/locales/zh-CN.js +3 -0
  566. package/node_modules/zod/v4/locales/zh-TW.cjs +3 -0
  567. package/node_modules/zod/v4/locales/zh-TW.js +3 -0
  568. package/node_modules/zod/v4/mini/checks.cjs +2 -1
  569. package/node_modules/zod/v4/mini/checks.js +1 -1
  570. package/node_modules/zod/v4/mini/deep-partial.cjs +39 -0
  571. package/node_modules/zod/v4/mini/deep-partial.js +13 -0
  572. package/node_modules/zod/v4/mini/external.cjs +12 -1
  573. package/node_modules/zod/v4/mini/external.js +3 -1
  574. package/node_modules/zod/v4/mini/in-out.cjs +63 -0
  575. package/node_modules/zod/v4/mini/in-out.js +36 -0
  576. package/node_modules/zod/v4/mini/parse.cjs +3 -1
  577. package/node_modules/zod/v4/mini/parse.js +1 -1
  578. package/node_modules/zod/v4/mini/schemas.cjs +75 -47
  579. package/node_modules/zod/v4/mini/schemas.js +71 -45
  580. package/package.json +3 -3
  581. package/dist/runtime-host-windows-task-runner.js +0 -90
  582. package/node_modules/@ai-sdk/open-responses/node_modules/@ai-sdk/provider/CHANGELOG.md +0 -1224
  583. package/node_modules/@ai-sdk/open-responses/node_modules/@ai-sdk/provider/LICENSE +0 -13
  584. package/node_modules/@ai-sdk/open-responses/node_modules/@ai-sdk/provider/README.md +0 -1
  585. package/node_modules/@ai-sdk/open-responses/node_modules/@ai-sdk/provider/dist/index.js +0 -426
  586. package/node_modules/@ai-sdk/open-responses/node_modules/@ai-sdk/provider/package.json +0 -63
  587. package/node_modules/@ai-sdk/open-responses/node_modules/@ai-sdk/provider-utils/CHANGELOG.md +0 -2444
  588. package/node_modules/@ai-sdk/open-responses/node_modules/@ai-sdk/provider-utils/README.md +0 -1
  589. package/node_modules/@ai-sdk/open-responses/node_modules/@ai-sdk/provider-utils/dist/index.js +0 -4295
  590. package/node_modules/@ai-sdk/open-responses/node_modules/@ai-sdk/provider-utils/package.json +0 -82
  591. package/node_modules/@ai-sdk/open-responses/node_modules/@ai-sdk/provider-utils/src/to-json-schema/zod3-to-json-schema/LICENSE +0 -16
  592. package/node_modules/@ai-sdk/open-responses/node_modules/@ai-sdk/provider-utils/src/to-json-schema/zod3-to-json-schema/README.md +0 -24
  593. package/node_modules/@ai-sdk/open-responses/node_modules/undici/LICENSE +0 -21
  594. package/node_modules/@ai-sdk/open-responses/node_modules/undici/README.md +0 -741
  595. package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/Agent.md +0 -84
  596. package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/BalancedPool.md +0 -99
  597. package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/CacheStorage.md +0 -30
  598. package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/CacheStore.md +0 -164
  599. package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/Client.md +0 -288
  600. package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/ClientStats.md +0 -27
  601. package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/Connector.md +0 -115
  602. package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/ContentType.md +0 -57
  603. package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/Cookies.md +0 -128
  604. package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/Debug.md +0 -62
  605. package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/DiagnosticsChannel.md +0 -315
  606. package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/Dispatcher.md +0 -1392
  607. package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/EnvHttpProxyAgent.md +0 -159
  608. package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/Errors.md +0 -49
  609. package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/EventSource.md +0 -45
  610. package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/Fetch.md +0 -60
  611. package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/GlobalInstallation.md +0 -139
  612. package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/H2CClient.md +0 -263
  613. package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/MockAgent.md +0 -603
  614. package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/MockCallHistory.md +0 -197
  615. package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/MockCallHistoryLog.md +0 -43
  616. package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/MockClient.md +0 -81
  617. package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/MockErrors.md +0 -12
  618. package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/MockPool.md +0 -555
  619. package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/Pool.md +0 -84
  620. package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/PoolStats.md +0 -35
  621. package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/ProxyAgent.md +0 -229
  622. package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/RedirectHandler.md +0 -93
  623. package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/RetryAgent.md +0 -50
  624. package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/RetryHandler.md +0 -118
  625. package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/RoundRobinPool.md +0 -145
  626. package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/SnapshotAgent.md +0 -616
  627. package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/Socks5ProxyAgent.md +0 -275
  628. package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/Util.md +0 -25
  629. package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/WebSocket.md +0 -141
  630. package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/api-lifecycle.md +0 -91
  631. package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/best-practices/client-certificate.md +0 -64
  632. package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/best-practices/crawling.md +0 -58
  633. package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/best-practices/mocking-request.md +0 -190
  634. package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/best-practices/proxy.md +0 -127
  635. package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/best-practices/undici-vs-builtin-fetch.md +0 -224
  636. package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/best-practices/writing-tests.md +0 -63
  637. package/node_modules/@ai-sdk/open-responses/node_modules/undici/index-fetch.js +0 -65
  638. package/node_modules/@ai-sdk/open-responses/node_modules/undici/index.js +0 -234
  639. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/api/abort-signal.js +0 -59
  640. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/api/api-connect.js +0 -110
  641. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/api/api-pipeline.js +0 -252
  642. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/api/api-request.js +0 -214
  643. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/api/api-stream.js +0 -209
  644. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/api/api-upgrade.js +0 -111
  645. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/api/index.js +0 -7
  646. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/api/readable.js +0 -580
  647. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/cache/memory-cache-store.js +0 -279
  648. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/cache/sqlite-cache-store.js +0 -467
  649. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/core/connect.js +0 -153
  650. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/core/constants.js +0 -143
  651. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/core/diagnostics.js +0 -227
  652. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/core/errors.js +0 -477
  653. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/core/request.js +0 -464
  654. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/core/socks5-client.js +0 -422
  655. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/core/socks5-utils.js +0 -212
  656. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/core/symbols.js +0 -75
  657. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/core/tree.js +0 -160
  658. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/core/util.js +0 -992
  659. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/dispatcher/agent.js +0 -158
  660. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/dispatcher/balanced-pool.js +0 -219
  661. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/dispatcher/client-h1.js +0 -1731
  662. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/dispatcher/client-h2.js +0 -995
  663. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/dispatcher/client.js +0 -664
  664. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/dispatcher/dispatcher-base.js +0 -184
  665. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/dispatcher/dispatcher.js +0 -48
  666. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/dispatcher/env-http-proxy-agent.js +0 -146
  667. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/dispatcher/fixed-queue.js +0 -135
  668. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/dispatcher/h2c-client.js +0 -51
  669. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/dispatcher/pool-base.js +0 -214
  670. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/dispatcher/pool.js +0 -118
  671. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/dispatcher/proxy-agent.js +0 -319
  672. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/dispatcher/retry-agent.js +0 -35
  673. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/dispatcher/round-robin-pool.js +0 -137
  674. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/dispatcher/socks5-proxy-agent.js +0 -260
  675. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/encoding/index.js +0 -33
  676. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/global.js +0 -59
  677. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/handler/cache-handler.js +0 -760
  678. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/handler/cache-revalidation-handler.js +0 -124
  679. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/handler/decorator-handler.js +0 -67
  680. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/handler/deduplication-handler.js +0 -460
  681. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/handler/redirect-handler.js +0 -238
  682. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/handler/retry-handler.js +0 -418
  683. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/handler/unwrap-handler.js +0 -106
  684. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/handler/wrap-handler.js +0 -105
  685. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/interceptor/cache.js +0 -602
  686. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/interceptor/decompress.js +0 -259
  687. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/interceptor/deduplicate.js +0 -117
  688. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/interceptor/dns.js +0 -571
  689. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/interceptor/dump.js +0 -112
  690. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/interceptor/redirect.js +0 -21
  691. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/interceptor/response-error.js +0 -95
  692. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/interceptor/retry.js +0 -19
  693. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/llhttp/.gitkeep +0 -0
  694. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/llhttp/constants.js +0 -531
  695. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/llhttp/llhttp-wasm.js +0 -15
  696. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/llhttp/llhttp_simd-wasm.js +0 -15
  697. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/llhttp/utils.js +0 -12
  698. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/mock/mock-agent.js +0 -232
  699. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/mock/mock-call-history.js +0 -248
  700. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/mock/mock-client.js +0 -68
  701. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/mock/mock-errors.js +0 -29
  702. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/mock/mock-interceptor.js +0 -209
  703. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/mock/mock-pool.js +0 -68
  704. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/mock/mock-symbols.js +0 -32
  705. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/mock/mock-utils.js +0 -486
  706. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/mock/pending-interceptors-formatter.js +0 -43
  707. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/mock/snapshot-agent.js +0 -353
  708. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/mock/snapshot-recorder.js +0 -588
  709. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/mock/snapshot-utils.js +0 -158
  710. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/util/cache.js +0 -676
  711. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/util/date.js +0 -670
  712. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/util/promise.js +0 -28
  713. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/util/runtime-features.js +0 -124
  714. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/util/stats.js +0 -32
  715. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/util/timers.js +0 -425
  716. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/cache/cache.js +0 -864
  717. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/cache/cachestorage.js +0 -152
  718. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/cache/util.js +0 -45
  719. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/cookies/constants.js +0 -12
  720. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/cookies/index.js +0 -199
  721. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/cookies/parse.js +0 -314
  722. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/cookies/util.js +0 -352
  723. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/eventsource/eventsource-stream.js +0 -399
  724. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/eventsource/eventsource.js +0 -501
  725. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/eventsource/util.js +0 -29
  726. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/fetch/LICENSE +0 -21
  727. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/fetch/body.js +0 -509
  728. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/fetch/constants.js +0 -131
  729. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/fetch/data-url.js +0 -596
  730. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/fetch/formdata-parser.js +0 -586
  731. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/fetch/formdata.js +0 -259
  732. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/fetch/global.js +0 -40
  733. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/fetch/headers.js +0 -719
  734. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/fetch/index.js +0 -2413
  735. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/fetch/request.js +0 -1115
  736. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/fetch/response.js +0 -641
  737. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/fetch/util.js +0 -1522
  738. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/infra/index.js +0 -229
  739. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/subresource-integrity/Readme.md +0 -9
  740. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/subresource-integrity/subresource-integrity.js +0 -307
  741. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/webidl/index.js +0 -1006
  742. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/websocket/connection.js +0 -329
  743. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/websocket/constants.js +0 -126
  744. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/websocket/events.js +0 -331
  745. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/websocket/frame.js +0 -133
  746. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/websocket/permessage-deflate.js +0 -100
  747. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/websocket/receiver.js +0 -507
  748. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/websocket/sender.js +0 -109
  749. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/websocket/stream/websocketerror.js +0 -104
  750. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/websocket/stream/websocketstream.js +0 -498
  751. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/websocket/util.js +0 -347
  752. package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/websocket/websocket.js +0 -758
  753. package/node_modules/@ai-sdk/open-responses/node_modules/undici/package.json +0 -152
  754. package/node_modules/@ai-sdk/open-responses/node_modules/undici/scripts/strip-comments.js +0 -10
  755. package/node_modules/@ai-sdk/open-responses/node_modules/undici/types/README.md +0 -6
  756. package/node_modules/@maka/runtime/node_modules/@slack/web-api/dist/types/response/ChatAppendStreamResponse.js +0 -3
  757. package/node_modules/@maka/runtime/node_modules/@slack/web-api/dist/types/response/ChatStartStreamResponse.js +0 -3
  758. package/node_modules/@maka/runtime/node_modules/@slack/web-api/dist/types/response/ChatStopStreamResponse.js +0 -3
  759. package/node_modules/@maka/runtime/node_modules/@slack/web-api/dist/types/response/PinsListResponse.js +0 -37
  760. package/node_modules/@maka/runtime/node_modules/@slack/web-api/dist/types/response/SearchFilesResponse.js +0 -63
  761. package/node_modules/@maka/runtime/node_modules/@slack/web-api/dist/types/response/SlackListsAccessDeleteResponse.js +0 -3
  762. package/node_modules/@maka/runtime/node_modules/@slack/web-api/dist/types/response/SlackListsAccessSetResponse.js +0 -3
  763. package/node_modules/@maka/runtime/node_modules/@slack/web-api/dist/types/response/SlackListsCreateResponse.js +0 -3
  764. package/node_modules/@maka/runtime/node_modules/@slack/web-api/dist/types/response/SlackListsDownloadGetResponse.js +0 -3
  765. package/node_modules/@maka/runtime/node_modules/@slack/web-api/dist/types/response/SlackListsDownloadStartResponse.js +0 -3
  766. package/node_modules/@maka/runtime/node_modules/@slack/web-api/dist/types/response/SlackListsItemsCreateResponse.js +0 -3
  767. package/node_modules/@maka/runtime/node_modules/@slack/web-api/dist/types/response/SlackListsItemsDeleteMultipleResponse.js +0 -3
  768. package/node_modules/@maka/runtime/node_modules/@slack/web-api/dist/types/response/SlackListsItemsDeleteResponse.js +0 -3
  769. package/node_modules/@maka/runtime/node_modules/@slack/web-api/dist/types/response/SlackListsItemsInfoResponse.js +0 -3
  770. package/node_modules/@maka/runtime/node_modules/@slack/web-api/dist/types/response/SlackListsItemsListResponse.js +0 -3
  771. package/node_modules/@maka/runtime/node_modules/@slack/web-api/dist/types/response/SlackListsItemsUpdateResponse.js +0 -3
  772. package/node_modules/@maka/runtime/node_modules/@slack/web-api/dist/types/response/SlackListsUpdateResponse.js +0 -3
  773. package/node_modules/@maka/runtime/node_modules/@slack/web-api/dist/types/response/WorkflowsFeaturedAddResponse.js +0 -3
  774. package/node_modules/@maka/runtime/node_modules/@slack/web-api/dist/types/response/WorkflowsFeaturedListResponse.js +0 -3
  775. package/node_modules/@maka/runtime/node_modules/@slack/web-api/dist/types/response/WorkflowsFeaturedRemoveResponse.js +0 -3
  776. package/node_modules/@maka/runtime/node_modules/@slack/web-api/dist/types/response/WorkflowsFeaturedSetResponse.js +0 -3
  777. /package/node_modules/{@formatjs → @maka/core/node_modules/@formatjs}/icu-messageformat-parser/LICENSE.md +0 -0
  778. /package/node_modules/{@formatjs → @maka/core/node_modules/@formatjs}/icu-messageformat-parser/README.md +0 -0
  779. /package/node_modules/{intl-messageformat → @maka/core/node_modules/intl-messageformat}/LICENSE.md +0 -0
  780. /package/node_modules/{intl-messageformat → @maka/core/node_modules/intl-messageformat}/README.md +0 -0
  781. /package/node_modules/{intl-messageformat → @maka/core/node_modules/intl-messageformat}/index.js +0 -0
  782. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/logger/LICENSE +0 -0
  783. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/logger/README.md +0 -0
  784. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/logger/dist/index.js +0 -0
  785. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/logger/package.json +0 -0
  786. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/LICENSE +0 -0
  787. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/README.md +0 -0
  788. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/block-kit/block-elements.js +0 -0
  789. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/block-kit/blocks.js +0 -0
  790. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/block-kit/composition-objects.js +0 -0
  791. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/block-kit/extensions.js +0 -0
  792. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/calls.js +0 -0
  793. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/chunk.js +0 -0
  794. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/common/bot-profile.js +0 -0
  795. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/common/status-emoji-display-info.js +0 -0
  796. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/dialog.js +0 -0
  797. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/app.js +0 -0
  798. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/assistant.js +0 -0
  799. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/call.js +0 -0
  800. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/channel.js +0 -0
  801. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/dnd.js +0 -0
  802. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/email.js +0 -0
  803. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/emoji.js +0 -0
  804. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/entity-details-requested.js +0 -0
  805. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/file.js +0 -0
  806. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/function.js +0 -0
  807. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/grid-migration.js +0 -0
  808. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/group.js +0 -0
  809. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/im.js +0 -0
  810. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/invite.js +0 -0
  811. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/link-shared.js +0 -0
  812. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/member.js +0 -0
  813. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/message-metadata.js +0 -0
  814. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/message.js +0 -0
  815. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/pin.js +0 -0
  816. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/reaction.js +0 -0
  817. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/shared-channel.js +0 -0
  818. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/star.js +0 -0
  819. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/steps-from-apps.js +0 -0
  820. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/subteam.js +0 -0
  821. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/team.js +0 -0
  822. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/token.js +0 -0
  823. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/user.js +0 -0
  824. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/index.js +0 -0
  825. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/message-attachments.js +0 -0
  826. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/message-metadata.js +0 -0
  827. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/views.js +0 -0
  828. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/LICENSE +0 -0
  829. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/WebClient.js +0 -0
  830. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/chat-stream.js +0 -0
  831. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/errors.js +0 -0
  832. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/file-upload.js +0 -0
  833. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/helpers.js +0 -0
  834. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/index.js +0 -0
  835. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/instrument.js +0 -0
  836. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/logger.js +0 -0
  837. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/retry-policies.js +0 -0
  838. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/helpers.js +0 -0
  839. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/admin/analytics.js +0 -0
  840. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/admin/apps.js +0 -0
  841. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/admin/auth.js +0 -0
  842. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/admin/barriers.js +0 -0
  843. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/admin/conversations.js +0 -0
  844. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/admin/emoji.js +0 -0
  845. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/admin/functions.js +0 -0
  846. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/admin/inviteRequests.js +0 -0
  847. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/admin/roles.js +0 -0
  848. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/admin/teams.js +0 -0
  849. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/admin/usergroups.js +0 -0
  850. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/admin/users.js +0 -0
  851. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/admin/workflows.js +0 -0
  852. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/api.js +0 -0
  853. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/apps.js +0 -0
  854. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/assistant.js +0 -0
  855. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/auth.js +0 -0
  856. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/bookmarks.js +0 -0
  857. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/bots.js +0 -0
  858. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/calls.js +0 -0
  859. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/canvas.js +0 -0
  860. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/chat.js +0 -0
  861. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/common.js +0 -0
  862. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/conversations.js +0 -0
  863. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/dialog.js +0 -0
  864. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/dnd.js +0 -0
  865. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/emoji.js +0 -0
  866. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/entity.js +0 -0
  867. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/files.js +0 -0
  868. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/functions.js +0 -0
  869. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/index.js +0 -0
  870. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/manifest.js +0 -0
  871. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/migration.js +0 -0
  872. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/oauth.js +0 -0
  873. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/openid.js +0 -0
  874. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/pins.js +0 -0
  875. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/reactions.js +0 -0
  876. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/reminders.js +0 -0
  877. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/rtm.js +0 -0
  878. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/search.js +0 -0
  879. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/slackLists.js +0 -0
  880. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/stars.js +0 -0
  881. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/team.js +0 -0
  882. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/tooling.js +0 -0
  883. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/usergroups.js +0 -0
  884. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/users.js +0 -0
  885. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/views.js +0 -0
  886. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/workflows.js +0 -0
  887. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminAnalyticsGetFileResponse.js +0 -0
  888. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminAppsActivitiesListResponse.js +0 -0
  889. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminAppsApproveResponse.js +0 -0
  890. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminAppsApprovedListResponse.js +0 -0
  891. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminAppsClearResolutionResponse.js +0 -0
  892. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminAppsConfigLookupResponse.js +0 -0
  893. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminAppsConfigSetResponse.js +0 -0
  894. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminAppsRequestsCancelResponse.js +0 -0
  895. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminAppsRequestsListResponse.js +0 -0
  896. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminAppsRestrictResponse.js +0 -0
  897. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminAppsRestrictedListResponse.js +0 -0
  898. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminAppsUninstallResponse.js +0 -0
  899. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminAuthPolicyAssignEntitiesResponse.js +0 -0
  900. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminAuthPolicyGetEntitiesResponse.js +0 -0
  901. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminAuthPolicyRemoveEntitiesResponse.js +0 -0
  902. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminBarriersCreateResponse.js +0 -0
  903. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminBarriersDeleteResponse.js +0 -0
  904. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminBarriersListResponse.js +0 -0
  905. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminBarriersUpdateResponse.js +0 -0
  906. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsArchiveResponse.js +0 -0
  907. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsBulkArchiveResponse.js +0 -0
  908. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsBulkDeleteResponse.js +0 -0
  909. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsBulkMoveResponse.js +0 -0
  910. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsConvertToPrivateResponse.js +0 -0
  911. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsConvertToPublicResponse.js +0 -0
  912. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsCreateResponse.js +0 -0
  913. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsDeleteResponse.js +0 -0
  914. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsDisconnectSharedResponse.js +0 -0
  915. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsEkmListOriginalConnectedChannelInfoResponse.js +0 -0
  916. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsGetConversationPrefsResponse.js +0 -0
  917. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsGetCustomRetentionResponse.js +0 -0
  918. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsGetTeamsResponse.js +0 -0
  919. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsInviteResponse.js +0 -0
  920. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsLookupResponse.js +0 -0
  921. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsRemoveCustomRetentionResponse.js +0 -0
  922. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsRenameResponse.js +0 -0
  923. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsRestrictAccessAddGroupResponse.js +0 -0
  924. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsRestrictAccessListGroupsResponse.js +0 -0
  925. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsRestrictAccessRemoveGroupResponse.js +0 -0
  926. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsSearchResponse.js +0 -0
  927. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsSetConversationPrefsResponse.js +0 -0
  928. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsSetCustomRetentionResponse.js +0 -0
  929. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsSetTeamsResponse.js +0 -0
  930. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsUnarchiveResponse.js +0 -0
  931. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsWhitelistAddResponse.js +0 -0
  932. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsWhitelistListGroupsLinkedToChannelResponse.js +0 -0
  933. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsWhitelistRemoveResponse.js +0 -0
  934. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminEmojiAddAliasResponse.js +0 -0
  935. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminEmojiAddResponse.js +0 -0
  936. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminEmojiListResponse.js +0 -0
  937. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminEmojiRemoveResponse.js +0 -0
  938. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminEmojiRenameResponse.js +0 -0
  939. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminFunctionsListResponse.js +0 -0
  940. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminFunctionsPermissionsLookupResponse.js +0 -0
  941. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminFunctionsPermissionsSetResponse.js +0 -0
  942. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminInviteRequestsApproveResponse.js +0 -0
  943. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminInviteRequestsApprovedListResponse.js +0 -0
  944. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminInviteRequestsDeniedListResponse.js +0 -0
  945. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminInviteRequestsDenyResponse.js +0 -0
  946. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminInviteRequestsListResponse.js +0 -0
  947. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminRolesAddAssignmentsResponse.js +0 -0
  948. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminRolesListAssignmentsResponse.js +0 -0
  949. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminRolesRemoveAssignmentsResponse.js +0 -0
  950. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminTeamsAdminsListResponse.js +0 -0
  951. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminTeamsCreateResponse.js +0 -0
  952. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminTeamsListResponse.js +0 -0
  953. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminTeamsOwnersListResponse.js +0 -0
  954. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminTeamsSettingsInfoResponse.js +0 -0
  955. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminTeamsSettingsSetDefaultChannelsResponse.js +0 -0
  956. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminTeamsSettingsSetDescriptionResponse.js +0 -0
  957. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminTeamsSettingsSetDiscoverabilityResponse.js +0 -0
  958. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminTeamsSettingsSetIconResponse.js +0 -0
  959. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminTeamsSettingsSetNameResponse.js +0 -0
  960. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminUsergroupsAddChannelsResponse.js +0 -0
  961. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminUsergroupsAddTeamsResponse.js +0 -0
  962. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminUsergroupsListChannelsResponse.js +0 -0
  963. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminUsergroupsRemoveChannelsResponse.js +0 -0
  964. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminUsersAssignResponse.js +0 -0
  965. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminUsersInviteResponse.js +0 -0
  966. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminUsersListResponse.js +0 -0
  967. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminUsersRemoveResponse.js +0 -0
  968. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminUsersSessionClearSettingsResponse.js +0 -0
  969. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminUsersSessionGetSettingsResponse.js +0 -0
  970. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminUsersSessionInvalidateResponse.js +0 -0
  971. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminUsersSessionListResponse.js +0 -0
  972. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminUsersSessionResetBulkResponse.js +0 -0
  973. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminUsersSessionResetResponse.js +0 -0
  974. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminUsersSessionSetSettingsResponse.js +0 -0
  975. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminUsersSetAdminResponse.js +0 -0
  976. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminUsersSetExpirationResponse.js +0 -0
  977. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminUsersSetOwnerResponse.js +0 -0
  978. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminUsersSetRegularResponse.js +0 -0
  979. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminUsersUnsupportedVersionsExportResponse.js +0 -0
  980. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminWorkflowsCollaboratorsAddResponse.js +0 -0
  981. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminWorkflowsCollaboratorsRemoveResponse.js +0 -0
  982. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminWorkflowsPermissionsLookupResponse.js +0 -0
  983. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminWorkflowsSearchResponse.js +0 -0
  984. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminWorkflowsUnpublishResponse.js +0 -0
  985. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ApiTestResponse.js +0 -0
  986. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AppsConnectionsOpenResponse.js +0 -0
  987. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AppsEventAuthorizationsListResponse.js +0 -0
  988. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AppsManifestCreateResponse.js +0 -0
  989. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AppsManifestDeleteResponse.js +0 -0
  990. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AppsManifestExportResponse.js +0 -0
  991. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AppsManifestUpdateResponse.js +0 -0
  992. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AppsManifestValidateResponse.js +0 -0
  993. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AppsPermissionsInfoResponse.js +0 -0
  994. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AppsPermissionsRequestResponse.js +0 -0
  995. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AppsPermissionsResourcesListResponse.js +0 -0
  996. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AppsPermissionsScopesListResponse.js +0 -0
  997. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AppsPermissionsUsersListResponse.js +0 -0
  998. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AppsPermissionsUsersRequestResponse.js +0 -0
  999. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AppsUninstallResponse.js +0 -0
  1000. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AppsUserConnectionUpdateResponse.js +0 -0
  1001. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AssistantThreadsSetStatusResponse.js +0 -0
  1002. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AssistantThreadsSetSuggestedPromptsResponse.js +0 -0
  1003. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AssistantThreadsSetTitleResponse.js +0 -0
  1004. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AuthRevokeResponse.js +0 -0
  1005. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AuthTeamsListResponse.js +0 -0
  1006. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AuthTestResponse.js +0 -0
  1007. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/BookmarksAddResponse.js +0 -0
  1008. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/BookmarksEditResponse.js +0 -0
  1009. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/BookmarksListResponse.js +0 -0
  1010. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/BookmarksRemoveResponse.js +0 -0
  1011. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/BotsInfoResponse.js +0 -0
  1012. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/CallsAddResponse.js +0 -0
  1013. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/CallsEndResponse.js +0 -0
  1014. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/CallsInfoResponse.js +0 -0
  1015. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/CallsParticipantsAddResponse.js +0 -0
  1016. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/CallsParticipantsRemoveResponse.js +0 -0
  1017. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/CallsUpdateResponse.js +0 -0
  1018. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/CanvasesAccessDeleteResponse.js +0 -0
  1019. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/CanvasesAccessSetResponse.js +0 -0
  1020. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/CanvasesCreateResponse.js +0 -0
  1021. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/CanvasesDeleteResponse.js +0 -0
  1022. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/CanvasesEditResponse.js +0 -0
  1023. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/CanvasesSectionsLookupResponse.js +0 -0
  1024. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChannelsArchiveResponse.js +0 -0
  1025. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChannelsCreateResponse.js +0 -0
  1026. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChannelsHistoryResponse.js +0 -0
  1027. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChannelsInfoResponse.js +0 -0
  1028. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChannelsInviteResponse.js +0 -0
  1029. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChannelsJoinResponse.js +0 -0
  1030. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChannelsKickResponse.js +0 -0
  1031. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChannelsLeaveResponse.js +0 -0
  1032. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChannelsListResponse.js +0 -0
  1033. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChannelsMarkResponse.js +0 -0
  1034. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChannelsRenameResponse.js +0 -0
  1035. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChannelsRepliesResponse.js +0 -0
  1036. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChannelsSetPurposeResponse.js +0 -0
  1037. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChannelsSetTopicResponse.js +0 -0
  1038. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChannelsUnarchiveResponse.js +0 -0
  1039. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChatDeleteResponse.js +0 -0
  1040. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChatDeleteScheduledMessageResponse.js +0 -0
  1041. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChatGetPermalinkResponse.js +0 -0
  1042. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChatMeMessageResponse.js +0 -0
  1043. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChatPostEphemeralResponse.js +0 -0
  1044. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChatPostMessageResponse.js +0 -0
  1045. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChatScheduleMessageResponse.js +0 -0
  1046. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChatScheduledMessagesListResponse.js +0 -0
  1047. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChatUnfurlResponse.js +0 -0
  1048. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChatUpdateResponse.js +0 -0
  1049. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsAcceptSharedInviteResponse.js +0 -0
  1050. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsApproveSharedInviteResponse.js +0 -0
  1051. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsArchiveResponse.js +0 -0
  1052. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsCanvasesCreateResponse.js +0 -0
  1053. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsCloseResponse.js +0 -0
  1054. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsCreateResponse.js +0 -0
  1055. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsDeclineSharedInviteResponse.js +0 -0
  1056. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsExternalInvitePermissionsSetResponse.js +0 -0
  1057. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsHistoryResponse.js +0 -0
  1058. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsInfoResponse.js +0 -0
  1059. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsInviteResponse.js +0 -0
  1060. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsInviteSharedResponse.js +0 -0
  1061. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsJoinResponse.js +0 -0
  1062. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsKickResponse.js +0 -0
  1063. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsLeaveResponse.js +0 -0
  1064. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsListConnectInvitesResponse.js +0 -0
  1065. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsListResponse.js +0 -0
  1066. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsMarkResponse.js +0 -0
  1067. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsMembersResponse.js +0 -0
  1068. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsOpenResponse.js +0 -0
  1069. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsRenameResponse.js +0 -0
  1070. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsRepliesResponse.js +0 -0
  1071. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsRequestSharedInviteApproveResponse.js +0 -0
  1072. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsRequestSharedInviteDenyResponse.js +0 -0
  1073. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsRequestSharedInviteListResponse.js +0 -0
  1074. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsSetPurposeResponse.js +0 -0
  1075. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsSetTopicResponse.js +0 -0
  1076. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsUnarchiveResponse.js +0 -0
  1077. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/DialogOpenResponse.js +0 -0
  1078. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/DndEndDndResponse.js +0 -0
  1079. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/DndEndSnoozeResponse.js +0 -0
  1080. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/DndInfoResponse.js +0 -0
  1081. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/DndSetSnoozeResponse.js +0 -0
  1082. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/DndTeamInfoResponse.js +0 -0
  1083. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/EmojiListResponse.js +0 -0
  1084. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/EntityPresentDetailsResponse.js +0 -0
  1085. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/FilesCommentsAddResponse.js +0 -0
  1086. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/FilesCommentsDeleteResponse.js +0 -0
  1087. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/FilesCommentsEditResponse.js +0 -0
  1088. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/FilesCompleteUploadExternalResponse.js +0 -0
  1089. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/FilesDeleteResponse.js +0 -0
  1090. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/FilesGetUploadURLExternalResponse.js +0 -0
  1091. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/FilesInfoResponse.js +0 -0
  1092. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/FilesListResponse.js +0 -0
  1093. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/FilesRemoteAddResponse.js +0 -0
  1094. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/FilesRemoteInfoResponse.js +0 -0
  1095. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/FilesRemoteListResponse.js +0 -0
  1096. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/FilesRemoteRemoveResponse.js +0 -0
  1097. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/FilesRemoteShareResponse.js +0 -0
  1098. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/FilesRemoteUpdateResponse.js +0 -0
  1099. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/FilesRevokePublicURLResponse.js +0 -0
  1100. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/FilesSharedPublicURLResponse.js +0 -0
  1101. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/FilesUploadResponse.js +0 -0
  1102. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/FunctionsCompleteErrorResponse.js +0 -0
  1103. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/FunctionsCompleteSuccessResponse.js +0 -0
  1104. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/GroupsArchiveResponse.js +0 -0
  1105. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/GroupsCloseResponse.js +0 -0
  1106. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/GroupsCreateChildResponse.js +0 -0
  1107. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/GroupsCreateResponse.js +0 -0
  1108. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/GroupsHistoryResponse.js +0 -0
  1109. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/GroupsInfoResponse.js +0 -0
  1110. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/GroupsInviteResponse.js +0 -0
  1111. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/GroupsKickResponse.js +0 -0
  1112. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/GroupsLeaveResponse.js +0 -0
  1113. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/GroupsListResponse.js +0 -0
  1114. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/GroupsMarkResponse.js +0 -0
  1115. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/GroupsOpenResponse.js +0 -0
  1116. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/GroupsRenameResponse.js +0 -0
  1117. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/GroupsRepliesResponse.js +0 -0
  1118. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/GroupsSetPurposeResponse.js +0 -0
  1119. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/GroupsSetTopicResponse.js +0 -0
  1120. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/GroupsUnarchiveResponse.js +0 -0
  1121. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ImCloseResponse.js +0 -0
  1122. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ImHistoryResponse.js +0 -0
  1123. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ImListResponse.js +0 -0
  1124. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ImMarkResponse.js +0 -0
  1125. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ImOpenResponse.js +0 -0
  1126. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ImRepliesResponse.js +0 -0
  1127. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/MigrationExchangeResponse.js +0 -0
  1128. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/MpimCloseResponse.js +0 -0
  1129. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/MpimHistoryResponse.js +0 -0
  1130. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/MpimListResponse.js +0 -0
  1131. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/MpimMarkResponse.js +0 -0
  1132. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/MpimOpenResponse.js +0 -0
  1133. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/MpimRepliesResponse.js +0 -0
  1134. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/OauthAccessResponse.js +0 -0
  1135. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/OauthTokenResponse.js +0 -0
  1136. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/OauthV2AccessResponse.js +0 -0
  1137. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/OauthV2ExchangeResponse.js +0 -0
  1138. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/OpenIDConnectTokenResponse.js +0 -0
  1139. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/OpenIDConnectUserInfoResponse.js +0 -0
  1140. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/PinsAddResponse.js +0 -0
  1141. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/PinsRemoveResponse.js +0 -0
  1142. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ReactionsAddResponse.js +0 -0
  1143. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ReactionsGetResponse.js +0 -0
  1144. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ReactionsListResponse.js +0 -0
  1145. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ReactionsRemoveResponse.js +0 -0
  1146. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/RemindersAddResponse.js +0 -0
  1147. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/RemindersCompleteResponse.js +0 -0
  1148. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/RemindersDeleteResponse.js +0 -0
  1149. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/RemindersInfoResponse.js +0 -0
  1150. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/RemindersListResponse.js +0 -0
  1151. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/RtmConnectResponse.js +0 -0
  1152. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/RtmStartResponse.js +0 -0
  1153. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/SearchMessagesResponse.js +0 -0
  1154. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/StarsAddResponse.js +0 -0
  1155. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/StarsListResponse.js +0 -0
  1156. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/StarsRemoveResponse.js +0 -0
  1157. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/TeamAccessLogsResponse.js +0 -0
  1158. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/TeamBillableInfoResponse.js +0 -0
  1159. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/TeamBillingInfoResponse.js +0 -0
  1160. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/TeamExternalTeamsDisconnectResponse.js +0 -0
  1161. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/TeamExternalTeamsListResponse.js +0 -0
  1162. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/TeamInfoResponse.js +0 -0
  1163. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/TeamIntegrationLogsResponse.js +0 -0
  1164. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/TeamPreferencesListResponse.js +0 -0
  1165. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/TeamProfileGetResponse.js +0 -0
  1166. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ToolingTokensRotateResponse.js +0 -0
  1167. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/UsergroupsCreateResponse.js +0 -0
  1168. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/UsergroupsDisableResponse.js +0 -0
  1169. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/UsergroupsEnableResponse.js +0 -0
  1170. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/UsergroupsListResponse.js +0 -0
  1171. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/UsergroupsUpdateResponse.js +0 -0
  1172. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/UsergroupsUsersListResponse.js +0 -0
  1173. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/UsergroupsUsersUpdateResponse.js +0 -0
  1174. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/UsersConversationsResponse.js +0 -0
  1175. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/UsersDeletePhotoResponse.js +0 -0
  1176. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/UsersDiscoverableContactsLookupResponse.js +0 -0
  1177. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/UsersGetPresenceResponse.js +0 -0
  1178. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/UsersIdentityResponse.js +0 -0
  1179. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/UsersInfoResponse.js +0 -0
  1180. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/UsersListResponse.js +0 -0
  1181. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/UsersLookupByEmailResponse.js +0 -0
  1182. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/UsersProfileGetResponse.js +0 -0
  1183. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/UsersProfileSetResponse.js +0 -0
  1184. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/UsersSetActiveResponse.js +0 -0
  1185. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/UsersSetPhotoResponse.js +0 -0
  1186. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/UsersSetPresenceResponse.js +0 -0
  1187. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ViewsOpenResponse.js +0 -0
  1188. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ViewsPublishResponse.js +0 -0
  1189. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ViewsPushResponse.js +0 -0
  1190. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ViewsUpdateResponse.js +0 -0
  1191. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/WorkflowsStepCompletedResponse.js +0 -0
  1192. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/WorkflowsStepFailedResponse.js +0 -0
  1193. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/WorkflowsUpdateStepResponse.js +0 -0
  1194. /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/index.js +0 -0
  1195. /package/node_modules/{@maka/runtime → @slack/web-api}/node_modules/retry/License +0 -0
  1196. /package/node_modules/{@maka/runtime → @slack/web-api}/node_modules/retry/README.md +0 -0
  1197. /package/node_modules/{@maka/runtime → @slack/web-api}/node_modules/retry/example/dns.js +0 -0
  1198. /package/node_modules/{@maka/runtime → @slack/web-api}/node_modules/retry/example/stop.js +0 -0
  1199. /package/node_modules/{@maka/runtime → @slack/web-api}/node_modules/retry/index.js +0 -0
  1200. /package/node_modules/{@maka/runtime → @slack/web-api}/node_modules/retry/lib/retry.js +0 -0
  1201. /package/node_modules/{@maka/runtime → @slack/web-api}/node_modules/retry/lib/retry_operation.js +0 -0
  1202. /package/node_modules/{@maka/runtime → @slack/web-api}/node_modules/retry/package.json +0 -0
package/LICENSE CHANGED
@@ -207,11 +207,11 @@ Vercel AI SDK
207
207
 
208
208
  Source: https://www.npmjs.com/package/@ai-sdk/provider-utils/v/5.0.11
209
209
  https://www.npmjs.com/package/@ai-sdk/provider/v/4.0.3
210
- Patched package: https://www.npmjs.com/package/@ai-sdk/provider-utils/v/5.0.28
210
+ Patched package: https://www.npmjs.com/package/@ai-sdk/provider-utils/v/5.0.34
211
211
  Repository: https://github.com/vercel/ai/tree/main/packages/provider-utils
212
212
  https://github.com/vercel/ai/tree/main/packages/provider
213
213
  Adapted declarations: @ai-sdk/provider-utils 5.0.11, @ai-sdk/provider 4.0.3
214
- Dependency patch: patches/@ai-sdk+provider-utils+5.0.28.patch
214
+ Dependency patch: patches/@ai-sdk+provider-utils+5.0.34.patch
215
215
  Copyright 2023 Vercel, Inc.
216
216
  License: Apache-2.0
217
217
 
@@ -223,7 +223,7 @@ License, Version 2.0 above applies to the adapted material.
223
223
  The pinned versions are the ones present when the adaptation was made. The
224
224
  adapted declarations are unchanged through @ai-sdk/provider-utils 5.0.25 and
225
225
  @ai-sdk/provider 4.0.7, the versions recorded by the code origin audit. Maka
226
- also redistributes a patch against @ai-sdk/provider-utils 5.0.28; that patch
226
+ also redistributes a patch against @ai-sdk/provider-utils 5.0.34; that patch
227
227
  modifies Apache-2.0 source and is covered by the license reproduced above.
228
228
 
229
229
  Astryx
@@ -308,6 +308,39 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
308
308
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
309
309
  THE SOFTWARE.
310
310
 
311
+ electron-builder dependency patch
312
+
313
+ Source: https://www.npmjs.com/package/app-builder-lib/v/26.15.3
314
+ Repository: https://github.com/electron-userland/electron-builder
315
+ Version: 26.15.3
316
+ Dependency patch: patches/app-builder-lib+26.15.3.patch
317
+ License: MIT
318
+
319
+ Maka redistributes a source patch that omits modification and access times
320
+ from ZIP archives. The following MIT License applies to that material:
321
+
322
+ The MIT License (MIT)
323
+
324
+ Copyright (c) 2015 Loopline Systems
325
+
326
+ Permission is hereby granted, free of charge, to any person obtaining a copy
327
+ of this software and associated documentation files (the "Software"), to deal
328
+ in the Software without restriction, including without limitation the rights
329
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
330
+ copies of the Software, and to permit persons to whom the Software is
331
+ furnished to do so, subject to the following conditions:
332
+
333
+ The above copyright notice and this permission notice shall be included in all
334
+ copies or substantial portions of the Software.
335
+
336
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
337
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
338
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
339
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
340
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
341
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
342
+ SOFTWARE.
343
+
311
344
  node-pty dependency patch
312
345
 
313
346
  Source: https://www.npmjs.com/package/node-pty/v/1.2.0-beta.15
@@ -5,7 +5,7 @@ Generated by scripts/generate-runtime-host-peer-notices.mjs from the exact
5
5
  four-target production dependency inventory. Do not edit this file by hand.
6
6
 
7
7
  Manifest: native/runtime-host-peer/Cargo.toml
8
- Cargo.lock SHA-256: b1a7cdd67fee2bbde5bd8d91c6773f97e809515898604bde7ee0dbf4e04cbbd8
8
+ Cargo.lock SHA-256: 6e489606d4ad4f45433b853ddd0ca96aa2e4160f34bb0446f8f63f7f0fd639b6
9
9
  Inventory SHA-256: c28a17749fa5f9af237a49dd2b4ad9149b6c4224d383c4a5050eeac3be14073c
10
10
 
11
11
  Packages
@@ -208,7 +208,7 @@ Apache License
208
208
 
209
209
  ================================================================================
210
210
 
211
- Package: @ai-sdk/anthropic@4.0.40
211
+ Package: @ai-sdk/anthropic@4.0.46
212
212
  Declared license: Apache-2.0
213
213
  Selected license: Apache-2.0
214
214
  Repository: https://github.com/vercel/ai#packages/anthropic
@@ -230,7 +230,7 @@ limitations under the License.
230
230
 
231
231
  ================================================================================
232
232
 
233
- Package: @ai-sdk/code-mode@1.0.27
233
+ Package: @ai-sdk/code-mode@1.0.42
234
234
  Declared license: Apache-2.0
235
235
  Selected license: Apache-2.0
236
236
  Repository: https://github.com/vercel/ai#packages/code-mode
@@ -252,7 +252,7 @@ limitations under the License.
252
252
 
253
253
  ================================================================================
254
254
 
255
- Package: @ai-sdk/cohere@4.0.28
255
+ Package: @ai-sdk/cohere@4.0.35
256
256
  Declared license: Apache-2.0
257
257
  Selected license: Apache-2.0
258
258
  Repository: https://github.com/vercel/ai#packages/cohere
@@ -274,7 +274,7 @@ limitations under the License.
274
274
 
275
275
  ================================================================================
276
276
 
277
- Package: @ai-sdk/gateway@4.0.56
277
+ Package: @ai-sdk/gateway@4.0.69
278
278
  Declared license: Apache-2.0
279
279
  Selected license: Apache-2.0
280
280
  Repository: https://github.com/vercel/ai#packages/gateway
@@ -296,7 +296,7 @@ limitations under the License.
296
296
 
297
297
  ================================================================================
298
298
 
299
- Package: @ai-sdk/google@4.0.47
299
+ Package: @ai-sdk/google@4.0.58
300
300
  Declared license: Apache-2.0
301
301
  Selected license: Apache-2.0
302
302
  Repository: https://github.com/vercel/ai#packages/google
@@ -318,7 +318,7 @@ limitations under the License.
318
318
 
319
319
  ================================================================================
320
320
 
321
- Package: @ai-sdk/open-responses@2.0.34
321
+ Package: @ai-sdk/open-responses@2.0.36
322
322
  Declared license: Apache-2.0
323
323
  Selected license: Apache-2.0
324
324
  Repository: https://github.com/vercel/ai#packages/open-responses
@@ -340,7 +340,7 @@ limitations under the License.
340
340
 
341
341
  ================================================================================
342
342
 
343
- Package: @ai-sdk/openai@4.0.44
343
+ Package: @ai-sdk/openai@4.0.52
344
344
  Declared license: Apache-2.0
345
345
  Selected license: Apache-2.0
346
346
  Repository: https://github.com/vercel/ai#packages/openai
@@ -362,7 +362,7 @@ limitations under the License.
362
362
 
363
363
  ================================================================================
364
364
 
365
- Package: @ai-sdk/openai-compatible@3.0.32
365
+ Package: @ai-sdk/openai-compatible@3.0.41
366
366
  Declared license: Apache-2.0
367
367
  Selected license: Apache-2.0
368
368
  Repository: https://github.com/vercel/ai#packages/openai-compatible
@@ -384,7 +384,7 @@ limitations under the License.
384
384
 
385
385
  ================================================================================
386
386
 
387
- Package: @ai-sdk/provider@4.0.7
387
+ Package: @ai-sdk/provider@4.0.9
388
388
  Declared license: Apache-2.0
389
389
  Selected license: Apache-2.0
390
390
  Repository: https://github.com/vercel/ai#packages/provider
@@ -406,239 +406,7 @@ limitations under the License.
406
406
 
407
407
  ================================================================================
408
408
 
409
- Package: @ai-sdk/provider@4.0.8
410
- Declared license: Apache-2.0
411
- Selected license: Apache-2.0
412
- Repository: https://github.com/vercel/ai#packages/provider
413
-
414
- --- LICENSE ---
415
- Copyright 2023 Vercel, Inc.
416
-
417
- Licensed under the Apache License, Version 2.0 (the "License");
418
- you may not use this file except in compliance with the License.
419
- You may obtain a copy of the License at
420
-
421
- http://www.apache.org/licenses/LICENSE-2.0
422
-
423
- Unless required by applicable law or agreed to in writing, software
424
- distributed under the License is distributed on an "AS IS" BASIS,
425
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
426
- See the License for the specific language governing permissions and
427
- limitations under the License.
428
-
429
- ================================================================================
430
-
431
- Package: @ai-sdk/provider-utils@5.0.28
432
- Declared license: Apache-2.0
433
- Selected license: Apache-2.0
434
- Repository: https://github.com/vercel/ai#packages/provider-utils
435
-
436
- --- VERSION-PINNED LICENSE TEXT OVERRIDE ---
437
- Apache License
438
- Version 2.0, January 2004
439
- http://www.apache.org/licenses/
440
-
441
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
442
-
443
- 1. Definitions.
444
-
445
- "License" shall mean the terms and conditions for use, reproduction,
446
- and distribution as defined by Sections 1 through 9 of this document.
447
-
448
- "Licensor" shall mean the copyright owner or entity authorized by
449
- the copyright owner that is granting the License.
450
-
451
- "Legal Entity" shall mean the union of the acting entity and all
452
- other entities that control, are controlled by, or are under common
453
- control with that entity. For the purposes of this definition,
454
- "control" means (i) the power, direct or indirect, to cause the
455
- direction or management of such entity, whether by contract or
456
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
457
- outstanding shares, or (iii) beneficial ownership of such entity.
458
-
459
- "You" (or "Your") shall mean an individual or Legal Entity
460
- exercising permissions granted by this License.
461
-
462
- "Source" form shall mean the preferred form for making modifications,
463
- including but not limited to software source code, documentation
464
- source, and configuration files.
465
-
466
- "Object" form shall mean any form resulting from mechanical
467
- transformation or translation of a Source form, including but
468
- not limited to compiled object code, generated documentation,
469
- and conversions to other media types.
470
-
471
- "Work" shall mean the work of authorship, whether in Source or
472
- Object form, made available under the License, as indicated by a
473
- copyright notice that is included in or attached to the work
474
- (an example is provided in the Appendix below).
475
-
476
- "Derivative Works" shall mean any work, whether in Source or Object
477
- form, that is based on (or derived from) the Work and for which the
478
- editorial revisions, annotations, elaborations, or other modifications
479
- represent, as a whole, an original work of authorship. For the purposes
480
- of this License, Derivative Works shall not include works that remain
481
- separable from, or merely link (or bind by name) to the interfaces of,
482
- the Work and Derivative Works thereof.
483
-
484
- "Contribution" shall mean any work of authorship, including
485
- the original version of the Work and any modifications or additions
486
- to that Work or Derivative Works thereof, that is intentionally
487
- submitted to Licensor for inclusion in the Work by the copyright owner
488
- or by an individual or Legal Entity authorized to submit on behalf of
489
- the copyright owner. For the purposes of this definition, "submitted"
490
- means any form of electronic, verbal, or written communication sent
491
- to the Licensor or its representatives, including but not limited to
492
- communication on electronic mailing lists, source code control systems,
493
- and issue tracking systems that are managed by, or on behalf of, the
494
- Licensor for the purpose of discussing and improving the Work, but
495
- excluding communication that is conspicuously marked or otherwise
496
- designated in writing by the copyright owner as "Not a Contribution."
497
-
498
- "Contributor" shall mean Licensor and any individual or Legal Entity
499
- on behalf of whom a Contribution has been received by Licensor and
500
- subsequently incorporated within the Work.
501
-
502
- 2. Grant of Copyright License. Subject to the terms and conditions of
503
- this License, each Contributor hereby grants to You a perpetual,
504
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
505
- copyright license to reproduce, prepare Derivative Works of,
506
- publicly display, publicly perform, sublicense, and distribute the
507
- Work and such Derivative Works in Source or Object form.
508
-
509
- 3. Grant of Patent License. Subject to the terms and conditions of
510
- this License, each Contributor hereby grants to You a perpetual,
511
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
512
- (except as stated in this section) patent license to make, have made,
513
- use, offer to sell, sell, import, and otherwise transfer the Work,
514
- where such license applies only to those patent claims licensable
515
- by such Contributor that are necessarily infringed by their
516
- Contribution(s) alone or by combination of their Contribution(s)
517
- with the Work to which such Contribution(s) was submitted. If You
518
- institute patent litigation against any entity (including a
519
- cross-claim or counterclaim in a lawsuit) alleging that the Work
520
- or a Contribution incorporated within the Work constitutes direct
521
- or contributory patent infringement, then any patent licenses
522
- granted to You under this License for that Work shall terminate
523
- as of the date such litigation is filed.
524
-
525
- 4. Redistribution. You may reproduce and distribute copies of the
526
- Work or Derivative Works thereof in any medium, with or without
527
- modifications, and in Source or Object form, provided that You
528
- meet the following conditions:
529
-
530
- (a) You must give any other recipients of the Work or
531
- Derivative Works a copy of this License; and
532
-
533
- (b) You must cause any modified files to carry prominent notices
534
- stating that You changed the files; and
535
-
536
- (c) You must retain, in the Source form of any Derivative Works
537
- that You distribute, all copyright, patent, trademark, and
538
- attribution notices from the Source form of the Work,
539
- excluding those notices that do not pertain to any part of
540
- the Derivative Works; and
541
-
542
- (d) If the Work includes a "NOTICE" text file as part of its
543
- distribution, then any Derivative Works that You distribute must
544
- include a readable copy of the attribution notices contained
545
- within such NOTICE file, excluding those notices that do not
546
- pertain to any part of the Derivative Works, in at least one
547
- of the following places: within a NOTICE text file distributed
548
- as part of the Derivative Works; within the Source form or
549
- documentation, if provided along with the Derivative Works; or,
550
- within a display generated by the Derivative Works, if and
551
- wherever such third-party notices normally appear. The contents
552
- of the NOTICE file are for informational purposes only and
553
- do not modify the License. You may add Your own attribution
554
- notices within Derivative Works that You distribute, alongside
555
- or as an addendum to the NOTICE text from the Work, provided
556
- that such additional attribution notices cannot be construed
557
- as modifying the License.
558
-
559
- You may add Your own copyright statement to Your modifications and
560
- may provide additional or different license terms and conditions
561
- for use, reproduction, or distribution of Your modifications, or
562
- for any such Derivative Works as a whole, provided Your use,
563
- reproduction, and distribution of the Work otherwise complies with
564
- the conditions stated in this License.
565
-
566
- 5. Submission of Contributions. Unless You explicitly state otherwise,
567
- any Contribution intentionally submitted for inclusion in the Work
568
- by You to the Licensor shall be under the terms and conditions of
569
- this License, without any additional terms or conditions.
570
- Notwithstanding the above, nothing herein shall supersede or modify
571
- the terms of any separate license agreement you may have executed
572
- with Licensor regarding such Contributions.
573
-
574
- 6. Trademarks. This License does not grant permission to use the trade
575
- names, trademarks, service marks, or product names of the Licensor,
576
- except as required for reasonable and customary use in describing the
577
- origin of the Work and reproducing the content of the NOTICE file.
578
-
579
- 7. Disclaimer of Warranty. Unless required by applicable law or
580
- agreed to in writing, Licensor provides the Work (and each
581
- Contributor provides its Contributions) on an "AS IS" BASIS,
582
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
583
- implied, including, without limitation, any warranties or conditions
584
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
585
- PARTICULAR PURPOSE. You are solely responsible for determining the
586
- appropriateness of using or redistributing the Work and assume any
587
- risks associated with Your exercise of permissions under this License.
588
-
589
- 8. Limitation of Liability. In no event and under no legal theory,
590
- whether in tort (including negligence), contract, or otherwise,
591
- unless required by applicable law (such as deliberate and grossly
592
- negligent acts) or agreed to in writing, shall any Contributor be
593
- liable to You for damages, including any direct, indirect, special,
594
- incidental, or consequential damages of any character arising as a
595
- result of this License or out of the use or inability to use the
596
- Work (including but not limited to damages for loss of goodwill,
597
- work stoppage, computer failure or malfunction, or any and all
598
- other commercial damages or losses), even if such Contributor
599
- has been advised of the possibility of such damages.
600
-
601
- 9. Accepting Warranty or Additional Liability. While redistributing
602
- the Work or Derivative Works thereof, You may choose to offer,
603
- and charge a fee for, acceptance of support, warranty, indemnity,
604
- or other liability obligations and/or rights consistent with this
605
- License. However, in accepting such obligations, You may act only
606
- on Your own behalf and on Your sole responsibility, not on behalf
607
- of any other Contributor, and only if You agree to indemnify,
608
- defend, and hold each Contributor harmless for any liability
609
- incurred by, or claims asserted against, such Contributor by reason
610
- of your accepting any such warranty or additional liability.
611
-
612
- END OF TERMS AND CONDITIONS
613
-
614
- APPENDIX: How to apply the Apache License to your work.
615
-
616
- To apply the Apache License to your work, attach the following
617
- boilerplate notice, with the fields enclosed by brackets "[]"
618
- replaced with your own identifying information. (Don't include
619
- the brackets!) The text should be enclosed in the appropriate
620
- comment syntax for the file format. We also recommend that a
621
- file or class name and description of purpose be included on the
622
- same "printed page" as the copyright notice for easier
623
- identification within third-party archives.
624
-
625
- Copyright [yyyy] [name of copyright owner]
626
-
627
- Licensed under the Apache License, Version 2.0 (the "License");
628
- you may not use this file except in compliance with the License.
629
- You may obtain a copy of the License at
630
-
631
- http://www.apache.org/licenses/LICENSE-2.0
632
-
633
- Unless required by applicable law or agreed to in writing, software
634
- distributed under the License is distributed on an "AS IS" BASIS,
635
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
636
- See the License for the specific language governing permissions and
637
- limitations under the License.
638
-
639
- ================================================================================
640
-
641
- Package: @ai-sdk/provider-utils@5.0.32
409
+ Package: @ai-sdk/provider-utils@5.0.34
642
410
  Declared license: Apache-2.0
643
411
  Selected license: Apache-2.0
644
412
  Repository: https://github.com/vercel/ai#packages/provider-utils
@@ -848,7 +616,7 @@ Apache License
848
616
 
849
617
  ================================================================================
850
618
 
851
- Package: @earendil-works/pi-tui@0.84.2
619
+ Package: @earendil-works/pi-tui@0.84.4
852
620
  Declared license: MIT
853
621
  Selected license: MIT
854
622
  Repository: git+https://github.com/earendil-works/pi.git#packages/tui
@@ -896,7 +664,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
896
664
 
897
665
  ================================================================================
898
666
 
899
- Package: @formatjs/icu-messageformat-parser@3.5.15
667
+ Package: @formatjs/icu-messageformat-parser@3.5.17
900
668
  Declared license: MIT
901
669
  Selected license: MIT
902
670
  Repository: https://github.com/formatjs/formatjs.git#packages/icu-messageformat-parser
@@ -1832,7 +1600,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1832
1600
 
1833
1601
  ================================================================================
1834
1602
 
1835
- Package: @slack/socket-mode@3.0.0
1603
+ Package: @slack/socket-mode@3.0.1
1836
1604
  Declared license: MIT
1837
1605
  Selected license: MIT
1838
1606
  Repository: git+https://github.com/slackapi/node-slack-sdk.git
@@ -1863,7 +1631,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1863
1631
 
1864
1632
  ================================================================================
1865
1633
 
1866
- Package: @slack/types@3.0.0
1634
+ Package: @slack/types@3.1.0
1867
1635
  Declared license: MIT
1868
1636
  Selected license: MIT
1869
1637
  Repository: git+https://github.com/slackapi/node-slack-sdk.git
@@ -1894,7 +1662,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1894
1662
 
1895
1663
  ================================================================================
1896
1664
 
1897
- Package: @slack/web-api@8.0.0
1665
+ Package: @slack/web-api@8.1.1
1898
1666
  Declared license: MIT
1899
1667
  Selected license: MIT
1900
1668
  Repository: git+https://github.com/slackapi/node-slack-sdk.git
@@ -1955,7 +1723,7 @@ SOFTWARE.
1955
1723
 
1956
1724
  ================================================================================
1957
1725
 
1958
- Package: @types/node@26.2.0
1726
+ Package: @types/node@26.4.0
1959
1727
  Declared license: MIT
1960
1728
  Selected license: MIT
1961
1729
  Repository: https://github.com/DefinitelyTyped/DefinitelyTyped.git#types/node
@@ -2015,6 +1783,36 @@ MIT License
2015
1783
 
2016
1784
  ================================================================================
2017
1785
 
1786
+ Package: @types/retry@0.12.5
1787
+ Declared license: MIT
1788
+ Selected license: MIT
1789
+ Repository: https://github.com/DefinitelyTyped/DefinitelyTyped.git#types/retry
1790
+
1791
+ --- LICENSE ---
1792
+ MIT License
1793
+
1794
+ Copyright (c) Microsoft Corporation.
1795
+
1796
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1797
+ of this software and associated documentation files (the "Software"), to deal
1798
+ in the Software without restriction, including without limitation the rights
1799
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1800
+ copies of the Software, and to permit persons to whom the Software is
1801
+ furnished to do so, subject to the following conditions:
1802
+
1803
+ The above copyright notice and this permission notice shall be included in all
1804
+ copies or substantial portions of the Software.
1805
+
1806
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1807
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1808
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1809
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1810
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1811
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1812
+ SOFTWARE
1813
+
1814
+ ================================================================================
1815
+
2018
1816
  Package: @vercel/oidc@3.2.0
2019
1817
  Declared license: Apache-2.0
2020
1818
  Selected license: Apache-2.0
@@ -2388,7 +2186,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2388
2186
 
2389
2187
  ================================================================================
2390
2188
 
2391
- Package: ai@7.0.70
2189
+ Package: ai@7.0.85
2392
2190
  Declared license: Apache-2.0
2393
2191
  Selected license: Apache-2.0
2394
2192
  Repository: https://github.com/vercel/ai#packages/ai
@@ -4220,7 +4018,7 @@ Copyright (c) 2012 Felix Geisendörfer (felix@debuggable.com) and contributors
4220
4018
 
4221
4019
  ================================================================================
4222
4020
 
4223
- Package: fs-native-extensions@1.5.0
4021
+ Package: fs-native-extensions@1.5.1
4224
4022
  Declared license: Apache-2.0
4225
4023
  Selected license: Apache-2.0
4226
4024
  Repository: git+https://github.com/holepunchto/fs-native-extensions.git
@@ -4805,7 +4603,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
4805
4603
 
4806
4604
  ================================================================================
4807
4605
 
4808
- Package: intl-messageformat@11.2.12
4606
+ Package: intl-messageformat@11.2.14
4809
4607
  Declared license: BSD-3-Clause
4810
4608
  Selected license: BSD-3-Clause
4811
4609
  Repository: git@github.com:formatjs/formatjs.git
@@ -7171,6 +6969,35 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
7171
6969
 
7172
6970
  ================================================================================
7173
6971
 
6972
+ Package: systeminformation@5.33.8
6973
+ Declared license: MIT
6974
+ Selected license: MIT
6975
+ Repository: git+https://github.com/sebhildebrandt/systeminformation.git
6976
+
6977
+ --- LICENSE ---
6978
+ The MIT License (MIT)
6979
+
6980
+ Copyright (c) 2014-2026 Sebastian Hildebrandt
6981
+
6982
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
6983
+ this software and associated documentation files (the "Software"), to deal in
6984
+ the Software without restriction, including without limitation the rights to
6985
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
6986
+ the Software, and to permit persons to whom the Software is furnished to do so,
6987
+ subject to the following conditions:
6988
+
6989
+ The above copyright notice and this permission notice shall be included in all
6990
+ copies or substantial portions of the Software.
6991
+
6992
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
6993
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
6994
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
6995
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
6996
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
6997
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
6998
+
6999
+ ================================================================================
7000
+
7174
7001
  Package: turndown@7.2.4
7175
7002
  Declared license: MIT
7176
7003
  Selected license: MIT
@@ -7255,7 +7082,7 @@ SOFTWARE.
7255
7082
 
7256
7083
  ================================================================================
7257
7084
 
7258
- Package: undici@8.10.0
7085
+ Package: undici@8.10.1
7259
7086
  Declared license: MIT
7260
7087
  Selected license: MIT
7261
7088
  Repository: git+https://github.com/nodejs/undici.git
@@ -7715,7 +7542,7 @@ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
7715
7542
 
7716
7543
  ================================================================================
7717
7544
 
7718
- Package: zod@4.4.3
7545
+ Package: zod@4.5.4
7719
7546
  Declared license: MIT
7720
7547
  Selected license: MIT
7721
7548
  Repository: git+https://github.com/colinhacks/zod.git
@@ -7746,7 +7573,7 @@ SOFTWARE.
7746
7573
  ================================================================================
7747
7574
 
7748
7575
  Embedded component: quickjs-emscripten (embedded runtime)
7749
- Embedded by: @ai-sdk/code-mode@1.0.27
7576
+ Embedded by: @ai-sdk/code-mode@1.0.42
7750
7577
  Selected license: MIT
7751
7578
  Repository: https://github.com/justjake/quickjs-emscripten
7752
7579
 
@@ -7776,7 +7603,7 @@ SOFTWARE.
7776
7603
  ================================================================================
7777
7604
 
7778
7605
  Embedded component: QuickJS JavaScript engine (embedded runtime)
7779
- Embedded by: @ai-sdk/code-mode@1.0.27
7606
+ Embedded by: @ai-sdk/code-mode@1.0.42
7780
7607
  Selected license: MIT
7781
7608
  Repository: https://github.com/bellard/quickjs
7782
7609
 
@@ -20,11 +20,16 @@ import { isUiLocalePreference, resolveSystemUiLocale, resolveUiLocale, } from '@
20
20
  /** Resolve the interactive TUI locale without changing the top-level CLI grammar. */
21
21
  export function resolveCliUiLocale(environment) {
22
22
  const rawPreference = environment.MAKA_LOCALE?.trim();
23
- const preference = rawPreference ? rawPreference.toLowerCase() : 'auto';
23
+ const normalizedPreference = rawPreference?.replaceAll('_', '-').toLowerCase() || 'auto';
24
+ const preference = normalizedPreference === 'zh' || normalizedPreference === 'zh-cn'
25
+ ? 'zh-CN'
26
+ : normalizedPreference === 'zh-tw'
27
+ ? 'zh-TW'
28
+ : normalizedPreference;
24
29
  if (!isUiLocalePreference(preference)) {
25
30
  return {
26
31
  ok: false,
27
- message: `Invalid MAKA_LOCALE ${JSON.stringify(rawPreference)}. Expected zh, en, or auto.`,
32
+ message: `Invalid MAKA_LOCALE ${JSON.stringify(rawPreference)}. Expected zh-CN, zh-TW, en, or auto.`,
28
33
  };
29
34
  }
30
35
  // POSIX locale variables are authorities, not a preference list. Once a
@@ -17,7 +17,8 @@
17
17
  * under the License.
18
18
  */
19
19
  import { createHash } from 'node:crypto';
20
- import { CLIENT_CAPABILITY_MAX_TOOLS, CLIENT_CAPABILITY_MAX_TOOLS_PER_OFFER, clientCapabilityEntityId, decodeClientCapabilityReplaceInput, } from '@maka/runtime-host/protocol';
20
+ import { clientCapabilityEntityId } from '@maka/runtime-host/client-capability-entity-id';
21
+ import { CLIENT_CAPABILITY_MAX_TOOLS, CLIENT_CAPABILITY_MAX_TOOLS_PER_OFFER, decodeClientCapabilityReplaceInput, } from '@maka/runtime-host/protocol';
21
22
  const CAPABILITY_VERSION = '0';
22
23
  export function createMcpCapabilityProvider(manager) {
23
24
  const toolSnapshot = manager.toolSnapshot();
@@ -17,6 +17,7 @@
17
17
  * under the License.
18
18
  */
19
19
  import { Editor, Input, Key, matchesKey, truncateToWidth, visibleWidth, } from '@earendil-works/pi-tui';
20
+ import { generalizedErrorMessageForLocale } from '@maka/core/redaction';
20
21
  import { defineUiMessageCatalog, formatUiMessage, resolveUiMessageCatalog, } from '@maka/core/ui-locale';
21
22
  import { normalizeMcpConfig } from '@maka/storage/mcp-config-store';
22
23
  import { ansi, editorTheme } from './tui-ansi.js';
@@ -592,7 +593,11 @@ function serverLines(server, locale, selected) {
592
593
  const cursor = selected ? ansi.accent('›') : ' ';
593
594
  return [
594
595
  `${cursor} ${statusMarker(server.state)} ${ansi.bold(server.serverId)} ${details}`,
595
- ...(server.error ? [` ${ansi.red(server.error)}`] : []),
596
+ ...(server.error
597
+ ? [
598
+ ` ${ansi.red(generalizedErrorMessageForLocale(new Error(server.error), locale === 'en' ? server.error : copy.connectionFailed, locale))}`,
599
+ ]
600
+ : []),
596
601
  ];
597
602
  }
598
603
  function actionNotice(result, locale) {
@@ -617,7 +622,7 @@ function actionNotice(result, locale) {
617
622
  };
618
623
  }
619
624
  function resultCopy(locale, code) {
620
- return MCP_STATUS_COPY[locale].editor.results[code];
625
+ return MCP_STATUS_COPY[locale].editor.results[code] ?? code;
621
626
  }
622
627
  function confirmAddDocument(draft, locale) {
623
628
  const editor = MCP_STATUS_COPY[locale].editor;
@@ -512,6 +512,21 @@ export async function verifyRuntimeHostLifecycleReady(config, deps, timeoutMs =
512
512
  }
513
513
  throw new RuntimeHostLifecycleTransactionError('transition_failed', `Runtime Host did not become ready: ${lastFailure instanceof Error ? lastFailure.message : String(lastFailure)}`, { cause: lastFailure });
514
514
  }
515
+ /** Repairs update-control artifacts without interrupting the running Host supervisor. */
516
+ export async function convergeRuntimeHostLifecycleControlProjection(config, deps) {
517
+ const canonical = decodeRuntimeHostManagedDeploymentConfig(config);
518
+ await deps.convergeOperator(canonical, canonical);
519
+ if (canonical.lifecycle.mode !== 'supervised')
520
+ return;
521
+ const provider = deps.resolveProvider(canonical);
522
+ if (canonical.reconciliation.trigger === 'scheduled') {
523
+ await provider.reconciliationTrigger.converge(runtimeHostReconciliationTriggerDefinition(canonical));
524
+ await provider.reconciliationTrigger.activate();
525
+ }
526
+ else {
527
+ await provider.reconciliationTrigger.uninstall();
528
+ }
529
+ }
515
530
  /** Verifies the durable operator and supervisor projection without requiring a compatible Host. */
516
531
  export async function verifyRuntimeHostLifecycleProjection(config, deps) {
517
532
  const canonical = decodeRuntimeHostManagedDeploymentConfig(config);