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