circuit-json 0.0.427 → 0.0.429

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 CHANGED
@@ -7827,6 +7827,8 @@ declare const pcb_board: z.ZodObject<{
7827
7827
  }>, "many">>;
7828
7828
  shape: z.ZodOptional<z.ZodEnum<["rect", "polygon"]>>;
7829
7829
  material: z.ZodDefault<z.ZodEnum<["fr4", "fr1"]>>;
7830
+ solder_mask_color: z.ZodOptional<z.ZodString>;
7831
+ silkscreen_color: z.ZodOptional<z.ZodString>;
7830
7832
  anchor_position: z.ZodOptional<z.ZodObject<{
7831
7833
  x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
7832
7834
  y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -7892,6 +7894,8 @@ declare const pcb_board: z.ZodObject<{
7892
7894
  x: number;
7893
7895
  y: number;
7894
7896
  }[] | undefined;
7897
+ solder_mask_color?: string | undefined;
7898
+ silkscreen_color?: string | undefined;
7895
7899
  }, {
7896
7900
  type: "pcb_board";
7897
7901
  center: {
@@ -7933,6 +7937,8 @@ declare const pcb_board: z.ZodObject<{
7933
7937
  y: string | number;
7934
7938
  }[] | undefined;
7935
7939
  material?: "fr4" | "fr1" | undefined;
7940
+ solder_mask_color?: string | undefined;
7941
+ silkscreen_color?: string | undefined;
7936
7942
  }>;
7937
7943
  /**
7938
7944
  * Defines the board outline of the PCB
@@ -7955,6 +7961,8 @@ interface PcbBoard extends ManufacturingDrcProperties {
7955
7961
  outline?: Point[];
7956
7962
  shape?: "rect" | "polygon";
7957
7963
  material: "fr4" | "fr1";
7964
+ solder_mask_color?: string;
7965
+ silkscreen_color?: string;
7958
7966
  anchor_position?: Point;
7959
7967
  anchor_alignment?: NinePointAnchor;
7960
7968
  position_mode?: "relative_to_panel_anchor" | "none";
@@ -27988,6 +27996,44 @@ interface SourceI2cMisconfiguredError extends BaseCircuitJsonError {
27988
27996
  source_port_ids: string[];
27989
27997
  }
27990
27998
 
27999
+ declare const source_component_misconfigured_error: z.ZodObject<{
28000
+ message: z.ZodString;
28001
+ is_fatal: z.ZodOptional<z.ZodBoolean>;
28002
+ } & {
28003
+ type: z.ZodLiteral<"source_component_misconfigured_error">;
28004
+ source_component_misconfigured_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
28005
+ error_type: z.ZodDefault<z.ZodLiteral<"source_component_misconfigured_error">>;
28006
+ source_component_ids: z.ZodArray<z.ZodString, "many">;
28007
+ source_port_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
28008
+ }, "strip", z.ZodTypeAny, {
28009
+ message: string;
28010
+ type: "source_component_misconfigured_error";
28011
+ error_type: "source_component_misconfigured_error";
28012
+ source_component_misconfigured_error_id: string;
28013
+ source_component_ids: string[];
28014
+ is_fatal?: boolean | undefined;
28015
+ source_port_ids?: string[] | undefined;
28016
+ }, {
28017
+ message: string;
28018
+ type: "source_component_misconfigured_error";
28019
+ source_component_ids: string[];
28020
+ error_type?: "source_component_misconfigured_error" | undefined;
28021
+ is_fatal?: boolean | undefined;
28022
+ source_port_ids?: string[] | undefined;
28023
+ source_component_misconfigured_error_id?: string | undefined;
28024
+ }>;
28025
+ type SourceComponentMisconfiguredErrorInput = z.input<typeof source_component_misconfigured_error>;
28026
+ /**
28027
+ * Error emitted when one or more source components have an invalid or conflicting configuration
28028
+ */
28029
+ interface SourceComponentMisconfiguredError extends BaseCircuitJsonError {
28030
+ type: "source_component_misconfigured_error";
28031
+ source_component_misconfigured_error_id: string;
28032
+ error_type: "source_component_misconfigured_error";
28033
+ source_component_ids: string[];
28034
+ source_port_ids?: string[];
28035
+ }
28036
+
27991
28037
  declare const source_simple_voltage_source: z.ZodObject<{
27992
28038
  type: z.ZodLiteral<"source_component">;
27993
28039
  source_component_id: z.ZodString;
@@ -29554,12 +29600,37 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29554
29600
  error_type?: "source_i2c_misconfigured_error" | undefined;
29555
29601
  is_fatal?: boolean | undefined;
29556
29602
  source_i2c_misconfigured_error_id?: string | undefined;
29603
+ }>, z.ZodObject<{
29604
+ message: z.ZodString;
29605
+ is_fatal: z.ZodOptional<z.ZodBoolean>;
29606
+ } & {
29607
+ type: z.ZodLiteral<"source_component_misconfigured_error">;
29608
+ source_component_misconfigured_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
29609
+ error_type: z.ZodDefault<z.ZodLiteral<"source_component_misconfigured_error">>;
29610
+ source_component_ids: z.ZodArray<z.ZodString, "many">;
29611
+ source_port_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
29612
+ }, "strip", z.ZodTypeAny, {
29613
+ message: string;
29614
+ type: "source_component_misconfigured_error";
29615
+ error_type: "source_component_misconfigured_error";
29616
+ source_component_misconfigured_error_id: string;
29617
+ source_component_ids: string[];
29618
+ is_fatal?: boolean | undefined;
29619
+ source_port_ids?: string[] | undefined;
29620
+ }, {
29621
+ message: string;
29622
+ type: "source_component_misconfigured_error";
29623
+ source_component_ids: string[];
29624
+ error_type?: "source_component_misconfigured_error" | undefined;
29625
+ is_fatal?: boolean | undefined;
29626
+ source_port_ids?: string[] | undefined;
29627
+ source_component_misconfigured_error_id?: string | undefined;
29557
29628
  }>]>;
29558
29629
  /**
29559
29630
  * Deprecated: use `AnySourceElement` instead
29560
29631
  */
29561
29632
  type AnySourceComponent = z.infer<typeof any_source_component>;
29562
- type AnySourceElement = SourceSimpleResistor | SourceSimpleCapacitor | SourceSimpleDiode | SourceSimpleFiducial | SourceSimpleLed | SourceSimpleGround | SourceSimpleChip | SourceSimplePowerSource | SourceSimpleCurrentSource | SourceSimpleBattery | SourceSimpleInductor | SourceSimplePushButton | SourceSimplePotentiometer | SourceSimpleCrystal | SourceSimplePinHeader | SourceSimpleConnector | SourceSimplePinout | SourceSimpleResonator | SourceSimpleSwitch | SourceSimpleTransistor | SourceSimpleTestPoint | SourceSimpleMosfet | SourceSimpleFuse | SourceSimpleOpAmp | SourceSimpleVoltageProbe | SourceSimpleVoltageSource | SourceInterconnect | SourceProjectMetadata | SourceMissingPropertyError | SourceInvalidComponentPropertyError | SourceFailedToCreateComponentError | SourceTraceNotConnectedError | SourcePropertyIgnoredWarning | SourcePinMissingTraceWarning | SourceMissingManufacturerPartNumberWarning | SourceI2cMisconfiguredError;
29633
+ type AnySourceElement = SourceSimpleResistor | SourceSimpleCapacitor | SourceSimpleDiode | SourceSimpleFiducial | SourceSimpleLed | SourceSimpleGround | SourceSimpleChip | SourceSimplePowerSource | SourceSimpleCurrentSource | SourceSimpleBattery | SourceSimpleInductor | SourceSimplePushButton | SourceSimplePotentiometer | SourceSimpleCrystal | SourceSimplePinHeader | SourceSimpleConnector | SourceSimplePinout | SourceSimpleResonator | SourceSimpleSwitch | SourceSimpleTransistor | SourceSimpleTestPoint | SourceSimpleMosfet | SourceSimpleFuse | SourceSimpleOpAmp | SourceSimpleVoltageProbe | SourceSimpleVoltageSource | SourceInterconnect | SourceProjectMetadata | SourceMissingPropertyError | SourceInvalidComponentPropertyError | SourceFailedToCreateComponentError | SourceTraceNotConnectedError | SourcePropertyIgnoredWarning | SourcePinMissingTraceWarning | SourceMissingManufacturerPartNumberWarning | SourceI2cMisconfiguredError | SourceComponentMisconfiguredError;
29563
29634
 
