@alfe.ai/openclaw-chat 0.9.10 → 0.9.12
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 +1 -1
- package/dist/plugin2.js +1 -1
- package/package.json +2 -2
package/dist/plugin2.cjs
CHANGED
|
@@ -3055,7 +3055,7 @@ async function handleAgentRequest(request, log) {
|
|
|
3055
3055
|
if (!identitySynced) log.debug("Local AI proxy identity attribution unavailable");
|
|
3056
3056
|
const channelMode = isA2A ? "a2a" : extractChannelMode(conversationId ?? "", clientType ?? "chat");
|
|
3057
3057
|
const inboundHookRouting = buildInboundHookRouting(identityProvider, channelMode, conversationId);
|
|
3058
|
-
const channelLabel = channelMode === "sms" ? "SMS" : channelMode === "whatsapp" ? "WhatsApp" : channelMode === "a2a" ? "Agent" : "Alfe";
|
|
3058
|
+
const channelLabel = channelMode === "mobile" ? "Mobile" : channelMode === "sms" ? "SMS" : channelMode === "whatsapp" ? "WhatsApp" : channelMode === "a2a" ? "Agent" : "Alfe";
|
|
3059
3059
|
const shortConvId = conversationId?.slice(-8) ?? "";
|
|
3060
3060
|
const userLabel = displayName ?? userId ?? senderId;
|
|
3061
3061
|
const conversationLabel = conversationType === "group" ? shortConvId ? `[${channelLabel}] Group (${shortConvId})` : `[${channelLabel}] Group` : shortConvId ? `[${channelLabel}] ${userLabel} (${shortConvId})` : `[${channelLabel}] ${userLabel}`;
|
package/dist/plugin2.js
CHANGED
|
@@ -3055,7 +3055,7 @@ async function handleAgentRequest(request, log) {
|
|
|
3055
3055
|
if (!identitySynced) log.debug("Local AI proxy identity attribution unavailable");
|
|
3056
3056
|
const channelMode = isA2A ? "a2a" : extractChannelMode(conversationId ?? "", clientType ?? "chat");
|
|
3057
3057
|
const inboundHookRouting = buildInboundHookRouting(identityProvider, channelMode, conversationId);
|
|
3058
|
-
const channelLabel = channelMode === "sms" ? "SMS" : channelMode === "whatsapp" ? "WhatsApp" : channelMode === "a2a" ? "Agent" : "Alfe";
|
|
3058
|
+
const channelLabel = channelMode === "mobile" ? "Mobile" : channelMode === "sms" ? "SMS" : channelMode === "whatsapp" ? "WhatsApp" : channelMode === "a2a" ? "Agent" : "Alfe";
|
|
3059
3059
|
const shortConvId = conversationId?.slice(-8) ?? "";
|
|
3060
3060
|
const userLabel = displayName ?? userId ?? senderId;
|
|
3061
3061
|
const conversationLabel = conversationType === "group" ? shortConvId ? `[${channelLabel}] Group (${shortConvId})` : `[${channelLabel}] Group` : shortConvId ? `[${channelLabel}] ${userLabel} (${shortConvId})` : `[${channelLabel}] ${userLabel}`;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alfe.ai/openclaw-chat",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.12",
|
|
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.
|
|
30
|
+
"@alfe.ai/agent-api-client": "^0.16.0",
|
|
31
31
|
"@alfe.ai/chat": "^0.0.18",
|
|
32
32
|
"@alfe.ai/config": "^0.4.1",
|
|
33
33
|
"@alfe.ai/openclaw-plugin-kit": "0.2.0"
|