@zhin.js/adapter-sandbox 1.0.70 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/CHANGELOG.md +951 -50
  2. package/README.md +60 -36
  3. package/adapters/sandbox.js +25 -0
  4. package/adapters/sandbox.ts +30 -0
  5. package/agent/skills/sandbox.md +33 -0
  6. package/lib/client.d.ts +27 -0
  7. package/lib/client.js +27 -0
  8. package/lib/endpoint.d.ts +42 -0
  9. package/lib/endpoint.js +357 -0
  10. package/lib/index.d.ts +3 -55
  11. package/lib/index.js +3 -176
  12. package/lib/protocol.d.ts +78 -0
  13. package/lib/protocol.js +301 -0
  14. package/lib/run-config.d.ts +10 -0
  15. package/lib/run-config.js +30 -0
  16. package/package.json +60 -24
  17. package/pages/RichTextEditor.js +366 -0
  18. package/{client → pages}/RichTextEditor.tsx +59 -13
  19. package/pages/SandboxChat.js +615 -0
  20. package/pages/SandboxChat.tsx +1186 -0
  21. package/pages/agentTrace.js +559 -0
  22. package/pages/agentTrace.test.js +235 -0
  23. package/pages/agentTrace.test.ts +265 -0
  24. package/pages/agentTrace.ts +646 -0
  25. package/pages/index.js +18 -0
  26. package/pages/index.tsx +18 -0
  27. package/pages/playgroundState.js +126 -0
  28. package/pages/playgroundState.test.js +92 -0
  29. package/pages/playgroundState.test.ts +105 -0
  30. package/pages/playgroundState.ts +172 -0
  31. package/pages/sandboxTransport.js +45 -0
  32. package/pages/sandboxTransport.ts +45 -0
  33. package/plugin.js +8 -0
  34. package/schema.json +76 -0
  35. package/src/client.ts +47 -0
  36. package/src/endpoint.ts +420 -0
  37. package/src/index.ts +26 -238
  38. package/src/protocol.ts +398 -0
  39. package/src/run-config.ts +41 -0
  40. package/LICENSE +0 -21
  41. package/client/Sandbox.tsx +0 -493
  42. package/client/index.tsx +0 -11
  43. package/client/tsconfig.json +0 -7
  44. package/dist/index.js +0 -1
  45. package/lib/index.d.ts.map +0 -1
  46. package/lib/index.js.map +0 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,906 @@
1
1
  # @zhin.js/adapter-process
2
2
 
