adhdev 0.9.24 → 0.9.25

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/cli/index.js CHANGED
@@ -10030,6 +10030,7 @@ var init_handler = __esm({
10030
10030
  init_stream_commands();
10031
10031
  init_workspace_commands();
10032
10032
  COMMAND_DEBUG_LEVELS = /* @__PURE__ */ new Set([
10033
+ "read_chat",
10033
10034
  "pty_input",
10034
10035
  "pty_resize",
10035
10036
  "cdp_eval",
@@ -38487,6 +38488,9 @@ var init_router = __esm({
38487
38488
  if (logs.length > 0) {
38488
38489
  return { success: true, logs, totalBuffered: logs.length };
38489
38490
  }
38491
+ if (sinceTs > 0) {
38492
+ return { success: true, logs: [], totalBuffered: 0 };
38493
+ }
38490
38494
  if (fs9.existsSync(LOG_PATH)) {
38491
38495
  const content = fs9.readFileSync(LOG_PATH, "utf-8");
38492
38496
  const allLines = content.split("\n");
@@ -87454,7 +87458,7 @@ var init_adhdev_daemon = __esm({
87454
87458
  init_version();
87455
87459
  init_src();
87456
87460
  init_runtime_defaults();
87457
- pkgVersion = resolvePackageVersion({ injectedVersion: "0.9.24" });
87461
+ pkgVersion = resolvePackageVersion({ injectedVersion: "0.9.25" });
87458
87462
  AdhdevDaemon = class _AdhdevDaemon {
87459
87463
  localHttpServer = null;
87460
87464
  localWss = null;