@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.mjs
CHANGED
|
@@ -7543,7 +7543,6 @@ function injectMeshSystemMessage(components, args) {
|
|
|
7543
7543
|
if (workerCoordinatorDaemonId && localDaemonId && workerCoordinatorDaemonId !== localDaemonId) return false;
|
|
7544
7544
|
return true;
|
|
7545
7545
|
});
|
|
7546
|
-
const isTerminalEvent = (/* @__PURE__ */ new Set(["refine:completed", "refine:failed", "agent:generating_completed", "agent:stopped"])).has(args.event);
|
|
7547
7546
|
if (coordinatorInstances.length === 0) {
|
|
7548
7547
|
if (queuePendingMeshCoordinatorEvent({
|
|
7549
7548
|
event: args.event,
|
|
@@ -7563,6 +7562,7 @@ function injectMeshSystemMessage(components, args) {
|
|
|
7563
7562
|
}
|
|
7564
7563
|
return { success: true, forwarded: 0 };
|
|
7565
7564
|
}
|
|
7565
|
+
const isTerminalEvent = (/* @__PURE__ */ new Set(["refine:completed", "refine:failed", "agent:generating_completed", "agent:stopped"])).has(args.event);
|
|
7566
7566
|
if (!isTerminalEvent) {
|
|
7567
7567
|
if (queuePendingMeshCoordinatorEvent({
|
|
7568
7568
|
event: args.event,
|