@wrongstack/webui 0.109.1 → 0.119.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -165,7 +165,7 @@ import {
165
165
  collabPauseMiddleware,
166
166
  collabInjectMiddleware,
167
167
  estimateRequestTokensCalibrated,
168
- EventBus as EventBus2,
168
+ EventBus,
169
169
  HybridCompactor as HybridCompactor2,
170
170
  ProviderRegistry,
171
171
  TOKENS as TOKENS2,
@@ -1619,6 +1619,7 @@ function openBrowser(url, platform = process.platform) {
1619
1619
  try {
1620
1620
  import("@wrongstack/tools").then(({ getProcessRegistry }) => {
1621
1621
  getProcessRegistry().register({
1622
+ // biome-ignore lint/style/noNonNullAssertion: pid always present after spawn
1622
1623
  pid: child.pid,
1623
1624
  name: "browser",
1624
1625
  command: `${command} ${args.join(" ")}`,
@@ -2071,7 +2072,7 @@ async function startWebUI(opts = {}) {
2071
2072
  toolRegistry.register(relatedMemoryTool(memoryStore));
2072
2073
  }
2073
2074
  console.log("[WebUI] Tool registry loaded:", toolRegistry.list().length, "tools");
2074
- const events = new EventBus2();
2075
+ const events = new EventBus();
2075
2076
  events.setLogger(logger);
2076
2077
  const sessionStore = new DefaultSessionStore2({ dir: wpaths.projectSessions });
2077
2078
  sessionStore.prune(DEFAULT_SESSION_PRUNE_DAYS).then((count) => {