@adhdev/daemon-standalone 0.9.24 → 0.9.26

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.js CHANGED
@@ -40159,6 +40159,7 @@ ${effect.notification.body || ""}`.trim();
40159
40159
  return { success: true, ...state };
40160
40160
  }
40161
40161
  var COMMAND_DEBUG_LEVELS = /* @__PURE__ */ new Set([
40162
+ "read_chat",
40162
40163
  "pty_input",
40163
40164
  "pty_resize",
40164
40165
  "cdp_eval",
@@ -46288,6 +46289,9 @@ Run 'adhdev doctor' for detailed diagnostics.`
46288
46289
  if (logs.length > 0) {
46289
46290
  return { success: true, logs, totalBuffered: logs.length };
46290
46291
  }
46292
+ if (sinceTs > 0) {
46293
+ return { success: true, logs: [], totalBuffered: 0 };
46294
+ }
46291
46295
  if (fs9.existsSync(LOG_PATH)) {
46292
46296
  const content = fs9.readFileSync(LOG_PATH, "utf-8");
46293
46297
  const allLines = content.split("\n");