@alfe.ai/openclaw-chat 0.0.26 → 0.0.28

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/plugin2.cjs CHANGED
@@ -814,10 +814,7 @@ const plugin = {
814
814
  const alfeChannel = createAlfeChannelPlugin();
815
815
  api.registerChannel(alfeChannel);
816
816
  log.info(`Registered channel: ${alfeChannel.id}`);
817
- if (api.registrationMode === "cli-metadata") {
818
- log.debug("CLI metadata mode — skipping persistent resource init");
819
- return;
820
- }
817
+ if (api.registrationMode && api.registrationMode !== "full") return;
821
818
  globalThis.__alfeChatPluginActivated = true;
822
819
  if (!alreadyActivated) {
823
820
  log.info("Chat plugin registering...");
package/dist/plugin2.js CHANGED
@@ -817,10 +817,7 @@ const plugin = {
817
817
  const alfeChannel = createAlfeChannelPlugin();
818
818
  api.registerChannel(alfeChannel);
819
819
  log.info(`Registered channel: ${alfeChannel.id}`);
820
- if (api.registrationMode === "cli-metadata") {
821
- log.debug("CLI metadata mode — skipping persistent resource init");
822
- return;
823
- }
820
+ if (api.registrationMode && api.registrationMode !== "full") return;
824
821
  globalThis.__alfeChatPluginActivated = true;
825
822
  if (!alreadyActivated) {
826
823
  log.info("Chat plugin registering...");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alfe.ai/openclaw-chat",
3
- "version": "0.0.26",
3
+ "version": "0.0.28",
4
4
  "description": "OpenClaw chat plugin for Alfe — web widget and mobile app channels",
5
5
  "type": "module",
6
6
  "main": "./dist/plugin.js",
@@ -27,7 +27,7 @@
27
27
  "openclaw.plugin.json"
28
28
  ],
29
29
  "dependencies": {
30
- "@alfe.ai/agent-api-client": "^0.0.9",
30
+ "@alfe.ai/agent-api-client": "^0.0.10",
31
31
  "@alfe.ai/chat": "^0.0.8",
32
32
  "@alfe.ai/config": "^0.0.8"
33
33
  },