@adhdev/daemon-core 0.9.82-rc.332 → 0.9.82-rc.334

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.
@@ -86,6 +86,16 @@ type MeshRefineSubmoduleConflictHint = {
86
86
  }>;
87
87
  nextSteps: string[];
88
88
  };
89
+ /**
90
+ * A spawn-resolution failure is when the executable itself could not be found by
91
+ * the OS spawn boundary — `spawn <cmd> ENOENT` — as opposed to the command
92
+ * running and exiting non-zero. On win32 this is the .cmd-shim case: libuv's
93
+ * spawn search appends only .com/.exe, so a bare `npm`/`npx`/`tsc` (which are
94
+ * .cmd shims) ENOENTs even though it is installed. It carries no stderr, so it
95
+ * must be detected by error.code/syscall, not by string-matching output.
96
+ */
97
+ export declare function isSpawnResolutionError(error: any): boolean;
98
+ export declare function describeSpawnError(error: any, command: string, spawnResolutionFailed: boolean): string;
89
99
  export declare function runMeshRefinePatchEquivalenceGate(repoRoot: string, baseHead: string, branchHead: string): Promise<MeshRefinePatchEquivalenceSummary>;
90
100
  export type MeshWorktreePatchContainmentSummary = {
91
101
  /** True only when merging worktreeHead into ref introduces no new patch. */