circuit-json 0.0.317 → 0.0.318
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 +5 -0
- package/dist/index.d.mts +184 -38
- package/dist/index.mjs +11 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1350,6 +1350,7 @@ interface PcbHoleCircle {
|
|
|
1350
1350
|
hole_diameter: number
|
|
1351
1351
|
x: Distance
|
|
1352
1352
|
y: Distance
|
|
1353
|
+
is_covered_with_solder_mask?: boolean
|
|
1353
1354
|
soldermask_margin?: number
|
|
1354
1355
|
}
|
|
1355
1356
|
```
|
|
@@ -1619,6 +1620,7 @@ interface PcbHolePillWithRectPad {
|
|
|
1619
1620
|
rect_border_radius?: number
|
|
1620
1621
|
hole_offset_x: Distance
|
|
1621
1622
|
hole_offset_y: Distance
|
|
1623
|
+
is_covered_with_solder_mask?: boolean
|
|
1622
1624
|
x: Distance
|
|
1623
1625
|
y: Distance
|
|
1624
1626
|
layers: LayerRef[]
|
|
@@ -1645,6 +1647,7 @@ interface PcbHoleRotatedPillWithRectPad {
|
|
|
1645
1647
|
rect_ccw_rotation: Rotation
|
|
1646
1648
|
hole_offset_x: Distance
|
|
1647
1649
|
hole_offset_y: Distance
|
|
1650
|
+
is_covered_with_solder_mask?: boolean
|
|
1648
1651
|
x: Distance
|
|
1649
1652
|
y: Distance
|
|
1650
1653
|
layers: LayerRef[]
|
|
@@ -1668,6 +1671,7 @@ interface PcbHoleCircularWithRectPad {
|
|
|
1668
1671
|
rect_border_radius?: number
|
|
1669
1672
|
hole_offset_x: Distance
|
|
1670
1673
|
hole_offset_y: Distance
|
|
1674
|
+
is_covered_with_solder_mask?: boolean
|
|
1671
1675
|
x: Distance
|
|
1672
1676
|
y: Distance
|
|
1673
1677
|
layers: LayerRef[]
|
|
@@ -1691,6 +1695,7 @@ interface PcbHoleWithPolygonPad {
|
|
|
1691
1695
|
pad_outline: { x: Distance; y: Distance }[]
|
|
1692
1696
|
hole_offset_x: Distance
|
|
1693
1697
|
hole_offset_y: Distance
|
|
1698
|
+
is_covered_with_solder_mask?: boolean
|
|
1694
1699
|
x: Distance
|
|
1695
1700
|
y: Distance
|
|
1696
1701
|
layers: LayerRef[]
|