@openclaw/zalouser 2026.5.1-beta.2 → 2026.5.2-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.
- package/openclaw.plugin.json +5 -0
- package/package.json +4 -4
- package/src/channel.adapters.ts +1 -0
package/openclaw.plugin.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openclaw/zalouser",
|
|
3
|
-
"version": "2026.5.
|
|
3
|
+
"version": "2026.5.2-beta.1",
|
|
4
4
|
"description": "OpenClaw Zalo Personal Account plugin via native zca-js integration",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"openclaw": "workspace:*"
|
|
17
17
|
},
|
|
18
18
|
"peerDependencies": {
|
|
19
|
-
"openclaw": ">=2026.
|
|
19
|
+
"openclaw": ">=2026.5.2-beta.1"
|
|
20
20
|
},
|
|
21
21
|
"peerDependenciesMeta": {
|
|
22
22
|
"openclaw": {
|
|
@@ -53,10 +53,10 @@
|
|
|
53
53
|
"minHostVersion": ">=2026.4.10"
|
|
54
54
|
},
|
|
55
55
|
"compat": {
|
|
56
|
-
"pluginApi": ">=2026.
|
|
56
|
+
"pluginApi": ">=2026.5.2-beta.1"
|
|
57
57
|
},
|
|
58
58
|
"build": {
|
|
59
|
-
"openclawVersion": "2026.5.
|
|
59
|
+
"openclawVersion": "2026.5.2-beta.1"
|
|
60
60
|
},
|
|
61
61
|
"release": {
|
|
62
62
|
"publishToClawHub": true,
|
package/src/channel.adapters.ts
CHANGED
|
@@ -370,6 +370,7 @@ export const zalouserOutboundAdapter = {
|
|
|
370
370
|
};
|
|
371
371
|
|
|
372
372
|
export const zalouserMessagingAdapter = {
|
|
373
|
+
targetPrefixes: ["zalouser", "zlu"],
|
|
373
374
|
normalizeTarget: (raw: string) => normalizeZalouserTarget(raw),
|
|
374
375
|
resolveOutboundSessionRoute: (
|
|
375
376
|
params: Parameters<typeof resolveZalouserOutboundSessionRoute>[0],
|