circuit-json 0.0.318 → 0.0.320

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
@@ -55,6 +55,7 @@ https://github.com/user-attachments/assets/2f28b7ba-689e-4d80-85b2-5bdef84b41f8
55
55
  - [SourceNet](#sourcenet)
56
56
  - [SourcePcbGroundPlane](#sourcepcbgroundplane)
57
57
  - [SourcePinMissingTraceWarning](#sourcepinmissingtracewarning)
58
+ - [SourcePinMustBeConnectedError](#sourcepinmustbeconnectederror)
58
59
  - [SourcePort](#sourceport)
59
60
  - [SourceProjectMetadata](#sourceprojectmetadata)
60
61
  - [SourcePropertyIgnoredWarning](#sourcepropertyignoredwarning)
@@ -415,6 +416,25 @@ interface SourcePinMissingTraceWarning {
415
416
  }
416
417
  ```
417
418
 
419
+ ### SourcePinMustBeConnectedError
420
+
421
+ [Source](https://github.com/tscircuit/circuit-json/blob/main/src/source/source_pin_must_be_connected_error.ts)
422
+
423
+ Error emitted when a pin with mustBeConnected attribute is not connected to any trace
424
+
425
+ ```typescript
426
+ /** Error emitted when a pin with mustBeConnected attribute is not connected to any trace */
427
+ interface SourcePinMustBeConnectedError {
428
+ type: "source_pin_must_be_connected_error"
429
+ source_pin_must_be_connected_error_id: string
430
+ error_type: "source_pin_must_be_connected_error"
431
+ message: string
432
+ source_component_id: string
433
+ source_port_id: string
434
+ subcircuit_id?: string
435
+ }
436
+ ```
437
+
418
438
  ### SourcePort
419
439
 
420
440
  [Source](https://github.com/tscircuit/circuit-json/blob/main/src/source/source_port.ts)
@@ -1604,6 +1624,7 @@ interface PcbPlatedHoleCircle {
1604
1624
  pcb_port_id?: string
1605
1625
  pcb_plated_hole_id: string
1606
1626
  soldermask_margin?: number
1627
+ is_covered_with_solder_mask?: boolean
1607
1628
  }
1608
1629
 
1609
1630
  interface PcbHolePillWithRectPad {
package/dist/index.d.mts CHANGED
@@ -1257,6 +1257,7 @@ interface PcbPlatedHoleCircle {
1257
1257
  pcb_port_id?: string;
1258
1258
  pcb_plated_hole_id: string;
1259
1259
  soldermask_margin?: number;
1260
+ is_covered_with_solder_mask?: boolean;
1260
1261
  }
1261
1262
  /**
1262
1263
  * Defines an oval or pill-shaped plated hole on the PCB
@@ -1405,6 +1406,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
1405
1406
  pcb_port_id: z.ZodOptional<z.ZodString>;
1406
1407
  pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1407
1408
  soldermask_margin: z.ZodOptional<z.ZodNumber>;
1409
+ is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
1408
1410
  }, "strip", z.ZodTypeAny, {
1409
1411
  x: number;
1410
1412
  y: number;
@@ -1417,6 +1419,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
1417
1419
  pcb_component_id?: string | undefined;
1418
1420
  subcircuit_id?: string | undefined;
1419
1421
  pcb_group_id?: string | undefined;
1422
+ is_covered_with_solder_mask?: boolean | undefined;
1420
1423
  soldermask_margin?: number | undefined;
1421
1424
  port_hints?: string[] | undefined;
1422
1425
  pcb_port_id?: string | undefined;
@@ -1433,6 +1436,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
1433
1436
  pcb_component_id?: string | undefined;
1434
1437
  subcircuit_id?: string | undefined;
1435
1438
  pcb_group_id?: string | undefined;
1439
+ is_covered_with_solder_mask?: boolean | undefined;
1436
1440
  soldermask_margin?: number | undefined;
1437
1441
  port_hints?: string[] | undefined;
1438
1442
  pcb_port_id?: string | undefined;
@@ -12509,6 +12513,45 @@ interface SourceManuallyPlacedVia {
12509
12513
  source_trace_id?: string;
12510
12514
  }
12511
12515
 
12516
+ declare const source_pin_must_be_connected_error: z.ZodObject<{
12517
+ type: z.ZodLiteral<"source_pin_must_be_connected_error">;
12518
+ source_pin_must_be_connected_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
12519
+ error_type: z.ZodDefault<z.ZodLiteral<"source_pin_must_be_connected_error">>;
12520
+ message: z.ZodString;
12521
+ source_component_id: z.ZodString;
12522
+ source_port_id: z.ZodString;
12523
+ subcircuit_id: z.ZodOptional<z.ZodString>;
12524
+ }, "strip", z.ZodTypeAny, {
12525
+ message: string;
12526
+ type: "source_pin_must_be_connected_error";
12527
+ source_component_id: string;
12528
+ source_port_id: string;
12529
+ error_type: "source_pin_must_be_connected_error";
12530
+ source_pin_must_be_connected_error_id: string;
12531
+ subcircuit_id?: string | undefined;
12532
+ }, {
12533
+ message: string;
12534
+ type: "source_pin_must_be_connected_error";
12535
+ source_component_id: string;
12536
+ source_port_id: string;
12537
+ subcircuit_id?: string | undefined;
12538
+ error_type?: "source_pin_must_be_connected_error" | undefined;
12539
+ source_pin_must_be_connected_error_id?: string | undefined;
12540
+ }>;
12541
+ type SourcePinMustBeConnectedErrorInput = z.input<typeof source_pin_must_be_connected_error>;
12542
+ /**
12543
+ * Error emitted when a pin with mustBeConnected attribute is not connected to any trace
12544
+ */
12545
+ interface SourcePinMustBeConnectedError {
12546
+ type: "source_pin_must_be_connected_error";
12547
+ source_pin_must_be_connected_error_id: string;
12548
+ error_type: "source_pin_must_be_connected_error";
12549
+ message: string;
12550
+ source_component_id: string;
12551
+ source_port_id: string;
12552
+ subcircuit_id?: string;
12553
+ }
12554
+
12512
12555
  declare const unknown_error_finding_part: z.ZodObject<{
12513
12556
  type: z.ZodLiteral<"unknown_error_finding_part">;
12514
12557
  unknown_error_finding_part_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -12546,7 +12589,7 @@ interface UnknownErrorFindingPart {
12546
12589
  subcircuit_id?: string;
12547
12590
  }
12548
12591
 
12549
- type CircuitJsonError = PcbTraceError | PcbPlacementError | PcbPortNotMatchedError | PcbAutoroutingError | PcbFootprintOverlapError | PcbMissingFootprintError | PcbComponentOutsideBoardError | SchematicError | UnknownErrorFindingPart | SimulationUnknownExperimentError;
12592
+ type CircuitJsonError = PcbTraceError | PcbPlacementError | PcbPortNotMatchedError | PcbAutoroutingError | PcbFootprintOverlapError | PcbMissingFootprintError | PcbComponentOutsideBoardError | SchematicError | UnknownErrorFindingPart | SimulationUnknownExperimentError | SourcePinMustBeConnectedError;
12550
12593
 
12551
12594
  declare const cad_component: z.ZodObject<{
12552
12595
  type: z.ZodLiteral<"cad_component">;
@@ -14717,6 +14760,30 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
14717
14760
  subcircuit_id?: string | undefined;
14718
14761
  warning_type?: "source_pin_missing_trace_warning" | undefined;
14719
14762
  source_pin_missing_trace_warning_id?: string | undefined;
14763
+ }>, z.ZodObject<{
14764
+ type: z.ZodLiteral<"source_pin_must_be_connected_error">;
14765
+ source_pin_must_be_connected_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
14766
+ error_type: z.ZodDefault<z.ZodLiteral<"source_pin_must_be_connected_error">>;
14767
+ message: z.ZodString;
14768
+ source_component_id: z.ZodString;
14769
+ source_port_id: z.ZodString;
14770
+ subcircuit_id: z.ZodOptional<z.ZodString>;
14771
+ }, "strip", z.ZodTypeAny, {
14772
+ message: string;
14773
+ type: "source_pin_must_be_connected_error";
14774
+ source_component_id: string;
14775
+ source_port_id: string;
14776
+ error_type: "source_pin_must_be_connected_error";
14777
+ source_pin_must_be_connected_error_id: string;
14778
+ subcircuit_id?: string | undefined;
14779
+ }, {
14780
+ message: string;
14781
+ type: "source_pin_must_be_connected_error";
14782
+ source_component_id: string;
14783
+ source_port_id: string;
14784
+ subcircuit_id?: string | undefined;
14785
+ error_type?: "source_pin_must_be_connected_error" | undefined;
14786
+ source_pin_must_be_connected_error_id?: string | undefined;
14720
14787
  }>, z.ZodObject<{
14721
14788
  type: z.ZodLiteral<"unknown_error_finding_part">;
14722
14789
  unknown_error_finding_part_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -15155,6 +15222,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
15155
15222
  pcb_port_id: z.ZodOptional<z.ZodString>;
15156
15223
  pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
15157
15224
  soldermask_margin: z.ZodOptional<z.ZodNumber>;
15225
+ is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
15158
15226
  }, "strip", z.ZodTypeAny, {
15159
15227
  x: number;
15160
15228
  y: number;
@@ -15167,6 +15235,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
15167
15235
  pcb_component_id?: string | undefined;
15168
15236
  subcircuit_id?: string | undefined;
15169
15237
  pcb_group_id?: string | undefined;
15238
+ is_covered_with_solder_mask?: boolean | undefined;
15170
15239
  soldermask_margin?: number | undefined;
15171
15240
  port_hints?: string[] | undefined;
15172
15241
  pcb_port_id?: string | undefined;
@@ -15183,6 +15252,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
15183
15252
  pcb_component_id?: string | undefined;
15184
15253
  subcircuit_id?: string | undefined;
15185
15254
  pcb_group_id?: string | undefined;
15255
+ is_covered_with_solder_mask?: boolean | undefined;
15186
15256
  soldermask_margin?: number | undefined;
15187
15257
  port_hints?: string[] | undefined;
15188
15258
  pcb_port_id?: string | undefined;
@@ -22624,6 +22694,30 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
22624
22694
  subcircuit_id?: string | undefined;
22625
22695
  warning_type?: "source_pin_missing_trace_warning" | undefined;
22626
22696
  source_pin_missing_trace_warning_id?: string | undefined;
22697
+ }>, z.ZodObject<{
22698
+ type: z.ZodLiteral<"source_pin_must_be_connected_error">;
22699
+ source_pin_must_be_connected_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
22700
+ error_type: z.ZodDefault<z.ZodLiteral<"source_pin_must_be_connected_error">>;
22701
+ message: z.ZodString;
22702
+ source_component_id: z.ZodString;
22703
+ source_port_id: z.ZodString;
22704
+ subcircuit_id: z.ZodOptional<z.ZodString>;
22705
+ }, "strip", z.ZodTypeAny, {
22706
+ message: string;
22707
+ type: "source_pin_must_be_connected_error";
22708
+ source_component_id: string;
22709
+ source_port_id: string;
22710
+ error_type: "source_pin_must_be_connected_error";
22711
+ source_pin_must_be_connected_error_id: string;
22712
+ subcircuit_id?: string | undefined;
22713
+ }, {
22714
+ message: string;
22715
+ type: "source_pin_must_be_connected_error";
22716
+ source_component_id: string;
22717
+ source_port_id: string;
22718
+ subcircuit_id?: string | undefined;
22719
+ error_type?: "source_pin_must_be_connected_error" | undefined;
22720
+ source_pin_must_be_connected_error_id?: string | undefined;
22627
22721
  }>, z.ZodObject<{
22628
22722
  type: z.ZodLiteral<"unknown_error_finding_part">;
22629
22723
  unknown_error_finding_part_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -23062,6 +23156,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
23062
23156
  pcb_port_id: z.ZodOptional<z.ZodString>;
23063
23157
  pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
23064
23158
  soldermask_margin: z.ZodOptional<z.ZodNumber>;
23159
+ is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
23065
23160
  }, "strip", z.ZodTypeAny, {
23066
23161
  x: number;
23067
23162
  y: number;
@@ -23074,6 +23169,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
23074
23169
  pcb_component_id?: string | undefined;
23075
23170
  subcircuit_id?: string | undefined;
23076
23171
  pcb_group_id?: string | undefined;
23172
+ is_covered_with_solder_mask?: boolean | undefined;
23077
23173
  soldermask_margin?: number | undefined;
23078
23174
  port_hints?: string[] | undefined;
23079
23175
  pcb_port_id?: string | undefined;
@@ -23090,6 +23186,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
23090
23186
  pcb_component_id?: string | undefined;
23091
23187
  subcircuit_id?: string | undefined;
23092
23188
  pcb_group_id?: string | undefined;
23189
+ is_covered_with_solder_mask?: boolean | undefined;
23093
23190
  soldermask_margin?: number | undefined;
23094
23191
  port_hints?: string[] | undefined;
23095
23192
  pcb_port_id?: string | undefined;
@@ -28529,4 +28626,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
28529
28626
  */
28530
28627
  type CircuitJson = AnyCircuitElement[];
28531
28628
 
28532
- export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type BRepShape, type CadComponent, type CadComponentInput, 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 LayerRef, type LayerRefInput, type Length, 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 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 PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCopperText, type PcbCopperTextInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, 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 PcbPanel, type PcbPanelInput, 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 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 PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, 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 SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, 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 SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, 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 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 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, battery_capacity, brep_shape, cad_component, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, ms, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_outside_board_error, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_copper_text, pcb_courtyard_outline, 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_panel, 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_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, pcb_via_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_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_voltage_source, simulation_dc_voltage_source, simulation_experiment, simulation_switch, simulation_transient_voltage_graph, simulation_unknown_experiment_error, simulation_voltage_probe, simulation_voltage_source, size, source_board, source_component_base, source_failed_to_create_component_error, source_group, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, source_pin_missing_trace_warning, source_port, source_project_metadata, source_property_ignored_warning, 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_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_trace, source_trace_not_connected_error, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
28629
+ export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type BRepShape, type CadComponent, type CadComponentInput, 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 LayerRef, type LayerRefInput, type Length, 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 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 PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCopperText, type PcbCopperTextInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, 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 PcbPanel, type PcbPanelInput, 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 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 PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, 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 SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, 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 SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, 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 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 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 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, battery_capacity, brep_shape, cad_component, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, ms, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_outside_board_error, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_copper_text, pcb_courtyard_outline, 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_panel, 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_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, pcb_via_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_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_voltage_source, simulation_dc_voltage_source, simulation_experiment, simulation_switch, simulation_transient_voltage_graph, simulation_unknown_experiment_error, simulation_voltage_probe, simulation_voltage_source, size, source_board, source_component_base, source_failed_to_create_component_error, source_group, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, 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_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, 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_trace, source_trace_not_connected_error, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };