@adhdev/daemon-core 0.9.82-rc.333 → 0.9.82-rc.335
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-adapters/provider-cli-adapter.d.ts +1 -0
- package/dist/commands/router.d.ts +10 -0
- package/dist/index.js +605 -509
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +596 -500
- package/dist/index.mjs.map +1 -1
- package/dist/mesh/mesh-runtime-store.d.ts +18 -1
- package/dist/mesh/mesh-work-queue.d.ts +1 -0
- package/dist/mesh/refine-config.d.ts +1 -0
- package/package.json +2 -2
- package/src/cli-adapters/provider-cli-adapter.ts +41 -1
- package/src/commands/router.ts +65 -10
- package/src/mesh/mesh-events-coordinator.ts +4 -0
- package/src/mesh/mesh-runtime-store.ts +59 -8
- package/src/mesh/mesh-work-queue.ts +18 -4
- package/src/mesh/refine-config.ts +23 -3
- package/src/mesh/worktree-bootstrap-config.ts +6 -1
|
@@ -182,6 +182,7 @@ export declare class ProviderCliAdapter implements CliAdapter {
|
|
|
182
182
|
force?: boolean;
|
|
183
183
|
}): Promise<void>;
|
|
184
184
|
forceSendMessage(text: string): Promise<void>;
|
|
185
|
+
private waitForForceSubmitSettle;
|
|
185
186
|
private enqueuePendingOutboundMessage;
|
|
186
187
|
private shouldQueuePendingOutboundMessage;
|
|
187
188
|
private schedulePendingOutboundFlush;
|
|
@@ -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. */
|