@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.
|
@@ -302,7 +302,7 @@ export declare function isPurePtyTranscriptProvider(provider: {
|
|
|
302
302
|
transcriptAuthority?: 'provider' | 'daemon';
|
|
303
303
|
nativeHistory?: unknown;
|
|
304
304
|
tui?: Record<string, unknown>;
|
|
305
|
-
}): boolean;
|
|
305
|
+
} | null | undefined): boolean;
|
|
306
306
|
/**
|
|
307
307
|
* Stateful, transcript-oriented terminal cell accumulator.
|
|
308
308
|
*
|
package/dist/index.js
CHANGED
|
@@ -790,10 +790,10 @@ function readInjected(value) {
|
|
|
790
790
|
}
|
|
791
791
|
function getDaemonBuildInfo() {
|
|
792
792
|
if (cached) return cached;
|
|
793
|
-
const commit = readInjected(true ? "
|
|
794
|
-
const commitShort = readInjected(true ? "
|
|
795
|
-
const version = readInjected(true ? "1.0.
|
|
796
|
-
const builtAt = readInjected(true ? "2026-07-23T07:
|
|
793
|
+
const commit = readInjected(true ? "091e33a4eb10f721c794790bbf09f7e18639190f" : void 0) ?? "unknown";
|
|
794
|
+
const commitShort = readInjected(true ? "091e33a" : void 0) ?? (commit !== "unknown" ? commit.slice(0, 7) : "unknown");
|
|
795
|
+
const version = readInjected(true ? "1.0.19" : void 0) ?? readInjected(typeof process !== "undefined" ? process.env?.ADHDEV_PKG_VERSION : void 0) ?? "unknown";
|
|
796
|
+
const builtAt = readInjected(true ? "2026-07-23T07:36:28.241Z" : void 0);
|
|
797
797
|
cached = builtAt ? { commit, commitShort, version, builtAt } : { commit, commitShort, version };
|
|
798
798
|
return cached;
|
|
799
799
|
}
|
|
@@ -13062,6 +13062,7 @@ var init_spawn_env = __esm({
|
|
|
13062
13062
|
|
|
13063
13063
|
// src/cli-adapters/provider-cli-shared.ts
|
|
13064
13064
|
function isPurePtyTranscriptProvider(provider) {
|
|
13065
|
+
if (!provider) return false;
|
|
13065
13066
|
if (provider.transcriptAuthority === "provider") return false;
|
|
13066
13067
|
if (provider.nativeHistory) return false;
|
|
13067
13068
|
const transcriptPty = provider.tui?.transcriptPty;
|