circuit-json 0.0.282 → 0.0.284

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
@@ -87,6 +87,7 @@ https://github.com/user-attachments/assets/2f28b7ba-689e-4d80-85b2-5bdef84b41f8
87
87
  - [PcbBoard](#pcbboard)
88
88
  - [PcbBreakoutPoint](#pcbbreakoutpoint)
89
89
  - [PcbComponent](#pcbcomponent)
90
+ - [PcbComponentInvalidLayerError](#pcbcomponentinvalidlayererror)
90
91
  - [PcbComponentOutsideBoardError](#pcbcomponentoutsideboarderror)
91
92
  - [PcbCopperPour](#pcbcopperpour)
92
93
  - [PcbCourtyardOutline](#pcbcourtyardoutline)
@@ -109,6 +110,7 @@ https://github.com/user-attachments/assets/2f28b7ba-689e-4d80-85b2-5bdef84b41f8
109
110
  - [PcbNotePath](#pcbnotepath)
110
111
  - [PcbNoteRect](#pcbnoterect)
111
112
  - [PcbNoteText](#pcbnotetext)
113
+ - [PcbPanel](#pcbpanel)
112
114
  - [PcbPlacementError](#pcbplacementerror)
113
115
  - [PcbPlatedHole](#pcbplatedhole)
114
116
  - [PcbPort](#pcbport)
@@ -838,6 +840,7 @@ Defines the board outline of the PCB
838
840
  interface PcbBoard {
839
841
  type: "pcb_board"
840
842
  pcb_board_id: string
843
+ pcb_panel_id?: string
841
844
  is_subcircuit?: boolean
842
845
  subcircuit_id?: string
843
846
  width: Length
@@ -895,6 +898,26 @@ interface PcbComponent {
895
898
  }
896
899
  ```
897
900
 
901
+ ### PcbComponentInvalidLayerError
902
+
903
+ [Source](https://github.com/tscircuit/circuit-json/blob/main/src/pcb/pcb_component_invalid_layer_error.ts)
904
+
905
+ Error emitted when a component is placed on an invalid layer (components can only be on 'top' or 'bottom' layers)
906
+
907
+ ```typescript
908
+ /** Error emitted when a component is placed on an invalid layer (components can only be on 'top' or 'bottom' layers) */
909
+ interface PcbComponentInvalidLayerError {
910
+ type: "pcb_component_invalid_layer_error"
911
+ pcb_component_invalid_layer_error_id: string
912
+ error_type: "pcb_component_invalid_layer_error"
913
+ message: string
914
+ pcb_component_id?: string
915
+ source_component_id: string
916
+ layer: LayerRef
917
+ subcircuit_id?: string
918
+ }
919
+ ```
920
+
898
921
  ### PcbComponentOutsideBoardError
899
922
 
900
923
  [Source](https://github.com/tscircuit/circuit-json/blob/main/src/pcb/pcb_component_outside_board_error.ts)
@@ -1404,6 +1427,23 @@ interface PcbNoteText {
1404
1427
  }
1405
1428
  ```
1406
1429
 
1430
+ ### PcbPanel
1431
+
1432
+ [Source](https://github.com/tscircuit/circuit-json/blob/main/src/pcb/pcb_panel.ts)
1433
+
1434
+ Defines a PCB panel that can contain multiple boards
1435
+
1436
+ ```typescript
1437
+ /** Defines a PCB panel that can contain multiple boards */
1438
+ interface PcbPanel {
1439
+ type: "pcb_panel"
1440
+ pcb_panel_id: string
1441
+ width: Length
1442
+ height: Length
1443
+ covered_with_solder_mask: boolean
1444
+ }
1445
+ ```
1446
+
1407
1447
  ### PcbPlacementError
1408
1448
 
1409
1449
  [Source](https://github.com/tscircuit/circuit-json/blob/main/src/pcb/pcb_placement_error.ts)
package/dist/index.d.mts CHANGED
@@ -3034,6 +3034,7 @@ type PCBVia = PcbVia;
3034
3034
  declare const pcb_board: z.ZodObject<{
3035
3035
  type: z.ZodLiteral<"pcb_board">;
3036
3036
  pcb_board_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
3037
+ pcb_panel_id: z.ZodOptional<z.ZodString>;
3037
3038
  is_subcircuit: z.ZodOptional<z.ZodBoolean>;
3038
3039
  subcircuit_id: z.ZodOptional<z.ZodString>;
3039
3040
  width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -3074,6 +3075,7 @@ declare const pcb_board: z.ZodObject<{
3074
3075
  num_layers: number;
3075
3076
  material: "fr4" | "fr1";
3076
3077
  subcircuit_id?: string | undefined;
3078
+ pcb_panel_id?: string | undefined;
3077
3079
  is_subcircuit?: boolean | undefined;
3078
3080
  outline?: {
3079
3081
  x: number;
@@ -3089,6 +3091,7 @@ declare const pcb_board: z.ZodObject<{
3089
3091
  };
3090
3092
  subcircuit_id?: string | undefined;
3091
3093
  pcb_board_id?: string | undefined;
3094
+ pcb_panel_id?: string | undefined;
3092
3095
  is_subcircuit?: boolean | undefined;
3093
3096
  thickness?: string | number | undefined;
3094
3097
  num_layers?: number | undefined;
@@ -3104,6 +3107,7 @@ declare const pcb_board: z.ZodObject<{
3104
3107
  interface PcbBoard {
3105
3108
  type: "pcb_board";
3106
3109
  pcb_board_id: string;
3110
+ pcb_panel_id?: string;
3107
3111
  is_subcircuit?: boolean;
3108
3112
  subcircuit_id?: string;
3109
3113
  width: Length;
@@ -3120,6 +3124,41 @@ type PcbBoardInput = z.input<typeof pcb_board>;
3120
3124
  */
3121
3125
  type PCBBoard = PcbBoard;
3122
3126
 
3127
+ declare const pcb_panel: z.ZodObject<{
3128
+ type: z.ZodLiteral<"pcb_panel">;
3129
+ pcb_panel_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
3130
+ width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
3131
+ height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
3132
+ covered_with_solder_mask: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
3133
+ }, "strip", z.ZodTypeAny, {
3134
+ type: "pcb_panel";
3135
+ width: number;
3136
+ height: number;
3137
+ pcb_panel_id: string;
3138
+ covered_with_solder_mask: boolean;
3139
+ }, {
3140
+ type: "pcb_panel";
3141
+ width: string | number;
3142
+ height: string | number;
3143
+ pcb_panel_id?: string | undefined;
3144
+ covered_with_solder_mask?: boolean | undefined;
3145
+ }>;
3146
+ /**
3147
+ * Defines a PCB panel that can contain multiple boards
3148
+ */
3149
+ interface PcbPanel {
3150
+ type: "pcb_panel";
3151
+ pcb_panel_id: string;
3152
+ width: Length;
3153
+ height: Length;
3154
+ covered_with_solder_mask: boolean;
3155
+ }
3156
+ type PcbPanelInput = z.input<typeof pcb_panel>;
3157
+ /**
3158
+ * @deprecated use PcbPanel
3159
+ */
3160
+ type PCBPanel = PcbPanel;
3161
+
3123
3162
  declare const pcb_placement_error: z.ZodObject<{
3124
3163
  type: z.ZodLiteral<"pcb_placement_error">;
3125
3164
  pcb_placement_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -6056,6 +6095,57 @@ interface PcbComponentOutsideBoardError {
6056
6095
  source_component_id?: string;
6057
6096
  }
6058
6097
 
6098
+ declare const pcb_component_invalid_layer_error: z.ZodObject<{
6099
+ type: z.ZodLiteral<"pcb_component_invalid_layer_error">;
6100
+ pcb_component_invalid_layer_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
6101
+ error_type: z.ZodDefault<z.ZodLiteral<"pcb_component_invalid_layer_error">>;
6102
+ message: z.ZodString;
6103
+ pcb_component_id: z.ZodOptional<z.ZodString>;
6104
+ source_component_id: z.ZodString;
6105
+ layer: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
6106
+ name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
6107
+ }, "strip", z.ZodTypeAny, {
6108
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
6109
+ }, {
6110
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
6111
+ }>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
6112
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
6113
+ }>;
6114
+ subcircuit_id: z.ZodOptional<z.ZodString>;
6115
+ }, "strip", z.ZodTypeAny, {
6116
+ message: string;
6117
+ type: "pcb_component_invalid_layer_error";
6118
+ source_component_id: string;
6119
+ layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
6120
+ error_type: "pcb_component_invalid_layer_error";
6121
+ pcb_component_invalid_layer_error_id: string;
6122
+ pcb_component_id?: string | undefined;
6123
+ subcircuit_id?: string | undefined;
6124
+ }, {
6125
+ message: string;
6126
+ type: "pcb_component_invalid_layer_error";
6127
+ source_component_id: string;
6128
+ layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
6129
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
6130
+ };
6131
+ pcb_component_id?: string | undefined;
6132
+ subcircuit_id?: string | undefined;
6133
+ error_type?: "pcb_component_invalid_layer_error" | undefined;
6134
+ pcb_component_invalid_layer_error_id?: string | undefined;
6135
+ }>;
6136
+ type PcbComponentInvalidLayerErrorInput = z.input<typeof pcb_component_invalid_layer_error>;
6137
+ /** Error emitted when a component is placed on an invalid layer (components can only be on 'top' or 'bottom' layers) */
6138
+ interface PcbComponentInvalidLayerError {
6139
+ type: "pcb_component_invalid_layer_error";
6140
+ pcb_component_invalid_layer_error_id: string;
6141
+ error_type: "pcb_component_invalid_layer_error";
6142
+ message: string;
6143
+ pcb_component_id?: string;
6144
+ source_component_id: string;
6145
+ layer: LayerRef;
6146
+ subcircuit_id?: string;
6147
+ }
6148
+
6059
6149
  declare const pcb_via_clearance_error: z.ZodObject<{
6060
6150
  type: z.ZodLiteral<"pcb_via_clearance_error">;
6061
6151
  pcb_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -6279,7 +6369,7 @@ interface PcbCourtyardOutline {
6279
6369
  */
6280
6370
  type PCBCourtyardOutline = PcbCourtyardOutline;
6281
6371
 
6282
- 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;
6372
+ type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceError | PcbTraceMissingError | PcbMissingFootprintError | ExternalFootprintLoadError | CircuitJsonFootprintLoadError | PcbManualEditConflictWarning | PcbPortNotMatchedError | PcbPortNotConnectedError | PcbVia | PcbNet | PcbBoard | PcbPanel | PcbPlacementError | PcbTraceHint | PcbSilkscreenLine | PcbSilkscreenPath | PcbSilkscreenText | PcbSilkscreenRect | PcbSilkscreenCircle | PcbFabricationNoteRect | PcbFabricationNoteDimension | PcbNoteText | PcbNoteRect | PcbNotePath | PcbNoteLine | PcbNoteDimension | PcbAutoroutingError | PcbFootprintOverlapError | PcbCutout | PcbBreakoutPoint | PcbGroundPlane | PcbGroundPlaneRegion | PcbThermalSpoke | PcbCopperPour | PcbComponentOutsideBoardError | PcbComponentInvalidLayerError | PcbViaClearanceError | PcbCourtyardRect | PcbCourtyardOutline;
6283
6373
 
6284
6374
  interface SchematicBox {
6285
6375
  type: "schematic_box";
@@ -14969,6 +15059,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
14969
15059
  }>]>, z.ZodObject<{
14970
15060
  type: z.ZodLiteral<"pcb_board">;
14971
15061
  pcb_board_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
15062
+ pcb_panel_id: z.ZodOptional<z.ZodString>;
14972
15063
  is_subcircuit: z.ZodOptional<z.ZodBoolean>;
14973
15064
  subcircuit_id: z.ZodOptional<z.ZodString>;
14974
15065
  width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -15009,6 +15100,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
15009
15100
  num_layers: number;
15010
15101
  material: "fr4" | "fr1";
15011
15102
  subcircuit_id?: string | undefined;
15103
+ pcb_panel_id?: string | undefined;
15012
15104
  is_subcircuit?: boolean | undefined;
15013
15105
  outline?: {
15014
15106
  x: number;
@@ -15024,6 +15116,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
15024
15116
  };
15025
15117
  subcircuit_id?: string | undefined;
15026
15118
  pcb_board_id?: string | undefined;
15119
+ pcb_panel_id?: string | undefined;
15027
15120
  is_subcircuit?: boolean | undefined;
15028
15121
  thickness?: string | number | undefined;
15029
15122
  num_layers?: number | undefined;
@@ -15032,6 +15125,24 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
15032
15125
  y: string | number;
15033
15126
  }[] | undefined;
15034
15127
  material?: "fr4" | "fr1" | undefined;
15128
+ }>, z.ZodObject<{
15129
+ type: z.ZodLiteral<"pcb_panel">;
15130
+ pcb_panel_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
15131
+ width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
15132
+ height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
15133
+ covered_with_solder_mask: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
15134
+ }, "strip", z.ZodTypeAny, {
15135
+ type: "pcb_panel";
15136
+ width: number;
15137
+ height: number;
15138
+ pcb_panel_id: string;
15139
+ covered_with_solder_mask: boolean;
15140
+ }, {
15141
+ type: "pcb_panel";
15142
+ width: string | number;
15143
+ height: string | number;
15144
+ pcb_panel_id?: string | undefined;
15145
+ covered_with_solder_mask?: boolean | undefined;
15035
15146
  }>, z.ZodObject<{
15036
15147
  type: z.ZodLiteral<"pcb_group">;
15037
15148
  pcb_group_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -16861,6 +16972,43 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
16861
16972
  subcircuit_id?: string | undefined;
16862
16973
  error_type?: "pcb_component_outside_board_error" | undefined;
16863
16974
  pcb_component_outside_board_error_id?: string | undefined;
16975
+ }>, z.ZodObject<{
16976
+ type: z.ZodLiteral<"pcb_component_invalid_layer_error">;
16977
+ pcb_component_invalid_layer_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
16978
+ error_type: z.ZodDefault<z.ZodLiteral<"pcb_component_invalid_layer_error">>;
16979
+ message: z.ZodString;
16980
+ pcb_component_id: z.ZodOptional<z.ZodString>;
16981
+ source_component_id: z.ZodString;
16982
+ layer: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
16983
+ name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
16984
+ }, "strip", z.ZodTypeAny, {
16985
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
16986
+ }, {
16987
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
16988
+ }>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
16989
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
16990
+ }>;
16991
+ subcircuit_id: z.ZodOptional<z.ZodString>;
16992
+ }, "strip", z.ZodTypeAny, {
16993
+ message: string;
16994
+ type: "pcb_component_invalid_layer_error";
16995
+ source_component_id: string;
16996
+ layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
16997
+ error_type: "pcb_component_invalid_layer_error";
16998
+ pcb_component_invalid_layer_error_id: string;
16999
+ pcb_component_id?: string | undefined;
17000
+ subcircuit_id?: string | undefined;
17001
+ }, {
17002
+ message: string;
17003
+ type: "pcb_component_invalid_layer_error";
17004
+ source_component_id: string;
17005
+ layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
17006
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
17007
+ };
17008
+ pcb_component_id?: string | undefined;
17009
+ subcircuit_id?: string | undefined;
17010
+ error_type?: "pcb_component_invalid_layer_error" | undefined;
17011
+ pcb_component_invalid_layer_error_id?: string | undefined;
16864
17012
  }>, z.ZodObject<{
16865
17013
  type: z.ZodLiteral<"pcb_courtyard_rect">;
16866
17014
  pcb_courtyard_rect_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -22122,6 +22270,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
22122
22270
  }>]>, z.ZodObject<{
22123
22271
  type: z.ZodLiteral<"pcb_board">;
22124
22272
  pcb_board_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
22273
+ pcb_panel_id: z.ZodOptional<z.ZodString>;
22125
22274
  is_subcircuit: z.ZodOptional<z.ZodBoolean>;
22126
22275
  subcircuit_id: z.ZodOptional<z.ZodString>;
22127
22276
  width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -22162,6 +22311,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
22162
22311
  num_layers: number;
22163
22312
  material: "fr4" | "fr1";
22164
22313
  subcircuit_id?: string | undefined;
22314
+ pcb_panel_id?: string | undefined;
22165
22315
  is_subcircuit?: boolean | undefined;
22166
22316
  outline?: {
22167
22317
  x: number;
@@ -22177,6 +22327,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
22177
22327
  };
22178
22328
  subcircuit_id?: string | undefined;
22179
22329
  pcb_board_id?: string | undefined;
22330
+ pcb_panel_id?: string | undefined;
22180
22331
  is_subcircuit?: boolean | undefined;
22181
22332
  thickness?: string | number | undefined;
22182
22333
  num_layers?: number | undefined;
@@ -22185,6 +22336,24 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
22185
22336
  y: string | number;
22186
22337
  }[] | undefined;
22187
22338
  material?: "fr4" | "fr1" | undefined;
22339
+ }>, z.ZodObject<{
22340
+ type: z.ZodLiteral<"pcb_panel">;
22341
+ pcb_panel_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
22342
+ width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
22343
+ height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
22344
+ covered_with_solder_mask: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
22345
+ }, "strip", z.ZodTypeAny, {
22346
+ type: "pcb_panel";
22347
+ width: number;
22348
+ height: number;
22349
+ pcb_panel_id: string;
22350
+ covered_with_solder_mask: boolean;
22351
+ }, {
22352
+ type: "pcb_panel";
22353
+ width: string | number;
22354
+ height: string | number;
22355
+ pcb_panel_id?: string | undefined;
22356
+ covered_with_solder_mask?: boolean | undefined;
22188
22357
  }>, z.ZodObject<{
22189
22358
  type: z.ZodLiteral<"pcb_group">;
22190
22359
  pcb_group_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -24014,6 +24183,43 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
24014
24183
  subcircuit_id?: string | undefined;
24015
24184
  error_type?: "pcb_component_outside_board_error" | undefined;
24016
24185
  pcb_component_outside_board_error_id?: string | undefined;
24186
+ }>, z.ZodObject<{
24187
+ type: z.ZodLiteral<"pcb_component_invalid_layer_error">;
24188
+ pcb_component_invalid_layer_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
24189
+ error_type: z.ZodDefault<z.ZodLiteral<"pcb_component_invalid_layer_error">>;
24190
+ message: z.ZodString;
24191
+ pcb_component_id: z.ZodOptional<z.ZodString>;
24192
+ source_component_id: z.ZodString;
24193
+ layer: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
24194
+ name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
24195
+ }, "strip", z.ZodTypeAny, {
24196
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
24197
+ }, {
24198
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
24199
+ }>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
24200
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
24201
+ }>;
24202
+ subcircuit_id: z.ZodOptional<z.ZodString>;
24203
+ }, "strip", z.ZodTypeAny, {
24204
+ message: string;
24205
+ type: "pcb_component_invalid_layer_error";
24206
+ source_component_id: string;
24207
+ layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
24208
+ error_type: "pcb_component_invalid_layer_error";
24209
+ pcb_component_invalid_layer_error_id: string;
24210
+ pcb_component_id?: string | undefined;
24211
+ subcircuit_id?: string | undefined;
24212
+ }, {
24213
+ message: string;
24214
+ type: "pcb_component_invalid_layer_error";
24215
+ source_component_id: string;
24216
+ layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
24217
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
24218
+ };
24219
+ pcb_component_id?: string | undefined;
24220
+ subcircuit_id?: string | undefined;
24221
+ error_type?: "pcb_component_invalid_layer_error" | undefined;
24222
+ pcb_component_invalid_layer_error_id?: string | undefined;
24017
24223
  }>, z.ZodObject<{
24018
24224
  type: z.ZodLiteral<"pcb_courtyard_rect">;
24019
24225
  pcb_courtyard_rect_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -25663,4 +25869,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
25663
25869
  */
25664
25870
  type CircuitJson = AnyCircuitElement[];
25665
25871
 
25666
- 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 };
25872
+ 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 PCBPanel, 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 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 PcbPanel, type PcbPanelInput, 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_invalid_layer_error, 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_panel, 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 };