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