circuit-json 0.0.423 → 0.0.425

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 CHANGED
@@ -2177,7 +2177,21 @@ interface PcbTraceRoutePointWire {
2177
2177
  layer: LayerRef
2178
2178
  }
2179
2179
 
2180
- type PcbTraceRoutePoint = PcbTraceRoutePointWire | PcbTraceRoutePointVia
2180
+ interface PcbTraceRoutePointThroughPad {
2181
+ route_type: "through_pad"
2182
+ start: Point
2183
+ end: Point
2184
+ width: Distance
2185
+ start_layer: LayerRef
2186
+ end_layer: LayerRef
2187
+ pcb_smtpad_id?: string
2188
+ pcb_plated_hole_id?: string
2189
+ }
2190
+
2191
+ type PcbTraceRoutePoint =
2192
+ | PcbTraceRoutePointWire
2193
+ | PcbTraceRoutePointVia
2194
+ | PcbTraceRoutePointThroughPad
2181
2195
  ```
2182
2196
 
2183
2197
  ### PcbTraceWarning