@eclaw/openclaw-channel 1.0.11 → 1.0.13

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/dist/gateway.js CHANGED
@@ -88,10 +88,7 @@ export async function startAccount(ctx) {
88
88
  console.log(`[E-Claw] Bound entity ${account.entityId}, publicCode: ${bindData.publicCode}`);
89
89
  }
90
90
  else {
91
- console.log(`[E-Claw] Entity ${account.entityId} already bound`);
92
- const bindData = await client.bindEntity(account.entityId, account.botName);
93
- console.log(`[E-Claw] Retrieved credentials for entity ${account.entityId}`);
94
- void bindData;
91
+ console.log(`[E-Claw] Entity ${account.entityId} already bound, skipping bind`);
95
92
  }
96
93
  console.log(`[E-Claw] Account ${accountId} ready!`);
97
94
  }
package/dist/index.js CHANGED
@@ -41,7 +41,7 @@ function parseBody(req) {
41
41
  }
42
42
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
43
43
  const plugin = {
44
- id: 'eclaw',
44
+ id: 'openclaw-channel',
45
45
  name: 'E-Claw',
46
46
  description: 'E-Claw AI chat platform channel plugin',
47
47
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
@@ -1,5 +1,5 @@
1
1
  {
2
- "id": "eclaw",
2
+ "id": "openclaw-channel",
3
3
  "name": "E-Claw",
4
4
  "version": "1.0.0",
5
5
  "description": "E-Claw AI chat platform channel for OpenClaw",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eclaw/openclaw-channel",
3
- "version": "1.0.11",
3
+ "version": "1.0.13",
4
4
  "description": "E-Claw channel plugin for OpenClaw — AI chat platform for live wallpaper entities",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",