@zhin.js/adapter-discord 1.0.87 → 1.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (91) hide show
  1. package/CHANGELOG.md +949 -66
  2. package/PERMITS.md +25 -0
  3. package/README.md +60 -67
  4. package/adapters/discord/index.js +41 -0
  5. package/adapters/discord/index.ts +57 -0
  6. package/agents/discord/agent.json +20 -0
  7. package/agents/discord/boundaries.md +3 -0
  8. package/agents/discord/conventions.md +3 -0
  9. package/agents/discord/skills/discord/SKILL.md +21 -0
  10. package/agents/discord/skills/discord/tools/add_role/index.js +24 -0
  11. package/agents/discord/skills/discord/tools/add_role/index.ts +26 -0
  12. package/agents/discord/skills/discord/tools/create_thread/index.js +29 -0
  13. package/agents/discord/skills/discord/tools/create_thread/index.ts +28 -0
  14. package/agents/discord/skills/discord/tools/forum_post/index.js +33 -0
  15. package/agents/discord/skills/discord/tools/forum_post/index.ts +33 -0
  16. package/agents/discord/skills/discord/tools/list_roles/index.js +28 -0
  17. package/agents/discord/skills/discord/tools/list_roles/index.ts +34 -0
  18. package/agents/discord/skills/discord/tools/react/index.js +24 -0
  19. package/agents/discord/skills/discord/tools/react/index.ts +24 -0
  20. package/agents/discord/skills/discord/tools/remove_role/index.js +24 -0
  21. package/agents/discord/skills/discord/tools/remove_role/index.ts +26 -0
  22. package/agents/discord/skills/discord/tools/send_embed/index.js +43 -0
  23. package/agents/discord/skills/discord/tools/send_embed/index.ts +38 -0
  24. package/agents/discord/system.md +3 -0
  25. package/commands/discord/endpoint/add/[id]/index.js +3 -0
  26. package/commands/discord/endpoint/add/[id]/index.ts +3 -0
  27. package/commands/discord/endpoint/definition.js +19 -0
  28. package/commands/discord/endpoint/definition.ts +19 -0
  29. package/commands/discord/endpoint/list/index.js +3 -0
  30. package/commands/discord/endpoint/list/index.ts +3 -0
  31. package/commands/discord/endpoint/remove/[id]/index.js +3 -0
  32. package/commands/discord/endpoint/remove/[id]/index.ts +3 -0
  33. package/lib/client.d.ts +16 -0
  34. package/lib/client.js +8 -0
  35. package/lib/discord-runtime-state.d.ts +1 -0
  36. package/lib/discord-runtime-state.js +6 -0
  37. package/lib/endpoint.d.ts +72 -0
  38. package/lib/endpoint.js +458 -0
  39. package/lib/gateway.d.ts +144 -0
  40. package/lib/gateway.js +303 -0
  41. package/lib/index.d.ts +6 -18
  42. package/lib/index.js +6 -323
  43. package/lib/platform-permit.d.ts +14 -0
  44. package/lib/platform-permit.js +42 -0
  45. package/lib/protocol.d.ts +145 -0
  46. package/lib/protocol.js +320 -0
  47. package/lib/side-event-dispatch.d.ts +8 -0
  48. package/lib/side-event-dispatch.js +24 -0
  49. package/lib/webhook.d.ts +14 -0
  50. package/lib/webhook.js +88 -0
  51. package/package.json +74 -30
  52. package/plugin.js +19 -0
  53. package/schema.json +205 -0
  54. package/src/client.ts +24 -0
  55. package/src/discord-runtime-state.ts +7 -0
  56. package/src/endpoint.ts +562 -0
  57. package/src/gateway.ts +426 -0
  58. package/src/index.ts +57 -323
  59. package/src/platform-permit.ts +57 -0
  60. package/src/protocol.ts +475 -0
  61. package/src/side-event-dispatch.ts +37 -0
  62. package/src/webhook.ts +123 -0
  63. package/client/Dashboard.tsx +0 -195
  64. package/client/index.tsx +0 -11
  65. package/client/tsconfig.json +0 -7
  66. package/client/utils/api.ts +0 -17
  67. package/dist/index.js +0 -29
  68. package/lib/adapter.d.ts +0 -19
  69. package/lib/adapter.d.ts.map +0 -1
  70. package/lib/adapter.js +0 -90
  71. package/lib/adapter.js.map +0 -1
  72. package/lib/bot-interactions.d.ts +0 -33
  73. package/lib/bot-interactions.d.ts.map +0 -1
  74. package/lib/bot-interactions.js +0 -278
  75. package/lib/bot-interactions.js.map +0 -1
  76. package/lib/bot.d.ts +0 -117
  77. package/lib/bot.d.ts.map +0 -1
  78. package/lib/bot.js +0 -904
  79. package/lib/bot.js.map +0 -1
  80. package/lib/index.d.ts.map +0 -1
  81. package/lib/index.js.map +0 -1
  82. package/lib/types.d.ts +0 -49
  83. package/lib/types.d.ts.map +0 -1
  84. package/lib/types.js +0 -2
  85. package/lib/types.js.map +0 -1
  86. package/plugin.yml +0 -3
  87. package/skills/discord/SKILL.md +0 -104
  88. package/src/adapter.ts +0 -107
  89. package/src/bot-interactions.ts +0 -348
  90. package/src/bot.ts +0 -1037
  91. package/src/types.ts +0 -60
package/CHANGELOG.md CHANGED
@@ -1,5 +1,888 @@
1
1
  # @zhin.js/adapter-discord
2
2
 
