chore: trim read-only channel helper exports

This commit is contained in:
Gustavo Madeira Santana
2026-04-20 22:38:44 -04:00
parent 1d6b2ff8b2
commit 6ba20a0f7c
2 changed files with 3 additions and 3 deletions

View File

@@ -21,7 +21,7 @@ type ReadOnlyChannelPluginOptions = {
cache?: boolean;
};
export type ReadOnlyChannelPluginResolution = {
type ReadOnlyChannelPluginResolution = {
plugins: ChannelPlugin[];
configuredChannelIds: string[];
missingConfiguredChannelIds: string[];

View File

@@ -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[];