@adhdev/daemon-core 1.0.18 → 1.0.19

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.mjs CHANGED
@@ -785,10 +785,10 @@ function readInjected(value) {
785
785
  }
786
786
  function getDaemonBuildInfo() {
787
787
  if (cached) return cached;
788
- const commit = readInjected(true ? "572f2d8a6f85a8adb7ed8d6cae14e02ceee27a1a" : void 0) ?? "unknown";
789
- const commitShort = readInjected(true ? "572f2d8" : void 0) ?? (commit !== "unknown" ? commit.slice(0, 7) : "unknown");
790
- const version = readInjected(true ? "1.0.18" : void 0) ?? readInjected(typeof process !== "undefined" ? process.env?.ADHDEV_PKG_VERSION : void 0) ?? "unknown";
791
- const builtAt = readInjected(true ? "2026-07-23T07:17:01.484Z" : void 0);
788
+ const commit = readInjected(true ? "091e33a4eb10f721c794790bbf09f7e18639190f" : void 0) ?? "unknown";
789
+ const commitShort = readInjected(true ? "091e33a" : void 0) ?? (commit !== "unknown" ? commit.slice(0, 7) : "unknown");
790
+ const version = readInjected(true ? "1.0.19" : void 0) ?? readInjected(typeof process !== "undefined" ? process.env?.ADHDEV_PKG_VERSION : void 0) ?? "unknown";
791
+ const builtAt = readInjected(true ? "2026-07-23T07:36:28.241Z" : void 0);
792
792
  cached = builtAt ? { commit, commitShort, version, builtAt } : { commit, commitShort, version };
793
793
  return cached;
794
794
  }
@@ -13060,6 +13060,7 @@ var init_spawn_env = __esm({
13060
13060
  import * as os5 from "os";
13061
13061
  import * as path11 from "path";
13062
13062
  function isPurePtyTranscriptProvider(provider) {
13063
+ if (!provider) return false;
13063
13064
  if (provider.transcriptAuthority === "provider") return false;
13064
13065
  if (provider.nativeHistory) return false;
13065
13066
  const transcriptPty = provider.tui?.transcriptPty;