diff --git a/src/commands/channel-setup/channel-plugin-resolution.ts b/src/commands/channel-setup/channel-plugin-resolution.ts index 34196378683..997ef16c775 100644 --- a/src/commands/channel-setup/channel-plugin-resolution.ts +++ b/src/commands/channel-setup/channel-plugin-resolution.ts @@ -53,7 +53,7 @@ function resolveResolvedChannelId(params: { return normalizeChannelId(params.catalogEntry.id) ?? (params.catalogEntry.id as ChannelId); } -export function resolveCatalogChannelEntry(raw: string, cfg: OpenClawConfig | null) { +function resolveCatalogChannelEntry(raw: string, cfg: OpenClawConfig | null) { const trimmed = normalizeOptionalLowercaseString(raw); if (!trimmed) { return undefined; diff --git a/src/commands/configure.ts b/src/commands/configure.ts index 0ba986d4453..9db625b1dfc 100644 --- a/src/commands/configure.ts +++ b/src/commands/configure.ts @@ -1,12 +1,3 @@ -export { - configureCommand, - configureCommandFromSectionsArg, - configureCommandWithSections, -} from "./configure.commands.js"; +export { configureCommandFromSectionsArg } from "./configure.commands.js"; export { buildGatewayAuthConfig } from "./configure.gateway-auth.js"; -export { - CONFIGURE_WIZARD_SECTIONS, - parseConfigureWizardSections, - type WizardSection, -} from "./configure.shared.js"; -export { runConfigureWizard } from "./configure.wizard.js"; +export { CONFIGURE_WIZARD_SECTIONS } from "./configure.shared.js"; diff --git a/src/commands/models/load-config.runtime.ts b/src/commands/models/load-config.runtime.ts index b4d7c5724d0..978b24cf682 100644 --- a/src/commands/models/load-config.runtime.ts +++ b/src/commands/models/load-config.runtime.ts @@ -1,4 +1,3 @@ -export { resolveCommandSecretRefsViaGateway } from "../../cli/command-secret-gateway.js"; export { getModelsCommandSecretTargetIds } from "../../cli/command-secret-targets.js"; export { getRuntimeConfig,