@modular-circuit/ir 0.1.3 → 0.1.4

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.mts CHANGED
@@ -400,6 +400,9 @@ interface PcbContent {
400
400
  pcb: NamedContent;
401
401
  }
402
402
  interface DesignBlockContent {
403
+ /**
404
+ * The root sch file name
405
+ */
403
406
  root: string | null;
404
407
  schematics: NamedContent[];
405
408
  pcb: PcbContent | null;
package/dist/index.d.ts CHANGED
@@ -400,6 +400,9 @@ interface PcbContent {
400
400
  pcb: NamedContent;
401
401
  }
402
402
  interface DesignBlockContent {
403
+ /**
404
+ * The root sch file name
405
+ */
403
406
  root: string | null;
404
407
  schematics: NamedContent[];
405
408
  pcb: PcbContent | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@modular-circuit/ir",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Intermediate representation of the modular circuit",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",