@tscircuit/capacity-autorouter 0.0.567 → 0.0.569

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
@@ -5482,6 +5482,8 @@ declare class AutoroutingPipelineSolver6_PolyHypergraph extends BaseSolver {
5482
5482
  getOutputSimpleRouteJson(): SimpleRouteJson;
5483
5483
  }
5484
5484
 
5485
+ type ComponentKind = "bga" | "qfp" | "qfp_thermalpad" | "soic";
5486
+
5485
5487
  /**
5486
5488
  * Current detection stage: groups SRJ obstacles by component and replaces each
5487
5489
  * component's member pads with one rectangular bounds obstacle.
@@ -5519,7 +5521,7 @@ interface ComponentDetectionSolverParams {
5519
5521
  }
5520
5522
  interface DetectedComponent {
5521
5523
  componentId: string;
5522
- componentKind: "bga" | "qfp" | "qfp_thermalpad" | "soic";
5524
+ componentKind: ComponentKind;
5523
5525
  memberObstacleIds: string[];
5524
5526
  memberObstacles: Obstacle[];
5525
5527
  replacementObstacle: Obstacle;