diff --git a/extensions/zalouser/src/channel.ts b/extensions/zalouser/src/channel.ts index 9c71b1481..d3178219a 100644 --- a/extensions/zalouser/src/channel.ts +++ b/extensions/zalouser/src/channel.ts @@ -16,8 +16,8 @@ import { import { zalouserOnboardingAdapter } from "./onboarding.js"; import { sendMessageZalouser } from "./send.js"; import { checkZcaInstalled, parseJsonOutput, runZca, runZcaInteractive } from "./zca.js"; -import { import { missingTargetError } from "../../../src/infra/outbound/target-errors.js"; +import { DEFAULT_ACCOUNT_ID, type CoreConfig, type ZalouserConfig, diff --git a/src/infra/outbound/target-resolver.test.ts b/src/infra/outbound/target-resolver.test.ts index e9bcc6ade..6a7d6592f 100644 --- a/src/infra/outbound/target-resolver.test.ts +++ b/src/infra/outbound/target-resolver.test.ts @@ -12,6 +12,7 @@ const mocks = vi.hoisted(() => ({ vi.mock("../../channels/plugins/index.js", () => ({ getChannelPlugin: (...args: unknown[]) => mocks.getChannelPlugin(...args), + normalizeChannelId: (value: string) => value, })); describe("resolveMessagingTarget (directory fallback)", () => {