refactor(feishu): split comment dispatcher seam

This commit is contained in:
Vincent Koc 2026-04-03 21:43:23 +09:00
parent 349d3e8289
commit 851de3554e
2 changed files with 9 additions and 3 deletions

View File

@ -0,0 +1,6 @@
export {
createReplyPrefixContext,
type ClawdbotConfig,
type ReplyPayload,
type RuntimeEnv,
} from "openclaw/plugin-sdk/feishu";

View File

@ -1,12 +1,12 @@
import { resolveSendableOutboundReplyParts } from "openclaw/plugin-sdk/reply-payload";
import { resolveFeishuRuntimeAccount } from "./accounts.js";
import { createFeishuClient } from "./client.js";
import {
createReplyPrefixContext,
type ClawdbotConfig,
type ReplyPayload,
type RuntimeEnv,
} from "../runtime-api.js";
import { resolveFeishuRuntimeAccount } from "./accounts.js";
import { createFeishuClient } from "./client.js";
} from "./comment-dispatcher-runtime-api.js";
import type { CommentFileType } from "./comment-target.js";
import { deliverCommentThreadText } from "./drive.js";
import { getFeishuRuntime } from "./runtime.js";