diff --git a/extensions/feishu/src/channel-runtime-api.ts b/extensions/feishu/src/channel-runtime-api.ts index f4ebb114533..4773ce3bd7f 100644 --- a/extensions/feishu/src/channel-runtime-api.ts +++ b/extensions/feishu/src/channel-runtime-api.ts @@ -12,4 +12,4 @@ export { buildProbeChannelStatusSummary, PAIRING_APPROVED_MESSAGE, } from "openclaw/plugin-sdk/channel-status"; -export { chunkTextForOutbound, createDefaultChannelRuntimeState } from "openclaw/plugin-sdk/feishu"; +export { chunkTextForOutbound, createDefaultChannelRuntimeState } from "../runtime-api.js"; diff --git a/extensions/feishu/src/outbound-runtime-api.ts b/extensions/feishu/src/outbound-runtime-api.ts index 3c7e5b93327..ba80ad28810 100644 --- a/extensions/feishu/src/outbound-runtime-api.ts +++ b/extensions/feishu/src/outbound-runtime-api.ts @@ -1,2 +1,2 @@ -export { chunkTextForOutbound } from "openclaw/plugin-sdk/feishu"; +export { chunkTextForOutbound } from "../runtime-api.js"; export type { ChannelOutboundAdapter } from "../runtime-api.js";