aisnitch 0.2.5 → 0.2.13

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.
package/dist/index.cjs CHANGED
@@ -6788,7 +6788,7 @@ var import_ws = require("ws");
6788
6788
 
6789
6789
  // src/package-info.ts
6790
6790
  var AISNITCH_PACKAGE_NAME = "aisnitch";
6791
- var AISNITCH_VERSION = "0.2.3";
6791
+ var AISNITCH_VERSION = "0.2.12";
6792
6792
  var AISNITCH_DESCRIPTION = "Universal bridge for AI coding tool activity \u2014 capture, normalize, stream.";
6793
6793
  function getPackageScaffoldInfo() {
6794
6794
  return {
@@ -7650,6 +7650,7 @@ var Pipeline = class {
7650
7650
 
7651
7651
  // src/tui/index.tsx
7652
7652
  var import_ink13 = require("ink");
7653
+ var import_fullscreen_ink = require("fullscreen-ink");
7653
7654
  var import_ws4 = __toESM(require("ws"), 1);
7654
7655
 
7655
7656
  // src/tui/App.tsx
@@ -9619,7 +9620,7 @@ function isWelcomeMessage(payload) {
9619
9620
  // src/tui/index.tsx
9620
9621
  var import_jsx_runtime13 = require("react/jsx-runtime");
9621
9622
  async function renderForegroundTui(options) {
9622
- const app = (0, import_ink13.render)(
9623
+ const ink = (0, import_fullscreen_ink.withFullScreen)(
9623
9624
  /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
9624
9625
  App,
9625
9626
  {
@@ -9641,7 +9642,8 @@ async function renderForegroundTui(options) {
9641
9642
  }
9642
9643
  )
9643
9644
  );
9644
- await app.waitUntilExit();
9645
+ await ink.start();
9646
+ await ink.waitUntilExit;
9645
9647
  }
9646
9648
  async function renderAttachedTui(options) {
9647
9649
  const socket = new import_ws4.default(options.wsUrl);