@marshulll/wecom-dual 0.1.1 → 0.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.
- package/README.en.md +1 -1
- package/README.md +1 -1
- package/README.zh.md +1 -1
- package/docs/INSTALL.md +1 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
- package/wecom/index.ts +2 -2
- package/wecom/openclaw.plugin.json +1 -1
- package/wecom/package.json +1 -1
package/README.en.md
CHANGED
|
@@ -18,7 +18,7 @@ OpenClaw WeCom plugin supporting **Bot API mode** and **Internal App mode** with
|
|
|
18
18
|
### npm
|
|
19
19
|
```bash
|
|
20
20
|
openclaw plugins install @marshulll/wecom-dual
|
|
21
|
-
openclaw plugins enable wecom
|
|
21
|
+
openclaw plugins enable wecom-dual
|
|
22
22
|
openclaw gateway restart
|
|
23
23
|
```
|
|
24
24
|
|
package/README.md
CHANGED
package/README.zh.md
CHANGED
package/docs/INSTALL.md
CHANGED
package/openclaw.plugin.json
CHANGED
package/package.json
CHANGED
package/wecom/index.ts
CHANGED
|
@@ -9,8 +9,8 @@ import { setWecomRuntime } from "./src/runtime.js";
|
|
|
9
9
|
import { wecomPlugin } from "./src/channel.js";
|
|
10
10
|
|
|
11
11
|
const plugin = {
|
|
12
|
-
id: "wecom",
|
|
13
|
-
name: "WeCom",
|
|
12
|
+
id: "wecom-dual",
|
|
13
|
+
name: "WeCom Dual",
|
|
14
14
|
description: "OpenClaw WeCom channel plugin (bot API + internal app)",
|
|
15
15
|
configSchema: emptyPluginConfigSchema(),
|
|
16
16
|
register(api: ClawdbotPluginApi) {
|