3
+ ## 1.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - a9e4a40: Derive Command user routes only from explicit `commands/**/*/index.ts(x)` entry paths instead of prepending the plugin owner. Child plugins can now publish top-level static or dynamic commands, while duplicate routes across owners fail during generation construction. Adapter endpoint commands move to explicit paths such as `commands/qq/endpoint/list/index.ts` and are invoked as `qq endpoint list`.
8
+ - 8740059: Standardize TypeScript capabilities on named module directories such as `commands/foo/index.ts`, `middlewares/audit/index.ts`, `handlers/message-receive/index.ts`, `pages/workroom/index.tsx`, and `mcps/filesystem/index.ts`. Only the fixed `index` entry is discovered; sibling files remain private helpers.
9
+
10
+ Command route segments come from directories, while `[name]`, `[[name]]`, `[...name]`, and `[[...name]]` directories declare dynamic parameters. Plugin owners do not enter the route unless their config explicitly sets `commandNamespace`; Endpoint `commandPrefix` remains platform-owned and defaults to an empty string.
11
+
12
+ Migrate the built-in adapters, plugins, examples, generators, migration tooling, hot reload classification, Agent authoring surfaces, documentation, and release artifacts to the explicit entry convention.
13
+
14
+ Make Tool ownership and progressive disclosure explicit across all four supported locations: plugin-public `tools/`, Agent-private `agents/<name>/tools/`, Skill-private `skills/<name>/tools/`, and Agent-Skill-private `agents/<name>/skills/<name>/tools/`. Move adapter and group-suite operations that require domain instructions into their owning Skills so `load_skill` is the only path that unlocks their schemas.
15
+
16
+ Remove the package-root `agent/` convention. Public capabilities now use named package-root directories, schedules use `schedules/<name>/index.ts` or `plugin.ts` injection, MCP connections use `mcps/<name>/index.ts`, Prompt Sections use `prompt-sections/<name>/index.ts`, Agent definitions use `agents/<name>/`, and permission vocabulary is published as `PERMITS.md`.
17
+
18
+ - 25a845a: Unify Skills on `skills/<name>/SKILL.md`, support Agent-private Skills and nested Skill-private Tools, publish and mount existing plugin Skills, add governed Skill metadata and Turn access filtering, unlock only already-admitted same-owner Tools, and make `on-risk` and `once` approval behavior precise.
19
+ - ddbb92e: Isolate adapter Skills under platform-specific Agents and automatically select the matching platform Agent for IM ingress, preventing unrelated adapter Skills from entering another platform's prompt surface.
20
+ - 4380cf9: Colocate adapter command definitions and Agent Skill handlers with their owning capabilities, and provide a shared validated platform permission constructor.
21
+ - bc0df3c: Require the canonical expanded Discord endpoint configuration. The protocol no longer reinterprets nested `endpoints` or reads endpoint identity and token from `process.env`. The public config type is now `DiscordEndpointConfig`, and each schema entry uses `id` as its identity.
22
+ - 5c3858e: Make `@zhin.js/im-contract` the explicit zero-dependency owner of transport identities, canonical segments, media guards, conversation facts, stores, and delivery contracts. Platform adapters now read media contracts from that foundation instead of reaching through Core.
23
+ - 33ea736: Use `tools/<name>/index.ts` and `defineAgentTool` from `@zhin.js/tool` as the sole Agent Tool authoring model. Remove the duplicate `@zhin.js/tools` definition, context, bridge, export, and discovery path; migrate plugin manifests, examples, scaffolding, HMR, and prepack compilation to the generation-owned Tool Feature.
24
+ - Updated dependencies [c861789]
25
+ - Updated dependencies [1414ccb]
26
+ - Updated dependencies [743d470]
27
+ - Updated dependencies [62dee52]
28
+ - Updated dependencies [cd54131]
29
+ - Updated dependencies [244e475]
30
+ - Updated dependencies [a9e4a40]
31
+ - Updated dependencies [5855db7]
32
+ - Updated dependencies [ec921d2]
33
+ - Updated dependencies [8740059]
34
+ - Updated dependencies [63d1f7a]
35
+ - Updated dependencies [25a845a]
36
+ - Updated dependencies [103f2c3]
37
+ - Updated dependencies [9110ab8]
38
+ - Updated dependencies [cd2a888]
39
+ - Updated dependencies [eb3227a]
40
+ - Updated dependencies [b853dba]
41
+ - Updated dependencies [e561309]
42
+ - Updated dependencies [d4c6175]
43
+ - Updated dependencies [7a0e1ca]
44
+ - Updated dependencies [103b5d3]
45
+ - Updated dependencies [5a7a7f7]
46
+ - Updated dependencies [b076eae]
47
+ - Updated dependencies [535fed1]
48
+ - Updated dependencies [73a24b7]
49
+ - Updated dependencies [4380cf9]
50
+ - Updated dependencies [2dbbc15]
51
+ - Updated dependencies [1cb1163]
52
+ - Updated dependencies [be3061e]
53
+ - Updated dependencies [75f8332]
54
+ - Updated dependencies [81935e2]
55
+ - Updated dependencies [f9ed01b]
56
+ - Updated dependencies [ac0ab50]
57
+ - Updated dependencies [5140ce1]
58
+ - Updated dependencies [522d75f]
59
+ - Updated dependencies [a7611b3]
60
+ - Updated dependencies [8823044]
61
+ - Updated dependencies [379439b]
62
+ - Updated dependencies [11c9352]
63
+ - Updated dependencies [6b70e46]
64
+ - Updated dependencies [135ac91]
65
+ - Updated dependencies [140cf0f]
66
+ - Updated dependencies [251e4d2]
67
+ - Updated dependencies [203ad34]
68
+ - Updated dependencies [e6c5113]
69
+ - Updated dependencies [e0f6478]
70
+ - Updated dependencies [baef56b]
71
+ - Updated dependencies [698f16f]
72
+ - Updated dependencies [da0a8e3]
73
+ - Updated dependencies [2fd8017]
74
+ - Updated dependencies [5c3858e]
75
+ - Updated dependencies [33ea736]
76
+ - Updated dependencies [507d602]
77
+ - Updated dependencies [df9f76b]
78
+ - @zhin.js/core@1.1.37
79
+ - @zhin.js/tool@1.1.1
80
+ - @zhin.js/host-http@1.1.1
81
+ - @zhin.js/adapter@1.1.14
82
+ - @zhin.js/feature-kit@1.1.1
83
+ - @zhin.js/agent-feature@1.1.1
84
+ - @zhin.js/skill@1.1.1
85
+ - @zhin.js/logger@1.1.1
86
+ - @zhin.js/im-contract@1.1.1
87
+ - @zhin.js/permission@1.1.1
88
+
89
+ ## 1.1.1
90
+
91
+ ### Patch Changes
92
+
93
+ - Updated dependencies [769e67f]
94
+ - @zhin.js/adapter@1.1.13
95
+ - @zhin.js/core@1.1.36
96
+
97
+ ## 1.1.0
98
+
99
+ ### Minor Changes
100
+
101
+ - 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.
102
+
103
+ ### Patch Changes
104
+
105
+ - a34bf91: Publish internal peer dependencies as compatible caret ranges instead of exact versions, preventing compatible internal minor releases from forcing unrelated major bumps.
106
+ - Updated dependencies [1fc6270]
107
+ - @zhin.js/adapter@1.1.12
108
+ - @zhin.js/core@1.1.35
109
+ - @zhin.js/feature-kit@1.1.0
110
+ - @zhin.js/host-http@1.1.0
111
+ - @zhin.js/im-contract@1.1.0
112
+ - @zhin.js/logger@1.1.0
113
+ - @zhin.js/permission@1.1.0
114
+
115
+ ## 9.0.1
116
+
117
+ ### Patch Changes
118
+
119
+ - Updated dependencies [f7ee28d]
120
+ - @zhin.js/adapter@1.2.2
121
+ - @zhin.js/core@1.5.16
122
+ - zhin.js@7.0.1
123
+ - @zhin.js/agent@1.2.1
124
+
125
+ ## 9.0.0
126
+
127
+ ### Patch Changes
128
+
129
+ - Updated dependencies [12325e1]
130
+ - Updated dependencies [d19e976]
131
+ - @zhin.js/agent@1.2.0
132
+ - zhin.js@7.0.0
133
+
134
+ ## 8.0.8
135
+
136
+ ### Patch Changes
137
+
138
+ - Updated dependencies [a728a20]
139
+ - @zhin.js/host-http@1.0.17
140
+ - @zhin.js/agent@1.1.22
141
+ - zhin.js@6.0.15
142
+
143
+ ## 8.0.7
144
+
145
+ ### Patch Changes
146
+
147
+ - Updated dependencies [337fd05]
148
+ - @zhin.js/agent@1.1.21
149
+ - zhin.js@6.0.15
150
+
151
+ ## 8.0.6
152
+
153
+ ### Patch Changes
154
+
155
+ - Updated dependencies [fcbff21]
156
+ - @zhin.js/host-http@1.0.16
157
+ - zhin.js@6.0.15
158
+
159
+ ## 8.0.5
160
+
161
+ ### Patch Changes
162
+
163
+ - Updated dependencies [882a08a]
164
+ - @zhin.js/agent@1.1.20
165
+ - zhin.js@6.0.15
166
+ - @zhin.js/core@1.5.15
167
+
168
+ ## 8.0.4
169
+
170
+ ### Patch Changes
171
+
172
+ - Updated dependencies [d85eddd]
173
+ - @zhin.js/agent@1.1.19
174
+ - @zhin.js/host-http@1.0.15
175
+ - @zhin.js/core@1.5.15
176
+ - zhin.js@6.0.15
177
+
178
+ ## 8.0.3
179
+
180
+ ### Patch Changes
181
+
182
+ - Updated dependencies [a5ee497]
183
+ - Updated dependencies [a5ee497]
184
+ - Updated dependencies [ba7e17a]
185
+ - Updated dependencies [7108d0b]
186
+ - @zhin.js/agent@1.1.18
187
+ - @zhin.js/host-http@1.0.14
188
+ - @zhin.js/core@1.5.15
189
+ - zhin.js@6.0.15
190
+
191
+ ## 8.0.2
192
+
193
+ ### Patch Changes
194
+
195
+ - Updated dependencies [736fa04]
196
+ - @zhin.js/agent@1.1.17
197
+ - zhin.js@6.0.14
198
+
199
+ ## 8.0.1
200
+
201
+ ### Patch Changes
202
+
203
+ - 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.
204
+ - Updated dependencies [e9c6a73]
205
+ - Updated dependencies [4e8117c]
206
+ - Updated dependencies [902fa35]
207
+ - Updated dependencies [54bfd6b]
208
+ - Updated dependencies [12025ee]
209
+ - Updated dependencies [09b14d6]
210
+ - Updated dependencies [1fc78bc]
211
+ - @zhin.js/agent@1.1.16
212
+ - @zhin.js/adapter@1.2.1
213
+ - @zhin.js/core@1.5.14
214
+ - @zhin.js/host-http@1.0.13
215
+ - @zhin.js/command@1.0.16
216
+ - @zhin.js/logger@1.0.77
217
+ - zhin.js@6.0.14
218
+ - @zhin.js/feature-kit@1.0.13
219
+ - @zhin.js/permission@1.0.4
220
+
221
+ ## 8.0.0
222
+
223
+ ### Patch Changes
224
+
225
+ - f2c532f: Expose exact per-Endpoint message operations through one validated Adapter capability model, route Core control calls through declared active capabilities, and connect existing recall, edit, reaction, and typing implementations across platform adapters.
226
+ - Updated dependencies [b10d058]
227
+ - Updated dependencies [f2c532f]
228
+ - Updated dependencies [3dbf990]
229
+ - @zhin.js/host-http@1.0.12
230
+ - @zhin.js/adapter@1.2.0
231
+ - @zhin.js/core@1.5.13
232
+ - @zhin.js/agent@1.1.15
233
+ - zhin.js@6.0.13
234
+
235
+ ## 7.0.14
236
+
237
+ ### Patch Changes
238
+
239
+ - 5969c5b: Remove legacy compound-string message targets and Endpoint control probing. Endpoint control and outbound Host operations now carry structured `MessageRef` identities. Endpoint send has one exact result contract (a platform message id), which IM Runtime projects into `DeliveryReceipt.message`; arbitrary result guessing is removed.
240
+ - 9a64283: Add canonical scoped Discord message resolution with structured attachment media references.
241
+ - 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.
242
+
243
+ 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.
244
+
245
+ 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.
246
+
247
+ - 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.
248
+ - Updated dependencies [5969c5b]
249
+ - Updated dependencies [d336a3f]
250
+ - Updated dependencies [0c82a7e]
251
+ - Updated dependencies [b9217e4]
252
+ - Updated dependencies [5969c5b]
253
+ - Updated dependencies [5969c5b]
254
+ - Updated dependencies [974772e]
255
+ - Updated dependencies [5969c5b]
256
+ - Updated dependencies [5969c5b]
257
+ - Updated dependencies [2f786bd]
258
+ - Updated dependencies [63d89f9]
259
+ - Updated dependencies [71c7cdd]
260
+ - Updated dependencies [3cca0ea]
261
+ - Updated dependencies [1312ca0]
262
+ - Updated dependencies [985fa22]
263
+ - Updated dependencies [04b861d]
264
+ - Updated dependencies [a23d544]
265
+ - Updated dependencies [8cddabf]
266
+ - Updated dependencies [dbe5081]
267
+ - @zhin.js/im-contract@1.0.4
268
+ - @zhin.js/core@1.5.12
269
+ - @zhin.js/adapter@1.1.11
270
+ - @zhin.js/agent@1.1.14
271
+ - @zhin.js/host-http@1.0.11
272
+ - @zhin.js/command@1.0.15
273
+ - zhin.js@6.0.12
274
+ - @zhin.js/permission@1.0.3
275
+
276
+ ## 7.0.13
277
+
278
+ ### Patch Changes
279
+
280
+ - @zhin.js/core@1.5.11
281
+ - @zhin.js/agent@1.1.13
282
+ - zhin.js@6.0.11
283
+
284
+ ## 7.0.12
285
+
286
+ ### Patch Changes
287
+
288
+ - 3556601: Declare Stable Feature packages referenced by `zhin.features` as optional `peerDependencies` on official plugins/adapters (`@zhin.js/runtime` ≥1.0.12 requires features to be declared in deps/peers). Keeps authoring via `zhin.js` facades without installing Feature implementation packages into `dependencies`, and removes the need for consumer postinstall peer-patch scripts. `zhin new` scaffolds the same peer shape.
289
+ - @zhin.js/agent@1.1.12
290
+ - @zhin.js/core@1.5.10
291
+ - zhin.js@6.0.10
292
+
293
+ ## 7.0.11
294
+
295
+ ### Patch Changes
296
+
297
+ - eb84b77: fix: 更新文档,建立正确的依赖关系
298
+ - Updated dependencies [d3920e9]
299
+ - @zhin.js/core@1.5.10
300
+ - zhin.js@6.0.10
301
+ - @zhin.js/adapter@1.1.10
302
+ - @zhin.js/agent@1.1.11
303
+
304
+ ## 7.0.10
305
+
306
+ ### Patch Changes
307
+
308
+ - Updated dependencies [e4757a8]
309
+ - Updated dependencies [c3c0ebf]
310
+ - @zhin.js/command@1.0.13
311
+ - @zhin.js/host-http@1.0.10
312
+ - @zhin.js/agent@1.1.10
313
+ - @zhin.js/core@1.5.9
314
+ - @zhin.js/adapter@1.1.9
315
+ - zhin.js@6.0.9
316
+
317
+ ## 7.0.9
318
+
319
+ ### Patch Changes
320
+
321
+ - Updated dependencies [63253bb]
322
+ - Updated dependencies [6fb24dd]
323
+ - Updated dependencies [d162216]
324
+ - Updated dependencies [7427818]
325
+ - Updated dependencies [90da255]
326
+ - Updated dependencies [8e973dc]
327
+ - Updated dependencies [953cfe1]
328
+ - Updated dependencies [0e73866]
329
+ - @zhin.js/plugin-runtime@1.1.6
330
+ - @zhin.js/core@1.5.8
331
+ - @zhin.js/adapter@1.1.8
332
+ - @zhin.js/host-http@1.0.9
333
+ - @zhin.js/agent@1.1.9
334
+ - zhin.js@6.0.8
335
+ - @zhin.js/command@1.0.12
336
+ - @zhin.js/permission@1.0.2
337
+
338
+ ## 7.0.8
339
+
340
+ ### Patch Changes
341
+
342
+ - Updated dependencies [36cb1ca]
343
+ - @zhin.js/core@1.5.7
344
+ - @zhin.js/agent@1.1.8
345
+ - zhin.js@6.0.7
346
+
347
+ ## 7.0.7
348
+
349
+ ### Patch Changes
350
+
351
+ - Updated dependencies [7945544]
352
+ - @zhin.js/command@1.0.11
353
+ - @zhin.js/agent@1.1.7
354
+ - @zhin.js/adapter@1.1.7
355
+ - @zhin.js/core@1.5.6
356
+ - zhin.js@6.0.6
357
+
358
+ ## 7.0.6
359
+
360
+ ### Patch Changes
361
+
362
+ - Updated dependencies [2d0a622]
363
+ - @zhin.js/command@1.0.10
364
+ - @zhin.js/adapter@1.1.7
365
+ - @zhin.js/core@1.5.5
366
+ - @zhin.js/agent@1.1.6
367
+ - zhin.js@6.0.5
368
+
369
+ ## 7.0.5
370
+
371
+ ### Patch Changes
372
+
373
+ - 51015d6: refactor(adapters): migrate platform-permit to PermissionSubject
374
+
375
+ All adapter platform-permit checkers now accept PermissionSubject
376
+ (duck-typed from Message/CommandSession) instead of Message directly.
377
+ registerPlatformPermitChecker is replaced by host.registerPlatform in
378
+ the adapter plugin setup. activity-feedback service updated for new
379
+ PermissionHost integration.
380
+
381
+ - Updated dependencies [6f9c366]
382
+ - Updated dependencies [373a56b]
383
+ - Updated dependencies [0de46a8]
384
+ - Updated dependencies [c106ecc]
385
+ - Updated dependencies [ca92e03]
386
+ - Updated dependencies [b0f37ae]
387
+ - Updated dependencies [ba08a2f]
388
+ - Updated dependencies [b08f7fe]
389
+ - Updated dependencies [daffd4c]
390
+ - Updated dependencies [36c7400]
391
+ - Updated dependencies [a9fa72e]
392
+ - Updated dependencies [c8de3ef]
393
+ - Updated dependencies [60f0fc8]
394
+ - Updated dependencies [574c990]
395
+ - Updated dependencies [d096f16]
396
+ - Updated dependencies [3f29623]
397
+ - Updated dependencies [2916852]
398
+ - Updated dependencies [d047869]
399
+ - Updated dependencies [162fa34]
400
+ - Updated dependencies [e62561e]
401
+ - Updated dependencies [3eeeb46]
402
+ - Updated dependencies [85d0f82]
403
+ - Updated dependencies [61bfc1c]
404
+ - Updated dependencies [04bad47]
405
+ - Updated dependencies [e40b048]
406
+ - Updated dependencies [5a5b1bb]
407
+ - Updated dependencies [f1708c3]
408
+ - Updated dependencies [d254a81]
409
+ - Updated dependencies [7123c47]
410
+ - Updated dependencies [05befc1]
411
+ - Updated dependencies [0663b6a]
412
+ - Updated dependencies [f28f9b3]
413
+ - Updated dependencies [9f340f7]
414
+ - Updated dependencies [e53444f]
415
+ - Updated dependencies [5eedd26]
416
+ - Updated dependencies [92b0dd7]
417
+ - Updated dependencies [f919b6f]
418
+ - Updated dependencies [098e411]
419
+ - Updated dependencies [e1b7c01]
420
+ - Updated dependencies [9b94f87]
421
+ - Updated dependencies [a7df753]
422
+ - @zhin.js/agent@1.1.5
423
+ - @zhin.js/host-http@1.0.8
424
+ - @zhin.js/permission@1.0.1
425
+ - @zhin.js/im-contract@1.0.3
426
+ - @zhin.js/adapter@1.1.7
427
+ - @zhin.js/plugin-runtime@1.1.5
428
+ - @zhin.js/command@1.0.9
429
+ - @zhin.js/core@1.5.4
430
+ - zhin.js@6.0.4
431
+
432
+ ## 7.0.4
433
+
434
+ ### Patch Changes
435
+
436
+ - f8c7a54: fix: im
437
+ - Updated dependencies [f8c7a54]
438
+ - @zhin.js/logger@1.0.76
439
+ - @zhin.js/host-http@1.0.7
440
+ - @zhin.js/adapter@1.1.6
441
+ - @zhin.js/agent@1.1.4
442
+ - @zhin.js/command@1.0.8
443
+ - @zhin.js/core@1.5.3
444
+ - @zhin.js/im-contract@1.0.2
445
+ - @zhin.js/plugin-runtime@1.1.4
446
+ - zhin.js@6.0.3
447
+
448
+ ## 7.0.3
449
+
450
+ ### Patch Changes
451
+
452
+ - Updated dependencies [afc0e66]
453
+ - Updated dependencies [2e41ad5]
454
+ - Updated dependencies [9f57124]
455
+ - @zhin.js/core@1.5.2
456
+ - @zhin.js/adapter@1.1.5
457
+ - @zhin.js/im-contract@1.0.1
458
+ - @zhin.js/plugin-runtime@1.1.3
459
+ - @zhin.js/command@1.0.7
460
+ - @zhin.js/host-http@1.0.6
461
+ - @zhin.js/agent@1.1.3
462
+ - zhin.js@6.0.2
463
+
464
+ ## 7.0.2
465
+
466
+ ### Patch Changes
467
+
468
+ - Updated dependencies [696ab1b]
469
+ - @zhin.js/agent@1.1.2
470
+ - zhin.js@6.0.1
471
+
472
+ ## 7.0.1
473
+
474
+ ### Patch Changes
475
+
476
+ - Updated dependencies [c8f4d45]
477
+ - @zhin.js/plugin-runtime@1.1.2
478
+ - @zhin.js/host-http@1.0.5
479
+ - @zhin.js/adapter@1.1.4
480
+ - @zhin.js/agent@1.1.1
481
+ - @zhin.js/command@1.0.6
482
+ - @zhin.js/core@1.5.1
483
+ - zhin.js@6.0.1
484
+
485
+ ## 7.0.0
486
+
487
+ ### Patch Changes
488
+
489
+ - 4fbff5d: feat!: 多模态双向 Segment 一贯制(BREAKING,无兼容层)
490
+
491
+ 全框架唯一媒体表达统一为 canonical `Segment` + `MediaRef{kind: url|path|base64|file, value, mime_type?, file_name?, size?}`,新增 audio/video/file 段类型;所有第二形状(legacy `data.url/file/base64` 字段、`mediaRefFromLegacyData`/`mediaRefToLegacyFields` 桥、双写)全部删除。
492
+
493
+ - **core**:`SendContent` 一等支持 `Segment[]`;endpoint 出站载荷只含 canonical 段;`resolveOutboundMediaPolicy` 改为纯声明驱动(adapter definition `segments.outboundMedia`),内置策略表删除,未声明回退 `url-or-text`;`ImageContent` 旧桥删除。
494
+ - **ai**:新增 `MediaContentBlock`/`MediaBlockRef`(Segment 同构)与 `UserMessage.media`(当前 turn 媒体,**不持久化**——存储层自动剥离);`createUserMessage(text, media?)` 签名变更(`ImageContent` 删除);provider 边界序列化器 `filterMediaBlocksForProvider` + 能力表(缺省 image-only,不支持类型降级占位文本);ai-sdk 桥媒体块 → SDK image/file parts。
495
+ - **agent**:入站 turn 注入(`turn/inbound-media.ts`)——commMessage 媒体段 → 当前 turn `UserMessage.media`;图片 path 物化、音频默认 STT(`@zhin.js/speech` 可选,失败降级占位)、视频/文件占位;`publishOutboundElements` 产出 canonical Segment;`transcribeAudioPayload` 导出。
496
+ - **cli**:`bridgeRuntimeMessage` 回复链路媒体段透传,不再压平为文本(`$reply` 直达 normalize → adapter)。
497
+ - **全部 20 个平台适配器**:出站媒体只消费 `data.media`(url 直发 / base64 直发 / 平台上传 / 读盘),入站媒体产出 canonical `data.media`;`segments.outboundMedia` 声明与实际消费逐一核对修正;QQ 入站新增 canonical segments(image/audio/video/file/mention/face/reply),图片/语音/视频不再丢失。
498
+
499
+ 迁移:适配器/插件产媒体一律用 `{ type, data: { media: MediaRef } }`;发送 legacy `data.url/file/base64` 形状的段会被 warn 丢弃。
500
+
501
+ - Updated dependencies [7c1e63a]
502
+ - Updated dependencies [4fbff5d]
503
+ - Updated dependencies [5b94d9c]
504
+ - @zhin.js/command@1.0.5
505
+ - @zhin.js/adapter@1.1.3
506
+ - @zhin.js/core@1.5.0
507
+ - @zhin.js/agent@1.1.0
508
+ - zhin.js@6.0.0
509
+
510
+ ## 6.0.6
511
+
512
+ ### Patch Changes
513
+
514
+ - d52f3c5: fix: QQ 适配器群聊误识别为私聊、game-kit 启动崩溃、全面补齐 recallMessage
515
+
516
+ - fix(cli): `resolveChannelType` 增加 `metadata.channelKind` 检查,修复 QQ/Discord/KOOK 群聊消息被误分类为私聊
517
+ - fix(game-kit): `createHostGameDb` 改用延迟代理模型,避免数据库启动前解析模型导致崩溃
518
+ - feat(qq): 实现 `recallMessage`,解析复合 messageId 路由到对应 SDK 撤回方法;`normalizeQqMessage` 增加 `message_type` 缺失时的回退检测
519
+ - feat(slack): 实现 `recallMessage`,利用已有 compound ref 和 `chat.delete` API
520
+ - feat(onebot11): 两个 endpoint 类实现 `recallMessage`(`delete_msg`)
521
+ - feat(onebot12): 两个 endpoint 类实现 `recallMessage`(`delete_message`)
522
+ - feat(napcat): 三个 endpoint 类实现 `recallMessage`(`delete_msg`)
523
+ - feat(discord): 两个 endpoint 类实现 `recallMessage`;`send()` 改为返回 `channelId:snowflake` 复合 ID
524
+ - feat(telegram): 实现 `recallMessage`(`deleteMessage`);`send()` 改为返回 `chatId:messageId` 复合 ID
525
+ - feat(kook): 两个 endpoint 类实现 `recallMessage`,利用 kook-client `recallMsg` API
526
+ - feat(lark): 实现 `recallMessage`(`DELETE /im/v1/messages/{id}`)
527
+ - feat(wecom): 实现 `recallMessage`(`POST /cgi-bin/message/recall`)
528
+
529
+ ## 6.0.5
530
+
531
+ ### Patch Changes
532
+
533
+ - Updated dependencies [d8bf702]
534
+ - @zhin.js/host-http@1.0.4
535
+ - @zhin.js/agent@1.0.10
536
+ - @zhin.js/core@1.4.3
537
+ - zhin.js@5.0.3
538
+
539
+ ## 6.0.4
540
+
541
+ ### Patch Changes
542
+
543
+ - Updated dependencies [45b3256]
544
+ - @zhin.js/core@1.4.3
545
+ - @zhin.js/agent@1.0.9
546
+ - zhin.js@5.0.3
547
+
548
+ ## 6.0.3
549
+
550
+ ### Patch Changes
551
+
552
+ - Updated dependencies [f346346]
553
+ - @zhin.js/agent@1.0.8
554
+ - @zhin.js/core@1.4.2
555
+ - zhin.js@5.0.2
556
+
557
+ ## 6.0.2
558
+
559
+ ### Patch Changes
560
+
561
+ - d5cd4aa: Publish Plugin Runtime entry points and convention modules as JavaScript so
562
+ installed npm plugins load on Node without TypeScript stripping. Workspace
563
+ development continues to prefer TypeScript sources for local HMR.
564
+
565
+ Remove the unconsumed legacy game hub APIs from game-kit; game navigation and
566
+ records now use ordinary convention commands owned by the game hub plugin.
567
+
568
+ - Updated dependencies [d5cd4aa]
569
+ - @zhin.js/command@1.0.4
570
+ - zhin.js@5.0.2
571
+ - @zhin.js/adapter@1.1.2
572
+ - @zhin.js/core@1.4.2
573
+ - @zhin.js/agent@1.0.7
574
+
575
+ ## 6.0.1
576
+
577
+ ### Patch Changes
578
+
579
+ - 5691aba: 第二轮全量审计修复批(8 面 ~60 bug):
580
+
581
+ - **安全**:email 附件路径穿越修复(basename + downloadPath 约束);lark/telegram/satori webhook 鉴权(缺密钥告警、timingSafeEqual、±5min 时效窗、chat_type 修正);onebot wss/webhook 缺 token 告警;qq webhook 改原始字节验签;renderJsx/JSX 转义注入修复;console runtime token 401 死循环。
582
+ - **P0 功能**:sandbox 多 endpoint 解析 + WS 路径隔离;short-url expand(undici opaqueredirect)改 follow;AI 压缩摘要失败不再静默丢历史(熔断恢复生效);console-ui 实时推送事件名归一化 + IndexedDB schema 对齐;process-monitor 热重载不再误判崩溃。
583
+ - **生命周期**:email IMAP 断线重连 + 在飞锁;onebot11/12 start 失败清理;line replyToken TTL + push 兜底;wechat-mp token 过期重试 + MsgId 去重;weixin-ilink buf 推进/防抖写盘/媒体 TTL/QR abort;satori PONG 看门狗;退避自毁修复。
584
+ - **游戏**:text-adventure 终局 restart 复活 + requires 服务端校验;tic-tac-toe PvP 占用/restart/队列清理/TTL;idiom-chain/word-riddle 闲聊不扣失误;别名中间件不劫持普通聊天。
585
+ - **共享库**:schema falsy 默认值/date/tuple/union 修复;database parseCondition Date/未知操作符、sqlite TEXT 往返、query 分派、belongsToMany 方言、migration dry-run;schedule DST 回拨死循环、重复 id 去重、flush 串行化;game-kit fallback 编号/onboarding 提示/尾缀边界/活引用拷贝。
586
+ - **渲染语音**:fetch 全部超时 + 渲染并发闸;sanitizeHtml form 保文本;STT 扩展名映射 + 删临时文件;TTS 未知 provider 报错;emojiCache LRU 负缓存/fontCache style/clearFonts 恢复;register 错误分类收窄。
587
+
588
+ - 74b035c: endpoint 管理命令扩展至 18/20 适配器:kook / discord / github(private_key 支持内联文件路径)/ icqq(bindFlow 登记式 add + `icqq login` 引导)/ dingtalk / lark / line / satori / wechat-mp / wecom / weixin-ilink 接入 `endpoint list/add/remove`(字段对齐各自 schema,凭据写 `.env`)。email(smtp/imap 嵌套对象)与 sandbox(无凭据)暂不接。
589
+ - 09d4f25: Console 社交读取面(management 语义端口)多平台落地:napcat/onebot11/onebot12/milky(好友+群+群成员,OneBot 标准动作);discord/kook/satori(guild+频道+成员,分页聚合,id 保精度留字符串);slack(workspace 成员+public channels+conversations.members);line(群/room 成员分页+profile 回退);wechat-mp(followers openid);weixin-ilink(context_token 对端推导);lark(chats+members 全分页)。`EndpointFriend.user_id`/`EndpointGroup.group_id` 放宽为 `number | string`(雪花 id 不丢精度)。telegram/wecom/dingtalk/github/email/sandbox 注明平台无列表面暂不接。
590
+ - 6cb6152: 统一消息元素通道(UNI-Channel)落地:
591
+
592
+ - **入站契约**:`IncomingMessage.segments`(canonical Segment[],与 content 纯文本视图同源双轨),Message 透传;AI 兜底链路经 `collectSegmentMedia` 把图片/语音/视频/文件 MediaRef 写入会话 extra——多模态输入不再丢失。
593
+ - **出站协商**:`normalizeOutboundPayload` 升级全量 canonical 归一(复用 generic-segment-mapper),html→image 按端点 `segments.outboundMedia` 声明降级(base64 直发 / url-or-text / passthrough 自行物化);`MediaRef.kind` 新增 `'file'` 承载平台不透明引用(file_id/resource_id)。
594
+ - **能力声明**:`defineAdapter.segments` policy(outboundMedia / interactive),三道段门禁复活(探测点改 adapters/\*.ts,豁免名单渐进收敛)。
595
+ - **首批迁移**:icqq 全保真出入站(CQ ↔ canonical,quote→reply 段);milky/telegram/discord 入站媒体段恢复(附件/贴纸/callback action);napcat/onebot11/onebot12 出站 canonical→OneBot 数组段;wechat-mp/wecom `/cgi-bin/media/upload` 与 lark `/im/v1/images` 上传通路(base64/URL 图片不再静默丢图,失败降级文本)。
596
+
597
+ - Updated dependencies [cdf64e7]
598
+ - Updated dependencies [2d0a159]
599
+ - Updated dependencies [5691aba]
600
+ - Updated dependencies [078e3f7]
601
+ - Updated dependencies [50497a5]
602
+ - Updated dependencies [9c997b2]
603
+ - Updated dependencies [09d4f25]
604
+ - Updated dependencies [43485a9]
605
+ - Updated dependencies [f0ec5ab]
606
+ - Updated dependencies [3e925d0]
607
+ - Updated dependencies [fa66c4c]
608
+ - Updated dependencies [fa66c4c]
609
+ - Updated dependencies [6cb6152]
610
+ - @zhin.js/command@1.0.3
611
+ - @zhin.js/agent@1.0.6
612
+ - @zhin.js/plugin-runtime@1.1.1
613
+ - @zhin.js/host-http@1.0.3
614
+ - zhin.js@5.0.1
615
+ - @zhin.js/adapter@1.1.1
616
+ - @zhin.js/core@1.4.1
617
+
618
+ ## 6.0.0
619
+
620
+ ### Patch Changes
621
+
622
+ - 7db69c1: 命令前缀改为适配器配置项:`MessageDispatcher` 不再硬编码 `/`,默认按消息所属适配器实例 config 的 `commandPrefix` 解析(默认 `''` 无前缀,任意文本按命令匹配),`endpoints[i].commandPrefix` 逐项覆盖;`ImRuntime({ commandPrefix })` 仍可设全局静态前缀。全部 20 个平台适配器 schema 新增 `commandPrefix` 属性。
623
+
624
+ BREAKING(行为变化):未配置时命令不再需要 `/` 前缀——原 `/zt` 写法不再命中,直接发 `zt` 即可;需要斜杠风格的适配器请在配置里显式设 `commandPrefix: '/'`。
625
+
626
+ - 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 同步迁移。
627
+ - Updated dependencies [7db69c1]
628
+ - Updated dependencies [e5c84ed]
629
+ - Updated dependencies [3ea84a0]
630
+ - Updated dependencies [1ddcd70]
631
+ - Updated dependencies [ac9da66]
632
+ - @zhin.js/core@1.4.0
633
+ - @zhin.js/adapter@1.1.0
634
+ - @zhin.js/plugin-runtime@1.1.0
635
+ - @zhin.js/agent@1.0.5
636
+ - @zhin.js/host-http@1.0.2
637
+ - zhin.js@5.0.0
638
+
639
+ ## 5.0.3
640
+
641
+ ### Patch Changes
642
+
643
+ - cc5c94d: 约定式插件运行时迁移(breaking):插件与适配器由 `usePlugin()` / `extends Adapter` 迁移为 `definePlugin` / `defineAdapter` + `plugin.ts` + 约定目录(`adapters/`、`commands/`、`components/`、`tools/` 等)。
644
+
645
+ - 新增约定式运行时包:`@zhin.js/plugin-runtime`、`@zhin.js/adapter`、`@zhin.js/runtime`、`@zhin.js/host-http`(首版 1.0.0 走 init-publish,不在本 changeset 内 bump)。
646
+ - 全部 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 推迟的连接模式已补齐。
647
+ - 游戏 / 工具 / 服务插件同步迁移到约定目录结构。
648
+ - CLI 增加 plugin-runtime host installer(http/database/outbound/schedule/console 等)。
649
+
650
+ 后续加固(同批):
651
+
652
+ - CLI:`zhin runtime start --daemon`(pidfile/崩溃拉起/风暴保护),orphan watchdog 防僵尸进程;legacy `zhin dev` / `zhin start` 已移除(含 `zhin restart`),`zhin stop` 兼容新 daemon。
653
+ - 安全:builtin 工具统一走 `security/policy-facade.ts` 的 `runToolPolicies`(声明式策略表,deny 优先);审计日志 close flush + 背压队列;`splitCompoundCommand` 引号感知、`extractCommandName` 去引号堵绕过。
654
+ - 日志:Logger 双堆栈修复、本地时区、`getLogger` 挂树(`setLevel` 递归生效)、第三方库(log4js/discord)桥接、启动人读总结。
655
+ - 结构:`plugins/games/shared` 迁为 `packages/game-kit`(`@zhin.js/game-kit`);死目录 `plugins/adapters/common` 删除。
656
+ - 脚手架:`create-zhin-app` / `zhin new` / scaffold-wizard 生成物改为 Plugin Runtime 形态(minimal-bot 同构,新配置格式)。
657
+ - Console:endpoint.list 真实名称与 phase、schema:get-all 按 instanceKey 映射、db:\* 接 DatabaseHost。
658
+
659
+ 注:按仓库发布惯例(见 1bb345dd2),本次 breaking 迁移统一使用 patch,避免 zhin.js 5.0 级联。
660
+
661
+ - 447f3e2: 迁移缺口修复(legacy 功能对齐):
662
+
663
+ - html 段出站规范化:经 `@zhin.js/html-renderer` 渲染为 image 段(sandbox 豁免、无渲染器时降级文本),修复真实平台 `[object Object]`。
664
+ - 群聊 @ 触发 AI:适配器入站标注 `metadata.mentioned`(icqq/qq/slack/onebot11/onebot12/napcat/milky/discord/telegram/kook/dingtalk/satori),`matchAiTrigger` 补齐 ignorePrefixes/respondToAt/respondToPrivate/keywords(默认值与 legacy 对齐)。
665
+ - im_transcripts 全量流水恢复写入(chat_history 工具可用);群聊旁听上下文回迁。
666
+ - `ai.trigger.timeout/thinkingMessage/errorTemplate` 生效;masters/trusted 角色解析对齐 legacy。
667
+ - `Message.sender` 统一为用户 ID(onebot11/12、napcat、milky 原误传显示名);quote_id 经 metadata 接入 AI 引用上下文。
668
+
669
+ - Updated dependencies [16ec4e8]
670
+ - Updated dependencies [cc5c94d]
671
+ - Updated dependencies [447f3e2]
672
+ - @zhin.js/core@1.3.5
673
+ - @zhin.js/agent@1.0.4
674
+ - @zhin.js/host-http@1.0.1
675
+ - zhin.js@4.1.3
676
+ - @zhin.js/logger@1.0.75
677
+ - @zhin.js/plugin-runtime@1.0.1
678
+ - @zhin.js/adapter@1.0.1
679
+
680
+ ## 5.0.2
681
+
682
+ ### Patch Changes
683
+
684
+ - 872c583: fix: 代码格式优化
685
+ - Updated dependencies [872c583]
686
+ - Updated dependencies [872c583]
687
+ - @zhin.js/agent@1.0.3
688
+ - @zhin.js/client@2.0.5
689
+ - @zhin.js/contract@1.0.3
690
+ - @zhin.js/host-api@2.0.5
691
+ - @zhin.js/host-router@2.0.3
692
+ - zhin.js@4.1.2
693
+
694
+ ## 5.0.1
695
+
696
+ ### Patch Changes
697
+
698
+ - 5cc9c03: fix: ai 优化
699
+ - b9b3881: fix: 增加游戏引擎以及部分游戏
700
+ - 7700903: fix: 游戏强化
701
+ - Updated dependencies [5cc9c03]
702
+ - Updated dependencies [7700903]
703
+ - @zhin.js/client@2.0.4
704
+ - @zhin.js/contract@1.0.2
705
+ - @zhin.js/host-api@2.0.4
706
+ - @zhin.js/host-router@2.0.2
707
+ - zhin.js@4.1.1
708
+
709
+ ## 5.0.0
710
+
711
+ ### Patch Changes
712
+
713
+ - c4575c9: fix: 输入输出优化,文档优化
714
+ - Updated dependencies [c4575c9]
715
+ - Updated dependencies [c4575c9]
716
+ - @zhin.js/host-router@2.0.1
717
+ - @zhin.js/host-api@2.0.3
718
+ - zhin.js@4.1.0
719
+
720
+ ## 4.0.2
721
+
722
+ ### Patch Changes
723
+
724
+ - Updated dependencies [384ea11]
725
+ - @zhin.js/host-api@2.0.2
726
+ - zhin.js@4.0.1
727
+
728
+ ## 4.0.1
729
+
730
+ ### Patch Changes
731
+
732
+ - Updated dependencies [93e58d9]
733
+ - Updated dependencies [ae5239c]
734
+ - @zhin.js/host-api@2.0.1
735
+ - zhin.js@4.0.1
736
+ - @zhin.js/host-router@2.0.0
737
+
738
+ ## 4.0.0
739
+
740
+ ### Patch Changes
741
+
742
+ - zhin.js@3.0.0
743
+ - @zhin.js/host-api@2.0.0
744
+ - @zhin.js/host-router@2.0.0
745
+
746
+ ## 3.0.1
747
+
748
+ ### Patch Changes
749
+
750
+ - d8def69: fix: 性能优化
751
+ - 2ef4896: fix: 更新概念 Bot=>Endpoint,已适配后续更多的业务场景;统一角色权限
752
+ - Updated dependencies [d8def69]
753
+ - Updated dependencies [2ef4896]
754
+ - @zhin.js/host-router@1.0.1
755
+ - @zhin.js/host-api@1.0.1
756
+ - zhin.js@2.0.1
757
+ - @zhin.js/client@2.0.3
758
+
759
+ ## 3.0.0
760
+
761
+ ### Patch Changes
762
+
763
+ - Updated dependencies [65f4b0a]
764
+ - @zhin.js/host-api@1.0.0
765
+ - zhin.js@2.0.0
766
+ - @zhin.js/host-router@1.0.0
767
+
768
+ ## 2.0.11
769
+
770
+ ### Patch Changes
771
+
772
+ - Updated dependencies [d8547d2]
773
+ - zhin.js@1.0.92
774
+ - @zhin.js/host-router@0.0.3
775
+
776
+ ## 2.0.10
777
+
778
+ ### Patch Changes
779
+
780
+ - Updated dependencies [3735e96]
781
+ - Updated dependencies [238de62]
782
+ - @zhin.js/host-api@0.0.4
783
+ - zhin.js@1.0.91
784
+ - @zhin.js/host-router@0.0.3
785
+
786
+ ## 2.0.9
787
+
788
+ ### Patch Changes
789
+
790
+ - c8f8207: fix: 修复内存泄露问题
791
+ - Updated dependencies [c8f8207]
792
+ - @zhin.js/client@2.0.2
793
+ - @zhin.js/contract@1.0.1
794
+ - @zhin.js/host-api@0.0.3
795
+ - @zhin.js/host-router@0.0.3
796
+ - zhin.js@1.0.90
797
+
798
+ ## 2.0.8
799
+
800
+ ### Patch Changes
801
+
802
+ - c78d2cd: fix: cli 更新,文档更新
803
+ - Updated dependencies [c78d2cd]
804
+ - @zhin.js/client@2.0.1
805
+ - @zhin.js/host-router@0.0.2
806
+ - zhin.js@1.0.89
807
+ - @zhin.js/host-api@0.0.2
808
+
809
+ ## 2.0.7
810
+
811
+ ### Patch Changes
812
+
813
+ - Updated dependencies [ccb6e24]
814
+ - zhin.js@1.0.88
815
+
816
+ ## 2.0.6
817
+
818
+ ### Patch Changes
819
+
820
+ - 90d9efd: fix: 处理包名
821
+ - zhin.js@1.0.87
822
+ - @zhin.js/host-api@0.0.1
823
+ - @zhin.js/host-router@0.0.1
824
+
825
+ ## 2.0.5
826
+
827
+ ### Patch Changes
828
+
829
+ - 7e14f8d: fix: 统一发个版,优化一些列安全问题
830
+ - Updated dependencies [7e14f8d]
831
+ - @zhin.js/client@1.1.4
832
+ - zhin.js@1.0.86
833
+ - @zhin.js/console@3.0.5
834
+ - @zhin.js/host-router@1.0.79
835
+
836
+ ## 2.0.4
837
+
838
+ ### Patch Changes
839
+
840
+ - zhin.js@1.0.85
841
+ - @zhin.js/console@3.0.4
842
+ - @zhin.js/host-router@1.0.78
843
+
844
+ ## 2.0.3
845
+
846
+ ### Patch Changes
847
+
848
+ - f19d2e0: fix: remove multiple runtime support
849
+ - Updated dependencies [0db9fed]
850
+ - Updated dependencies [f19d2e0]
851
+ - @zhin.js/console@3.0.3
852
+ - zhin.js@1.0.84
853
+ - @zhin.js/client@1.1.3
854
+ - @zhin.js/host-router@1.0.77
855
+
856
+ ## 2.0.2
857
+
858
+ ### Patch Changes
859
+
860
+ - 775427e: fix: edge 支持
861
+ - Updated dependencies [775427e]
862
+ - @zhin.js/console@3.0.2
863
+ - @zhin.js/host-router@1.0.76
864
+ - @zhin.js/client@1.1.2
865
+ - zhin.js@1.0.83
866
+
867
+ ## 2.0.1
868
+
869
+ ### Patch Changes
870
+
871
+ - 32049f5: fix: init publish
872
+ - Updated dependencies [32049f5]
873
+ - @zhin.js/console@3.0.1
874
+ - @zhin.js/host-router@1.0.75
875
+ - @zhin.js/client@1.1.1
876
+ - zhin.js@1.0.82
877
+
878
+ ## 2.0.0
879
+
880
+ ### Patch Changes
881
+
882
+ - Updated dependencies
883
+ - @zhin.js/client@1.1.0
884
+ - @zhin.js/console@3.0.0
885
+
3
886
  ## 1.0.87
