@xmoxmo/bncr 0.0.7 → 0.0.8

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 CHANGED
@@ -27,6 +27,14 @@ openclaw plugins enable bncr
27
27
  openclaw gateway restart
28
28
  ```
29
29
 
30
+ ### 升级插件
31
+
32
+ ```bash
33
+ openclaw plugins update @xmoxmo/bncr
34
+ openclaw gateway restart
35
+ ```
36
+
37
+
30
38
  ### Bncr / 无界侧
31
39
 
32
40
  安装:
package/index.ts CHANGED
@@ -1,9 +1,9 @@
1
- import type { OpenClawPluginApi } from "openclaw/plugin-sdk";
2
- import {
3
- type GatewayRequestHandlerOptions,
4
- } from "openclaw/plugin-sdk";
5
- import { BncrConfigSchema } from "./src/core/config-schema.js";
6
- import { createBncrBridge, createBncrChannelPlugin } from "./src/channel.js";
1
+ import type {
2
+ OpenClawPluginApi,
3
+ GatewayRequestHandlerOptions,
4
+ } from "openclaw/plugin-sdk/core";
5
+ import { BncrConfigSchema } from "./src/core/config-schema.ts";
6
+ import { createBncrBridge, createBncrChannelPlugin } from "./src/channel.ts";
7
7
 
8
8
  type BridgeSingleton = ReturnType<typeof createBncrBridge>;
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xmoxmo/bncr",
3
- "version": "0.0.7",
3
+ "version": "0.0.8",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -27,6 +27,9 @@
27
27
  "selfcheck": "node ./scripts/selfcheck.mjs",
28
28
  "test": "node --import ./tests/register-ts-hooks.mjs --test ./tests/*.test.mjs"
29
29
  },
30
+ "dependencies": {
31
+ "openclaw": "2026.3.23-1"
32
+ },
30
33
  "openclaw": {
31
34
  "extensions": [
32
35
  "./index.ts"