circuit-json 0.0.277 → 0.0.278

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -92,6 +92,7 @@ https://github.com/user-attachments/assets/2f28b7ba-689e-4d80-85b2-5bdef84b41f8
92
92
  - [PcbCourtyardOutline](#pcbcourtyardoutline)
93
93
  - [PcbCourtyardRect](#pcbcourtyardrect)
94
94
  - [PcbCutout](#pcbcutout)
95
+ - [PcbFabricationNoteDimension](#pcbfabricationnotedimension)
95
96
  - [PcbFabricationNotePath](#pcbfabricationnotepath)
96
97
  - [PcbFabricationNoteRect](#pcbfabricationnoterect)
97
98
  - [PcbFabricationNoteText](#pcbfabricationnotetext)
@@ -1014,6 +1015,32 @@ interface PcbCutoutRect {
1014
1015
  }
1015
1016
  ```
1016
1017
 
1018
+ ### PcbFabricationNoteDimension
1019
+
1020
+ [Source](https://github.com/tscircuit/circuit-json/blob/main/src/pcb/pcb_fabrication_note_dimension.ts)
1021
+
1022
+ Defines a measurement annotation within PCB fabrication notes
1023
+
1024
+ ```typescript
1025
+ /** Defines a measurement annotation within PCB fabrication notes */
1026
+ interface PcbFabricationNoteDimension {
1027
+ type: "pcb_fabrication_note_dimension"
1028
+ pcb_fabrication_note_dimension_id: string
1029
+ pcb_component_id: string
1030
+ pcb_group_id?: string
1031
+ subcircuit_id?: string
1032
+ layer: VisibleLayer
1033
+ from: Point | string
1034
+ to: Point | string
1035
+ text?: string
1036
+ offset?: Length
1037
+ font: "tscircuit2024"
1038
+ font_size: Length
1039
+ color?: string
1040
+ arrow_size: Length
1041
+ }
1042
+ ```
1043
+
1017
1044
  ### PcbFabricationNotePath
1018
1045
 
1019
1046
  [Source](https://github.com/tscircuit/circuit-json/blob/main/src/pcb/pcb_fabrication_note_path.ts)
package/dist/index.d.mts CHANGED
@@ -3938,6 +3938,107 @@ interface PcbFabricationNoteRect {
3938
3938
  */
3939
3939
  type PCBFabricationNoteRect = PcbFabricationNoteRect;
3940
3940
 
3941
+ declare const pcb_fabrication_note_dimension: z.ZodObject<{
3942
+ type: z.ZodLiteral<"pcb_fabrication_note_dimension">;
3943
+ pcb_fabrication_note_dimension_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
3944
+ pcb_component_id: z.ZodString;
3945
+ pcb_group_id: z.ZodOptional<z.ZodString>;
3946
+ subcircuit_id: z.ZodOptional<z.ZodString>;
3947
+ layer: z.ZodEnum<["top", "bottom"]>;
3948
+ from: z.ZodUnion<[z.ZodObject<{
3949
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
3950
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
3951
+ }, "strip", z.ZodTypeAny, {
3952
+ x: number;
3953
+ y: number;
3954
+ }, {
3955
+ x: string | number;
3956
+ y: string | number;
3957
+ }>, z.ZodString]>;
3958
+ to: z.ZodUnion<[z.ZodObject<{
3959
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
3960
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
3961
+ }, "strip", z.ZodTypeAny, {
3962
+ x: number;
3963
+ y: number;
3964
+ }, {
3965
+ x: string | number;
3966
+ y: string | number;
3967
+ }>, z.ZodString]>;
3968
+ text: z.ZodOptional<z.ZodString>;
3969
+ offset: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
3970
+ font: z.ZodDefault<z.ZodLiteral<"tscircuit2024">>;
3971
+ font_size: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
3972
+ color: z.ZodOptional<z.ZodString>;
3973
+ arrow_size: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
3974
+ }, "strip", z.ZodTypeAny, {
3975
+ type: "pcb_fabrication_note_dimension";
3976
+ pcb_component_id: string;
3977
+ layer: "top" | "bottom";
3978
+ font: "tscircuit2024";
3979
+ font_size: number;
3980
+ pcb_fabrication_note_dimension_id: string;
3981
+ from: string | {
3982
+ x: number;
3983
+ y: number;
3984
+ };
3985
+ to: string | {
3986
+ x: number;
3987
+ y: number;
3988
+ };
3989
+ arrow_size: number;
3990
+ subcircuit_id?: string | undefined;
3991
+ pcb_group_id?: string | undefined;
3992
+ text?: string | undefined;
3993
+ color?: string | undefined;
3994
+ offset?: number | undefined;
3995
+ }, {
3996
+ type: "pcb_fabrication_note_dimension";
3997
+ pcb_component_id: string;
3998
+ layer: "top" | "bottom";
3999
+ from: string | {
4000
+ x: string | number;
4001
+ y: string | number;
4002
+ };
4003
+ to: string | {
4004
+ x: string | number;
4005
+ y: string | number;
4006
+ };
4007
+ subcircuit_id?: string | undefined;
4008
+ pcb_group_id?: string | undefined;
4009
+ text?: string | undefined;
4010
+ font?: "tscircuit2024" | undefined;
4011
+ font_size?: string | number | undefined;
4012
+ color?: string | undefined;
4013
+ pcb_fabrication_note_dimension_id?: string | undefined;
4014
+ offset?: string | number | undefined;
4015
+ arrow_size?: string | number | undefined;
4016
+ }>;
4017
+ type PcbFabricationNoteDimensionInput = z.input<typeof pcb_fabrication_note_dimension>;
4018
+ /**
4019
+ * Defines a measurement annotation within PCB fabrication notes
4020
+ */
4021
+ interface PcbFabricationNoteDimension {
4022
+ type: "pcb_fabrication_note_dimension";
4023
+ pcb_fabrication_note_dimension_id: string;
4024
+ pcb_component_id: string;
4025
+ pcb_group_id?: string;
4026
+ subcircuit_id?: string;
4027
+ layer: VisibleLayer;
4028
+ from: Point | string;
4029
+ to: Point | string;
4030
+ text?: string;
4031
+ offset?: Length;
4032
+ font: "tscircuit2024";
4033
+ font_size: Length;
4034
+ color?: string;
4035
+ arrow_size: Length;
4036
+ }
4037
+ /**
4038
+ * @deprecated use PcbFabricationNoteDimension
4039
+ */
4040
+ type PCBFabricationNoteDimension = PcbFabricationNoteDimension;
4041
+
3941
4042
  declare const pcb_note_text: z.ZodObject<{
3942
4043
  type: z.ZodLiteral<"pcb_note_text">;
3943
4044
  pcb_note_text_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -4238,7 +4339,6 @@ declare const pcb_note_dimension: z.ZodObject<{
4238
4339
  type: "pcb_note_dimension";
4239
4340
  font: "tscircuit2024";
4240
4341
  font_size: number;
4241
- pcb_note_dimension_id: string;
4242
4342
  from: {
4243
4343
  x: number;
4244
4344
  y: number;
@@ -4248,6 +4348,7 @@ declare const pcb_note_dimension: z.ZodObject<{
4248
4348
  y: number;
4249
4349
  };
4250
4350
  arrow_size: number;
4351
+ pcb_note_dimension_id: string;
4251
4352
  pcb_component_id?: string | undefined;
4252
4353
  subcircuit_id?: string | undefined;
4253
4354
  pcb_group_id?: string | undefined;
@@ -4270,8 +4371,8 @@ declare const pcb_note_dimension: z.ZodObject<{
4270
4371
  font?: "tscircuit2024" | undefined;
4271
4372
  font_size?: string | number | undefined;
4272
4373
  color?: string | undefined;
4273
- pcb_note_dimension_id?: string | undefined;
4274
4374
  arrow_size?: string | number | undefined;
4375
+ pcb_note_dimension_id?: string | undefined;
4275
4376
  }>;
4276
4377
  type PcbNoteDimensionInput = z.input<typeof pcb_note_dimension>;
4277
4378
  /**
@@ -6147,7 +6248,7 @@ interface PcbCourtyardOutline {
6147
6248
  */
6148
6249
  type PCBCourtyardOutline = PcbCourtyardOutline;
6149
6250
 
6150
- type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceError | PcbTraceMissingError | PcbMissingFootprintError | ExternalFootprintLoadError | CircuitJsonFootprintLoadError | PcbManualEditConflictWarning | PcbPortNotMatchedError | PcbPortNotConnectedError | PcbVia | PcbNet | PcbBoard | PcbPlacementError | PcbTraceHint | PcbSilkscreenLine | PcbSilkscreenPath | PcbSilkscreenText | PcbSilkscreenRect | PcbSilkscreenCircle | PcbFabricationNoteRect | PcbNoteText | PcbNoteRect | PcbNotePath | PcbNoteLine | PcbNoteDimension | PcbAutoroutingError | PcbFootprintOverlapError | PcbCutout | PcbBreakoutPoint | PcbGroundPlane | PcbGroundPlaneRegion | PcbThermalSpoke | PcbCopperPour | PcbComponentOutsideBoardError | PcbViaClearanceError | PcbCourtyardRect | PcbCourtyardOutline;
6251
+ type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceError | PcbTraceMissingError | PcbMissingFootprintError | ExternalFootprintLoadError | CircuitJsonFootprintLoadError | PcbManualEditConflictWarning | PcbPortNotMatchedError | PcbPortNotConnectedError | PcbVia | PcbNet | PcbBoard | PcbPlacementError | PcbTraceHint | PcbSilkscreenLine | PcbSilkscreenPath | PcbSilkscreenText | PcbSilkscreenRect | PcbSilkscreenCircle | PcbFabricationNoteRect | PcbFabricationNoteDimension | PcbNoteText | PcbNoteRect | PcbNotePath | PcbNoteLine | PcbNoteDimension | PcbAutoroutingError | PcbFootprintOverlapError | PcbCutout | PcbBreakoutPoint | PcbGroundPlane | PcbGroundPlaneRegion | PcbThermalSpoke | PcbCopperPour | PcbComponentOutsideBoardError | PcbViaClearanceError | PcbCourtyardRect | PcbCourtyardOutline;
6151
6252
 
6152
6253
  interface SchematicBox {
6153
6254
  type: "schematic_box";
@@ -15723,6 +15824,81 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
15723
15824
  is_stroke_dashed?: boolean | undefined;
15724
15825
  color?: string | undefined;
15725
15826
  pcb_fabrication_note_rect_id?: string | undefined;
15827
+ }>, z.ZodObject<{
15828
+ type: z.ZodLiteral<"pcb_fabrication_note_dimension">;
15829
+ pcb_fabrication_note_dimension_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
15830
+ pcb_component_id: z.ZodString;
15831
+ pcb_group_id: z.ZodOptional<z.ZodString>;
15832
+ subcircuit_id: z.ZodOptional<z.ZodString>;
15833
+ layer: z.ZodEnum<["top", "bottom"]>;
15834
+ from: z.ZodUnion<[z.ZodObject<{
15835
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
15836
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
15837
+ }, "strip", z.ZodTypeAny, {
15838
+ x: number;
15839
+ y: number;
15840
+ }, {
15841
+ x: string | number;
15842
+ y: string | number;
15843
+ }>, z.ZodString]>;
15844
+ to: z.ZodUnion<[z.ZodObject<{
15845
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
15846
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
15847
+ }, "strip", z.ZodTypeAny, {
15848
+ x: number;
15849
+ y: number;
15850
+ }, {
15851
+ x: string | number;
15852
+ y: string | number;
15853
+ }>, z.ZodString]>;
15854
+ text: z.ZodOptional<z.ZodString>;
15855
+ offset: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
15856
+ font: z.ZodDefault<z.ZodLiteral<"tscircuit2024">>;
15857
+ font_size: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
15858
+ color: z.ZodOptional<z.ZodString>;
15859
+ arrow_size: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
15860
+ }, "strip", z.ZodTypeAny, {
15861
+ type: "pcb_fabrication_note_dimension";
15862
+ pcb_component_id: string;
15863
+ layer: "top" | "bottom";
15864
+ font: "tscircuit2024";
15865
+ font_size: number;
15866
+ pcb_fabrication_note_dimension_id: string;
15867
+ from: string | {
15868
+ x: number;
15869
+ y: number;
15870
+ };
15871
+ to: string | {
15872
+ x: number;
15873
+ y: number;
15874
+ };
15875
+ arrow_size: number;
15876
+ subcircuit_id?: string | undefined;
15877
+ pcb_group_id?: string | undefined;
15878
+ text?: string | undefined;
15879
+ color?: string | undefined;
15880
+ offset?: number | undefined;
15881
+ }, {
15882
+ type: "pcb_fabrication_note_dimension";
15883
+ pcb_component_id: string;
15884
+ layer: "top" | "bottom";
15885
+ from: string | {
15886
+ x: string | number;
15887
+ y: string | number;
15888
+ };
15889
+ to: string | {
15890
+ x: string | number;
15891
+ y: string | number;
15892
+ };
15893
+ subcircuit_id?: string | undefined;
15894
+ pcb_group_id?: string | undefined;
15895
+ text?: string | undefined;
15896
+ font?: "tscircuit2024" | undefined;
15897
+ font_size?: string | number | undefined;
15898
+ color?: string | undefined;
15899
+ pcb_fabrication_note_dimension_id?: string | undefined;
15900
+ offset?: string | number | undefined;
15901
+ arrow_size?: string | number | undefined;
15726
15902
  }>, z.ZodObject<{
15727
15903
  type: z.ZodLiteral<"pcb_note_text">;
15728
15904
  pcb_note_text_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -15947,7 +16123,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
15947
16123
  type: "pcb_note_dimension";
15948
16124
  font: "tscircuit2024";
15949
16125
  font_size: number;
15950
- pcb_note_dimension_id: string;
15951
16126
  from: {
15952
16127
  x: number;
15953
16128
  y: number;
@@ -15957,6 +16132,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
15957
16132
  y: number;
15958
16133
  };
15959
16134
  arrow_size: number;
16135
+ pcb_note_dimension_id: string;
15960
16136
  pcb_component_id?: string | undefined;
15961
16137
  subcircuit_id?: string | undefined;
15962
16138
  pcb_group_id?: string | undefined;
@@ -15979,8 +16155,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
15979
16155
  font?: "tscircuit2024" | undefined;
15980
16156
  font_size?: string | number | undefined;
15981
16157
  color?: string | undefined;
15982
- pcb_note_dimension_id?: string | undefined;
15983
16158
  arrow_size?: string | number | undefined;
16159
+ pcb_note_dimension_id?: string | undefined;
15984
16160
  }>, z.ZodObject<{
15985
16161
  type: z.ZodLiteral<"pcb_autorouting_error">;
15986
16162
  pcb_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -22771,6 +22947,81 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
22771
22947
  is_stroke_dashed?: boolean | undefined;
22772
22948
  color?: string | undefined;
22773
22949
  pcb_fabrication_note_rect_id?: string | undefined;
22950
+ }>, z.ZodObject<{
22951
+ type: z.ZodLiteral<"pcb_fabrication_note_dimension">;
22952
+ pcb_fabrication_note_dimension_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
22953
+ pcb_component_id: z.ZodString;
22954
+ pcb_group_id: z.ZodOptional<z.ZodString>;
22955
+ subcircuit_id: z.ZodOptional<z.ZodString>;
22956
+ layer: z.ZodEnum<["top", "bottom"]>;
22957
+ from: z.ZodUnion<[z.ZodObject<{
22958
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
22959
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
22960
+ }, "strip", z.ZodTypeAny, {
22961
+ x: number;
22962
+ y: number;
22963
+ }, {
22964
+ x: string | number;
22965
+ y: string | number;
22966
+ }>, z.ZodString]>;
22967
+ to: z.ZodUnion<[z.ZodObject<{
22968
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
22969
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
22970
+ }, "strip", z.ZodTypeAny, {
22971
+ x: number;
22972
+ y: number;
22973
+ }, {
22974
+ x: string | number;
22975
+ y: string | number;
22976
+ }>, z.ZodString]>;
22977
+ text: z.ZodOptional<z.ZodString>;
22978
+ offset: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
22979
+ font: z.ZodDefault<z.ZodLiteral<"tscircuit2024">>;
22980
+ font_size: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
22981
+ color: z.ZodOptional<z.ZodString>;
22982
+ arrow_size: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
22983
+ }, "strip", z.ZodTypeAny, {
22984
+ type: "pcb_fabrication_note_dimension";
22985
+ pcb_component_id: string;
22986
+ layer: "top" | "bottom";
22987
+ font: "tscircuit2024";
22988
+ font_size: number;
22989
+ pcb_fabrication_note_dimension_id: string;
22990
+ from: string | {
22991
+ x: number;
22992
+ y: number;
22993
+ };
22994
+ to: string | {
22995
+ x: number;
22996
+ y: number;
22997
+ };
22998
+ arrow_size: number;
22999
+ subcircuit_id?: string | undefined;
23000
+ pcb_group_id?: string | undefined;
23001
+ text?: string | undefined;
23002
+ color?: string | undefined;
23003
+ offset?: number | undefined;
23004
+ }, {
23005
+ type: "pcb_fabrication_note_dimension";
23006
+ pcb_component_id: string;
23007
+ layer: "top" | "bottom";
23008
+ from: string | {
23009
+ x: string | number;
23010
+ y: string | number;
23011
+ };
23012
+ to: string | {
23013
+ x: string | number;
23014
+ y: string | number;
23015
+ };
23016
+ subcircuit_id?: string | undefined;
23017
+ pcb_group_id?: string | undefined;
23018
+ text?: string | undefined;
23019
+ font?: "tscircuit2024" | undefined;
23020
+ font_size?: string | number | undefined;
23021
+ color?: string | undefined;
23022
+ pcb_fabrication_note_dimension_id?: string | undefined;
23023
+ offset?: string | number | undefined;
23024
+ arrow_size?: string | number | undefined;
22774
23025
  }>, z.ZodObject<{
22775
23026
  type: z.ZodLiteral<"pcb_note_text">;
22776
23027
  pcb_note_text_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -22995,7 +23246,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
22995
23246
  type: "pcb_note_dimension";
22996
23247
  font: "tscircuit2024";
22997
23248
  font_size: number;
22998
- pcb_note_dimension_id: string;
22999
23249
  from: {
23000
23250
  x: number;
23001
23251
  y: number;
@@ -23005,6 +23255,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
23005
23255
  y: number;
23006
23256
  };
23007
23257
  arrow_size: number;
23258
+ pcb_note_dimension_id: string;
23008
23259
  pcb_component_id?: string | undefined;
23009
23260
  subcircuit_id?: string | undefined;
23010
23261
  pcb_group_id?: string | undefined;
@@ -23027,8 +23278,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
23027
23278
  font?: "tscircuit2024" | undefined;
23028
23279
  font_size?: string | number | undefined;
23029
23280
  color?: string | undefined;
23030
- pcb_note_dimension_id?: string | undefined;
23031
23281
  arrow_size?: string | number | undefined;
23282
+ pcb_note_dimension_id?: string | undefined;
23032
23283
  }>, z.ZodObject<{
23033
23284
  type: z.ZodLiteral<"pcb_autorouting_error">;
23034
23285
  pcb_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -25317,4 +25568,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
25317
25568
  */
25318
25569
  type CircuitJson = AnyCircuitElement[];
25319
25570
 
25320
- export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type BRepShape, type CadComponent, 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 LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBCourtyardOutline, type PCBCourtyardRect, type PCBFabricationNotePath, type PCBFabricationNoteRect, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardRect, type PcbCourtyardRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, 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 PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePill, type PcbHolePillInput, type PcbHolePillWithRectPad, type PcbHoleRotatedPill, type PcbHoleRotatedPillInput, type PcbHoleRotatedPillWithRectPad, 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 PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotConnectedError, type PcbPortNotConnectedErrorInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type 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 SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationVoltageProbe, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, 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 SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, 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, layer_ref, layer_string, length, ms, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_outside_board_error, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_courtyard_outline, pcb_courtyard_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_polygon, pcb_cutout_rect, 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_oval_shape, pcb_hole_pill_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_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_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_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_voltage_source, simulation_dc_voltage_source, simulation_experiment, simulation_switch, simulation_transient_voltage_graph, simulation_voltage_probe, simulation_voltage_source, size, source_board, source_component_base, source_failed_to_create_component_error, source_group, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, source_pin_missing_trace_warning, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, 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_trace, source_trace_not_connected_error, supplier_name, time, timestamp, visible_layer, voltage, wave_shape };
25571
+ export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type BRepShape, type CadComponent, 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 LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBCourtyardOutline, 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 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 PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardRect, type PcbCourtyardRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, 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 PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePill, type PcbHolePillInput, type PcbHolePillWithRectPad, type PcbHoleRotatedPill, type PcbHoleRotatedPillInput, type PcbHoleRotatedPillWithRectPad, 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 PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotConnectedError, type PcbPortNotConnectedErrorInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type 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 SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationVoltageProbe, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, 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 SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, 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, layer_ref, layer_string, length, ms, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_outside_board_error, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_courtyard_outline, pcb_courtyard_rect, pcb_cutout, pcb_cutout_circle, 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_oval_shape, pcb_hole_pill_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_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_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_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_voltage_source, simulation_dc_voltage_source, simulation_experiment, simulation_switch, simulation_transient_voltage_graph, simulation_voltage_probe, simulation_voltage_source, size, source_board, source_component_base, source_failed_to_create_component_error, source_group, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, source_pin_missing_trace_warning, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, 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_trace, source_trace_not_connected_error, supplier_name, time, timestamp, visible_layer, voltage, wave_shape };