@adhdev/daemon-standalone 0.9.82-rc.256 → 0.9.82-rc.257

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 CHANGED
@@ -37525,8 +37525,10 @@ Next step: ${nextStep}`;
37525
37525
  if (!meshIdFromDirectDispatch) return;
37526
37526
  }
37527
37527
  const meshIdFromRuntime = readNonEmptyString2(settings.meshNodeFor) || meshIdFromDirectDispatch;
37528
- const isMeshDelegate = Boolean(meshIdFromRuntime || settings.launchedByCoordinator);
37529
- if (!isMeshDelegate) return;
37528
+ const hasWorkerEnvelope = Boolean(
37529
+ meshIdFromRuntime || settings.launchedByCoordinator || readNonEmptyString2(settings.meshCoordinatorDaemonId) || readNonEmptyString2(settings.meshCoordinatorNodeId)
37530
+ );
37531
+ if (!hasWorkerEnvelope) return;
37530
37532
  const mesh = meshIdFromRuntime ? getMeshWithCache(components, meshIdFromRuntime) : getCachedMeshByWorkspace(workspace);
37531
37533
  const meshId = meshIdFromRuntime || readNonEmptyString2(mesh?.id);
37532
37534
  if (!meshId) return;