circuit-json 0.0.153 → 0.0.155

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
@@ -87,7 +87,7 @@ and is the primary way that Circuit JSON is defined and maintained.
87
87
  - [PcbTrace](#pcbtrace)
88
88
  - [PcbTraceError](#pcbtraceerror)
89
89
  - [PcbTraceHint](#pcbtracehint)
90
- - [Schematic Elements](#schematic-elements) - [SchematicBox](#schematicbox) - [SchematicComponent](#schematiccomponent) - [SchematicError](#schematicerror) - [SchematicLine](#schematicline) - [SchematicPath](#schematicpath) - [SchematicPort](#schematicport) - [SchematicText](#schematictext) - [SchematicTrace](#schematictrace) - [SchematicVoltageProbe](#schematicvoltageprobe)
90
+ - [Schematic Elements](#schematic-elements) - [SchematicBox](#schematicbox) - [SchematicComponent](#schematiccomponent) - [SchematicError](#schematicerror) - [SchematicLine](#schematicline) - [SchematicManualEditConflictWarning](#schematicmanualeditconflictwarning) - [SchematicPath](#schematicpath) - [SchematicPort](#schematicport) - [SchematicText](#schematictext) - [SchematicTrace](#schematictrace) - [SchematicVoltageProbe](#schematicvoltageprobe)
91
91
  <!-- toc:end -->
92
92
 
93
93
  ## Typescript Usage
@@ -433,6 +433,7 @@ interface PcbBoard {
433
433
  num_layers: number
434
434
  center: Point
435
435
  outline?: Point[]
436
+ material: "fr4" | "fr1"
436
437
  }
437
438
  ```
438
439
 
@@ -988,6 +989,23 @@ interface SchematicLine {
988
989
  }
989
990
  ```
990
991
 
992
+ ### SchematicManualEditConflictWarning
993
+
994
+ Warning emitted when a component has both manual placement (via manualEdits) and explicit schX/schY coordinates
995
+
996
+ ```typescript
997
+ /** Warning emitted when a component has both manual placement (via manualEdits) and explicit schX/schY coordinates */
998
+ interface SchematicManualEditConflictWarning {
999
+ type: "schematic_manual_edit_conflict_warning"
1000
+ schematic_warning_id: string
1001
+ message: string
1002
+ schematic_component_id: string
1003
+ schematic_group_id?: string
1004
+ subcircuit_id?: string
1005
+ source_component_id: string
1006
+ }
1007
+ ```
1008
+
991
1009
  ### SchematicPath
992
1010
 
993
1011
  ```typescript
package/dist/index.d.mts CHANGED
@@ -2809,6 +2809,45 @@ declare const schematic_voltage_probe: z.ZodObject<{
2809
2809
  }>;
2810
2810
  type SchematicVoltageProbeInput = z.input<typeof schematic_voltage_probe>;
2811
2811
 
2812
+ declare const schematic_manual_edit_conflict_warning: z.ZodObject<{
2813
+ type: z.ZodLiteral<"schematic_manual_edit_conflict_warning">;
2814
+ schematic_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
2815
+ message: z.ZodString;
2816
+ schematic_component_id: z.ZodString;
2817
+ schematic_group_id: z.ZodOptional<z.ZodString>;
2818
+ subcircuit_id: z.ZodOptional<z.ZodString>;
2819
+ source_component_id: z.ZodString;
2820
+ }, "strip", z.ZodTypeAny, {
2821
+ message: string;
2822
+ type: "schematic_manual_edit_conflict_warning";
2823
+ source_component_id: string;
2824
+ schematic_component_id: string;
2825
+ schematic_warning_id: string;
2826
+ subcircuit_id?: string | undefined;
2827
+ schematic_group_id?: string | undefined;
2828
+ }, {
2829
+ message: string;
2830
+ type: "schematic_manual_edit_conflict_warning";
2831
+ source_component_id: string;
2832
+ schematic_component_id: string;
2833
+ subcircuit_id?: string | undefined;
2834
+ schematic_warning_id?: string | undefined;
2835
+ schematic_group_id?: string | undefined;
2836
+ }>;
2837
+ type SchematicManualEditConflictWarningInput = z.input<typeof schematic_manual_edit_conflict_warning>;
2838
+ /**
2839
+ * Warning emitted when a component has both manual placement (via manualEdits) and explicit schX/schY coordinates
2840
+ */
2841
+ interface SchematicManualEditConflictWarning {
2842
+ type: "schematic_manual_edit_conflict_warning";
2843
+ schematic_warning_id: string;
2844
+ message: string;
2845
+ schematic_component_id: string;
2846
+ schematic_group_id?: string;
2847
+ subcircuit_id?: string;
2848
+ source_component_id: string;
2849
+ }
2850
+
2812
2851
  declare const all_layers: readonly ["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"];
2813
2852
  declare const layer_string: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
2814
2853
  declare const layer_ref: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
@@ -4591,6 +4630,7 @@ declare const pcb_board: z.ZodObject<{
4591
4630
  x: string | number;
4592
4631
  y: string | number;
4593
4632
  }>, "many">>;
4633
+ material: z.ZodDefault<z.ZodEnum<["fr4", "fr1"]>>;
4594
4634
  }, "strip", z.ZodTypeAny, {
4595
4635
  type: "pcb_board";
4596
4636
  width: number;
@@ -4602,6 +4642,7 @@ declare const pcb_board: z.ZodObject<{
4602
4642
  pcb_board_id: string;
4603
4643
  thickness: number;
4604
4644
  num_layers: number;
4645
+ material: "fr4" | "fr1";
4605
4646
  subcircuit_id?: string | undefined;
4606
4647
  is_subcircuit?: boolean | undefined;
4607
4648
  outline?: {
@@ -4625,6 +4666,7 @@ declare const pcb_board: z.ZodObject<{
4625
4666
  x: string | number;
4626
4667
  y: string | number;
4627
4668
  }[] | undefined;
4669
+ material?: "fr4" | "fr1" | undefined;
4628
4670
  }>;
4629
4671
  /**
4630
4672
  * Defines the board outline of the PCB
@@ -4640,6 +4682,7 @@ interface PcbBoard {
4640
4682
  num_layers: number;
4641
4683
  center: Point;
4642
4684
  outline?: Point[];
4685
+ material: "fr4" | "fr1";
4643
4686
  }
4644
4687
  type PcbBoardInput = z.input<typeof pcb_board>;
4645
4688
  /**
@@ -7901,6 +7944,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7901
7944
  x: string | number;
7902
7945
  y: string | number;
7903
7946
  }>, "many">>;
7947
+ material: z.ZodDefault<z.ZodEnum<["fr4", "fr1"]>>;
7904
7948
  }, "strip", z.ZodTypeAny, {
7905
7949
  type: "pcb_board";
7906
7950
  width: number;
@@ -7912,6 +7956,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7912
7956
  pcb_board_id: string;
7913
7957
  thickness: number;
7914
7958
  num_layers: number;
7959
+ material: "fr4" | "fr1";
7915
7960
  subcircuit_id?: string | undefined;
7916
7961
  is_subcircuit?: boolean | undefined;
7917
7962
  outline?: {
@@ -7935,6 +7980,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7935
7980
  x: string | number;
7936
7981
  y: string | number;
7937
7982
  }[] | undefined;
7983
+ material?: "fr4" | "fr1" | undefined;
7938
7984
  }>, z.ZodObject<{
7939
7985
  type: z.ZodLiteral<"pcb_group">;
7940
7986
  pcb_group_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -11564,6 +11610,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11564
11610
  x: string | number;
11565
11611
  y: string | number;
11566
11612
  }>, "many">>;
11613
+ material: z.ZodDefault<z.ZodEnum<["fr4", "fr1"]>>;
11567
11614
  }, "strip", z.ZodTypeAny, {
11568
11615
  type: "pcb_board";
11569
11616
  width: number;
@@ -11575,6 +11622,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11575
11622
  pcb_board_id: string;
11576
11623
  thickness: number;
11577
11624
  num_layers: number;
11625
+ material: "fr4" | "fr1";
11578
11626
  subcircuit_id?: string | undefined;
11579
11627
  is_subcircuit?: boolean | undefined;
11580
11628
  outline?: {
@@ -11598,6 +11646,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11598
11646
  x: string | number;
11599
11647
  y: string | number;
11600
11648
  }[] | undefined;
11649
+ material?: "fr4" | "fr1" | undefined;
11601
11650
  }>, z.ZodObject<{
11602
11651
  type: z.ZodLiteral<"pcb_group">;
11603
11652
  pcb_group_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -13053,4 +13102,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
13053
13102
  */
13054
13103
  type CircuitJson = AnyCircuitElement[];
13055
13104
 
13056
- export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type CadComponent, type CadComponentInput, type CircuitJson, type Distance, type InferredProjectMetadata, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type PCBBoard, type PCBComponent, type PCBFabricationNotePath, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutInput, type PCBManualEditConflictError, type PCBMissingFootprintError, 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 PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePillWithRectPad, type PcbManualEditConflictError, type PcbManualEditConflictErrorInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, 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 PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadRect, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteRect, type PcbText, type PcbTextInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaInput, type Point, type Point3, type Position, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicBox, type SchematicBoxInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicLine, type SchematicLineInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type Size, type SourceComponentBase, type SourceGroup, type SourceGroupInput, type SourceLed, type SourceLedInput, type SourceNet, type SourceNetInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleBugInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, 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 SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceTrace, type SupplierName, type VisibleLayer, type VisibleLayerRef, all_layers, any_circuit_element, any_soup_element, any_source_component, battery_capacity, cad_component, capacitance, current, distance, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, pcb_autorouting_error, pcb_board, pcb_component, pcb_fabrication_note_path, pcb_fabrication_note_text, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_oval_shape, pcb_keepout, pcb_manual_edit_conflict_error, pcb_missing_footprint_error, pcb_placement_error, pcb_plated_hole, pcb_port, 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_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_via, point, point3, port_arrangement, position, position3, resistance, rotation, route_hint_point, schematic_box, 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_line, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_text, schematic_trace, schematic_voltage_probe, size, source_component_base, source_group, source_led, source_net, source_port, source_project_metadata, source_simple_battery, source_simple_bug, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_mosfet, source_simple_pin_header, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_transistor, source_trace, supplier_name, time, visible_layer, voltage };
13105
+ export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type CadComponent, type CadComponentInput, type CircuitJson, type Distance, type InferredProjectMetadata, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type PCBBoard, type PCBComponent, type PCBFabricationNotePath, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutInput, type PCBManualEditConflictError, type PCBMissingFootprintError, 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 PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePillWithRectPad, type PcbManualEditConflictError, type PcbManualEditConflictErrorInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, 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 PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadRect, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteRect, type PcbText, type PcbTextInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaInput, type Point, type Point3, type Position, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicBox, type SchematicBoxInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, 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 SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type Size, type SourceComponentBase, type SourceGroup, type SourceGroupInput, type SourceLed, type SourceLedInput, type SourceNet, type SourceNetInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleBugInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, 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 SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceTrace, type SupplierName, type VisibleLayer, type VisibleLayerRef, all_layers, any_circuit_element, any_soup_element, any_source_component, battery_capacity, cad_component, capacitance, current, distance, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, pcb_autorouting_error, pcb_board, pcb_component, pcb_fabrication_note_path, pcb_fabrication_note_text, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_oval_shape, pcb_keepout, pcb_manual_edit_conflict_error, pcb_missing_footprint_error, pcb_placement_error, pcb_plated_hole, pcb_port, 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_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_via, point, point3, port_arrangement, position, position3, resistance, rotation, route_hint_point, schematic_box, 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_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_text, schematic_trace, schematic_voltage_probe, size, source_component_base, source_group, source_led, source_net, source_port, source_project_metadata, source_simple_battery, source_simple_bug, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_mosfet, source_simple_pin_header, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_transistor, source_trace, supplier_name, time, visible_layer, voltage };