3
+ ## 1.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 1fc6270: Reset all 88 published official packages onto the owner-governed 1.1.x stable line. Packages whose historical 1.1.0 version is still available publish as 1.1.0; packages where npm permanently reserves that version use the next available 1.1.x patch. Historical higher version lines remain installable but are superseded, and routine releases after this reset are patch-only.
8
+
9
+ ### Patch Changes
10
+
11
+ - a34bf91: Publish internal peer dependencies as compatible caret ranges instead of exact versions, preventing compatible internal minor releases from forcing unrelated major bumps.
12
+ - Updated dependencies [1fc6270]
13
+ - @zhin.js/adapter@1.1.12
14
+ - @zhin.js/client@1.1.5
15
+ - @zhin.js/console-contract@1.1.0
16
+ - @zhin.js/core@1.1.35
17
+ - @zhin.js/feature-kit@1.1.0
18
+ - @zhin.js/host-http@1.1.0
19
+ - @zhin.js/im-contract@1.1.0
20
+ - @zhin.js/logger@1.1.0
21
+ - @zhin.js/page@1.1.0
22
+
23
+ ## 9.0.1
24
+
25
+ ### Patch Changes
26
+
27
+ - f7ee28d: Keep the Console SDK as a required dependency instead of also declaring it as an optional peer, which could remove it from a clean pnpm installation and prevent page compilation.
28
+ - Updated dependencies [f7ee28d]
29
+ - @zhin.js/adapter@1.2.2
30
+ - @zhin.js/core@1.5.16
31
+ - zhin.js@7.0.1
32
+
33
+ ## 9.0.0
34
+
35
+ ### Patch Changes
36
+
37
+ - zhin.js@7.0.0
38
+
39
+ ## 8.0.6
40
+
41
+ ### Patch Changes
42
+
43
+ - Updated dependencies [a728a20]
44
+ - @zhin.js/host-http@1.0.17
45
+ - zhin.js@6.0.15
46
+
47
+ ## 8.0.5
48
+
49
+ ### Patch Changes
50
+
51
+ - Updated dependencies [fcbff21]
52
+ - @zhin.js/host-http@1.0.16
53
+ - zhin.js@6.0.15
54
+
55
+ ## 8.0.4
56
+
57
+ ### Patch Changes
58
+
59
+ - Updated dependencies [882a08a]
60
+ - @zhin.js/client@2.1.14
61
+ - zhin.js@6.0.15
62
+ - @zhin.js/core@1.5.15
63
+
64
+ ## 8.0.3
65
+
66
+ ### Patch Changes
67
+
68
+ - Updated dependencies [d85eddd]
69
+ - @zhin.js/host-http@1.0.15
70
+ - @zhin.js/client@2.1.13
71
+ - @zhin.js/core@1.5.15
72
+ - zhin.js@6.0.15
73
+
74
+ ## 8.0.2
75
+
76
+ ### Patch Changes
77
+
78
+ - Updated dependencies [a5ee497]
79
+ - Updated dependencies [ba7e17a]
80
+ - Updated dependencies [7108d0b]
81
+ - @zhin.js/host-http@1.0.14
82
+ - @zhin.js/core@1.5.15
83
+ - zhin.js@6.0.15
84
+
85
+ ## 8.0.1
86
+
87
+ ### Patch Changes
88
+
89
+ - e9c6a73: Preserve WebSocket path ownership when a previous hot-reload generation stops after its replacement starts.
90
+ - 1fc78bc: Unify native platform Client access behind the literal `adapter` discriminant. Handlers infer both native events and Clients, while command, inbound/outbound middleware, and both Agent tool authoring surfaces expose the exact operation-scoped Client through a lazy `$client` getter. Definitions without `adapter` keep `$client` typed as `unknown`, and runtime dispatch rejects adapter mismatches before resolving the Client. Bundled platform tools now use this single path instead of model-provided endpoint ids and adapter-specific dependency wrappers. Every adapter registers one Client/EventMap contract, and protocol adapters including NapCat, Milky, OneBot and Satori now produce transport-independent Client objects rather than letting Endpoint instances impersonate Clients.
91
+ - Updated dependencies [4e8117c]
92
+ - Updated dependencies [54bfd6b]
93
+ - Updated dependencies [12025ee]
94
+ - Updated dependencies [09b14d6]
95
+ - Updated dependencies [1fc78bc]
96
+ - @zhin.js/adapter@1.2.1
97
+ - @zhin.js/core@1.5.14
98
+ - @zhin.js/host-http@1.0.13
99
+ - @zhin.js/logger@1.0.77
100
+ - zhin.js@6.0.14
101
+ - @zhin.js/feature-kit@1.0.13
102
+ - @zhin.js/page@1.0.13
103
+ - @zhin.js/client@2.1.12
104
+
105
+ ## 8.0.0
106
+
107
+ ### Patch Changes
108
+
109
+ - Updated dependencies [b10d058]
110
+ - Updated dependencies [f2c532f]
111
+ - @zhin.js/client@2.1.11
112
+ - @zhin.js/host-http@1.0.12
113
+ - @zhin.js/adapter@1.2.0
114
+ - @zhin.js/core@1.5.13
115
+ - zhin.js@6.0.13
116
+
117
+ ## 7.0.15
118
+
119
+ ### Patch Changes
120
+
121
+ - bcc4c87: Probe Docker readiness asynchronously so Sandbox WebSocket permissions and messages are never blocked by the informational ready frame.
122
+
123
+ ## 7.0.14
124
+
125
+ ### Patch Changes
126
+
127
+ - 9e609f4: Stabilize Sandbox WebSocket regressions by waiting for the server-side connection registration and verifying the demo-scope gate independently from the informational ready frame.
128
+
129
+ ## 7.0.13
130
+
131
+ ### Patch Changes
132
+
133
+ - 974772e: Replace the user-facing `Prompt` vocabulary with the `UserInteraction` authoring surface for input, confirmation, and selection. Commands and handlers now expose `interaction`; IM Runtime exposes `createInteraction`; schema-driven endpoint collection is named `SchemaInteraction`. The old prompt-named interaction types and properties are removed rather than aliased. User interactions render through one canonical Markdown and keyboard/list presentation module shared by commands and Agent `ask_user` turns.
134
+
135
+ Extract the transport-neutral interaction contract into `@zhin.js/interaction`. A discriminated `ask()` API supports text, number, confirmation, single-select, multi-select, and typed lists with structured `title`, `description`, and `tip` content. Typed `sequence()` interactions return one result object keyed by step id, render progress, and retry invalid replies without leaking invalid values to callers.
136
+
137
+ Preserve AI Markdown and card command actions through outbound publishing. QQ delivers Markdown with native command buttons; KOOK, Discord, Telegram, DingTalk, and Lark/Feishu now declare and encode their native Markdown dialects while retaining each adapter's interaction policy. Correct QQ callback button action encoding and button style mapping.
138
+
139
+ - 5969c5b: Add SideEventGateway so adapters forward notice/request/system into HandlerIndex. HandlerContext now exposes only generation-safe capabilities and prompt ports; live Endpoint escape hatches are removed.
140
+ - Updated dependencies [5969c5b]
141
+ - Updated dependencies [d336a3f]
142
+ - Updated dependencies [5969c5b]
143
+ - Updated dependencies [5969c5b]
144
+ - Updated dependencies [974772e]
145
+ - Updated dependencies [5969c5b]
146
+ - Updated dependencies [2f786bd]
147
+ - Updated dependencies [1312ca0]
148
+ - Updated dependencies [985fa22]
149
+ - @zhin.js/im-contract@1.0.4
150
+ - @zhin.js/core@1.5.12
151
+ - @zhin.js/adapter@1.1.11
152
+ - @zhin.js/host-http@1.0.11
153
+ - @zhin.js/client@2.1.10
154
+ - zhin.js@6.0.12
155
+ - @zhin.js/page@1.0.12
156
+
157
+ ## 7.0.12
158
+
159
+ ### Patch Changes
160
+
161
+ - @zhin.js/core@1.5.11
162
+ - zhin.js@6.0.11
163
+
164
+ ## 7.0.11
165
+
166
+ ### Patch Changes
167
+
168
+ - @zhin.js/core@1.5.10
169
+ - zhin.js@6.0.10
170
+ - @zhin.js/client@2.1.9
171
+
172
+ ## 7.0.10
173
+
174
+ ### Patch Changes
175
+
176
+ - eb84b77: fix: 更新文档,建立正确的依赖关系
177
+ - Updated dependencies [d3920e9]
178
+ - @zhin.js/core@1.5.10
179
+ - zhin.js@6.0.10
180
+ - @zhin.js/page@1.0.11
181
+ - @zhin.js/adapter@1.1.10
182
+
183
+ ## 7.0.9
184
+
185
+ ### Patch Changes
186
+
187
+ - Updated dependencies [e4757a8]
188
+ - Updated dependencies [c3c0ebf]
189
+ - @zhin.js/host-http@1.0.10
190
+ - @zhin.js/core@1.5.9
191
+ - @zhin.js/client@2.1.8
192
+ - @zhin.js/page@1.0.10
193
+ - @zhin.js/adapter@1.1.9
194
+
195
+ ## 7.0.8
196
+
197
+ ### Patch Changes
198
+
199
+ - Updated dependencies [63253bb]
200
+ - Updated dependencies [953cfe1]
201
+ - Updated dependencies [0e73866]
202
+ - @zhin.js/plugin-runtime@1.1.6
203
+ - @zhin.js/core@1.5.8
204
+ - @zhin.js/adapter@1.1.8
205
+ - @zhin.js/host-http@1.0.9
206
+ - @zhin.js/page@1.0.9
207
+ - @zhin.js/client@2.1.7
208
+
209
+ ## 7.0.7
210
+
211
+ ### Patch Changes
212
+
213
+ - Updated dependencies [36cb1ca]
214
+ - @zhin.js/core@1.5.7
215
+
216
+ ## 7.0.6
217
+
218
+ ### Patch Changes
219
+
220
+ - @zhin.js/adapter@1.1.7
221
+ - @zhin.js/core@1.5.6
222
+
223
+ ## 7.0.5
224
+
225
+ ### Patch Changes
226
+
227
+ - @zhin.js/adapter@1.1.7
228
+ - @zhin.js/core@1.5.5
229
+
230
+ ## 7.0.4
231
+
232
+ ### Patch Changes
233
+
234
+ - Updated dependencies [0de46a8]
235
+ - Updated dependencies [c106ecc]
236
+ - Updated dependencies [b0f37ae]
237
+ - Updated dependencies [daffd4c]
238
+ - Updated dependencies [36c7400]
239
+ - Updated dependencies [162fa34]
240
+ - Updated dependencies [e40b048]
241
+ - Updated dependencies [f1708c3]
242
+ - Updated dependencies [e53444f]
243
+ - Updated dependencies [92b0dd7]
244
+ - Updated dependencies [a7df753]
245
+ - @zhin.js/host-http@1.0.8
246
+ - @zhin.js/im-contract@1.0.3
247
+ - @zhin.js/adapter@1.1.7
248
+ - @zhin.js/plugin-runtime@1.1.5
249
+ - @zhin.js/core@1.5.4
250
+ - @zhin.js/page@1.0.8
251
+ - @zhin.js/client@2.1.6
252
+
253
+ ## 7.0.3
254
+
255
+ ### Patch Changes
256
+
257
+ - f8c7a54: fix: im
258
+ - Updated dependencies [f8c7a54]
259
+ - @zhin.js/logger@1.0.76
260
+ - @zhin.js/client@2.1.5
261
+ - @zhin.js/page@1.0.7
262
+ - @zhin.js/console-contract@1.0.1
263
+ - @zhin.js/host-http@1.0.7
264
+ - @zhin.js/adapter@1.1.6
265
+ - @zhin.js/core@1.5.3
266
+ - @zhin.js/im-contract@1.0.2
267
+ - @zhin.js/plugin-runtime@1.1.4
268
+
269
+ ## 7.0.2
270
+
271
+ ### Patch Changes
272
+
273
+ - Updated dependencies [afc0e66]
274
+ - Updated dependencies [2e41ad5]
275
+ - Updated dependencies [9f57124]
276
+ - @zhin.js/core@1.5.2
277
+ - @zhin.js/adapter@1.1.5
278
+ - @zhin.js/im-contract@1.0.1
279
+ - @zhin.js/plugin-runtime@1.1.3
280
+ - @zhin.js/host-http@1.0.6
281
+ - @zhin.js/page@1.0.6
282
+
283
+ ## 7.0.1
284
+
285
+ ### Patch Changes
286
+
287
+ - Updated dependencies [c8f4d45]
288
+ - @zhin.js/plugin-runtime@1.1.2
289
+ - @zhin.js/page@1.0.5
290
+ - @zhin.js/host-http@1.0.5
291
+ - @zhin.js/adapter@1.1.4
292
+ - @zhin.js/core@1.5.1
293
+
294
+ ## 7.0.0
295
+
296
+ ### Patch Changes
297
+
298
+ - 4fbff5d: feat!: 多模态双向 Segment 一贯制(BREAKING,无兼容层)
299
+
300
+ 全框架唯一媒体表达统一为 canonical `Segment` + `MediaRef{kind: url|path|base64|file, value, mime_type?, file_name?, size?}`,新增 audio/video/file 段类型;所有第二形状(legacy `data.url/file/base64` 字段、`mediaRefFromLegacyData`/`mediaRefToLegacyFields` 桥、双写)全部删除。
301
+
302
+ - **core**:`SendContent` 一等支持 `Segment[]`;endpoint 出站载荷只含 canonical 段;`resolveOutboundMediaPolicy` 改为纯声明驱动(adapter definition `segments.outboundMedia`),内置策略表删除,未声明回退 `url-or-text`;`ImageContent` 旧桥删除。
303
+ - **ai**:新增 `MediaContentBlock`/`MediaBlockRef`(Segment 同构)与 `UserMessage.media`(当前 turn 媒体,**不持久化**——存储层自动剥离);`createUserMessage(text, media?)` 签名变更(`ImageContent` 删除);provider 边界序列化器 `filterMediaBlocksForProvider` + 能力表(缺省 image-only,不支持类型降级占位文本);ai-sdk 桥媒体块 → SDK image/file parts。
304
+ - **agent**:入站 turn 注入(`turn/inbound-media.ts`)——commMessage 媒体段 → 当前 turn `UserMessage.media`;图片 path 物化、音频默认 STT(`@zhin.js/speech` 可选,失败降级占位)、视频/文件占位;`publishOutboundElements` 产出 canonical Segment;`transcribeAudioPayload` 导出。
305
+ - **cli**:`bridgeRuntimeMessage` 回复链路媒体段透传,不再压平为文本(`$reply` 直达 normalize → adapter)。
306
+ - **全部 20 个平台适配器**:出站媒体只消费 `data.media`(url 直发 / base64 直发 / 平台上传 / 读盘),入站媒体产出 canonical `data.media`;`segments.outboundMedia` 声明与实际消费逐一核对修正;QQ 入站新增 canonical segments(image/audio/video/file/mention/face/reply),图片/语音/视频不再丢失。
307
+
308
+ 迁移:适配器/插件产媒体一律用 `{ type, data: { media: MediaRef } }`;发送 legacy `data.url/file/base64` 形状的段会被 warn 丢弃。
309
+
310
+ - Updated dependencies [7c1e63a]
311
+ - Updated dependencies [4fbff5d]
312
+ - Updated dependencies [5b94d9c]
313
+ - @zhin.js/adapter@1.1.3
314
+ - @zhin.js/core@1.5.0
315
+ - @zhin.js/client@2.1.4
316
+
317
+ ## 6.0.5
318
+
319
+ ### Patch Changes
320
+
321
+ - Updated dependencies [d8bf702]
322
+ - @zhin.js/host-http@1.0.4
323
+ - @zhin.js/core@1.4.3
324
+ - @zhin.js/client@2.1.3
325
+
326
+ ## 6.0.4
327
+
328
+ ### Patch Changes
329
+
330
+ - Updated dependencies [45b3256]
331
+ - @zhin.js/core@1.4.3
332
+
333
+ ## 6.0.3
334
+
335
+ ### Patch Changes
336
+
337
+ - @zhin.js/core@1.4.2
338
+ - @zhin.js/client@2.1.2
339
+
340
+ ## 6.0.2
341
+
342
+ ### Patch Changes
343
+
344
+ - d5cd4aa: Publish Plugin Runtime entry points and convention modules as JavaScript so
345
+ installed npm plugins load on Node without TypeScript stripping. Workspace
346
+ development continues to prefer TypeScript sources for local HMR.
347
+
348
+ Remove the unconsumed legacy game hub APIs from game-kit; game navigation and
349
+ records now use ordinary convention commands owned by the game hub plugin.
350
+
351
+ - @zhin.js/page@1.0.4
352
+ - @zhin.js/adapter@1.1.2
353
+ - @zhin.js/core@1.4.2
354
+
355
+ ## 6.0.1
356
+
357
+ ### Patch Changes
358
+
359
+ - 5691aba: 第二轮全量审计修复批(8 面 ~60 bug):
360
+
361
+ - **安全**:email 附件路径穿越修复(basename + downloadPath 约束);lark/telegram/satori webhook 鉴权(缺密钥告警、timingSafeEqual、±5min 时效窗、chat_type 修正);onebot wss/webhook 缺 token 告警;qq webhook 改原始字节验签;renderJsx/JSX 转义注入修复;console runtime token 401 死循环。
362
+ - **P0 功能**:sandbox 多 endpoint 解析 + WS 路径隔离;short-url expand(undici opaqueredirect)改 follow;AI 压缩摘要失败不再静默丢历史(熔断恢复生效);console-ui 实时推送事件名归一化 + IndexedDB schema 对齐;process-monitor 热重载不再误判崩溃。
363
+ - **生命周期**:email IMAP 断线重连 + 在飞锁;onebot11/12 start 失败清理;line replyToken TTL + push 兜底;wechat-mp token 过期重试 + MsgId 去重;weixin-ilink buf 推进/防抖写盘/媒体 TTL/QR abort;satori PONG 看门狗;退避自毁修复。
364
+ - **游戏**:text-adventure 终局 restart 复活 + requires 服务端校验;tic-tac-toe PvP 占用/restart/队列清理/TTL;idiom-chain/word-riddle 闲聊不扣失误;别名中间件不劫持普通聊天。
365
+ - **共享库**:schema falsy 默认值/date/tuple/union 修复;database parseCondition Date/未知操作符、sqlite TEXT 往返、query 分派、belongsToMany 方言、migration dry-run;schedule DST 回拨死循环、重复 id 去重、flush 串行化;game-kit fallback 编号/onboarding 提示/尾缀边界/活引用拷贝。
366
+ - **渲染语音**:fetch 全部超时 + 渲染并发闸;sanitizeHtml form 保文本;STT 扩展名映射 + 删临时文件;TTS 未知 provider 报错;emojiCache LRU 负缓存/fontCache style/clearFonts 恢复;register 错误分类收窄。
367
+
368
+ - Updated dependencies [cdf64e7]
369
+ - Updated dependencies [2d0a159]
370
+ - Updated dependencies [5691aba]
371
+ - Updated dependencies [078e3f7]
372
+ - Updated dependencies [9c997b2]
373
+ - Updated dependencies [09d4f25]
374
+ - Updated dependencies [f0ec5ab]
375
+ - Updated dependencies [fa66c4c]
376
+ - Updated dependencies [fa66c4c]
377
+ - Updated dependencies [6cb6152]
378
+ - @zhin.js/plugin-runtime@1.1.1
379
+ - @zhin.js/host-http@1.0.3
380
+ - @zhin.js/client@2.1.1
381
+ - @zhin.js/adapter@1.1.1
382
+ - @zhin.js/core@1.4.1
383
+ - @zhin.js/page@1.0.3
384
+
385
+ ## 6.0.0
386
+
387
+ ### Patch Changes
388
+
389
+ - 7db69c1: 命令前缀改为适配器配置项:`MessageDispatcher` 不再硬编码 `/`,默认按消息所属适配器实例 config 的 `commandPrefix` 解析(默认 `''` 无前缀,任意文本按命令匹配),`endpoints[i].commandPrefix` 逐项覆盖;`ImRuntime({ commandPrefix })` 仍可设全局静态前缀。全部 20 个平台适配器 schema 新增 `commandPrefix` 属性。
390
+
391
+ BREAKING(行为变化):未配置时命令不再需要 `/` 前缀——原 `/zt` 写法不再命中,直接发 `zt` 即可;需要斜杠风格的适配器请在配置里显式设 `commandPrefix: '/'`。
392
+
393
+ - 713445c: 适配器配置格式定稿(不兼容旧格式):`plugins.<adapter>` 顶层仅共享字段 + `commandPrefix`,`endpoints[i]` 携带 endpoint 级字段(`name` + 凭据,各 schema 已类型化),`endpoints` 为必填(icqq 另需顶层 `master`);icqq 新增 `trusted` 列表(顶层/逐项均可)。scaffold-wizard 全部字段式与自定义 configure() 产出改为新格式,examples(full-bot / qq-games-bot)与 20 个适配器 README 同步迁移。
394
+ - Updated dependencies [7db69c1]
395
+ - Updated dependencies [e5c84ed]
396
+ - Updated dependencies [3ea84a0]
397
+ - Updated dependencies [5849336]
398
+ - Updated dependencies [1ddcd70]
399
+ - Updated dependencies [ac9da66]
400
+ - @zhin.js/core@1.4.0
401
+ - @zhin.js/adapter@1.1.0
402
+ - @zhin.js/plugin-runtime@1.1.0
403
+ - @zhin.js/client@2.1.0
404
+ - @zhin.js/host-http@1.0.2
405
+ - @zhin.js/page@1.0.2
406
+
407
+ ## 5.0.6
408
+
409
+ ### Patch Changes
410
+
411
+ - cc5c94d: 约定式插件运行时迁移(breaking):插件与适配器由 `usePlugin()` / `extends Adapter` 迁移为 `definePlugin` / `defineAdapter` + `plugin.ts` + 约定目录(`adapters/`、`commands/`、`components/`、`tools/` 等)。
412
+
413
+ - 新增约定式运行时包:`@zhin.js/plugin-runtime`、`@zhin.js/adapter`、`@zhin.js/runtime`、`@zhin.js/host-http`(首版 1.0.0 走 init-publish,不在本 changeset 内 bump)。
414
+ - 全部 20 个平台适配器改为约定式 `defineAdapter`,旧 `usePlugin` / `extends Adapter` / `segment-mapper` 生产入口已删除;onebot11 反向 WSS、onebot12 webhook/wss、milky sse/webhook/wss、satori webhook、kook webhook、qq webhook/middleware 等 slice 1 推迟的连接模式已补齐。
415
+ - 游戏 / 工具 / 服务插件同步迁移到约定目录结构。
416
+ - CLI 增加 plugin-runtime host installer(http/database/outbound/schedule/console 等)。
417
+
418
+ 后续加固(同批):
419
+
420
+ - CLI:`zhin runtime start --daemon`(pidfile/崩溃拉起/风暴保护),orphan watchdog 防僵尸进程;legacy `zhin dev` / `zhin start` 已移除(含 `zhin restart`),`zhin stop` 兼容新 daemon。
421
+ - 安全:builtin 工具统一走 `security/policy-facade.ts` 的 `runToolPolicies`(声明式策略表,deny 优先);审计日志 close flush + 背压队列;`splitCompoundCommand` 引号感知、`extractCommandName` 去引号堵绕过。
422
+ - 日志:Logger 双堆栈修复、本地时区、`getLogger` 挂树(`setLevel` 递归生效)、第三方库(log4js/discord)桥接、启动人读总结。
423
+ - 结构:`plugins/games/shared` 迁为 `packages/game-kit`(`@zhin.js/game-kit`);死目录 `plugins/adapters/common` 删除。
424
+ - 脚手架:`create-zhin-app` / `zhin new` / scaffold-wizard 生成物改为 Plugin Runtime 形态(minimal-bot 同构,新配置格式)。
425
+ - Console:endpoint.list 真实名称与 phase、schema:get-all 按 instanceKey 映射、db:\* 接 DatabaseHost。
426
+
427
+ 注:按仓库发布惯例(见 1bb345dd2),本次 breaking 迁移统一使用 patch,避免 zhin.js 5.0 级联。
428
+
429
+ - Updated dependencies [16ec4e8]
430
+ - Updated dependencies [cc5c94d]
431
+ - Updated dependencies [447f3e2]
432
+ - @zhin.js/core@1.3.5
433
+ - @zhin.js/host-http@1.0.1
434
+ - @zhin.js/logger@1.0.75
435
+ - @zhin.js/plugin-runtime@1.0.1
436
+ - @zhin.js/adapter@1.0.1
437
+ - @zhin.js/page@1.0.1
438
+
439
+ ## 5.0.5
440
+
441
+ ### Patch Changes
442
+
443
+ - 872c583: fix: 代码格式优化
444
+ - Updated dependencies [872c583]
445
+ - Updated dependencies [872c583]
446
+ - @zhin.js/client@2.0.5
447
+ - @zhin.js/contract@1.0.3
448
+ - @zhin.js/core@1.3.4
449
+ - @zhin.js/host-api@2.0.5
450
+ - @zhin.js/host-router@2.0.3
451
+
452
+ ## 5.0.4
453
+
454
+ ### Patch Changes
455
+
456
+ - 5cc9c03: fix: ai 优化
457
+ - b9b3881: fix: 增加游戏引擎以及部分游戏
458
+ - Updated dependencies [5b08052]
459
+ - Updated dependencies [5cc9c03]
460
+ - Updated dependencies [36d6db2]
461
+ - Updated dependencies [b9b3881]
462
+ - Updated dependencies [7700903]
463
+ - @zhin.js/core@1.3.3
464
+ - @zhin.js/client@2.0.4
465
+ - @zhin.js/contract@1.0.2
466
+ - @zhin.js/host-api@2.0.4
467
+ - @zhin.js/host-router@2.0.2
468
+
469
+ ## 5.0.3
470
+
471
+ ### Patch Changes
472
+
473
+ - c4575c9: fix: 输入输出优化,文档优化
474
+ - Updated dependencies [c4575c9]
475
+ - Updated dependencies [c4575c9]
476
+ - @zhin.js/host-router@2.0.1
477
+ - @zhin.js/host-api@2.0.3
478
+ - @zhin.js/core@1.3.2
479
+
480
+ ## 5.0.2
481
+
482
+ ### Patch Changes
483
+
484
+ - Updated dependencies [384ea11]
485
+ - @zhin.js/host-api@2.0.2
486
+
487
+ ## 5.0.1
488
+
489
+ ### Patch Changes
490
+
491
+ - Updated dependencies [609da24]
492
+ - Updated dependencies [93e58d9]
493
+ - Updated dependencies [ae5239c]
494
+ - @zhin.js/core@1.3.1
495
+ - @zhin.js/host-api@2.0.1
496
+ - @zhin.js/host-router@2.0.0
497
+
498
+ ## 5.0.0
499
+
500
+ ### Patch Changes
501
+
502
+ - Updated dependencies [db38da4]
503
+ - @zhin.js/core@1.3.0
504
+ - @zhin.js/host-api@2.0.0
505
+ - @zhin.js/host-router@2.0.0
506
+
507
+ ## 4.0.1
508
+
509
+ ### Patch Changes
510
+
511
+ - d8def69: fix: 性能优化
512
+ - 2ef4896: fix: 更新概念 Bot=>Endpoint,已适配后续更多的业务场景;统一角色权限
513
+ - Updated dependencies [d8def69]
514
+ - Updated dependencies [2ef4896]
515
+ - @zhin.js/host-router@1.0.1
516
+ - @zhin.js/host-api@1.0.1
517
+ - @zhin.js/core@1.2.1
518
+ - @zhin.js/client@2.0.3
519
+
520
+ ## 4.0.0
521
+
522
+ ### Patch Changes
523
+
524
+ - Updated dependencies [65f4b0a]
525
+ - Updated dependencies [e62c23a]
526
+ - @zhin.js/core@1.2.0
527
+ - @zhin.js/host-api@1.0.0
528
+ - @zhin.js/host-router@1.0.0
529
+
530
+ ## 3.0.10
531
+
532
+ ### Patch Changes
533
+
534
+ - Updated dependencies [d8547d2]
535
+ - @zhin.js/core@1.1.33
536
+ - @zhin.js/host-router@0.0.3
537
+
538
+ ## 3.0.9
539
+
540
+ ### Patch Changes
541
+
542
+ - 3735e96: fix: 智能家居控制
543
+ - Updated dependencies [3735e96]
544
+ - Updated dependencies [238de62]
545
+ - @zhin.js/host-api@0.0.4
546
+ - @zhin.js/core@1.1.32
547
+ - @zhin.js/host-router@0.0.3
548
+
549
+ ## 3.0.8
550
+
551
+ ### Patch Changes
552
+
553
+ - c8f8207: fix: 修复内存泄露问题
554
+ - Updated dependencies [c8f8207]
555
+ - Updated dependencies [a26e496]
556
+ - @zhin.js/client@2.0.2
557
+ - @zhin.js/contract@1.0.1
558
+ - @zhin.js/host-api@0.0.3
559
+ - @zhin.js/host-router@0.0.3
560
+ - @zhin.js/core@1.1.31
561
+
562
+ ## 3.0.7
563
+
564
+ ### Patch Changes
565
+
566
+ - c78d2cd: fix: cli 更新,文档更新
567
+ - Updated dependencies [c78d2cd]
568
+ - @zhin.js/client@2.0.1
569
+ - @zhin.js/host-router@0.0.2
570
+ - @zhin.js/core@1.1.30
571
+ - @zhin.js/host-api@0.0.2
572
+
573
+ ## 3.0.6
574
+
575
+ ### Patch Changes
576
+
577
+ - 90d9efd: fix: 处理包名
578
+ - @zhin.js/core@1.1.29
579
+ - @zhin.js/host-api@0.0.1
580
+ - @zhin.js/host-router@0.0.1
581
+
582
+ ## 3.0.5
583
+
584
+ ### Patch Changes
585
+
586
+ - 7e14f8d: fix: 统一发个版,优化一些列安全问题
587
+ - Updated dependencies [6295cbd]
588
+ - Updated dependencies [7e14f8d]
589
+ - Updated dependencies [996ebb3]
590
+ - @zhin.js/core@1.1.28
591
+ - @zhin.js/client@1.1.4
592
+ - @zhin.js/host-router-host@0.1.4
593
+ - zhin.js@1.0.86
594
+ - @zhin.js/console@3.0.5
595
+ - @zhin.js/host-router@1.0.79
596
+
597
+ ## 3.0.4
598
+
599
+ ### Patch Changes
600
+
601
+ - zhin.js@1.0.85
602
+ - @zhin.js/console@3.0.4
603
+ - @zhin.js/host-router@1.0.78
604
+ - @zhin.js/core@1.1.27
605
+
606
+ ## 3.0.3
607
+
608
+ ### Patch Changes
609
+
610
+ - 0db9fed: fix: deno deploy
611
+ - f19d2e0: fix: remove multiple runtime support
612
+ - Updated dependencies [0db9fed]
613
+ - Updated dependencies [f19d2e0]
614
+ - Updated dependencies [2d24338]
615
+ - @zhin.js/console@3.0.3
616
+ - @zhin.js/host-router-host@0.1.3
617
+ - @zhin.js/core@1.1.26
618
+ - zhin.js@1.0.84
619
+ - @zhin.js/client@1.1.3
620
+ - @zhin.js/host-router@1.0.77
621
+
622
+ ## 3.0.2
623
+
624
+ ### Patch Changes
625
+
626
+ - 775427e: fix: edge 支持
627
+ - Updated dependencies [775427e]
628
+ - @zhin.js/console@3.0.2
629
+ - @zhin.js/host-router@1.0.76
630
+ - @zhin.js/client@1.1.2
631
+ - @zhin.js/core@1.1.25
632
+ - zhin.js@1.0.83
633
+
634
+ ## 3.0.1
635
+
636
+ ### Patch Changes
637
+
638
+ - 32049f5: fix: init publish
639
+ - Updated dependencies [32049f5]
640
+ - @zhin.js/console@3.0.1
641
+ - @zhin.js/host-router@1.0.75
642
+ - @zhin.js/client@1.1.1
643
+ - @zhin.js/core@1.1.24
644
+ - zhin.js@1.0.82
645
+
646
+ ## 3.0.0
647
+
648
+ ### Patch Changes
649
+
650
+ - Updated dependencies
651
+ - @zhin.js/client@1.1.0
652
+ - @zhin.js/console@3.0.0
653
+
654
+ ## 2.0.24
655
+
656
+ ### Patch Changes
657
+
658
+ - Updated dependencies [8086ccb]
659
+ - @zhin.js/core@1.1.23
660
+ - zhin.js@1.0.81
661
+ - @zhin.js/console@2.0.24
662
+ - @zhin.js/host-router@1.0.74
663
+
664
+ ## 2.0.23
665
+
666
+ ### Patch Changes
667
+
668
+ - zhin.js@1.0.80
669
+ - @zhin.js/console@2.0.23
670
+ - @zhin.js/host-router@1.0.73
671
+ - @zhin.js/core@1.1.22
672
+
673
+ ## 2.0.22
674
+
675
+ ### Patch Changes
676
+
677
+ - zhin.js@1.0.79
678
+ - @zhin.js/console@2.0.22
679
+ - @zhin.js/host-router@1.0.72
680
+ - @zhin.js/core@1.1.21
681
+
682
+ ## 2.0.21
683
+
684
+ ### Patch Changes
685
+
686
+ - Updated dependencies [88caeb2]
687
+ - @zhin.js/console@2.0.21
688
+ - @zhin.js/core@1.1.20
689
+ - zhin.js@1.0.78
690
+ - @zhin.js/host-router@1.0.71
691
+
692
+ ## 2.0.20
693
+
694
+ ### Patch Changes
695
+
696
+ - zhin.js@1.0.77
697
+ - @zhin.js/core@1.1.19
698
+ - @zhin.js/console@2.0.20
699
+ - @zhin.js/host-router@1.0.70
700
+
701
+ ## 2.0.19
702
+
703
+ ### Patch Changes
704
+
705
+ - Updated dependencies [cb9fbf1]
706
+ - zhin.js@1.0.76
707
+ - @zhin.js/console@2.0.19
708
+ - @zhin.js/host-router@1.0.69
709
+ - @zhin.js/core@1.1.18
710
+
711
+ ## 2.0.18
712
+
713
+ ### Patch Changes
714
+
715
+ - @zhin.js/core@1.1.17
716
+ - zhin.js@1.0.75
717
+ - @zhin.js/console@2.0.18
718
+ - @zhin.js/host-router@1.0.68
719
+
720
+ ## 2.0.17
721
+
722
+ ### Patch Changes
723
+
724
+ - Updated dependencies [c9dec38]
725
+ - @zhin.js/core@1.1.16
726
+ - zhin.js@1.0.74
727
+ - @zhin.js/console@2.0.17
728
+ - @zhin.js/host-router@1.0.67
729
+
730
+ ## 2.0.16
731
+
732
+ ### Patch Changes
733
+
734
+ - f1e9a76: fix: 提高 skill 质量
735
+ - zhin.js@1.0.73
736
+ - @zhin.js/console@2.0.16
737
+ - @zhin.js/host-router@1.0.66
738
+ - @zhin.js/core@1.1.15
739
+
740
+ ## 2.0.15
741
+
742
+ ### Patch Changes
743
+
744
+ - Updated dependencies [21efca3]
745
+ - @zhin.js/console@2.0.15
746
+
747
+ ## 2.0.14
748
+
749
+ ### Patch Changes
750
+
751
+ - abc75a4: fix: 优化,客户端构建优化
752
+ - Updated dependencies [abc75a4]
753
+ - @zhin.js/console@2.0.14
754
+
755
+ ## 2.0.13
756
+
757
+ ### Patch Changes
758
+
759
+ - e28fd7c: fix: 重新发版
760
+ - Updated dependencies [e28fd7c]
761
+ - @zhin.js/client@1.0.18
762
+ - @zhin.js/core@1.1.14
763
+ - zhin.js@1.0.72
764
+ - @zhin.js/console@2.0.13
765
+ - @zhin.js/host-router@1.0.65
766
+
767
+ ## 2.0.12
768
+
769
+ ### Patch Changes
770
+
771
+ - Updated dependencies [60b1a4d]
772
+ - @zhin.js/console@2.0.12
773
+
774
+ ## 2.0.11
775
+
776
+ ### Patch Changes
777
+
778
+ - 4304825: fix: 重新发版
779
+ - Updated dependencies [4304825]
780
+ - @zhin.js/client@1.0.17
781
+ - @zhin.js/core@1.1.13
782
+ - zhin.js@1.0.71
783
+ - @zhin.js/console@2.0.11
784
+ - @zhin.js/host-router@1.0.64
785
+
786
+ ## 2.0.10
787
+
788
+ ### Patch Changes
789
+
790
+ - Updated dependencies [d0250e8]
791
+ - @zhin.js/core@1.1.10
792
+ - zhin.js@1.0.68
793
+ - @zhin.js/console@2.0.10
794
+ - @zhin.js/host-router@1.0.63
795
+
796
+ ## 2.0.9
797
+
798
+ ### Patch Changes
799
+
800
+ - Updated dependencies [0eba6d6]
801
+ - @zhin.js/host-router@1.0.62
802
+ - @zhin.js/core@1.1.9
803
+ - zhin.js@1.0.67
804
+ - @zhin.js/console@2.0.9
805
+
806
+ ## 2.0.8
807
+
808
+ ### Patch Changes
809
+
810
+ - zhin.js@1.0.66
811
+ - @zhin.js/core@1.1.8
812
+ - @zhin.js/console@2.0.8
813
+ - @zhin.js/host-router@1.0.61
814
+
815
+ ## 2.0.7
816
+
817
+ ### Patch Changes
818
+
819
+ - @zhin.js/core@1.1.7
820
+ - zhin.js@1.0.65
821
+ - @zhin.js/console@2.0.7
822
+ - @zhin.js/host-router@1.0.60
823
+
824
+ ## 2.0.6
825
+
826
+ ### Patch Changes
827
+
828
+ - 9577eba: fix: tool 收集 bug,升级 ts 到 6.0.2
829
+ - Updated dependencies [9577eba]
830
+ - @zhin.js/client@1.0.16
831
+ - @zhin.js/core@1.1.6
832
+ - zhin.js@1.0.64
833
+ - @zhin.js/console@2.0.6
834
+ - @zhin.js/host-router@1.0.59
835
+
836
+ ## 2.0.5
837
+
838
+ ### Patch Changes
839
+
840
+ - ba30934: fix: web 优化
841
+ - Updated dependencies [ba30934]
842
+ - @zhin.js/console@2.0.5
843
+ - @zhin.js/host-router@1.0.58
844
+ - zhin.js@1.0.63
845
+ - @zhin.js/core@1.1.5
846
+
847
+ ## 2.0.4
848
+
849
+ ### Patch Changes
850
+
851
+ - zhin.js@1.0.62
852
+ - @zhin.js/console@2.0.4
853
+ - @zhin.js/host-router@1.0.57
854
+ - @zhin.js/core@1.1.4
855
+
856
+ ## 2.0.3
857
+
858
+ ### Patch Changes
859
+
860
+ - zhin.js@1.0.61
861
+ - @zhin.js/console@2.0.3
862
+ - @zhin.js/host-router@1.0.56
863
+ - @zhin.js/core@1.1.3
864
+
865
+ ## 2.0.2
866
+
867
+ ### Patch Changes
868
+
869
+ - 5073d4c: chore: chore: update TypeScript version to ^5.9.3 across all plugins and packages
870
+ feat: enhance ai-text-as-image output registration with off handler for cleanup
871
+ fix: remove unnecessary logging in ensureBuiltinFontsCached function
872
+ refactor: simplify action handlers in html-renderer tools
873
+ chore: add README files for queue-sandbox-poc and event-delivery packages
874
+ chore: adjust pnpm workspace configuration to exclude games directory
875
+ chore: update tsconfig to include plugins directory for TypeScript compilation
876
+ - Updated dependencies [5073d4c]
877
+ - @zhin.js/console@2.0.2
878
+ - @zhin.js/core@1.1.2
879
+ - zhin.js@1.0.60
880
+ - @zhin.js/host-router@1.0.55
881
+
882
+ ## 2.0.1
883
+
884
+ ### Patch Changes
885
+
886
+ - c212bf7: fix: 适配器优化
887
+ - Updated dependencies [c212bf7]
888
+ - @zhin.js/client@1.0.15
889
+ - @zhin.js/core@1.1.1
890
+ - zhin.js@1.0.59
891
+ - @zhin.js/console@2.0.1
892
+ - @zhin.js/host-router@1.0.54
893
+
894
+ ## 2.0.0
895
+
896
+ ### Patch Changes
897
+
898
+ - Updated dependencies [8280fe7]
899
+ - @zhin.js/core@1.1.0
900
+ - zhin.js@1.0.58
901
+ - @zhin.js/console@2.0.0
902
+ - @zhin.js/host-router@1.0.53
903
+
3
904
  ## 1.0.70
