circuit-json 0.0.394 → 0.0.395
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 +262 -1
- package/dist/index.mjs +1229 -1172
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -28976,6 +28976,123 @@ interface SourceManuallyPlacedVia {
|
|
|
28976
28976
|
source_trace_id?: string;
|
|
28977
28977
|
}
|
|
28978
28978
|
|
|
28979
|
+
declare const source_no_power_pin_defined_warning: z.ZodObject<{
|
|
28980
|
+
type: z.ZodLiteral<"source_no_power_pin_defined_warning">;
|
|
28981
|
+
source_no_power_pin_defined_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
28982
|
+
warning_type: z.ZodDefault<z.ZodLiteral<"source_no_power_pin_defined_warning">>;
|
|
28983
|
+
message: z.ZodString;
|
|
28984
|
+
source_component_id: z.ZodString;
|
|
28985
|
+
source_port_ids: z.ZodArray<z.ZodString, "many">;
|
|
28986
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
28987
|
+
}, "strip", z.ZodTypeAny, {
|
|
28988
|
+
message: string;
|
|
28989
|
+
type: "source_no_power_pin_defined_warning";
|
|
28990
|
+
source_component_id: string;
|
|
28991
|
+
warning_type: "source_no_power_pin_defined_warning";
|
|
28992
|
+
source_port_ids: string[];
|
|
28993
|
+
source_no_power_pin_defined_warning_id: string;
|
|
28994
|
+
subcircuit_id?: string | undefined;
|
|
28995
|
+
}, {
|
|
28996
|
+
message: string;
|
|
28997
|
+
type: "source_no_power_pin_defined_warning";
|
|
28998
|
+
source_component_id: string;
|
|
28999
|
+
source_port_ids: string[];
|
|
29000
|
+
subcircuit_id?: string | undefined;
|
|
29001
|
+
warning_type?: "source_no_power_pin_defined_warning" | undefined;
|
|
29002
|
+
source_no_power_pin_defined_warning_id?: string | undefined;
|
|
29003
|
+
}>;
|
|
29004
|
+
type SourceNoPowerPinDefinedWarningInput = z.input<typeof source_no_power_pin_defined_warning>;
|
|
29005
|
+
/**
|
|
29006
|
+
* Warning emitted when a chip has no source ports with requires_power=true
|
|
29007
|
+
*/
|
|
29008
|
+
interface SourceNoPowerPinDefinedWarning {
|
|
29009
|
+
type: "source_no_power_pin_defined_warning";
|
|
29010
|
+
source_no_power_pin_defined_warning_id: string;
|
|
29011
|
+
warning_type: "source_no_power_pin_defined_warning";
|
|
29012
|
+
message: string;
|
|
29013
|
+
source_component_id: string;
|
|
29014
|
+
source_port_ids: string[];
|
|
29015
|
+
subcircuit_id?: string;
|
|
29016
|
+
}
|
|
29017
|
+
|
|
29018
|
+
declare const source_no_ground_pin_defined_warning: z.ZodObject<{
|
|
29019
|
+
type: z.ZodLiteral<"source_no_ground_pin_defined_warning">;
|
|
29020
|
+
source_no_ground_pin_defined_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
29021
|
+
warning_type: z.ZodDefault<z.ZodLiteral<"source_no_ground_pin_defined_warning">>;
|
|
29022
|
+
message: z.ZodString;
|
|
29023
|
+
source_component_id: z.ZodString;
|
|
29024
|
+
source_port_ids: z.ZodArray<z.ZodString, "many">;
|
|
29025
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
29026
|
+
}, "strip", z.ZodTypeAny, {
|
|
29027
|
+
message: string;
|
|
29028
|
+
type: "source_no_ground_pin_defined_warning";
|
|
29029
|
+
source_component_id: string;
|
|
29030
|
+
warning_type: "source_no_ground_pin_defined_warning";
|
|
29031
|
+
source_port_ids: string[];
|
|
29032
|
+
source_no_ground_pin_defined_warning_id: string;
|
|
29033
|
+
subcircuit_id?: string | undefined;
|
|
29034
|
+
}, {
|
|
29035
|
+
message: string;
|
|
29036
|
+
type: "source_no_ground_pin_defined_warning";
|
|
29037
|
+
source_component_id: string;
|
|
29038
|
+
source_port_ids: string[];
|
|
29039
|
+
subcircuit_id?: string | undefined;
|
|
29040
|
+
warning_type?: "source_no_ground_pin_defined_warning" | undefined;
|
|
29041
|
+
source_no_ground_pin_defined_warning_id?: string | undefined;
|
|
29042
|
+
}>;
|
|
29043
|
+
type SourceNoGroundPinDefinedWarningInput = z.input<typeof source_no_ground_pin_defined_warning>;
|
|
29044
|
+
/**
|
|
29045
|
+
* Warning emitted when a chip has no source ports marked as ground pins
|
|
29046
|
+
*/
|
|
29047
|
+
interface SourceNoGroundPinDefinedWarning {
|
|
29048
|
+
type: "source_no_ground_pin_defined_warning";
|
|
29049
|
+
source_no_ground_pin_defined_warning_id: string;
|
|
29050
|
+
warning_type: "source_no_ground_pin_defined_warning";
|
|
29051
|
+
message: string;
|
|
29052
|
+
source_component_id: string;
|
|
29053
|
+
source_port_ids: string[];
|
|
29054
|
+
subcircuit_id?: string;
|
|
29055
|
+
}
|
|
29056
|
+
|
|
29057
|
+
declare const source_component_pins_underspecified_warning: z.ZodObject<{
|
|
29058
|
+
type: z.ZodLiteral<"source_component_pins_underspecified_warning">;
|
|
29059
|
+
source_component_pins_underspecified_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
29060
|
+
warning_type: z.ZodDefault<z.ZodLiteral<"source_component_pins_underspecified_warning">>;
|
|
29061
|
+
message: z.ZodString;
|
|
29062
|
+
source_component_id: z.ZodString;
|
|
29063
|
+
source_port_ids: z.ZodArray<z.ZodString, "many">;
|
|
29064
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
29065
|
+
}, "strip", z.ZodTypeAny, {
|
|
29066
|
+
message: string;
|
|
29067
|
+
type: "source_component_pins_underspecified_warning";
|
|
29068
|
+
source_component_id: string;
|
|
29069
|
+
warning_type: "source_component_pins_underspecified_warning";
|
|
29070
|
+
source_port_ids: string[];
|
|
29071
|
+
source_component_pins_underspecified_warning_id: string;
|
|
29072
|
+
subcircuit_id?: string | undefined;
|
|
29073
|
+
}, {
|
|
29074
|
+
message: string;
|
|
29075
|
+
type: "source_component_pins_underspecified_warning";
|
|
29076
|
+
source_component_id: string;
|
|
29077
|
+
source_port_ids: string[];
|
|
29078
|
+
subcircuit_id?: string | undefined;
|
|
29079
|
+
warning_type?: "source_component_pins_underspecified_warning" | undefined;
|
|
29080
|
+
source_component_pins_underspecified_warning_id?: string | undefined;
|
|
29081
|
+
}>;
|
|
29082
|
+
type SourceComponentPinsUnderspecifiedWarningInput = z.input<typeof source_component_pins_underspecified_warning>;
|
|
29083
|
+
/**
|
|
29084
|
+
* Warning emitted when all ports on a source component are underspecified
|
|
29085
|
+
*/
|
|
29086
|
+
interface SourceComponentPinsUnderspecifiedWarning {
|
|
29087
|
+
type: "source_component_pins_underspecified_warning";
|
|
29088
|
+
source_component_pins_underspecified_warning_id: string;
|
|
29089
|
+
warning_type: "source_component_pins_underspecified_warning";
|
|
29090
|
+
message: string;
|
|
29091
|
+
source_component_id: string;
|
|
29092
|
+
source_port_ids: string[];
|
|
29093
|
+
subcircuit_id?: string;
|
|
29094
|
+
}
|
|
29095
|
+
|
|
28979
29096
|
declare const source_pin_must_be_connected_error: z.ZodObject<{
|
|
28980
29097
|
message: z.ZodString;
|
|
28981
29098
|
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -34516,6 +34633,78 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
34516
34633
|
subcircuit_id?: string | undefined;
|
|
34517
34634
|
warning_type?: "source_pin_missing_trace_warning" | undefined;
|
|
34518
34635
|
source_pin_missing_trace_warning_id?: string | undefined;
|
|
34636
|
+
}>, z.ZodObject<{
|
|
34637
|
+
type: z.ZodLiteral<"source_no_power_pin_defined_warning">;
|
|
34638
|
+
source_no_power_pin_defined_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
34639
|
+
warning_type: z.ZodDefault<z.ZodLiteral<"source_no_power_pin_defined_warning">>;
|
|
34640
|
+
message: z.ZodString;
|
|
34641
|
+
source_component_id: z.ZodString;
|
|
34642
|
+
source_port_ids: z.ZodArray<z.ZodString, "many">;
|
|
34643
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
34644
|
+
}, "strip", z.ZodTypeAny, {
|
|
34645
|
+
message: string;
|
|
34646
|
+
type: "source_no_power_pin_defined_warning";
|
|
34647
|
+
source_component_id: string;
|
|
34648
|
+
warning_type: "source_no_power_pin_defined_warning";
|
|
34649
|
+
source_port_ids: string[];
|
|
34650
|
+
source_no_power_pin_defined_warning_id: string;
|
|
34651
|
+
subcircuit_id?: string | undefined;
|
|
34652
|
+
}, {
|
|
34653
|
+
message: string;
|
|
34654
|
+
type: "source_no_power_pin_defined_warning";
|
|
34655
|
+
source_component_id: string;
|
|
34656
|
+
source_port_ids: string[];
|
|
34657
|
+
subcircuit_id?: string | undefined;
|
|
34658
|
+
warning_type?: "source_no_power_pin_defined_warning" | undefined;
|
|
34659
|
+
source_no_power_pin_defined_warning_id?: string | undefined;
|
|
34660
|
+
}>, z.ZodObject<{
|
|
34661
|
+
type: z.ZodLiteral<"source_no_ground_pin_defined_warning">;
|
|
34662
|
+
source_no_ground_pin_defined_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
34663
|
+
warning_type: z.ZodDefault<z.ZodLiteral<"source_no_ground_pin_defined_warning">>;
|
|
34664
|
+
message: z.ZodString;
|
|
34665
|
+
source_component_id: z.ZodString;
|
|
34666
|
+
source_port_ids: z.ZodArray<z.ZodString, "many">;
|
|
34667
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
34668
|
+
}, "strip", z.ZodTypeAny, {
|
|
34669
|
+
message: string;
|
|
34670
|
+
type: "source_no_ground_pin_defined_warning";
|
|
34671
|
+
source_component_id: string;
|
|
34672
|
+
warning_type: "source_no_ground_pin_defined_warning";
|
|
34673
|
+
source_port_ids: string[];
|
|
34674
|
+
source_no_ground_pin_defined_warning_id: string;
|
|
34675
|
+
subcircuit_id?: string | undefined;
|
|
34676
|
+
}, {
|
|
34677
|
+
message: string;
|
|
34678
|
+
type: "source_no_ground_pin_defined_warning";
|
|
34679
|
+
source_component_id: string;
|
|
34680
|
+
source_port_ids: string[];
|
|
34681
|
+
subcircuit_id?: string | undefined;
|
|
34682
|
+
warning_type?: "source_no_ground_pin_defined_warning" | undefined;
|
|
34683
|
+
source_no_ground_pin_defined_warning_id?: string | undefined;
|
|
34684
|
+
}>, z.ZodObject<{
|
|
34685
|
+
type: z.ZodLiteral<"source_component_pins_underspecified_warning">;
|
|
34686
|
+
source_component_pins_underspecified_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
34687
|
+
warning_type: z.ZodDefault<z.ZodLiteral<"source_component_pins_underspecified_warning">>;
|
|
34688
|
+
message: z.ZodString;
|
|
34689
|
+
source_component_id: z.ZodString;
|
|
34690
|
+
source_port_ids: z.ZodArray<z.ZodString, "many">;
|
|
34691
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
34692
|
+
}, "strip", z.ZodTypeAny, {
|
|
34693
|
+
message: string;
|
|
34694
|
+
type: "source_component_pins_underspecified_warning";
|
|
34695
|
+
source_component_id: string;
|
|
34696
|
+
warning_type: "source_component_pins_underspecified_warning";
|
|
34697
|
+
source_port_ids: string[];
|
|
34698
|
+
source_component_pins_underspecified_warning_id: string;
|
|
34699
|
+
subcircuit_id?: string | undefined;
|
|
34700
|
+
}, {
|
|
34701
|
+
message: string;
|
|
34702
|
+
type: "source_component_pins_underspecified_warning";
|
|
34703
|
+
source_component_id: string;
|
|
34704
|
+
source_port_ids: string[];
|
|
34705
|
+
subcircuit_id?: string | undefined;
|
|
34706
|
+
warning_type?: "source_component_pins_underspecified_warning" | undefined;
|
|
34707
|
+
source_component_pins_underspecified_warning_id?: string | undefined;
|
|
34519
34708
|
}>, z.ZodObject<{
|
|
34520
34709
|
message: z.ZodString;
|
|
34521
34710
|
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -52084,6 +52273,78 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
52084
52273
|
subcircuit_id?: string | undefined;
|
|
52085
52274
|
warning_type?: "source_pin_missing_trace_warning" | undefined;
|
|
52086
52275
|
source_pin_missing_trace_warning_id?: string | undefined;
|
|
52276
|
+
}>, z.ZodObject<{
|
|
52277
|
+
type: z.ZodLiteral<"source_no_power_pin_defined_warning">;
|
|
52278
|
+
source_no_power_pin_defined_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
52279
|
+
warning_type: z.ZodDefault<z.ZodLiteral<"source_no_power_pin_defined_warning">>;
|
|
52280
|
+
message: z.ZodString;
|
|
52281
|
+
source_component_id: z.ZodString;
|
|
52282
|
+
source_port_ids: z.ZodArray<z.ZodString, "many">;
|
|
52283
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
52284
|
+
}, "strip", z.ZodTypeAny, {
|
|
52285
|
+
message: string;
|
|
52286
|
+
type: "source_no_power_pin_defined_warning";
|
|
52287
|
+
source_component_id: string;
|
|
52288
|
+
warning_type: "source_no_power_pin_defined_warning";
|
|
52289
|
+
source_port_ids: string[];
|
|
52290
|
+
source_no_power_pin_defined_warning_id: string;
|
|
52291
|
+
subcircuit_id?: string | undefined;
|
|
52292
|
+
}, {
|
|
52293
|
+
message: string;
|
|
52294
|
+
type: "source_no_power_pin_defined_warning";
|
|
52295
|
+
source_component_id: string;
|
|
52296
|
+
source_port_ids: string[];
|
|
52297
|
+
subcircuit_id?: string | undefined;
|
|
52298
|
+
warning_type?: "source_no_power_pin_defined_warning" | undefined;
|
|
52299
|
+
source_no_power_pin_defined_warning_id?: string | undefined;
|
|
52300
|
+
}>, z.ZodObject<{
|
|
52301
|
+
type: z.ZodLiteral<"source_no_ground_pin_defined_warning">;
|
|
52302
|
+
source_no_ground_pin_defined_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
52303
|
+
warning_type: z.ZodDefault<z.ZodLiteral<"source_no_ground_pin_defined_warning">>;
|
|
52304
|
+
message: z.ZodString;
|
|
52305
|
+
source_component_id: z.ZodString;
|
|
52306
|
+
source_port_ids: z.ZodArray<z.ZodString, "many">;
|
|
52307
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
52308
|
+
}, "strip", z.ZodTypeAny, {
|
|
52309
|
+
message: string;
|
|
52310
|
+
type: "source_no_ground_pin_defined_warning";
|
|
52311
|
+
source_component_id: string;
|
|
52312
|
+
warning_type: "source_no_ground_pin_defined_warning";
|
|
52313
|
+
source_port_ids: string[];
|
|
52314
|
+
source_no_ground_pin_defined_warning_id: string;
|
|
52315
|
+
subcircuit_id?: string | undefined;
|
|
52316
|
+
}, {
|
|
52317
|
+
message: string;
|
|
52318
|
+
type: "source_no_ground_pin_defined_warning";
|
|
52319
|
+
source_component_id: string;
|
|
52320
|
+
source_port_ids: string[];
|
|
52321
|
+
subcircuit_id?: string | undefined;
|
|
52322
|
+
warning_type?: "source_no_ground_pin_defined_warning" | undefined;
|
|
52323
|
+
source_no_ground_pin_defined_warning_id?: string | undefined;
|
|
52324
|
+
}>, z.ZodObject<{
|
|
52325
|
+
type: z.ZodLiteral<"source_component_pins_underspecified_warning">;
|
|
52326
|
+
source_component_pins_underspecified_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
52327
|
+
warning_type: z.ZodDefault<z.ZodLiteral<"source_component_pins_underspecified_warning">>;
|
|
52328
|
+
message: z.ZodString;
|
|
52329
|
+
source_component_id: z.ZodString;
|
|
52330
|
+
source_port_ids: z.ZodArray<z.ZodString, "many">;
|
|
52331
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
52332
|
+
}, "strip", z.ZodTypeAny, {
|
|
52333
|
+
message: string;
|
|
52334
|
+
type: "source_component_pins_underspecified_warning";
|
|
52335
|
+
source_component_id: string;
|
|
52336
|
+
warning_type: "source_component_pins_underspecified_warning";
|
|
52337
|
+
source_port_ids: string[];
|
|
52338
|
+
source_component_pins_underspecified_warning_id: string;
|
|
52339
|
+
subcircuit_id?: string | undefined;
|
|
52340
|
+
}, {
|
|
52341
|
+
message: string;
|
|
52342
|
+
type: "source_component_pins_underspecified_warning";
|
|
52343
|
+
source_component_id: string;
|
|
52344
|
+
source_port_ids: string[];
|
|
52345
|
+
subcircuit_id?: string | undefined;
|
|
52346
|
+
warning_type?: "source_component_pins_underspecified_warning" | undefined;
|
|
52347
|
+
source_component_pins_underspecified_warning_id?: string | undefined;
|
|
52087
52348
|
}>, z.ZodObject<{
|
|
52088
52349
|
message: z.ZodString;
|
|
52089
52350
|
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -67037,4 +67298,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
67037
67298
|
*/
|
|
67038
67299
|
type CircuitJson = AnyCircuitElement[];
|
|
67039
67300
|
|
|
67040
|
-
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type Asset, type AssetInput, type BRepShape, type BaseCircuitJsonError, type BaseCircuitJsonErrorInput, type CadComponent, type CadComponentAnchorAlignment, type CadComponentInput, type CircuitJson, type CircuitJsonError, type CircuitJsonFootprintLoadError, type CircuitJsonFootprintLoadErrorInput, type Distance, type ExperimentType, type ExternalFootprintLoadError, type ExternalFootprintLoadErrorInput, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type KicadAt, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBCopperText, type PCBCourtyardOutline, type PCBCourtyardPolygon, type PCBCourtyardRect, type PCBFabricationNoteDimension, type PCBFabricationNotePath, type PCBFabricationNoteRect, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPanel, type PCBPanelizationPlacementError, 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 PcbComponentInvalidLayerError, type PcbComponentInvalidLayerErrorInput, type PcbComponentMetadata, type PcbComponentNotOnBoardEdgeError, type PcbComponentNotOnBoardEdgeErrorInput, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbConnectorNotInAccessibleOrientationWarning, type PcbConnectorNotInAccessibleOrientationWarningInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCopperText, type PcbCopperTextInput, type PcbCourtyardCircle, type PcbCourtyardCircleInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardPolygon, type PcbCourtyardPolygonInput, type PcbCourtyardRect, type PcbCourtyardRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPath, type PcbCutoutPathInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNoteDimension, type PcbFabricationNoteDimensionInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteRect, type PcbFabricationNoteRectInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircle, type PcbHoleCircleInput, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePill, type PcbHolePillInput, type PcbHolePillWithRectPad, type PcbHoleRect, type PcbHoleRectInput, type PcbHoleRotatedPill, type PcbHoleRotatedPillInput, type PcbHoleRotatedPillWithRectPad, type PcbHoleWithPolygonPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbNet, type PcbNetInput, type PcbNoteDimension, type PcbNoteDimensionInput, type PcbNoteLine, type PcbNoteLineInput, type PcbNotePath, type PcbNotePathInput, type PcbNoteRect, type PcbNoteRectInput, type PcbNoteText, type PcbNoteTextInput, type PcbPanel, type PcbPanelInput, type PcbPanelizationPlacementError, type PcbPanelizationPlacementErrorInput, 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 PcbRenderLayer, 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 PcbSilkscreenPill, type PcbSilkscreenPillDeprecated, type PcbSilkscreenPillInput, 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 PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicArc, type SchematicArcInput, type SchematicBox, type SchematicBoxInput, type SchematicCircle, type SchematicCircleInput, 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 SchematicRect, type SchematicRectInput, type SchematicSheet, type SchematicSheetInput, type SchematicSymbol, type SchematicSymbolInput, type SchematicSymbolMetadata, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcCurrentSource, type SimulationAcCurrentSourceInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationCurrentSource, type SimulationCurrentSourceInput, type SimulationDcCurrentSource, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationOpAmp, type SimulationOpAmpInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationUnknownExperimentError, type SimulationUnknownExperimentErrorInput, type SimulationVoltageProbe, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceAmbiguousPortReference, type SourceAmbiguousPortReferenceInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceComponentInternalConnection, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceI2cMisconfiguredError, type SourceI2cMisconfiguredErrorInput, type SourceInterconnect, type SourceInterconnectInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinAttributes, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePinMustBeConnectedError, type SourcePinMustBeConnectedErrorInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleConnector, type SourceSimpleConnectorInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleCurrentSource, type SourceSimpleCurrentSourceInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleFiducial, type SourceSimpleFiducialInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimpleOpAmp, type SourceSimpleOpAmpInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePinout, type SourceSimplePinoutInput, 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 SourceSimpleVoltageProbe, type SourceSimpleVoltageProbeInput, type SourceSimpleVoltageSource, type SourceSimpleVoltageSourceInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type UnknownErrorFindingPart, type UnknownErrorFindingPartInput, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, asset, base_circuit_json_error, battery_capacity, brep_shape, cad_component, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layer_ref, layer_string, length, ms, ninePointAnchor, pcbRenderLayer, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_not_on_board_edge_error, pcb_component_outside_board_error, pcb_connector_not_in_accessible_orientation_warning, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_copper_text, pcb_courtyard_circle, pcb_courtyard_outline, pcb_courtyard_polygon, pcb_courtyard_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_path, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_dimension, pcb_fabrication_note_path, pcb_fabrication_note_rect, 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_circle_shape, pcb_hole_oval_shape, pcb_hole_pill_shape, pcb_hole_rect_shape, pcb_hole_rotated_pill_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_net, pcb_note_dimension, pcb_note_line, pcb_note_path, pcb_note_rect, pcb_note_text, pcb_panel, pcb_panelization_placement_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_pill, 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, pcb_via_clearance_error, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, rotation, route_hint_point, schematic_arc, schematic_box, schematic_circle, 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_rect, schematic_sheet, schematic_symbol, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_current_source, simulation_ac_voltage_source, simulation_current_source, simulation_dc_current_source, simulation_dc_voltage_source, simulation_experiment, simulation_op_amp, simulation_switch, simulation_transient_voltage_graph, simulation_unknown_experiment_error, simulation_voltage_probe, simulation_voltage_source, size, source_ambiguous_port_reference, source_board, source_component_base, source_component_internal_connection, source_failed_to_create_component_error, source_group, source_i2c_misconfigured_error, source_interconnect, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, source_pin_attributes, source_pin_missing_trace_warning, source_pin_must_be_connected_error, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_connector, source_simple_crystal, source_simple_current_source, source_simple_diode, source_simple_fiducial, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_op_amp, source_simple_pin_header, source_simple_pinout, 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_simple_voltage_probe, source_simple_voltage_source, source_trace, source_trace_not_connected_error, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|
|
67301
|
+
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type Asset, type AssetInput, type BRepShape, type BaseCircuitJsonError, type BaseCircuitJsonErrorInput, type CadComponent, type CadComponentAnchorAlignment, type CadComponentInput, type CircuitJson, type CircuitJsonError, type CircuitJsonFootprintLoadError, type CircuitJsonFootprintLoadErrorInput, type Distance, type ExperimentType, type ExternalFootprintLoadError, type ExternalFootprintLoadErrorInput, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type KicadAt, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBCopperText, type PCBCourtyardOutline, type PCBCourtyardPolygon, type PCBCourtyardRect, type PCBFabricationNoteDimension, type PCBFabricationNotePath, type PCBFabricationNoteRect, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPanel, type PCBPanelizationPlacementError, 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 PcbComponentInvalidLayerError, type PcbComponentInvalidLayerErrorInput, type PcbComponentMetadata, type PcbComponentNotOnBoardEdgeError, type PcbComponentNotOnBoardEdgeErrorInput, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbConnectorNotInAccessibleOrientationWarning, type PcbConnectorNotInAccessibleOrientationWarningInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCopperText, type PcbCopperTextInput, type PcbCourtyardCircle, type PcbCourtyardCircleInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardPolygon, type PcbCourtyardPolygonInput, type PcbCourtyardRect, type PcbCourtyardRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPath, type PcbCutoutPathInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNoteDimension, type PcbFabricationNoteDimensionInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteRect, type PcbFabricationNoteRectInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircle, type PcbHoleCircleInput, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePill, type PcbHolePillInput, type PcbHolePillWithRectPad, type PcbHoleRect, type PcbHoleRectInput, type PcbHoleRotatedPill, type PcbHoleRotatedPillInput, type PcbHoleRotatedPillWithRectPad, type PcbHoleWithPolygonPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbNet, type PcbNetInput, type PcbNoteDimension, type PcbNoteDimensionInput, type PcbNoteLine, type PcbNoteLineInput, type PcbNotePath, type PcbNotePathInput, type PcbNoteRect, type PcbNoteRectInput, type PcbNoteText, type PcbNoteTextInput, type PcbPanel, type PcbPanelInput, type PcbPanelizationPlacementError, type PcbPanelizationPlacementErrorInput, 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 PcbRenderLayer, 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 PcbSilkscreenPill, type PcbSilkscreenPillDeprecated, type PcbSilkscreenPillInput, 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 PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicArc, type SchematicArcInput, type SchematicBox, type SchematicBoxInput, type SchematicCircle, type SchematicCircleInput, 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 SchematicRect, type SchematicRectInput, type SchematicSheet, type SchematicSheetInput, type SchematicSymbol, type SchematicSymbolInput, type SchematicSymbolMetadata, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcCurrentSource, type SimulationAcCurrentSourceInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationCurrentSource, type SimulationCurrentSourceInput, type SimulationDcCurrentSource, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationOpAmp, type SimulationOpAmpInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationUnknownExperimentError, type SimulationUnknownExperimentErrorInput, type SimulationVoltageProbe, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceAmbiguousPortReference, type SourceAmbiguousPortReferenceInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceComponentInternalConnection, type SourceComponentPinsUnderspecifiedWarning, type SourceComponentPinsUnderspecifiedWarningInput, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceI2cMisconfiguredError, type SourceI2cMisconfiguredErrorInput, type SourceInterconnect, type SourceInterconnectInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourceNoGroundPinDefinedWarning, type SourceNoGroundPinDefinedWarningInput, type SourceNoPowerPinDefinedWarning, type SourceNoPowerPinDefinedWarningInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinAttributes, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePinMustBeConnectedError, type SourcePinMustBeConnectedErrorInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleConnector, type SourceSimpleConnectorInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleCurrentSource, type SourceSimpleCurrentSourceInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleFiducial, type SourceSimpleFiducialInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimpleOpAmp, type SourceSimpleOpAmpInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePinout, type SourceSimplePinoutInput, 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 SourceSimpleVoltageProbe, type SourceSimpleVoltageProbeInput, type SourceSimpleVoltageSource, type SourceSimpleVoltageSourceInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type UnknownErrorFindingPart, type UnknownErrorFindingPartInput, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, asset, base_circuit_json_error, battery_capacity, brep_shape, cad_component, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layer_ref, layer_string, length, ms, ninePointAnchor, pcbRenderLayer, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_not_on_board_edge_error, pcb_component_outside_board_error, pcb_connector_not_in_accessible_orientation_warning, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_copper_text, pcb_courtyard_circle, pcb_courtyard_outline, pcb_courtyard_polygon, pcb_courtyard_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_path, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_dimension, pcb_fabrication_note_path, pcb_fabrication_note_rect, 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_circle_shape, pcb_hole_oval_shape, pcb_hole_pill_shape, pcb_hole_rect_shape, pcb_hole_rotated_pill_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_net, pcb_note_dimension, pcb_note_line, pcb_note_path, pcb_note_rect, pcb_note_text, pcb_panel, pcb_panelization_placement_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_pill, 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, pcb_via_clearance_error, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, rotation, route_hint_point, schematic_arc, schematic_box, schematic_circle, 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_rect, schematic_sheet, schematic_symbol, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_current_source, simulation_ac_voltage_source, simulation_current_source, simulation_dc_current_source, simulation_dc_voltage_source, simulation_experiment, simulation_op_amp, simulation_switch, simulation_transient_voltage_graph, simulation_unknown_experiment_error, simulation_voltage_probe, simulation_voltage_source, size, source_ambiguous_port_reference, source_board, source_component_base, source_component_internal_connection, source_component_pins_underspecified_warning, source_failed_to_create_component_error, source_group, source_i2c_misconfigured_error, source_interconnect, source_manually_placed_via, source_missing_property_error, source_net, source_no_ground_pin_defined_warning, source_no_power_pin_defined_warning, source_pcb_ground_plane, source_pin_attributes, source_pin_missing_trace_warning, source_pin_must_be_connected_error, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_connector, source_simple_crystal, source_simple_current_source, source_simple_diode, source_simple_fiducial, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_op_amp, source_simple_pin_header, source_simple_pinout, 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_simple_voltage_probe, source_simple_voltage_source, source_trace, source_trace_not_connected_error, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|