diff --git a/src/canvas-host/a2ui/.bundle.hash b/src/canvas-host/a2ui/.bundle.hash index 385a71832ac..b9bd7bb1c5e 100644 --- a/src/canvas-host/a2ui/.bundle.hash +++ b/src/canvas-host/a2ui/.bundle.hash @@ -1 +1 @@ -f324558380d6346b8230df477332491adb863a1dcc4025cf119488ac2bd5f1e7 +c348eb72281b7f56717845db649f8bf02a29127be04d567be814e431bb60dc2e diff --git a/src/cli/run-main.ts b/src/cli/run-main.ts index 7c4904d6d6a..9f864ce6934 100644 --- a/src/cli/run-main.ts +++ b/src/cli/run-main.ts @@ -12,8 +12,8 @@ import { ensureGlobalUndiciEnvProxyDispatcher } from "../infra/net/undici-global import { ensureOpenClawCliOnPath } from "../infra/path-env.js"; import { assertSupportedRuntime } from "../infra/runtime-guard.js"; import { enableConsoleCapture } from "../logging.js"; +import type { PluginManifestCommandAliasRegistry } from "../plugins/manifest-command-aliases.js"; import { resolveManifestCommandAliasOwner } from "../plugins/manifest-command-aliases.runtime.js"; -import type { PluginManifestRegistry } from "../plugins/manifest-registry.js"; import { hasMemoryRuntime } from "../plugins/memory-state.js"; import { maybeWarnAboutDebugProxyCoverage } from "../proxy-capture/coverage.js"; import { @@ -74,7 +74,7 @@ export function shouldUseRootHelpFastPath(argv: string[]): boolean { export function resolveMissingPluginCommandMessage( pluginId: string, config?: OpenClawConfig, - options?: { registry?: PluginManifestRegistry }, + options?: { registry?: PluginManifestCommandAliasRegistry }, ): string | null { const normalizedPluginId = normalizeLowercaseStringOrEmpty(pluginId); if (!normalizedPluginId) { diff --git a/src/gateway/server-close.test.ts b/src/gateway/server-close.test.ts index 253f6470a68..01d7cbb1d60 100644 --- a/src/gateway/server-close.test.ts +++ b/src/gateway/server-close.test.ts @@ -31,7 +31,9 @@ const { createGatewayCloseHandler } = await import("./server-close.js"); type GatewayCloseHandlerParams = Parameters[0]; type GatewayCloseClient = GatewayCloseHandlerParams["clients"] extends Set ? T : never; -function createGatewayCloseTestDeps(overrides: Partial = {}) { +function createGatewayCloseTestDeps( + overrides: Partial = {}, +): GatewayCloseHandlerParams { return { bonjourStop: null, tailscaleCleanup: null, diff --git a/src/plugins/manifest-command-aliases.runtime.ts b/src/plugins/manifest-command-aliases.runtime.ts index f3c12346158..a06ca9e8639 100644 --- a/src/plugins/manifest-command-aliases.runtime.ts +++ b/src/plugins/manifest-command-aliases.runtime.ts @@ -1,16 +1,17 @@ import type { OpenClawConfig } from "../config/types.openclaw.js"; import { resolveManifestCommandAliasOwnerInRegistry, + type PluginManifestCommandAliasRegistry, type PluginManifestCommandAliasRecord, } from "./manifest-command-aliases.js"; -import { loadPluginManifestRegistry, type PluginManifestRegistry } from "./manifest-registry.js"; +import { loadPluginManifestRegistry } from "./manifest-registry.js"; export function resolveManifestCommandAliasOwner(params: { command: string | undefined; config?: OpenClawConfig; workspaceDir?: string; env?: NodeJS.ProcessEnv; - registry?: PluginManifestRegistry; + registry?: PluginManifestCommandAliasRegistry; }): PluginManifestCommandAliasRecord | undefined { const registry = params.registry ??