4
905
 
5
906
  ### Patch Changes
@@ -9,7 +910,7 @@
9
910
  - @zhin.js/core@1.0.57
10
911
  - zhin.js@1.0.57
11
912
  - @zhin.js/console@1.0.59
12
- - @zhin.js/http@1.0.52
913
+ - @zhin.js/host-router@1.0.52
13
914
 
14
915
  ## 1.0.69
15
916
 
@@ -18,7 +919,7 @@
18
919
  - zhin.js@1.0.56
19
920
  - @zhin.js/core@1.0.56
20
921
  - @zhin.js/console@1.0.58
21
- - @zhin.js/http@1.0.51
922
+ - @zhin.js/host-router@1.0.51
22
923
 
23
924
  ## 1.0.68
24
925
 
@@ -35,7 +936,7 @@
35
936
  - @zhin.js/core@1.0.55
36
937
  - zhin.js@1.0.55
37
938
  - @zhin.js/console@1.0.56
38
- - @zhin.js/http@1.0.50
939
+ - @zhin.js/host-router@1.0.50
39
940
 
40
941
  ## 1.0.66
41
942
 
@@ -47,7 +948,7 @@
47
948
  - @zhin.js/core@1.0.54
48
949
  - zhin.js@1.0.54
49
950
  - @zhin.js/console@1.0.55