29564
29635
  declare const source_port: z.ZodObject<{
29565
29636
  type: z.ZodLiteral<"source_port">;
@@ -34759,6 +34830,31 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34759
34830
  error_type?: "source_i2c_misconfigured_error" | undefined;
34760
34831
  is_fatal?: boolean | undefined;
34761
34832
  source_i2c_misconfigured_error_id?: string | undefined;
34833
+ }>, z.ZodObject<{
34834
+ message: z.ZodString;
34835
+ is_fatal: z.ZodOptional<z.ZodBoolean>;
34836
+ } & {
34837
+ type: z.ZodLiteral<"source_component_misconfigured_error">;
34838
+ source_component_misconfigured_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
34839
+ error_type: z.ZodDefault<z.ZodLiteral<"source_component_misconfigured_error">>;
34840
+ source_component_ids: z.ZodArray<z.ZodString, "many">;
34841
+ source_port_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
34842
+ }, "strip", z.ZodTypeAny, {
34843
+ message: string;
34844
+ type: "source_component_misconfigured_error";
34845
+ error_type: "source_component_misconfigured_error";
34846
+ source_component_misconfigured_error_id: string;
34847
+ source_component_ids: string[];
34848
+ is_fatal?: boolean | undefined;
34849
+ source_port_ids?: string[] | undefined;
34850
+ }, {
34851
+ message: string;
34852
+ type: "source_component_misconfigured_error";
34853
+ source_component_ids: string[];
34854
+ error_type?: "source_component_misconfigured_error" | undefined;
34855
+ is_fatal?: boolean | undefined;
34856
+ source_port_ids?: string[] | undefined;
34857
+ source_component_misconfigured_error_id?: string | undefined;
34762
34858
  }>]>, z.ZodObject<{
34763
34859
  type: z.ZodLiteral<"source_net">;
34764
34860
  source_net_id: z.ZodString;
@@ -35973,6 +36069,31 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35973
36069
  }>, z.ZodObject<{
35974
36070
  message: z.ZodString;
35975
36071
  is_fatal: z.ZodOptional<z.ZodBoolean>;
36072
+ } & {
36073
+ type: z.ZodLiteral<"source_component_misconfigured_error">;
36074
+ source_component_misconfigured_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
36075
+ error_type: z.ZodDefault<z.ZodLiteral<"source_component_misconfigured_error">>;
36076
+ source_component_ids: z.ZodArray<z.ZodString, "many">;
36077
+ source_port_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
36078
+ }, "strip", z.ZodTypeAny, {
36079
+ message: string;
36080
+ type: "source_component_misconfigured_error";
36081
+ error_type: "source_component_misconfigured_error";
36082
+ source_component_misconfigured_error_id: string;
36083
+ source_component_ids: string[];
36084
+ is_fatal?: boolean | undefined;
36085
+ source_port_ids?: string[] | undefined;
36086
+ }, {
36087
+ message: string;
36088
+ type: "source_component_misconfigured_error";
36089
+ source_component_ids: string[];
36090
+ error_type?: "source_component_misconfigured_error" | undefined;
36091
+ is_fatal?: boolean | undefined;
36092
+ source_port_ids?: string[] | undefined;
36093
+ source_component_misconfigured_error_id?: string | undefined;
36094
+ }>, z.ZodObject<{
36095
+ message: z.ZodString;
36096
+ is_fatal: z.ZodOptional<z.ZodBoolean>;
35976
36097
  } & {
35977
36098
  type: z.ZodLiteral<"source_ambiguous_port_reference">;
35978
36099
  source_ambiguous_port_reference_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -39847,6 +39968,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
39847
39968
  }>, "many">>;
39848
39969
  shape: z.ZodOptional<z.ZodEnum<["rect", "polygon"]>>;
39849
39970
  material: z.ZodDefault<z.ZodEnum<["fr4", "fr1"]>>;
39971
+ solder_mask_color: z.ZodOptional<z.ZodString>;
39972
+ silkscreen_color: z.ZodOptional<z.ZodString>;
39850
39973
  anchor_position: z.ZodOptional<z.ZodObject<{
39851
39974
  x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
39852
39975
  y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -39912,6 +40035,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
39912
40035
  x: number;
39913
40036
  y: number;
39914
40037
  }[] | undefined;
40038
+ solder_mask_color?: string | undefined;
40039
+ silkscreen_color?: string | undefined;
39915
40040
  }, {
39916
40041
  type: "pcb_board";
39917
40042
  center: {
@@ -39953,6 +40078,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
39953
40078
  y: string | number;
39954
40079
  }[] | undefined;
39955
40080
  material?: "fr4" | "fr1" | undefined;
40081
+ solder_mask_color?: string | undefined;
40082
+ silkscreen_color?: string | undefined;
39956
40083
  }>, z.ZodObject<{
39957
40084
  type: z.ZodLiteral<"pcb_panel">;
39958
40085
  pcb_panel_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -53020,6 +53147,31 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53020
53147
  error_type?: "source_i2c_misconfigured_error" | undefined;
53021
53148
  is_fatal?: boolean | undefined;
53022
53149
  source_i2c_misconfigured_error_id?: string | undefined;
53150
+ }>, z.ZodObject<{
53151
+ message: z.ZodString;
53152
+ is_fatal: z.ZodOptional<z.ZodBoolean>;
53153
+ } & {
53154
+ type: z.ZodLiteral<"source_component_misconfigured_error">;
53155
+ source_component_misconfigured_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
53156
+ error_type: z.ZodDefault<z.ZodLiteral<"source_component_misconfigured_error">>;
53157
+ source_component_ids: z.ZodArray<z.ZodString, "many">;
53158
+ source_port_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
53159
+ }, "strip", z.ZodTypeAny, {
53160
+ message: string;
53161
+ type: "source_component_misconfigured_error";
53162
+ error_type: "source_component_misconfigured_error";
53163
+ source_component_misconfigured_error_id: string;
53164
+ source_component_ids: string[];
53165
+ is_fatal?: boolean | undefined;
53166
+ source_port_ids?: string[] | undefined;
53167
+ }, {
53168
+ message: string;
53169
+ type: "source_component_misconfigured_error";
53170
+ source_component_ids: string[];
53171
+ error_type?: "source_component_misconfigured_error" | undefined;
53172
+ is_fatal?: boolean | undefined;
53173
+ source_port_ids?: string[] | undefined;
53174
+ source_component_misconfigured_error_id?: string | undefined;
53023
53175
  }>]>, z.ZodObject<{
53024
53176
  type: z.ZodLiteral<"source_net">;
53025
53177
  source_net_id: z.ZodString;
@@ -54234,6 +54386,31 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54234
54386
  }>, z.ZodObject<{
54235
54387
  message: z.ZodString;
54236
54388
  is_fatal: z.ZodOptional<z.ZodBoolean>;
54389
+ } & {
54390
+ type: z.ZodLiteral<"source_component_misconfigured_error">;
54391
+ source_component_misconfigured_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
54392
+ error_type: z.ZodDefault<z.ZodLiteral<"source_component_misconfigured_error">>;
54393
+ source_component_ids: z.ZodArray<z.ZodString, "many">;
54394
+ source_port_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
54395
+ }, "strip", z.ZodTypeAny, {
54396
+ message: string;
54397
+ type: "source_component_misconfigured_error";
54398
+ error_type: "source_component_misconfigured_error";
54399
+ source_component_misconfigured_error_id: string;
54400
+ source_component_ids: string[];
54401
+ is_fatal?: boolean | undefined;
54402
+ source_port_ids?: string[] | undefined;
54403
+ }, {
54404
+ message: string;
54405
+ type: "source_component_misconfigured_error";
54406
+ source_component_ids: string[];
54407
+ error_type?: "source_component_misconfigured_error" | undefined;
54408
+ is_fatal?: boolean | undefined;
54409
+ source_port_ids?: string[] | undefined;
54410
+ source_component_misconfigured_error_id?: string | undefined;
54411
+ }>, z.ZodObject<{
54412
+ message: z.ZodString;
54413
+ is_fatal: z.ZodOptional<z.ZodBoolean>;
54237
54414
  } & {
54238
54415
  type: z.ZodLiteral<"source_ambiguous_port_reference">;
54239
54416
  source_ambiguous_port_reference_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -58108,6 +58285,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
58108
58285
  }>, "many">>;
58109
58286
  shape: z.ZodOptional<z.ZodEnum<["rect", "polygon"]>>;
58110
58287
  material: z.ZodDefault<z.ZodEnum<["fr4", "fr1"]>>;
58288
+ solder_mask_color: z.ZodOptional<z.ZodString>;
58289
+ silkscreen_color: z.ZodOptional<z.ZodString>;
58111
58290
  anchor_position: z.ZodOptional<z.ZodObject<{
58112
58291
  x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
58113
58292
  y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -58173,6 +58352,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
58173
58352
  x: number;
58174
58353
  y: number;
58175
58354
  }[] | undefined;
58355
+ solder_mask_color?: string | undefined;
58356
+ silkscreen_color?: string | undefined;
58176
58357
  }, {
58177
58358
  type: "pcb_board";
58178
58359
  center: {
@@ -58214,6 +58395,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
58214
58395
  y: string | number;
58215
58396
  }[] | undefined;
58216
58397
  material?: "fr4" | "fr1" | undefined;
58398
+ solder_mask_color?: string | undefined;
58399
+ silkscreen_color?: string | undefined;
58217
58400
  }>, z.ZodObject<{
58218
58401
  type: z.ZodLiteral<"pcb_panel">;
58219
58402
  pcb_panel_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -69608,4 +69791,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
69608
69791
  */
69609
69792
  type CircuitJson = AnyCircuitElement[];
69610
69793
 
69611
- 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 CadModelAxisDirection, type CadModelFormat, 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 ManufacturingDrcProperties, 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 PcbCourtyardOverlapError, type PcbCourtyardOverlapErrorInput, 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 PcbPadPadClearanceError, type PcbPadPadClearanceErrorInput, type PcbPadTraceClearanceError, type PcbPadTraceClearanceErrorInput, 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 PcbTraceRoutePointThroughPad, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbTraceWarning, type PcbTraceWarningInput, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type PcbViaTraceClearanceError, type PcbViaTraceClearanceErrorInput, 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 SourceInvalidComponentPropertyError, type SourceInvalidComponentPropertyErrorInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingManufacturerPartNumberWarning, type SourceMissingManufacturerPartNumberWarningInput, 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 SupplierFootprintMismatchWarning, type SupplierFootprintMismatchWarningInput, 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, cadModelDefaultDirectionMap, cad_component, cad_model_axis_directions, cad_model_formats, 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, manufacturing_drc_properties, 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_overlap_error, 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_pad_pad_clearance_error, pcb_pad_trace_clearance_error, 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_through_pad, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_trace_warning, pcb_via, pcb_via_clearance_error, pcb_via_trace_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_invalid_component_property_error, source_manually_placed_via, source_missing_manufacturer_part_number_warning, 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_footprint_mismatch_warning, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
69794
+ 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 CadModelAxisDirection, type CadModelFormat, 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 ManufacturingDrcProperties, 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 PcbCourtyardOverlapError, type PcbCourtyardOverlapErrorInput, 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 PcbPadPadClearanceError, type PcbPadPadClearanceErrorInput, type PcbPadTraceClearanceError, type PcbPadTraceClearanceErrorInput, 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 PcbTraceRoutePointThroughPad, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbTraceWarning, type PcbTraceWarningInput, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type PcbViaTraceClearanceError, type PcbViaTraceClearanceErrorInput, 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 SourceComponentMisconfiguredError, type SourceComponentMisconfiguredErrorInput, type SourceComponentPinsUnderspecifiedWarning, type SourceComponentPinsUnderspecifiedWarningInput, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceI2cMisconfiguredError, type SourceI2cMisconfiguredErrorInput, type SourceInterconnect, type SourceInterconnectInput, type SourceInvalidComponentPropertyError, type SourceInvalidComponentPropertyErrorInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingManufacturerPartNumberWarning, type SourceMissingManufacturerPartNumberWarningInput, 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 SupplierFootprintMismatchWarning, type SupplierFootprintMismatchWarningInput, 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, cadModelDefaultDirectionMap, cad_component, cad_model_axis_directions, cad_model_formats, 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, manufacturing_drc_properties, 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_overlap_error, 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_pad_pad_clearance_error, pcb_pad_trace_clearance_error, 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_through_pad, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_trace_warning, pcb_via, pcb_via_clearance_error, pcb_via_trace_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_misconfigured_error, source_component_pins_underspecified_warning, source_failed_to_create_component_error, source_group, source_i2c_misconfigured_error, source_interconnect, source_invalid_component_property_error, source_manually_placed_via, source_missing_manufacturer_part_number_warning, 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_footprint_mismatch_warning, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };