circuit-json 0.0.317 → 0.0.319
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 +194 -38
- package/dist/index.mjs +13 -1
- 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
|
```
|
|
@@ -1603,6 +1604,7 @@ interface PcbPlatedHoleCircle {
|
|
|
1603
1604
|
pcb_port_id?: string
|
|
1604
1605
|
pcb_plated_hole_id: string
|
|
1605
1606
|
soldermask_margin?: number
|
|
1607
|
+
is_covered_with_solder_mask?: boolean
|
|
1606
1608
|
}
|
|
1607
1609
|
|
|
1608
1610
|
interface PcbHolePillWithRectPad {
|
|
@@ -1619,6 +1621,7 @@ interface PcbHolePillWithRectPad {
|
|
|
1619
1621
|
rect_border_radius?: number
|
|
1620
1622
|
hole_offset_x: Distance
|
|
1621
1623
|
hole_offset_y: Distance
|
|
1624
|
+
is_covered_with_solder_mask?: boolean
|
|
1622
1625
|
x: Distance
|
|
1623
1626
|
y: Distance
|
|
1624
1627
|
layers: LayerRef[]
|
|
@@ -1645,6 +1648,7 @@ interface PcbHoleRotatedPillWithRectPad {
|
|
|
1645
1648
|
rect_ccw_rotation: Rotation
|
|
1646
1649
|
hole_offset_x: Distance
|
|
1647
1650
|
hole_offset_y: Distance
|
|
1651
|
+
is_covered_with_solder_mask?: boolean
|
|
1648
1652
|
x: Distance
|
|
1649
1653
|
y: Distance
|
|
1650
1654
|
layers: LayerRef[]
|
|
@@ -1668,6 +1672,7 @@ interface PcbHoleCircularWithRectPad {
|
|
|
1668
1672
|
rect_border_radius?: number
|
|
1669
1673
|
hole_offset_x: Distance
|
|
1670
1674
|
hole_offset_y: Distance
|
|
1675
|
+
is_covered_with_solder_mask?: boolean
|
|
1671
1676
|
x: Distance
|
|
1672
1677
|
y: Distance
|
|
1673
1678
|
layers: LayerRef[]
|
|
@@ -1691,6 +1696,7 @@ interface PcbHoleWithPolygonPad {
|
|
|
1691
1696
|
pad_outline: { x: Distance; y: Distance }[]
|
|
1692
1697
|
hole_offset_x: Distance
|
|
1693
1698
|
hole_offset_y: Distance
|
|
1699
|
+
is_covered_with_solder_mask?: boolean
|
|
1694
1700
|
x: Distance
|
|
1695
1701
|
y: Distance
|
|
1696
1702
|
layers: LayerRef[]
|