50
- - @zhin.js/http@1.0.49
951
+ - @zhin.js/host-router@1.0.49
51
952
 
52
953
  ## 1.0.65
53
954
 
@@ -56,7 +957,7 @@
56
957
  - @zhin.js/core@1.0.53
57
958
  - zhin.js@1.0.53
58
959
  - @zhin.js/console@1.0.54
59
- - @zhin.js/http@1.0.48
960
+ - @zhin.js/host-router@1.0.48
60
961
 
61
962
  ## 1.0.64
62
963
 
@@ -65,7 +966,7 @@
65
966
  - a3511a0: 各包内 Agent 技能说明已固定为随包发布的 `skills/*/SKILL.md`(替代已移除的运行时 `declareSkill`)。本批为 registry / 分发侧对齐的 **patch** 版本递增。
66
967
  - Updated dependencies [a3511a0]
67
968
  - @zhin.js/console@1.0.53
68
- - @zhin.js/http@1.0.47
969
+ - @zhin.js/host-router@1.0.47
69
970
 
70
971
  ## 1.0.63
71
972
 
@@ -78,7 +979,7 @@
78
979
  - zhin.js@1.0.52
79
980
  - @zhin.js/console@1.0.52
80
981
  - @zhin.js/client@1.0.13
81
- - @zhin.js/http@1.0.46
982
+ - @zhin.js/host-router@1.0.46
82
983
 
83
984
  ## 1.0.62
84
985
 
@@ -93,7 +994,7 @@
93
994
 
94
995
  - zhin.js@1.0.51
95
996
  - @zhin.js/console@1.0.50
96
- - @zhin.js/http@1.0.45
997
+ - @zhin.js/host-router@1.0.45
97
998
  - @zhin.js/core@1.0.51
98
999
 
99
1000
  ## 1.0.60
@@ -110,7 +1011,7 @@
110
1011
 
111
1012
  - zhin.js@1.0.50
112
1013
  - @zhin.js/console@1.0.48
113
- - @zhin.js/http@1.0.44
1014
+ - @zhin.js/host-router@1.0.44
114
1015
  - @zhin.js/core@1.0.50
115
1016
 
116
1017
  ## 1.0.58
@@ -121,7 +1022,7 @@
121
1022
  - @zhin.js/core@1.0.49
122
1023
  - zhin.js@1.0.49
123
1024
  - @zhin.js/console@1.0.47
124
- - @zhin.js/http@1.0.43
1025
+ - @zhin.js/host-router@1.0.43
125
1026
 
126
1027
  ## 1.0.57
127
1028
 
@@ -131,7 +1032,7 @@
131
1032
  - @zhin.js/core@1.0.48
132
1033
  - zhin.js@1.0.48
133
1034
  - @zhin.js/console@1.0.46
134
- - @zhin.js/http@1.0.42
1035
+ - @zhin.js/host-router@1.0.42
135
1036
 
136
1037
  ## 1.0.56
137
1038
 
@@ -141,7 +1042,7 @@
141
1042
  - @zhin.js/core@1.0.47
142
1043
  - zhin.js@1.0.47
143
1044
  - @zhin.js/console@1.0.45
144
- - @zhin.js/http@1.0.41
1045
+ - @zhin.js/host-router@1.0.41
145
1046
 
146
1047
  ## 1.0.55
147
1048
 
@@ -151,7 +1052,7 @@
151
1052
  - @zhin.js/core@1.0.46
152
1053
  - zhin.js@1.0.46
153
1054
  - @zhin.js/console@1.0.44
154
- - @zhin.js/http@1.0.40
1055
+ - @zhin.js/host-router@1.0.40
155
1056
 
156
1057
  ## 1.0.54
157
1058
 
@@ -161,7 +1062,7 @@
161
1062
  - @zhin.js/core@1.0.45
162
1063
  - zhin.js@1.0.45
163
1064
  - @zhin.js/console@1.0.43
164
- - @zhin.js/http@1.0.39
1065
+ - @zhin.js/host-router@1.0.39
165
1066
 
