@tscircuit/capacity-autorouter 0.0.566 → 0.0.567

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
@@ -305,6 +305,7 @@ type HighDensityIntraNodeRoute$1 = {
305
305
  y: number;
306
306
  }>;
307
307
  jumpers?: Jumper[];
308
+ regionId?: string;
308
309
  };
309
310
  type HighDensityRoute$1 = HighDensityIntraNodeRoute$1;
310
311
  /**
@@ -334,6 +335,7 @@ type Jumper = {
334
335
  type HighDensityIntraNodeRouteWithJumpers = {
335
336
  connectionName: string;
336
337
  rootConnectionName?: string;
338
+ regionId?: string;
337
339
  traceThickness: number;
338
340
  route: Array<{
339
341
  x: number;
@@ -1092,6 +1094,7 @@ declare class SingleRouteCandidatePriorityQueue<T extends Node = Node> {
1092
1094
  type FutureConnection$1 = {
1093
1095
  connectionName: string;
1094
1096
  rootConnectionName?: string;
1097
+ regionId?: string;
1095
1098
  points: {
1096
1099
  x: number;
1097
1100
  y: number;
@@ -1142,6 +1145,7 @@ declare class SingleHighDensityRouteSolver extends BaseSolver {
1142
1145
  candidates: SingleRouteCandidatePriorityQueue;
1143
1146
  connectionName: string;
1144
1147
  rootConnectionName?: string;
1148
+ regionId?: string;
1145
1149
  solvedPath: HighDensityIntraNodeRoute$1 | null;
1146
1150
  futureConnections: FutureConnection$1[];
1147
1151
  hyperParameters: Partial<HighDensityHyperParameters>;
@@ -1162,6 +1166,7 @@ declare class SingleHighDensityRouteSolver extends BaseSolver {
1162
1166
  constructor(opts: {
1163
1167
  connectionName: string;
1164
1168
  rootConnectionName?: string;
1169
+ regionId?: string;
1165
1170
  obstacleRoutes: HighDensityIntraNodeRoute$1[];
1166
1171
  minDistBetweenEnteringPoints: number;
1167
1172
  bounds: {
@@ -6557,6 +6562,7 @@ declare const reconnectReroutedSimpleRouteJsonRegion: (originalSrj: SimpleRouteJ
6557
6562
  type FutureConnection = {
6558
6563
  connectionName: string;
6559
6564
  rootConnectionName?: string;
6565
+ regionId?: string;
6560
6566
  points: {
6561
6567
  x: number;
6562
6568
  y: number;
@@ -6686,6 +6692,7 @@ declare class SingleHighDensityRouteWithJumpersSolver extends BaseSolver {
6686
6692
  candidates: SingleRouteCandidatePriorityQueue<JumperNode>;
6687
6693
  connectionName: string;
6688
6694
  rootConnectionName?: string;
6695
+ regionId?: string;
6689
6696
  solvedPath: HighDensityIntraNodeRouteWithJumpers | null;
6690
6697
  futureConnections: FutureConnection[];
6691
6698
  hyperParameters: Partial<HighDensityHyperParameters>;
@@ -6711,6 +6718,7 @@ declare class SingleHighDensityRouteWithJumpersSolver extends BaseSolver {
6711
6718
  constructor(opts: {
6712
6719
  connectionName: string;
6713
6720
  rootConnectionName?: string;
6721
+ regionId?: string;
6714
6722
  obstacleRoutes: HighDensityIntraNodeRouteWithJumpers[];
6715
6723
  minDistBetweenEnteringPoints: number;
6716
6724
  bounds: {