@tscircuit/capacity-autorouter 0.0.693 → 0.0.695

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.d.ts CHANGED
@@ -237,6 +237,7 @@ interface CapacityMeshNode {
237
237
  _isNarrowQfpPadGap?: boolean;
238
238
  _soicRegionType?: "center" | "pad" | "pad-gap";
239
239
  _isComponentTopologyNode?: boolean;
240
+ _connectedTo?: string[];
240
241
  _parent?: CapacityMeshNode;
241
242
  }
242
243
  interface CapacityMeshEdge {
@@ -304,6 +305,8 @@ type HighDensityIntraNodeRoute$1 = {
304
305
  y: number;
305
306
  z: number;
306
307
  traceThickness?: number;
308
+ /** Keeps routed terminals fixed during post-route DRC optimization. */
309
+ pcb_port_id?: string;
307
310
  insideJumperPad?: boolean;
308
311
  toNextSegmentType?: "through_obstacle";
309
312
  }>;