4
887
 
5
888
  ### Patch Changes
@@ -7,7 +890,7 @@
7
890
  - Updated dependencies [8086ccb]
8
891
  - zhin.js@1.0.81
9
892
  - @zhin.js/console@2.0.24
10
- - @zhin.js/http@1.0.74
893
+ - @zhin.js/host-router@1.0.74
11
894
 
12
895
  ## 1.0.86
13
896
 
@@ -15,7 +898,7 @@
15
898
 
16
899
  - zhin.js@1.0.80
17
900
  - @zhin.js/console@2.0.23
18
- - @zhin.js/http@1.0.73
901
+ - @zhin.js/host-router@1.0.73
19
902
 
20
903
  ## 1.0.85
21
904
 
@@ -23,7 +906,7 @@
23
906
 
24
907
  - zhin.js@1.0.79
25
908
  - @zhin.js/console@2.0.22
26
- - @zhin.js/http@1.0.72
909
+ - @zhin.js/host-router@1.0.72
27
910
 
28
911
  ## 1.0.84
29
912
 
@@ -32,7 +915,7 @@
32
915
  - Updated dependencies [88caeb2]
33
916
  - @zhin.js/console@2.0.21
34
917
  - zhin.js@1.0.78
35
- - @zhin.js/http@1.0.71
918
+ - @zhin.js/host-router@1.0.71
36
919
 
