refactor: reuse account status helpers in bundled channels

This commit is contained in:
Peter Steinberger
2026-03-22 20:54:11 +00:00
parent 87722d6327
commit 2a1acec6a7
5 changed files with 39 additions and 30 deletions

View File

@@ -42,7 +42,10 @@ export {
export { IMessageConfigSchema } from "../config/zod-schema.providers-core.js";
export { resolveChannelMediaMaxBytes } from "../channels/plugins/media-limits.js";
export { collectStatusIssuesFromLastError } from "./status-helpers.js";
export {
buildComputedAccountStatusSnapshot,
collectStatusIssuesFromLastError,
} from "./status-helpers.js";
export {
monitorIMessageProvider,
probeIMessage,

View File

@@ -148,6 +148,7 @@ export { formatResolvedUnresolvedNote } from "./resolution-notes.js";
export { runPluginCommandWithTimeout } from "./run-command.js";
export { createLoggerBackedRuntime, resolveRuntimeEnv } from "./runtime.js";
export {
buildComputedAccountStatusSnapshot,
buildProbeChannelStatusSummary,
collectStatusIssuesFromLastError,
} from "./status-helpers.js";