166
1067
  ## 1.0.53
167
1068
 
@@ -169,7 +1070,7 @@
169
1070
 
170
1071
  - zhin.js@1.0.44
171
1072
  - @zhin.js/console@1.0.42
172
- - @zhin.js/http@1.0.38
1073
+ - @zhin.js/host-router@1.0.38
173
1074
  - @zhin.js/core@1.0.44
174
1075
 
175
1076
  ## 1.0.52
@@ -178,7 +1079,7 @@
178
1079
 
179
1080
  - Updated dependencies [72ec4ba]
180
1081
  - @zhin.js/console@1.0.41
181
- - @zhin.js/http@1.0.37
1082
+ - @zhin.js/host-router@1.0.37
182
1083
  - @zhin.js/client@1.0.11
183
1084
  - @zhin.js/core@1.0.43
184
1085
  - zhin.js@1.0.43
@@ -197,7 +1098,7 @@
197
1098
  - zhin.js@1.0.42
198
1099
  - @zhin.js/core@1.0.42
199
1100
  - @zhin.js/console@1.0.39
200
- - @zhin.js/http@1.0.36
1101
+ - @zhin.js/host-router@1.0.36
201
1102
 
202
1103
  ## 1.0.49
203
1104
 
@@ -207,7 +1108,7 @@
207
1108
  - @zhin.js/core@1.0.41
208
1109
  - zhin.js@1.0.41
209
1110
  - @zhin.js/console@1.0.38
210
- - @zhin.js/http@1.0.35
1111
+ - @zhin.js/host-router@1.0.35
211
1112
 
212
1113
  ## 1.0.48
213
1114
 
@@ -217,7 +1118,7 @@
217
1118
  - @zhin.js/core@1.0.40
218
1119
  - zhin.js@1.0.40
219
1120
  - @zhin.js/console@1.0.37
220
- - @zhin.js/http@1.0.34
1121
+ - @zhin.js/host-router@1.0.34
221
1122
 
222
1123
  ## 1.0.47
223
1124
 
@@ -227,7 +1128,7 @@
227
1128
  - @zhin.js/core@1.0.39
228
1129
  - zhin.js@1.0.39
229
1130
  - @zhin.js/console@1.0.36
230
- - @zhin.js/http@1.0.33
1131
+ - @zhin.js/host-router@1.0.33
231
1132
 
232
1133
  ## 1.0.46
233
1134
 
@@ -237,7 +1138,7 @@
237
1138
  - @zhin.js/core@1.0.38
238
1139
  - zhin.js@1.0.38
239
1140
  - @zhin.js/console@1.0.35
240
- - @zhin.js/http@1.0.32
1141
+ - @zhin.js/host-router@1.0.32
241
1142
 
242
1143
  ## 1.0.45
243
1144
 
@@ -245,7 +1146,7 @@
245
1146
 
246
1147
  - Updated dependencies [631da6e]
247
1148
  - @zhin.js/console@1.0.34
248
- - @zhin.js/http@1.0.31
1149
+ - @zhin.js/host-router@1.0.31
249
1150
 
250
1151
  ## 1.0.44
251
1152
 
@@ -255,7 +1156,7 @@
255
1156
  - @zhin.js/core@1.0.37
256
1157
  - zhin.js@1.0.37
257
1158
  - @zhin.js/console@1.0.33
258
- - @zhin.js/http@1.0.30
1159
+ - @zhin.js/host-router@1.0.30
259
1160
 
260
1161
  ## 1.0.43
261
1162
 
@@ -264,7 +1165,7 @@
264
1165
  - Updated dependencies [432d0a5]
265
1166
  - Updated dependencies [6d94111]
266
1167
  - @zhin.js/console@1.0.32
267
- - @zhin.js/http@1.0.29
1168
+ - @zhin.js/host-router@1.0.29
268
1169
  - @zhin.js/core@1.0.36
269
1170
  - zhin.js@1.0.36
270
1171
 
@@ -276,7 +1177,7 @@
276
1177
  - @zhin.js/core@1.0.35
277
1178
  - zhin.js@1.0.35
278
1179
  - @zhin.js/console@1.0.31
279
- - @zhin.js/http@1.0.28
1180
+ - @zhin.js/host-router@1.0.28
280
1181
 
281
1182
  ## 1.0.41
282
1183
 
@@ -286,7 +1187,7 @@
286
1187
  - @zhin.js/core@1.0.34
287
1188
  - zhin.js@1.0.34
288
1189
  - @zhin.js/console@1.0.30
289
- - @zhin.js/http@1.0.27
1190
+ - @zhin.js/host-router@1.0.27
290
1191
 
291
1192
  ## 1.0.40
292
1193
 
@@ -296,14 +1197,14 @@
296
1197
  - @zhin.js/core@1.0.33
297
1198
  - zhin.js@1.0.33
298
1199
  - @zhin.js/console@1.0.29
299
- - @zhin.js/http@1.0.26
1200
+ - @zhin.js/host-router@1.0.26
300
1201
 
301
1202
  ## 1.0.39
302
1203
 
303
1204
  ### Patch Changes
304
1205
 
305
1206
  - Updated dependencies [48481a8]
306
- - @zhin.js/http@1.0.25
1207
+ - @zhin.js/host-router@1.0.25
307
1208
 
308
1209
  ## 1.0.38
309
1210
 
@@ -313,7 +1214,7 @@
313
1214
  - @zhin.js/core@1.0.32
314
1215
  - zhin.js@1.0.32
315
1216
  - @zhin.js/console@1.0.28
316
- - @zhin.js/http@1.0.24
1217
+ - @zhin.js/host-router@1.0.24
317
1218
 
318
1219
  ## 1.0.37
319
1220
 
@@ -323,7 +1224,7 @@
323
1224
  - @zhin.js/core@1.0.31
324
1225
  - zhin.js@1.0.31
325
1226
  - @zhin.js/console@1.0.27
