@openclaw/zalouser 2026.5.31-beta.3 → 2026.6.1-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/dist/{api-DuEdDnAZ.js → api-WQJ1sj8X.js} +1 -1
- package/dist/api.js +2 -2
- package/dist/{channel-DJW8Mbcz.js → channel-BFn5MZCm.js} +3 -3
- package/dist/channel-plugin-api.js +1 -1
- package/dist/{channel.runtime-B3sTzpEc.js → channel.runtime-CmquHp26.js} +3 -1
- package/dist/{monitor-18U54rGY.js → monitor-DxOj93Pa.js} +1 -1
- package/dist/runtime-api.js +2 -2
- package/npm-shrinkwrap.json +3 -3
- package/package.json +4 -4
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import "./setup-surface-C8VXOMBu.js";
|
|
2
2
|
import "./shared-xBuXIOwv.js";
|
|
3
|
-
import { n as parseZalouserOutboundTarget } from "./channel-
|
|
3
|
+
import { n as parseZalouserOutboundTarget } from "./channel-BFn5MZCm.js";
|
|
4
4
|
import "./security-audit-DhK2UscX.js";
|
|
5
5
|
import { i as listZaloFriendsMatching, n as getZaloUserInfo, s as listZaloGroupsMatching, t as checkZaloAuthenticated } from "./zalo-js-C2Eq5K4i.js";
|
|
6
6
|
import "./channel.setup-BsYmobJ6.js";
|
package/dist/api.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { n as zalouserSetupWizard } from "./setup-surface-C8VXOMBu.js";
|
|
2
2
|
import { n as createZalouserSetupWizardProxy, r as zalouserSetupAdapter } from "./shared-xBuXIOwv.js";
|
|
3
|
-
import { t as zalouserPlugin } from "./channel-
|
|
3
|
+
import { t as zalouserPlugin } from "./channel-BFn5MZCm.js";
|
|
4
4
|
import { n as isZalouserMutableGroupEntry, t as collectZalouserSecurityAuditFindings } from "./security-audit-DhK2UscX.js";
|
|
5
5
|
import { t as zalouserSetupPlugin } from "./channel.setup-BsYmobJ6.js";
|
|
6
|
-
import { t as createZalouserTool } from "./api-
|
|
6
|
+
import { t as createZalouserTool } from "./api-WQJ1sj8X.js";
|
|
7
7
|
export { collectZalouserSecurityAuditFindings, createZalouserSetupWizardProxy, createZalouserTool, isZalouserMutableGroupEntry, zalouserPlugin, zalouserSetupAdapter, zalouserSetupPlugin, zalouserSetupWizard };
|
|
@@ -204,7 +204,7 @@ function resolveZalouserOutboundSessionRoute(params) {
|
|
|
204
204
|
}
|
|
205
205
|
//#endregion
|
|
206
206
|
//#region extensions/zalouser/src/channel.adapters.ts
|
|
207
|
-
const loadZalouserChannelRuntime$1 = createLazyRuntimeModule(() => import("./channel.runtime-
|
|
207
|
+
const loadZalouserChannelRuntime$1 = createLazyRuntimeModule(() => import("./channel.runtime-CmquHp26.js"));
|
|
208
208
|
const ZALOUSER_TEXT_CHUNK_LIMIT = 2e3;
|
|
209
209
|
function resolveZalouserQrProfile(accountId) {
|
|
210
210
|
const normalized = normalizeAccountId(accountId);
|
|
@@ -535,7 +535,7 @@ function collectZalouserStatusIssues(accounts) {
|
|
|
535
535
|
}
|
|
536
536
|
//#endregion
|
|
537
537
|
//#region extensions/zalouser/src/channel.ts
|
|
538
|
-
const loadZalouserChannelRuntime = createLazyRuntimeModule(() => import("./channel.runtime-
|
|
538
|
+
const loadZalouserChannelRuntime = createLazyRuntimeModule(() => import("./channel.runtime-CmquHp26.js"));
|
|
539
539
|
const zalouserSetupWizardProxy = createZalouserSetupWizardProxy(async () => (await import("./setup-surface-C8VXOMBu.js").then((n) => n.t)).zalouserSetupWizard);
|
|
540
540
|
function mapUser(params) {
|
|
541
541
|
return {
|
|
@@ -653,7 +653,7 @@ const zalouserPlugin = createChatChannelPlugin({
|
|
|
653
653
|
setStatus: ctx.setStatus
|
|
654
654
|
});
|
|
655
655
|
ctx.log?.info(`[${account.accountId}] starting zalouser provider${userLabel}`);
|
|
656
|
-
const { monitorZalouserProvider } = await import("./monitor-
|
|
656
|
+
const { monitorZalouserProvider } = await import("./monitor-DxOj93Pa.js");
|
|
657
657
|
return monitorZalouserProvider({
|
|
658
658
|
account,
|
|
659
659
|
config: ctx.cfg,
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { t as zalouserPlugin } from "./channel-
|
|
1
|
+
import { t as zalouserPlugin } from "./channel-BFn5MZCm.js";
|
|
2
2
|
export { zalouserPlugin };
|
|
@@ -6,7 +6,9 @@ import { formatErrorMessage } from "openclaw/plugin-sdk/error-runtime";
|
|
|
6
6
|
//#region extensions/zalouser/src/probe.ts
|
|
7
7
|
async function probeZalouser(profile, timeoutMs) {
|
|
8
8
|
try {
|
|
9
|
-
const user = timeoutMs ? await Promise.race([getZaloUserInfo(profile), new Promise((resolve) =>
|
|
9
|
+
const user = timeoutMs ? await Promise.race([getZaloUserInfo(profile), new Promise((resolve) => {
|
|
10
|
+
setTimeout(() => resolve(null), resolveTimerTimeoutMs(timeoutMs, 1e3, 1e3));
|
|
11
|
+
})]) : await getZaloUserInfo(profile);
|
|
10
12
|
if (!user) return {
|
|
11
13
|
ok: false,
|
|
12
14
|
error: "Not authenticated"
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { a as formatZalouserMessageSidFull, c as findZalouserGroupEntry, l as isZalouserGroupEntryAllowed, o as resolveZalouserMessageSid, r as getZalouserRuntime, s as buildZalouserGroupCandidates } from "./channel-
|
|
1
|
+
import { a as formatZalouserMessageSidFull, c as findZalouserGroupEntry, l as isZalouserGroupEntryAllowed, o as resolveZalouserMessageSid, r as getZalouserRuntime, s as buildZalouserGroupCandidates } from "./channel-BFn5MZCm.js";
|
|
2
2
|
import { o as listZaloGroups, r as listZaloFriends, u as resolveZaloGroupContext, v as startZaloListener } from "./zalo-js-C2Eq5K4i.js";
|
|
3
3
|
import { i as sendMessageZalouser, o as sendSeenZalouser, s as sendTypingZalouser, t as sendDeliveredZalouser } from "./send-_7W21n-G.js";
|
|
4
4
|
import { createDeferred } from "openclaw/plugin-sdk/extension-shared";
|
package/dist/runtime-api.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { n as zalouserSetupWizard } from "./setup-surface-C8VXOMBu.js";
|
|
2
2
|
import { n as createZalouserSetupWizardProxy, r as zalouserSetupAdapter } from "./shared-xBuXIOwv.js";
|
|
3
|
-
import { i as setZalouserRuntime, t as zalouserPlugin } from "./channel-
|
|
3
|
+
import { i as setZalouserRuntime, t as zalouserPlugin } from "./channel-BFn5MZCm.js";
|
|
4
4
|
import { n as isZalouserMutableGroupEntry, t as collectZalouserSecurityAuditFindings } from "./security-audit-DhK2UscX.js";
|
|
5
5
|
import { t as zalouserSetupPlugin } from "./channel.setup-BsYmobJ6.js";
|
|
6
|
-
import { t as createZalouserTool } from "./api-
|
|
6
|
+
import { t as createZalouserTool } from "./api-WQJ1sj8X.js";
|
|
7
7
|
import { createChannelMessageReplyPipeline } from "openclaw/plugin-sdk/channel-outbound";
|
|
8
8
|
import { buildBaseAccountStatusSnapshot } from "openclaw/plugin-sdk/status-helpers";
|
|
9
9
|
import { formatAllowFromLowercase, mergeAllowlist, summarizeMapping } from "openclaw/plugin-sdk/allow-from";
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openclaw/zalouser",
|
|
3
|
-
"version": "2026.
|
|
3
|
+
"version": "2026.6.1-beta.1",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@openclaw/zalouser",
|
|
9
|
-
"version": "2026.
|
|
9
|
+
"version": "2026.6.1-beta.1",
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"typebox": "1.1.39",
|
|
12
12
|
"zca-js": "2.1.2",
|
|
13
13
|
"zod": "4.4.3"
|
|
14
14
|
},
|
|
15
15
|
"peerDependencies": {
|
|
16
|
-
"openclaw": ">=2026.
|
|
16
|
+
"openclaw": ">=2026.6.1-beta.1"
|
|
17
17
|
},
|
|
18
18
|
"peerDependenciesMeta": {
|
|
19
19
|
"openclaw": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openclaw/zalouser",
|
|
3
|
-
"version": "2026.
|
|
3
|
+
"version": "2026.6.1-beta.1",
|
|
4
4
|
"description": "OpenClaw Zalo Personal Account plugin via native zca-js integration.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"zod": "4.4.3"
|
|
14
14
|
},
|
|
15
15
|
"peerDependencies": {
|
|
16
|
-
"openclaw": ">=2026.
|
|
16
|
+
"openclaw": ">=2026.6.1-beta.1"
|
|
17
17
|
},
|
|
18
18
|
"peerDependenciesMeta": {
|
|
19
19
|
"openclaw": {
|
|
@@ -50,10 +50,10 @@
|
|
|
50
50
|
"minHostVersion": ">=2026.4.10"
|
|
51
51
|
},
|
|
52
52
|
"compat": {
|
|
53
|
-
"pluginApi": ">=2026.
|
|
53
|
+
"pluginApi": ">=2026.6.1-beta.1"
|
|
54
54
|
},
|
|
55
55
|
"build": {
|
|
56
|
-
"openclawVersion": "2026.
|
|
56
|
+
"openclawVersion": "2026.6.1-beta.1"
|
|
57
57
|
},
|
|
58
58
|
"release": {
|
|
59
59
|
"publishToClawHub": true,
|