circuit-json 0.0.246 → 0.0.248

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
@@ -82,6 +82,7 @@ https://github.com/user-attachments/assets/2f28b7ba-689e-4d80-85b2-5bdef84b41f8
82
82
  - [PcbBoard](#pcbboard)
83
83
  - [PcbBreakoutPoint](#pcbbreakoutpoint)
84
84
  - [PcbComponent](#pcbcomponent)
85
+ - [PcbComponentOutsideBoardError](#pcbcomponentoutsideboarderror)
85
86
  - [PcbCopperPour](#pcbcopperpour)
86
87
  - [PcbCutout](#pcbcutout)
87
88
  - [PcbFabricationNotePath](#pcbfabricationnotepath)
@@ -797,6 +798,32 @@ interface PcbComponent {
797
798
  }
798
799
  ```
799
800
 
801
+ ### PcbComponentOutsideBoardError
802
+
803
+ [Source](https://github.com/tscircuit/circuit-json/blob/main/src/pcb/pcb_component_outside_board_error.ts)
804
+
805
+ Error emitted when a PCB component is placed outside the board boundaries
806
+
807
+ ```typescript
808
+ /** Error emitted when a PCB component is placed outside the board boundaries */ interface PcbComponentOutsideBoardError {
809
+ type: "pcb_component_outside_board_error"
810
+ pcb_component_outside_board_error_id: string
811
+ error_type: "pcb_component_outside_board_error"
812
+ message: string
813
+ pcb_component_id: string
814
+ pcb_board_id: string
815
+ component_center: Point
816
+ component_bounds: {
817
+ min_x: number
818
+ max_x: number
819
+ min_y: number
820
+ max_y: number
821
+ }
822
+ subcircuit_id?: string
823
+ source_component_id?: string
824
+ }
825
+ ```
826
+
800
827
  ### PcbCopperPour
801
828
 
802
829
  [Source](https://github.com/tscircuit/circuit-json/blob/main/src/pcb/pcb_copper_pour.ts)
package/dist/index.d.mts CHANGED
@@ -3967,6 +3967,50 @@ interface PcbMissingFootprintError {
3967
3967
  */
3968
3968
  type PCBMissingFootprintError = PcbMissingFootprintError;
3969
3969
 
3970
+ declare const external_footprint_load_error: z.ZodObject<{
3971
+ type: z.ZodLiteral<"external_footprint_load_error">;
3972
+ external_footprint_load_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
3973
+ pcb_component_id: z.ZodString;
3974
+ source_component_id: z.ZodString;
3975
+ pcb_group_id: z.ZodOptional<z.ZodString>;
3976
+ subcircuit_id: z.ZodOptional<z.ZodString>;
3977
+ footprinter_string: z.ZodOptional<z.ZodString>;
3978
+ error_type: z.ZodDefault<z.ZodLiteral<"external_footprint_load_error">>;
3979
+ message: z.ZodString;
3980
+ }, "strip", z.ZodTypeAny, {
3981
+ message: string;
3982
+ type: "external_footprint_load_error";
3983
+ pcb_component_id: string;
3984
+ source_component_id: string;
3985
+ error_type: "external_footprint_load_error";
3986
+ external_footprint_load_error_id: string;
3987
+ subcircuit_id?: string | undefined;
3988
+ pcb_group_id?: string | undefined;
3989
+ footprinter_string?: string | undefined;
3990
+ }, {
3991
+ message: string;
3992
+ type: "external_footprint_load_error";
3993
+ pcb_component_id: string;
3994
+ source_component_id: string;
3995
+ subcircuit_id?: string | undefined;
3996
+ pcb_group_id?: string | undefined;
3997
+ error_type?: "external_footprint_load_error" | undefined;
3998
+ external_footprint_load_error_id?: string | undefined;
3999
+ footprinter_string?: string | undefined;
4000
+ }>;
4001
+ type ExternalFootprintLoadErrorInput = z.input<typeof external_footprint_load_error>;
4002
+ interface ExternalFootprintLoadError {
4003
+ type: "external_footprint_load_error";
4004
+ external_footprint_load_error_id: string;
4005
+ pcb_component_id: string;
4006
+ source_component_id: string;
4007
+ pcb_group_id?: string;
4008
+ subcircuit_id?: string;
4009
+ footprinter_string?: string;
4010
+ error_type: "external_footprint_load_error";
4011
+ message: string;
4012
+ }
4013
+
3970
4014
  declare const pcb_group: z.ZodObject<{
3971
4015
  type: z.ZodLiteral<"pcb_group">;
3972
4016
  pcb_group_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -4919,7 +4963,101 @@ declare const pcb_copper_pour: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
4919
4963
  type PcbCopperPourInput = z.input<typeof pcb_copper_pour>;
4920
4964
  type PcbCopperPour = PcbCopperPourRect | PcbCopperPourBRep | PcbCopperPourPolygon;
4921
4965
 
4922
- type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceError | PcbTraceMissingError | PcbMissingFootprintError | PcbManualEditConflictWarning | PcbPortNotMatchedError | PcbPortNotConnectedError | PcbVia | PcbBoard | PcbPlacementError | PcbTraceHint | PcbSilkscreenLine | PcbSilkscreenPath | PcbSilkscreenText | PcbSilkscreenRect | PcbSilkscreenCircle | PcbAutoroutingError | PcbFootprintOverlapError | PcbCutout | PcbBreakoutPoint | PcbGroundPlane | PcbGroundPlaneRegion | PcbThermalSpoke | PcbCopperPour;
4966
+ declare const pcb_component_outside_board_error: z.ZodObject<{
4967
+ type: z.ZodLiteral<"pcb_component_outside_board_error">;
4968
+ pcb_component_outside_board_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
4969
+ error_type: z.ZodDefault<z.ZodLiteral<"pcb_component_outside_board_error">>;
4970
+ message: z.ZodString;
4971
+ pcb_component_id: z.ZodString;
4972
+ pcb_board_id: z.ZodString;
4973
+ component_center: z.ZodObject<{
4974
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
4975
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
4976
+ }, "strip", z.ZodTypeAny, {
4977
+ x: number;
4978
+ y: number;
4979
+ }, {
4980
+ x: string | number;
4981
+ y: string | number;
4982
+ }>;
4983
+ component_bounds: z.ZodObject<{
4984
+ min_x: z.ZodNumber;
4985
+ max_x: z.ZodNumber;
4986
+ min_y: z.ZodNumber;
4987
+ max_y: z.ZodNumber;
4988
+ }, "strip", z.ZodTypeAny, {
4989
+ min_x: number;
4990
+ max_x: number;
4991
+ min_y: number;
4992
+ max_y: number;
4993
+ }, {
4994
+ min_x: number;
4995
+ max_x: number;
4996
+ min_y: number;
4997
+ max_y: number;
4998
+ }>;
4999
+ subcircuit_id: z.ZodOptional<z.ZodString>;
5000
+ source_component_id: z.ZodOptional<z.ZodString>;
5001
+ }, "strip", z.ZodTypeAny, {
5002
+ message: string;
5003
+ type: "pcb_component_outside_board_error";
5004
+ pcb_component_id: string;
5005
+ error_type: "pcb_component_outside_board_error";
5006
+ pcb_board_id: string;
5007
+ pcb_component_outside_board_error_id: string;
5008
+ component_center: {
5009
+ x: number;
5010
+ y: number;
5011
+ };
5012
+ component_bounds: {
5013
+ min_x: number;
5014
+ max_x: number;
5015
+ min_y: number;
5016
+ max_y: number;
5017
+ };
5018
+ source_component_id?: string | undefined;
5019
+ subcircuit_id?: string | undefined;
5020
+ }, {
5021
+ message: string;
5022
+ type: "pcb_component_outside_board_error";
5023
+ pcb_component_id: string;
5024
+ pcb_board_id: string;
5025
+ component_center: {
5026
+ x: string | number;
5027
+ y: string | number;
5028
+ };
5029
+ component_bounds: {
5030
+ min_x: number;
5031
+ max_x: number;
5032
+ min_y: number;
5033
+ max_y: number;
5034
+ };
5035
+ source_component_id?: string | undefined;
5036
+ subcircuit_id?: string | undefined;
5037
+ error_type?: "pcb_component_outside_board_error" | undefined;
5038
+ pcb_component_outside_board_error_id?: string | undefined;
5039
+ }>;
5040
+ type PcbComponentOutsideBoardErrorInput = z.input<typeof pcb_component_outside_board_error>;
5041
+ /** Error emitted when a PCB component is placed outside the board boundaries */
5042
+ interface PcbComponentOutsideBoardError {
5043
+ type: "pcb_component_outside_board_error";
5044
+ pcb_component_outside_board_error_id: string;
5045
+ error_type: "pcb_component_outside_board_error";
5046
+ message: string;
5047
+ pcb_component_id: string;
5048
+ pcb_board_id: string;
5049
+ component_center: Point;
5050
+ component_bounds: {
5051
+ min_x: number;
5052
+ max_x: number;
5053
+ min_y: number;
5054
+ max_y: number;
5055
+ };
5056
+ subcircuit_id?: string;
5057
+ source_component_id?: string;
5058
+ }
5059
+
5060
+ type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceError | PcbTraceMissingError | PcbMissingFootprintError | ExternalFootprintLoadError | PcbManualEditConflictWarning | PcbPortNotMatchedError | PcbPortNotConnectedError | PcbVia | PcbBoard | PcbPlacementError | PcbTraceHint | PcbSilkscreenLine | PcbSilkscreenPath | PcbSilkscreenText | PcbSilkscreenRect | PcbSilkscreenCircle | PcbAutoroutingError | PcbFootprintOverlapError | PcbCutout | PcbBreakoutPoint | PcbGroundPlane | PcbGroundPlaneRegion | PcbThermalSpoke | PcbCopperPour | PcbComponentOutsideBoardError;
4923
5061
 
4924
5062
  interface SchematicBox {
4925
5063
  type: "schematic_box";
@@ -6608,7 +6746,7 @@ interface SchematicTableCell {
6608
6746
  subcircuit_id?: string;
6609
6747
  }
6610
6748
 
6611
- type CircuitJsonError = PcbTraceError | PcbPlacementError | PcbPortNotMatchedError | PcbAutoroutingError | PcbFootprintOverlapError | PcbMissingFootprintError | SchematicError;
6749
+ type CircuitJsonError = PcbTraceError | PcbPlacementError | PcbPortNotMatchedError | PcbAutoroutingError | PcbFootprintOverlapError | PcbMissingFootprintError | PcbComponentOutsideBoardError | SchematicError;
6612
6750
 
6613
6751
  interface SourceComponentBase {
6614
6752
  type: "source_component";
@@ -9277,12 +9415,12 @@ declare const cad_component: z.ZodObject<{
9277
9415
  z: number;
9278
9416
  } | undefined;
9279
9417
  subcircuit_id?: string | undefined;
9418
+ footprinter_string?: string | undefined;
9280
9419
  size?: {
9281
9420
  x: number;
9282
9421
  y: number;
9283
9422
  z: number;
9284
9423
  } | undefined;
9285
- footprinter_string?: string | undefined;
9286
9424
  model_obj_url?: string | undefined;
9287
9425
  model_stl_url?: string | undefined;
9288
9426
  model_3mf_url?: string | undefined;
@@ -9310,12 +9448,12 @@ declare const cad_component: z.ZodObject<{
9310
9448
  z: string | number;
9311
9449
  } | undefined;
9312
9450
  subcircuit_id?: string | undefined;
9451
+ footprinter_string?: string | undefined;
9313
9452
  size?: {
9314
9453
  x: string | number;
9315
9454
  y: string | number;
9316
9455
  z: string | number;
9317
9456
  } | undefined;
9318
- footprinter_string?: string | undefined;
9319
9457
  model_obj_url?: string | undefined;
9320
9458
  model_stl_url?: string | undefined;
9321
9459
  model_3mf_url?: string | undefined;
@@ -11619,6 +11757,36 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
11619
11757
  pcb_group_id?: string | undefined;
11620
11758
  error_type?: "pcb_missing_footprint_error" | undefined;
11621
11759
  pcb_missing_footprint_error_id?: string | undefined;
11760
+ }>, z.ZodObject<{
11761
+ type: z.ZodLiteral<"external_footprint_load_error">;
11762
+ external_footprint_load_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
11763
+ pcb_component_id: z.ZodString;
11764
+ source_component_id: z.ZodString;
11765
+ pcb_group_id: z.ZodOptional<z.ZodString>;
11766
+ subcircuit_id: z.ZodOptional<z.ZodString>;
11767
+ footprinter_string: z.ZodOptional<z.ZodString>;
11768
+ error_type: z.ZodDefault<z.ZodLiteral<"external_footprint_load_error">>;
11769
+ message: z.ZodString;
11770
+ }, "strip", z.ZodTypeAny, {
11771
+ message: string;
11772
+ type: "external_footprint_load_error";
11773
+ pcb_component_id: string;
11774
+ source_component_id: string;
11775
+ error_type: "external_footprint_load_error";
11776
+ external_footprint_load_error_id: string;
11777
+ subcircuit_id?: string | undefined;
11778
+ pcb_group_id?: string | undefined;
11779
+ footprinter_string?: string | undefined;
11780
+ }, {
11781
+ message: string;
11782
+ type: "external_footprint_load_error";
11783
+ pcb_component_id: string;
11784
+ source_component_id: string;
11785
+ subcircuit_id?: string | undefined;
11786
+ pcb_group_id?: string | undefined;
11787
+ error_type?: "external_footprint_load_error" | undefined;
11788
+ external_footprint_load_error_id?: string | undefined;
11789
+ footprinter_string?: string | undefined;
11622
11790
  }>, z.ZodObject<{
11623
11791
  type: z.ZodLiteral<"pcb_manual_edit_conflict_warning">;
11624
11792
  pcb_manual_edit_conflict_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -14250,6 +14418,79 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
14250
14418
  source_net_id?: string | undefined;
14251
14419
  pcb_copper_pour_id?: string | undefined;
14252
14420
  }>]>, z.ZodObject<{
14421
+ type: z.ZodLiteral<"pcb_component_outside_board_error">;
14422
+ pcb_component_outside_board_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
14423
+ error_type: z.ZodDefault<z.ZodLiteral<"pcb_component_outside_board_error">>;
14424
+ message: z.ZodString;
14425
+ pcb_component_id: z.ZodString;
14426
+ pcb_board_id: z.ZodString;
14427
+ component_center: z.ZodObject<{
14428
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
14429
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
14430
+ }, "strip", z.ZodTypeAny, {
14431
+ x: number;
14432
+ y: number;
14433
+ }, {
14434
+ x: string | number;
14435
+ y: string | number;
14436
+ }>;
14437
+ component_bounds: z.ZodObject<{
14438
+ min_x: z.ZodNumber;
14439
+ max_x: z.ZodNumber;
14440
+ min_y: z.ZodNumber;
14441
+ max_y: z.ZodNumber;
14442
+ }, "strip", z.ZodTypeAny, {
14443
+ min_x: number;
14444
+ max_x: number;
14445
+ min_y: number;
14446
+ max_y: number;
14447
+ }, {
14448
+ min_x: number;
14449
+ max_x: number;
14450
+ min_y: number;
14451
+ max_y: number;
14452
+ }>;
14453
+ subcircuit_id: z.ZodOptional<z.ZodString>;
14454
+ source_component_id: z.ZodOptional<z.ZodString>;
14455
+ }, "strip", z.ZodTypeAny, {
14456
+ message: string;
14457
+ type: "pcb_component_outside_board_error";
14458
+ pcb_component_id: string;
14459
+ error_type: "pcb_component_outside_board_error";
14460
+ pcb_board_id: string;
14461
+ pcb_component_outside_board_error_id: string;
14462
+ component_center: {
14463
+ x: number;
14464
+ y: number;
14465
+ };
14466
+ component_bounds: {
14467
+ min_x: number;
14468
+ max_x: number;
14469
+ min_y: number;
14470
+ max_y: number;
14471
+ };
14472
+ source_component_id?: string | undefined;
14473
+ subcircuit_id?: string | undefined;
14474
+ }, {
14475
+ message: string;
14476
+ type: "pcb_component_outside_board_error";
14477
+ pcb_component_id: string;
14478
+ pcb_board_id: string;
14479
+ component_center: {
14480
+ x: string | number;
14481
+ y: string | number;
14482
+ };
14483
+ component_bounds: {
14484
+ min_x: number;
14485
+ max_x: number;
14486
+ min_y: number;
14487
+ max_y: number;
14488
+ };
14489
+ source_component_id?: string | undefined;
14490
+ subcircuit_id?: string | undefined;
14491
+ error_type?: "pcb_component_outside_board_error" | undefined;
14492
+ pcb_component_outside_board_error_id?: string | undefined;
14493
+ }>, z.ZodObject<{
14253
14494
  type: z.ZodLiteral<"schematic_box">;
14254
14495
  schematic_component_id: z.ZodOptional<z.ZodString>;
14255
14496
  width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -15346,12 +15587,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
15346
15587
  z: number;
15347
15588
  } | undefined;
15348
15589
  subcircuit_id?: string | undefined;
15590
+ footprinter_string?: string | undefined;
15349
15591
  size?: {
15350
15592
  x: number;
15351
15593
  y: number;
15352
15594
  z: number;
15353
15595
  } | undefined;
15354
- footprinter_string?: string | undefined;
15355
15596
  model_obj_url?: string | undefined;
15356
15597
  model_stl_url?: string | undefined;
15357
15598
  model_3mf_url?: string | undefined;
@@ -15379,12 +15620,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
15379
15620
  z: string | number;
15380
15621
  } | undefined;
15381
15622
  subcircuit_id?: string | undefined;
15623
+ footprinter_string?: string | undefined;
15382
15624
  size?: {
15383
15625
  x: string | number;
15384
15626
  y: string | number;
15385
15627
  z: string | number;
15386
15628
  } | undefined;
15387
- footprinter_string?: string | undefined;
15388
15629
  model_obj_url?: string | undefined;
15389
15630
  model_stl_url?: string | undefined;
15390
15631
  model_3mf_url?: string | undefined;
@@ -17559,6 +17800,36 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
17559
17800
  pcb_group_id?: string | undefined;
17560
17801
  error_type?: "pcb_missing_footprint_error" | undefined;
17561
17802
  pcb_missing_footprint_error_id?: string | undefined;
17803
+ }>, z.ZodObject<{
17804
+ type: z.ZodLiteral<"external_footprint_load_error">;
17805
+ external_footprint_load_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
17806
+ pcb_component_id: z.ZodString;
17807
+ source_component_id: z.ZodString;
17808
+ pcb_group_id: z.ZodOptional<z.ZodString>;
17809
+ subcircuit_id: z.ZodOptional<z.ZodString>;
17810
+ footprinter_string: z.ZodOptional<z.ZodString>;
17811
+ error_type: z.ZodDefault<z.ZodLiteral<"external_footprint_load_error">>;
17812
+ message: z.ZodString;
17813
+ }, "strip", z.ZodTypeAny, {
17814
+ message: string;
17815
+ type: "external_footprint_load_error";
17816
+ pcb_component_id: string;
17817
+ source_component_id: string;
17818
+ error_type: "external_footprint_load_error";
17819
+ external_footprint_load_error_id: string;
17820
+ subcircuit_id?: string | undefined;
17821
+ pcb_group_id?: string | undefined;
17822
+ footprinter_string?: string | undefined;
17823
+ }, {
17824
+ message: string;
17825
+ type: "external_footprint_load_error";
17826
+ pcb_component_id: string;
17827
+ source_component_id: string;
17828
+ subcircuit_id?: string | undefined;
17829
+ pcb_group_id?: string | undefined;
17830
+ error_type?: "external_footprint_load_error" | undefined;
17831
+ external_footprint_load_error_id?: string | undefined;
17832
+ footprinter_string?: string | undefined;
17562
17833
  }>, z.ZodObject<{
17563
17834
  type: z.ZodLiteral<"pcb_manual_edit_conflict_warning">;
17564
17835
  pcb_manual_edit_conflict_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -20190,6 +20461,79 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
20190
20461
  source_net_id?: string | undefined;
20191
20462
  pcb_copper_pour_id?: string | undefined;
20192
20463
  }>]>, z.ZodObject<{
20464
+ type: z.ZodLiteral<"pcb_component_outside_board_error">;
20465
+ pcb_component_outside_board_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
20466
+ error_type: z.ZodDefault<z.ZodLiteral<"pcb_component_outside_board_error">>;
20467
+ message: z.ZodString;
20468
+ pcb_component_id: z.ZodString;
20469
+ pcb_board_id: z.ZodString;
20470
+ component_center: z.ZodObject<{
20471
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
20472
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
20473
+ }, "strip", z.ZodTypeAny, {
20474
+ x: number;
20475
+ y: number;
20476
+ }, {
20477
+ x: string | number;
20478
+ y: string | number;
20479
+ }>;
20480
+ component_bounds: z.ZodObject<{
20481
+ min_x: z.ZodNumber;
20482
+ max_x: z.ZodNumber;
20483
+ min_y: z.ZodNumber;
20484
+ max_y: z.ZodNumber;
20485
+ }, "strip", z.ZodTypeAny, {
20486
+ min_x: number;
20487
+ max_x: number;
20488
+ min_y: number;
20489
+ max_y: number;
20490
+ }, {
20491
+ min_x: number;
20492
+ max_x: number;
20493
+ min_y: number;
20494
+ max_y: number;
20495
+ }>;
20496
+ subcircuit_id: z.ZodOptional<z.ZodString>;
20497
+ source_component_id: z.ZodOptional<z.ZodString>;
20498
+ }, "strip", z.ZodTypeAny, {
20499
+ message: string;
20500
+ type: "pcb_component_outside_board_error";
20501
+ pcb_component_id: string;
20502
+ error_type: "pcb_component_outside_board_error";
20503
+ pcb_board_id: string;
20504
+ pcb_component_outside_board_error_id: string;
20505
+ component_center: {
20506
+ x: number;
20507
+ y: number;
20508
+ };
20509
+ component_bounds: {
20510
+ min_x: number;
20511
+ max_x: number;
20512
+ min_y: number;
20513
+ max_y: number;
20514
+ };
20515
+ source_component_id?: string | undefined;
20516
+ subcircuit_id?: string | undefined;
20517
+ }, {
20518
+ message: string;
20519
+ type: "pcb_component_outside_board_error";
20520
+ pcb_component_id: string;
20521
+ pcb_board_id: string;
20522
+ component_center: {
20523
+ x: string | number;
20524
+ y: string | number;
20525
+ };
20526
+ component_bounds: {
20527
+ min_x: number;
20528
+ max_x: number;
20529
+ min_y: number;
20530
+ max_y: number;
20531
+ };
20532
+ source_component_id?: string | undefined;
20533
+ subcircuit_id?: string | undefined;
20534
+ error_type?: "pcb_component_outside_board_error" | undefined;
20535
+ pcb_component_outside_board_error_id?: string | undefined;
20536
+ }>, z.ZodObject<{
20193
20537
  type: z.ZodLiteral<"schematic_box">;
20194
20538
  schematic_component_id: z.ZodOptional<z.ZodString>;
20195
20539
  width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -21286,12 +21630,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
21286
21630
  z: number;
21287
21631
  } | undefined;
21288
21632
  subcircuit_id?: string | undefined;
21633
+ footprinter_string?: string | undefined;
21289
21634
  size?: {
21290
21635
  x: number;
21291
21636
  y: number;
21292
21637
  z: number;
21293
21638
  } | undefined;
21294
- footprinter_string?: string | undefined;
21295
21639
  model_obj_url?: string | undefined;
21296
21640
  model_stl_url?: string | undefined;
21297
21641
  model_3mf_url?: string | undefined;
@@ -21319,12 +21663,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
21319
21663
  z: string | number;
21320
21664
  } | undefined;
21321
21665
  subcircuit_id?: string | undefined;
21666
+ footprinter_string?: string | undefined;
21322
21667
  size?: {
21323
21668
  x: string | number;
21324
21669
  y: string | number;
21325
21670
  z: string | number;
21326
21671
  } | undefined;
21327
- footprinter_string?: string | undefined;
21328
21672
  model_obj_url?: string | undefined;
21329
21673
  model_stl_url?: string | undefined;
21330
21674
  model_3mf_url?: string | undefined;
@@ -21419,4 +21763,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
21419
21763
  */
21420
21764
  type CircuitJson = AnyCircuitElement[];
21421
21765
 
21422
- export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type BRepShape, type CadComponent, type CadComponentInput, type CircuitJson, type CircuitJsonError, type Distance, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBFabricationNotePath, 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 PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, 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 PcbHolePillWithRectPad, type PcbHoleRotatedPillWithRectPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, 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 PcbViaInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicBox, type SchematicBoxInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type 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 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 SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, 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, current, distance, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_path, 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_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_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_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, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, rotation, route_hint_point, schematic_box, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_voltage_source, simulation_dc_voltage_source, simulation_voltage_source, size, 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, visible_layer, voltage, wave_shape };
21766
+ export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type BRepShape, type CadComponent, type CadComponentInput, type CircuitJson, type CircuitJsonError, type Distance, 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 PCBFabricationNotePath, 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 PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, 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 PcbHolePillWithRectPad, type PcbHoleRotatedPillWithRectPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, 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 PcbViaInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicBox, type SchematicBoxInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type 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 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 SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, 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, current, distance, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, 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_cutout, pcb_cutout_circle, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_path, 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_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_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_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, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, rotation, route_hint_point, schematic_box, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_voltage_source, simulation_dc_voltage_source, simulation_voltage_source, size, 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, visible_layer, voltage, wave_shape };