mirror of https://github.com/openclaw/openclaw.git
refactor(feishu): split outbound runtime seam
This commit is contained in:
parent
ee39ec29d1
commit
e4cc8cd975
|
|
@ -0,0 +1,2 @@
|
|||
export { chunkTextForOutbound } from "openclaw/plugin-sdk/feishu";
|
||||
export type { ChannelOutboundAdapter } from "../runtime-api.js";
|
||||
|
|
@ -1,12 +1,12 @@
|
|||
import fs from "fs";
|
||||
import path from "path";
|
||||
import { createAttachedChannelResultAdapter } from "openclaw/plugin-sdk/channel-send-result";
|
||||
import { chunkTextForOutbound, type ChannelOutboundAdapter } from "../runtime-api.js";
|
||||
import { resolveFeishuAccount } from "./accounts.js";
|
||||
import { createFeishuClient } from "./client.js";
|
||||
import { parseFeishuCommentTarget } from "./comment-target.js";
|
||||
import { replyComment } from "./drive.js";
|
||||
import { sendMediaFeishu } from "./media.js";
|
||||
import { chunkTextForOutbound, type ChannelOutboundAdapter } from "./outbound-runtime-api.js";
|
||||
import { getFeishuRuntime } from "./runtime.js";
|
||||
import { sendMarkdownCardFeishu, sendMessageFeishu, sendStructuredCardFeishu } from "./send.js";
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue