@tscircuit/hypergraph 0.0.5 → 0.0.6

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +2 -1
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -3,6 +3,7 @@ import { BaseSolver } from '@tscircuit/solver-utils';
3
3
  import { Matrix } from 'transformation-matrix';
4
4
 
5
5
  type PortId = string;
6
+ type GraphEdgeId = string;
6
7
  type RegionId = string;
7
8
  type ConnectionId = string;
8
9
  type NetworkId = string;
@@ -383,4 +384,4 @@ declare const applyTransformToGraph: (graph: JumperGraph, matrix: Matrix) => Jum
383
384
  */
384
385
  declare const rotateGraph90Degrees: (graph: JumperGraph) => JumperGraph;
385
386
 
386
- export { HyperGraphSolver, JumperGraphSolver, type JumperGraphWithConnections, type XYConnection, applyTransformToGraph, createGraphWithConnectionsFromBaseGraph, generateJumperGrid, generateJumperX4Grid, rotateGraph90Degrees };
387
+ export { type Candidate, type Connection, type ConnectionId, type GScore, type GraphEdgeId, type HyperGraph, HyperGraphSolver, JumperGraphSolver, type JumperGraphWithConnections, type NetworkId, type PortAssignment, type PortId, type Region, type RegionId, type RegionPort, type RegionPortAssignment, type SerializedConnection, type SerializedGraphPort, type SerializedGraphRegion, type SerializedHyperGraph, type SerializedRegionPortAssignment, type SolvedRoute, type XYConnection, applyTransformToGraph, createGraphWithConnectionsFromBaseGraph, generateJumperGrid, generateJumperX4Grid, rotateGraph90Degrees };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tscircuit/hypergraph",
3
3
  "main": "dist/index.js",
4
- "version": "0.0.5",
4
+ "version": "0.0.6",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "start": "cosmos",