circuit-json 0.0.227 → 0.0.228

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
@@ -106,6 +106,7 @@ https://github.com/user-attachments/assets/2f28b7ba-689e-4d80-85b2-5bdef84b41f8
106
106
  - [PcbTrace](#pcbtrace)
107
107
  - [PcbTraceError](#pcbtraceerror)
108
108
  - [PcbTraceHint](#pcbtracehint)
109
+ - [PcbTraceMissingError](#pcbtracemissingerror)
109
110
  - [PcbVia](#pcbvia)
110
111
  - [Schematic Elements](#schematic-elements)
111
112
  - [SchematicBox](#schematicbox)
@@ -1373,6 +1374,27 @@ interface PcbTraceHint {
1373
1374
  }
1374
1375
  ```
1375
1376
 
1377
+ ### PcbTraceMissingError
1378
+
1379
+ [Source](https://github.com/tscircuit/circuit-json/blob/main/src/pcb/pcb_trace_missing_error.ts)
1380
+
1381
+ Defines an error when a source trace has no corresponding PCB trace
1382
+
1383
+ ```typescript
1384
+ /** Defines an error when a source trace has no corresponding PCB trace */
1385
+ interface PcbTraceMissingError {
1386
+ type: "pcb_trace_missing_error"
1387
+ pcb_trace_missing_error_id: string
1388
+ error_type: "pcb_trace_missing_error"
1389
+ message: string
1390
+ center?: Point
1391
+ source_trace_id: string
1392
+ pcb_component_ids: string[]
1393
+ pcb_port_ids: string[]
1394
+ subcircuit_id?: string
1395
+ }
1396
+ ```
1397
+
1376
1398
  ### PcbVia
1377
1399
 
1378
1400
  [Source](https://github.com/tscircuit/circuit-json/blob/main/src/pcb/pcb_via.ts)
package/dist/index.d.mts CHANGED
@@ -2289,6 +2289,72 @@ interface PcbTraceError {
2289
2289
  */
2290
2290
  type PCBTraceError = PcbTraceError;
2291
2291
 
2292
+ declare const pcb_trace_missing_error: z.ZodObject<{
2293
+ type: z.ZodLiteral<"pcb_trace_missing_error">;
2294
+ pcb_trace_missing_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
2295
+ error_type: z.ZodDefault<z.ZodLiteral<"pcb_trace_missing_error">>;
2296
+ message: z.ZodString;
2297
+ center: z.ZodOptional<z.ZodObject<{
2298
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
2299
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
2300
+ }, "strip", z.ZodTypeAny, {
2301
+ x: number;
2302
+ y: number;
2303
+ }, {
2304
+ x: string | number;
2305
+ y: string | number;
2306
+ }>>;
2307
+ source_trace_id: z.ZodString;
2308
+ pcb_component_ids: z.ZodArray<z.ZodString, "many">;
2309
+ pcb_port_ids: z.ZodArray<z.ZodString, "many">;
2310
+ subcircuit_id: z.ZodOptional<z.ZodString>;
2311
+ }, "strip", z.ZodTypeAny, {
2312
+ message: string;
2313
+ type: "pcb_trace_missing_error";
2314
+ source_trace_id: string;
2315
+ error_type: "pcb_trace_missing_error";
2316
+ pcb_component_ids: string[];
2317
+ pcb_port_ids: string[];
2318
+ pcb_trace_missing_error_id: string;
2319
+ center?: {
2320
+ x: number;
2321
+ y: number;
2322
+ } | undefined;
2323
+ subcircuit_id?: string | undefined;
2324
+ }, {
2325
+ message: string;
2326
+ type: "pcb_trace_missing_error";
2327
+ source_trace_id: string;
2328
+ pcb_component_ids: string[];
2329
+ pcb_port_ids: string[];
2330
+ center?: {
2331
+ x: string | number;
2332
+ y: string | number;
2333
+ } | undefined;
2334
+ subcircuit_id?: string | undefined;
2335
+ error_type?: "pcb_trace_missing_error" | undefined;
2336
+ pcb_trace_missing_error_id?: string | undefined;
2337
+ }>;
2338
+ type PcbTraceMissingErrorInput = z.input<typeof pcb_trace_missing_error>;
2339
+ /**
2340
+ * Defines an error when a source trace has no corresponding PCB trace
2341
+ */
2342
+ interface PcbTraceMissingError {
2343
+ type: "pcb_trace_missing_error";
2344
+ pcb_trace_missing_error_id: string;
2345
+ error_type: "pcb_trace_missing_error";
2346
+ message: string;
2347
+ center?: Point;
2348
+ source_trace_id: string;
2349
+ pcb_component_ids: string[];
2350
+ pcb_port_ids: string[];
2351
+ subcircuit_id?: string;
2352
+ }
2353
+ /**
2354
+ * @deprecated use PcbTraceMissingError
2355
+ */
2356
+ type PCBTraceMissingError = PcbTraceMissingError;
2357
+
2292
2358
  declare const pcb_port_not_matched_error: z.ZodObject<{
2293
2359
  type: z.ZodLiteral<"pcb_port_not_matched_error">;
2294
2360
  pcb_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -4077,7 +4143,7 @@ interface PcbThermalSpoke {
4077
4143
  subcircuit_id?: string;
4078
4144
  }
4079
4145
 
4080
- type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceError | PcbMissingFootprintError | PcbManualEditConflictWarning | PcbPortNotMatchedError | PcbVia | PcbBoard | PcbPlacementError | PcbTraceHint | PcbSilkscreenLine | PcbSilkscreenPath | PcbSilkscreenText | PcbSilkscreenRect | PcbSilkscreenCircle | PcbAutoroutingError | PcbFootprintOverlapError | PcbCutout | PcbBreakoutPoint | PcbGroundPlane | PcbGroundPlaneRegion | PcbThermalSpoke;
4146
+ type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceError | PcbTraceMissingError | PcbMissingFootprintError | PcbManualEditConflictWarning | PcbPortNotMatchedError | PcbVia | PcbBoard | PcbPlacementError | PcbTraceHint | PcbSilkscreenLine | PcbSilkscreenPath | PcbSilkscreenText | PcbSilkscreenRect | PcbSilkscreenCircle | PcbAutoroutingError | PcbFootprintOverlapError | PcbCutout | PcbBreakoutPoint | PcbGroundPlane | PcbGroundPlaneRegion | PcbThermalSpoke;
4081
4147
 
4082
4148
  interface SchematicBox {
4083
4149
  type: "schematic_box";
@@ -12038,6 +12104,51 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
12038
12104
  subcircuit_id?: string | undefined;
12039
12105
  pcb_trace_error_id?: string | undefined;
12040
12106
  error_type?: "pcb_trace_error" | undefined;
12107
+ }>, z.ZodObject<{
12108
+ type: z.ZodLiteral<"pcb_trace_missing_error">;
12109
+ pcb_trace_missing_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
12110
+ error_type: z.ZodDefault<z.ZodLiteral<"pcb_trace_missing_error">>;
12111
+ message: z.ZodString;
12112
+ center: z.ZodOptional<z.ZodObject<{
12113
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
12114
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
12115
+ }, "strip", z.ZodTypeAny, {
12116
+ x: number;
12117
+ y: number;
12118
+ }, {
12119
+ x: string | number;
12120
+ y: string | number;
12121
+ }>>;
12122
+ source_trace_id: z.ZodString;
12123
+ pcb_component_ids: z.ZodArray<z.ZodString, "many">;
12124
+ pcb_port_ids: z.ZodArray<z.ZodString, "many">;
12125
+ subcircuit_id: z.ZodOptional<z.ZodString>;
12126
+ }, "strip", z.ZodTypeAny, {
12127
+ message: string;
12128
+ type: "pcb_trace_missing_error";
12129
+ source_trace_id: string;
12130
+ error_type: "pcb_trace_missing_error";
12131
+ pcb_component_ids: string[];
12132
+ pcb_port_ids: string[];
12133
+ pcb_trace_missing_error_id: string;
12134
+ center?: {
12135
+ x: number;
12136
+ y: number;
12137
+ } | undefined;
12138
+ subcircuit_id?: string | undefined;
12139
+ }, {
12140
+ message: string;
12141
+ type: "pcb_trace_missing_error";
12142
+ source_trace_id: string;
12143
+ pcb_component_ids: string[];
12144
+ pcb_port_ids: string[];
12145
+ center?: {
12146
+ x: string | number;
12147
+ y: string | number;
12148
+ } | undefined;
12149
+ subcircuit_id?: string | undefined;
12150
+ error_type?: "pcb_trace_missing_error" | undefined;
12151
+ pcb_trace_missing_error_id?: string | undefined;
12041
12152
  }>, z.ZodObject<{
12042
12153
  type: z.ZodLiteral<"pcb_placement_error">;
12043
12154
  pcb_placement_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -17405,6 +17516,51 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
17405
17516
  subcircuit_id?: string | undefined;
17406
17517
  pcb_trace_error_id?: string | undefined;
17407
17518
  error_type?: "pcb_trace_error" | undefined;
17519
+ }>, z.ZodObject<{
17520
+ type: z.ZodLiteral<"pcb_trace_missing_error">;
17521
+ pcb_trace_missing_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
17522
+ error_type: z.ZodDefault<z.ZodLiteral<"pcb_trace_missing_error">>;
17523
+ message: z.ZodString;
17524
+ center: z.ZodOptional<z.ZodObject<{
17525
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
17526
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
17527
+ }, "strip", z.ZodTypeAny, {
17528
+ x: number;
17529
+ y: number;
17530
+ }, {
17531
+ x: string | number;
17532
+ y: string | number;
17533
+ }>>;
17534
+ source_trace_id: z.ZodString;
17535
+ pcb_component_ids: z.ZodArray<z.ZodString, "many">;
17536
+ pcb_port_ids: z.ZodArray<z.ZodString, "many">;
17537
+ subcircuit_id: z.ZodOptional<z.ZodString>;
17538
+ }, "strip", z.ZodTypeAny, {
17539
+ message: string;
17540
+ type: "pcb_trace_missing_error";
17541
+ source_trace_id: string;
17542
+ error_type: "pcb_trace_missing_error";
17543
+ pcb_component_ids: string[];
17544
+ pcb_port_ids: string[];
17545
+ pcb_trace_missing_error_id: string;
17546
+ center?: {
17547
+ x: number;
17548
+ y: number;
17549
+ } | undefined;
17550
+ subcircuit_id?: string | undefined;
17551
+ }, {
17552
+ message: string;
17553
+ type: "pcb_trace_missing_error";
17554
+ source_trace_id: string;
17555
+ pcb_component_ids: string[];
17556
+ pcb_port_ids: string[];
17557
+ center?: {
17558
+ x: string | number;
17559
+ y: string | number;
17560
+ } | undefined;
17561
+ subcircuit_id?: string | undefined;
17562
+ error_type?: "pcb_trace_missing_error" | undefined;
17563
+ pcb_trace_missing_error_id?: string | undefined;
17408
17564
  }>, z.ZodObject<{
17409
17565
  type: z.ZodLiteral<"pcb_placement_error">;
17410
17566
  pcb_placement_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -19015,4 +19171,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
19015
19171
  */
19016
19172
  type CircuitJson = AnyCircuitElement[];
19017
19173
 
19018
- export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type CadComponent, type CadComponentInput, type CircuitJson, type CircuitJsonError, type Distance, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBFabricationNotePath, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, 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 PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePillWithRectPad, type PcbHoleRotatedPillWithRectPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, 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 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 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 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 SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceComponentBase, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourceSimpleBattery, type SourceSimpleBatteryInput, 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 SourceSimpleLed, type SourceSimpleLedInput, 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 SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, 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, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_cutout, pcb_cutout_circle, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_path, 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_oval_shape, pcb_keepout, pcb_manual_edit_conflict_warning, 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_thermal_spoke, 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_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_voltage_source, size, source_component_base, source_failed_to_create_component_error, source_group, source_missing_property_error, source_net, source_pcb_ground_plane, source_port, source_project_metadata, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_led, 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_test_point, source_simple_transistor, source_trace, source_trace_not_connected_error, supplier_name, time, visible_layer, voltage };
19174
+ export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type CadComponent, type CadComponentInput, type CircuitJson, type CircuitJsonError, type Distance, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBFabricationNotePath, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, 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 PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePillWithRectPad, type PcbHoleRotatedPillWithRectPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, 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 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 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 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 SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceComponentBase, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourceSimpleBattery, type SourceSimpleBatteryInput, 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 SourceSimpleLed, type SourceSimpleLedInput, 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 SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, 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, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_cutout, pcb_cutout_circle, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_path, 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_oval_shape, pcb_keepout, pcb_manual_edit_conflict_warning, 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_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_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_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_voltage_source, size, source_component_base, source_failed_to_create_component_error, source_group, source_missing_property_error, source_net, source_pcb_ground_plane, source_port, source_project_metadata, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_led, 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_test_point, source_simple_transistor, source_trace, source_trace_not_connected_error, supplier_name, time, visible_layer, voltage };