tmux-ide 2.9.0-beta.31 → 2.9.0-beta.32
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/bin/cli.js
CHANGED
|
@@ -11279,7 +11279,7 @@ var require_package = __commonJS({
|
|
|
11279
11279
|
"package.json"(exports, module) {
|
|
11280
11280
|
module.exports = {
|
|
11281
11281
|
name: "tmux-ide",
|
|
11282
|
-
version: "2.9.0-beta.
|
|
11282
|
+
version: "2.9.0-beta.32",
|
|
11283
11283
|
description: "A visual, agent-aware IDE for any tmux session, with optional workspace presets",
|
|
11284
11284
|
type: "module",
|
|
11285
11285
|
bin: {
|
|
@@ -71620,9 +71620,8 @@ function mountTmuxServerRoutes(app, options) {
|
|
|
71620
71620
|
(row) => row.sessionName === workspace.sessionName && row.liveSessionId === c.req.query("liveSessionId")
|
|
71621
71621
|
))
|
|
71622
71622
|
throw new TmuxServerScopeError("stale-generation");
|
|
71623
|
-
const snapshot2 = await owner.terminalInventoryRuntime.
|
|
71624
|
-
workspace.sessionName
|
|
71625
|
-
c.req.raw.signal
|
|
71623
|
+
const snapshot2 = await owner.terminalInventoryRuntime.discoverApplicationShellSession(
|
|
71624
|
+
workspace.sessionName
|
|
71626
71625
|
);
|
|
71627
71626
|
const currentSessions = await owner.catalog();
|
|
71628
71627
|
if (!currentSessions.some(
|
package/package.json
CHANGED
|
@@ -181,7 +181,9 @@ export function mountTmuxServerRoutes(app, options) {
|
|
|
181
181
|
if (!sessions.some((row) => row.sessionName === workspace.sessionName &&
|
|
182
182
|
row.liveSessionId === c.req.query("liveSessionId")))
|
|
183
183
|
throw new TmuxServerScopeError("stale-generation");
|
|
184
|
-
|
|
184
|
+
// Agent lists need the same status enrichment as pane headers. Raw
|
|
185
|
+
// terminal inventory omits these facts and falls back to process activity.
|
|
186
|
+
const snapshot = await owner.terminalInventoryRuntime.discoverApplicationShellSession(workspace.sessionName);
|
|
185
187
|
// Discovery can yield while a same-name session is replaced. Revalidate
|
|
186
188
|
// the captured incarnation before publishing agent metadata as current.
|
|
187
189
|
const currentSessions = await owner.catalog();
|
|
@@ -258,9 +258,10 @@ export function mountTmuxServerRoutes(app: Hono, options: TmuxServerRoutesOption
|
|
|
258
258
|
)
|
|
259
259
|
)
|
|
260
260
|
throw new TmuxServerScopeError("stale-generation");
|
|
261
|
-
|
|
261
|
+
// Agent lists need the same status enrichment as pane headers. Raw
|
|
262
|
+
// terminal inventory omits these facts and falls back to process activity.
|
|
263
|
+
const snapshot = await owner.terminalInventoryRuntime.discoverApplicationShellSession(
|
|
262
264
|
workspace.sessionName,
|
|
263
|
-
c.req.raw.signal,
|
|
264
265
|
);
|
|
265
266
|
// Discovery can yield while a same-name session is replaced. Revalidate
|
|
266
267
|
// the captured incarnation before publishing agent metadata as current.
|