37
920
  ## 1.0.83
38
921
 
@@ -40,7 +923,7 @@
40
923
 
41
924
  - zhin.js@1.0.77
42
925
  - @zhin.js/console@2.0.20
43
- - @zhin.js/http@1.0.70
926
+ - @zhin.js/host-router@1.0.70
44
927
 
45
928
  ## 1.0.82
46
929
 
@@ -49,7 +932,7 @@
49
932
  - Updated dependencies [cb9fbf1]
50
933
  - zhin.js@1.0.76
51
934
  - @zhin.js/console@2.0.19
52
- - @zhin.js/http@1.0.69
935
+ - @zhin.js/host-router@1.0.69
53
936
 
54
937
  ## 1.0.81
55
938
 
@@ -57,7 +940,7 @@
57
940
 
58
941
  - zhin.js@1.0.75
59
942
  - @zhin.js/console@2.0.18
60
- - @zhin.js/http@1.0.68
943
+ - @zhin.js/host-router@1.0.68
61
944
 
62
945
  ## 1.0.80
63
946
 
@@ -66,7 +949,7 @@
66
949
  - Updated dependencies [c9dec38]
67
950
  - zhin.js@1.0.74
68
951
  - @zhin.js/console@2.0.17
69
- - @zhin.js/http@1.0.67
952
+ - @zhin.js/host-router@1.0.67
70
953
 
