@wu529778790/open-im 1.11.3-beta.0 → 1.11.3-beta.1

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 (2) hide show
  1. package/dist/setup.js +2 -2
  2. package/package.json +1 -1
package/dist/setup.js CHANGED
@@ -321,7 +321,7 @@ export async function runInteractiveSetup() {
321
321
  },
322
322
  {
323
323
  title: "ClawBot 微信 iLink (需要 API Token)" +
324
- (!!existing?.platforms?.clawbot?.apiToken ? " ✓已配置" : ""),
324
+ (existing?.platforms?.clawbot?.apiToken ? " ✓已配置" : ""),
325
325
  value: "clawbot",
326
326
  },
327
327
  { title: "配置多个平台", value: "multi" },
@@ -346,7 +346,7 @@ export async function runInteractiveSetup() {
346
346
  { title: "企业微信 (WeWork)" + (hasWw ? " ✓已配置" : ""), value: "wework", selected: hasWw },
347
347
  { title: "钉钉 (DingTalk)" + (hasDt ? " ✓已配置" : ""), value: "dingtalk", selected: hasDt },
348
348
  { title: "WorkBuddy 微信客服 (WeChat KF)" + (hasWc ? " ✓已配置" : ""), value: "workbuddy", selected: hasWc },
349
- { title: "ClawBot 微信 iLink" + (!!existing?.platforms?.clawbot?.apiToken ? " ✓已配置" : ""), value: "clawbot" },
349
+ { title: "ClawBot 微信 iLink" + (existing?.platforms?.clawbot?.apiToken ? " ✓已配置" : ""), value: "clawbot" },
350
350
  ],
351
351
  }, { onCancel });
352
352
  if (!multiResp.platforms || multiResp.platforms.length === 0) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wu529778790/open-im",
3
- "version": "1.11.3-beta.0",
3
+ "version": "1.11.3-beta.1",
4
4
  "description": "Your AI coding assistant, in every chat app. Multi-platform IM bridge for Claude Code, Codex, and CodeBuddy.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",