circuit-json 0.0.165 → 0.0.167

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,24 @@ 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
+ message: string
202
+ component_name?: string
203
+ subcircuit_id?: string
204
+ parent_source_component_id?: string
205
+ pcb_center?: {
206
+ x?: number
207
+ y?: number
208
+ }
209
+ ```
210
+
192
211
  ### SourceLed
193
212
 
194
213
  Defines an LED component that extends the simple diode
package/dist/index.d.mts CHANGED
@@ -5274,6 +5274,86 @@ interface SourceMissingPropertyError {
5274
5274
  message: string;
5275
5275
  }
5276
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
+ message: z.ZodString;
5284
+ pcb_center: z.ZodOptional<z.ZodObject<{
5285
+ x: z.ZodOptional<z.ZodNumber>;
5286
+ y: z.ZodOptional<z.ZodNumber>;
5287
+ }, "strip", z.ZodTypeAny, {
5288
+ x?: number | undefined;
5289
+ y?: number | undefined;
5290
+ }, {
5291
+ x?: number | undefined;
5292
+ y?: number | undefined;
5293
+ }>>;
5294
+ schematic_center: z.ZodOptional<z.ZodObject<{
5295
+ x: z.ZodOptional<z.ZodNumber>;
5296
+ y: z.ZodOptional<z.ZodNumber>;
5297
+ }, "strip", z.ZodTypeAny, {
5298
+ x?: number | undefined;
5299
+ y?: number | undefined;
5300
+ }, {
5301
+ x?: number | undefined;
5302
+ y?: number | undefined;
5303
+ }>>;
5304
+ }, "strip", z.ZodTypeAny, {
5305
+ message: string;
5306
+ type: "source_failed_to_create_component_error";
5307
+ source_failed_to_create_component_error_id: string;
5308
+ subcircuit_id?: string | undefined;
5309
+ component_name?: string | undefined;
5310
+ parent_source_component_id?: string | undefined;
5311
+ pcb_center?: {
5312
+ x?: number | undefined;
5313
+ y?: number | undefined;
5314
+ } | undefined;
5315
+ schematic_center?: {
5316
+ x?: number | undefined;
5317
+ y?: number | undefined;
5318
+ } | undefined;
5319
+ }, {
5320
+ message: string;
5321
+ type: "source_failed_to_create_component_error";
5322
+ subcircuit_id?: string | undefined;
5323
+ source_failed_to_create_component_error_id?: string | undefined;
5324
+ component_name?: string | undefined;
5325
+ parent_source_component_id?: string | undefined;
5326
+ pcb_center?: {
5327
+ x?: number | undefined;
5328
+ y?: number | undefined;
5329
+ } | undefined;
5330
+ schematic_center?: {
5331
+ x?: number | undefined;
5332
+ y?: number | undefined;
5333
+ } | undefined;
5334
+ }>;
5335
+ type SourceFailedToCreateComponentErrorInput = z.input<typeof source_failed_to_create_component_error>;
5336
+ /**
5337
+ * Error emitted when a component fails to be constructed.
5338
+ * Contains details about the failure and prevents the component from being rendered.
5339
+ */
5340
+ interface SourceFailedToCreateComponentError {
5341
+ type: "source_failed_to_create_component_error";
5342
+ source_failed_to_create_component_error_id: string;
5343
+ message: string;
5344
+ component_name?: string;
5345
+ subcircuit_id?: string;
5346
+ parent_source_component_id?: string;
5347
+ pcb_center?: {
5348
+ x?: number;
5349
+ y?: number;
5350
+ };
5351
+ schematic_center?: {
5352
+ x?: number;
5353
+ y?: number;
5354
+ };
5355
+ }
5356
+
5277
5357
  declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
5278
5358
  type: z.ZodLiteral<"source_component">;
5279
5359
  ftype: z.ZodOptional<z.ZodString>;
@@ -5894,12 +5974,69 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
5894
5974
  error_type: "source_missing_property_error";
5895
5975
  property_name: string;
5896
5976
  source_missing_property_error_id?: string | undefined;
5977
+ }>, z.ZodObject<{
5978
+ type: z.ZodLiteral<"source_failed_to_create_component_error">;
5979
+ source_failed_to_create_component_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
5980
+ component_name: z.ZodOptional<z.ZodString>;
5981
+ subcircuit_id: z.ZodOptional<z.ZodString>;
5982
+ parent_source_component_id: z.ZodOptional<z.ZodString>;
5983
+ message: z.ZodString;
5984
+ pcb_center: z.ZodOptional<z.ZodObject<{
5985
+ x: z.ZodOptional<z.ZodNumber>;
5986
+ y: z.ZodOptional<z.ZodNumber>;
5987
+ }, "strip", z.ZodTypeAny, {
5988
+ x?: number | undefined;
5989
+ y?: number | undefined;
5990
+ }, {
5991
+ x?: number | undefined;
5992
+ y?: number | undefined;
5993
+ }>>;
5994
+ schematic_center: z.ZodOptional<z.ZodObject<{
5995
+ x: z.ZodOptional<z.ZodNumber>;
5996
+ y: z.ZodOptional<z.ZodNumber>;
5997
+ }, "strip", z.ZodTypeAny, {
5998
+ x?: number | undefined;
5999
+ y?: number | undefined;
6000
+ }, {
6001
+ x?: number | undefined;
6002
+ y?: number | undefined;
6003
+ }>>;
6004
+ }, "strip", z.ZodTypeAny, {
6005
+ message: string;
6006
+ type: "source_failed_to_create_component_error";
6007
+ source_failed_to_create_component_error_id: string;
6008
+ subcircuit_id?: string | undefined;
6009
+ component_name?: string | undefined;
6010
+ parent_source_component_id?: string | undefined;
6011
+ pcb_center?: {
6012
+ x?: number | undefined;
6013
+ y?: number | undefined;
6014
+ } | undefined;
6015
+ schematic_center?: {
6016
+ x?: number | undefined;
6017
+ y?: number | undefined;
6018
+ } | undefined;
6019
+ }, {
6020
+ message: string;
6021
+ type: "source_failed_to_create_component_error";
6022
+ subcircuit_id?: string | undefined;
6023
+ source_failed_to_create_component_error_id?: string | undefined;
6024
+ component_name?: string | undefined;
6025
+ parent_source_component_id?: string | undefined;
6026
+ pcb_center?: {
6027
+ x?: number | undefined;
6028
+ y?: number | undefined;
6029
+ } | undefined;
6030
+ schematic_center?: {
6031
+ x?: number | undefined;
6032
+ y?: number | undefined;
6033
+ } | undefined;
5897
6034
  }>]>;
5898
6035
  /**
5899
6036
  * Deprecated: use `AnySourceElement` instead
5900
6037
  */
5901
6038
  type AnySourceComponent = z.infer<typeof any_source_component>;
5902
- type AnySourceElement = SourceSimpleResistor | SourceSimpleCapacitor | SourceSimpleDiode | SourceSimpleGround | SourceSimpleChip | SourceLed | SourceSimplePowerSource | SourceSimpleBattery | SourceSimpleInductor | SourceSimplePushButton | SourceSimplePotentiometer | SourceSimpleCrystal | SourceSimplePinHeader | SourceSimpleResonator | SourceSimpleSwitch | SourceSimpleTransistor | SourceSimpleMosfet | SourceProjectMetadata | SourceMissingPropertyError;
6039
+ type AnySourceElement = SourceSimpleResistor | SourceSimpleCapacitor | SourceSimpleDiode | SourceSimpleGround | SourceSimpleChip | SourceLed | SourceSimplePowerSource | SourceSimpleBattery | SourceSimpleInductor | SourceSimplePushButton | SourceSimplePotentiometer | SourceSimpleCrystal | SourceSimplePinHeader | SourceSimpleResonator | SourceSimpleSwitch | SourceSimpleTransistor | SourceSimpleMosfet | SourceProjectMetadata | SourceMissingPropertyError | SourceFailedToCreateComponentError;
5903
6040
 
5904
6041
  declare const source_port: z.ZodObject<{
5905
6042
  type: z.ZodLiteral<"source_port">;
@@ -6835,6 +6972,63 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
6835
6972
  error_type: "source_missing_property_error";
6836
6973
  property_name: string;
6837
6974
  source_missing_property_error_id?: string | undefined;
6975
+ }>, z.ZodObject<{
6976
+ type: z.ZodLiteral<"source_failed_to_create_component_error">;
6977
+ source_failed_to_create_component_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
6978
+ component_name: z.ZodOptional<z.ZodString>;
6979
+ subcircuit_id: z.ZodOptional<z.ZodString>;
6980
+ parent_source_component_id: z.ZodOptional<z.ZodString>;
6981
+ message: z.ZodString;
6982
+ pcb_center: z.ZodOptional<z.ZodObject<{
6983
+ x: z.ZodOptional<z.ZodNumber>;
6984
+ y: z.ZodOptional<z.ZodNumber>;
6985
+ }, "strip", z.ZodTypeAny, {
6986
+ x?: number | undefined;
6987
+ y?: number | undefined;
6988
+ }, {
6989
+ x?: number | undefined;
6990
+ y?: number | undefined;
6991
+ }>>;
6992
+ schematic_center: z.ZodOptional<z.ZodObject<{
6993
+ x: z.ZodOptional<z.ZodNumber>;
6994
+ y: z.ZodOptional<z.ZodNumber>;
6995
+ }, "strip", z.ZodTypeAny, {
6996
+ x?: number | undefined;
6997
+ y?: number | undefined;
6998
+ }, {
6999
+ x?: number | undefined;
7000
+ y?: number | undefined;
7001
+ }>>;
7002
+ }, "strip", z.ZodTypeAny, {
7003
+ message: string;
7004
+ type: "source_failed_to_create_component_error";
7005
+ source_failed_to_create_component_error_id: string;
7006
+ subcircuit_id?: string | undefined;
7007
+ component_name?: string | undefined;
7008
+ parent_source_component_id?: string | undefined;
7009
+ pcb_center?: {
7010
+ x?: number | undefined;
7011
+ y?: number | undefined;
7012
+ } | undefined;
7013
+ schematic_center?: {
7014
+ x?: number | undefined;
7015
+ y?: number | undefined;
7016
+ } | undefined;
7017
+ }, {
7018
+ message: string;
7019
+ type: "source_failed_to_create_component_error";
7020
+ subcircuit_id?: string | undefined;
7021
+ source_failed_to_create_component_error_id?: string | undefined;
7022
+ component_name?: string | undefined;
7023
+ parent_source_component_id?: string | undefined;
7024
+ pcb_center?: {
7025
+ x?: number | undefined;
7026
+ y?: number | undefined;
7027
+ } | undefined;
7028
+ schematic_center?: {
7029
+ x?: number | undefined;
7030
+ y?: number | undefined;
7031
+ } | undefined;
6838
7032
  }>]>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
6839
7033
  type: z.ZodLiteral<"source_component">;
6840
7034
  ftype: z.ZodOptional<z.ZodString>;
@@ -10811,6 +11005,63 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
10811
11005
  error_type: "source_missing_property_error";
10812
11006
  property_name: string;
10813
11007
  source_missing_property_error_id?: string | undefined;
11008
+ }>, z.ZodObject<{
11009
+ type: z.ZodLiteral<"source_failed_to_create_component_error">;
11010
+ source_failed_to_create_component_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
11011
+ component_name: z.ZodOptional<z.ZodString>;
11012
+ subcircuit_id: z.ZodOptional<z.ZodString>;
11013
+ parent_source_component_id: z.ZodOptional<z.ZodString>;
11014
+ message: z.ZodString;
11015
+ pcb_center: z.ZodOptional<z.ZodObject<{
11016
+ x: z.ZodOptional<z.ZodNumber>;
11017
+ y: z.ZodOptional<z.ZodNumber>;
11018
+ }, "strip", z.ZodTypeAny, {
11019
+ x?: number | undefined;
11020
+ y?: number | undefined;
11021
+ }, {
11022
+ x?: number | undefined;
11023
+ y?: number | undefined;
11024
+ }>>;
11025
+ schematic_center: z.ZodOptional<z.ZodObject<{
11026
+ x: z.ZodOptional<z.ZodNumber>;
11027
+ y: z.ZodOptional<z.ZodNumber>;
11028
+ }, "strip", z.ZodTypeAny, {
11029
+ x?: number | undefined;
11030
+ y?: number | undefined;
11031
+ }, {
11032
+ x?: number | undefined;
11033
+ y?: number | undefined;
11034
+ }>>;
11035
+ }, "strip", z.ZodTypeAny, {
11036
+ message: string;
11037
+ type: "source_failed_to_create_component_error";
11038
+ source_failed_to_create_component_error_id: string;
11039
+ subcircuit_id?: string | undefined;
11040
+ component_name?: string | undefined;
11041
+ parent_source_component_id?: string | undefined;
11042
+ pcb_center?: {
11043
+ x?: number | undefined;
11044
+ y?: number | undefined;
11045
+ } | undefined;
11046
+ schematic_center?: {
11047
+ x?: number | undefined;
11048
+ y?: number | undefined;
11049
+ } | undefined;
11050
+ }, {
11051
+ message: string;
11052
+ type: "source_failed_to_create_component_error";
11053
+ subcircuit_id?: string | undefined;
11054
+ source_failed_to_create_component_error_id?: string | undefined;
11055
+ component_name?: string | undefined;
11056
+ parent_source_component_id?: string | undefined;
11057
+ pcb_center?: {
11058
+ x?: number | undefined;
11059
+ y?: number | undefined;
11060
+ } | undefined;
11061
+ schematic_center?: {
11062
+ x?: number | undefined;
11063
+ y?: number | undefined;
11064
+ } | undefined;
10814
11065
  }>]>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
10815
11066
  type: z.ZodLiteral<"source_component">;
10816
11067
  ftype: z.ZodOptional<z.ZodString>;
@@ -14126,4 +14377,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
14126
14377
  */
14127
14378
  type CircuitJson = AnyCircuitElement[];
14128
14379
 
14129
- 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 };
14380
+ 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 };