refactor(core): extract shared dedup helpers

This commit is contained in:
Peter Steinberger
2026-03-07 10:40:49 +00:00
parent 14c61bb33f
commit 3c71e2bd48
114 changed files with 3400 additions and 2040 deletions

View File

@@ -12,6 +12,7 @@ export {
} from "../channels/plugins/channel-config.js";
export {
deleteAccountFromConfigSection,
clearAccountEntryFields,
setAccountEnabledInConfigSection,
} from "../channels/plugins/config-helpers.js";
export { buildChannelConfigSchema } from "../channels/plugins/config-schema.js";
@@ -89,4 +90,9 @@ export {
formatTextWithAttachmentLinks,
resolveOutboundMediaUrls,
} from "./reply-payload.js";
export { dispatchInboundReplyWithBase } from "./inbound-reply-dispatch.js";
export { createLoggerBackedRuntime } from "./runtime.js";
export {
buildBaseChannelStatusSummary,
buildRuntimeAccountStatusSnapshot,
} from "./status-helpers.js";