@xmoxmo/bncr 0.2.5 → 0.2.6
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/README.md +2 -2
- package/package.json +1 -1
- package/src/channel.ts +762 -209
- package/src/core/connection-reachability.ts +41 -14
- package/src/core/diagnostics.ts +7 -2
- package/src/core/downlink-health.ts +7 -2
- package/src/core/outbox-entry-builders.ts +3 -2
- package/src/core/policy.ts +9 -0
- package/src/core/register-trace.ts +6 -1
- package/src/core/status.ts +7 -2
- package/src/core/types.ts +1 -0
- package/src/messaging/inbound/commands.ts +318 -75
- package/src/messaging/inbound/dispatch.ts +372 -114
- package/src/messaging/inbound/parse.ts +8 -0
- package/src/messaging/inbound/session-label.ts +115 -0
- package/src/messaging/outbound/diagnostics.ts +16 -0
- package/src/messaging/outbound/media.ts +3 -1
- package/src/messaging/outbound/queue-selectors.ts +7 -2
- package/src/messaging/outbound/reasons.ts +4 -0
- package/src/messaging/outbound/reply-enqueue.ts +2 -2
- package/src/messaging/outbound/reply-target-policy.ts +13 -0
- package/src/messaging/outbound/retry-policy.ts +12 -3
- package/src/messaging/outbound/send.ts +6 -0
package/README.md
CHANGED
|
@@ -39,7 +39,7 @@ openclaw gateway restart
|
|
|
39
39
|
> 如果你是从精确版本升级,或本地安装记录仍钉在旧版本,也可以显式执行:
|
|
40
40
|
>
|
|
41
41
|
> ```bash
|
|
42
|
-
> openclaw plugins install @xmoxmo/bncr@
|
|
42
|
+
> openclaw plugins install @xmoxmo/bncr@latest
|
|
43
43
|
> openclaw gateway restart
|
|
44
44
|
> ```
|
|
45
45
|
|
|
@@ -167,7 +167,7 @@ openclaw gateway call message.action --params '{
|
|
|
167
167
|
"accountId": "Primary",
|
|
168
168
|
"idempotencyKey": "bncr-media-demo-1",
|
|
169
169
|
"params": {
|
|
170
|
-
"to": "Bncr:tgBot:-
|
|
170
|
+
"to": "Bncr:tgBot:-1001:10001",
|
|
171
171
|
"caption": "图片发送测试",
|
|
172
172
|
"path": "/root/.openclaw/workspace/tmp/demo.png"
|
|
173
173
|
}
|