@adhdev/daemon-core 1.0.28-rc.4 → 1.0.28-rc.6
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/config/mesh-config.d.ts +2 -0
- package/dist/git/git-commands.d.ts +1 -0
- package/dist/index.js +7155 -7080
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7158 -7083
- package/dist/index.mjs.map +1 -1
- package/dist/mesh/mesh-completion-synthesis.d.ts +29 -0
- package/dist/mesh/mesh-node-identity.d.ts +2 -0
- package/dist/mesh/mesh-refine-gates.d.ts +32 -0
- package/dist/mesh/mesh-runtime-store.d.ts +1 -0
- package/dist/mesh/mesh-work-queue.d.ts +15 -0
- package/dist/mesh/node-facts.d.ts +17 -0
- package/dist/providers/cli-provider-instance.d.ts +30 -57
- package/dist/providers/transcript-evidence.d.ts +63 -0
- package/dist/repo-mesh-types.d.ts +23 -0
- package/package.json +5 -3
- package/src/cli-adapters/cli-state-engine.ts +4 -3
- package/src/commands/high-family/mesh-status.ts +5 -0
- package/src/commands/router-refine.ts +30 -0
- package/src/commands/upgrade-helper.ts +15 -1
- package/src/config/mesh-config.ts +7 -0
- package/src/git/git-commands.ts +11 -1
- package/src/mesh/mesh-completion-synthesis.ts +76 -50
- package/src/mesh/mesh-node-identity.ts +37 -3
- package/src/mesh/mesh-queue-assignment.ts +34 -0
- package/src/mesh/mesh-reconcile-loop.ts +62 -71
- package/src/mesh/mesh-refine-gates.ts +58 -0
- package/src/mesh/mesh-runtime-store.ts +9 -1
- package/src/mesh/mesh-work-queue.ts +20 -1
- package/src/mesh/node-facts.ts +54 -0
- package/src/providers/cli-provider-instance.ts +72 -152
- package/src/providers/transcript-evidence.ts +105 -0
- package/src/repo-mesh-types.ts +23 -0
|
@@ -166,6 +166,8 @@ export declare function updateNode(meshId: string, nodeId: string, opts: {
|
|
|
166
166
|
* Slots are NOT carried — they are coordinator-owned config
|
|
167
167
|
* (REMOTE-NODE-SLOTS-COORDINATOR-LOCAL fix). */
|
|
168
168
|
reportedMemberState?: MeshReportedMemberState;
|
|
169
|
+
/** Versioned runtime-facts bundle — whole-object replace, opaque. */
|
|
170
|
+
nodeFacts?: import('@adhdev/mesh-shared').MeshNodeFacts;
|
|
169
171
|
}): LocalMeshNodeEntry | undefined;
|
|
170
172
|
/**
|
|
171
173
|
* Validate + normalize a kind-panel's slots (the SOLE MAGI slot normalizer): provider
|