@modular-circuit/ir 0.1.3 → 0.1.5

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;
@@ -769,7 +772,6 @@ interface IR_Wire extends IR_GraphItem, Connection {
769
772
 
770
773
  type IR_BLOCK_T = IR_Block | AbstractBlock;
771
774
  interface IR_Graph extends IR_GraphItem {
772
- name?: string;
773
775
  blocks?: IR_BLOCK_T[];
774
776
  wires?: IR_Wire[];
775
777
  gnd?: IR_GND[];
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;
@@ -769,7 +772,6 @@ interface IR_Wire extends IR_GraphItem, Connection {
769
772
 
770
773
  type IR_BLOCK_T = IR_Block | AbstractBlock;
771
774
  interface IR_Graph extends IR_GraphItem {
772
- name?: string;
773
775
  blocks?: IR_BLOCK_T[];
774
776
  wires?: IR_Wire[];
775
777
  gnd?: IR_GND[];
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.5",
4
4
  "description": "Intermediate representation of the modular circuit",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",