@neat.is/types 0.9.10-dev.20260830 → 0.9.10

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 CHANGED
@@ -767,7 +767,19 @@ var NodeContextSchema = import_zod5.z.object({
767
767
  // latency with low error emission reads as saturated.
768
768
  latencyP95Ms: import_zod5.z.number().nonnegative().optional(),
769
769
  // Is the node fed by STALE edges — did it stop responding?
770
- stale: import_zod5.z.boolean()
770
+ stale: import_zod5.z.boolean(),
771
+ // #1114 — the node's own error is a gateway/timeout-class failure (a 504 /
772
+ // DEADLINE_EXCEEDED / timeout), the observable shadow of a downstream that hung
773
+ // and exported nothing. Distinct from a fast-fail (UNAVAILABLE / ECONNREFUSED),
774
+ // which exports an erroring edge NEAT can root-cause directly.
775
+ boundaryTimeout: import_zod5.z.boolean().optional(),
776
+ // Does any observed outbound dependency edge carry errors? A fast-fail exports
777
+ // an erroring edge; a hang exports none. The signal that keeps the boundary-
778
+ // timeout reclassification off the cases NEAT can already see and root-cause.
779
+ observedErroringDownstream: import_zod5.z.boolean().optional(),
780
+ // Does the node front any outbound dependency (declared or observed)? A leaf
781
+ // that times out on its own logic has nothing downstream to blame.
782
+ hasOutboundDeps: import_zod5.z.boolean().optional()
771
783
  });
772
784
  var NodeClassificationSchema = import_zod5.z.enum([
773
785
  "primary-failure",