diff --git a/extensions/feishu/src/channel-runtime-api.ts b/extensions/feishu/src/channel-runtime-api.ts index f4ebb11453..4773ce3bd7 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 3c7e5b9332..ba80ad2881 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";