@adhdev/daemon-core 0.9.82-rc.251 → 0.9.82-rc.253
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.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/commands/router.ts +7 -11
package/dist/index.mjs
CHANGED
|
@@ -44738,7 +44738,7 @@ ${ptyResult.output.slice(-2e3)}`);
|
|
|
44738
44738
|
nodeStatuses.push(status);
|
|
44739
44739
|
}
|
|
44740
44740
|
const callerCoordinatorDaemonId = typeof args?.coordinatorDaemonId === "string" && args.coordinatorDaemonId.trim() ? args.coordinatorDaemonId.trim() : this.deps.statusInstanceId || void 0;
|
|
44741
|
-
const pendingCoordinatorEvents =
|
|
44741
|
+
const pendingCoordinatorEvents = getPendingMeshCoordinatorEvents(meshId, callerCoordinatorDaemonId);
|
|
44742
44742
|
const previewFreshness = (() => {
|
|
44743
44743
|
const localRepoRoot = nodeStatuses.map((node) => readStringValue(node?.git?.repoRoot, node?.repoRoot, node?.workspace)).find((candidate) => !!candidate && fs23.existsSync(candidate));
|
|
44744
44744
|
return localRepoRoot ? buildPreviewFreshness(localRepoRoot) : void 0;
|
|
@@ -44746,7 +44746,7 @@ ${ptyResult.output.slice(-2e3)}`);
|
|
|
44746
44746
|
const asyncRefineJobs = buildMeshAsyncRefineJobs({
|
|
44747
44747
|
meshId,
|
|
44748
44748
|
ledgerEntries: asyncRefineLedgerEntries,
|
|
44749
|
-
pendingEvents: pendingCoordinatorEvents
|
|
44749
|
+
pendingEvents: [...pendingCoordinatorEvents]
|
|
44750
44750
|
});
|
|
44751
44751
|
const historicalSessions = buildHistoricalMeshSessions({
|
|
44752
44752
|
meshId,
|