From 6ba20a0f7c366f1960d01b41d6214d30a76b6c09 Mon Sep 17 00:00:00 2001 From: Gustavo Madeira Santana Date: Mon, 20 Apr 2026 22:38:44 -0400 Subject: [PATCH] chore: trim read-only channel helper exports --- src/channels/plugins/read-only.ts | 2 +- src/plugins/channel-plugin-ids.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/channels/plugins/read-only.ts b/src/channels/plugins/read-only.ts index 2d5b3956c84..fbcba9b285b 100644 --- a/src/channels/plugins/read-only.ts +++ b/src/channels/plugins/read-only.ts @@ -21,7 +21,7 @@ type ReadOnlyChannelPluginOptions = { cache?: boolean; }; -export type ReadOnlyChannelPluginResolution = { +type ReadOnlyChannelPluginResolution = { plugins: ChannelPlugin[]; configuredChannelIds: string[]; missingConfiguredChannelIds: string[]; diff --git a/src/plugins/channel-plugin-ids.ts b/src/plugins/channel-plugin-ids.ts index 0cd437e96bb..4d470917475 100644 --- a/src/plugins/channel-plugin-ids.ts +++ b/src/plugins/channel-plugin-ids.ts @@ -103,7 +103,7 @@ function listEnvConfiguredManifestChannelIds(params: { return [...channelIds].toSorted((left, right) => left.localeCompare(right)); } -export function listConfiguredChannelIdsForPluginScope(params: { +function listConfiguredChannelIdsForPluginScope(params: { config: OpenClawConfig; activationSourceConfig?: OpenClawConfig; workspaceDir?: string; @@ -266,7 +266,7 @@ function resolveScopedChannelOwnerPluginIds(params: { .toSorted((left, right) => left.localeCompare(right)); } -export function resolveScopedChannelPluginIds(params: { +function resolveScopedChannelPluginIds(params: { config: OpenClawConfig; activationSourceConfig?: OpenClawConfig; channelIds: readonly string[];