@decentchat/decentclaw 0.1.6 → 0.1.7
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/openclaw.plugin.json +1 -1
- package/package.json +1 -1
- package/setup-entry.ts +4 -2
package/openclaw.plugin.json
CHANGED
package/package.json
CHANGED
package/setup-entry.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
import { defineSetupPluginEntry } from 'openclaw/plugin-sdk/core';
|
|
2
1
|
import { decentChatPlugin } from './src/channel.js';
|
|
3
2
|
|
|
4
|
-
|
|
3
|
+
// Setup entry for `openclaw configure`. OpenClaw checks that
|
|
4
|
+
// `export.plugin.id` matches the plugin id ("decentclaw"), but the channel
|
|
5
|
+
// plugin uses the channel id ("decentchat"). Override it here.
|
|
6
|
+
export default { plugin: { ...decentChatPlugin, id: 'decentclaw' } };
|