71
954
  ## 1.0.79
72
955
 
@@ -75,7 +958,7 @@
75
958
  - f1e9a76: fix: 提高 skill 质量
76
959
  - zhin.js@1.0.73
77
960
  - @zhin.js/console@2.0.16
78
- - @zhin.js/http@1.0.66
961
+ - @zhin.js/host-router@1.0.66
79
962
 
80
963
  ## 1.0.78
81
964
 
@@ -101,7 +984,7 @@
101
984
  - @zhin.js/client@1.0.18
102
985
  - zhin.js@1.0.72
103
986
  - @zhin.js/console@2.0.13
104
- - @zhin.js/http@1.0.65
987
+ - @zhin.js/host-router@1.0.65
105
988
 
106
989
  ## 1.0.75
107
990
 
@@ -119,7 +1002,7 @@
119
1002
  - @zhin.js/client@1.0.17
120
1003
  - zhin.js@1.0.71
121
1004
  - @zhin.js/console@2.0.11
122
- - @zhin.js/http@1.0.64
1005
+ - @zhin.js/host-router@1.0.64
123
1006
 
124
1007
  ## 1.0.73
125
1008
 
@@ -127,14 +1010,14 @@
127
1010
 
128
1011
  - zhin.js@1.0.68
129
1012
  - @zhin.js/console@2.0.10
