@neat.is/core 0.9.13 → 0.9.15-dev.20260902
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/{chunk-BKSM2YLV.js → chunk-NV4WWJSU.js} +45 -5
- package/dist/chunk-NV4WWJSU.js.map +1 -0
- package/dist/{chunk-RL6H3VVD.js → chunk-SSLPBQWY.js} +107 -37
- package/dist/chunk-SSLPBQWY.js.map +1 -0
- package/dist/cli.cjs +156 -58
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.js +7 -3
- package/dist/cli.js.map +1 -1
- package/dist/index.cjs +138 -41
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +2 -2
- package/dist/neatd.cjs +138 -41
- package/dist/neatd.cjs.map +1 -1
- package/dist/neatd.js +2 -2
- package/dist/server.cjs +73 -36
- package/dist/server.cjs.map +1 -1
- package/dist/server.js +1 -1
- package/package.json +2 -2
- package/dist/chunk-BKSM2YLV.js.map +0 -1
- package/dist/chunk-RL6H3VVD.js.map +0 -1
package/dist/cli.js
CHANGED
|
@@ -3,11 +3,12 @@ import {
|
|
|
3
3
|
clearDaemonRecord,
|
|
4
4
|
portFromListenAddress,
|
|
5
5
|
readDaemonRecord,
|
|
6
|
+
reconcileFrontierSurfaces,
|
|
6
7
|
resolveHost,
|
|
7
8
|
resolveNeatVersion,
|
|
8
9
|
startK8sSubstratePolling,
|
|
9
10
|
writeDaemonRecord
|
|
10
|
-
} from "./chunk-
|
|
11
|
+
} from "./chunk-NV4WWJSU.js";
|
|
11
12
|
import {
|
|
12
13
|
buildSearchIndex
|
|
13
14
|
} from "./chunk-BC53SCT7.js";
|
|
@@ -76,7 +77,7 @@ import {
|
|
|
76
77
|
startStalenessLoop,
|
|
77
78
|
upsertConnectorEntry,
|
|
78
79
|
validateConnectorEntry
|
|
79
|
-
} from "./chunk-
|
|
80
|
+
} from "./chunk-SSLPBQWY.js";
|
|
80
81
|
import {
|
|
81
82
|
startOtelGrpcReceiver
|
|
82
83
|
} from "./chunk-ERE47MCR.js";
|
|
@@ -483,7 +484,10 @@ async function startWatch(graph, opts) {
|
|
|
483
484
|
const stopStaleness = startStalenessLoop(graph, {
|
|
484
485
|
staleEventsPath: opts.staleEventsPath,
|
|
485
486
|
project: projectName,
|
|
486
|
-
onPolicyTrigger
|
|
487
|
+
onPolicyTrigger,
|
|
488
|
+
// Graduate FRONTIER surfaces whose twin arrived + stage surfaces for current
|
|
489
|
+
// hangs (ADR-226), each post-ingest tick.
|
|
490
|
+
onReconcile: (g) => reconcileFrontierSurfaces(g, opts.errorsPath)
|
|
487
491
|
});
|
|
488
492
|
const stopConnectors = await startConnectorPolling({
|
|
489
493
|
project: projectName,
|