326
- - @zhin.js/http@1.0.23
1227
+ - @zhin.js/host-router@1.0.23
327
1228
 
328
1229
  ## 1.0.36
329
1230
 
@@ -332,7 +1233,7 @@
332
1233
  - Updated dependencies [460a6c6]
333
1234
  - zhin.js@1.0.30
334
1235
  - @zhin.js/console@1.0.26
335
- - @zhin.js/http@1.0.22
1236
+ - @zhin.js/host-router@1.0.22
336
1237
  - @zhin.js/core@1.0.30
337
1238
 
338
1239
  ## 1.0.35
@@ -343,7 +1244,7 @@
343
1244
  - @zhin.js/core@1.0.29
344
1245
  - zhin.js@1.0.29
345
1246
  - @zhin.js/console@1.0.25
346
- - @zhin.js/http@1.0.21
1247
+ - @zhin.js/host-router@1.0.21
347
1248
 
348
1249
  ## 1.0.34
349
1250
 
@@ -351,7 +1252,7 @@
351
1252
 
352
1253
  - Updated dependencies [05a514d]
353
1254
  - @zhin.js/console@1.0.24
354
- - @zhin.js/http@1.0.20
1255
+ - @zhin.js/host-router@1.0.20
355
1256
  - @zhin.js/client@1.0.10
356
1257
  - @zhin.js/core@1.0.28
357
1258
  - zhin.js@1.0.28
@@ -361,14 +1262,14 @@
361
1262
  ### Patch Changes
362
1263
 
363
1264
  - Updated dependencies [2b44e18]
364
- - @zhin.js/http@1.0.19
1265
+ - @zhin.js/host-router@1.0.19
365
1266
 
366
1267
  ## 1.0.32
367
1268
 
368
1269
  ### Patch Changes
369
1270
 
370
1271
  - Updated dependencies [b27e633]
371
- - @zhin.js/http@1.0.18
1272
+ - @zhin.js/host-router@1.0.18
372
1273
  - @zhin.js/core@1.0.27
373
1274
  - zhin.js@1.0.27
374
1275
  - @zhin.js/console@1.0.23
@@ -380,7 +1281,7 @@
380
1281
  - 106d357: fix: ai
381
1282
  - Updated dependencies [106d357]
382
1283
  - @zhin.js/console@1.0.22
383
- - @zhin.js/http@1.0.17
1284
+ - @zhin.js/host-router@1.0.17
384
1285
  - @zhin.js/client@1.0.9
385
1286
  - @zhin.js/core@1.0.26
386
1287
  - zhin.js@1.0.26
@@ -397,7 +1298,7 @@
397
1298
  - @zhin.js/core@1.0.25
398
1299
  - zhin.js@1.0.25
399
1300
  - @zhin.js/console@1.0.21
400
- - @zhin.js/http@1.0.16
1301
+ - @zhin.js/host-router@1.0.16
401
1302
 
402
1303
  ## 1.0.29
403
1304
 
@@ -407,7 +1308,7 @@
407
1308
  - @zhin.js/core@1.0.24
408
1309
  - zhin.js@1.0.24
409
1310
  - @zhin.js/console@1.0.20
410
- - @zhin.js/http@1.0.15
1311
+ - @zhin.js/host-router@1.0.15
411
1312
 
412
1313
  ## 1.0.28
413
1314
 
@@ -418,7 +1319,7 @@
418
1319
  - @zhin.js/core@1.0.23
419
1320
  - zhin.js@1.0.23
420
1321
  - @zhin.js/console@1.0.19
421
- - @zhin.js/http@1.0.14
1322
+ - @zhin.js/host-router@1.0.14
422
1323
 
423
1324
  ## 1.0.27
424
1325
 
@@ -427,7 +1328,7 @@
427
1328
  - Updated dependencies [26aba27]
428
1329
  - zhin.js@1.0.22
429
1330
  - @zhin.js/console@1.0.18
430
- - @zhin.js/http@1.0.13
1331
+ - @zhin.js/host-router@1.0.13
431
1332
  - @zhin.js/core@1.0.22
432
1333
 
433
1334
  ## 1.0.26
@@ -438,7 +1339,7 @@
438
1339
  - @zhin.js/core@1.0.21
439
1340
  - zhin.js@1.0.21
440
1341
  - @zhin.js/console@1.0.17
441
- - @zhin.js/http@1.0.12
1342
+ - @zhin.js/host-router@1.0.12
442
1343
 
443
1344
  ## 1.0.25
444
1345
 
@@ -449,7 +1350,7 @@
449
1350
  - Updated dependencies [a3b7673]
450
1351
  - Updated dependencies [5141137]
451
1352
  - @zhin.js/console@1.0.16
452
- - @zhin.js/http@1.0.11
1353
+ - @zhin.js/host-router@1.0.11
453
1354
  - @zhin.js/core@1.0.20
454
1355
  - zhin.js@1.0.20
455
1356
 
@@ -463,7 +1364,7 @@
463
1364
  - @zhin.js/core@1.0.19
464
1365
  - zhin.js@1.0.19
465
1366
  - @zhin.js/console@1.0.15
466
- - @zhin.js/http@1.0.10
1367
+ - @zhin.js/host-router@1.0.10
467
1368
 
468
1369
  ## 1.0.23
469
1370
 
@@ -475,7 +1376,7 @@
475
1376
  - @zhin.js/core@1.0.18
476
1377
  - zhin.js@1.0.18
477
1378
  - @zhin.js/console@1.0.14
478
- - @zhin.js/http@1.0.9
1379
+ - @zhin.js/host-router@1.0.9
479
1380
 
480
1381
  ## 1.0.22
481
1382
 
@@ -527,7 +1428,7 @@
527
1428
  - Updated dependencies [547028f]
528
1429
  - @zhin.js/console@1.0.10
529
1430
  - @zhin.js/types@1.0.5
530
- - @zhin.js/http@1.0.7
1431
+ - @zhin.js/host-router@1.0.7
531
1432
  - zhin.js@1.0.14
532
1433
 
533
1434
  ## 1.0.15
@@ -567,7 +1468,7 @@
567
1468
  - Updated dependencies [c490260]
568
1469
  - @zhin.js/console@1.0.7
569
1470
  - @zhin.js/client@1.0.5
570
- - @zhin.js/http@1.0.6
1471
+ - @zhin.js/host-router@1.0.6
571
1472
  - zhin.js@1.0.9
572
1473
 
573
1474
  ## 1.0.10
@@ -580,7 +1481,7 @@
580
1481
  - @zhin.js/types@1.0.3
581
1482
  - @zhin.js/client@1.0.4
582
1483
  - zhin.js@1.0.8
583
- - @zhin.js/http@1.0.5
1484
+ - @zhin.js/host-router@1.0.5
584
1485
 
585
1486
  ## 1.0.9
586
1487
 
@@ -599,7 +1500,7 @@
599
1500
  - Updated dependencies [b213bbc]
600
1501
  - @zhin.js/console@1.0.4
601
1502
  - @zhin.js/client@1.0.3
602
- - @zhin.js/http@1.0.4
1503
+ - @zhin.js/host-router@1.0.4
603
1504
  - zhin.js@1.0.6
604
1505
 
605
1506
  ## 1.0.7
@@ -615,7 +1516,7 @@
615
1516
 
616
1517
  - f347667: fix: runtime error
617
1518
  - Updated dependencies [f347667]
618
- - @zhin.js/http@1.0.3
1519
+ - @zhin.js/host-router@1.0.3
619
1520
  - zhin.js@1.0.5
620
1521
 
621
1522
  ## 1.0.5
@@ -625,7 +1526,7 @@
625
1526
  - Updated dependencies [d291005]
626
1527
  - @zhin.js/console@1.0.2
627
1528
  - @zhin.js/client@1.0.2
628
- - @zhin.js/http@1.0.2
1529
+ - @zhin.js/host-router@1.0.2
629
1530
 
630
1531
  ## 1.0.4
631
1532