130
- - @zhin.js/http@1.0.63
1013
+ - @zhin.js/host-router@1.0.63
131
1014
 
132
1015
  ## 1.0.72
133
1016
 
134
1017
  ### Patch Changes
135
1018
 
136
1019
  - Updated dependencies [0eba6d6]
137
- - @zhin.js/http@1.0.62
1020
+ - @zhin.js/host-router@1.0.62
138
1021
  - zhin.js@1.0.67
139
1022
  - @zhin.js/console@2.0.9
140
1023
 
@@ -144,7 +1027,7 @@
144
1027
 
145
1028
  - zhin.js@1.0.66
146
1029
  - @zhin.js/console@2.0.8
147
- - @zhin.js/http@1.0.61
1030
+ - @zhin.js/host-router@1.0.61
148
1031
 
149
1032
  ## 1.0.70
150
1033
 
@@ -152,7 +1035,7 @@
152
1035
 
153
1036
  - zhin.js@1.0.65
154
1037
  - @zhin.js/console@2.0.7
155
- - @zhin.js/http@1.0.60
1038
+ - @zhin.js/host-router@1.0.60
156
1039
 
157
1040
  ## 1.0.69
158
1041
 
@@ -163,7 +1046,7 @@
163
1046
  - @zhin.js/client@1.0.16
164
1047
  - zhin.js@1.0.64
165
1048
  - @zhin.js/console@2.0.6
166
- - @zhin.js/http@1.0.59
1049
+ - @zhin.js/host-router@1.0.59
167
1050
 
168
1051
  ## 1.0.68
169
1052
 
@@ -172,7 +1055,7 @@
172
1055
  - ba30934: fix: web 优化
173
1056
  - Updated dependencies [ba30934]
174
1057
  - @zhin.js/console@2.0.5
175
- - @zhin.js/http@1.0.58
1058
+ - @zhin.js/host-router@1.0.58
176
1059
  - zhin.js@1.0.63
177
1060
 
178
1061
  ## 1.0.67
@@ -180,14 +1063,14 @@
180
1063
  ### Patch Changes
181
1064
 
182
1065
  - zhin.js@1.0.62
183
- - @zhin.js/http@1.0.57
1066
+ - @zhin.js/host-router@1.0.57
184
1067
 
185
1068
  ## 1.0.66
186
1069
 
187
1070
  ### Patch Changes
188
1071
 
189
1072
  - zhin.js@1.0.61
190
- - @zhin.js/http@1.0.56
1073
+ - @zhin.js/host-router@1.0.56
191
1074
 
192
1075
  ## 1.0.65
193
1076
 
@@ -202,7 +1085,7 @@
202
1085
  chore: update tsconfig to include plugins directory for TypeScript compilation
203
1086
  - Updated dependencies [5073d4c]
204
1087
  - zhin.js@1.0.60
205
- - @zhin.js/http@1.0.55
1088
+ - @zhin.js/host-router@1.0.55
206
1089
 
207
1090
  ## 1.0.64
208
1091
 
@@ -211,35 +1094,35 @@
211
1094
  - c212bf7: fix: 适配器优化
212
1095
  - Updated dependencies [c212bf7]
213
1096
  - zhin.js@1.0.59
214
- - @zhin.js/http@1.0.54
1097
+ - @zhin.js/host-router@1.0.54
215
1098
 
216
1099
  ## 1.0.63
217
1100
 
218
1101
  ### Patch Changes
219
1102
 
220
1103
  - zhin.js@1.0.58
221
- - @zhin.js/http@1.0.53
1104
+ - @zhin.js/host-router@1.0.53
222
1105
 
223
1106
  ## 1.0.62
224
1107
 
225
1108
  ### Patch Changes
226
1109
 
227
1110
  - zhin.js@1.0.57
228
- - @zhin.js/http@1.0.52
1111
+ - @zhin.js/host-router@1.0.52
229
1112
 
230
1113
  ## 1.0.61
231
1114
 
232
1115
  ### Patch Changes
233
1116
 
234
1117
  - zhin.js@1.0.56
235
- - @zhin.js/http@1.0.51
1118
+ - @zhin.js/host-router@1.0.51
236
1119
 
237
1120
  ## 1.0.60
238
1121
 
239
1122
  ### Patch Changes
240
1123
 
241
1124
  - zhin.js@1.0.55
242
- - @zhin.js/http@1.0.50
1125
+ - @zhin.js/host-router@1.0.50
243
1126
 
244
1127
  ## 1.0.59
245
1128
 
@@ -248,14 +1131,14 @@
248
1131
  - 16c8f92: fix: 统一发一次版
249
1132
  - Updated dependencies [16c8f92]
250
1133
  - zhin.js@1.0.54
251
- - @zhin.js/http@1.0.49
1134
+ - @zhin.js/host-router@1.0.49
252
1135
 
253
1136
  ## 1.0.58
254
1137
 
255
1138
  ### Patch Changes
256
1139
 
257
1140
  - zhin.js@1.0.53
258
- - @zhin.js/http@1.0.48
1141
+ - @zhin.js/host-router@1.0.48
259
1142
 
260
1143
  ## 1.0.57
261
1144
 
@@ -263,7 +1146,7 @@
263
1146
 
264
1147
  - a3511a0: 各包内 Agent 技能说明已固定为随包发布的 `skills/*/SKILL.md`(替代已移除的运行时 `declareSkill`)。本批为 registry / 分发侧对齐的 **patch** 版本递增。
265
1148
  - Updated dependencies [a3511a0]
266
- - @zhin.js/http@1.0.47
1149
+ - @zhin.js/host-router@1.0.47
267
1150
 
268
1151
  ## 1.0.56
269
1152
 
@@ -272,35 +1155,35 @@
272
1155
  - Updated dependencies [bb6bfa8]
273
1156
  - Updated dependencies [bb6bfa8]
274
1157
  - zhin.js@1.0.52
275
- - @zhin.js/http@1.0.46
1158
+ - @zhin.js/host-router@1.0.46
276
1159
 
277
1160
  ## 1.0.55
278
1161
 
279
1162
  ### Patch Changes
280
1163
 
281
1164
  - zhin.js@1.0.51
282
- - @zhin.js/http@1.0.45
1165
+ - @zhin.js/host-router@1.0.45
283
1166
 
284
1167
  ## 1.0.54
285
1168
 
286
1169
  ### Patch Changes
287
1170
 
288
1171
  - zhin.js@1.0.50
289
- - @zhin.js/http@1.0.44
1172
+ - @zhin.js/host-router@1.0.44
290
1173
 
291
1174
  ## 1.0.53
292
1175
 
293
1176
  ### Patch Changes
294
1177
 
295
1178
  - zhin.js@1.0.49
296
- - @zhin.js/http@1.0.43
1179
+ - @zhin.js/host-router@1.0.43
297
1180
 
298
1181
  ## 1.0.52
299
1182
 
300
1183
  ### Patch Changes
301
1184
 
302
1185
  - zhin.js@1.0.48
303
- - @zhin.js/http@1.0.42
1186
+ - @zhin.js/host-router@1.0.42
304
1187
 
305
1188
  ## 1.0.51
306
1189
 
@@ -308,7 +1191,7 @@
308
1191
 
309
1192
  - Updated dependencies [de3e352]
310
1193
  - zhin.js@1.0.47
311
- - @zhin.js/http@1.0.41
1194
+ - @zhin.js/host-router@1.0.41
312
1195
 
313
1196
  ## 1.0.50
314
1197
 
@@ -316,28 +1199,28 @@
316
1199
 
317
1200
  - Updated dependencies [7394603]
318
1201
  - zhin.js@1.0.46
319
- - @zhin.js/http@1.0.40
1202
+ - @zhin.js/host-router@1.0.40
320
1203
 
321
1204
  ## 1.0.49
322
1205
 
323
1206
  ### Patch Changes
324
1207
 
325
1208
  - zhin.js@1.0.45
326
- - @zhin.js/http@1.0.39
1209
+ - @zhin.js/host-router@1.0.39
327
1210
 
328
1211
  ## 1.0.48
329
1212
 
330
1213
  ### Patch Changes
331
1214
 
332
1215
  - zhin.js@1.0.44
333
- - @zhin.js/http@1.0.38
1216
+ - @zhin.js/host-router@1.0.38
334
1217
 
335
1218
  ## 1.0.47
336
1219
 
337
1220
  ### Patch Changes
