@neat.is/types 0.9.2 → 0.9.3-dev.20260823
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.cjs +12 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +145 -0
- package/dist/index.d.ts +145 -0
- package/dist/index.js +12 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -168,7 +168,18 @@ var EdgeEvidenceSchema = z2.object({
|
|
|
168
168
|
// client named, alongside the file:line it named them at. Absent on every
|
|
169
169
|
// other edge — a config or infra edge has no HTTP method.
|
|
170
170
|
method: z2.string().optional(),
|
|
171
|
-
pathTemplate: z2.string().optional()
|
|
171
|
+
pathTemplate: z2.string().optional(),
|
|
172
|
+
// How a datastore host was recovered (ADR-213). `config` when the host came
|
|
173
|
+
// from an env var / IConfiguration key / config file — the deployment's real
|
|
174
|
+
// target; `literal` when it was read from a hardcoded string literal in
|
|
175
|
+
// source. The divergence ranker reads this to tell a genuine declared store
|
|
176
|
+
// from a hardcoded fault-injection / flag-gated probe: a `literal` host
|
|
177
|
+
// production never observed, sitting beside a `config`-driven store of the
|
|
178
|
+
// same engine on the same service, is a dead alternate whose missing-observed
|
|
179
|
+
// is dampened rather than surfaced as a real gap. Present only on datastore
|
|
180
|
+
// CONNECTS_TO edges from a recogniser that distinguishes the two; absent on
|
|
181
|
+
// every other edge.
|
|
182
|
+
hostSource: z2.enum(["literal", "config"]).optional()
|
|
172
183
|
});
|
|
173
184
|
var LatencyMsSchema = z2.object({
|
|
174
185
|
p50: z2.number().nonnegative(),
|