@adhdev/daemon-core 0.9.82-rc.247 → 0.9.82-rc.249
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 +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/mesh/mesh-events-coordinator.ts +5 -2
package/dist/index.js
CHANGED
|
@@ -7549,7 +7549,6 @@ function injectMeshSystemMessage(components, args) {
|
|
|
7549
7549
|
if (workerCoordinatorDaemonId && localDaemonId && workerCoordinatorDaemonId !== localDaemonId) return false;
|
|
7550
7550
|
return true;
|
|
7551
7551
|
});
|
|
7552
|
-
const isTerminalEvent = (/* @__PURE__ */ new Set(["refine:completed", "refine:failed", "agent:generating_completed", "agent:stopped"])).has(args.event);
|
|
7553
7552
|
if (coordinatorInstances.length === 0) {
|
|
7554
7553
|
if (queuePendingMeshCoordinatorEvent({
|
|
7555
7554
|
event: args.event,
|
|
@@ -7569,6 +7568,7 @@ function injectMeshSystemMessage(components, args) {
|
|
|
7569
7568
|
}
|
|
7570
7569
|
return { success: true, forwarded: 0 };
|
|
7571
7570
|
}
|
|
7571
|
+
const isTerminalEvent = (/* @__PURE__ */ new Set(["refine:completed", "refine:failed", "agent:generating_completed", "agent:stopped"])).has(args.event);
|
|
7572
7572
|
if (!isTerminalEvent) {
|
|
7573
7573
|
if (queuePendingMeshCoordinatorEvent({
|
|
7574
7574
|
event: args.event,
|