@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.cjs
CHANGED
|
@@ -336,7 +336,18 @@ var EdgeEvidenceSchema = import_zod2.z.object({
|
|
|
336
336
|
// client named, alongside the file:line it named them at. Absent on every
|
|
337
337
|
// other edge — a config or infra edge has no HTTP method.
|
|
338
338
|
method: import_zod2.z.string().optional(),
|
|
339
|
-
pathTemplate: import_zod2.z.string().optional()
|
|
339
|
+
pathTemplate: import_zod2.z.string().optional(),
|
|
340
|
+
// How a datastore host was recovered (ADR-213). `config` when the host came
|
|
341
|
+
// from an env var / IConfiguration key / config file — the deployment's real
|
|
342
|
+
// target; `literal` when it was read from a hardcoded string literal in
|
|
343
|
+
// source. The divergence ranker reads this to tell a genuine declared store
|
|
344
|
+
// from a hardcoded fault-injection / flag-gated probe: a `literal` host
|
|
345
|
+
// production never observed, sitting beside a `config`-driven store of the
|
|
346
|
+
// same engine on the same service, is a dead alternate whose missing-observed
|
|
347
|
+
// is dampened rather than surfaced as a real gap. Present only on datastore
|
|
348
|
+
// CONNECTS_TO edges from a recogniser that distinguishes the two; absent on
|
|
349
|
+
// every other edge.
|
|
350
|
+
hostSource: import_zod2.z.enum(["literal", "config"]).optional()
|
|
340
351
|
});
|
|
341
352
|
var LatencyMsSchema = import_zod2.z.object({
|
|
342
353
|
p50: import_zod2.z.number().nonnegative(),
|