circuit-json 0.0.178 → 0.0.179
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 +24 -0
- package/dist/index.d.mts +173 -1
- package/dist/index.mjs +387 -368
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -97,6 +97,7 @@ https://github.com/user-attachments/assets/2f28b7ba-689e-4d80-85b2-5bdef84b41f8
|
|
|
97
97
|
- [SchematicBox](#schematicbox)
|
|
98
98
|
- [SchematicComponent](#schematiccomponent)
|
|
99
99
|
- [SchematicError](#schematicerror)
|
|
100
|
+
- [SchematicGroup](#schematicgroup)
|
|
100
101
|
- [SchematicLine](#schematicline)
|
|
101
102
|
- [SchematicManualEditConflictWarning](#schematicmanualeditconflictwarning)
|
|
102
103
|
- [SchematicPath](#schematicpath)
|
|
@@ -1124,6 +1125,29 @@ interface SchematicError {
|
|
|
1124
1125
|
}
|
|
1125
1126
|
```
|
|
1126
1127
|
|
|
1128
|
+
### SchematicGroup
|
|
1129
|
+
|
|
1130
|
+
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/schematic/schematic_group.ts)
|
|
1131
|
+
|
|
1132
|
+
Defines a group of components on the schematic
|
|
1133
|
+
|
|
1134
|
+
```typescript
|
|
1135
|
+
/** Defines a group of components on the schematic */
|
|
1136
|
+
interface SchematicGroup {
|
|
1137
|
+
type: "schematic_group"
|
|
1138
|
+
schematic_group_id: string
|
|
1139
|
+
source_group_id: string
|
|
1140
|
+
is_subcircuit?: boolean
|
|
1141
|
+
subcircuit_id?: string
|
|
1142
|
+
width: Length
|
|
1143
|
+
height: Length
|
|
1144
|
+
center: Point
|
|
1145
|
+
schematic_component_ids: string[]
|
|
1146
|
+
name?: string
|
|
1147
|
+
description?: string
|
|
1148
|
+
}
|
|
1149
|
+
```
|
|
1150
|
+
|
|
1127
1151
|
### SchematicLine
|
|
1128
1152
|
|
|
1129
1153
|
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/schematic/schematic_line.ts)
|
package/dist/index.d.mts
CHANGED
|
@@ -4487,6 +4487,76 @@ interface SchematicManualEditConflictWarning {
|
|
|
4487
4487
|
source_component_id: string;
|
|
4488
4488
|
}
|
|
4489
4489
|
|
|
4490
|
+
declare const schematic_group: z.ZodObject<{
|
|
4491
|
+
type: z.ZodLiteral<"schematic_group">;
|
|
4492
|
+
schematic_group_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
4493
|
+
source_group_id: z.ZodString;
|
|
4494
|
+
is_subcircuit: z.ZodOptional<z.ZodBoolean>;
|
|
4495
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
4496
|
+
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
4497
|
+
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
4498
|
+
center: z.ZodObject<{
|
|
4499
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
4500
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
4501
|
+
}, "strip", z.ZodTypeAny, {
|
|
4502
|
+
x: number;
|
|
4503
|
+
y: number;
|
|
4504
|
+
}, {
|
|
4505
|
+
x: string | number;
|
|
4506
|
+
y: string | number;
|
|
4507
|
+
}>;
|
|
4508
|
+
schematic_component_ids: z.ZodArray<z.ZodString, "many">;
|
|
4509
|
+
name: z.ZodOptional<z.ZodString>;
|
|
4510
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4511
|
+
}, "strip", z.ZodTypeAny, {
|
|
4512
|
+
type: "schematic_group";
|
|
4513
|
+
width: number;
|
|
4514
|
+
height: number;
|
|
4515
|
+
center: {
|
|
4516
|
+
x: number;
|
|
4517
|
+
y: number;
|
|
4518
|
+
};
|
|
4519
|
+
source_group_id: string;
|
|
4520
|
+
schematic_group_id: string;
|
|
4521
|
+
schematic_component_ids: string[];
|
|
4522
|
+
name?: string | undefined;
|
|
4523
|
+
description?: string | undefined;
|
|
4524
|
+
subcircuit_id?: string | undefined;
|
|
4525
|
+
is_subcircuit?: boolean | undefined;
|
|
4526
|
+
}, {
|
|
4527
|
+
type: "schematic_group";
|
|
4528
|
+
width: string | number;
|
|
4529
|
+
height: string | number;
|
|
4530
|
+
center: {
|
|
4531
|
+
x: string | number;
|
|
4532
|
+
y: string | number;
|
|
4533
|
+
};
|
|
4534
|
+
source_group_id: string;
|
|
4535
|
+
schematic_component_ids: string[];
|
|
4536
|
+
name?: string | undefined;
|
|
4537
|
+
description?: string | undefined;
|
|
4538
|
+
subcircuit_id?: string | undefined;
|
|
4539
|
+
is_subcircuit?: boolean | undefined;
|
|
4540
|
+
schematic_group_id?: string | undefined;
|
|
4541
|
+
}>;
|
|
4542
|
+
type SchematicGroupInput = z.input<typeof schematic_group>;
|
|
4543
|
+
/**
|
|
4544
|
+
* Defines a group of components on the schematic
|
|
4545
|
+
*/
|
|
4546
|
+
interface SchematicGroup {
|
|
4547
|
+
type: "schematic_group";
|
|
4548
|
+
schematic_group_id: string;
|
|
4549
|
+
source_group_id: string;
|
|
4550
|
+
is_subcircuit?: boolean;
|
|
4551
|
+
subcircuit_id?: string;
|
|
4552
|
+
width: Length;
|
|
4553
|
+
height: Length;
|
|
4554
|
+
center: Point;
|
|
4555
|
+
schematic_component_ids: string[];
|
|
4556
|
+
name?: string;
|
|
4557
|
+
description?: string;
|
|
4558
|
+
}
|
|
4559
|
+
|
|
4490
4560
|
type CircuitJsonError = PcbTraceError | PcbPlacementError | PcbPortNotMatchedError | PcbAutoroutingError | PcbMissingFootprintError | SchematicError;
|
|
4491
4561
|
|
|
4492
4562
|
interface SourceComponentBase {
|
|
@@ -10564,6 +10634,57 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10564
10634
|
subcircuit_id?: string | undefined;
|
|
10565
10635
|
schematic_manual_edit_conflict_warning_id?: string | undefined;
|
|
10566
10636
|
schematic_group_id?: string | undefined;
|
|
10637
|
+
}>, z.ZodObject<{
|
|
10638
|
+
type: z.ZodLiteral<"schematic_group">;
|
|
10639
|
+
schematic_group_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
10640
|
+
source_group_id: z.ZodString;
|
|
10641
|
+
is_subcircuit: z.ZodOptional<z.ZodBoolean>;
|
|
10642
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
10643
|
+
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
10644
|
+
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
10645
|
+
center: z.ZodObject<{
|
|
10646
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
10647
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
10648
|
+
}, "strip", z.ZodTypeAny, {
|
|
10649
|
+
x: number;
|
|
10650
|
+
y: number;
|
|
10651
|
+
}, {
|
|
10652
|
+
x: string | number;
|
|
10653
|
+
y: string | number;
|
|
10654
|
+
}>;
|
|
10655
|
+
schematic_component_ids: z.ZodArray<z.ZodString, "many">;
|
|
10656
|
+
name: z.ZodOptional<z.ZodString>;
|
|
10657
|
+
description: z.ZodOptional<z.ZodString>;
|
|
10658
|
+
}, "strip", z.ZodTypeAny, {
|
|
10659
|
+
type: "schematic_group";
|
|
10660
|
+
width: number;
|
|
10661
|
+
height: number;
|
|
10662
|
+
center: {
|
|
10663
|
+
x: number;
|
|
10664
|
+
y: number;
|
|
10665
|
+
};
|
|
10666
|
+
source_group_id: string;
|
|
10667
|
+
schematic_group_id: string;
|
|
10668
|
+
schematic_component_ids: string[];
|
|
10669
|
+
name?: string | undefined;
|
|
10670
|
+
description?: string | undefined;
|
|
10671
|
+
subcircuit_id?: string | undefined;
|
|
10672
|
+
is_subcircuit?: boolean | undefined;
|
|
10673
|
+
}, {
|
|
10674
|
+
type: "schematic_group";
|
|
10675
|
+
width: string | number;
|
|
10676
|
+
height: string | number;
|
|
10677
|
+
center: {
|
|
10678
|
+
x: string | number;
|
|
10679
|
+
y: string | number;
|
|
10680
|
+
};
|
|
10681
|
+
source_group_id: string;
|
|
10682
|
+
schematic_component_ids: string[];
|
|
10683
|
+
name?: string | undefined;
|
|
10684
|
+
description?: string | undefined;
|
|
10685
|
+
subcircuit_id?: string | undefined;
|
|
10686
|
+
is_subcircuit?: boolean | undefined;
|
|
10687
|
+
schematic_group_id?: string | undefined;
|
|
10567
10688
|
}>, z.ZodObject<{
|
|
10568
10689
|
type: z.ZodLiteral<"cad_component">;
|
|
10569
10690
|
cad_component_id: z.ZodString;
|
|
@@ -14766,6 +14887,57 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14766
14887
|
subcircuit_id?: string | undefined;
|
|
14767
14888
|
schematic_manual_edit_conflict_warning_id?: string | undefined;
|
|
14768
14889
|
schematic_group_id?: string | undefined;
|
|
14890
|
+
}>, z.ZodObject<{
|
|
14891
|
+
type: z.ZodLiteral<"schematic_group">;
|
|
14892
|
+
schematic_group_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
14893
|
+
source_group_id: z.ZodString;
|
|
14894
|
+
is_subcircuit: z.ZodOptional<z.ZodBoolean>;
|
|
14895
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
14896
|
+
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14897
|
+
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14898
|
+
center: z.ZodObject<{
|
|
14899
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14900
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14901
|
+
}, "strip", z.ZodTypeAny, {
|
|
14902
|
+
x: number;
|
|
14903
|
+
y: number;
|
|
14904
|
+
}, {
|
|
14905
|
+
x: string | number;
|
|
14906
|
+
y: string | number;
|
|
14907
|
+
}>;
|
|
14908
|
+
schematic_component_ids: z.ZodArray<z.ZodString, "many">;
|
|
14909
|
+
name: z.ZodOptional<z.ZodString>;
|
|
14910
|
+
description: z.ZodOptional<z.ZodString>;
|
|
14911
|
+
}, "strip", z.ZodTypeAny, {
|
|
14912
|
+
type: "schematic_group";
|
|
14913
|
+
width: number;
|
|
14914
|
+
height: number;
|
|
14915
|
+
center: {
|
|
14916
|
+
x: number;
|
|
14917
|
+
y: number;
|
|
14918
|
+
};
|
|
14919
|
+
source_group_id: string;
|
|
14920
|
+
schematic_group_id: string;
|
|
14921
|
+
schematic_component_ids: string[];
|
|
14922
|
+
name?: string | undefined;
|
|
14923
|
+
description?: string | undefined;
|
|
14924
|
+
subcircuit_id?: string | undefined;
|
|
14925
|
+
is_subcircuit?: boolean | undefined;
|
|
14926
|
+
}, {
|
|
14927
|
+
type: "schematic_group";
|
|
14928
|
+
width: string | number;
|
|
14929
|
+
height: string | number;
|
|
14930
|
+
center: {
|
|
14931
|
+
x: string | number;
|
|
14932
|
+
y: string | number;
|
|
14933
|
+
};
|
|
14934
|
+
source_group_id: string;
|
|
14935
|
+
schematic_component_ids: string[];
|
|
14936
|
+
name?: string | undefined;
|
|
14937
|
+
description?: string | undefined;
|
|
14938
|
+
subcircuit_id?: string | undefined;
|
|
14939
|
+
is_subcircuit?: boolean | undefined;
|
|
14940
|
+
schematic_group_id?: string | undefined;
|
|
14769
14941
|
}>, z.ZodObject<{
|
|
14770
14942
|
type: z.ZodLiteral<"cad_component">;
|
|
14771
14943
|
cad_component_id: z.ZodString;
|
|
@@ -14895,4 +15067,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
14895
15067
|
*/
|
|
14896
15068
|
type CircuitJson = AnyCircuitElement[];
|
|
14897
15069
|
|
|
14898
|
-
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 };
|
|
15070
|
+
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 SchematicGroup, type SchematicGroupInput, 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_group, 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 };
|