circuit-json 0.0.272 → 0.0.274
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 +18 -0
- package/dist/index.d.mts +68 -1
- package/dist/index.mjs +867 -854
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -46,6 +46,7 @@ https://github.com/user-attachments/assets/2f28b7ba-689e-4d80-85b2-5bdef84b41f8
|
|
|
46
46
|
- [Typescript Usage](#typescript-usage)
|
|
47
47
|
|
|
48
48
|
- [Source Components](#source-components)
|
|
49
|
+
- [SourceBoard](#sourceboard)
|
|
49
50
|
- [SourceComponentBase](#sourcecomponentbase)
|
|
50
51
|
- [SourceFailedToCreateComponentError](#sourcefailedtocreatecomponenterror)
|
|
51
52
|
- [SourceGroup](#sourcegroup)
|
|
@@ -223,6 +224,22 @@ There are 3 main element prefixes:
|
|
|
223
224
|
|
|
224
225
|
## Source Components
|
|
225
226
|
|
|
227
|
+
### SourceBoard
|
|
228
|
+
|
|
229
|
+
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/source/source_board.ts)
|
|
230
|
+
|
|
231
|
+
Defines a board in the source domain
|
|
232
|
+
|
|
233
|
+
```typescript
|
|
234
|
+
/** Defines a board in the source domain */
|
|
235
|
+
interface SourceBoard {
|
|
236
|
+
type: "source_board"
|
|
237
|
+
source_board_id: string
|
|
238
|
+
source_group_id: string
|
|
239
|
+
title?: string
|
|
240
|
+
}
|
|
241
|
+
```
|
|
242
|
+
|
|
226
243
|
### SourceComponentBase
|
|
227
244
|
|
|
228
245
|
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/source/base/source_component_base.ts)
|
|
@@ -283,6 +300,7 @@ interface SourceGroup {
|
|
|
283
300
|
is_subcircuit?: boolean
|
|
284
301
|
show_as_schematic_box?: boolean
|
|
285
302
|
name?: string
|
|
303
|
+
was_automatically_named?: boolean
|
|
286
304
|
}
|
|
287
305
|
```
|
|
288
306
|
|
package/dist/index.d.mts
CHANGED
|
@@ -9696,6 +9696,7 @@ declare const source_group: z.ZodObject<{
|
|
|
9696
9696
|
is_subcircuit: z.ZodOptional<z.ZodBoolean>;
|
|
9697
9697
|
show_as_schematic_box: z.ZodOptional<z.ZodBoolean>;
|
|
9698
9698
|
name: z.ZodOptional<z.ZodString>;
|
|
9699
|
+
was_automatically_named: z.ZodOptional<z.ZodBoolean>;
|
|
9699
9700
|
}, "strip", z.ZodTypeAny, {
|
|
9700
9701
|
type: "source_group";
|
|
9701
9702
|
source_group_id: string;
|
|
@@ -9705,6 +9706,7 @@ declare const source_group: z.ZodObject<{
|
|
|
9705
9706
|
show_as_schematic_box?: boolean | undefined;
|
|
9706
9707
|
parent_subcircuit_id?: string | undefined;
|
|
9707
9708
|
parent_source_group_id?: string | undefined;
|
|
9709
|
+
was_automatically_named?: boolean | undefined;
|
|
9708
9710
|
}, {
|
|
9709
9711
|
type: "source_group";
|
|
9710
9712
|
source_group_id: string;
|
|
@@ -9714,6 +9716,7 @@ declare const source_group: z.ZodObject<{
|
|
|
9714
9716
|
show_as_schematic_box?: boolean | undefined;
|
|
9715
9717
|
parent_subcircuit_id?: string | undefined;
|
|
9716
9718
|
parent_source_group_id?: string | undefined;
|
|
9719
|
+
was_automatically_named?: boolean | undefined;
|
|
9717
9720
|
}>;
|
|
9718
9721
|
type SourceGroupInput = z.input<typeof source_group>;
|
|
9719
9722
|
interface SourceGroup {
|
|
@@ -9725,6 +9728,7 @@ interface SourceGroup {
|
|
|
9725
9728
|
is_subcircuit?: boolean;
|
|
9726
9729
|
show_as_schematic_box?: boolean;
|
|
9727
9730
|
name?: string;
|
|
9731
|
+
was_automatically_named?: boolean;
|
|
9728
9732
|
}
|
|
9729
9733
|
|
|
9730
9734
|
declare const source_net: z.ZodObject<{
|
|
@@ -9783,6 +9787,33 @@ interface SourceNet {
|
|
|
9783
9787
|
subcircuit_connectivity_map_key?: string;
|
|
9784
9788
|
}
|
|
9785
9789
|
|
|
9790
|
+
declare const source_board: z.ZodObject<{
|
|
9791
|
+
type: z.ZodLiteral<"source_board">;
|
|
9792
|
+
source_board_id: z.ZodString;
|
|
9793
|
+
source_group_id: z.ZodString;
|
|
9794
|
+
title: z.ZodOptional<z.ZodString>;
|
|
9795
|
+
}, "strip", z.ZodTypeAny, {
|
|
9796
|
+
type: "source_board";
|
|
9797
|
+
source_group_id: string;
|
|
9798
|
+
source_board_id: string;
|
|
9799
|
+
title?: string | undefined;
|
|
9800
|
+
}, {
|
|
9801
|
+
type: "source_board";
|
|
9802
|
+
source_group_id: string;
|
|
9803
|
+
source_board_id: string;
|
|
9804
|
+
title?: string | undefined;
|
|
9805
|
+
}>;
|
|
9806
|
+
type SourceBoardInput = z.input<typeof source_board>;
|
|
9807
|
+
/**
|
|
9808
|
+
* Defines a board in the source domain
|
|
9809
|
+
*/
|
|
9810
|
+
interface SourceBoard {
|
|
9811
|
+
type: "source_board";
|
|
9812
|
+
source_board_id: string;
|
|
9813
|
+
source_group_id: string;
|
|
9814
|
+
title?: string;
|
|
9815
|
+
}
|
|
9816
|
+
|
|
9786
9817
|
declare const source_pcb_ground_plane: z.ZodObject<{
|
|
9787
9818
|
type: z.ZodLiteral<"source_pcb_ground_plane">;
|
|
9788
9819
|
source_pcb_ground_plane_id: z.ZodString;
|
|
@@ -11471,6 +11502,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11471
11502
|
is_subcircuit: z.ZodOptional<z.ZodBoolean>;
|
|
11472
11503
|
show_as_schematic_box: z.ZodOptional<z.ZodBoolean>;
|
|
11473
11504
|
name: z.ZodOptional<z.ZodString>;
|
|
11505
|
+
was_automatically_named: z.ZodOptional<z.ZodBoolean>;
|
|
11474
11506
|
}, "strip", z.ZodTypeAny, {
|
|
11475
11507
|
type: "source_group";
|
|
11476
11508
|
source_group_id: string;
|
|
@@ -11480,6 +11512,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11480
11512
|
show_as_schematic_box?: boolean | undefined;
|
|
11481
11513
|
parent_subcircuit_id?: string | undefined;
|
|
11482
11514
|
parent_source_group_id?: string | undefined;
|
|
11515
|
+
was_automatically_named?: boolean | undefined;
|
|
11483
11516
|
}, {
|
|
11484
11517
|
type: "source_group";
|
|
11485
11518
|
source_group_id: string;
|
|
@@ -11489,6 +11522,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11489
11522
|
show_as_schematic_box?: boolean | undefined;
|
|
11490
11523
|
parent_subcircuit_id?: string | undefined;
|
|
11491
11524
|
parent_source_group_id?: string | undefined;
|
|
11525
|
+
was_automatically_named?: boolean | undefined;
|
|
11492
11526
|
}>, z.ZodObject<{
|
|
11493
11527
|
type: z.ZodLiteral<"source_component">;
|
|
11494
11528
|
source_component_id: z.ZodString;
|
|
@@ -12238,6 +12272,21 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12238
12272
|
source_manually_placed_via_id: string;
|
|
12239
12273
|
subcircuit_id?: string | undefined;
|
|
12240
12274
|
source_trace_id?: string | undefined;
|
|
12275
|
+
}>, z.ZodObject<{
|
|
12276
|
+
type: z.ZodLiteral<"source_board">;
|
|
12277
|
+
source_board_id: z.ZodString;
|
|
12278
|
+
source_group_id: z.ZodString;
|
|
12279
|
+
title: z.ZodOptional<z.ZodString>;
|
|
12280
|
+
}, "strip", z.ZodTypeAny, {
|
|
12281
|
+
type: "source_board";
|
|
12282
|
+
source_group_id: string;
|
|
12283
|
+
source_board_id: string;
|
|
12284
|
+
title?: string | undefined;
|
|
12285
|
+
}, {
|
|
12286
|
+
type: "source_board";
|
|
12287
|
+
source_group_id: string;
|
|
12288
|
+
source_board_id: string;
|
|
12289
|
+
title?: string | undefined;
|
|
12241
12290
|
}>, z.ZodObject<{
|
|
12242
12291
|
type: z.ZodLiteral<"source_project_metadata">;
|
|
12243
12292
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -18009,6 +18058,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18009
18058
|
is_subcircuit: z.ZodOptional<z.ZodBoolean>;
|
|
18010
18059
|
show_as_schematic_box: z.ZodOptional<z.ZodBoolean>;
|
|
18011
18060
|
name: z.ZodOptional<z.ZodString>;
|
|
18061
|
+
was_automatically_named: z.ZodOptional<z.ZodBoolean>;
|
|
18012
18062
|
}, "strip", z.ZodTypeAny, {
|
|
18013
18063
|
type: "source_group";
|
|
18014
18064
|
source_group_id: string;
|
|
@@ -18018,6 +18068,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18018
18068
|
show_as_schematic_box?: boolean | undefined;
|
|
18019
18069
|
parent_subcircuit_id?: string | undefined;
|
|
18020
18070
|
parent_source_group_id?: string | undefined;
|
|
18071
|
+
was_automatically_named?: boolean | undefined;
|
|
18021
18072
|
}, {
|
|
18022
18073
|
type: "source_group";
|
|
18023
18074
|
source_group_id: string;
|
|
@@ -18027,6 +18078,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18027
18078
|
show_as_schematic_box?: boolean | undefined;
|
|
18028
18079
|
parent_subcircuit_id?: string | undefined;
|
|
18029
18080
|
parent_source_group_id?: string | undefined;
|
|
18081
|
+
was_automatically_named?: boolean | undefined;
|
|
18030
18082
|
}>, z.ZodObject<{
|
|
18031
18083
|
type: z.ZodLiteral<"source_component">;
|
|
18032
18084
|
source_component_id: z.ZodString;
|
|
@@ -18776,6 +18828,21 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18776
18828
|
source_manually_placed_via_id: string;
|
|
18777
18829
|
subcircuit_id?: string | undefined;
|
|
18778
18830
|
source_trace_id?: string | undefined;
|
|
18831
|
+
}>, z.ZodObject<{
|
|
18832
|
+
type: z.ZodLiteral<"source_board">;
|
|
18833
|
+
source_board_id: z.ZodString;
|
|
18834
|
+
source_group_id: z.ZodString;
|
|
18835
|
+
title: z.ZodOptional<z.ZodString>;
|
|
18836
|
+
}, "strip", z.ZodTypeAny, {
|
|
18837
|
+
type: "source_board";
|
|
18838
|
+
source_group_id: string;
|
|
18839
|
+
source_board_id: string;
|
|
18840
|
+
title?: string | undefined;
|
|
18841
|
+
}, {
|
|
18842
|
+
type: "source_board";
|
|
18843
|
+
source_group_id: string;
|
|
18844
|
+
source_board_id: string;
|
|
18845
|
+
title?: string | undefined;
|
|
18779
18846
|
}>, z.ZodObject<{
|
|
18780
18847
|
type: z.ZodLiteral<"source_project_metadata">;
|
|
18781
18848
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -23442,4 +23509,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
23442
23509
|
*/
|
|
23443
23510
|
type CircuitJson = AnyCircuitElement[];
|
|
23444
23511
|
|
|
23445
|
-
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 PCBFabricationNotePath, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePillWithRectPad, type PcbHoleRotatedPillWithRectPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbNet, type PcbNetInput, 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 SourceComponentBase, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePinout, type SourceSimplePinoutInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, battery_capacity, brep_shape, cad_component, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, ms, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_outside_board_error, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_path, pcb_fabrication_note_text, pcb_footprint_overlap_error, pcb_ground_plane, pcb_ground_plane_region, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_oval_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_net, 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_component_base, source_failed_to_create_component_error, source_group, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, source_pin_missing_trace_warning, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_pin_header, source_simple_pinout, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_trace, source_trace_not_connected_error, supplier_name, time, timestamp, visible_layer, voltage, wave_shape };
|
|
23512
|
+
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 PCBFabricationNotePath, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePillWithRectPad, type PcbHoleRotatedPillWithRectPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbNet, type PcbNetInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotConnectedError, type PcbPortNotConnectedErrorInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadPolygon, type PcbSmtPadRect, type PcbSmtPadRotatedPill, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbThermalSpoke, type PcbThermalSpokeInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceMissingError, type PcbTraceMissingErrorInput, type PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicArc, type SchematicArcInput, type SchematicBox, type SchematicBoxInput, type SchematicCircle, type SchematicCircleInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicRect, type SchematicRectInput, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationVoltageProbe, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePinout, type SourceSimplePinoutInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, battery_capacity, brep_shape, cad_component, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, ms, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_outside_board_error, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_path, pcb_fabrication_note_text, pcb_footprint_overlap_error, pcb_ground_plane, pcb_ground_plane_region, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_oval_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_net, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_connected_error, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_thermal_spoke, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_missing_error, pcb_trace_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_via, pcb_via_clearance_error, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, rotation, route_hint_point, schematic_arc, schematic_box, schematic_circle, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_rect, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_voltage_source, simulation_dc_voltage_source, simulation_experiment, simulation_switch, simulation_transient_voltage_graph, simulation_voltage_probe, simulation_voltage_source, size, source_board, source_component_base, source_failed_to_create_component_error, source_group, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, source_pin_missing_trace_warning, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_pin_header, source_simple_pinout, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_trace, source_trace_not_connected_error, supplier_name, time, timestamp, visible_layer, voltage, wave_shape };
|