circuit-json 0.0.315 → 0.0.316
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/README.md +6 -0
- package/dist/index.d.mts +219 -0
- package/dist/index.mjs +36 -18
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1349,6 +1349,7 @@ interface PcbHoleCircle {
|
|
|
1349
1349
|
hole_diameter: number
|
|
1350
1350
|
x: Distance
|
|
1351
1351
|
y: Distance
|
|
1352
|
+
soldermask_margin?: number
|
|
1352
1353
|
}
|
|
1353
1354
|
```
|
|
1354
1355
|
|
|
@@ -1600,6 +1601,7 @@ interface PcbPlatedHoleCircle {
|
|
|
1600
1601
|
pcb_component_id?: string
|
|
1601
1602
|
pcb_port_id?: string
|
|
1602
1603
|
pcb_plated_hole_id: string
|
|
1604
|
+
soldermask_margin?: number
|
|
1603
1605
|
}
|
|
1604
1606
|
|
|
1605
1607
|
interface PcbHolePillWithRectPad {
|
|
@@ -1623,6 +1625,7 @@ interface PcbHolePillWithRectPad {
|
|
|
1623
1625
|
pcb_component_id?: string
|
|
1624
1626
|
pcb_port_id?: string
|
|
1625
1627
|
pcb_plated_hole_id: string
|
|
1628
|
+
soldermask_margin?: number
|
|
1626
1629
|
}
|
|
1627
1630
|
|
|
1628
1631
|
interface PcbHoleRotatedPillWithRectPad {
|
|
@@ -1648,6 +1651,7 @@ interface PcbHoleRotatedPillWithRectPad {
|
|
|
1648
1651
|
pcb_component_id?: string
|
|
1649
1652
|
pcb_port_id?: string
|
|
1650
1653
|
pcb_plated_hole_id: string
|
|
1654
|
+
soldermask_margin?: number
|
|
1651
1655
|
}
|
|
1652
1656
|
|
|
1653
1657
|
interface PcbHoleCircularWithRectPad {
|
|
@@ -1670,6 +1674,7 @@ interface PcbHoleCircularWithRectPad {
|
|
|
1670
1674
|
pcb_component_id?: string
|
|
1671
1675
|
pcb_port_id?: string
|
|
1672
1676
|
pcb_plated_hole_id: string
|
|
1677
|
+
soldermask_margin?: number
|
|
1673
1678
|
}
|
|
1674
1679
|
|
|
1675
1680
|
/** Defines a plated hole with a polygonal pad on the PCB */
|
|
@@ -1692,6 +1697,7 @@ interface PcbHoleWithPolygonPad {
|
|
|
1692
1697
|
pcb_component_id?: string
|
|
1693
1698
|
pcb_port_id?: string
|
|
1694
1699
|
pcb_plated_hole_id: string
|
|
1700
|
+
soldermask_margin?: number
|
|
1695
1701
|
}
|
|
1696
1702
|
```
|
|
1697
1703
|
|