circuit-json 0.0.107 → 0.0.109
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 +116 -7
- package/dist/index.mjs +249 -236
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -721,7 +721,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
721
721
|
}, {
|
|
722
722
|
ftype: z.ZodLiteral<"simple_pin_header">;
|
|
723
723
|
pin_count: z.ZodNumber;
|
|
724
|
-
gender: z.ZodDefault<z.ZodEnum<["male", "female"]
|
|
724
|
+
gender: z.ZodDefault<z.ZodOptional<z.ZodEnum<["male", "female"]>>>;
|
|
725
725
|
}>, "strip", z.ZodTypeAny, {
|
|
726
726
|
type: "source_component";
|
|
727
727
|
ftype: "simple_pin_header";
|
|
@@ -1060,7 +1060,7 @@ declare const source_simple_pin_header: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1060
1060
|
}, {
|
|
1061
1061
|
ftype: z.ZodLiteral<"simple_pin_header">;
|
|
1062
1062
|
pin_count: z.ZodNumber;
|
|
1063
|
-
gender: z.ZodDefault<z.ZodEnum<["male", "female"]
|
|
1063
|
+
gender: z.ZodDefault<z.ZodOptional<z.ZodEnum<["male", "female"]>>>;
|
|
1064
1064
|
}>, "strip", z.ZodTypeAny, {
|
|
1065
1065
|
type: "source_component";
|
|
1066
1066
|
ftype: "simple_pin_header";
|
|
@@ -2266,6 +2266,49 @@ interface SchematicDebugPoint {
|
|
|
2266
2266
|
type SchematicDebugObject = SchematicDebugRect | SchematicDebugLine | SchematicDebugPoint;
|
|
2267
2267
|
type SchematicDebugObjectInput = z.input<typeof schematic_debug_object>;
|
|
2268
2268
|
|
|
2269
|
+
interface SchematicVoltageProbe {
|
|
2270
|
+
type: "schematic_voltage_probe";
|
|
2271
|
+
schematic_voltage_probe_id: string;
|
|
2272
|
+
position: Point;
|
|
2273
|
+
schematic_trace_id: string;
|
|
2274
|
+
voltage?: number;
|
|
2275
|
+
}
|
|
2276
|
+
declare const schematic_voltage_probe: z.ZodObject<{
|
|
2277
|
+
type: z.ZodLiteral<"schematic_voltage_probe">;
|
|
2278
|
+
schematic_voltage_probe_id: z.ZodString;
|
|
2279
|
+
position: z.ZodObject<{
|
|
2280
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
2281
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
2282
|
+
}, "strip", z.ZodTypeAny, {
|
|
2283
|
+
x: number;
|
|
2284
|
+
y: number;
|
|
2285
|
+
}, {
|
|
2286
|
+
x: string | number;
|
|
2287
|
+
y: string | number;
|
|
2288
|
+
}>;
|
|
2289
|
+
schematic_trace_id: z.ZodString;
|
|
2290
|
+
voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
2291
|
+
}, "strip", z.ZodTypeAny, {
|
|
2292
|
+
type: "schematic_voltage_probe";
|
|
2293
|
+
schematic_trace_id: string;
|
|
2294
|
+
position: {
|
|
2295
|
+
x: number;
|
|
2296
|
+
y: number;
|
|
2297
|
+
};
|
|
2298
|
+
schematic_voltage_probe_id: string;
|
|
2299
|
+
voltage?: number | undefined;
|
|
2300
|
+
}, {
|
|
2301
|
+
type: "schematic_voltage_probe";
|
|
2302
|
+
schematic_trace_id: string;
|
|
2303
|
+
position: {
|
|
2304
|
+
x: string | number;
|
|
2305
|
+
y: string | number;
|
|
2306
|
+
};
|
|
2307
|
+
schematic_voltage_probe_id: string;
|
|
2308
|
+
voltage?: string | number | undefined;
|
|
2309
|
+
}>;
|
|
2310
|
+
type SchematicVoltageProbeInput = z.input<typeof schematic_voltage_probe>;
|
|
2311
|
+
|
|
2269
2312
|
declare const all_layers: readonly ["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"];
|
|
2270
2313
|
declare const layer_string: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
2271
2314
|
declare const layer_ref: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -4987,7 +5030,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
4987
5030
|
}, {
|
|
4988
5031
|
ftype: z.ZodLiteral<"simple_pin_header">;
|
|
4989
5032
|
pin_count: z.ZodNumber;
|
|
4990
|
-
gender: z.ZodDefault<z.ZodEnum<["male", "female"]
|
|
5033
|
+
gender: z.ZodDefault<z.ZodOptional<z.ZodEnum<["male", "female"]>>>;
|
|
4991
5034
|
}>, "strip", z.ZodTypeAny, {
|
|
4992
5035
|
type: "source_component";
|
|
4993
5036
|
ftype: "simple_pin_header";
|
|
@@ -5312,7 +5355,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
5312
5355
|
}, {
|
|
5313
5356
|
ftype: z.ZodLiteral<"simple_pin_header">;
|
|
5314
5357
|
pin_count: z.ZodNumber;
|
|
5315
|
-
gender: z.ZodDefault<z.ZodEnum<["male", "female"]
|
|
5358
|
+
gender: z.ZodDefault<z.ZodOptional<z.ZodEnum<["male", "female"]>>>;
|
|
5316
5359
|
}>, "strip", z.ZodTypeAny, {
|
|
5317
5360
|
type: "source_component";
|
|
5318
5361
|
ftype: "simple_pin_header";
|
|
@@ -7401,6 +7444,39 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7401
7444
|
shape: "point";
|
|
7402
7445
|
label?: string | undefined;
|
|
7403
7446
|
}>]>, z.ZodObject<{
|
|
7447
|
+
type: z.ZodLiteral<"schematic_voltage_probe">;
|
|
7448
|
+
schematic_voltage_probe_id: z.ZodString;
|
|
7449
|
+
position: z.ZodObject<{
|
|
7450
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
7451
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
7452
|
+
}, "strip", z.ZodTypeAny, {
|
|
7453
|
+
x: number;
|
|
7454
|
+
y: number;
|
|
7455
|
+
}, {
|
|
7456
|
+
x: string | number;
|
|
7457
|
+
y: string | number;
|
|
7458
|
+
}>;
|
|
7459
|
+
schematic_trace_id: z.ZodString;
|
|
7460
|
+
voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
7461
|
+
}, "strip", z.ZodTypeAny, {
|
|
7462
|
+
type: "schematic_voltage_probe";
|
|
7463
|
+
schematic_trace_id: string;
|
|
7464
|
+
position: {
|
|
7465
|
+
x: number;
|
|
7466
|
+
y: number;
|
|
7467
|
+
};
|
|
7468
|
+
schematic_voltage_probe_id: string;
|
|
7469
|
+
voltage?: number | undefined;
|
|
7470
|
+
}, {
|
|
7471
|
+
type: "schematic_voltage_probe";
|
|
7472
|
+
schematic_trace_id: string;
|
|
7473
|
+
position: {
|
|
7474
|
+
x: string | number;
|
|
7475
|
+
y: string | number;
|
|
7476
|
+
};
|
|
7477
|
+
schematic_voltage_probe_id: string;
|
|
7478
|
+
voltage?: string | number | undefined;
|
|
7479
|
+
}>, z.ZodObject<{
|
|
7404
7480
|
type: z.ZodLiteral<"cad_component">;
|
|
7405
7481
|
cad_component_id: z.ZodString;
|
|
7406
7482
|
pcb_component_id: z.ZodString;
|
|
@@ -7930,7 +8006,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7930
8006
|
}, {
|
|
7931
8007
|
ftype: z.ZodLiteral<"simple_pin_header">;
|
|
7932
8008
|
pin_count: z.ZodNumber;
|
|
7933
|
-
gender: z.ZodDefault<z.ZodEnum<["male", "female"]
|
|
8009
|
+
gender: z.ZodDefault<z.ZodOptional<z.ZodEnum<["male", "female"]>>>;
|
|
7934
8010
|
}>, "strip", z.ZodTypeAny, {
|
|
7935
8011
|
type: "source_component";
|
|
7936
8012
|
ftype: "simple_pin_header";
|
|
@@ -8255,7 +8331,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8255
8331
|
}, {
|
|
8256
8332
|
ftype: z.ZodLiteral<"simple_pin_header">;
|
|
8257
8333
|
pin_count: z.ZodNumber;
|
|
8258
|
-
gender: z.ZodDefault<z.ZodEnum<["male", "female"]
|
|
8334
|
+
gender: z.ZodDefault<z.ZodOptional<z.ZodEnum<["male", "female"]>>>;
|
|
8259
8335
|
}>, "strip", z.ZodTypeAny, {
|
|
8260
8336
|
type: "source_component";
|
|
8261
8337
|
ftype: "simple_pin_header";
|
|
@@ -10344,6 +10420,39 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10344
10420
|
shape: "point";
|
|
10345
10421
|
label?: string | undefined;
|
|
10346
10422
|
}>]>, z.ZodObject<{
|
|
10423
|
+
type: z.ZodLiteral<"schematic_voltage_probe">;
|
|
10424
|
+
schematic_voltage_probe_id: z.ZodString;
|
|
10425
|
+
position: z.ZodObject<{
|
|
10426
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
10427
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
10428
|
+
}, "strip", z.ZodTypeAny, {
|
|
10429
|
+
x: number;
|
|
10430
|
+
y: number;
|
|
10431
|
+
}, {
|
|
10432
|
+
x: string | number;
|
|
10433
|
+
y: string | number;
|
|
10434
|
+
}>;
|
|
10435
|
+
schematic_trace_id: z.ZodString;
|
|
10436
|
+
voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
10437
|
+
}, "strip", z.ZodTypeAny, {
|
|
10438
|
+
type: "schematic_voltage_probe";
|
|
10439
|
+
schematic_trace_id: string;
|
|
10440
|
+
position: {
|
|
10441
|
+
x: number;
|
|
10442
|
+
y: number;
|
|
10443
|
+
};
|
|
10444
|
+
schematic_voltage_probe_id: string;
|
|
10445
|
+
voltage?: number | undefined;
|
|
10446
|
+
}, {
|
|
10447
|
+
type: "schematic_voltage_probe";
|
|
10448
|
+
schematic_trace_id: string;
|
|
10449
|
+
position: {
|
|
10450
|
+
x: string | number;
|
|
10451
|
+
y: string | number;
|
|
10452
|
+
};
|
|
10453
|
+
schematic_voltage_probe_id: string;
|
|
10454
|
+
voltage?: string | number | undefined;
|
|
10455
|
+
}>, z.ZodObject<{
|
|
10347
10456
|
type: z.ZodLiteral<"cad_component">;
|
|
10348
10457
|
cad_component_id: z.ZodString;
|
|
10349
10458
|
pcb_component_id: z.ZodString;
|
|
@@ -10467,4 +10576,4 @@ type AnySoupElement = AnyCircuitElement;
|
|
|
10467
10576
|
*/
|
|
10468
10577
|
type AnySoupElementInput = AnyCircuitElementInput;
|
|
10469
10578
|
|
|
10470
|
-
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 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 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 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 PcbSmtPadRect, type PcbSmtPadRotatedRect, 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 SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicLine, type SchematicLineInput, 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 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 SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushbutton, type SourceSimplePushbuttonInput, 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, frequency, 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_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_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_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_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_pin_header, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_trace, supplier_name, time, visible_layer, voltage };
|
|
10579
|
+
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 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 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 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 PcbSmtPadRect, type PcbSmtPadRotatedRect, 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 SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicLine, type SchematicLineInput, 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 SourceNet, type SourceNetInput, type SourcePort, 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 SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushbutton, type SourceSimplePushbuttonInput, 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, frequency, 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_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_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_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_net, source_port, 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_pin_header, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_trace, supplier_name, time, visible_layer, voltage };
|