circuit-json 0.0.420 → 0.0.422

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
@@ -133,6 +133,7 @@ https://github.com/user-attachments/assets/2f28b7ba-689e-4d80-85b2-5bdef84b41f8
133
133
  - [PcbSilkscreenRect](#pcbsilkscreenrect)
134
134
  - [PcbSilkscreenText](#pcbsilkscreentext)
135
135
  - [PcbSolderPaste](#pcbsolderpaste)
136
+ - [SupplierFootprintMismatchWarning](#supplierfootprintmismatchwarning)
136
137
  - [PcbText](#pcbtext)
137
138
  - [PcbThermalSpoke](#pcbthermalspoke)
138
139
  - [PcbTrace](#pcbtrace)
@@ -2091,6 +2092,30 @@ interface PcbSolderPasteCircle {
2091
2092
  }
2092
2093
  ```
2093
2094
 
2095
+ ### SupplierFootprintMismatchWarning
2096
+
2097
+ [Source](https://github.com/tscircuit/circuit-json/blob/main/src/pcb/supplier_footprint_mismatch_warning.ts)
2098
+
2099
+ Warning emitted when a supplier part footprint does not match the expected footprint
2100
+
2101
+ ```typescript
2102
+ /** Warning emitted when a supplier part footprint does not match the expected footprint */
2103
+ interface SupplierFootprintMismatchWarning {
2104
+ type: "supplier_footprint_mismatch_warning"
2105
+ supplier_footprint_mismatch_warning_id: string
2106
+ warning_type: "supplier_footprint_mismatch_warning"
2107
+ message: string
2108
+ source_component_id: string
2109
+ pcb_component_id?: string
2110
+ pcb_group_id?: string
2111
+ subcircuit_id?: string
2112
+ supplier_name?: SupplierName
2113
+ supplier_part_number?: string
2114
+ supplier_footprint_url?: string
2115
+ footprint_copper_intersection_over_union: number
2116
+ }
2117
+ ```
2118
+
2094
2119
  ### PcbText
2095
2120
 
2096
2121
  [Source](https://github.com/tscircuit/circuit-json/blob/main/src/pcb/pcb_text.ts)
package/dist/index.d.mts CHANGED
@@ -384,6 +384,8 @@ declare const manufacturing_drc_properties: z.ZodObject<{
384
384
  min_plated_hole_drill_edge_to_drill_edge_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
385
385
  min_trace_to_pad_edge_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
386
386
  min_pad_edge_to_pad_edge_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
387
+ min_same_net_trace_edge_to_trace_edge_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
388
+ min_different_net_trace_edge_to_trace_edge_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
387
389
  min_via_hole_diameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
388
390
  min_via_pad_diameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
389
391
  }, "strip", z.ZodTypeAny, {
@@ -393,6 +395,8 @@ declare const manufacturing_drc_properties: z.ZodObject<{
393
395
  min_plated_hole_drill_edge_to_drill_edge_clearance?: number | undefined;
394
396
  min_trace_to_pad_edge_clearance?: number | undefined;
395
397
  min_pad_edge_to_pad_edge_clearance?: number | undefined;
398
+ min_same_net_trace_edge_to_trace_edge_clearance?: number | undefined;
399
+ min_different_net_trace_edge_to_trace_edge_clearance?: number | undefined;
396
400
  min_via_hole_diameter?: number | undefined;
397
401
  min_via_pad_diameter?: number | undefined;
398
402
  }, {
@@ -402,6 +406,8 @@ declare const manufacturing_drc_properties: z.ZodObject<{
402
406
  min_plated_hole_drill_edge_to_drill_edge_clearance?: string | number | undefined;
403
407
  min_trace_to_pad_edge_clearance?: string | number | undefined;
404
408
  min_pad_edge_to_pad_edge_clearance?: string | number | undefined;
409
+ min_same_net_trace_edge_to_trace_edge_clearance?: string | number | undefined;
410
+ min_different_net_trace_edge_to_trace_edge_clearance?: string | number | undefined;
405
411
  min_via_hole_diameter?: string | number | undefined;
406
412
  min_via_pad_diameter?: string | number | undefined;
407
413
  }>;
@@ -412,6 +418,8 @@ interface ManufacturingDrcProperties {
412
418
  min_plated_hole_drill_edge_to_drill_edge_clearance?: Length;
413
419
  min_trace_to_pad_edge_clearance?: Length;
414
420
  min_pad_edge_to_pad_edge_clearance?: Length;
421
+ min_same_net_trace_edge_to_trace_edge_clearance?: Length;
422
+ min_different_net_trace_edge_to_trace_edge_clearance?: Length;
415
423
  min_via_hole_diameter?: Length;
416
424
  min_via_pad_diameter?: Length;
417
425
  }
@@ -7558,6 +7566,8 @@ declare const pcb_board: z.ZodObject<{
7558
7566
  min_plated_hole_drill_edge_to_drill_edge_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
7559
7567
  min_trace_to_pad_edge_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
7560
7568
  min_pad_edge_to_pad_edge_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
7569
+ min_same_net_trace_edge_to_trace_edge_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
7570
+ min_different_net_trace_edge_to_trace_edge_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
7561
7571
  min_via_hole_diameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
7562
7572
  min_via_pad_diameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
7563
7573
  }, "strip", z.ZodTypeAny, {
@@ -7578,6 +7588,8 @@ declare const pcb_board: z.ZodObject<{
7578
7588
  min_plated_hole_drill_edge_to_drill_edge_clearance?: number | undefined;
7579
7589
  min_trace_to_pad_edge_clearance?: number | undefined;
7580
7590
  min_pad_edge_to_pad_edge_clearance?: number | undefined;
7591
+ min_same_net_trace_edge_to_trace_edge_clearance?: number | undefined;
7592
+ min_different_net_trace_edge_to_trace_edge_clearance?: number | undefined;
7581
7593
  min_via_hole_diameter?: number | undefined;
7582
7594
  min_via_pad_diameter?: number | undefined;
7583
7595
  shape?: "rect" | "polygon" | undefined;
@@ -7612,6 +7624,8 @@ declare const pcb_board: z.ZodObject<{
7612
7624
  min_plated_hole_drill_edge_to_drill_edge_clearance?: string | number | undefined;
7613
7625
  min_trace_to_pad_edge_clearance?: string | number | undefined;
7614
7626
  min_pad_edge_to_pad_edge_clearance?: string | number | undefined;
7627
+ min_same_net_trace_edge_to_trace_edge_clearance?: string | number | undefined;
7628
+ min_different_net_trace_edge_to_trace_edge_clearance?: string | number | undefined;
7615
7629
  min_via_hole_diameter?: string | number | undefined;
7616
7630
  min_via_pad_diameter?: string | number | undefined;
7617
7631
  thickness?: string | number | undefined;
@@ -10500,6 +10514,65 @@ interface PcbConnectorNotInAccessibleOrientationWarning {
10500
10514
  subcircuit_id?: string;
10501
10515
  }
10502
10516
 
10517
+ declare const supplier_footprint_mismatch_warning: z.ZodObject<{
10518
+ type: z.ZodLiteral<"supplier_footprint_mismatch_warning">;
10519
+ supplier_footprint_mismatch_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
10520
+ warning_type: z.ZodDefault<z.ZodLiteral<"supplier_footprint_mismatch_warning">>;
10521
+ message: z.ZodString;
10522
+ source_component_id: z.ZodString;
10523
+ pcb_component_id: z.ZodOptional<z.ZodString>;
10524
+ pcb_group_id: z.ZodOptional<z.ZodString>;
10525
+ subcircuit_id: z.ZodOptional<z.ZodString>;
10526
+ supplier_name: z.ZodOptional<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>>;
10527
+ supplier_part_number: z.ZodOptional<z.ZodString>;
10528
+ supplier_footprint_url: z.ZodOptional<z.ZodString>;
10529
+ footprint_copper_intersection_over_union: z.ZodNumber;
10530
+ }, "strip", z.ZodTypeAny, {
10531
+ message: string;
10532
+ type: "supplier_footprint_mismatch_warning";
10533
+ source_component_id: string;
10534
+ warning_type: "supplier_footprint_mismatch_warning";
10535
+ supplier_footprint_mismatch_warning_id: string;
10536
+ footprint_copper_intersection_over_union: number;
10537
+ pcb_component_id?: string | undefined;
10538
+ subcircuit_id?: string | undefined;
10539
+ pcb_group_id?: string | undefined;
10540
+ supplier_name?: "jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc" | undefined;
10541
+ supplier_part_number?: string | undefined;
10542
+ supplier_footprint_url?: string | undefined;
10543
+ }, {
10544
+ message: string;
10545
+ type: "supplier_footprint_mismatch_warning";
10546
+ source_component_id: string;
10547
+ footprint_copper_intersection_over_union: number;
10548
+ pcb_component_id?: string | undefined;
10549
+ subcircuit_id?: string | undefined;
10550
+ pcb_group_id?: string | undefined;
10551
+ warning_type?: "supplier_footprint_mismatch_warning" | undefined;
10552
+ supplier_footprint_mismatch_warning_id?: string | undefined;
10553
+ supplier_name?: "jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc" | undefined;
10554
+ supplier_part_number?: string | undefined;
10555
+ supplier_footprint_url?: string | undefined;
10556
+ }>;
10557
+ type SupplierFootprintMismatchWarningInput = z.input<typeof supplier_footprint_mismatch_warning>;
10558
+ /**
10559
+ * Warning emitted when a supplier part footprint does not match the expected footprint
10560
+ */
10561
+ interface SupplierFootprintMismatchWarning {
10562
+ type: "supplier_footprint_mismatch_warning";
10563
+ supplier_footprint_mismatch_warning_id: string;
10564
+ warning_type: "supplier_footprint_mismatch_warning";
10565
+ message: string;
10566
+ source_component_id: string;
10567
+ pcb_component_id?: string;
10568
+ pcb_group_id?: string;
10569
+ subcircuit_id?: string;
10570
+ supplier_name?: SupplierName;
10571
+ supplier_part_number?: string;
10572
+ supplier_footprint_url?: string;
10573
+ footprint_copper_intersection_over_union: number;
10574
+ }
10575
+
10503
10576
  declare const pcb_breakout_point: z.ZodObject<{
10504
10577
  type: z.ZodLiteral<"pcb_breakout_point">;
10505
10578
  pcb_breakout_point_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -12053,7 +12126,7 @@ interface PcbCourtyardCircle {
12053
12126
  color?: string;
12054
12127
  }
12055
12128
 
12056
- type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceWarning | PcbTraceError | PcbTraceMissingError | PcbMissingFootprintError | ExternalFootprintLoadError | CircuitJsonFootprintLoadError | PcbManualEditConflictWarning | PcbConnectorNotInAccessibleOrientationWarning | PcbPortNotMatchedError | PcbPortNotConnectedError | PcbVia | PcbNet | PcbBoard | PcbPanel | PcbPlacementError | PcbPanelizationPlacementError | PcbTraceHint | PcbSilkscreenLine | PcbSilkscreenPath | PcbSilkscreenText | PcbSilkscreenPill | PcbCopperText | PcbSilkscreenRect | PcbSilkscreenCircle | PcbSilkscreenOval | PcbFabricationNoteRect | PcbFabricationNoteDimension | PcbNoteText | PcbNoteRect | PcbNotePath | PcbNoteLine | PcbNoteDimension | PcbAutoroutingError | PcbFootprintOverlapError | PcbCutout | PcbBreakoutPoint | PcbGroundPlane | PcbGroundPlaneRegion | PcbThermalSpoke | PcbCopperPour | PcbComponentOutsideBoardError | PcbComponentNotOnBoardEdgeError | PcbComponentInvalidLayerError | PcbViaClearanceError | PcbViaTraceClearanceError | PcbPadPadClearanceError | PcbPadTraceClearanceError | PcbCourtyardRect | PcbCourtyardOutline | PcbCourtyardPolygon | PcbCourtyardCircle;
12129
+ type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceWarning | PcbTraceError | PcbTraceMissingError | PcbMissingFootprintError | ExternalFootprintLoadError | CircuitJsonFootprintLoadError | PcbManualEditConflictWarning | PcbConnectorNotInAccessibleOrientationWarning | SupplierFootprintMismatchWarning | PcbPortNotMatchedError | PcbPortNotConnectedError | PcbVia | PcbNet | PcbBoard | PcbPanel | PcbPlacementError | PcbPanelizationPlacementError | PcbTraceHint | PcbSilkscreenLine | PcbSilkscreenPath | PcbSilkscreenText | PcbSilkscreenPill | PcbCopperText | PcbSilkscreenRect | PcbSilkscreenCircle | PcbSilkscreenOval | PcbFabricationNoteRect | PcbFabricationNoteDimension | PcbNoteText | PcbNoteRect | PcbNotePath | PcbNoteLine | PcbNoteDimension | PcbAutoroutingError | PcbFootprintOverlapError | PcbCutout | PcbBreakoutPoint | PcbGroundPlane | PcbGroundPlaneRegion | PcbThermalSpoke | PcbCopperPour | PcbComponentOutsideBoardError | PcbComponentNotOnBoardEdgeError | PcbComponentInvalidLayerError | PcbViaClearanceError | PcbViaTraceClearanceError | PcbPadPadClearanceError | PcbPadTraceClearanceError | PcbCourtyardRect | PcbCourtyardOutline | PcbCourtyardPolygon | PcbCourtyardCircle;
12057
12130
 
12058
12131
  interface SchematicBox {
12059
12132
  type: "schematic_box";
@@ -37659,6 +37732,45 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
37659
37732
  warning_type?: "pcb_connector_not_in_accessible_orientation_warning" | undefined;
37660
37733
  pcb_board_id?: string | undefined;
37661
37734
  pcb_connector_not_in_accessible_orientation_warning_id?: string | undefined;
37735
+ }>, z.ZodObject<{
37736
+ type: z.ZodLiteral<"supplier_footprint_mismatch_warning">;
37737
+ supplier_footprint_mismatch_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
37738
+ warning_type: z.ZodDefault<z.ZodLiteral<"supplier_footprint_mismatch_warning">>;
37739
+ message: z.ZodString;
37740
+ source_component_id: z.ZodString;
37741
+ pcb_component_id: z.ZodOptional<z.ZodString>;
37742
+ pcb_group_id: z.ZodOptional<z.ZodString>;
37743
+ subcircuit_id: z.ZodOptional<z.ZodString>;
37744
+ supplier_name: z.ZodOptional<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>>;
37745
+ supplier_part_number: z.ZodOptional<z.ZodString>;
37746
+ supplier_footprint_url: z.ZodOptional<z.ZodString>;
37747
+ footprint_copper_intersection_over_union: z.ZodNumber;
37748
+ }, "strip", z.ZodTypeAny, {
37749
+ message: string;
37750
+ type: "supplier_footprint_mismatch_warning";
37751
+ source_component_id: string;
37752
+ warning_type: "supplier_footprint_mismatch_warning";
37753
+ supplier_footprint_mismatch_warning_id: string;
37754
+ footprint_copper_intersection_over_union: number;
37755
+ pcb_component_id?: string | undefined;
37756
+ subcircuit_id?: string | undefined;
37757
+ pcb_group_id?: string | undefined;
37758
+ supplier_name?: "jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc" | undefined;
37759
+ supplier_part_number?: string | undefined;
37760
+ supplier_footprint_url?: string | undefined;
37761
+ }, {
37762
+ message: string;
37763
+ type: "supplier_footprint_mismatch_warning";
37764
+ source_component_id: string;
37765
+ footprint_copper_intersection_over_union: number;
37766
+ pcb_component_id?: string | undefined;
37767
+ subcircuit_id?: string | undefined;
37768
+ pcb_group_id?: string | undefined;
37769
+ warning_type?: "supplier_footprint_mismatch_warning" | undefined;
37770
+ supplier_footprint_mismatch_warning_id?: string | undefined;
37771
+ supplier_name?: "jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc" | undefined;
37772
+ supplier_part_number?: string | undefined;
37773
+ supplier_footprint_url?: string | undefined;
37662
37774
  }>, z.ZodUnion<[z.ZodObject<{
37663
37775
  type: z.ZodLiteral<"pcb_plated_hole">;
37664
37776
  shape: z.ZodLiteral<"circle">;
@@ -39336,6 +39448,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
39336
39448
  min_plated_hole_drill_edge_to_drill_edge_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
39337
39449
  min_trace_to_pad_edge_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
39338
39450
  min_pad_edge_to_pad_edge_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
39451
+ min_same_net_trace_edge_to_trace_edge_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
39452
+ min_different_net_trace_edge_to_trace_edge_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
39339
39453
  min_via_hole_diameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
39340
39454
  min_via_pad_diameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
39341
39455
  }, "strip", z.ZodTypeAny, {
@@ -39356,6 +39470,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
39356
39470
  min_plated_hole_drill_edge_to_drill_edge_clearance?: number | undefined;
39357
39471
  min_trace_to_pad_edge_clearance?: number | undefined;
39358
39472
  min_pad_edge_to_pad_edge_clearance?: number | undefined;
39473
+ min_same_net_trace_edge_to_trace_edge_clearance?: number | undefined;
39474
+ min_different_net_trace_edge_to_trace_edge_clearance?: number | undefined;
39359
39475
  min_via_hole_diameter?: number | undefined;
39360
39476
  min_via_pad_diameter?: number | undefined;
39361
39477
  shape?: "rect" | "polygon" | undefined;
@@ -39390,6 +39506,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
39390
39506
  min_plated_hole_drill_edge_to_drill_edge_clearance?: string | number | undefined;
39391
39507
  min_trace_to_pad_edge_clearance?: string | number | undefined;
39392
39508
  min_pad_edge_to_pad_edge_clearance?: string | number | undefined;
39509
+ min_same_net_trace_edge_to_trace_edge_clearance?: string | number | undefined;
39510
+ min_different_net_trace_edge_to_trace_edge_clearance?: string | number | undefined;
39393
39511
  min_via_hole_diameter?: string | number | undefined;
39394
39512
  min_via_pad_diameter?: string | number | undefined;
39395
39513
  thickness?: string | number | undefined;
@@ -55743,6 +55861,45 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55743
55861
  warning_type?: "pcb_connector_not_in_accessible_orientation_warning" | undefined;
55744
55862
  pcb_board_id?: string | undefined;
55745
55863
  pcb_connector_not_in_accessible_orientation_warning_id?: string | undefined;
55864
+ }>, z.ZodObject<{
55865
+ type: z.ZodLiteral<"supplier_footprint_mismatch_warning">;
55866
+ supplier_footprint_mismatch_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
55867
+ warning_type: z.ZodDefault<z.ZodLiteral<"supplier_footprint_mismatch_warning">>;
55868
+ message: z.ZodString;
55869
+ source_component_id: z.ZodString;
55870
+ pcb_component_id: z.ZodOptional<z.ZodString>;
55871
+ pcb_group_id: z.ZodOptional<z.ZodString>;
55872
+ subcircuit_id: z.ZodOptional<z.ZodString>;
55873
+ supplier_name: z.ZodOptional<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>>;
55874
+ supplier_part_number: z.ZodOptional<z.ZodString>;
55875
+ supplier_footprint_url: z.ZodOptional<z.ZodString>;
55876
+ footprint_copper_intersection_over_union: z.ZodNumber;
55877
+ }, "strip", z.ZodTypeAny, {
55878
+ message: string;
55879
+ type: "supplier_footprint_mismatch_warning";
55880
+ source_component_id: string;
55881
+ warning_type: "supplier_footprint_mismatch_warning";
55882
+ supplier_footprint_mismatch_warning_id: string;
55883
+ footprint_copper_intersection_over_union: number;
55884
+ pcb_component_id?: string | undefined;
55885
+ subcircuit_id?: string | undefined;
55886
+ pcb_group_id?: string | undefined;
55887
+ supplier_name?: "jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc" | undefined;
55888
+ supplier_part_number?: string | undefined;
55889
+ supplier_footprint_url?: string | undefined;
55890
+ }, {
55891
+ message: string;
55892
+ type: "supplier_footprint_mismatch_warning";
55893
+ source_component_id: string;
55894
+ footprint_copper_intersection_over_union: number;
55895
+ pcb_component_id?: string | undefined;
55896
+ subcircuit_id?: string | undefined;
55897
+ pcb_group_id?: string | undefined;
55898
+ warning_type?: "supplier_footprint_mismatch_warning" | undefined;
55899
+ supplier_footprint_mismatch_warning_id?: string | undefined;
55900
+ supplier_name?: "jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc" | undefined;
55901
+ supplier_part_number?: string | undefined;
55902
+ supplier_footprint_url?: string | undefined;
55746
55903
  }>, z.ZodUnion<[z.ZodObject<{
55747
55904
  type: z.ZodLiteral<"pcb_plated_hole">;
55748
55905
  shape: z.ZodLiteral<"circle">;
@@ -57420,6 +57577,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
57420
57577
  min_plated_hole_drill_edge_to_drill_edge_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
57421
57578
  min_trace_to_pad_edge_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
57422
57579
  min_pad_edge_to_pad_edge_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
57580
+ min_same_net_trace_edge_to_trace_edge_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
57581
+ min_different_net_trace_edge_to_trace_edge_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
57423
57582
  min_via_hole_diameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
57424
57583
  min_via_pad_diameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
57425
57584
  }, "strip", z.ZodTypeAny, {
@@ -57440,6 +57599,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
57440
57599
  min_plated_hole_drill_edge_to_drill_edge_clearance?: number | undefined;
57441
57600
  min_trace_to_pad_edge_clearance?: number | undefined;
57442
57601
  min_pad_edge_to_pad_edge_clearance?: number | undefined;
57602
+ min_same_net_trace_edge_to_trace_edge_clearance?: number | undefined;
57603
+ min_different_net_trace_edge_to_trace_edge_clearance?: number | undefined;
57443
57604
  min_via_hole_diameter?: number | undefined;
57444
57605
  min_via_pad_diameter?: number | undefined;
57445
57606
  shape?: "rect" | "polygon" | undefined;
@@ -57474,6 +57635,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
57474
57635
  min_plated_hole_drill_edge_to_drill_edge_clearance?: string | number | undefined;
57475
57636
  min_trace_to_pad_edge_clearance?: string | number | undefined;
57476
57637
  min_pad_edge_to_pad_edge_clearance?: string | number | undefined;
57638
+ min_same_net_trace_edge_to_trace_edge_clearance?: string | number | undefined;
57639
+ min_different_net_trace_edge_to_trace_edge_clearance?: string | number | undefined;
57477
57640
  min_via_hole_diameter?: string | number | undefined;
57478
57641
  min_via_pad_diameter?: string | number | undefined;
57479
57642
  thickness?: string | number | undefined;
@@ -68874,4 +69037,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
68874
69037
  */
68875
69038
  type CircuitJson = AnyCircuitElement[];
68876
69039
 
68877
- export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type Asset, type AssetInput, type BRepShape, type BaseCircuitJsonError, type BaseCircuitJsonErrorInput, type CadComponent, type CadComponentAnchorAlignment, type CadComponentInput, type CadModelAxisDirection, type CadModelFormat, type CircuitJson, type CircuitJsonError, type CircuitJsonFootprintLoadError, type CircuitJsonFootprintLoadErrorInput, type Distance, type ExperimentType, type ExternalFootprintLoadError, type ExternalFootprintLoadErrorInput, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type KicadAt, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, type LayerRef, type LayerRefInput, type Length, type ManufacturingDrcProperties, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBCopperText, type PCBCourtyardOutline, type PCBCourtyardPolygon, type PCBCourtyardRect, type PCBFabricationNoteDimension, type PCBFabricationNotePath, type PCBFabricationNoteRect, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPanel, type PCBPanelizationPlacementError, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbComponentInvalidLayerError, type PcbComponentInvalidLayerErrorInput, type PcbComponentMetadata, type PcbComponentNotOnBoardEdgeError, type PcbComponentNotOnBoardEdgeErrorInput, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbConnectorNotInAccessibleOrientationWarning, type PcbConnectorNotInAccessibleOrientationWarningInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCopperText, type PcbCopperTextInput, type PcbCourtyardCircle, type PcbCourtyardCircleInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardOverlapError, type PcbCourtyardOverlapErrorInput, type PcbCourtyardPolygon, type PcbCourtyardPolygonInput, type PcbCourtyardRect, type PcbCourtyardRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPath, type PcbCutoutPathInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNoteDimension, type PcbFabricationNoteDimensionInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteRect, type PcbFabricationNoteRectInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircle, type PcbHoleCircleInput, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePill, type PcbHolePillInput, type PcbHolePillWithRectPad, type PcbHoleRect, type PcbHoleRectInput, type PcbHoleRotatedPill, type PcbHoleRotatedPillInput, type PcbHoleRotatedPillWithRectPad, type PcbHoleWithPolygonPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbNet, type PcbNetInput, type PcbNoteDimension, type PcbNoteDimensionInput, type PcbNoteLine, type PcbNoteLineInput, type PcbNotePath, type PcbNotePathInput, type PcbNoteRect, type PcbNoteRectInput, type PcbNoteText, type PcbNoteTextInput, type PcbPadPadClearanceError, type PcbPadPadClearanceErrorInput, type PcbPadTraceClearanceError, type PcbPadTraceClearanceErrorInput, type PcbPanel, type PcbPanelInput, type PcbPanelizationPlacementError, type PcbPanelizationPlacementErrorInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotConnectedError, type PcbPortNotConnectedErrorInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRenderLayer, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenPill, type PcbSilkscreenPillDeprecated, type PcbSilkscreenPillInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadPolygon, type PcbSmtPadRect, type PcbSmtPadRotatedPill, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbThermalSpoke, type PcbThermalSpokeInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceMissingError, type PcbTraceMissingErrorInput, type PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbTraceWarning, type PcbTraceWarningInput, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type PcbViaTraceClearanceError, type PcbViaTraceClearanceErrorInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicArc, type SchematicArcInput, type SchematicBox, type SchematicBoxInput, type SchematicCircle, type SchematicCircleInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicRect, type SchematicRectInput, type SchematicSheet, type SchematicSheetInput, type SchematicSymbol, type SchematicSymbolInput, type SchematicSymbolMetadata, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcCurrentSource, type SimulationAcCurrentSourceInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationCurrentSource, type SimulationCurrentSourceInput, type SimulationDcCurrentSource, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationOpAmp, type SimulationOpAmpInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationUnknownExperimentError, type SimulationUnknownExperimentErrorInput, type SimulationVoltageProbe, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceAmbiguousPortReference, type SourceAmbiguousPortReferenceInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceComponentInternalConnection, type SourceComponentPinsUnderspecifiedWarning, type SourceComponentPinsUnderspecifiedWarningInput, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceI2cMisconfiguredError, type SourceI2cMisconfiguredErrorInput, type SourceInterconnect, type SourceInterconnectInput, type SourceInvalidComponentPropertyError, type SourceInvalidComponentPropertyErrorInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingManufacturerPartNumberWarning, type SourceMissingManufacturerPartNumberWarningInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourceNoGroundPinDefinedWarning, type SourceNoGroundPinDefinedWarningInput, type SourceNoPowerPinDefinedWarning, type SourceNoPowerPinDefinedWarningInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinAttributes, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePinMustBeConnectedError, type SourcePinMustBeConnectedErrorInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleConnector, type SourceSimpleConnectorInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleCurrentSource, type SourceSimpleCurrentSourceInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleFiducial, type SourceSimpleFiducialInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimpleOpAmp, type SourceSimpleOpAmpInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePinout, type SourceSimplePinoutInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceSimpleVoltageProbe, type SourceSimpleVoltageProbeInput, type SourceSimpleVoltageSource, type SourceSimpleVoltageSourceInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type UnknownErrorFindingPart, type UnknownErrorFindingPartInput, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, asset, base_circuit_json_error, battery_capacity, brep_shape, cadModelDefaultDirectionMap, cad_component, cad_model_axis_directions, cad_model_formats, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layer_ref, layer_string, length, manufacturing_drc_properties, ms, ninePointAnchor, pcbRenderLayer, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_not_on_board_edge_error, pcb_component_outside_board_error, pcb_connector_not_in_accessible_orientation_warning, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_copper_text, pcb_courtyard_circle, pcb_courtyard_outline, pcb_courtyard_overlap_error, pcb_courtyard_polygon, pcb_courtyard_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_path, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_dimension, pcb_fabrication_note_path, pcb_fabrication_note_rect, pcb_fabrication_note_text, pcb_footprint_overlap_error, pcb_ground_plane, pcb_ground_plane_region, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_circle_shape, pcb_hole_oval_shape, pcb_hole_pill_shape, pcb_hole_rect_shape, pcb_hole_rotated_pill_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_net, pcb_note_dimension, pcb_note_line, pcb_note_path, pcb_note_rect, pcb_note_text, pcb_pad_pad_clearance_error, pcb_pad_trace_clearance_error, pcb_panel, pcb_panelization_placement_error, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_connected_error, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_pill, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_thermal_spoke, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_missing_error, pcb_trace_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_trace_warning, pcb_via, pcb_via_clearance_error, pcb_via_trace_clearance_error, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, rotation, route_hint_point, schematic_arc, schematic_box, schematic_circle, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_rect, schematic_sheet, schematic_symbol, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_current_source, simulation_ac_voltage_source, simulation_current_source, simulation_dc_current_source, simulation_dc_voltage_source, simulation_experiment, simulation_op_amp, simulation_switch, simulation_transient_voltage_graph, simulation_unknown_experiment_error, simulation_voltage_probe, simulation_voltage_source, size, source_ambiguous_port_reference, source_board, source_component_base, source_component_internal_connection, source_component_pins_underspecified_warning, source_failed_to_create_component_error, source_group, source_i2c_misconfigured_error, source_interconnect, source_invalid_component_property_error, source_manually_placed_via, source_missing_manufacturer_part_number_warning, source_missing_property_error, source_net, source_no_ground_pin_defined_warning, source_no_power_pin_defined_warning, source_pcb_ground_plane, source_pin_attributes, source_pin_missing_trace_warning, source_pin_must_be_connected_error, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_connector, source_simple_crystal, source_simple_current_source, source_simple_diode, source_simple_fiducial, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_op_amp, source_simple_pin_header, source_simple_pinout, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_simple_voltage_probe, source_simple_voltage_source, source_trace, source_trace_not_connected_error, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
69040
+ export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type Asset, type AssetInput, type BRepShape, type BaseCircuitJsonError, type BaseCircuitJsonErrorInput, type CadComponent, type CadComponentAnchorAlignment, type CadComponentInput, type CadModelAxisDirection, type CadModelFormat, type CircuitJson, type CircuitJsonError, type CircuitJsonFootprintLoadError, type CircuitJsonFootprintLoadErrorInput, type Distance, type ExperimentType, type ExternalFootprintLoadError, type ExternalFootprintLoadErrorInput, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type KicadAt, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, type LayerRef, type LayerRefInput, type Length, type ManufacturingDrcProperties, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBCopperText, type PCBCourtyardOutline, type PCBCourtyardPolygon, type PCBCourtyardRect, type PCBFabricationNoteDimension, type PCBFabricationNotePath, type PCBFabricationNoteRect, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPanel, type PCBPanelizationPlacementError, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbComponentInvalidLayerError, type PcbComponentInvalidLayerErrorInput, type PcbComponentMetadata, type PcbComponentNotOnBoardEdgeError, type PcbComponentNotOnBoardEdgeErrorInput, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbConnectorNotInAccessibleOrientationWarning, type PcbConnectorNotInAccessibleOrientationWarningInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCopperText, type PcbCopperTextInput, type PcbCourtyardCircle, type PcbCourtyardCircleInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardOverlapError, type PcbCourtyardOverlapErrorInput, type PcbCourtyardPolygon, type PcbCourtyardPolygonInput, type PcbCourtyardRect, type PcbCourtyardRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPath, type PcbCutoutPathInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNoteDimension, type PcbFabricationNoteDimensionInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteRect, type PcbFabricationNoteRectInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircle, type PcbHoleCircleInput, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePill, type PcbHolePillInput, type PcbHolePillWithRectPad, type PcbHoleRect, type PcbHoleRectInput, type PcbHoleRotatedPill, type PcbHoleRotatedPillInput, type PcbHoleRotatedPillWithRectPad, type PcbHoleWithPolygonPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbNet, type PcbNetInput, type PcbNoteDimension, type PcbNoteDimensionInput, type PcbNoteLine, type PcbNoteLineInput, type PcbNotePath, type PcbNotePathInput, type PcbNoteRect, type PcbNoteRectInput, type PcbNoteText, type PcbNoteTextInput, type PcbPadPadClearanceError, type PcbPadPadClearanceErrorInput, type PcbPadTraceClearanceError, type PcbPadTraceClearanceErrorInput, type PcbPanel, type PcbPanelInput, type PcbPanelizationPlacementError, type PcbPanelizationPlacementErrorInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotConnectedError, type PcbPortNotConnectedErrorInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRenderLayer, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenPill, type PcbSilkscreenPillDeprecated, type PcbSilkscreenPillInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadPolygon, type PcbSmtPadRect, type PcbSmtPadRotatedPill, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbThermalSpoke, type PcbThermalSpokeInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceMissingError, type PcbTraceMissingErrorInput, type PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbTraceWarning, type PcbTraceWarningInput, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type PcbViaTraceClearanceError, type PcbViaTraceClearanceErrorInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicArc, type SchematicArcInput, type SchematicBox, type SchematicBoxInput, type SchematicCircle, type SchematicCircleInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicRect, type SchematicRectInput, type SchematicSheet, type SchematicSheetInput, type SchematicSymbol, type SchematicSymbolInput, type SchematicSymbolMetadata, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcCurrentSource, type SimulationAcCurrentSourceInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationCurrentSource, type SimulationCurrentSourceInput, type SimulationDcCurrentSource, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationOpAmp, type SimulationOpAmpInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationUnknownExperimentError, type SimulationUnknownExperimentErrorInput, type SimulationVoltageProbe, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceAmbiguousPortReference, type SourceAmbiguousPortReferenceInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceComponentInternalConnection, type SourceComponentPinsUnderspecifiedWarning, type SourceComponentPinsUnderspecifiedWarningInput, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceI2cMisconfiguredError, type SourceI2cMisconfiguredErrorInput, type SourceInterconnect, type SourceInterconnectInput, type SourceInvalidComponentPropertyError, type SourceInvalidComponentPropertyErrorInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingManufacturerPartNumberWarning, type SourceMissingManufacturerPartNumberWarningInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourceNoGroundPinDefinedWarning, type SourceNoGroundPinDefinedWarningInput, type SourceNoPowerPinDefinedWarning, type SourceNoPowerPinDefinedWarningInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinAttributes, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePinMustBeConnectedError, type SourcePinMustBeConnectedErrorInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleConnector, type SourceSimpleConnectorInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleCurrentSource, type SourceSimpleCurrentSourceInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleFiducial, type SourceSimpleFiducialInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimpleOpAmp, type SourceSimpleOpAmpInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePinout, type SourceSimplePinoutInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceSimpleVoltageProbe, type SourceSimpleVoltageProbeInput, type SourceSimpleVoltageSource, type SourceSimpleVoltageSourceInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierFootprintMismatchWarning, type SupplierFootprintMismatchWarningInput, type SupplierName, type UnknownErrorFindingPart, type UnknownErrorFindingPartInput, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, asset, base_circuit_json_error, battery_capacity, brep_shape, cadModelDefaultDirectionMap, cad_component, cad_model_axis_directions, cad_model_formats, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layer_ref, layer_string, length, manufacturing_drc_properties, ms, ninePointAnchor, pcbRenderLayer, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_not_on_board_edge_error, pcb_component_outside_board_error, pcb_connector_not_in_accessible_orientation_warning, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_copper_text, pcb_courtyard_circle, pcb_courtyard_outline, pcb_courtyard_overlap_error, pcb_courtyard_polygon, pcb_courtyard_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_path, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_dimension, pcb_fabrication_note_path, pcb_fabrication_note_rect, pcb_fabrication_note_text, pcb_footprint_overlap_error, pcb_ground_plane, pcb_ground_plane_region, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_circle_shape, pcb_hole_oval_shape, pcb_hole_pill_shape, pcb_hole_rect_shape, pcb_hole_rotated_pill_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_net, pcb_note_dimension, pcb_note_line, pcb_note_path, pcb_note_rect, pcb_note_text, pcb_pad_pad_clearance_error, pcb_pad_trace_clearance_error, pcb_panel, pcb_panelization_placement_error, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_connected_error, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_pill, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_thermal_spoke, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_missing_error, pcb_trace_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_trace_warning, pcb_via, pcb_via_clearance_error, pcb_via_trace_clearance_error, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, rotation, route_hint_point, schematic_arc, schematic_box, schematic_circle, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_rect, schematic_sheet, schematic_symbol, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_current_source, simulation_ac_voltage_source, simulation_current_source, simulation_dc_current_source, simulation_dc_voltage_source, simulation_experiment, simulation_op_amp, simulation_switch, simulation_transient_voltage_graph, simulation_unknown_experiment_error, simulation_voltage_probe, simulation_voltage_source, size, source_ambiguous_port_reference, source_board, source_component_base, source_component_internal_connection, source_component_pins_underspecified_warning, source_failed_to_create_component_error, source_group, source_i2c_misconfigured_error, source_interconnect, source_invalid_component_property_error, source_manually_placed_via, source_missing_manufacturer_part_number_warning, source_missing_property_error, source_net, source_no_ground_pin_defined_warning, source_no_power_pin_defined_warning, source_pcb_ground_plane, source_pin_attributes, source_pin_missing_trace_warning, source_pin_must_be_connected_error, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_connector, source_simple_crystal, source_simple_current_source, source_simple_diode, source_simple_fiducial, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_op_amp, source_simple_pin_header, source_simple_pinout, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_simple_voltage_probe, source_simple_voltage_source, source_trace, source_trace_not_connected_error, supplier_footprint_mismatch_warning, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };