fix(zalo): break account helper cycles

This commit is contained in:
Ayaan Zaidi 2026-03-18 12:43:24 +05:30
parent 4e265fe7d6
commit 6802a768cf
No known key found for this signature in database
2 changed files with 4 additions and 2 deletions

View File

@ -1,6 +1,7 @@
import { createAccountListHelpers } from "openclaw/plugin-sdk/account-helpers";
import { DEFAULT_ACCOUNT_ID, normalizeAccountId } from "openclaw/plugin-sdk/account-id";
import type { OpenClawConfig } from "./runtime-api.js";
import { resolveZaloToken } from "./token.js";
import { createAccountListHelpers, type OpenClawConfig } from "./runtime-api.js";
import type { ResolvedZaloAccount, ZaloAccountConfig, ZaloConfig } from "./types.js";
export type { ResolvedZaloAccount };

View File

@ -1,5 +1,6 @@
import { createAccountListHelpers } from "openclaw/plugin-sdk/account-helpers";
import { DEFAULT_ACCOUNT_ID, normalizeAccountId } from "openclaw/plugin-sdk/account-id";
import { createAccountListHelpers, type OpenClawConfig } from "../runtime-api.js";
import type { OpenClawConfig } from "../runtime-api.js";
import type { ResolvedZalouserAccount, ZalouserAccountConfig, ZalouserConfig } from "./types.js";
import { checkZaloAuthenticated, getZaloUserInfo } from "./zalo-js.js";