circuit-json 0.0.319 → 0.0.321
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 +21 -0
- package/dist/index.d.mts +99 -2
- package/dist/index.mjs +1094 -1074
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -55,6 +55,7 @@ https://github.com/user-attachments/assets/2f28b7ba-689e-4d80-85b2-5bdef84b41f8
|
|
|
55
55
|
- [SourceNet](#sourcenet)
|
|
56
56
|
- [SourcePcbGroundPlane](#sourcepcbgroundplane)
|
|
57
57
|
- [SourcePinMissingTraceWarning](#sourcepinmissingtracewarning)
|
|
58
|
+
- [SourcePinMustBeConnectedError](#sourcepinmustbeconnectederror)
|
|
58
59
|
- [SourcePort](#sourceport)
|
|
59
60
|
- [SourceProjectMetadata](#sourceprojectmetadata)
|
|
60
61
|
- [SourcePropertyIgnoredWarning](#sourcepropertyignoredwarning)
|
|
@@ -415,6 +416,25 @@ interface SourcePinMissingTraceWarning {
|
|
|
415
416
|
}
|
|
416
417
|
```
|
|
417
418
|
|
|
419
|
+
### SourcePinMustBeConnectedError
|
|
420
|
+
|
|
421
|
+
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/source/source_pin_must_be_connected_error.ts)
|
|
422
|
+
|
|
423
|
+
Error emitted when a pin with mustBeConnected attribute is not connected to any trace
|
|
424
|
+
|
|
425
|
+
```typescript
|
|
426
|
+
/** Error emitted when a pin with mustBeConnected attribute is not connected to any trace */
|
|
427
|
+
interface SourcePinMustBeConnectedError {
|
|
428
|
+
type: "source_pin_must_be_connected_error"
|
|
429
|
+
source_pin_must_be_connected_error_id: string
|
|
430
|
+
error_type: "source_pin_must_be_connected_error"
|
|
431
|
+
message: string
|
|
432
|
+
source_component_id: string
|
|
433
|
+
source_port_id: string
|
|
434
|
+
subcircuit_id?: string
|
|
435
|
+
}
|
|
436
|
+
```
|
|
437
|
+
|
|
418
438
|
### SourcePort
|
|
419
439
|
|
|
420
440
|
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/source/source_port.ts)
|
|
@@ -433,6 +453,7 @@ interface SourcePort {
|
|
|
433
453
|
source_group_id?: string
|
|
434
454
|
subcircuit_id?: string
|
|
435
455
|
subcircuit_connectivity_map_key?: string
|
|
456
|
+
must_be_connected?: boolean
|
|
436
457
|
}
|
|
437
458
|
```
|
|
438
459
|
|
package/dist/index.d.mts
CHANGED
|
@@ -12240,6 +12240,7 @@ declare const source_port: z.ZodObject<{
|
|
|
12240
12240
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
12241
12241
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
12242
12242
|
subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
|
|
12243
|
+
must_be_connected: z.ZodOptional<z.ZodBoolean>;
|
|
12243
12244
|
}, "strip", z.ZodTypeAny, {
|
|
12244
12245
|
type: "source_port";
|
|
12245
12246
|
name: string;
|
|
@@ -12250,6 +12251,7 @@ declare const source_port: z.ZodObject<{
|
|
|
12250
12251
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
12251
12252
|
source_group_id?: string | undefined;
|
|
12252
12253
|
pin_number?: number | undefined;
|
|
12254
|
+
must_be_connected?: boolean | undefined;
|
|
12253
12255
|
}, {
|
|
12254
12256
|
type: "source_port";
|
|
12255
12257
|
name: string;
|
|
@@ -12260,6 +12262,7 @@ declare const source_port: z.ZodObject<{
|
|
|
12260
12262
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
12261
12263
|
source_group_id?: string | undefined;
|
|
12262
12264
|
pin_number?: number | undefined;
|
|
12265
|
+
must_be_connected?: boolean | undefined;
|
|
12263
12266
|
}>;
|
|
12264
12267
|
type SourcePortInput = z.input<typeof source_port>;
|
|
12265
12268
|
/**
|
|
@@ -12275,6 +12278,7 @@ interface SourcePort {
|
|
|
12275
12278
|
source_group_id?: string;
|
|
12276
12279
|
subcircuit_id?: string;
|
|
12277
12280
|
subcircuit_connectivity_map_key?: string;
|
|
12281
|
+
must_be_connected?: boolean;
|
|
12278
12282
|
}
|
|
12279
12283
|
|
|
12280
12284
|
interface SourceTrace {
|
|
@@ -12513,6 +12517,45 @@ interface SourceManuallyPlacedVia {
|
|
|
12513
12517
|
source_trace_id?: string;
|
|
12514
12518
|
}
|
|
12515
12519
|
|
|
12520
|
+
declare const source_pin_must_be_connected_error: z.ZodObject<{
|
|
12521
|
+
type: z.ZodLiteral<"source_pin_must_be_connected_error">;
|
|
12522
|
+
source_pin_must_be_connected_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
12523
|
+
error_type: z.ZodDefault<z.ZodLiteral<"source_pin_must_be_connected_error">>;
|
|
12524
|
+
message: z.ZodString;
|
|
12525
|
+
source_component_id: z.ZodString;
|
|
12526
|
+
source_port_id: z.ZodString;
|
|
12527
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
12528
|
+
}, "strip", z.ZodTypeAny, {
|
|
12529
|
+
message: string;
|
|
12530
|
+
type: "source_pin_must_be_connected_error";
|
|
12531
|
+
source_component_id: string;
|
|
12532
|
+
source_port_id: string;
|
|
12533
|
+
error_type: "source_pin_must_be_connected_error";
|
|
12534
|
+
source_pin_must_be_connected_error_id: string;
|
|
12535
|
+
subcircuit_id?: string | undefined;
|
|
12536
|
+
}, {
|
|
12537
|
+
message: string;
|
|
12538
|
+
type: "source_pin_must_be_connected_error";
|
|
12539
|
+
source_component_id: string;
|
|
12540
|
+
source_port_id: string;
|
|
12541
|
+
subcircuit_id?: string | undefined;
|
|
12542
|
+
error_type?: "source_pin_must_be_connected_error" | undefined;
|
|
12543
|
+
source_pin_must_be_connected_error_id?: string | undefined;
|
|
12544
|
+
}>;
|
|
12545
|
+
type SourcePinMustBeConnectedErrorInput = z.input<typeof source_pin_must_be_connected_error>;
|
|
12546
|
+
/**
|
|
12547
|
+
* Error emitted when a pin with mustBeConnected attribute is not connected to any trace
|
|
12548
|
+
*/
|
|
12549
|
+
interface SourcePinMustBeConnectedError {
|
|
12550
|
+
type: "source_pin_must_be_connected_error";
|
|
12551
|
+
source_pin_must_be_connected_error_id: string;
|
|
12552
|
+
error_type: "source_pin_must_be_connected_error";
|
|
12553
|
+
message: string;
|
|
12554
|
+
source_component_id: string;
|
|
12555
|
+
source_port_id: string;
|
|
12556
|
+
subcircuit_id?: string;
|
|
12557
|
+
}
|
|
12558
|
+
|
|
12516
12559
|
declare const unknown_error_finding_part: z.ZodObject<{
|
|
12517
12560
|
type: z.ZodLiteral<"unknown_error_finding_part">;
|
|
12518
12561
|
unknown_error_finding_part_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -12550,7 +12593,7 @@ interface UnknownErrorFindingPart {
|
|
|
12550
12593
|
subcircuit_id?: string;
|
|
12551
12594
|
}
|
|
12552
12595
|
|
|
12553
|
-
type CircuitJsonError = PcbTraceError | PcbPlacementError | PcbPortNotMatchedError | PcbAutoroutingError | PcbFootprintOverlapError | PcbMissingFootprintError | PcbComponentOutsideBoardError | SchematicError | UnknownErrorFindingPart | SimulationUnknownExperimentError;
|
|
12596
|
+
type CircuitJsonError = PcbTraceError | PcbPlacementError | PcbPortNotMatchedError | PcbAutoroutingError | PcbFootprintOverlapError | PcbMissingFootprintError | PcbComponentOutsideBoardError | SchematicError | UnknownErrorFindingPart | SimulationUnknownExperimentError | SourcePinMustBeConnectedError;
|
|
12554
12597
|
|
|
12555
12598
|
declare const cad_component: z.ZodObject<{
|
|
12556
12599
|
type: z.ZodLiteral<"cad_component">;
|
|
@@ -12746,6 +12789,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12746
12789
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
12747
12790
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
12748
12791
|
subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
|
|
12792
|
+
must_be_connected: z.ZodOptional<z.ZodBoolean>;
|
|
12749
12793
|
}, "strip", z.ZodTypeAny, {
|
|
12750
12794
|
type: "source_port";
|
|
12751
12795
|
name: string;
|
|
@@ -12756,6 +12800,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12756
12800
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
12757
12801
|
source_group_id?: string | undefined;
|
|
12758
12802
|
pin_number?: number | undefined;
|
|
12803
|
+
must_be_connected?: boolean | undefined;
|
|
12759
12804
|
}, {
|
|
12760
12805
|
type: "source_port";
|
|
12761
12806
|
name: string;
|
|
@@ -12766,6 +12811,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12766
12811
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
12767
12812
|
source_group_id?: string | undefined;
|
|
12768
12813
|
pin_number?: number | undefined;
|
|
12814
|
+
must_be_connected?: boolean | undefined;
|
|
12769
12815
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
12770
12816
|
type: z.ZodLiteral<"source_component">;
|
|
12771
12817
|
source_component_id: z.ZodString;
|
|
@@ -14721,6 +14767,30 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14721
14767
|
subcircuit_id?: string | undefined;
|
|
14722
14768
|
warning_type?: "source_pin_missing_trace_warning" | undefined;
|
|
14723
14769
|
source_pin_missing_trace_warning_id?: string | undefined;
|
|
14770
|
+
}>, z.ZodObject<{
|
|
14771
|
+
type: z.ZodLiteral<"source_pin_must_be_connected_error">;
|
|
14772
|
+
source_pin_must_be_connected_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
14773
|
+
error_type: z.ZodDefault<z.ZodLiteral<"source_pin_must_be_connected_error">>;
|
|
14774
|
+
message: z.ZodString;
|
|
14775
|
+
source_component_id: z.ZodString;
|
|
14776
|
+
source_port_id: z.ZodString;
|
|
14777
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
14778
|
+
}, "strip", z.ZodTypeAny, {
|
|
14779
|
+
message: string;
|
|
14780
|
+
type: "source_pin_must_be_connected_error";
|
|
14781
|
+
source_component_id: string;
|
|
14782
|
+
source_port_id: string;
|
|
14783
|
+
error_type: "source_pin_must_be_connected_error";
|
|
14784
|
+
source_pin_must_be_connected_error_id: string;
|
|
14785
|
+
subcircuit_id?: string | undefined;
|
|
14786
|
+
}, {
|
|
14787
|
+
message: string;
|
|
14788
|
+
type: "source_pin_must_be_connected_error";
|
|
14789
|
+
source_component_id: string;
|
|
14790
|
+
source_port_id: string;
|
|
14791
|
+
subcircuit_id?: string | undefined;
|
|
14792
|
+
error_type?: "source_pin_must_be_connected_error" | undefined;
|
|
14793
|
+
source_pin_must_be_connected_error_id?: string | undefined;
|
|
14724
14794
|
}>, z.ZodObject<{
|
|
14725
14795
|
type: z.ZodLiteral<"unknown_error_finding_part">;
|
|
14726
14796
|
unknown_error_finding_part_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -20656,6 +20726,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
20656
20726
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
20657
20727
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
20658
20728
|
subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
|
|
20729
|
+
must_be_connected: z.ZodOptional<z.ZodBoolean>;
|
|
20659
20730
|
}, "strip", z.ZodTypeAny, {
|
|
20660
20731
|
type: "source_port";
|
|
20661
20732
|
name: string;
|
|
@@ -20666,6 +20737,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
20666
20737
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
20667
20738
|
source_group_id?: string | undefined;
|
|
20668
20739
|
pin_number?: number | undefined;
|
|
20740
|
+
must_be_connected?: boolean | undefined;
|
|
20669
20741
|
}, {
|
|
20670
20742
|
type: "source_port";
|
|
20671
20743
|
name: string;
|
|
@@ -20676,6 +20748,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
20676
20748
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
20677
20749
|
source_group_id?: string | undefined;
|
|
20678
20750
|
pin_number?: number | undefined;
|
|
20751
|
+
must_be_connected?: boolean | undefined;
|
|
20679
20752
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
20680
20753
|
type: z.ZodLiteral<"source_component">;
|
|
20681
20754
|
source_component_id: z.ZodString;
|
|
@@ -22631,6 +22704,30 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22631
22704
|
subcircuit_id?: string | undefined;
|
|
22632
22705
|
warning_type?: "source_pin_missing_trace_warning" | undefined;
|
|
22633
22706
|
source_pin_missing_trace_warning_id?: string | undefined;
|
|
22707
|
+
}>, z.ZodObject<{
|
|
22708
|
+
type: z.ZodLiteral<"source_pin_must_be_connected_error">;
|
|
22709
|
+
source_pin_must_be_connected_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
22710
|
+
error_type: z.ZodDefault<z.ZodLiteral<"source_pin_must_be_connected_error">>;
|
|
22711
|
+
message: z.ZodString;
|
|
22712
|
+
source_component_id: z.ZodString;
|
|
22713
|
+
source_port_id: z.ZodString;
|
|
22714
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
22715
|
+
}, "strip", z.ZodTypeAny, {
|
|
22716
|
+
message: string;
|
|
22717
|
+
type: "source_pin_must_be_connected_error";
|
|
22718
|
+
source_component_id: string;
|
|
22719
|
+
source_port_id: string;
|
|
22720
|
+
error_type: "source_pin_must_be_connected_error";
|
|
22721
|
+
source_pin_must_be_connected_error_id: string;
|
|
22722
|
+
subcircuit_id?: string | undefined;
|
|
22723
|
+
}, {
|
|
22724
|
+
message: string;
|
|
22725
|
+
type: "source_pin_must_be_connected_error";
|
|
22726
|
+
source_component_id: string;
|
|
22727
|
+
source_port_id: string;
|
|
22728
|
+
subcircuit_id?: string | undefined;
|
|
22729
|
+
error_type?: "source_pin_must_be_connected_error" | undefined;
|
|
22730
|
+
source_pin_must_be_connected_error_id?: string | undefined;
|
|
22634
22731
|
}>, z.ZodObject<{
|
|
22635
22732
|
type: z.ZodLiteral<"unknown_error_finding_part">;
|
|
22636
22733
|
unknown_error_finding_part_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -28539,4 +28636,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
28539
28636
|
*/
|
|
28540
28637
|
type CircuitJson = AnyCircuitElement[];
|
|
28541
28638
|
|
|
28542
|
-
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 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 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 SimulationUnknownExperimentError, type SimulationUnknownExperimentErrorInput, 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 SourceSimpleVoltageProbe, type SourceSimpleVoltageProbeInput, 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_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_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_unknown_experiment_error, 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_simple_voltage_probe, source_trace, source_trace_not_connected_error, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|
|
28639
|
+
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 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 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 SimulationUnknownExperimentError, type SimulationUnknownExperimentErrorInput, 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 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 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 SourceSimpleVoltageProbe, type SourceSimpleVoltageProbeInput, 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_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_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_unknown_experiment_error, 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_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_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_simple_voltage_probe, source_trace, source_trace_not_connected_error, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|