diff --git a/src/agents/pi-embedded-runner/run/attempt.spawn-workspace.test-support.ts b/src/agents/pi-embedded-runner/run/attempt.spawn-workspace.test-support.ts index 20f53228513..dd55bd52a1a 100644 --- a/src/agents/pi-embedded-runner/run/attempt.spawn-workspace.test-support.ts +++ b/src/agents/pi-embedded-runner/run/attempt.spawn-workspace.test-support.ts @@ -18,7 +18,7 @@ import { normalizeOptionalLowercaseString, } from "../../../shared/string-coerce.js"; import type { EmbeddedContextFile } from "../../pi-embedded-helpers.js"; -import type { MessagingToolSend } from "../../pi-embedded-messaging.js"; +import type { MessagingToolSend } from "../../pi-embedded-messaging.types.js"; import type { WorkspaceBootstrapFile } from "../../workspace.js"; type SubscribeEmbeddedPiSessionFn = diff --git a/src/auto-reply/reply/agent-runner-payloads.ts b/src/auto-reply/reply/agent-runner-payloads.ts index 646acad7fdb..51d1626e954 100644 --- a/src/auto-reply/reply/agent-runner-payloads.ts +++ b/src/auto-reply/reply/agent-runner-payloads.ts @@ -1,5 +1,5 @@ import { resolveSendableOutboundReplyParts } from "openclaw/plugin-sdk/reply-payload"; -import type { MessagingToolSend } from "../../agents/pi-embedded-runner.js"; +import type { MessagingToolSend } from "../../agents/pi-embedded-messaging.types.js"; import type { ReplyToMode } from "../../config/types.js"; import { logVerbose } from "../../globals.js"; import { stripHeartbeatToken } from "../heartbeat.js"; diff --git a/src/auto-reply/reply/followup-delivery.ts b/src/auto-reply/reply/followup-delivery.ts index 0100335fe99..bce4f54740d 100644 --- a/src/auto-reply/reply/followup-delivery.ts +++ b/src/auto-reply/reply/followup-delivery.ts @@ -1,4 +1,4 @@ -import type { MessagingToolSend } from "../../agents/pi-embedded-runner.js"; +import type { MessagingToolSend } from "../../agents/pi-embedded-messaging.types.js"; import type { OpenClawConfig } from "../../config/types.openclaw.js"; import { stripHeartbeatToken } from "../heartbeat.js"; import type { OriginatingChannelType } from "../templating.js"; diff --git a/src/auto-reply/reply/reply-payloads-dedupe.ts b/src/auto-reply/reply/reply-payloads-dedupe.ts index e17fd8f1a42..e77e798c7ab 100644 --- a/src/auto-reply/reply/reply-payloads-dedupe.ts +++ b/src/auto-reply/reply/reply-payloads-dedupe.ts @@ -1,5 +1,5 @@ import { isMessagingToolDuplicate } from "../../agents/pi-embedded-helpers.js"; -import type { MessagingToolSend } from "../../agents/pi-embedded-runner.js"; +import type { MessagingToolSend } from "../../agents/pi-embedded-messaging.types.js"; import { getChannelPlugin } from "../../channels/plugins/index.js"; import { normalizeAnyChannelId } from "../../channels/registry.js"; import { normalizeTargetForProvider } from "../../infra/outbound/target-normalization.js";