@tscircuit/core 0.0.319 → 0.0.320

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
@@ -10761,7 +10761,8 @@ type TransistorSel = Record<`Q${Nums40}`, Record<TransistorPinNames, string>>;
10761
10761
  type JumperSel = Record<`J${Nums40}`, Record<PinNumbers100, string>>;
10762
10762
  type ChipSel = Record<`U${Nums40}`, Record<CommonPinNames, string>>;
10763
10763
  type NetSel = Record<"net", Record<"VCC" | "GND" | "VDD", string>>;
10764
- type Sel = NonPolarizedSel & PolarizedSel & TransistorSel & JumperSel & ChipSel & SwSel & NetSel;
10764
+ type ConnectionSel = Record<`CN${Nums40}`, Record<CommonPinNames, string>>;
10765
+ type Sel = NonPolarizedSel & PolarizedSel & TransistorSel & JumperSel & ChipSel & SwSel & NetSel & ConnectionSel;
10765
10766
  declare const sel: Sel;
10766
10767
 
10767
10768
  interface TscircuitElements {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tscircuit/core",
3
3
  "type": "module",
4
- "version": "0.0.319",
4
+ "version": "0.0.320",
5
5
  "types": "dist/index.d.ts",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.js",