circuit-json 0.0.294 → 0.0.296

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
@@ -151,6 +151,7 @@ https://github.com/user-attachments/assets/2f28b7ba-689e-4d80-85b2-5bdef84b41f8
151
151
  - [SchematicPath](#schematicpath)
152
152
  - [SchematicPort](#schematicport)
153
153
  - [SchematicRect](#schematicrect)
154
+ - [SchematicSheet](#schematicsheet)
154
155
  - [SchematicTable](#schematictable)
155
156
  - [SchematicTableCell](#schematictablecell)
156
157
  - [SchematicText](#schematictext)
@@ -426,7 +427,8 @@ interface SourcePort {
426
427
  port_hints?: string[]
427
428
  name: string
428
429
  source_port_id: string
429
- source_component_id: string
430
+ source_component_id?: string
431
+ source_group_id?: string
430
432
  subcircuit_id?: string
431
433
  subcircuit_connectivity_map_key?: string
432
434
  }
@@ -1660,7 +1662,7 @@ interface PcbPort {
1660
1662
  pcb_group_id?: string
1661
1663
  subcircuit_id?: string
1662
1664
  source_port_id: string
1663
- pcb_component_id: string
1665
+ pcb_component_id?: string
1664
1666
  x: Distance
1665
1667
  y: Distance
1666
1668
  layers: LayerRef[]
@@ -2424,6 +2426,22 @@ interface SchematicRect {
2424
2426
  }
2425
2427
  ```
2426
2428
 
2429
+ ### SchematicSheet
2430
+
2431
+ [Source](https://github.com/tscircuit/circuit-json/blob/main/src/schematic/schematic_sheet.ts)
2432
+
2433
+ Defines a schematic sheet or page that components can be placed on.
2434
+
2435
+ ```typescript
2436
+ /** Defines a schematic sheet or page that components can be placed on. */
2437
+ interface SchematicSheet {
2438
+ type: "schematic_sheet"
2439
+ schematic_sheet_id: string
2440
+ name?: string
2441
+ subcircuit_id?: string
2442
+ }
2443
+ ```
2444
+
2427
2445
  ### SchematicTable
2428
2446
 
2429
2447
  [Source](https://github.com/tscircuit/circuit-json/blob/main/src/schematic/schematic_table.ts)
package/dist/index.d.mts CHANGED
@@ -1363,7 +1363,7 @@ declare const pcb_port: z.ZodObject<{
1363
1363
  pcb_group_id: z.ZodOptional<z.ZodString>;
1364
1364
  subcircuit_id: z.ZodOptional<z.ZodString>;
1365
1365
  source_port_id: z.ZodString;
1366
- pcb_component_id: z.ZodString;
1366
+ pcb_component_id: z.ZodOptional<z.ZodString>;
1367
1367
  x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
1368
1368
  y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
1369
1369
  layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
@@ -1380,10 +1380,10 @@ declare const pcb_port: z.ZodObject<{
1380
1380
  x: number;
1381
1381
  y: number;
1382
1382
  type: "pcb_port";
1383
- pcb_component_id: string;
1384
1383
  layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
1385
1384
  pcb_port_id: string;
1386
1385
  source_port_id: string;
1386
+ pcb_component_id?: string | undefined;
1387
1387
  subcircuit_id?: string | undefined;
1388
1388
  pcb_group_id?: string | undefined;
1389
1389
  is_board_pinout?: boolean | undefined;
@@ -1391,11 +1391,11 @@ declare const pcb_port: z.ZodObject<{
1391
1391
  x: string | number;
1392
1392
  y: string | number;
1393
1393
  type: "pcb_port";
1394
- pcb_component_id: string;
1395
1394
  layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
1396
1395
  name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
1397
1396
  })[];
1398
1397
  source_port_id: string;
1398
+ pcb_component_id?: string | undefined;
1399
1399
  subcircuit_id?: string | undefined;
1400
1400
  pcb_group_id?: string | undefined;
1401
1401
  pcb_port_id?: string | undefined;
@@ -1411,7 +1411,7 @@ interface PcbPort {
1411
1411
  pcb_group_id?: string;
1412
1412
  subcircuit_id?: string;
1413
1413
  source_port_id: string;
1414
- pcb_component_id: string;
1414
+ pcb_component_id?: string;
1415
1415
  x: Distance;
1416
1416
  y: Distance;
1417
1417
  layers: LayerRef[];
@@ -8589,6 +8589,33 @@ interface SchematicTableCell {
8589
8589
  subcircuit_id?: string;
8590
8590
  }
8591
8591
 
8592
+ declare const schematic_sheet: z.ZodObject<{
8593
+ type: z.ZodLiteral<"schematic_sheet">;
8594
+ schematic_sheet_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
8595
+ name: z.ZodOptional<z.ZodString>;
8596
+ subcircuit_id: z.ZodOptional<z.ZodString>;
8597
+ }, "strip", z.ZodTypeAny, {
8598
+ type: "schematic_sheet";
8599
+ schematic_sheet_id: string;
8600
+ name?: string | undefined;
8601
+ subcircuit_id?: string | undefined;
8602
+ }, {
8603
+ type: "schematic_sheet";
8604
+ name?: string | undefined;
8605
+ subcircuit_id?: string | undefined;
8606
+ schematic_sheet_id?: string | undefined;
8607
+ }>;
8608
+ type SchematicSheetInput = z.input<typeof schematic_sheet>;
8609
+ /**
8610
+ * Defines a schematic sheet or page that components can be placed on.
8611
+ */
8612
+ interface SchematicSheet {
8613
+ type: "schematic_sheet";
8614
+ schematic_sheet_id: string;
8615
+ name?: string;
8616
+ subcircuit_id?: string;
8617
+ }
8618
+
8592
8619
  interface SourceComponentBase {
8593
8620
  type: "source_component";
8594
8621
  ftype?: string;
@@ -10938,25 +10965,28 @@ declare const source_port: z.ZodObject<{
10938
10965
  port_hints: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
10939
10966
  name: z.ZodString;
10940
10967
  source_port_id: z.ZodString;
10941
- source_component_id: z.ZodString;
10968
+ source_component_id: z.ZodOptional<z.ZodString>;
10969
+ source_group_id: z.ZodOptional<z.ZodString>;
10942
10970
  subcircuit_id: z.ZodOptional<z.ZodString>;
10943
10971
  subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
10944
10972
  }, "strip", z.ZodTypeAny, {
10945
10973
  type: "source_port";
10946
10974
  name: string;
10947
- source_component_id: string;
10948
10975
  source_port_id: string;
10976
+ source_component_id?: string | undefined;
10949
10977
  subcircuit_id?: string | undefined;
10950
10978
  port_hints?: string[] | undefined;
10979
+ source_group_id?: string | undefined;
10951
10980
  subcircuit_connectivity_map_key?: string | undefined;
10952
10981
  pin_number?: number | undefined;
10953
10982
  }, {
10954
10983
  type: "source_port";
10955
10984
  name: string;
10956
- source_component_id: string;
10957
10985
  source_port_id: string;
10986
+ source_component_id?: string | undefined;
10958
10987
  subcircuit_id?: string | undefined;
10959
10988
  port_hints?: string[] | undefined;
10989
+ source_group_id?: string | undefined;
10960
10990
  subcircuit_connectivity_map_key?: string | undefined;
10961
10991
  pin_number?: number | undefined;
10962
10992
  }>;
@@ -10970,7 +11000,8 @@ interface SourcePort {
10970
11000
  port_hints?: string[];
10971
11001
  name: string;
10972
11002
  source_port_id: string;
10973
- source_component_id: string;
11003
+ source_component_id?: string;
11004
+ source_group_id?: string;
10974
11005
  subcircuit_id?: string;
10975
11006
  subcircuit_connectivity_map_key?: string;
10976
11007
  }
@@ -11798,25 +11829,28 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
11798
11829
  port_hints: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
11799
11830
  name: z.ZodString;
11800
11831
  source_port_id: z.ZodString;
11801
- source_component_id: z.ZodString;
11832
+ source_component_id: z.ZodOptional<z.ZodString>;
11833
+ source_group_id: z.ZodOptional<z.ZodString>;
11802
11834
  subcircuit_id: z.ZodOptional<z.ZodString>;
11803
11835
  subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
11804
11836
  }, "strip", z.ZodTypeAny, {
11805
11837
  type: "source_port";
11806
11838
  name: string;
11807
- source_component_id: string;
11808
11839
  source_port_id: string;
11840
+ source_component_id?: string | undefined;
11809
11841
  subcircuit_id?: string | undefined;
11810
11842
  port_hints?: string[] | undefined;
11843
+ source_group_id?: string | undefined;
11811
11844
  subcircuit_connectivity_map_key?: string | undefined;
11812
11845
  pin_number?: number | undefined;
11813
11846
  }, {
11814
11847
  type: "source_port";
11815
11848
  name: string;
11816
- source_component_id: string;
11817
11849
  source_port_id: string;
11850
+ source_component_id?: string | undefined;
11818
11851
  subcircuit_id?: string | undefined;
11819
11852
  port_hints?: string[] | undefined;
11853
+ source_group_id?: string | undefined;
11820
11854
  subcircuit_connectivity_map_key?: string | undefined;
11821
11855
  pin_number?: number | undefined;
11822
11856
  }>, z.ZodUnion<[z.ZodObject<{
@@ -14487,7 +14521,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
14487
14521
  pcb_group_id: z.ZodOptional<z.ZodString>;
14488
14522
  subcircuit_id: z.ZodOptional<z.ZodString>;
14489
14523
  source_port_id: z.ZodString;
14490
- pcb_component_id: z.ZodString;
14524
+ pcb_component_id: z.ZodOptional<z.ZodString>;
14491
14525
  x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
14492
14526
  y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
14493
14527
  layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
@@ -14504,10 +14538,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
14504
14538
  x: number;
14505
14539
  y: number;
14506
14540
  type: "pcb_port";
14507
- pcb_component_id: string;
14508
14541
  layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
14509
14542
  pcb_port_id: string;
14510
14543
  source_port_id: string;
14544
+ pcb_component_id?: string | undefined;
14511
14545
  subcircuit_id?: string | undefined;
14512
14546
  pcb_group_id?: string | undefined;
14513
14547
  is_board_pinout?: boolean | undefined;
@@ -14515,11 +14549,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
14515
14549
  x: string | number;
14516
14550
  y: string | number;
14517
14551
  type: "pcb_port";
14518
- pcb_component_id: string;
14519
14552
  layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
14520
14553
  name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
14521
14554
  })[];
14522
14555
  source_port_id: string;
14556
+ pcb_component_id?: string | undefined;
14523
14557
  subcircuit_id?: string | undefined;
14524
14558
  pcb_group_id?: string | undefined;
14525
14559
  pcb_port_id?: string | undefined;
@@ -18779,6 +18813,21 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
18779
18813
  is_subcircuit?: boolean | undefined;
18780
18814
  schematic_group_id?: string | undefined;
18781
18815
  show_as_schematic_box?: boolean | undefined;
18816
+ }>, z.ZodObject<{
18817
+ type: z.ZodLiteral<"schematic_sheet">;
18818
+ schematic_sheet_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
18819
+ name: z.ZodOptional<z.ZodString>;
18820
+ subcircuit_id: z.ZodOptional<z.ZodString>;
18821
+ }, "strip", z.ZodTypeAny, {
18822
+ type: "schematic_sheet";
18823
+ schematic_sheet_id: string;
18824
+ name?: string | undefined;
18825
+ subcircuit_id?: string | undefined;
18826
+ }, {
18827
+ type: "schematic_sheet";
18828
+ name?: string | undefined;
18829
+ subcircuit_id?: string | undefined;
18830
+ schematic_sheet_id?: string | undefined;
18782
18831
  }>, z.ZodObject<{
18783
18832
  type: z.ZodLiteral<"schematic_table">;
18784
18833
  schematic_table_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -19251,25 +19300,28 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
19251
19300
  port_hints: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
19252
19301
  name: z.ZodString;
19253
19302
  source_port_id: z.ZodString;
19254
- source_component_id: z.ZodString;
19303
+ source_component_id: z.ZodOptional<z.ZodString>;
19304
+ source_group_id: z.ZodOptional<z.ZodString>;
19255
19305
  subcircuit_id: z.ZodOptional<z.ZodString>;
19256
19306
  subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
19257
19307
  }, "strip", z.ZodTypeAny, {
19258
19308
  type: "source_port";
19259
19309
  name: string;
19260
- source_component_id: string;
19261
19310
  source_port_id: string;
19311
+ source_component_id?: string | undefined;
19262
19312
  subcircuit_id?: string | undefined;
19263
19313
  port_hints?: string[] | undefined;
19314
+ source_group_id?: string | undefined;
19264
19315
  subcircuit_connectivity_map_key?: string | undefined;
19265
19316
  pin_number?: number | undefined;
19266
19317
  }, {
19267
19318
  type: "source_port";
19268
19319
  name: string;
19269
- source_component_id: string;
19270
19320
  source_port_id: string;
19321
+ source_component_id?: string | undefined;
19271
19322
  subcircuit_id?: string | undefined;
19272
19323
  port_hints?: string[] | undefined;
19324
+ source_group_id?: string | undefined;
19273
19325
  subcircuit_connectivity_map_key?: string | undefined;
19274
19326
  pin_number?: number | undefined;
19275
19327
  }>, z.ZodUnion<[z.ZodObject<{
@@ -21940,7 +21992,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
21940
21992
  pcb_group_id: z.ZodOptional<z.ZodString>;
21941
21993
  subcircuit_id: z.ZodOptional<z.ZodString>;
21942
21994
  source_port_id: z.ZodString;
21943
- pcb_component_id: z.ZodString;
21995
+ pcb_component_id: z.ZodOptional<z.ZodString>;
21944
21996
  x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
21945
21997
  y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
21946
21998
  layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
@@ -21957,10 +22009,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
21957
22009
  x: number;
21958
22010
  y: number;
21959
22011
  type: "pcb_port";
21960
- pcb_component_id: string;
21961
22012
  layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
21962
22013
  pcb_port_id: string;
21963
22014
  source_port_id: string;
22015
+ pcb_component_id?: string | undefined;
21964
22016
  subcircuit_id?: string | undefined;
21965
22017
  pcb_group_id?: string | undefined;
21966
22018
  is_board_pinout?: boolean | undefined;
@@ -21968,11 +22020,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
21968
22020
  x: string | number;
21969
22021
  y: string | number;
21970
22022
  type: "pcb_port";
21971
- pcb_component_id: string;
21972
22023
  layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
21973
22024
  name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
21974
22025
  })[];
21975
22026
  source_port_id: string;
22027
+ pcb_component_id?: string | undefined;
21976
22028
  subcircuit_id?: string | undefined;
21977
22029
  pcb_group_id?: string | undefined;
21978
22030
  pcb_port_id?: string | undefined;
@@ -26232,6 +26284,21 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
26232
26284
  is_subcircuit?: boolean | undefined;
26233
26285
  schematic_group_id?: string | undefined;
26234
26286
  show_as_schematic_box?: boolean | undefined;
26287
+ }>, z.ZodObject<{
26288
+ type: z.ZodLiteral<"schematic_sheet">;
26289
+ schematic_sheet_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
26290
+ name: z.ZodOptional<z.ZodString>;
26291
+ subcircuit_id: z.ZodOptional<z.ZodString>;
26292
+ }, "strip", z.ZodTypeAny, {
26293
+ type: "schematic_sheet";
26294
+ schematic_sheet_id: string;
26295
+ name?: string | undefined;
26296
+ subcircuit_id?: string | undefined;
26297
+ }, {
26298
+ type: "schematic_sheet";
26299
+ name?: string | undefined;
26300
+ subcircuit_id?: string | undefined;
26301
+ schematic_sheet_id?: string | undefined;
26235
26302
  }>, z.ZodObject<{
26236
26303
  type: z.ZodLiteral<"schematic_table">;
26237
26304
  schematic_table_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -26681,4 +26748,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
26681
26748
  */
26682
26749
  type CircuitJson = AnyCircuitElement[];
26683
26750
 
26684
- 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 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 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 PcbCopperText, type PcbCopperTextInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardPolygon, type PcbCourtyardPolygonInput, 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 UnknownErrorFindingPart, type UnknownErrorFindingPartInput, 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_copper_text, pcb_courtyard_outline, pcb_courtyard_polygon, 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, unknown_error_finding_part, visible_layer, voltage, wave_shape };
26751
+ 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 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 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 PcbCopperText, type PcbCopperTextInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardPolygon, type PcbCourtyardPolygonInput, 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 SchematicSheet, type SchematicSheetInput, 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 UnknownErrorFindingPart, type UnknownErrorFindingPartInput, 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_copper_text, pcb_courtyard_outline, pcb_courtyard_polygon, 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_sheet, 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, unknown_error_finding_part, visible_layer, voltage, wave_shape };