circuit-json 0.0.384 → 0.0.386

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -11001,6 +11001,73 @@ interface PcbComponentOutsideBoardError extends BaseCircuitJsonError {
11001
11001
  source_component_id?: string;
11002
11002
  }
11003
11003
 
11004
+ declare const pcb_component_not_on_board_edge_error: z.ZodObject<{
11005
+ message: z.ZodString;
11006
+ is_fatal: z.ZodOptional<z.ZodBoolean>;
11007
+ } & {
11008
+ type: z.ZodLiteral<"pcb_component_not_on_board_edge_error">;
11009
+ pcb_component_not_on_board_edge_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
11010
+ error_type: z.ZodDefault<z.ZodLiteral<"pcb_component_not_on_board_edge_error">>;
11011
+ pcb_component_id: z.ZodString;
11012
+ pcb_board_id: z.ZodString;
11013
+ component_center: z.ZodObject<{
11014
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
11015
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
11016
+ }, "strip", z.ZodTypeAny, {
11017
+ x: number;
11018
+ y: number;
11019
+ }, {
11020
+ x: string | number;
11021
+ y: string | number;
11022
+ }>;
11023
+ pad_to_nearest_board_edge_distance: z.ZodNumber;
11024
+ source_component_id: z.ZodOptional<z.ZodString>;
11025
+ subcircuit_id: z.ZodOptional<z.ZodString>;
11026
+ }, "strip", z.ZodTypeAny, {
11027
+ message: string;
11028
+ type: "pcb_component_not_on_board_edge_error";
11029
+ pcb_component_id: string;
11030
+ error_type: "pcb_component_not_on_board_edge_error";
11031
+ pcb_board_id: string;
11032
+ component_center: {
11033
+ x: number;
11034
+ y: number;
11035
+ };
11036
+ pcb_component_not_on_board_edge_error_id: string;
11037
+ pad_to_nearest_board_edge_distance: number;
11038
+ source_component_id?: string | undefined;
11039
+ subcircuit_id?: string | undefined;
11040
+ is_fatal?: boolean | undefined;
11041
+ }, {
11042
+ message: string;
11043
+ type: "pcb_component_not_on_board_edge_error";
11044
+ pcb_component_id: string;
11045
+ pcb_board_id: string;
11046
+ component_center: {
11047
+ x: string | number;
11048
+ y: string | number;
11049
+ };
11050
+ pad_to_nearest_board_edge_distance: number;
11051
+ source_component_id?: string | undefined;
11052
+ subcircuit_id?: string | undefined;
11053
+ error_type?: "pcb_component_not_on_board_edge_error" | undefined;
11054
+ is_fatal?: boolean | undefined;
11055
+ pcb_component_not_on_board_edge_error_id?: string | undefined;
11056
+ }>;
11057
+ type PcbComponentNotOnBoardEdgeErrorInput = z.input<typeof pcb_component_not_on_board_edge_error>;
11058
+ /** Error emitted when a component that must be placed on the board edge is centered away from the edge */
11059
+ interface PcbComponentNotOnBoardEdgeError extends BaseCircuitJsonError {
11060
+ type: "pcb_component_not_on_board_edge_error";
11061
+ pcb_component_not_on_board_edge_error_id: string;
11062
+ error_type: "pcb_component_not_on_board_edge_error";
11063
+ pcb_component_id: string;
11064
+ pcb_board_id: string;
11065
+ component_center: Point;
11066
+ pad_to_nearest_board_edge_distance: number;
11067
+ source_component_id?: string;
11068
+ subcircuit_id?: string;
11069
+ }
11070
+
11004
11071
  declare const pcb_component_invalid_layer_error: z.ZodObject<{
11005
11072
  message: z.ZodString;
11006
11073
  is_fatal: z.ZodOptional<z.ZodBoolean>;
@@ -11373,7 +11440,7 @@ interface PcbCourtyardCircle {
11373
11440
  color?: string;
11374
11441
  }
11375
11442
 
11376
- type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceError | PcbTraceMissingError | PcbMissingFootprintError | ExternalFootprintLoadError | CircuitJsonFootprintLoadError | PcbManualEditConflictWarning | PcbPortNotMatchedError | PcbPortNotConnectedError | PcbVia | PcbNet | PcbBoard | PcbPanel | PcbPlacementError | PcbPanelizationPlacementError | PcbTraceHint | PcbSilkscreenLine | PcbSilkscreenPath | PcbSilkscreenText | PcbSilkscreenPill | PcbCopperText | PcbSilkscreenRect | PcbSilkscreenCircle | PcbSilkscreenOval | PcbFabricationNoteRect | PcbFabricationNoteDimension | PcbNoteText | PcbNoteRect | PcbNotePath | PcbNoteLine | PcbNoteDimension | PcbAutoroutingError | PcbFootprintOverlapError | PcbCutout | PcbBreakoutPoint | PcbGroundPlane | PcbGroundPlaneRegion | PcbThermalSpoke | PcbCopperPour | PcbComponentOutsideBoardError | PcbComponentInvalidLayerError | PcbViaClearanceError | PcbCourtyardRect | PcbCourtyardOutline | PcbCourtyardPolygon | PcbCourtyardCircle;
11443
+ type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceError | PcbTraceMissingError | PcbMissingFootprintError | ExternalFootprintLoadError | CircuitJsonFootprintLoadError | PcbManualEditConflictWarning | PcbPortNotMatchedError | PcbPortNotConnectedError | PcbVia | PcbNet | PcbBoard | PcbPanel | PcbPlacementError | PcbPanelizationPlacementError | PcbTraceHint | PcbSilkscreenLine | PcbSilkscreenPath | PcbSilkscreenText | PcbSilkscreenPill | PcbCopperText | PcbSilkscreenRect | PcbSilkscreenCircle | PcbSilkscreenOval | PcbFabricationNoteRect | PcbFabricationNoteDimension | PcbNoteText | PcbNoteRect | PcbNotePath | PcbNoteLine | PcbNoteDimension | PcbAutoroutingError | PcbFootprintOverlapError | PcbCutout | PcbBreakoutPoint | PcbGroundPlane | PcbGroundPlaneRegion | PcbThermalSpoke | PcbCopperPour | PcbComponentOutsideBoardError | PcbComponentNotOnBoardEdgeError | PcbComponentInvalidLayerError | PcbViaClearanceError | PcbCourtyardRect | PcbCourtyardOutline | PcbCourtyardPolygon | PcbCourtyardCircle;
11377
11444
 
11378
11445
  interface SchematicBox {
11379
11446
  type: "schematic_box";
@@ -28056,6 +28123,22 @@ declare const source_port: z.ZodObject<{
28056
28123
  subcircuit_id: z.ZodOptional<z.ZodString>;
28057
28124
  subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
28058
28125
  must_be_connected: z.ZodOptional<z.ZodBoolean>;
28126
+ is_configured_for_i2c_sda: z.ZodOptional<z.ZodBoolean>;
28127
+ is_configured_for_i2c_scl: z.ZodOptional<z.ZodBoolean>;
28128
+ is_configured_for_spi_mosi: z.ZodOptional<z.ZodBoolean>;
28129
+ is_configured_for_spi_miso: z.ZodOptional<z.ZodBoolean>;
28130
+ is_configured_for_spi_sck: z.ZodOptional<z.ZodBoolean>;
28131
+ is_configured_for_spi_cs: z.ZodOptional<z.ZodBoolean>;
28132
+ is_configured_for_uart_tx: z.ZodOptional<z.ZodBoolean>;
28133
+ is_configured_for_uart_rx: z.ZodOptional<z.ZodBoolean>;
28134
+ supports_i2c_sda: z.ZodOptional<z.ZodBoolean>;
28135
+ supports_i2c_scl: z.ZodOptional<z.ZodBoolean>;
28136
+ supports_spi_mosi: z.ZodOptional<z.ZodBoolean>;
28137
+ supports_spi_miso: z.ZodOptional<z.ZodBoolean>;
28138
+ supports_spi_sck: z.ZodOptional<z.ZodBoolean>;
28139
+ supports_spi_cs: z.ZodOptional<z.ZodBoolean>;
28140
+ supports_uart_tx: z.ZodOptional<z.ZodBoolean>;
28141
+ supports_uart_rx: z.ZodOptional<z.ZodBoolean>;
28059
28142
  }, "strip", z.ZodTypeAny, {
28060
28143
  type: "source_port";
28061
28144
  name: string;
@@ -28068,6 +28151,22 @@ declare const source_port: z.ZodObject<{
28068
28151
  pin_number?: number | undefined;
28069
28152
  most_frequently_referenced_by_name?: string | undefined;
28070
28153
  must_be_connected?: boolean | undefined;
28154
+ is_configured_for_i2c_sda?: boolean | undefined;
28155
+ is_configured_for_i2c_scl?: boolean | undefined;
28156
+ is_configured_for_spi_mosi?: boolean | undefined;
28157
+ is_configured_for_spi_miso?: boolean | undefined;
28158
+ is_configured_for_spi_sck?: boolean | undefined;
28159
+ is_configured_for_spi_cs?: boolean | undefined;
28160
+ is_configured_for_uart_tx?: boolean | undefined;
28161
+ is_configured_for_uart_rx?: boolean | undefined;
28162
+ supports_i2c_sda?: boolean | undefined;
28163
+ supports_i2c_scl?: boolean | undefined;
28164
+ supports_spi_mosi?: boolean | undefined;
28165
+ supports_spi_miso?: boolean | undefined;
28166
+ supports_spi_sck?: boolean | undefined;
28167
+ supports_spi_cs?: boolean | undefined;
28168
+ supports_uart_tx?: boolean | undefined;
28169
+ supports_uart_rx?: boolean | undefined;
28071
28170
  }, {
28072
28171
  type: "source_port";
28073
28172
  name: string;
@@ -28080,6 +28179,22 @@ declare const source_port: z.ZodObject<{
28080
28179
  pin_number?: number | undefined;
28081
28180
  most_frequently_referenced_by_name?: string | undefined;
28082
28181
  must_be_connected?: boolean | undefined;
28182
+ is_configured_for_i2c_sda?: boolean | undefined;
28183
+ is_configured_for_i2c_scl?: boolean | undefined;
28184
+ is_configured_for_spi_mosi?: boolean | undefined;
28185
+ is_configured_for_spi_miso?: boolean | undefined;
28186
+ is_configured_for_spi_sck?: boolean | undefined;
28187
+ is_configured_for_spi_cs?: boolean | undefined;
28188
+ is_configured_for_uart_tx?: boolean | undefined;
28189
+ is_configured_for_uart_rx?: boolean | undefined;
28190
+ supports_i2c_sda?: boolean | undefined;
28191
+ supports_i2c_scl?: boolean | undefined;
28192
+ supports_spi_mosi?: boolean | undefined;
28193
+ supports_spi_miso?: boolean | undefined;
28194
+ supports_spi_sck?: boolean | undefined;
28195
+ supports_spi_cs?: boolean | undefined;
28196
+ supports_uart_tx?: boolean | undefined;
28197
+ supports_uart_rx?: boolean | undefined;
28083
28198
  }>;
28084
28199
  type SourcePortInput = z.input<typeof source_port>;
28085
28200
  /**
@@ -28097,6 +28212,22 @@ interface SourcePort {
28097
28212
  subcircuit_id?: string;
28098
28213
  subcircuit_connectivity_map_key?: string;
28099
28214
  must_be_connected?: boolean;
28215
+ is_configured_for_i2c_sda?: boolean;
28216
+ is_configured_for_i2c_scl?: boolean;
28217
+ is_configured_for_spi_mosi?: boolean;
28218
+ is_configured_for_spi_miso?: boolean;
28219
+ is_configured_for_spi_sck?: boolean;
28220
+ is_configured_for_spi_cs?: boolean;
28221
+ is_configured_for_uart_tx?: boolean;
28222
+ is_configured_for_uart_rx?: boolean;
28223
+ supports_i2c_sda?: boolean;
28224
+ supports_i2c_scl?: boolean;
28225
+ supports_spi_mosi?: boolean;
28226
+ supports_spi_miso?: boolean;
28227
+ supports_spi_sck?: boolean;
28228
+ supports_spi_cs?: boolean;
28229
+ supports_uart_tx?: boolean;
28230
+ supports_uart_rx?: boolean;
28100
28231
  }
28101
28232
 
28102
28233
  interface SourceComponentInternalConnection {
@@ -31280,6 +31411,22 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
31280
31411
  subcircuit_id: z.ZodOptional<z.ZodString>;
31281
31412
  subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
31282
31413
  must_be_connected: z.ZodOptional<z.ZodBoolean>;
31414
+ is_configured_for_i2c_sda: z.ZodOptional<z.ZodBoolean>;
31415
+ is_configured_for_i2c_scl: z.ZodOptional<z.ZodBoolean>;
31416
+ is_configured_for_spi_mosi: z.ZodOptional<z.ZodBoolean>;
31417
+ is_configured_for_spi_miso: z.ZodOptional<z.ZodBoolean>;
31418
+ is_configured_for_spi_sck: z.ZodOptional<z.ZodBoolean>;
31419
+ is_configured_for_spi_cs: z.ZodOptional<z.ZodBoolean>;
31420
+ is_configured_for_uart_tx: z.ZodOptional<z.ZodBoolean>;
31421
+ is_configured_for_uart_rx: z.ZodOptional<z.ZodBoolean>;
31422
+ supports_i2c_sda: z.ZodOptional<z.ZodBoolean>;
31423
+ supports_i2c_scl: z.ZodOptional<z.ZodBoolean>;
31424
+ supports_spi_mosi: z.ZodOptional<z.ZodBoolean>;
31425
+ supports_spi_miso: z.ZodOptional<z.ZodBoolean>;
31426
+ supports_spi_sck: z.ZodOptional<z.ZodBoolean>;
31427
+ supports_spi_cs: z.ZodOptional<z.ZodBoolean>;
31428
+ supports_uart_tx: z.ZodOptional<z.ZodBoolean>;
31429
+ supports_uart_rx: z.ZodOptional<z.ZodBoolean>;
31283
31430
  }, "strip", z.ZodTypeAny, {
31284
31431
  type: "source_port";
31285
31432
  name: string;
@@ -31292,6 +31439,22 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
31292
31439
  pin_number?: number | undefined;
31293
31440
  most_frequently_referenced_by_name?: string | undefined;
31294
31441
  must_be_connected?: boolean | undefined;
31442
+ is_configured_for_i2c_sda?: boolean | undefined;
31443
+ is_configured_for_i2c_scl?: boolean | undefined;
31444
+ is_configured_for_spi_mosi?: boolean | undefined;
31445
+ is_configured_for_spi_miso?: boolean | undefined;
31446
+ is_configured_for_spi_sck?: boolean | undefined;
31447
+ is_configured_for_spi_cs?: boolean | undefined;
31448
+ is_configured_for_uart_tx?: boolean | undefined;
31449
+ is_configured_for_uart_rx?: boolean | undefined;
31450
+ supports_i2c_sda?: boolean | undefined;
31451
+ supports_i2c_scl?: boolean | undefined;
31452
+ supports_spi_mosi?: boolean | undefined;
31453
+ supports_spi_miso?: boolean | undefined;
31454
+ supports_spi_sck?: boolean | undefined;
31455
+ supports_spi_cs?: boolean | undefined;
31456
+ supports_uart_tx?: boolean | undefined;
31457
+ supports_uart_rx?: boolean | undefined;
31295
31458
  }, {
31296
31459
  type: "source_port";
31297
31460
  name: string;
@@ -31304,6 +31467,22 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
31304
31467
  pin_number?: number | undefined;
31305
31468
  most_frequently_referenced_by_name?: string | undefined;
31306
31469
  must_be_connected?: boolean | undefined;
31470
+ is_configured_for_i2c_sda?: boolean | undefined;
31471
+ is_configured_for_i2c_scl?: boolean | undefined;
31472
+ is_configured_for_spi_mosi?: boolean | undefined;
31473
+ is_configured_for_spi_miso?: boolean | undefined;
31474
+ is_configured_for_spi_sck?: boolean | undefined;
31475
+ is_configured_for_spi_cs?: boolean | undefined;
31476
+ is_configured_for_uart_tx?: boolean | undefined;
31477
+ is_configured_for_uart_rx?: boolean | undefined;
31478
+ supports_i2c_sda?: boolean | undefined;
31479
+ supports_i2c_scl?: boolean | undefined;
31480
+ supports_spi_mosi?: boolean | undefined;
31481
+ supports_spi_miso?: boolean | undefined;
31482
+ supports_spi_sck?: boolean | undefined;
31483
+ supports_spi_cs?: boolean | undefined;
31484
+ supports_uart_tx?: boolean | undefined;
31485
+ supports_uart_rx?: boolean | undefined;
31307
31486
  }>, z.ZodObject<{
31308
31487
  type: z.ZodLiteral<"source_component_internal_connection">;
31309
31488
  source_component_internal_connection_id: z.ZodString;
@@ -39648,6 +39827,58 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
39648
39827
  }>, z.ZodObject<{
39649
39828
  message: z.ZodString;
39650
39829
  is_fatal: z.ZodOptional<z.ZodBoolean>;
39830
+ } & {
39831
+ type: z.ZodLiteral<"pcb_component_not_on_board_edge_error">;
39832
+ pcb_component_not_on_board_edge_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
39833
+ error_type: z.ZodDefault<z.ZodLiteral<"pcb_component_not_on_board_edge_error">>;
39834
+ pcb_component_id: z.ZodString;
39835
+ pcb_board_id: z.ZodString;
39836
+ component_center: z.ZodObject<{
39837
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
39838
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
39839
+ }, "strip", z.ZodTypeAny, {
39840
+ x: number;
39841
+ y: number;
39842
+ }, {
39843
+ x: string | number;
39844
+ y: string | number;
39845
+ }>;
39846
+ pad_to_nearest_board_edge_distance: z.ZodNumber;
39847
+ source_component_id: z.ZodOptional<z.ZodString>;
39848
+ subcircuit_id: z.ZodOptional<z.ZodString>;
39849
+ }, "strip", z.ZodTypeAny, {
39850
+ message: string;
39851
+ type: "pcb_component_not_on_board_edge_error";
39852
+ pcb_component_id: string;
39853
+ error_type: "pcb_component_not_on_board_edge_error";
39854
+ pcb_board_id: string;
39855
+ component_center: {
39856
+ x: number;
39857
+ y: number;
39858
+ };
39859
+ pcb_component_not_on_board_edge_error_id: string;
39860
+ pad_to_nearest_board_edge_distance: number;
39861
+ source_component_id?: string | undefined;
39862
+ subcircuit_id?: string | undefined;
39863
+ is_fatal?: boolean | undefined;
39864
+ }, {
39865
+ message: string;
39866
+ type: "pcb_component_not_on_board_edge_error";
39867
+ pcb_component_id: string;
39868
+ pcb_board_id: string;
39869
+ component_center: {
39870
+ x: string | number;
39871
+ y: string | number;
39872
+ };
39873
+ pad_to_nearest_board_edge_distance: number;
39874
+ source_component_id?: string | undefined;
39875
+ subcircuit_id?: string | undefined;
39876
+ error_type?: "pcb_component_not_on_board_edge_error" | undefined;
39877
+ is_fatal?: boolean | undefined;
39878
+ pcb_component_not_on_board_edge_error_id?: string | undefined;
39879
+ }>, z.ZodObject<{
39880
+ message: z.ZodString;
39881
+ is_fatal: z.ZodOptional<z.ZodBoolean>;
39651
39882
  } & {
39652
39883
  type: z.ZodLiteral<"pcb_component_invalid_layer_error">;
39653
39884
  pcb_component_invalid_layer_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -48471,6 +48702,22 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
48471
48702
  subcircuit_id: z.ZodOptional<z.ZodString>;
48472
48703
  subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
48473
48704
  must_be_connected: z.ZodOptional<z.ZodBoolean>;
48705
+ is_configured_for_i2c_sda: z.ZodOptional<z.ZodBoolean>;
48706
+ is_configured_for_i2c_scl: z.ZodOptional<z.ZodBoolean>;
48707
+ is_configured_for_spi_mosi: z.ZodOptional<z.ZodBoolean>;
48708
+ is_configured_for_spi_miso: z.ZodOptional<z.ZodBoolean>;
48709
+ is_configured_for_spi_sck: z.ZodOptional<z.ZodBoolean>;
48710
+ is_configured_for_spi_cs: z.ZodOptional<z.ZodBoolean>;
48711
+ is_configured_for_uart_tx: z.ZodOptional<z.ZodBoolean>;
48712
+ is_configured_for_uart_rx: z.ZodOptional<z.ZodBoolean>;
48713
+ supports_i2c_sda: z.ZodOptional<z.ZodBoolean>;
48714
+ supports_i2c_scl: z.ZodOptional<z.ZodBoolean>;
48715
+ supports_spi_mosi: z.ZodOptional<z.ZodBoolean>;
48716
+ supports_spi_miso: z.ZodOptional<z.ZodBoolean>;
48717
+ supports_spi_sck: z.ZodOptional<z.ZodBoolean>;
48718
+ supports_spi_cs: z.ZodOptional<z.ZodBoolean>;
48719
+ supports_uart_tx: z.ZodOptional<z.ZodBoolean>;
48720
+ supports_uart_rx: z.ZodOptional<z.ZodBoolean>;
48474
48721
  }, "strip", z.ZodTypeAny, {
48475
48722
  type: "source_port";
48476
48723
  name: string;
@@ -48483,6 +48730,22 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
48483
48730
  pin_number?: number | undefined;
48484
48731
  most_frequently_referenced_by_name?: string | undefined;
48485
48732
  must_be_connected?: boolean | undefined;
48733
+ is_configured_for_i2c_sda?: boolean | undefined;
48734
+ is_configured_for_i2c_scl?: boolean | undefined;
48735
+ is_configured_for_spi_mosi?: boolean | undefined;
48736
+ is_configured_for_spi_miso?: boolean | undefined;
48737
+ is_configured_for_spi_sck?: boolean | undefined;
48738
+ is_configured_for_spi_cs?: boolean | undefined;
48739
+ is_configured_for_uart_tx?: boolean | undefined;
48740
+ is_configured_for_uart_rx?: boolean | undefined;
48741
+ supports_i2c_sda?: boolean | undefined;
48742
+ supports_i2c_scl?: boolean | undefined;
48743
+ supports_spi_mosi?: boolean | undefined;
48744
+ supports_spi_miso?: boolean | undefined;
48745
+ supports_spi_sck?: boolean | undefined;
48746
+ supports_spi_cs?: boolean | undefined;
48747
+ supports_uart_tx?: boolean | undefined;
48748
+ supports_uart_rx?: boolean | undefined;
48486
48749
  }, {
48487
48750
  type: "source_port";
48488
48751
  name: string;
@@ -48495,6 +48758,22 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
48495
48758
  pin_number?: number | undefined;
48496
48759
  most_frequently_referenced_by_name?: string | undefined;
48497
48760
  must_be_connected?: boolean | undefined;
48761
+ is_configured_for_i2c_sda?: boolean | undefined;
48762
+ is_configured_for_i2c_scl?: boolean | undefined;
48763
+ is_configured_for_spi_mosi?: boolean | undefined;
48764
+ is_configured_for_spi_miso?: boolean | undefined;
48765
+ is_configured_for_spi_sck?: boolean | undefined;
48766
+ is_configured_for_spi_cs?: boolean | undefined;
48767
+ is_configured_for_uart_tx?: boolean | undefined;
48768
+ is_configured_for_uart_rx?: boolean | undefined;
48769
+ supports_i2c_sda?: boolean | undefined;
48770
+ supports_i2c_scl?: boolean | undefined;
48771
+ supports_spi_mosi?: boolean | undefined;
48772
+ supports_spi_miso?: boolean | undefined;
48773
+ supports_spi_sck?: boolean | undefined;
48774
+ supports_spi_cs?: boolean | undefined;
48775
+ supports_uart_tx?: boolean | undefined;
48776
+ supports_uart_rx?: boolean | undefined;
48498
48777
  }>, z.ZodObject<{
48499
48778
  type: z.ZodLiteral<"source_component_internal_connection">;
48500
48779
  source_component_internal_connection_id: z.ZodString;
@@ -56839,6 +57118,58 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
56839
57118
  }>, z.ZodObject<{
56840
57119
  message: z.ZodString;
56841
57120
  is_fatal: z.ZodOptional<z.ZodBoolean>;
57121
+ } & {
57122
+ type: z.ZodLiteral<"pcb_component_not_on_board_edge_error">;
57123
+ pcb_component_not_on_board_edge_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
57124
+ error_type: z.ZodDefault<z.ZodLiteral<"pcb_component_not_on_board_edge_error">>;
57125
+ pcb_component_id: z.ZodString;
57126
+ pcb_board_id: z.ZodString;
57127
+ component_center: z.ZodObject<{
57128
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
57129
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
57130
+ }, "strip", z.ZodTypeAny, {
57131
+ x: number;
57132
+ y: number;
57133
+ }, {
57134
+ x: string | number;
57135
+ y: string | number;
57136
+ }>;
57137
+ pad_to_nearest_board_edge_distance: z.ZodNumber;
57138
+ source_component_id: z.ZodOptional<z.ZodString>;
57139
+ subcircuit_id: z.ZodOptional<z.ZodString>;
57140
+ }, "strip", z.ZodTypeAny, {
57141
+ message: string;
57142
+ type: "pcb_component_not_on_board_edge_error";
57143
+ pcb_component_id: string;
57144
+ error_type: "pcb_component_not_on_board_edge_error";
57145
+ pcb_board_id: string;
57146
+ component_center: {
57147
+ x: number;
57148
+ y: number;
57149
+ };
57150
+ pcb_component_not_on_board_edge_error_id: string;
57151
+ pad_to_nearest_board_edge_distance: number;
57152
+ source_component_id?: string | undefined;
57153
+ subcircuit_id?: string | undefined;
57154
+ is_fatal?: boolean | undefined;
57155
+ }, {
57156
+ message: string;
57157
+ type: "pcb_component_not_on_board_edge_error";
57158
+ pcb_component_id: string;
57159
+ pcb_board_id: string;
57160
+ component_center: {
57161
+ x: string | number;
57162
+ y: string | number;
57163
+ };
57164
+ pad_to_nearest_board_edge_distance: number;
57165
+ source_component_id?: string | undefined;
57166
+ subcircuit_id?: string | undefined;
57167
+ error_type?: "pcb_component_not_on_board_edge_error" | undefined;
57168
+ is_fatal?: boolean | undefined;
57169
+ pcb_component_not_on_board_edge_error_id?: string | undefined;
57170
+ }>, z.ZodObject<{
57171
+ message: z.ZodString;
57172
+ is_fatal: z.ZodOptional<z.ZodBoolean>;
56842
57173
  } & {
56843
57174
  type: z.ZodLiteral<"pcb_component_invalid_layer_error">;
56844
57175
  pcb_component_invalid_layer_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -65633,4 +65964,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
65633
65964
  */
65634
65965
  type CircuitJson = AnyCircuitElement[];
65635
65966
 
65636
- export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type Asset, type AssetInput, type BRepShape, type BaseCircuitJsonError, type BaseCircuitJsonErrorInput, type CadComponent, type CadComponentAnchorAlignment, type CadComponentInput, type CircuitJson, type CircuitJsonError, type CircuitJsonFootprintLoadError, type CircuitJsonFootprintLoadErrorInput, type Distance, type ExperimentType, type ExternalFootprintLoadError, type ExternalFootprintLoadErrorInput, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type KicadAt, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBCopperText, type PCBCourtyardOutline, type PCBCourtyardPolygon, type PCBCourtyardRect, type PCBFabricationNoteDimension, type PCBFabricationNotePath, type PCBFabricationNoteRect, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPanel, type PCBPanelizationPlacementError, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbComponentInvalidLayerError, type PcbComponentInvalidLayerErrorInput, type PcbComponentMetadata, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCopperText, type PcbCopperTextInput, type PcbCourtyardCircle, type PcbCourtyardCircleInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardPolygon, type PcbCourtyardPolygonInput, type PcbCourtyardRect, type PcbCourtyardRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPath, type PcbCutoutPathInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNoteDimension, type PcbFabricationNoteDimensionInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteRect, type PcbFabricationNoteRectInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircle, type PcbHoleCircleInput, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePill, type PcbHolePillInput, type PcbHolePillWithRectPad, type PcbHoleRect, type PcbHoleRectInput, type PcbHoleRotatedPill, type PcbHoleRotatedPillInput, type PcbHoleRotatedPillWithRectPad, type PcbHoleWithPolygonPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbNet, type PcbNetInput, type PcbNoteDimension, type PcbNoteDimensionInput, type PcbNoteLine, type PcbNoteLineInput, type PcbNotePath, type PcbNotePathInput, type PcbNoteRect, type PcbNoteRectInput, type PcbNoteText, type PcbNoteTextInput, type PcbPanel, type PcbPanelInput, type PcbPanelizationPlacementError, type PcbPanelizationPlacementErrorInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotConnectedError, type PcbPortNotConnectedErrorInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRenderLayer, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenPill, type PcbSilkscreenPillDeprecated, type PcbSilkscreenPillInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadPolygon, type PcbSmtPadRect, type PcbSmtPadRotatedPill, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbThermalSpoke, type PcbThermalSpokeInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceMissingError, type PcbTraceMissingErrorInput, type PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicArc, type SchematicArcInput, type SchematicBox, type SchematicBoxInput, type SchematicCircle, type SchematicCircleInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicRect, type SchematicRectInput, type SchematicSheet, type SchematicSheetInput, type SchematicSymbol, type SchematicSymbolInput, type SchematicSymbolMetadata, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcCurrentSource, type SimulationAcCurrentSourceInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationCurrentSource, type SimulationCurrentSourceInput, type SimulationDcCurrentSource, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationOpAmp, type SimulationOpAmpInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationUnknownExperimentError, type SimulationUnknownExperimentErrorInput, type SimulationVoltageProbe, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceComponentInternalConnection, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceInterconnect, type SourceInterconnectInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePinMustBeConnectedError, type SourcePinMustBeConnectedErrorInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleCurrentSource, type SourceSimpleCurrentSourceInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleFiducial, type SourceSimpleFiducialInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimpleOpAmp, type SourceSimpleOpAmpInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePinout, type SourceSimplePinoutInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceSimpleVoltageProbe, type SourceSimpleVoltageProbeInput, type SourceSimpleVoltageSource, type SourceSimpleVoltageSourceInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type UnknownErrorFindingPart, type UnknownErrorFindingPartInput, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, asset, base_circuit_json_error, battery_capacity, brep_shape, cad_component, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layer_ref, layer_string, length, ms, ninePointAnchor, pcbRenderLayer, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_outside_board_error, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_copper_text, pcb_courtyard_circle, pcb_courtyard_outline, pcb_courtyard_polygon, pcb_courtyard_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_path, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_dimension, pcb_fabrication_note_path, pcb_fabrication_note_rect, pcb_fabrication_note_text, pcb_footprint_overlap_error, pcb_ground_plane, pcb_ground_plane_region, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_circle_shape, pcb_hole_oval_shape, pcb_hole_pill_shape, pcb_hole_rect_shape, pcb_hole_rotated_pill_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_net, pcb_note_dimension, pcb_note_line, pcb_note_path, pcb_note_rect, pcb_note_text, pcb_panel, pcb_panelization_placement_error, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_connected_error, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_pill, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_thermal_spoke, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_missing_error, pcb_trace_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_via, pcb_via_clearance_error, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, rotation, route_hint_point, schematic_arc, schematic_box, schematic_circle, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_rect, schematic_sheet, schematic_symbol, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_current_source, simulation_ac_voltage_source, simulation_current_source, simulation_dc_current_source, simulation_dc_voltage_source, simulation_experiment, simulation_op_amp, simulation_switch, simulation_transient_voltage_graph, simulation_unknown_experiment_error, simulation_voltage_probe, simulation_voltage_source, size, source_board, source_component_base, source_component_internal_connection, source_failed_to_create_component_error, source_group, source_interconnect, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, source_pin_missing_trace_warning, source_pin_must_be_connected_error, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_current_source, source_simple_diode, source_simple_fiducial, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_op_amp, source_simple_pin_header, source_simple_pinout, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_simple_voltage_probe, source_simple_voltage_source, source_trace, source_trace_not_connected_error, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
65967
+ export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type Asset, type AssetInput, type BRepShape, type BaseCircuitJsonError, type BaseCircuitJsonErrorInput, type CadComponent, type CadComponentAnchorAlignment, type CadComponentInput, type CircuitJson, type CircuitJsonError, type CircuitJsonFootprintLoadError, type CircuitJsonFootprintLoadErrorInput, type Distance, type ExperimentType, type ExternalFootprintLoadError, type ExternalFootprintLoadErrorInput, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type KicadAt, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBCopperText, type PCBCourtyardOutline, type PCBCourtyardPolygon, type PCBCourtyardRect, type PCBFabricationNoteDimension, type PCBFabricationNotePath, type PCBFabricationNoteRect, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPanel, type PCBPanelizationPlacementError, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbComponentInvalidLayerError, type PcbComponentInvalidLayerErrorInput, type PcbComponentMetadata, type PcbComponentNotOnBoardEdgeError, type PcbComponentNotOnBoardEdgeErrorInput, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCopperText, type PcbCopperTextInput, type PcbCourtyardCircle, type PcbCourtyardCircleInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardPolygon, type PcbCourtyardPolygonInput, type PcbCourtyardRect, type PcbCourtyardRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPath, type PcbCutoutPathInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNoteDimension, type PcbFabricationNoteDimensionInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteRect, type PcbFabricationNoteRectInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircle, type PcbHoleCircleInput, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePill, type PcbHolePillInput, type PcbHolePillWithRectPad, type PcbHoleRect, type PcbHoleRectInput, type PcbHoleRotatedPill, type PcbHoleRotatedPillInput, type PcbHoleRotatedPillWithRectPad, type PcbHoleWithPolygonPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbNet, type PcbNetInput, type PcbNoteDimension, type PcbNoteDimensionInput, type PcbNoteLine, type PcbNoteLineInput, type PcbNotePath, type PcbNotePathInput, type PcbNoteRect, type PcbNoteRectInput, type PcbNoteText, type PcbNoteTextInput, type PcbPanel, type PcbPanelInput, type PcbPanelizationPlacementError, type PcbPanelizationPlacementErrorInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotConnectedError, type PcbPortNotConnectedErrorInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRenderLayer, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenPill, type PcbSilkscreenPillDeprecated, type PcbSilkscreenPillInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadPolygon, type PcbSmtPadRect, type PcbSmtPadRotatedPill, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbThermalSpoke, type PcbThermalSpokeInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceMissingError, type PcbTraceMissingErrorInput, type PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicArc, type SchematicArcInput, type SchematicBox, type SchematicBoxInput, type SchematicCircle, type SchematicCircleInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicRect, type SchematicRectInput, type SchematicSheet, type SchematicSheetInput, type SchematicSymbol, type SchematicSymbolInput, type SchematicSymbolMetadata, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcCurrentSource, type SimulationAcCurrentSourceInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationCurrentSource, type SimulationCurrentSourceInput, type SimulationDcCurrentSource, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationOpAmp, type SimulationOpAmpInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationUnknownExperimentError, type SimulationUnknownExperimentErrorInput, type SimulationVoltageProbe, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceComponentInternalConnection, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceInterconnect, type SourceInterconnectInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePinMustBeConnectedError, type SourcePinMustBeConnectedErrorInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleCurrentSource, type SourceSimpleCurrentSourceInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleFiducial, type SourceSimpleFiducialInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimpleOpAmp, type SourceSimpleOpAmpInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePinout, type SourceSimplePinoutInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceSimpleVoltageProbe, type SourceSimpleVoltageProbeInput, type SourceSimpleVoltageSource, type SourceSimpleVoltageSourceInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type UnknownErrorFindingPart, type UnknownErrorFindingPartInput, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, asset, base_circuit_json_error, battery_capacity, brep_shape, cad_component, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layer_ref, layer_string, length, ms, ninePointAnchor, pcbRenderLayer, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_not_on_board_edge_error, pcb_component_outside_board_error, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_copper_text, pcb_courtyard_circle, pcb_courtyard_outline, pcb_courtyard_polygon, pcb_courtyard_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_path, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_dimension, pcb_fabrication_note_path, pcb_fabrication_note_rect, pcb_fabrication_note_text, pcb_footprint_overlap_error, pcb_ground_plane, pcb_ground_plane_region, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_circle_shape, pcb_hole_oval_shape, pcb_hole_pill_shape, pcb_hole_rect_shape, pcb_hole_rotated_pill_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_net, pcb_note_dimension, pcb_note_line, pcb_note_path, pcb_note_rect, pcb_note_text, pcb_panel, pcb_panelization_placement_error, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_connected_error, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_pill, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_thermal_spoke, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_missing_error, pcb_trace_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_via, pcb_via_clearance_error, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, rotation, route_hint_point, schematic_arc, schematic_box, schematic_circle, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_rect, schematic_sheet, schematic_symbol, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_current_source, simulation_ac_voltage_source, simulation_current_source, simulation_dc_current_source, simulation_dc_voltage_source, simulation_experiment, simulation_op_amp, simulation_switch, simulation_transient_voltage_graph, simulation_unknown_experiment_error, simulation_voltage_probe, simulation_voltage_source, size, source_board, source_component_base, source_component_internal_connection, source_failed_to_create_component_error, source_group, source_interconnect, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, source_pin_missing_trace_warning, source_pin_must_be_connected_error, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_current_source, source_simple_diode, source_simple_fiducial, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_op_amp, source_simple_pin_header, source_simple_pinout, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_simple_voltage_probe, source_simple_voltage_source, source_trace, source_trace_not_connected_error, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };