@zhin.js/adapter-telegram 1.0.68 → 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.
- package/CHANGELOG.md +825 -16
- package/README.md +106 -77
- package/adapters/telegram.js +34 -0
- package/adapters/telegram.ts +39 -0
- package/agent/PERMITS.md +24 -0
- package/agent/tools/create_invite.ts +18 -0
- package/agent/tools/list_admins.ts +24 -0
- package/agent/tools/member_count.ts +16 -0
- package/agent/tools/pin_message.ts +19 -0
- package/agent/tools/react.ts +18 -0
- package/agent/tools/send_poll.ts +32 -0
- package/agent/tools/send_sticker.ts +17 -0
- package/agent/tools/set_description.ts +17 -0
- package/agent/tools/set_permissions.ts +31 -0
- package/agent/tools/unpin_message.ts +19 -0
- package/commands/endpoint/add/[id].js +3 -0
- package/commands/endpoint/add/[id].ts +3 -0
- package/commands/endpoint/list.js +3 -0
- package/commands/endpoint/list.ts +3 -0
- package/commands/endpoint/remove/[id].js +3 -0
- package/commands/endpoint/remove/[id].ts +3 -0
- package/lib/client.d.ts +12 -0
- package/lib/client.js +2 -0
- package/lib/endpoint.d.ts +112 -0
- package/lib/endpoint.js +535 -0
- package/lib/index.d.ts +4 -18
- package/lib/index.js +4 -455
- package/lib/markdown-to-html.d.ts +9 -0
- package/lib/markdown-to-html.js +75 -0
- package/lib/platform-permit.d.ts +17 -0
- package/lib/platform-permit.js +51 -0
- package/lib/polling.d.ts +9 -0
- package/lib/polling.js +57 -0
- package/lib/protocol.d.ts +299 -0
- package/lib/protocol.js +474 -0
- package/lib/telegram-endpoint-commands.d.ts +1 -0
- package/lib/telegram-endpoint-commands.js +16 -0
- package/lib/telegram-runtime-state.d.ts +1 -0
- package/lib/telegram-runtime-state.js +6 -0
- package/lib/webhook.d.ts +12 -0
- package/lib/webhook.js +55 -0
- package/package.json +59 -28
- package/plugin.js +19 -0
- package/schema.json +110 -0
- package/src/client.ts +16 -0
- package/src/endpoint.ts +679 -0
- package/src/index.ts +39 -426
- package/src/markdown-to-html.ts +86 -0
- package/src/platform-permit.ts +65 -0
- package/src/polling.ts +76 -0
- package/src/protocol.ts +767 -0
- package/src/telegram-endpoint-commands.ts +17 -0
- package/src/telegram-runtime-state.ts +7 -0
- package/src/webhook.ts +75 -0
- package/client/Dashboard.tsx +0 -295
- package/client/index.tsx +0 -11
- package/client/tsconfig.json +0 -7
- package/client/utils/api.ts +0 -17
- package/dist/index.js +0 -32
- package/lib/adapter.d.ts +0 -18
- package/lib/adapter.d.ts.map +0 -1
- package/lib/adapter.js +0 -55
- package/lib/adapter.js.map +0 -1
- package/lib/bot.d.ts +0 -140
- package/lib/bot.d.ts.map +0 -1
- package/lib/bot.js +0 -866
- package/lib/bot.js.map +0 -1
- package/lib/index.d.ts.map +0 -1
- package/lib/index.js.map +0 -1
- package/lib/types.d.ts +0 -29
- package/lib/types.d.ts.map +0 -1
- package/lib/types.js +0 -2
- package/lib/types.js.map +0 -1
- package/plugin.yml +0 -3
- package/src/adapter.ts +0 -64
- package/src/bot.ts +0 -983
- package/src/types.ts +0 -32
- /package/{skills/telegram/SKILL.md → agent/skills/telegram.md} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,814 @@
|
|
|
1
1
|
# Changelog
|
|
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/core@1.1.35
|
|
15
|
+
- @zhin.js/feature-kit@1.1.0
|
|
16
|
+
- @zhin.js/host-http@1.1.0
|
|
17
|
+
- @zhin.js/im-contract@1.1.0
|
|
18
|
+
- @zhin.js/logger@1.1.0
|
|
19
|
+
|
|
20
|
+
## 9.0.1
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- f7ee28d: Reject sends without a valid platform message ID. Use the shared Endpoint lifecycle to cancel setup requests and polling, isolate late results from replacement connections, and release Webhook routes on failed startup. Release retry listeners and cancel permission lookups when admission closes, preventing stale messages and permissions from entering reopened endpoints. Correct endpoint ID and Webhook setup documentation.
|
|
25
|
+
- Updated dependencies [f7ee28d]
|
|
26
|
+
- @zhin.js/adapter@1.2.2
|
|
27
|
+
- @zhin.js/core@1.5.16
|
|
28
|
+
- zhin.js@7.0.1
|
|
29
|
+
- @zhin.js/agent@1.2.1
|
|
30
|
+
|
|
31
|
+
## 9.0.0
|
|
32
|
+
|
|
33
|
+
### Patch Changes
|
|
34
|
+
|
|
35
|
+
- Updated dependencies [12325e1]
|
|
36
|
+
- Updated dependencies [d19e976]
|
|
37
|
+
- @zhin.js/agent@1.2.0
|
|
38
|
+
- zhin.js@7.0.0
|
|
39
|
+
|
|
40
|
+
## 8.0.8
|
|
41
|
+
|
|
42
|
+
### Patch Changes
|
|
43
|
+
|
|
44
|
+
- Updated dependencies [a728a20]
|
|
45
|
+
- @zhin.js/host-http@1.0.17
|
|
46
|
+
- @zhin.js/agent@1.1.22
|
|
47
|
+
- zhin.js@6.0.15
|
|
48
|
+
|
|
49
|
+
## 8.0.7
|
|
50
|
+
|
|
51
|
+
### Patch Changes
|
|
52
|
+
|
|
53
|
+
- Updated dependencies [337fd05]
|
|
54
|
+
- @zhin.js/agent@1.1.21
|
|
55
|
+
- zhin.js@6.0.15
|
|
56
|
+
|
|
57
|
+
## 8.0.6
|
|
58
|
+
|
|
59
|
+
### Patch Changes
|
|
60
|
+
|
|
61
|
+
- Updated dependencies [fcbff21]
|
|
62
|
+
- @zhin.js/host-http@1.0.16
|
|
63
|
+
- zhin.js@6.0.15
|
|
64
|
+
|
|
65
|
+
## 8.0.5
|
|
66
|
+
|
|
67
|
+
### Patch Changes
|
|
68
|
+
|
|
69
|
+
- Updated dependencies [882a08a]
|
|
70
|
+
- @zhin.js/agent@1.1.20
|
|
71
|
+
- zhin.js@6.0.15
|
|
72
|
+
- @zhin.js/core@1.5.15
|
|
73
|
+
|
|
74
|
+
## 8.0.4
|
|
75
|
+
|
|
76
|
+
### Patch Changes
|
|
77
|
+
|
|
78
|
+
- Updated dependencies [d85eddd]
|
|
79
|
+
- @zhin.js/agent@1.1.19
|
|
80
|
+
- @zhin.js/host-http@1.0.15
|
|
81
|
+
- @zhin.js/core@1.5.15
|
|
82
|
+
- zhin.js@6.0.15
|
|
83
|
+
|
|
84
|
+
## 8.0.3
|
|
85
|
+
|
|
86
|
+
### Patch Changes
|
|
87
|
+
|
|
88
|
+
- Updated dependencies [a5ee497]
|
|
89
|
+
- Updated dependencies [a5ee497]
|
|
90
|
+
- Updated dependencies [ba7e17a]
|
|
91
|
+
- Updated dependencies [7108d0b]
|
|
92
|
+
- @zhin.js/agent@1.1.18
|
|
93
|
+
- @zhin.js/host-http@1.0.14
|
|
94
|
+
- @zhin.js/core@1.5.15
|
|
95
|
+
- zhin.js@6.0.15
|
|
96
|
+
|
|
97
|
+
## 8.0.2
|
|
98
|
+
|
|
99
|
+
### Patch Changes
|
|
100
|
+
|
|
101
|
+
- Updated dependencies [736fa04]
|
|
102
|
+
- @zhin.js/agent@1.1.17
|
|
103
|
+
- zhin.js@6.0.14
|
|
104
|
+
|
|
105
|
+
## 8.0.1
|
|
106
|
+
|
|
107
|
+
### Patch Changes
|
|
108
|
+
|
|
109
|
+
- 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.
|
|
110
|
+
- Updated dependencies [e9c6a73]
|
|
111
|
+
- Updated dependencies [4e8117c]
|
|
112
|
+
- Updated dependencies [902fa35]
|
|
113
|
+
- Updated dependencies [54bfd6b]
|
|
114
|
+
- Updated dependencies [12025ee]
|
|
115
|
+
- Updated dependencies [09b14d6]
|
|
116
|
+
- Updated dependencies [1fc78bc]
|
|
117
|
+
- @zhin.js/agent@1.1.16
|
|
118
|
+
- @zhin.js/adapter@1.2.1
|
|
119
|
+
- @zhin.js/core@1.5.14
|
|
120
|
+
- @zhin.js/host-http@1.0.13
|
|
121
|
+
- @zhin.js/command@1.0.16
|
|
122
|
+
- @zhin.js/logger@1.0.77
|
|
123
|
+
- zhin.js@6.0.14
|
|
124
|
+
- @zhin.js/feature-kit@1.0.13
|
|
125
|
+
- @zhin.js/permission@1.0.4
|
|
126
|
+
|
|
127
|
+
## 8.0.0
|
|
128
|
+
|
|
129
|
+
### Patch Changes
|
|
130
|
+
|
|
131
|
+
- Updated dependencies [b10d058]
|
|
132
|
+
- Updated dependencies [f2c532f]
|
|
133
|
+
- Updated dependencies [3dbf990]
|
|
134
|
+
- @zhin.js/host-http@1.0.12
|
|
135
|
+
- @zhin.js/adapter@1.2.0
|
|
136
|
+
- @zhin.js/core@1.5.13
|
|
137
|
+
- @zhin.js/agent@1.1.15
|
|
138
|
+
- zhin.js@6.0.13
|
|
139
|
+
|
|
140
|
+
## 7.0.14
|
|
141
|
+
|
|
142
|
+
### Patch Changes
|
|
143
|
+
|
|
144
|
+
- 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.
|
|
145
|
+
- 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.
|
|
146
|
+
|
|
147
|
+
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.
|
|
148
|
+
|
|
149
|
+
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.
|
|
150
|
+
|
|
151
|
+
- 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.
|
|
152
|
+
- 059555a: Add the canonical conversation content port for scoped Telegram media references.
|
|
153
|
+
Opaque Bot API file ids are materialized to bounded base64 without exposing token-bearing download URLs.
|
|
154
|
+
- Updated dependencies [5969c5b]
|
|
155
|
+
- Updated dependencies [d336a3f]
|
|
156
|
+
- Updated dependencies [0c82a7e]
|
|
157
|
+
- Updated dependencies [b9217e4]
|
|
158
|
+
- Updated dependencies [5969c5b]
|
|
159
|
+
- Updated dependencies [5969c5b]
|
|
160
|
+
- Updated dependencies [974772e]
|
|
161
|
+
- Updated dependencies [5969c5b]
|
|
162
|
+
- Updated dependencies [5969c5b]
|
|
163
|
+
- Updated dependencies [2f786bd]
|
|
164
|
+
- Updated dependencies [63d89f9]
|
|
165
|
+
- Updated dependencies [71c7cdd]
|
|
166
|
+
- Updated dependencies [3cca0ea]
|
|
167
|
+
- Updated dependencies [1312ca0]
|
|
168
|
+
- Updated dependencies [985fa22]
|
|
169
|
+
- Updated dependencies [04b861d]
|
|
170
|
+
- Updated dependencies [a23d544]
|
|
171
|
+
- Updated dependencies [8cddabf]
|
|
172
|
+
- Updated dependencies [dbe5081]
|
|
173
|
+
- @zhin.js/im-contract@1.0.4
|
|
174
|
+
- @zhin.js/core@1.5.12
|
|
175
|
+
- @zhin.js/adapter@1.1.11
|
|
176
|
+
- @zhin.js/agent@1.1.14
|
|
177
|
+
- @zhin.js/host-http@1.0.11
|
|
178
|
+
- @zhin.js/command@1.0.15
|
|
179
|
+
- zhin.js@6.0.12
|
|
180
|
+
- @zhin.js/permission@1.0.3
|
|
181
|
+
|
|
182
|
+
## 7.0.13
|
|
183
|
+
|
|
184
|
+
### Patch Changes
|
|
185
|
+
|
|
186
|
+
- @zhin.js/core@1.5.11
|
|
187
|
+
- @zhin.js/agent@1.1.13
|
|
188
|
+
- zhin.js@6.0.11
|
|
189
|
+
|
|
190
|
+
## 7.0.12
|
|
191
|
+
|
|
192
|
+
### Patch Changes
|
|
193
|
+
|
|
194
|
+
- 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.
|
|
195
|
+
- @zhin.js/agent@1.1.12
|
|
196
|
+
- @zhin.js/core@1.5.10
|
|
197
|
+
- zhin.js@6.0.10
|
|
198
|
+
|
|
199
|
+
## 7.0.11
|
|
200
|
+
|
|
201
|
+
### Patch Changes
|
|
202
|
+
|
|
203
|
+
- eb84b77: fix: 更新文档,建立正确的依赖关系
|
|
204
|
+
- Updated dependencies [d3920e9]
|
|
205
|
+
- @zhin.js/core@1.5.10
|
|
206
|
+
- zhin.js@6.0.10
|
|
207
|
+
- @zhin.js/adapter@1.1.10
|
|
208
|
+
- @zhin.js/agent@1.1.11
|
|
209
|
+
|
|
210
|
+
## 7.0.10
|
|
211
|
+
|
|
212
|
+
### Patch Changes
|
|
213
|
+
|
|
214
|
+
- Updated dependencies [e4757a8]
|
|
215
|
+
- Updated dependencies [c3c0ebf]
|
|
216
|
+
- @zhin.js/command@1.0.13
|
|
217
|
+
- @zhin.js/host-http@1.0.10
|
|
218
|
+
- @zhin.js/agent@1.1.10
|
|
219
|
+
- @zhin.js/core@1.5.9
|
|
220
|
+
- @zhin.js/adapter@1.1.9
|
|
221
|
+
- zhin.js@6.0.9
|
|
222
|
+
|
|
223
|
+
## 7.0.9
|
|
224
|
+
|
|
225
|
+
### Patch Changes
|
|
226
|
+
|
|
227
|
+
- Updated dependencies [63253bb]
|
|
228
|
+
- Updated dependencies [6fb24dd]
|
|
229
|
+
- Updated dependencies [d162216]
|
|
230
|
+
- Updated dependencies [7427818]
|
|
231
|
+
- Updated dependencies [90da255]
|
|
232
|
+
- Updated dependencies [8e973dc]
|
|
233
|
+
- Updated dependencies [953cfe1]
|
|
234
|
+
- Updated dependencies [0e73866]
|
|
235
|
+
- @zhin.js/plugin-runtime@1.1.6
|
|
236
|
+
- @zhin.js/core@1.5.8
|
|
237
|
+
- @zhin.js/adapter@1.1.8
|
|
238
|
+
- @zhin.js/host-http@1.0.9
|
|
239
|
+
- @zhin.js/agent@1.1.9
|
|
240
|
+
- zhin.js@6.0.8
|
|
241
|
+
- @zhin.js/command@1.0.12
|
|
242
|
+
- @zhin.js/permission@1.0.2
|
|
243
|
+
|
|
244
|
+
## 7.0.8
|
|
245
|
+
|
|
246
|
+
### Patch Changes
|
|
247
|
+
|
|
248
|
+
- Updated dependencies [36cb1ca]
|
|
249
|
+
- @zhin.js/core@1.5.7
|
|
250
|
+
- @zhin.js/agent@1.1.8
|
|
251
|
+
- zhin.js@6.0.7
|
|
252
|
+
|
|
253
|
+
## 7.0.7
|
|
254
|
+
|
|
255
|
+
### Patch Changes
|
|
256
|
+
|
|
257
|
+
- Updated dependencies [7945544]
|
|
258
|
+
- @zhin.js/command@1.0.11
|
|
259
|
+
- @zhin.js/agent@1.1.7
|
|
260
|
+
- @zhin.js/adapter@1.1.7
|
|
261
|
+
- @zhin.js/core@1.5.6
|
|
262
|
+
- zhin.js@6.0.6
|
|
263
|
+
|
|
264
|
+
## 7.0.6
|
|
265
|
+
|
|
266
|
+
### Patch Changes
|
|
267
|
+
|
|
268
|
+
- Updated dependencies [2d0a622]
|
|
269
|
+
- @zhin.js/command@1.0.10
|
|
270
|
+
- @zhin.js/adapter@1.1.7
|
|
271
|
+
- @zhin.js/core@1.5.5
|
|
272
|
+
- @zhin.js/agent@1.1.6
|
|
273
|
+
- zhin.js@6.0.5
|
|
274
|
+
|
|
275
|
+
## 7.0.5
|
|
276
|
+
|
|
277
|
+
### Patch Changes
|
|
278
|
+
|
|
279
|
+
- 51015d6: refactor(adapters): migrate platform-permit to PermissionSubject
|
|
280
|
+
|
|
281
|
+
All adapter platform-permit checkers now accept PermissionSubject
|
|
282
|
+
(duck-typed from Message/CommandSession) instead of Message directly.
|
|
283
|
+
registerPlatformPermitChecker is replaced by host.registerPlatform in
|
|
284
|
+
the adapter plugin setup. activity-feedback service updated for new
|
|
285
|
+
PermissionHost integration.
|
|
286
|
+
|
|
287
|
+
- Updated dependencies [6f9c366]
|
|
288
|
+
- Updated dependencies [373a56b]
|
|
289
|
+
- Updated dependencies [0de46a8]
|
|
290
|
+
- Updated dependencies [c106ecc]
|
|
291
|
+
- Updated dependencies [ca92e03]
|
|
292
|
+
- Updated dependencies [b0f37ae]
|
|
293
|
+
- Updated dependencies [ba08a2f]
|
|
294
|
+
- Updated dependencies [b08f7fe]
|
|
295
|
+
- Updated dependencies [daffd4c]
|
|
296
|
+
- Updated dependencies [36c7400]
|
|
297
|
+
- Updated dependencies [a9fa72e]
|
|
298
|
+
- Updated dependencies [c8de3ef]
|
|
299
|
+
- Updated dependencies [60f0fc8]
|
|
300
|
+
- Updated dependencies [574c990]
|
|
301
|
+
- Updated dependencies [d096f16]
|
|
302
|
+
- Updated dependencies [3f29623]
|
|
303
|
+
- Updated dependencies [2916852]
|
|
304
|
+
- Updated dependencies [d047869]
|
|
305
|
+
- Updated dependencies [162fa34]
|
|
306
|
+
- Updated dependencies [e62561e]
|
|
307
|
+
- Updated dependencies [3eeeb46]
|
|
308
|
+
- Updated dependencies [85d0f82]
|
|
309
|
+
- Updated dependencies [61bfc1c]
|
|
310
|
+
- Updated dependencies [04bad47]
|
|
311
|
+
- Updated dependencies [e40b048]
|
|
312
|
+
- Updated dependencies [5a5b1bb]
|
|
313
|
+
- Updated dependencies [f1708c3]
|
|
314
|
+
- Updated dependencies [d254a81]
|
|
315
|
+
- Updated dependencies [7123c47]
|
|
316
|
+
- Updated dependencies [05befc1]
|
|
317
|
+
- Updated dependencies [0663b6a]
|
|
318
|
+
- Updated dependencies [f28f9b3]
|
|
319
|
+
- Updated dependencies [9f340f7]
|
|
320
|
+
- Updated dependencies [e53444f]
|
|
321
|
+
- Updated dependencies [5eedd26]
|
|
322
|
+
- Updated dependencies [92b0dd7]
|
|
323
|
+
- Updated dependencies [f919b6f]
|
|
324
|
+
- Updated dependencies [098e411]
|
|
325
|
+
- Updated dependencies [e1b7c01]
|
|
326
|
+
- Updated dependencies [9b94f87]
|
|
327
|
+
- Updated dependencies [a7df753]
|
|
328
|
+
- @zhin.js/agent@1.1.5
|
|
329
|
+
- @zhin.js/host-http@1.0.8
|
|
330
|
+
- @zhin.js/permission@1.0.1
|
|
331
|
+
- @zhin.js/im-contract@1.0.3
|
|
332
|
+
- @zhin.js/adapter@1.1.7
|
|
333
|
+
- @zhin.js/plugin-runtime@1.1.5
|
|
334
|
+
- @zhin.js/command@1.0.9
|
|
335
|
+
- @zhin.js/core@1.5.4
|
|
336
|
+
- zhin.js@6.0.4
|
|
337
|
+
|
|
338
|
+
## 7.0.4
|
|
339
|
+
|
|
340
|
+
### Patch Changes
|
|
341
|
+
|
|
342
|
+
- f8c7a54: fix: im
|
|
343
|
+
- Updated dependencies [f8c7a54]
|
|
344
|
+
- @zhin.js/logger@1.0.76
|
|
345
|
+
- @zhin.js/host-http@1.0.7
|
|
346
|
+
- @zhin.js/adapter@1.1.6
|
|
347
|
+
- @zhin.js/agent@1.1.4
|
|
348
|
+
- @zhin.js/command@1.0.8
|
|
349
|
+
- @zhin.js/core@1.5.3
|
|
350
|
+
- @zhin.js/im-contract@1.0.2
|
|
351
|
+
- @zhin.js/plugin-runtime@1.1.4
|
|
352
|
+
- zhin.js@6.0.3
|
|
353
|
+
|
|
354
|
+
## 7.0.3
|
|
355
|
+
|
|
356
|
+
### Patch Changes
|
|
357
|
+
|
|
358
|
+
- Updated dependencies [afc0e66]
|
|
359
|
+
- Updated dependencies [2e41ad5]
|
|
360
|
+
- Updated dependencies [9f57124]
|
|
361
|
+
- @zhin.js/core@1.5.2
|
|
362
|
+
- @zhin.js/adapter@1.1.5
|
|
363
|
+
- @zhin.js/im-contract@1.0.1
|
|
364
|
+
- @zhin.js/plugin-runtime@1.1.3
|
|
365
|
+
- @zhin.js/command@1.0.7
|
|
366
|
+
- @zhin.js/host-http@1.0.6
|
|
367
|
+
- @zhin.js/agent@1.1.3
|
|
368
|
+
- zhin.js@6.0.2
|
|
369
|
+
|
|
370
|
+
## 7.0.2
|
|
371
|
+
|
|
372
|
+
### Patch Changes
|
|
373
|
+
|
|
374
|
+
- Updated dependencies [696ab1b]
|
|
375
|
+
- @zhin.js/agent@1.1.2
|
|
376
|
+
- zhin.js@6.0.1
|
|
377
|
+
|
|
378
|
+
## 7.0.1
|
|
379
|
+
|
|
380
|
+
### Patch Changes
|
|
381
|
+
|
|
382
|
+
- Updated dependencies [c8f4d45]
|
|
383
|
+
- @zhin.js/plugin-runtime@1.1.2
|
|
384
|
+
- @zhin.js/host-http@1.0.5
|
|
385
|
+
- @zhin.js/adapter@1.1.4
|
|
386
|
+
- @zhin.js/agent@1.1.1
|
|
387
|
+
- @zhin.js/command@1.0.6
|
|
388
|
+
- @zhin.js/core@1.5.1
|
|
389
|
+
- zhin.js@6.0.1
|
|
390
|
+
|
|
391
|
+
## 7.0.0
|
|
392
|
+
|
|
393
|
+
### Patch Changes
|
|
394
|
+
|
|
395
|
+
- 4fbff5d: feat!: 多模态双向 Segment 一贯制(BREAKING,无兼容层)
|
|
396
|
+
|
|
397
|
+
全框架唯一媒体表达统一为 canonical `Segment` + `MediaRef{kind: url|path|base64|file, value, mime_type?, file_name?, size?}`,新增 audio/video/file 段类型;所有第二形状(legacy `data.url/file/base64` 字段、`mediaRefFromLegacyData`/`mediaRefToLegacyFields` 桥、双写)全部删除。
|
|
398
|
+
|
|
399
|
+
- **core**:`SendContent` 一等支持 `Segment[]`;endpoint 出站载荷只含 canonical 段;`resolveOutboundMediaPolicy` 改为纯声明驱动(adapter definition `segments.outboundMedia`),内置策略表删除,未声明回退 `url-or-text`;`ImageContent` 旧桥删除。
|
|
400
|
+
- **ai**:新增 `MediaContentBlock`/`MediaBlockRef`(Segment 同构)与 `UserMessage.media`(当前 turn 媒体,**不持久化**——存储层自动剥离);`createUserMessage(text, media?)` 签名变更(`ImageContent` 删除);provider 边界序列化器 `filterMediaBlocksForProvider` + 能力表(缺省 image-only,不支持类型降级占位文本);ai-sdk 桥媒体块 → SDK image/file parts。
|
|
401
|
+
- **agent**:入站 turn 注入(`turn/inbound-media.ts`)——commMessage 媒体段 → 当前 turn `UserMessage.media`;图片 path 物化、音频默认 STT(`@zhin.js/speech` 可选,失败降级占位)、视频/文件占位;`publishOutboundElements` 产出 canonical Segment;`transcribeAudioPayload` 导出。
|
|
402
|
+
- **cli**:`bridgeRuntimeMessage` 回复链路媒体段透传,不再压平为文本(`$reply` 直达 normalize → adapter)。
|
|
403
|
+
- **全部 20 个平台适配器**:出站媒体只消费 `data.media`(url 直发 / base64 直发 / 平台上传 / 读盘),入站媒体产出 canonical `data.media`;`segments.outboundMedia` 声明与实际消费逐一核对修正;QQ 入站新增 canonical segments(image/audio/video/file/mention/face/reply),图片/语音/视频不再丢失。
|
|
404
|
+
|
|
405
|
+
迁移:适配器/插件产媒体一律用 `{ type, data: { media: MediaRef } }`;发送 legacy `data.url/file/base64` 形状的段会被 warn 丢弃。
|
|
406
|
+
|
|
407
|
+
- Updated dependencies [7c1e63a]
|
|
408
|
+
- Updated dependencies [4fbff5d]
|
|
409
|
+
- Updated dependencies [5b94d9c]
|
|
410
|
+
- @zhin.js/command@1.0.5
|
|
411
|
+
- @zhin.js/adapter@1.1.3
|
|
412
|
+
- @zhin.js/core@1.5.0
|
|
413
|
+
- @zhin.js/agent@1.1.0
|
|
414
|
+
- zhin.js@6.0.0
|
|
415
|
+
|
|
416
|
+
## 6.0.6
|
|
417
|
+
|
|
418
|
+
### Patch Changes
|
|
419
|
+
|
|
420
|
+
- d52f3c5: fix: QQ 适配器群聊误识别为私聊、game-kit 启动崩溃、全面补齐 recallMessage
|
|
421
|
+
|
|
422
|
+
- fix(cli): `resolveChannelType` 增加 `metadata.channelKind` 检查,修复 QQ/Discord/KOOK 群聊消息被误分类为私聊
|
|
423
|
+
- fix(game-kit): `createHostGameDb` 改用延迟代理模型,避免数据库启动前解析模型导致崩溃
|
|
424
|
+
- feat(qq): 实现 `recallMessage`,解析复合 messageId 路由到对应 SDK 撤回方法;`normalizeQqMessage` 增加 `message_type` 缺失时的回退检测
|
|
425
|
+
- feat(slack): 实现 `recallMessage`,利用已有 compound ref 和 `chat.delete` API
|
|
426
|
+
- feat(onebot11): 两个 endpoint 类实现 `recallMessage`(`delete_msg`)
|
|
427
|
+
- feat(onebot12): 两个 endpoint 类实现 `recallMessage`(`delete_message`)
|
|
428
|
+
- feat(napcat): 三个 endpoint 类实现 `recallMessage`(`delete_msg`)
|
|
429
|
+
- feat(discord): 两个 endpoint 类实现 `recallMessage`;`send()` 改为返回 `channelId:snowflake` 复合 ID
|
|
430
|
+
- feat(telegram): 实现 `recallMessage`(`deleteMessage`);`send()` 改为返回 `chatId:messageId` 复合 ID
|
|
431
|
+
- feat(kook): 两个 endpoint 类实现 `recallMessage`,利用 kook-client `recallMsg` API
|
|
432
|
+
- feat(lark): 实现 `recallMessage`(`DELETE /im/v1/messages/{id}`)
|
|
433
|
+
- feat(wecom): 实现 `recallMessage`(`POST /cgi-bin/message/recall`)
|
|
434
|
+
|
|
435
|
+
## 6.0.5
|
|
436
|
+
|
|
437
|
+
### Patch Changes
|
|
438
|
+
|
|
439
|
+
- Updated dependencies [d8bf702]
|
|
440
|
+
- @zhin.js/host-http@1.0.4
|
|
441
|
+
- @zhin.js/agent@1.0.10
|
|
442
|
+
- @zhin.js/core@1.4.3
|
|
443
|
+
- zhin.js@5.0.3
|
|
444
|
+
|
|
445
|
+
## 6.0.4
|
|
446
|
+
|
|
447
|
+
### Patch Changes
|
|
448
|
+
|
|
449
|
+
- Updated dependencies [45b3256]
|
|
450
|
+
- @zhin.js/core@1.4.3
|
|
451
|
+
- @zhin.js/agent@1.0.9
|
|
452
|
+
- zhin.js@5.0.3
|
|
453
|
+
|
|
454
|
+
## 6.0.3
|
|
455
|
+
|
|
456
|
+
### Patch Changes
|
|
457
|
+
|
|
458
|
+
- Updated dependencies [f346346]
|
|
459
|
+
- @zhin.js/agent@1.0.8
|
|
460
|
+
- @zhin.js/core@1.4.2
|
|
461
|
+
- zhin.js@5.0.2
|
|
462
|
+
|
|
463
|
+
## 6.0.2
|
|
464
|
+
|
|
465
|
+
### Patch Changes
|
|
466
|
+
|
|
467
|
+
- d5cd4aa: Publish Plugin Runtime entry points and convention modules as JavaScript so
|
|
468
|
+
installed npm plugins load on Node without TypeScript stripping. Workspace
|
|
469
|
+
development continues to prefer TypeScript sources for local HMR.
|
|
470
|
+
|
|
471
|
+
Remove the unconsumed legacy game hub APIs from game-kit; game navigation and
|
|
472
|
+
records now use ordinary convention commands owned by the game hub plugin.
|
|
473
|
+
|
|
474
|
+
- Updated dependencies [d5cd4aa]
|
|
475
|
+
- @zhin.js/command@1.0.4
|
|
476
|
+
- zhin.js@5.0.2
|
|
477
|
+
- @zhin.js/adapter@1.1.2
|
|
478
|
+
- @zhin.js/core@1.4.2
|
|
479
|
+
- @zhin.js/agent@1.0.7
|
|
480
|
+
|
|
481
|
+
## 6.0.1
|
|
482
|
+
|
|
483
|
+
### Patch Changes
|
|
484
|
+
|
|
485
|
+
- 5691aba: 第二轮全量审计修复批(8 面 ~60 bug):
|
|
486
|
+
|
|
487
|
+
- **安全**:email 附件路径穿越修复(basename + downloadPath 约束);lark/telegram/satori webhook 鉴权(缺密钥告警、timingSafeEqual、±5min 时效窗、chat_type 修正);onebot wss/webhook 缺 token 告警;qq webhook 改原始字节验签;renderJsx/JSX 转义注入修复;console runtime token 401 死循环。
|
|
488
|
+
- **P0 功能**:sandbox 多 endpoint 解析 + WS 路径隔离;short-url expand(undici opaqueredirect)改 follow;AI 压缩摘要失败不再静默丢历史(熔断恢复生效);console-ui 实时推送事件名归一化 + IndexedDB schema 对齐;process-monitor 热重载不再误判崩溃。
|
|
489
|
+
- **生命周期**:email IMAP 断线重连 + 在飞锁;onebot11/12 start 失败清理;line replyToken TTL + push 兜底;wechat-mp token 过期重试 + MsgId 去重;weixin-ilink buf 推进/防抖写盘/媒体 TTL/QR abort;satori PONG 看门狗;退避自毁修复。
|
|
490
|
+
- **游戏**:text-adventure 终局 restart 复活 + requires 服务端校验;tic-tac-toe PvP 占用/restart/队列清理/TTL;idiom-chain/word-riddle 闲聊不扣失误;别名中间件不劫持普通聊天。
|
|
491
|
+
- **共享库**:schema falsy 默认值/date/tuple/union 修复;database parseCondition Date/未知操作符、sqlite TEXT 往返、query 分派、belongsToMany 方言、migration dry-run;schedule DST 回拨死循环、重复 id 去重、flush 串行化;game-kit fallback 编号/onboarding 提示/尾缀边界/活引用拷贝。
|
|
492
|
+
- **渲染语音**:fetch 全部超时 + 渲染并发闸;sanitizeHtml form 保文本;STT 扩展名映射 + 删临时文件;TTS 未知 provider 报错;emojiCache LRU 负缓存/fontCache style/clearFonts 恢复;register 错误分类收窄。
|
|
493
|
+
|
|
494
|
+
- 9c997b2: 通用 endpoint 管理命令套件:`@zhin.js/adapter` 新增 `createEndpointCommands(spec, defineCommand)`——`<adapter> endpoint list / add <name> key=value... / remove <name>` 三件套,含 kv 解析、`.env` 凭据派生(`<ADAPTER>_<NAME>_<FIELD>`)、yaml 写回保留注释、master 权限门禁(通用 `isEndpointOperator`)、自定义 bindFlow 钩子。QQ 迁移至套件(行为与扫码绑定流程不变);napcat / onebot11 / onebot12 / milky / slack / telegram 接入(字段对齐各自 schema,features 补 @zhin.js/command)。
|
|
495
|
+
- 6cb6152: 统一消息元素通道(UNI-Channel)落地:
|
|
496
|
+
|
|
497
|
+
- **入站契约**:`IncomingMessage.segments`(canonical Segment[],与 content 纯文本视图同源双轨),Message 透传;AI 兜底链路经 `collectSegmentMedia` 把图片/语音/视频/文件 MediaRef 写入会话 extra——多模态输入不再丢失。
|
|
498
|
+
- **出站协商**:`normalizeOutboundPayload` 升级全量 canonical 归一(复用 generic-segment-mapper),html→image 按端点 `segments.outboundMedia` 声明降级(base64 直发 / url-or-text / passthrough 自行物化);`MediaRef.kind` 新增 `'file'` 承载平台不透明引用(file_id/resource_id)。
|
|
499
|
+
- **能力声明**:`defineAdapter.segments` policy(outboundMedia / interactive),三道段门禁复活(探测点改 adapters/\*.ts,豁免名单渐进收敛)。
|
|
500
|
+
- **首批迁移**: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 图片不再静默丢图,失败降级文本)。
|
|
501
|
+
|
|
502
|
+
- Updated dependencies [cdf64e7]
|
|
503
|
+
- Updated dependencies [2d0a159]
|
|
504
|
+
- Updated dependencies [5691aba]
|
|
505
|
+
- Updated dependencies [078e3f7]
|
|
506
|
+
- Updated dependencies [50497a5]
|
|
507
|
+
- Updated dependencies [9c997b2]
|
|
508
|
+
- Updated dependencies [09d4f25]
|
|
509
|
+
- Updated dependencies [43485a9]
|
|
510
|
+
- Updated dependencies [f0ec5ab]
|
|
511
|
+
- Updated dependencies [3e925d0]
|
|
512
|
+
- Updated dependencies [fa66c4c]
|
|
513
|
+
- Updated dependencies [fa66c4c]
|
|
514
|
+
- Updated dependencies [6cb6152]
|
|
515
|
+
- @zhin.js/command@1.0.3
|
|
516
|
+
- @zhin.js/agent@1.0.6
|
|
517
|
+
- @zhin.js/plugin-runtime@1.1.1
|
|
518
|
+
- @zhin.js/host-http@1.0.3
|
|
519
|
+
- zhin.js@5.0.1
|
|
520
|
+
- @zhin.js/adapter@1.1.1
|
|
521
|
+
- @zhin.js/core@1.4.1
|
|
522
|
+
|
|
523
|
+
## 6.0.0
|
|
524
|
+
|
|
525
|
+
### Patch Changes
|
|
526
|
+
|
|
527
|
+
- 7db69c1: 命令前缀改为适配器配置项:`MessageDispatcher` 不再硬编码 `/`,默认按消息所属适配器实例 config 的 `commandPrefix` 解析(默认 `''` 无前缀,任意文本按命令匹配),`endpoints[i].commandPrefix` 逐项覆盖;`ImRuntime({ commandPrefix })` 仍可设全局静态前缀。全部 20 个平台适配器 schema 新增 `commandPrefix` 属性。
|
|
528
|
+
|
|
529
|
+
BREAKING(行为变化):未配置时命令不再需要 `/` 前缀——原 `/zt` 写法不再命中,直接发 `zt` 即可;需要斜杠风格的适配器请在配置里显式设 `commandPrefix: '/'`。
|
|
530
|
+
|
|
531
|
+
- 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 同步迁移。
|
|
532
|
+
- Updated dependencies [7db69c1]
|
|
533
|
+
- Updated dependencies [e5c84ed]
|
|
534
|
+
- Updated dependencies [3ea84a0]
|
|
535
|
+
- Updated dependencies [1ddcd70]
|
|
536
|
+
- Updated dependencies [ac9da66]
|
|
537
|
+
- @zhin.js/core@1.4.0
|
|
538
|
+
- @zhin.js/adapter@1.1.0
|
|
539
|
+
- @zhin.js/plugin-runtime@1.1.0
|
|
540
|
+
- @zhin.js/agent@1.0.5
|
|
541
|
+
- @zhin.js/host-http@1.0.2
|
|
542
|
+
- zhin.js@5.0.0
|
|
543
|
+
|
|
544
|
+
## 5.0.3
|
|
545
|
+
|
|
546
|
+
### Patch Changes
|
|
547
|
+
|
|
548
|
+
- cc5c94d: 约定式插件运行时迁移(breaking):插件与适配器由 `usePlugin()` / `extends Adapter` 迁移为 `definePlugin` / `defineAdapter` + `plugin.ts` + 约定目录(`adapters/`、`commands/`、`components/`、`tools/` 等)。
|
|
549
|
+
|
|
550
|
+
- 新增约定式运行时包:`@zhin.js/plugin-runtime`、`@zhin.js/adapter`、`@zhin.js/runtime`、`@zhin.js/host-http`(首版 1.0.0 走 init-publish,不在本 changeset 内 bump)。
|
|
551
|
+
- 全部 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 推迟的连接模式已补齐。
|
|
552
|
+
- 游戏 / 工具 / 服务插件同步迁移到约定目录结构。
|
|
553
|
+
- CLI 增加 plugin-runtime host installer(http/database/outbound/schedule/console 等)。
|
|
554
|
+
|
|
555
|
+
后续加固(同批):
|
|
556
|
+
|
|
557
|
+
- CLI:`zhin runtime start --daemon`(pidfile/崩溃拉起/风暴保护),orphan watchdog 防僵尸进程;legacy `zhin dev` / `zhin start` 已移除(含 `zhin restart`),`zhin stop` 兼容新 daemon。
|
|
558
|
+
- 安全:builtin 工具统一走 `security/policy-facade.ts` 的 `runToolPolicies`(声明式策略表,deny 优先);审计日志 close flush + 背压队列;`splitCompoundCommand` 引号感知、`extractCommandName` 去引号堵绕过。
|
|
559
|
+
- 日志:Logger 双堆栈修复、本地时区、`getLogger` 挂树(`setLevel` 递归生效)、第三方库(log4js/discord)桥接、启动人读总结。
|
|
560
|
+
- 结构:`plugins/games/shared` 迁为 `packages/game-kit`(`@zhin.js/game-kit`);死目录 `plugins/adapters/common` 删除。
|
|
561
|
+
- 脚手架:`create-zhin-app` / `zhin new` / scaffold-wizard 生成物改为 Plugin Runtime 形态(minimal-bot 同构,新配置格式)。
|
|
562
|
+
- Console:endpoint.list 真实名称与 phase、schema:get-all 按 instanceKey 映射、db:\* 接 DatabaseHost。
|
|
563
|
+
|
|
564
|
+
注:按仓库发布惯例(见 1bb345dd2),本次 breaking 迁移统一使用 patch,避免 zhin.js 5.0 级联。
|
|
565
|
+
|
|
566
|
+
- 447f3e2: 迁移缺口修复(legacy 功能对齐):
|
|
567
|
+
|
|
568
|
+
- html 段出站规范化:经 `@zhin.js/html-renderer` 渲染为 image 段(sandbox 豁免、无渲染器时降级文本),修复真实平台 `[object Object]`。
|
|
569
|
+
- 群聊 @ 触发 AI:适配器入站标注 `metadata.mentioned`(icqq/qq/slack/onebot11/onebot12/napcat/milky/discord/telegram/kook/dingtalk/satori),`matchAiTrigger` 补齐 ignorePrefixes/respondToAt/respondToPrivate/keywords(默认值与 legacy 对齐)。
|
|
570
|
+
- im_transcripts 全量流水恢复写入(chat_history 工具可用);群聊旁听上下文回迁。
|
|
571
|
+
- `ai.trigger.timeout/thinkingMessage/errorTemplate` 生效;masters/trusted 角色解析对齐 legacy。
|
|
572
|
+
- `Message.sender` 统一为用户 ID(onebot11/12、napcat、milky 原误传显示名);quote_id 经 metadata 接入 AI 引用上下文。
|
|
573
|
+
|
|
574
|
+
- Updated dependencies [16ec4e8]
|
|
575
|
+
- Updated dependencies [cc5c94d]
|
|
576
|
+
- Updated dependencies [447f3e2]
|
|
577
|
+
- @zhin.js/core@1.3.5
|
|
578
|
+
- @zhin.js/agent@1.0.4
|
|
579
|
+
- @zhin.js/host-http@1.0.1
|
|
580
|
+
- zhin.js@4.1.3
|
|
581
|
+
- @zhin.js/logger@1.0.75
|
|
582
|
+
- @zhin.js/plugin-runtime@1.0.1
|
|
583
|
+
- @zhin.js/adapter@1.0.1
|
|
584
|
+
|
|
585
|
+
## 5.0.2
|
|
586
|
+
|
|
587
|
+
### Patch Changes
|
|
588
|
+
|
|
589
|
+
- 872c583: fix: 代码格式优化
|
|
590
|
+
- Updated dependencies [872c583]
|
|
591
|
+
- Updated dependencies [872c583]
|
|
592
|
+
- @zhin.js/agent@1.0.3
|
|
593
|
+
- @zhin.js/client@2.0.5
|
|
594
|
+
- @zhin.js/contract@1.0.3
|
|
595
|
+
- @zhin.js/host-api@2.0.5
|
|
596
|
+
- @zhin.js/host-router@2.0.3
|
|
597
|
+
- @zhin.js/logger@1.0.74
|
|
598
|
+
- zhin.js@4.1.2
|
|
599
|
+
|
|
600
|
+
## 5.0.1
|
|
601
|
+
|
|
602
|
+
### Patch Changes
|
|
603
|
+
|
|
604
|
+
- 5cc9c03: fix: ai 优化
|
|
605
|
+
- b9b3881: fix: 增加游戏引擎以及部分游戏
|
|
606
|
+
- Updated dependencies [5cc9c03]
|
|
607
|
+
- Updated dependencies [7700903]
|
|
608
|
+
- @zhin.js/logger@1.0.73
|
|
609
|
+
- @zhin.js/client@2.0.4
|
|
610
|
+
- @zhin.js/contract@1.0.2
|
|
611
|
+
- @zhin.js/host-api@2.0.4
|
|
612
|
+
- @zhin.js/host-router@2.0.2
|
|
613
|
+
- zhin.js@4.1.1
|
|
614
|
+
|
|
615
|
+
## 5.0.0
|
|
616
|
+
|
|
617
|
+
### Patch Changes
|
|
618
|
+
|
|
619
|
+
- c4575c9: fix: 输入输出优化,文档优化
|
|
620
|
+
- Updated dependencies [c4575c9]
|
|
621
|
+
- Updated dependencies [c4575c9]
|
|
622
|
+
- @zhin.js/host-router@2.0.1
|
|
623
|
+
- @zhin.js/host-api@2.0.3
|
|
624
|
+
- zhin.js@4.1.0
|
|
625
|
+
- @zhin.js/logger@1.0.72
|
|
626
|
+
|
|
627
|
+
## 4.0.2
|
|
628
|
+
|
|
629
|
+
### Patch Changes
|
|
630
|
+
|
|
631
|
+
- Updated dependencies [384ea11]
|
|
632
|
+
- @zhin.js/host-api@2.0.2
|
|
633
|
+
- zhin.js@4.0.1
|
|
634
|
+
|
|
635
|
+
## 4.0.1
|
|
636
|
+
|
|
637
|
+
### Patch Changes
|
|
638
|
+
|
|
639
|
+
- Updated dependencies [93e58d9]
|
|
640
|
+
- Updated dependencies [ae5239c]
|
|
641
|
+
- @zhin.js/host-api@2.0.1
|
|
642
|
+
- zhin.js@4.0.1
|
|
643
|
+
- @zhin.js/host-router@2.0.0
|
|
644
|
+
|
|
645
|
+
## 4.0.0
|
|
646
|
+
|
|
647
|
+
### Patch Changes
|
|
648
|
+
|
|
649
|
+
- zhin.js@3.0.0
|
|
650
|
+
- @zhin.js/host-api@2.0.0
|
|
651
|
+
- @zhin.js/host-router@2.0.0
|
|
652
|
+
|
|
653
|
+
## 3.0.1
|
|
654
|
+
|
|
655
|
+
### Patch Changes
|
|
656
|
+
|
|
657
|
+
- d8def69: fix: 性能优化
|
|
658
|
+
- 2ef4896: fix: 更新概念 Bot=>Endpoint,已适配后续更多的业务场景;统一角色权限
|
|
659
|
+
- Updated dependencies [d8def69]
|
|
660
|
+
- Updated dependencies [2ef4896]
|
|
661
|
+
- @zhin.js/host-router@1.0.1
|
|
662
|
+
- @zhin.js/host-api@1.0.1
|
|
663
|
+
- zhin.js@2.0.1
|
|
664
|
+
- @zhin.js/logger@0.1.71
|
|
665
|
+
- @zhin.js/client@2.0.3
|
|
666
|
+
|
|
667
|
+
## 3.0.0
|
|
668
|
+
|
|
669
|
+
### Patch Changes
|
|
670
|
+
|
|
671
|
+
- Updated dependencies [65f4b0a]
|
|
672
|
+
- @zhin.js/host-api@1.0.0
|
|
673
|
+
- zhin.js@2.0.0
|
|
674
|
+
- @zhin.js/host-router@1.0.0
|
|
675
|
+
|
|
676
|
+
## 2.0.11
|
|
677
|
+
|
|
678
|
+
### Patch Changes
|
|
679
|
+
|
|
680
|
+
- Updated dependencies [d8547d2]
|
|
681
|
+
- zhin.js@1.0.92
|
|
682
|
+
- @zhin.js/host-router@0.0.3
|
|
683
|
+
|
|
684
|
+
## 2.0.10
|
|
685
|
+
|
|
686
|
+
### Patch Changes
|
|
687
|
+
|
|
688
|
+
- Updated dependencies [3735e96]
|
|
689
|
+
- Updated dependencies [238de62]
|
|
690
|
+
- @zhin.js/host-api@0.0.4
|
|
691
|
+
- zhin.js@1.0.91
|
|
692
|
+
- @zhin.js/host-router@0.0.3
|
|
693
|
+
|
|
694
|
+
## 2.0.9
|
|
695
|
+
|
|
696
|
+
### Patch Changes
|
|
697
|
+
|
|
698
|
+
- c8f8207: fix: 修复内存泄露问题
|
|
699
|
+
- Updated dependencies [c8f8207]
|
|
700
|
+
- @zhin.js/logger@0.1.70
|
|
701
|
+
- @zhin.js/client@2.0.2
|
|
702
|
+
- @zhin.js/contract@1.0.1
|
|
703
|
+
- @zhin.js/host-api@0.0.3
|
|
704
|
+
- @zhin.js/host-router@0.0.3
|
|
705
|
+
- zhin.js@1.0.90
|
|
706
|
+
|
|
707
|
+
## 2.0.8
|
|
708
|
+
|
|
709
|
+
### Patch Changes
|
|
710
|
+
|
|
711
|
+
- c78d2cd: fix: cli 更新,文档更新
|
|
712
|
+
- Updated dependencies [c78d2cd]
|
|
713
|
+
- @zhin.js/client@2.0.1
|
|
714
|
+
- @zhin.js/host-router@0.0.2
|
|
715
|
+
- zhin.js@1.0.89
|
|
716
|
+
- @zhin.js/host-api@0.0.2
|
|
717
|
+
|
|
718
|
+
## 2.0.7
|
|
719
|
+
|
|
720
|
+
### Patch Changes
|
|
721
|
+
|
|
722
|
+
- Updated dependencies [ccb6e24]
|
|
723
|
+
- zhin.js@1.0.88
|
|
724
|
+
|
|
725
|
+
## 2.0.6
|
|
726
|
+
|
|
727
|
+
### Patch Changes
|
|
728
|
+
|
|
729
|
+
- 90d9efd: fix: 处理包名
|
|
730
|
+
- Updated dependencies [90d9efd]
|
|
731
|
+
- @zhin.js/logger@0.1.69
|
|
732
|
+
- zhin.js@1.0.87
|
|
733
|
+
- @zhin.js/host-api@0.0.1
|
|
734
|
+
- @zhin.js/host-router@0.0.1
|
|
735
|
+
|
|
736
|
+
## 2.0.5
|
|
737
|
+
|
|
738
|
+
### Patch Changes
|
|
739
|
+
|
|
740
|
+
- 7e14f8d: fix: 统一发个版,优化一些列安全问题
|
|
741
|
+
- Updated dependencies [7e14f8d]
|
|
742
|
+
- @zhin.js/logger@0.1.68
|
|
743
|
+
- @zhin.js/client@1.1.4
|
|
744
|
+
- zhin.js@1.0.86
|
|
745
|
+
- @zhin.js/console@3.0.5
|
|
746
|
+
- @zhin.js/host-router@1.0.79
|
|
747
|
+
|
|
748
|
+
## 2.0.4
|
|
749
|
+
|
|
750
|
+
### Patch Changes
|
|
751
|
+
|
|
752
|
+
- zhin.js@1.0.85
|
|
753
|
+
- @zhin.js/logger@0.1.67
|
|
754
|
+
- @zhin.js/console@3.0.4
|
|
755
|
+
- @zhin.js/host-router@1.0.78
|
|
756
|
+
|
|
757
|
+
## 2.0.3
|
|
758
|
+
|
|
759
|
+
### Patch Changes
|
|
760
|
+
|
|
761
|
+
- f19d2e0: fix: remove multiple runtime support
|
|
762
|
+
- Updated dependencies [0db9fed]
|
|
763
|
+
- Updated dependencies [f19d2e0]
|
|
764
|
+
- @zhin.js/console@3.0.3
|
|
765
|
+
- zhin.js@1.0.84
|
|
766
|
+
- @zhin.js/logger@0.1.66
|
|
767
|
+
- @zhin.js/client@1.1.3
|
|
768
|
+
- @zhin.js/host-router@1.0.77
|
|
769
|
+
|
|
770
|
+
## 2.0.2
|
|
771
|
+
|
|
772
|
+
### Patch Changes
|
|
773
|
+
|
|
774
|
+
- 775427e: fix: edge 支持
|
|
775
|
+
- Updated dependencies [775427e]
|
|
776
|
+
- @zhin.js/console@3.0.2
|
|
777
|
+
- @zhin.js/host-router@1.0.76
|
|
778
|
+
- @zhin.js/client@1.1.2
|
|
779
|
+
- zhin.js@1.0.83
|
|
780
|
+
- @zhin.js/logger@0.1.65
|
|
781
|
+
|
|
782
|
+
## 2.0.1
|
|
783
|
+
|
|
784
|
+
### Patch Changes
|
|
785
|
+
|
|
786
|
+
- 32049f5: fix: init publish
|
|
787
|
+
- Updated dependencies [32049f5]
|
|
788
|
+
- @zhin.js/console@3.0.1
|
|
789
|
+
- @zhin.js/host-router@1.0.75
|
|
790
|
+
- @zhin.js/logger@0.1.64
|
|
791
|
+
- @zhin.js/client@1.1.1
|
|
792
|
+
- zhin.js@1.0.82
|
|
793
|
+
|
|
794
|
+
## 2.0.0
|
|
795
|
+
|
|
796
|
+
### Patch Changes
|
|
797
|
+
|
|
798
|
+
- Updated dependencies
|
|
799
|
+
- @zhin.js/client@1.1.0
|
|
800
|
+
- @zhin.js/console@3.0.0
|
|
801
|
+
|
|
802
|
+
## 1.0.69
|
|
803
|
+
|
|
804
|
+
### Patch Changes
|
|
805
|
+
|
|
806
|
+
- Updated dependencies [8086ccb]
|
|
807
|
+
- zhin.js@1.0.81
|
|
808
|
+
- @zhin.js/logger@0.1.63
|
|
809
|
+
- @zhin.js/console@2.0.24
|
|
810
|
+
- @zhin.js/host-router@1.0.74
|
|
811
|
+
|
|
3
812
|
## 1.0.68
|
|
4
813
|
|
|
5
814
|
### Patch Changes
|
|
@@ -7,7 +816,7 @@
|
|
|
7
816
|
- zhin.js@1.0.80
|
|
8
817
|
- @zhin.js/logger@0.1.62
|
|
9
818
|
- @zhin.js/console@2.0.23
|
|
10
|
-
- @zhin.js/
|
|
819
|
+
- @zhin.js/host-router@1.0.73
|
|
11
820
|
|
|
12
821
|
## 1.0.67
|
|
13
822
|
|
|
@@ -16,7 +825,7 @@
|
|
|
16
825
|
- zhin.js@1.0.79
|
|
17
826
|
- @zhin.js/logger@0.1.61
|
|
18
827
|
- @zhin.js/console@2.0.22
|
|
19
|
-
- @zhin.js/
|
|
828
|
+
- @zhin.js/host-router@1.0.72
|
|
20
829
|
|
|
21
830
|
## 1.0.66
|
|
22
831
|
|
|
@@ -26,7 +835,7 @@
|
|
|
26
835
|
- @zhin.js/console@2.0.21
|
|
27
836
|
- zhin.js@1.0.78
|
|
28
837
|
- @zhin.js/logger@0.1.60
|
|
29
|
-
- @zhin.js/
|
|
838
|
+
- @zhin.js/host-router@1.0.71
|
|
30
839
|
|
|
31
840
|
## 1.0.65
|
|
32
841
|
|
|
@@ -35,7 +844,7 @@
|
|
|
35
844
|
- zhin.js@1.0.77
|
|
36
845
|
- @zhin.js/logger@0.1.59
|
|
37
846
|
- @zhin.js/console@2.0.20
|
|
38
|
-
- @zhin.js/
|
|
847
|
+
- @zhin.js/host-router@1.0.70
|
|
39
848
|
|
|
40
849
|
## 1.0.64
|
|
41
850
|
|
|
@@ -45,7 +854,7 @@
|
|
|
45
854
|
- zhin.js@1.0.76
|
|
46
855
|
- @zhin.js/logger@0.1.58
|
|
47
856
|
- @zhin.js/console@2.0.19
|
|
48
|
-
- @zhin.js/
|
|
857
|
+
- @zhin.js/host-router@1.0.69
|
|
49
858
|
|
|
50
859
|
## 1.0.63
|
|
51
860
|
|
|
@@ -54,7 +863,7 @@
|
|
|
54
863
|
- zhin.js@1.0.75
|
|
55
864
|
- @zhin.js/logger@0.1.57
|
|
56
865
|
- @zhin.js/console@2.0.18
|
|
57
|
-
- @zhin.js/
|
|
866
|
+
- @zhin.js/host-router@1.0.68
|
|
58
867
|
|
|
59
868
|
## 1.0.62
|
|
60
869
|
|
|
@@ -64,7 +873,7 @@
|
|
|
64
873
|
- zhin.js@1.0.74
|
|
65
874
|
- @zhin.js/logger@0.1.56
|
|
66
875
|
- @zhin.js/console@2.0.17
|
|
67
|
-
- @zhin.js/
|
|
876
|
+
- @zhin.js/host-router@1.0.67
|
|
68
877
|
|
|
69
878
|
## 1.0.61
|
|
70
879
|
|
|
@@ -74,7 +883,7 @@
|
|
|
74
883
|
- zhin.js@1.0.73
|
|
75
884
|
- @zhin.js/logger@0.1.55
|
|
76
885
|
- @zhin.js/console@2.0.16
|
|
77
|
-
- @zhin.js/
|
|
886
|
+
- @zhin.js/host-router@1.0.66
|
|
78
887
|
|
|
79
888
|
## 1.0.60
|
|
80
889
|
|
|
@@ -101,7 +910,7 @@
|
|
|
101
910
|
- @zhin.js/client@1.0.18
|
|
102
911
|
- zhin.js@1.0.72
|
|
103
912
|
- @zhin.js/console@2.0.13
|
|
104
|
-
- @zhin.js/
|
|
913
|
+
- @zhin.js/host-router@1.0.65
|
|
105
914
|
|
|
106
915
|
## 1.0.57
|
|
107
916
|
|
|
@@ -120,7 +929,7 @@
|
|
|
120
929
|
- @zhin.js/client@1.0.17
|
|
121
930
|
- zhin.js@1.0.71
|
|
122
931
|
- @zhin.js/console@2.0.11
|
|
123
|
-
- @zhin.js/
|
|
932
|
+
- @zhin.js/host-router@1.0.64
|
|
124
933
|
|
|
125
934
|
## 1.0.55
|
|
126
935
|
|
|
@@ -129,14 +938,14 @@
|
|
|
129
938
|
- zhin.js@1.0.68
|
|
130
939
|
- @zhin.js/logger@0.1.52
|
|
131
940
|
- @zhin.js/console@2.0.10
|
|
132
|
-
- @zhin.js/
|
|
941
|
+
- @zhin.js/host-router@1.0.63
|
|
133
942
|
|
|
134
943
|
## 1.0.54
|
|
135
944
|
|
|
136
945
|
### Patch Changes
|
|
137
946
|
|
|
138
947
|
- Updated dependencies [0eba6d6]
|
|
139
|
-
- @zhin.js/
|
|
948
|
+
- @zhin.js/host-router@1.0.62
|
|
140
949
|
- zhin.js@1.0.67
|
|
141
950
|
- @zhin.js/logger@0.1.51
|
|
142
951
|
- @zhin.js/console@2.0.9
|
|
@@ -148,7 +957,7 @@
|
|
|
148
957
|
- zhin.js@1.0.66
|
|
149
958
|
- @zhin.js/logger@0.1.50
|
|
150
959
|
- @zhin.js/console@2.0.8
|
|
151
|
-
- @zhin.js/
|
|
960
|
+
- @zhin.js/host-router@1.0.61
|
|
152
961
|
|
|
153
962
|
## 1.0.52
|
|
154
963
|
|
|
@@ -157,7 +966,7 @@
|
|
|
157
966
|
- zhin.js@1.0.65
|
|
158
967
|
- @zhin.js/logger@0.1.49
|
|
159
968
|
- @zhin.js/console@2.0.7
|
|
160
|
-
- @zhin.js/
|
|
969
|
+
- @zhin.js/host-router@1.0.60
|
|
161
970
|
|
|
162
971
|
## 1.0.51
|
|
163
972
|
|
|
@@ -169,7 +978,7 @@
|
|
|
169
978
|
- @zhin.js/client@1.0.16
|
|
170
979
|
- zhin.js@1.0.64
|
|
171
980
|
- @zhin.js/console@2.0.6
|
|
172
|
-
- @zhin.js/
|
|
981
|
+
- @zhin.js/host-router@1.0.59
|
|
173
982
|
|
|
174
983
|
## 1.0.50
|
|
175
984
|
|
|
@@ -178,7 +987,7 @@
|
|
|
178
987
|
- ba30934: fix: web 优化
|
|
179
988
|
- Updated dependencies [ba30934]
|
|
180
989
|
- @zhin.js/console@2.0.5
|
|
181
|
-
- @zhin.js/
|
|
990
|
+
- @zhin.js/host-router@1.0.58
|
|
182
991
|
- zhin.js@1.0.63
|
|
183
992
|
- @zhin.js/logger@0.1.47
|
|
184
993
|
|