338
1221
 
339
1222
  - Updated dependencies [72ec4ba]
340
- - @zhin.js/http@1.0.37
1223
+ - @zhin.js/host-router@1.0.37
341
1224
  - zhin.js@1.0.43
342
1225
 
343
1226
  ## 1.0.46
@@ -345,14 +1228,14 @@
345
1228
  ### Patch Changes
346
1229
 
347
1230
  - zhin.js@1.0.42
348
- - @zhin.js/http@1.0.36
1231
+ - @zhin.js/host-router@1.0.36
349
1232
 
350
1233
  ## 1.0.45
351
1234
 
352
1235
  ### Patch Changes
353
1236
 
354
1237
  - zhin.js@1.0.41
355
- - @zhin.js/http@1.0.35
1238
+ - @zhin.js/host-router@1.0.35
356
1239
 
357
1240
  ## 1.0.44
358
1241
 
@@ -361,14 +1244,14 @@
361
1244
  - 7ef9057: fix: 架构调整优化
362
1245
  - Updated dependencies [7ef9057]
363
1246
  - zhin.js@1.0.40
364
- - @zhin.js/http@1.0.34
1247
+ - @zhin.js/host-router@1.0.34
365
1248
 
366
1249
  ## 1.0.43
367
1250
 
368
1251
  ### Patch Changes
369
1252
 
370
1253
  - zhin.js@1.0.39
371
- - @zhin.js/http@1.0.33
1254
+ - @zhin.js/host-router@1.0.33
372
1255
 
373
1256
  ## 1.0.42
374
1257
 
@@ -377,14 +1260,14 @@
377
1260
  - ab5c54a: fix: ai 架构优化
378
1261
  - Updated dependencies [ab5c54a]
379
1262
  - zhin.js@1.0.38
380
- - @zhin.js/http@1.0.32
1263
+ - @zhin.js/host-router@1.0.32
381
1264
 
382
1265
  ## 1.0.41
383
1266
 
384
1267
  ### Patch Changes
385
1268
 
386
1269
  - Updated dependencies [631da6e]
387
- - @zhin.js/http@1.0.31
1270
+ - @zhin.js/host-router@1.0.31
388
1271
 
389
1272
  ## 1.0.40
390
1273
 
@@ -397,7 +1280,7 @@
397
1280
  ### Patch Changes
398
1281
 
399
1282
  - zhin.js@1.0.37
400
- - @zhin.js/http@1.0.30
1283
+ - @zhin.js/host-router@1.0.30
401
1284
 
402
1285
  ## 1.0.38
403
1286
 
@@ -405,7 +1288,7 @@
405
1288
 
406
1289
  - Updated dependencies [432d0a5]
407
1290
  - Updated dependencies [6d94111]
408
- - @zhin.js/http@1.0.29
1291
+ - @zhin.js/host-router@1.0.29
409
1292
  - zhin.js@1.0.36
410
1293
 
411
1294
  ## 1.0.37
@@ -413,42 +1296,42 @@
413
1296
  ### Patch Changes
414
1297
 
415
1298
  - zhin.js@1.0.35
416
- - @zhin.js/http@1.0.28
1299
+ - @zhin.js/host-router@1.0.28
417
1300
 
418
1301
  ## 1.0.36
419
1302
 
420
1303
  ### Patch Changes
421
1304
 
422
1305
  - zhin.js@1.0.34
423
- - @zhin.js/http@1.0.27
1306
+ - @zhin.js/host-router@1.0.27
424
1307
 
425
1308
  ## 1.0.35
426
1309
 
427
1310
  ### Patch Changes
428
1311
 
429
1312
  - zhin.js@1.0.33
430
- - @zhin.js/http@1.0.26
1313
+ - @zhin.js/host-router@1.0.26
431
1314
 
432
1315
  ## 1.0.34
433
1316
 
434
1317
  ### Patch Changes
435
1318
 
436
1319
  - Updated dependencies [48481a8]
437
- - @zhin.js/http@1.0.25
1320
+ - @zhin.js/host-router@1.0.25
438
1321
 
439
1322
  ## 1.0.33
440
1323
 
441
1324
  ### Patch Changes
442
1325
 
443
1326
  - zhin.js@1.0.32
444
- - @zhin.js/http@1.0.24
1327
+ - @zhin.js/host-router@1.0.24
445
1328
 
446
1329
  ## 1.0.32
447
1330
 
448
1331
  ### Patch Changes
449
1332
 
450
1333
  - zhin.js@1.0.31
451
- - @zhin.js/http@1.0.23
1334
+ - @zhin.js/host-router@1.0.23
452
1335
 
453
1336
  ## 1.0.31
454
1337
 
@@ -456,21 +1339,21 @@
456
1339
 
457
1340
  - Updated dependencies [460a6c6]
458
1341
  - zhin.js@1.0.30
459
- - @zhin.js/http@1.0.22
1342
+ - @zhin.js/host-router@1.0.22
460
1343
 
461
1344
  ## 1.0.30
462
1345
 
463
1346
  ### Patch Changes
464
1347
 
465
1348
  - zhin.js@1.0.29
466
- - @zhin.js/http@1.0.21
1349
+ - @zhin.js/host-router@1.0.21
467
1350
 
468
1351
  ## 1.0.29
469
1352
 
470
1353
  ### Patch Changes
471
1354
 
472
1355
  - Updated dependencies [05a514d]
473
- - @zhin.js/http@1.0.20
1356
+ - @zhin.js/host-router@1.0.20
474
1357
  - zhin.js@1.0.28
475
1358
 
476
1359
  ## 1.0.28
@@ -478,14 +1361,14 @@
478
1361
  ### Patch Changes
479
1362
 
480
1363
  - Updated dependencies [2b44e18]
481
- - @zhin.js/http@1.0.19
1364
+ - @zhin.js/host-router@1.0.19
482
1365
 
483
1366
  ## 1.0.27
484
1367
 
485
1368
  ### Patch Changes
486
1369
 
487
1370
  - Updated dependencies [b27e633]
488
- - @zhin.js/http@1.0.18
1371
+ - @zhin.js/host-router@1.0.18
489
1372
  - zhin.js@1.0.27
490
1373
 
491
1374
  ## 1.0.26
@@ -494,7 +1377,7 @@
494
1377
 
495
1378
  - 106d357: fix: ai
496
1379
  - Updated dependencies [106d357]
497
- - @zhin.js/http@1.0.17
1380
+ - @zhin.js/host-router@1.0.17
498
1381
  - zhin.js@1.0.26
499
1382
 
500
1383
  ## 1.0.25
@@ -506,14 +1389,14 @@
506
1389
  - Updated dependencies [26d2942]
507
1390
  - Updated dependencies [6b02c41]
508
1391
  - zhin.js@1.0.25
509
- - @zhin.js/http@1.0.16
1392
+ - @zhin.js/host-router@1.0.16
510
1393
 
511
1394
  ## 1.0.24
512
1395
 
513
1396
  ### Patch Changes
514
1397
 
515
1398
  - zhin.js@1.0.24
516
- - @zhin.js/http@1.0.15
1399
+ - @zhin.js/host-router@1.0.15
517
1400
 
518
1401
  ## 1.0.23
519
1402
 
@@ -522,7 +1405,7 @@
522
1405
  - 52ae08a: fix: 更新消息处理流程
523
1406
  - Updated dependencies [52ae08a]
524
1407
  - zhin.js@1.0.23
525
- - @zhin.js/http@1.0.14
1408
+ - @zhin.js/host-router@1.0.14
526
1409
 
527
1410
  ## 1.0.22
528
1411
 
@@ -530,14 +1413,14 @@
530
1413
 
531
1414
  - Updated dependencies [26aba27]
532
1415
  - zhin.js@1.0.22
533
- - @zhin.js/http@1.0.13
1416
+ - @zhin.js/host-router@1.0.13
534
1417
 
535
1418
  ## 1.0.21
536
1419
 
537
1420
  ### Patch Changes
538
1421
 
539
1422
  - zhin.js@1.0.21
540
- - @zhin.js/http@1.0.12
1423
+ - @zhin.js/host-router@1.0.12
541
1424
 
542
1425
  ## 1.0.20
543
1426
 
@@ -547,7 +1430,7 @@
547
1430
  - 5141137: fix: 修复适配器读取配置 bug
548
1431
  - Updated dependencies [a3b7673]
549
1432
  - Updated dependencies [5141137]
550
- - @zhin.js/http@1.0.11
1433
+ - @zhin.js/host-router@1.0.11
551
1434
  - zhin.js@1.0.20
552
1435
 
553
1436
  ## 1.0.19
@@ -557,7 +1440,7 @@
557
1440
  - f9faa1d: fix: test release
558
1441
  - Updated dependencies [f9faa1d]
559
1442
  - zhin.js@1.0.19
560
- - @zhin.js/http@1.0.10
1443
+ - @zhin.js/host-router@1.0.10
561
1444
 
562
1445
  ## 1.0.18
563
1446
 
@@ -566,7 +1449,7 @@
566
1449
  - d16a69c: fix: test trust publish
567
1450
  - Updated dependencies [d16a69c]
568
1451
  - zhin.js@1.0.18
569
- - @zhin.js/http@1.0.9
1452
+ - @zhin.js/host-router@1.0.9
570
1453
 
571
1454
  ## 1.0.17
572
1455