circuit-json 0.0.85 → 0.0.86
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/dist/index.d.mts +180 -1
- package/dist/index.mjs +363 -339
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -17,6 +17,7 @@ declare const time: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number,
|
|
|
17
17
|
* Rotation is always converted to degrees
|
|
18
18
|
*/
|
|
19
19
|
declare const rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
20
|
+
declare const battery_capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
|
|
20
21
|
type InputRotation = number | string;
|
|
21
22
|
type Rotation = number;
|
|
22
23
|
|
|
@@ -596,6 +597,35 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
596
597
|
manufacturer_part_number?: string | undefined;
|
|
597
598
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
598
599
|
display_value?: string | undefined;
|
|
600
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
601
|
+
type: z.ZodLiteral<"source_component">;
|
|
602
|
+
ftype: z.ZodOptional<z.ZodString>;
|
|
603
|
+
source_component_id: z.ZodString;
|
|
604
|
+
name: z.ZodString;
|
|
605
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
606
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
607
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
608
|
+
}, {
|
|
609
|
+
ftype: z.ZodLiteral<"simple_battery">;
|
|
610
|
+
capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
|
|
611
|
+
}>, "strip", z.ZodTypeAny, {
|
|
612
|
+
type: "source_component";
|
|
613
|
+
ftype: "simple_battery";
|
|
614
|
+
source_component_id: string;
|
|
615
|
+
name: string;
|
|
616
|
+
capacity: number;
|
|
617
|
+
manufacturer_part_number?: string | undefined;
|
|
618
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
619
|
+
display_value?: string | undefined;
|
|
620
|
+
}, {
|
|
621
|
+
type: "source_component";
|
|
622
|
+
ftype: "simple_battery";
|
|
623
|
+
source_component_id: string;
|
|
624
|
+
name: string;
|
|
625
|
+
capacity: string | number;
|
|
626
|
+
manufacturer_part_number?: string | undefined;
|
|
627
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
628
|
+
display_value?: string | undefined;
|
|
599
629
|
}>]>;
|
|
600
630
|
type AnySourceComponent = z.infer<typeof any_source_component>;
|
|
601
631
|
|
|
@@ -718,6 +748,39 @@ declare const source_net: z.ZodObject<{
|
|
|
718
748
|
type SourceNet = z.infer<typeof source_net>;
|
|
719
749
|
type SourceNetInput = z.input<typeof source_net>;
|
|
720
750
|
|
|
751
|
+
declare const source_simple_battery: z.ZodObject<z.objectUtil.extendShape<{
|
|
752
|
+
type: z.ZodLiteral<"source_component">;
|
|
753
|
+
ftype: z.ZodOptional<z.ZodString>;
|
|
754
|
+
source_component_id: z.ZodString;
|
|
755
|
+
name: z.ZodString;
|
|
756
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
757
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
758
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
759
|
+
}, {
|
|
760
|
+
ftype: z.ZodLiteral<"simple_battery">;
|
|
761
|
+
capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
|
|
762
|
+
}>, "strip", z.ZodTypeAny, {
|
|
763
|
+
type: "source_component";
|
|
764
|
+
ftype: "simple_battery";
|
|
765
|
+
source_component_id: string;
|
|
766
|
+
name: string;
|
|
767
|
+
capacity: number;
|
|
768
|
+
manufacturer_part_number?: string | undefined;
|
|
769
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
770
|
+
display_value?: string | undefined;
|
|
771
|
+
}, {
|
|
772
|
+
type: "source_component";
|
|
773
|
+
ftype: "simple_battery";
|
|
774
|
+
source_component_id: string;
|
|
775
|
+
name: string;
|
|
776
|
+
capacity: string | number;
|
|
777
|
+
manufacturer_part_number?: string | undefined;
|
|
778
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
779
|
+
display_value?: string | undefined;
|
|
780
|
+
}>;
|
|
781
|
+
type SourceSimpleBattery = z.infer<typeof source_simple_battery>;
|
|
782
|
+
type SourceSimpleBatteryInput = z.input<typeof source_simple_battery>;
|
|
783
|
+
|
|
721
784
|
declare const schematic_box: z.ZodObject<{
|
|
722
785
|
type: z.ZodLiteral<"schematic_box">;
|
|
723
786
|
schematic_component_id: z.ZodString;
|
|
@@ -3742,6 +3805,35 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3742
3805
|
manufacturer_part_number?: string | undefined;
|
|
3743
3806
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3744
3807
|
display_value?: string | undefined;
|
|
3808
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3809
|
+
type: z.ZodLiteral<"source_component">;
|
|
3810
|
+
ftype: z.ZodOptional<z.ZodString>;
|
|
3811
|
+
source_component_id: z.ZodString;
|
|
3812
|
+
name: z.ZodString;
|
|
3813
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
3814
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
3815
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
3816
|
+
}, {
|
|
3817
|
+
ftype: z.ZodLiteral<"simple_battery">;
|
|
3818
|
+
capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
|
|
3819
|
+
}>, "strip", z.ZodTypeAny, {
|
|
3820
|
+
type: "source_component";
|
|
3821
|
+
ftype: "simple_battery";
|
|
3822
|
+
source_component_id: string;
|
|
3823
|
+
name: string;
|
|
3824
|
+
capacity: number;
|
|
3825
|
+
manufacturer_part_number?: string | undefined;
|
|
3826
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3827
|
+
display_value?: string | undefined;
|
|
3828
|
+
}, {
|
|
3829
|
+
type: "source_component";
|
|
3830
|
+
ftype: "simple_battery";
|
|
3831
|
+
source_component_id: string;
|
|
3832
|
+
name: string;
|
|
3833
|
+
capacity: string | number;
|
|
3834
|
+
manufacturer_part_number?: string | undefined;
|
|
3835
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3836
|
+
display_value?: string | undefined;
|
|
3745
3837
|
}>]>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
3746
3838
|
type: z.ZodLiteral<"source_component">;
|
|
3747
3839
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -3977,6 +4069,35 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3977
4069
|
manufacturer_part_number?: string | undefined;
|
|
3978
4070
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3979
4071
|
display_value?: string | undefined;
|
|
4072
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
4073
|
+
type: z.ZodLiteral<"source_component">;
|
|
4074
|
+
ftype: z.ZodOptional<z.ZodString>;
|
|
4075
|
+
source_component_id: z.ZodString;
|
|
4076
|
+
name: z.ZodString;
|
|
4077
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
4078
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
4079
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
4080
|
+
}, {
|
|
4081
|
+
ftype: z.ZodLiteral<"simple_battery">;
|
|
4082
|
+
capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
|
|
4083
|
+
}>, "strip", z.ZodTypeAny, {
|
|
4084
|
+
type: "source_component";
|
|
4085
|
+
ftype: "simple_battery";
|
|
4086
|
+
source_component_id: string;
|
|
4087
|
+
name: string;
|
|
4088
|
+
capacity: number;
|
|
4089
|
+
manufacturer_part_number?: string | undefined;
|
|
4090
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4091
|
+
display_value?: string | undefined;
|
|
4092
|
+
}, {
|
|
4093
|
+
type: "source_component";
|
|
4094
|
+
ftype: "simple_battery";
|
|
4095
|
+
source_component_id: string;
|
|
4096
|
+
name: string;
|
|
4097
|
+
capacity: string | number;
|
|
4098
|
+
manufacturer_part_number?: string | undefined;
|
|
4099
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4100
|
+
display_value?: string | undefined;
|
|
3980
4101
|
}>, z.ZodObject<{
|
|
3981
4102
|
type: z.ZodLiteral<"pcb_component">;
|
|
3982
4103
|
pcb_component_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -6099,6 +6220,35 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6099
6220
|
manufacturer_part_number?: string | undefined;
|
|
6100
6221
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6101
6222
|
display_value?: string | undefined;
|
|
6223
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6224
|
+
type: z.ZodLiteral<"source_component">;
|
|
6225
|
+
ftype: z.ZodOptional<z.ZodString>;
|
|
6226
|
+
source_component_id: z.ZodString;
|
|
6227
|
+
name: z.ZodString;
|
|
6228
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6229
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6230
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
6231
|
+
}, {
|
|
6232
|
+
ftype: z.ZodLiteral<"simple_battery">;
|
|
6233
|
+
capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
|
|
6234
|
+
}>, "strip", z.ZodTypeAny, {
|
|
6235
|
+
type: "source_component";
|
|
6236
|
+
ftype: "simple_battery";
|
|
6237
|
+
source_component_id: string;
|
|
6238
|
+
name: string;
|
|
6239
|
+
capacity: number;
|
|
6240
|
+
manufacturer_part_number?: string | undefined;
|
|
6241
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6242
|
+
display_value?: string | undefined;
|
|
6243
|
+
}, {
|
|
6244
|
+
type: "source_component";
|
|
6245
|
+
ftype: "simple_battery";
|
|
6246
|
+
source_component_id: string;
|
|
6247
|
+
name: string;
|
|
6248
|
+
capacity: string | number;
|
|
6249
|
+
manufacturer_part_number?: string | undefined;
|
|
6250
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6251
|
+
display_value?: string | undefined;
|
|
6102
6252
|
}>]>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
6103
6253
|
type: z.ZodLiteral<"source_component">;
|
|
6104
6254
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6334,6 +6484,35 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6334
6484
|
manufacturer_part_number?: string | undefined;
|
|
6335
6485
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6336
6486
|
display_value?: string | undefined;
|
|
6487
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6488
|
+
type: z.ZodLiteral<"source_component">;
|
|
6489
|
+
ftype: z.ZodOptional<z.ZodString>;
|
|
6490
|
+
source_component_id: z.ZodString;
|
|
6491
|
+
name: z.ZodString;
|
|
6492
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6493
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6494
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
6495
|
+
}, {
|
|
6496
|
+
ftype: z.ZodLiteral<"simple_battery">;
|
|
6497
|
+
capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
|
|
6498
|
+
}>, "strip", z.ZodTypeAny, {
|
|
6499
|
+
type: "source_component";
|
|
6500
|
+
ftype: "simple_battery";
|
|
6501
|
+
source_component_id: string;
|
|
6502
|
+
name: string;
|
|
6503
|
+
capacity: number;
|
|
6504
|
+
manufacturer_part_number?: string | undefined;
|
|
6505
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6506
|
+
display_value?: string | undefined;
|
|
6507
|
+
}, {
|
|
6508
|
+
type: "source_component";
|
|
6509
|
+
ftype: "simple_battery";
|
|
6510
|
+
source_component_id: string;
|
|
6511
|
+
name: string;
|
|
6512
|
+
capacity: string | number;
|
|
6513
|
+
manufacturer_part_number?: string | undefined;
|
|
6514
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6515
|
+
display_value?: string | undefined;
|
|
6337
6516
|
}>, z.ZodObject<{
|
|
6338
6517
|
type: z.ZodLiteral<"pcb_component">;
|
|
6339
6518
|
pcb_component_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -8209,4 +8388,4 @@ type AnySoupElement = AnyCircuitElement;
|
|
|
8209
8388
|
*/
|
|
8210
8389
|
type AnySoupElementInput = AnyCircuitElementInput;
|
|
8211
8390
|
|
|
8212
|
-
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type CadComponent, type CadComponentInput, type Distance, 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 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 PcbBoard, type PcbBoardInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbHole, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleOval, type PcbHoleOvalInput, 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 PcbSmtPadRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteRect, 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 SchematicError, type SchematicErrorInput, type SchematicLine, type SchematicLineInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceInput, type Size, type SourceComponentBase, type SourceGroup, type SourceGroupInput, type SourceLed, type SourceLedInput, type SourceNet, type SourceNetInput, type SourcePort, type SourceSimpleBugInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceTrace, type SupplierName, type VisibleLayer, type VisibleLayerRef, all_layers, any_circuit_element, any_soup_element, any_source_component, cad_component, capacitance, current, distance, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, pcb_board, pcb_component, pcb_fabrication_note_path, pcb_fabrication_note_text, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_oval_shape, pcb_keepout, 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_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, position, position3, resistance, rotation, route_hint_point, schematic_box, schematic_component, schematic_error, schematic_line, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_text, schematic_trace, size, source_component_base, source_group, source_led, source_net, source_port, source_simple_bug, source_simple_capacitor, source_simple_chip, source_simple_diode, source_simple_ground, source_simple_power_source, source_simple_resistor, source_trace, supplier_name, time, visible_layer, voltage };
|
|
8391
|
+
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type CadComponent, type CadComponentInput, type Distance, 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 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 PcbBoard, type PcbBoardInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbHole, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleOval, type PcbHoleOvalInput, 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 PcbSmtPadRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteRect, 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 SchematicError, type SchematicErrorInput, type SchematicLine, type SchematicLineInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceInput, type Size, type SourceComponentBase, type SourceGroup, type SourceGroupInput, type SourceLed, type SourceLedInput, type SourceNet, type SourceNetInput, type SourcePort, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleBugInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimpleResistor, type SourceSimpleResistorInput, 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, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, pcb_board, pcb_component, pcb_fabrication_note_path, pcb_fabrication_note_text, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_oval_shape, pcb_keepout, 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_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, position, position3, resistance, rotation, route_hint_point, schematic_box, schematic_component, schematic_error, schematic_line, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_text, schematic_trace, size, source_component_base, source_group, source_led, source_net, source_port, source_simple_battery, source_simple_bug, source_simple_capacitor, source_simple_chip, source_simple_diode, source_simple_ground, source_simple_power_source, source_simple_resistor, source_trace, supplier_name, time, visible_layer, voltage };
|