circuit-json 0.0.164 → 0.0.166

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
@@ -43,6 +43,7 @@ and is the primary way that Circuit JSON is defined and maintained.
43
43
 
44
44
  - [Source Components](#source-components)
45
45
  - [SourceComponentBase](#sourcecomponentbase)
46
+ - [SourceFailedToCreateComponentError](#sourcefailedtocreatecomponenterror)
46
47
  - [SourceLed](#sourceled)
47
48
  - [SourceMissingPropertyError](#sourcemissingpropertyerror)
48
49
  - [SourcePort](#sourceport)
@@ -189,6 +190,22 @@ interface SourceComponentBase {
189
190
  }
190
191
  ```
191
192
 
193
+ ### SourceFailedToCreateComponentError
194
+
195
+ ```typescript
196
+ /** Error emitted when a component fails to be constructed.
197
+ * Contains details about the failure and prevents the component from being rendered. */
198
+ interface SourceFailedToCreateComponentError {
199
+ type: "source_failed_to_create_component_error"
200
+ source_failed_to_create_component_error_id: string
201
+ source_component_id: string
202
+ message: string
203
+ component_name?: string
204
+ subcircuit_id?: string
205
+ parent_source_component_id?: string
206
+ }
207
+ ```
208
+
192
209
  ### SourceLed
193
210
 
194
211
  Defines an LED component that extends the simple diode
package/dist/index.d.mts CHANGED
@@ -3831,6 +3831,10 @@ declare const schematic_trace: z.ZodObject<{
3831
3831
  }>;
3832
3832
  type SchematicTraceInput = z.input<typeof schematic_trace>;
3833
3833
 
3834
+ type NinePointAnchor = "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
3835
+
3836
+ type FivePointAnchor = "center" | "left" | "right" | "top" | "bottom";
3837
+
3834
3838
  interface SchematicText {
3835
3839
  type: "schematic_text";
3836
3840
  schematic_component_id: string;
@@ -3841,7 +3845,7 @@ interface SchematicText {
3841
3845
  y: number;
3842
3846
  };
3843
3847
  rotation: number;
3844
- anchor: "center" | "left" | "right" | "top" | "bottom";
3848
+ anchor: NinePointAnchor | FivePointAnchor;
3845
3849
  color: string;
3846
3850
  }
3847
3851
  declare const schematic_text: z.ZodObject<{
@@ -3860,10 +3864,10 @@ declare const schematic_text: z.ZodObject<{
3860
3864
  y: string | number;
3861
3865
  }>;
3862
3866
  rotation: z.ZodDefault<z.ZodNumber>;
3863
- anchor: z.ZodDefault<z.ZodEnum<["center", "left", "right", "top", "bottom"]>>;
3867
+ anchor: z.ZodDefault<z.ZodUnion<[z.ZodEnum<["center", "left", "right", "top", "bottom"]>, z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>]>>;
3864
3868
  color: z.ZodDefault<z.ZodString>;
3865
3869
  }, "strip", z.ZodTypeAny, {
3866
- anchor: "top" | "bottom" | "center" | "left" | "right";
3870
+ anchor: "top" | "bottom" | "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right" | "top_center" | "center_left" | "center_right" | "bottom_center" | "left" | "right";
3867
3871
  type: "schematic_text";
3868
3872
  rotation: number;
3869
3873
  text: string;
@@ -3883,7 +3887,7 @@ declare const schematic_text: z.ZodObject<{
3883
3887
  x: string | number;
3884
3888
  y: string | number;
3885
3889
  };
3886
- anchor?: "top" | "bottom" | "center" | "left" | "right" | undefined;
3890
+ anchor?: "top" | "bottom" | "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right" | "top_center" | "center_left" | "center_right" | "bottom_center" | "left" | "right" | undefined;
3887
3891
  rotation?: number | undefined;
3888
3892
  color?: string | undefined;
3889
3893
  }>;
@@ -5270,6 +5274,46 @@ interface SourceMissingPropertyError {
5270
5274
  message: string;
5271
5275
  }
5272
5276
 
5277
+ declare const source_failed_to_create_component_error: z.ZodObject<{
5278
+ type: z.ZodLiteral<"source_failed_to_create_component_error">;
5279
+ source_failed_to_create_component_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
5280
+ component_name: z.ZodOptional<z.ZodString>;
5281
+ subcircuit_id: z.ZodOptional<z.ZodString>;
5282
+ parent_source_component_id: z.ZodOptional<z.ZodString>;
5283
+ source_component_id: z.ZodString;
5284
+ message: z.ZodString;
5285
+ }, "strip", z.ZodTypeAny, {
5286
+ message: string;
5287
+ type: "source_failed_to_create_component_error";
5288
+ source_component_id: string;
5289
+ source_failed_to_create_component_error_id: string;
5290
+ subcircuit_id?: string | undefined;
5291
+ component_name?: string | undefined;
5292
+ parent_source_component_id?: string | undefined;
5293
+ }, {
5294
+ message: string;
5295
+ type: "source_failed_to_create_component_error";
5296
+ source_component_id: string;
5297
+ subcircuit_id?: string | undefined;
5298
+ source_failed_to_create_component_error_id?: string | undefined;
5299
+ component_name?: string | undefined;
5300
+ parent_source_component_id?: string | undefined;
5301
+ }>;
5302
+ type SourceFailedToCreateComponentErrorInput = z.input<typeof source_failed_to_create_component_error>;
5303
+ /**
5304
+ * Error emitted when a component fails to be constructed.
5305
+ * Contains details about the failure and prevents the component from being rendered.
5306
+ */
5307
+ interface SourceFailedToCreateComponentError {
5308
+ type: "source_failed_to_create_component_error";
5309
+ source_failed_to_create_component_error_id: string;
5310
+ source_component_id: string;
5311
+ message: string;
5312
+ component_name?: string;
5313
+ subcircuit_id?: string;
5314
+ parent_source_component_id?: string;
5315
+ }
5316
+
5273
5317
  declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
5274
5318
  type: z.ZodLiteral<"source_component">;
5275
5319
  ftype: z.ZodOptional<z.ZodString>;
@@ -5890,12 +5934,36 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
5890
5934
  error_type: "source_missing_property_error";
5891
5935
  property_name: string;
5892
5936
  source_missing_property_error_id?: string | undefined;
5937
+ }>, z.ZodObject<{
5938
+ type: z.ZodLiteral<"source_failed_to_create_component_error">;
5939
+ source_failed_to_create_component_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
5940
+ component_name: z.ZodOptional<z.ZodString>;
5941
+ subcircuit_id: z.ZodOptional<z.ZodString>;
5942
+ parent_source_component_id: z.ZodOptional<z.ZodString>;
5943
+ source_component_id: z.ZodString;
5944
+ message: z.ZodString;
5945
+ }, "strip", z.ZodTypeAny, {
5946
+ message: string;
5947
+ type: "source_failed_to_create_component_error";
5948
+ source_component_id: string;
5949
+ source_failed_to_create_component_error_id: string;
5950
+ subcircuit_id?: string | undefined;
5951
+ component_name?: string | undefined;
5952
+ parent_source_component_id?: string | undefined;
5953
+ }, {
5954
+ message: string;
5955
+ type: "source_failed_to_create_component_error";
5956
+ source_component_id: string;
5957
+ subcircuit_id?: string | undefined;
5958
+ source_failed_to_create_component_error_id?: string | undefined;
5959
+ component_name?: string | undefined;
5960
+ parent_source_component_id?: string | undefined;
5893
5961
  }>]>;
5894
5962
  /**
5895
5963
  * Deprecated: use `AnySourceElement` instead
5896
5964
  */
5897
5965
  type AnySourceComponent = z.infer<typeof any_source_component>;
5898
- type AnySourceElement = SourceSimpleResistor | SourceSimpleCapacitor | SourceSimpleDiode | SourceSimpleGround | SourceSimpleChip | SourceLed | SourceSimplePowerSource | SourceSimpleBattery | SourceSimpleInductor | SourceSimplePushButton | SourceSimplePotentiometer | SourceSimpleCrystal | SourceSimplePinHeader | SourceSimpleResonator | SourceSimpleSwitch | SourceSimpleTransistor | SourceSimpleMosfet | SourceProjectMetadata | SourceMissingPropertyError;
5966
+ type AnySourceElement = SourceSimpleResistor | SourceSimpleCapacitor | SourceSimpleDiode | SourceSimpleGround | SourceSimpleChip | SourceLed | SourceSimplePowerSource | SourceSimpleBattery | SourceSimpleInductor | SourceSimplePushButton | SourceSimplePotentiometer | SourceSimpleCrystal | SourceSimplePinHeader | SourceSimpleResonator | SourceSimpleSwitch | SourceSimpleTransistor | SourceSimpleMosfet | SourceProjectMetadata | SourceMissingPropertyError | SourceFailedToCreateComponentError;
5899
5967
 
5900
5968
  declare const source_port: z.ZodObject<{
5901
5969
  type: z.ZodLiteral<"source_port">;
@@ -6831,6 +6899,30 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
6831
6899
  error_type: "source_missing_property_error";
6832
6900
  property_name: string;
6833
6901
  source_missing_property_error_id?: string | undefined;
6902
+ }>, z.ZodObject<{
6903
+ type: z.ZodLiteral<"source_failed_to_create_component_error">;
6904
+ source_failed_to_create_component_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
6905
+ component_name: z.ZodOptional<z.ZodString>;
6906
+ subcircuit_id: z.ZodOptional<z.ZodString>;
6907
+ parent_source_component_id: z.ZodOptional<z.ZodString>;
6908
+ source_component_id: z.ZodString;
6909
+ message: z.ZodString;
6910
+ }, "strip", z.ZodTypeAny, {
6911
+ message: string;
6912
+ type: "source_failed_to_create_component_error";
6913
+ source_component_id: string;
6914
+ source_failed_to_create_component_error_id: string;
6915
+ subcircuit_id?: string | undefined;
6916
+ component_name?: string | undefined;
6917
+ parent_source_component_id?: string | undefined;
6918
+ }, {
6919
+ message: string;
6920
+ type: "source_failed_to_create_component_error";
6921
+ source_component_id: string;
6922
+ subcircuit_id?: string | undefined;
6923
+ source_failed_to_create_component_error_id?: string | undefined;
6924
+ component_name?: string | undefined;
6925
+ parent_source_component_id?: string | undefined;
6834
6926
  }>]>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
6835
6927
  type: z.ZodLiteral<"source_component">;
6836
6928
  ftype: z.ZodOptional<z.ZodString>;
@@ -9298,10 +9390,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
9298
9390
  y: string | number;
9299
9391
  }>;
9300
9392
  rotation: z.ZodDefault<z.ZodNumber>;
9301
- anchor: z.ZodDefault<z.ZodEnum<["center", "left", "right", "top", "bottom"]>>;
9393
+ anchor: z.ZodDefault<z.ZodUnion<[z.ZodEnum<["center", "left", "right", "top", "bottom"]>, z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>]>>;
9302
9394
  color: z.ZodDefault<z.ZodString>;
9303
9395
  }, "strip", z.ZodTypeAny, {
9304
- anchor: "top" | "bottom" | "center" | "left" | "right";
9396
+ anchor: "top" | "bottom" | "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right" | "top_center" | "center_left" | "center_right" | "bottom_center" | "left" | "right";
9305
9397
  type: "schematic_text";
9306
9398
  rotation: number;
9307
9399
  text: string;
@@ -9321,7 +9413,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
9321
9413
  x: string | number;
9322
9414
  y: string | number;
9323
9415
  };
9324
- anchor?: "top" | "bottom" | "center" | "left" | "right" | undefined;
9416
+ anchor?: "top" | "bottom" | "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right" | "top_center" | "center_left" | "center_right" | "bottom_center" | "left" | "right" | undefined;
9325
9417
  rotation?: number | undefined;
9326
9418
  color?: string | undefined;
9327
9419
  }>, z.ZodObject<{
@@ -10807,6 +10899,30 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
10807
10899
  error_type: "source_missing_property_error";
10808
10900
  property_name: string;
10809
10901
  source_missing_property_error_id?: string | undefined;
10902
+ }>, z.ZodObject<{
10903
+ type: z.ZodLiteral<"source_failed_to_create_component_error">;
10904
+ source_failed_to_create_component_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
10905
+ component_name: z.ZodOptional<z.ZodString>;
10906
+ subcircuit_id: z.ZodOptional<z.ZodString>;
10907
+ parent_source_component_id: z.ZodOptional<z.ZodString>;
10908
+ source_component_id: z.ZodString;
10909
+ message: z.ZodString;
10910
+ }, "strip", z.ZodTypeAny, {
10911
+ message: string;
10912
+ type: "source_failed_to_create_component_error";
10913
+ source_component_id: string;
10914
+ source_failed_to_create_component_error_id: string;
10915
+ subcircuit_id?: string | undefined;
10916
+ component_name?: string | undefined;
10917
+ parent_source_component_id?: string | undefined;
10918
+ }, {
10919
+ message: string;
10920
+ type: "source_failed_to_create_component_error";
10921
+ source_component_id: string;
10922
+ subcircuit_id?: string | undefined;
10923
+ source_failed_to_create_component_error_id?: string | undefined;
10924
+ component_name?: string | undefined;
10925
+ parent_source_component_id?: string | undefined;
10810
10926
  }>]>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
10811
10927
  type: z.ZodLiteral<"source_component">;
10812
10928
  ftype: z.ZodOptional<z.ZodString>;
@@ -13274,10 +13390,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
13274
13390
  y: string | number;
13275
13391
  }>;
13276
13392
  rotation: z.ZodDefault<z.ZodNumber>;
13277
- anchor: z.ZodDefault<z.ZodEnum<["center", "left", "right", "top", "bottom"]>>;
13393
+ anchor: z.ZodDefault<z.ZodUnion<[z.ZodEnum<["center", "left", "right", "top", "bottom"]>, z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>]>>;
13278
13394
  color: z.ZodDefault<z.ZodString>;
13279
13395
  }, "strip", z.ZodTypeAny, {
13280
- anchor: "top" | "bottom" | "center" | "left" | "right";
13396
+ anchor: "top" | "bottom" | "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right" | "top_center" | "center_left" | "center_right" | "bottom_center" | "left" | "right";
13281
13397
  type: "schematic_text";
13282
13398
  rotation: number;
13283
13399
  text: string;
@@ -13297,7 +13413,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
13297
13413
  x: string | number;
13298
13414
  y: string | number;
13299
13415
  };
13300
- anchor?: "top" | "bottom" | "center" | "left" | "right" | undefined;
13416
+ anchor?: "top" | "bottom" | "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right" | "top_center" | "center_left" | "center_right" | "bottom_center" | "left" | "right" | undefined;
13301
13417
  rotation?: number | undefined;
13302
13418
  color?: string | undefined;
13303
13419
  }>, z.ZodObject<{
@@ -14122,4 +14238,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
14122
14238
  */
14123
14239
  type CircuitJson = AnyCircuitElement[];
14124
14240
 
14125
- 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 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 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 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 PcbSmtPadRect, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, 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 SourceMissingPropertyError, type SourceMissingPropertyErrorInput, 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_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_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_missing_property_error, 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 };
14241
+ 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 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 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 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 PcbSmtPadRect, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, 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 SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceLed, type SourceLedInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, 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_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_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_failed_to_create_component_error, source_group, source_led, source_missing_property_error, 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 };