@neat.is/types 0.9.6-dev.20260826 → 0.9.7-dev.20260827
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 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +585 -295
- package/dist/index.d.ts +585 -295
- package/dist/index.js +12 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -349,7 +349,16 @@ var EdgeEvidenceSchema = import_zod2.z.object({
|
|
|
349
349
|
// is dampened rather than surfaced as a real gap. Present only on datastore
|
|
350
350
|
// CONNECTS_TO edges from a recogniser that distinguishes the two; absent on
|
|
351
351
|
// every other edge.
|
|
352
|
-
hostSource: import_zod2.z.enum(["literal", "config"]).optional()
|
|
352
|
+
hostSource: import_zod2.z.enum(["literal", "config"]).optional(),
|
|
353
|
+
// Reconstruction fidelity of a client↔route match (ADR-219). `approximate` is
|
|
354
|
+
// true when the client URL could not be fully reconstructed from source — an
|
|
355
|
+
// interpolation sat in a load-bearing position and was not statically
|
|
356
|
+
// resolvable — so the resolved target rests on shape, not literal evidence.
|
|
357
|
+
// `reason` names why. Present only on a `reconstructed-approximate` CALLS
|
|
358
|
+
// candidate the route matcher graded below the precision floor; absent on a
|
|
359
|
+
// fully-resolved match and on every other edge.
|
|
360
|
+
approximate: import_zod2.z.boolean().optional(),
|
|
361
|
+
reason: import_zod2.z.string().optional()
|
|
353
362
|
});
|
|
354
363
|
var LatencyMsSchema = import_zod2.z.object({
|
|
355
364
|
p50: import_zod2.z.number().nonnegative(),
|
|
@@ -1595,7 +1604,8 @@ var EXTRACTED_CONFIDENCE = {
|
|
|
1595
1604
|
"verified-call-site": 0.85,
|
|
1596
1605
|
"url-literal-service-target": 0.7,
|
|
1597
1606
|
"url-with-structural-support": 0.5,
|
|
1598
|
-
"hostname-shape-match": 0.2
|
|
1607
|
+
"hostname-shape-match": 0.2,
|
|
1608
|
+
"reconstructed-approximate": 0.15
|
|
1599
1609
|
};
|
|
1600
1610
|
function confidenceForExtracted(kind) {
|
|
1601
1611
|
return EXTRACTED_CONFIDENCE[kind];
|