circuit-json 0.0.232 → 0.0.233
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 +20 -0
- package/dist/index.d.mts +113 -2
- package/dist/index.mjs +748 -731
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -54,6 +54,7 @@ https://github.com/user-attachments/assets/2f28b7ba-689e-4d80-85b2-5bdef84b41f8
|
|
|
54
54
|
- [SourcePcbGroundPlane](#sourcepcbgroundplane)
|
|
55
55
|
- [SourcePort](#sourceport)
|
|
56
56
|
- [SourceProjectMetadata](#sourceprojectmetadata)
|
|
57
|
+
- [SourcePropertyIgnoredWarning](#sourcepropertyignoredwarning)
|
|
57
58
|
- [SourceSimpleBattery](#sourcesimplebattery)
|
|
58
59
|
- [SourceSimpleCapacitor](#sourcesimplecapacitor)
|
|
59
60
|
- [SourceSimpleChip](#sourcesimplechip)
|
|
@@ -355,6 +356,25 @@ interface SourceProjectMetadata {
|
|
|
355
356
|
}
|
|
356
357
|
```
|
|
357
358
|
|
|
359
|
+
### SourcePropertyIgnoredWarning
|
|
360
|
+
|
|
361
|
+
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/source/source_property_ignored_warning.ts)
|
|
362
|
+
|
|
363
|
+
The source property was ignored
|
|
364
|
+
|
|
365
|
+
```typescript
|
|
366
|
+
/** The source property was ignored */
|
|
367
|
+
interface SourcePropertyIgnoredWarning {
|
|
368
|
+
type: "source_property_ignored_warning"
|
|
369
|
+
source_property_ignored_warning_id: string
|
|
370
|
+
source_component_id: string
|
|
371
|
+
property_name: string
|
|
372
|
+
subcircuit_id?: string
|
|
373
|
+
error_type: "source_property_ignored_warning"
|
|
374
|
+
message: string
|
|
375
|
+
}
|
|
376
|
+
```
|
|
377
|
+
|
|
358
378
|
### SourceSimpleBattery
|
|
359
379
|
|
|
360
380
|
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/source/source_simple_battery.ts)
|
package/dist/index.d.mts
CHANGED
|
@@ -7059,6 +7059,45 @@ interface SourceTraceNotConnectedError {
|
|
|
7059
7059
|
selectors_not_found?: string[];
|
|
7060
7060
|
}
|
|
7061
7061
|
|
|
7062
|
+
declare const source_property_ignored_warning: z.ZodObject<{
|
|
7063
|
+
type: z.ZodLiteral<"source_property_ignored_warning">;
|
|
7064
|
+
source_property_ignored_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
7065
|
+
source_component_id: z.ZodString;
|
|
7066
|
+
property_name: z.ZodString;
|
|
7067
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
7068
|
+
error_type: z.ZodDefault<z.ZodLiteral<"source_property_ignored_warning">>;
|
|
7069
|
+
message: z.ZodString;
|
|
7070
|
+
}, "strip", z.ZodTypeAny, {
|
|
7071
|
+
message: string;
|
|
7072
|
+
type: "source_property_ignored_warning";
|
|
7073
|
+
source_component_id: string;
|
|
7074
|
+
error_type: "source_property_ignored_warning";
|
|
7075
|
+
property_name: string;
|
|
7076
|
+
source_property_ignored_warning_id: string;
|
|
7077
|
+
subcircuit_id?: string | undefined;
|
|
7078
|
+
}, {
|
|
7079
|
+
message: string;
|
|
7080
|
+
type: "source_property_ignored_warning";
|
|
7081
|
+
source_component_id: string;
|
|
7082
|
+
property_name: string;
|
|
7083
|
+
subcircuit_id?: string | undefined;
|
|
7084
|
+
error_type?: "source_property_ignored_warning" | undefined;
|
|
7085
|
+
source_property_ignored_warning_id?: string | undefined;
|
|
7086
|
+
}>;
|
|
7087
|
+
type SourcePropertyIgnoredWarningInput = z.input<typeof source_property_ignored_warning>;
|
|
7088
|
+
/**
|
|
7089
|
+
* The source property was ignored
|
|
7090
|
+
*/
|
|
7091
|
+
interface SourcePropertyIgnoredWarning {
|
|
7092
|
+
type: "source_property_ignored_warning";
|
|
7093
|
+
source_property_ignored_warning_id: string;
|
|
7094
|
+
source_component_id: string;
|
|
7095
|
+
property_name: string;
|
|
7096
|
+
subcircuit_id?: string;
|
|
7097
|
+
error_type: "source_property_ignored_warning";
|
|
7098
|
+
message: string;
|
|
7099
|
+
}
|
|
7100
|
+
|
|
7062
7101
|
declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
7063
7102
|
type: z.ZodLiteral<"source_component">;
|
|
7064
7103
|
source_component_id: z.ZodString;
|
|
@@ -7987,12 +8026,36 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
7987
8026
|
source_trace_not_connected_error_id?: string | undefined;
|
|
7988
8027
|
connected_source_port_ids?: string[] | undefined;
|
|
7989
8028
|
selectors_not_found?: string[] | undefined;
|
|
8029
|
+
}>, z.ZodObject<{
|
|
8030
|
+
type: z.ZodLiteral<"source_property_ignored_warning">;
|
|
8031
|
+
source_property_ignored_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
8032
|
+
source_component_id: z.ZodString;
|
|
8033
|
+
property_name: z.ZodString;
|
|
8034
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
8035
|
+
error_type: z.ZodDefault<z.ZodLiteral<"source_property_ignored_warning">>;
|
|
8036
|
+
message: z.ZodString;
|
|
8037
|
+
}, "strip", z.ZodTypeAny, {
|
|
8038
|
+
message: string;
|
|
8039
|
+
type: "source_property_ignored_warning";
|
|
8040
|
+
source_component_id: string;
|
|
8041
|
+
error_type: "source_property_ignored_warning";
|
|
8042
|
+
property_name: string;
|
|
8043
|
+
source_property_ignored_warning_id: string;
|
|
8044
|
+
subcircuit_id?: string | undefined;
|
|
8045
|
+
}, {
|
|
8046
|
+
message: string;
|
|
8047
|
+
type: "source_property_ignored_warning";
|
|
8048
|
+
source_component_id: string;
|
|
8049
|
+
property_name: string;
|
|
8050
|
+
subcircuit_id?: string | undefined;
|
|
8051
|
+
error_type?: "source_property_ignored_warning" | undefined;
|
|
8052
|
+
source_property_ignored_warning_id?: string | undefined;
|
|
7990
8053
|
}>]>;
|
|
7991
8054
|
/**
|
|
7992
8055
|
* Deprecated: use `AnySourceElement` instead
|
|
7993
8056
|
*/
|
|
7994
8057
|
type AnySourceComponent = z.infer<typeof any_source_component>;
|
|
7995
|
-
type AnySourceElement = SourceSimpleResistor | SourceSimpleCapacitor | SourceSimpleDiode | SourceSimpleLed | SourceSimpleGround | SourceSimpleChip | SourceSimplePowerSource | SourceSimpleBattery | SourceSimpleInductor | SourceSimplePushButton | SourceSimplePotentiometer | SourceSimpleCrystal | SourceSimplePinHeader | SourceSimpleResonator | SourceSimpleSwitch | SourceSimpleTransistor | SourceSimpleTestPoint | SourceSimpleMosfet | SourceSimpleFuse | SourceProjectMetadata | SourceMissingPropertyError | SourceFailedToCreateComponentError | SourceTraceNotConnectedError;
|
|
8058
|
+
type AnySourceElement = SourceSimpleResistor | SourceSimpleCapacitor | SourceSimpleDiode | SourceSimpleLed | SourceSimpleGround | SourceSimpleChip | SourceSimplePowerSource | SourceSimpleBattery | SourceSimpleInductor | SourceSimplePushButton | SourceSimplePotentiometer | SourceSimpleCrystal | SourceSimplePinHeader | SourceSimpleResonator | SourceSimpleSwitch | SourceSimpleTransistor | SourceSimpleTestPoint | SourceSimpleMosfet | SourceSimpleFuse | SourceProjectMetadata | SourceMissingPropertyError | SourceFailedToCreateComponentError | SourceTraceNotConnectedError | SourcePropertyIgnoredWarning;
|
|
7996
8059
|
|
|
7997
8060
|
declare const source_port: z.ZodObject<{
|
|
7998
8061
|
type: z.ZodLiteral<"source_port">;
|
|
@@ -9489,6 +9552,30 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
9489
9552
|
source_trace_not_connected_error_id?: string | undefined;
|
|
9490
9553
|
connected_source_port_ids?: string[] | undefined;
|
|
9491
9554
|
selectors_not_found?: string[] | undefined;
|
|
9555
|
+
}>, z.ZodObject<{
|
|
9556
|
+
type: z.ZodLiteral<"source_property_ignored_warning">;
|
|
9557
|
+
source_property_ignored_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
9558
|
+
source_component_id: z.ZodString;
|
|
9559
|
+
property_name: z.ZodString;
|
|
9560
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
9561
|
+
error_type: z.ZodDefault<z.ZodLiteral<"source_property_ignored_warning">>;
|
|
9562
|
+
message: z.ZodString;
|
|
9563
|
+
}, "strip", z.ZodTypeAny, {
|
|
9564
|
+
message: string;
|
|
9565
|
+
type: "source_property_ignored_warning";
|
|
9566
|
+
source_component_id: string;
|
|
9567
|
+
error_type: "source_property_ignored_warning";
|
|
9568
|
+
property_name: string;
|
|
9569
|
+
source_property_ignored_warning_id: string;
|
|
9570
|
+
subcircuit_id?: string | undefined;
|
|
9571
|
+
}, {
|
|
9572
|
+
message: string;
|
|
9573
|
+
type: "source_property_ignored_warning";
|
|
9574
|
+
source_component_id: string;
|
|
9575
|
+
property_name: string;
|
|
9576
|
+
subcircuit_id?: string | undefined;
|
|
9577
|
+
error_type?: "source_property_ignored_warning" | undefined;
|
|
9578
|
+
source_property_ignored_warning_id?: string | undefined;
|
|
9492
9579
|
}>]>, z.ZodObject<{
|
|
9493
9580
|
type: z.ZodLiteral<"source_net">;
|
|
9494
9581
|
source_net_id: z.ZodString;
|
|
@@ -14967,6 +15054,30 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14967
15054
|
source_trace_not_connected_error_id?: string | undefined;
|
|
14968
15055
|
connected_source_port_ids?: string[] | undefined;
|
|
14969
15056
|
selectors_not_found?: string[] | undefined;
|
|
15057
|
+
}>, z.ZodObject<{
|
|
15058
|
+
type: z.ZodLiteral<"source_property_ignored_warning">;
|
|
15059
|
+
source_property_ignored_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15060
|
+
source_component_id: z.ZodString;
|
|
15061
|
+
property_name: z.ZodString;
|
|
15062
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
15063
|
+
error_type: z.ZodDefault<z.ZodLiteral<"source_property_ignored_warning">>;
|
|
15064
|
+
message: z.ZodString;
|
|
15065
|
+
}, "strip", z.ZodTypeAny, {
|
|
15066
|
+
message: string;
|
|
15067
|
+
type: "source_property_ignored_warning";
|
|
15068
|
+
source_component_id: string;
|
|
15069
|
+
error_type: "source_property_ignored_warning";
|
|
15070
|
+
property_name: string;
|
|
15071
|
+
source_property_ignored_warning_id: string;
|
|
15072
|
+
subcircuit_id?: string | undefined;
|
|
15073
|
+
}, {
|
|
15074
|
+
message: string;
|
|
15075
|
+
type: "source_property_ignored_warning";
|
|
15076
|
+
source_component_id: string;
|
|
15077
|
+
property_name: string;
|
|
15078
|
+
subcircuit_id?: string | undefined;
|
|
15079
|
+
error_type?: "source_property_ignored_warning" | undefined;
|
|
15080
|
+
source_property_ignored_warning_id?: string | undefined;
|
|
14970
15081
|
}>]>, z.ZodObject<{
|
|
14971
15082
|
type: z.ZodLiteral<"source_net">;
|
|
14972
15083
|
source_net_id: z.ZodString;
|
|
@@ -19473,4 +19584,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
19473
19584
|
*/
|
|
19474
19585
|
type CircuitJson = AnyCircuitElement[];
|
|
19475
19586
|
|
|
19476
|
-
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type CadComponent, type CadComponentInput, type CircuitJson, type CircuitJsonError, type Distance, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBFabricationNotePath, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePillWithRectPad, type PcbHoleRotatedPillWithRectPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type 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 PcbViaInput, type Point, type Point3, type Position, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicBox, type SchematicBoxInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcVoltageSource, type SimulationDcVoltageSource, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceComponentBase, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, battery_capacity, cad_component, capacitance, current, distance, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_cutout, pcb_cutout_circle, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_path, pcb_fabrication_note_text, pcb_footprint_overlap_error, pcb_ground_plane, pcb_ground_plane_region, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_oval_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_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, point, point3, port_arrangement, position, position3, resistance, rotation, route_hint_point, schematic_box, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_voltage_source, simulation_dc_voltage_source, simulation_voltage_source, size, source_component_base, source_failed_to_create_component_error, source_group, source_missing_property_error, source_net, source_pcb_ground_plane, source_port, source_project_metadata, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_pin_header, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_trace, source_trace_not_connected_error, supplier_name, time, visible_layer, voltage, wave_shape };
|
|
19587
|
+
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type CadComponent, type CadComponentInput, type CircuitJson, type CircuitJsonError, type Distance, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBFabricationNotePath, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePillWithRectPad, type PcbHoleRotatedPillWithRectPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type 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 PcbViaInput, type Point, type Point3, type Position, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicBox, type SchematicBoxInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcVoltageSource, type SimulationDcVoltageSource, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceComponentBase, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type 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 SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, battery_capacity, cad_component, capacitance, current, distance, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_cutout, pcb_cutout_circle, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_path, pcb_fabrication_note_text, pcb_footprint_overlap_error, pcb_ground_plane, pcb_ground_plane_region, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_oval_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_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, point, point3, port_arrangement, position, position3, resistance, rotation, route_hint_point, schematic_box, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_voltage_source, simulation_dc_voltage_source, simulation_voltage_source, size, source_component_base, source_failed_to_create_component_error, source_group, source_missing_property_error, source_net, source_pcb_ground_plane, source_port, source_project_metadata, source_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_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_trace, source_trace_not_connected_error, supplier_name, time, visible_layer, voltage, wave_shape };
|