circuit-json 0.0.422 → 0.0.424

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/dist/index.mjs CHANGED
@@ -1725,6 +1725,7 @@ var manufacturing_drc_properties = z92.object({
1725
1725
  min_pad_edge_to_pad_edge_clearance: length.optional(),
1726
1726
  min_same_net_trace_edge_to_trace_edge_clearance: length.optional(),
1727
1727
  min_different_net_trace_edge_to_trace_edge_clearance: length.optional(),
1728
+ min_via_edge_to_pad_edge_clearance: length.optional(),
1728
1729
  min_via_hole_diameter: length.optional(),
1729
1730
  min_via_pad_diameter: length.optional()
1730
1731
  });
@@ -2323,9 +2324,20 @@ var pcb_trace_route_point_via = z100.object({
2323
2324
  from_layer: layer_ref,
2324
2325
  to_layer: layer_ref
2325
2326
  });
2327
+ var pcb_trace_route_point_through_pad = z100.object({
2328
+ route_type: z100.literal("through_pad"),
2329
+ start: point,
2330
+ end: point,
2331
+ width: distance,
2332
+ start_layer: layer_ref,
2333
+ end_layer: layer_ref,
2334
+ pcb_smtpad_id: z100.string().optional(),
2335
+ pcb_plated_hole_id: z100.string().optional()
2336
+ });
2326
2337
  var pcb_trace_route_point = z100.union([
2327
2338
  pcb_trace_route_point_wire,
2328
- pcb_trace_route_point_via
2339
+ pcb_trace_route_point_via,
2340
+ pcb_trace_route_point_through_pad
2329
2341
  ]);
2330
2342
  var pcb_trace = z100.object({
2331
2343
  type: z100.literal("pcb_trace"),
@@ -4022,6 +4034,7 @@ export {
4022
4034
  pcb_trace_hint,
4023
4035
  pcb_trace_missing_error,
4024
4036
  pcb_trace_route_point,
4037
+ pcb_trace_route_point_through_pad,
4025
4038
  pcb_trace_route_point_via,
4026
4039
  pcb_trace_route_point_wire,
4027
4040
  pcb_trace_warning,