circuit-json 0.0.163 → 0.0.165
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 +17 -0
- package/dist/index.d.mts +114 -12
- package/dist/index.mjs +573 -531
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -44,6 +44,7 @@ and is the primary way that Circuit JSON is defined and maintained.
|
|
|
44
44
|
- [Source Components](#source-components)
|
|
45
45
|
- [SourceComponentBase](#sourcecomponentbase)
|
|
46
46
|
- [SourceLed](#sourceled)
|
|
47
|
+
- [SourceMissingPropertyError](#sourcemissingpropertyerror)
|
|
47
48
|
- [SourcePort](#sourceport)
|
|
48
49
|
- [SourceProjectMetadata](#sourceprojectmetadata)
|
|
49
50
|
- [SourceSimpleBattery](#sourcesimplebattery)
|
|
@@ -199,6 +200,22 @@ interface SourceLed extends SourceComponentBase {
|
|
|
199
200
|
}
|
|
200
201
|
```
|
|
201
202
|
|
|
203
|
+
### SourceMissingPropertyError
|
|
204
|
+
|
|
205
|
+
The source code is missing a property
|
|
206
|
+
|
|
207
|
+
```typescript
|
|
208
|
+
/** The source code is missing a property */
|
|
209
|
+
interface SourceMissingPropertyError {
|
|
210
|
+
type: "source_missing_property_error"
|
|
211
|
+
source_missing_property_error_id: string
|
|
212
|
+
source_component_id: string
|
|
213
|
+
property_name: string
|
|
214
|
+
error_type: "source_missing_property_error"
|
|
215
|
+
message: string
|
|
216
|
+
}
|
|
217
|
+
```
|
|
218
|
+
|
|
202
219
|
### SourcePort
|
|
203
220
|
|
|
204
221
|
Defines a source port that can be connected to other components
|
package/dist/index.d.mts
CHANGED
|
@@ -3831,6 +3831,10 @@ declare const schematic_trace: z.ZodObject<{
|
|
|
3831
3831
|
}>;
|
|
3832
3832
|
type SchematicTraceInput = z.input<typeof schematic_trace>;
|
|
3833
3833
|
|
|
3834
|
+
type NinePointAnchor = "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
3835
|
+
|
|
3836
|
+
type FivePointAnchor = "center" | "left" | "right" | "top" | "bottom";
|
|
3837
|
+
|
|
3834
3838
|
interface SchematicText {
|
|
3835
3839
|
type: "schematic_text";
|
|
3836
3840
|
schematic_component_id: string;
|
|
@@ -3841,7 +3845,7 @@ interface SchematicText {
|
|
|
3841
3845
|
y: number;
|
|
3842
3846
|
};
|
|
3843
3847
|
rotation: number;
|
|
3844
|
-
anchor:
|
|
3848
|
+
anchor: NinePointAnchor | FivePointAnchor;
|
|
3845
3849
|
color: string;
|
|
3846
3850
|
}
|
|
3847
3851
|
declare const schematic_text: z.ZodObject<{
|
|
@@ -3860,10 +3864,10 @@ declare const schematic_text: z.ZodObject<{
|
|
|
3860
3864
|
y: string | number;
|
|
3861
3865
|
}>;
|
|
3862
3866
|
rotation: z.ZodDefault<z.ZodNumber>;
|
|
3863
|
-
anchor: z.ZodDefault<z.ZodEnum<["center", "left", "right", "top", "bottom"]>>;
|
|
3867
|
+
anchor: z.ZodDefault<z.ZodUnion<[z.ZodEnum<["center", "left", "right", "top", "bottom"]>, z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>]>>;
|
|
3864
3868
|
color: z.ZodDefault<z.ZodString>;
|
|
3865
3869
|
}, "strip", z.ZodTypeAny, {
|
|
3866
|
-
anchor: "top" | "bottom" | "center" | "left" | "right";
|
|
3870
|
+
anchor: "top" | "bottom" | "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right" | "top_center" | "center_left" | "center_right" | "bottom_center" | "left" | "right";
|
|
3867
3871
|
type: "schematic_text";
|
|
3868
3872
|
rotation: number;
|
|
3869
3873
|
text: string;
|
|
@@ -3883,7 +3887,7 @@ declare const schematic_text: z.ZodObject<{
|
|
|
3883
3887
|
x: string | number;
|
|
3884
3888
|
y: string | number;
|
|
3885
3889
|
};
|
|
3886
|
-
anchor?: "top" | "bottom" | "center" | "left" | "right" | undefined;
|
|
3890
|
+
anchor?: "top" | "bottom" | "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right" | "top_center" | "center_left" | "center_right" | "bottom_center" | "left" | "right" | undefined;
|
|
3887
3891
|
rotation?: number | undefined;
|
|
3888
3892
|
color?: string | undefined;
|
|
3889
3893
|
}>;
|
|
@@ -5235,6 +5239,41 @@ declare const source_project_metadata: z.ZodObject<{
|
|
|
5235
5239
|
}>;
|
|
5236
5240
|
type InferredProjectMetadata = z.infer<typeof source_project_metadata>;
|
|
5237
5241
|
|
|
5242
|
+
declare const source_missing_property_error: z.ZodObject<{
|
|
5243
|
+
type: z.ZodLiteral<"source_missing_property_error">;
|
|
5244
|
+
source_missing_property_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
5245
|
+
source_component_id: z.ZodString;
|
|
5246
|
+
property_name: z.ZodString;
|
|
5247
|
+
error_type: z.ZodLiteral<"source_missing_property_error">;
|
|
5248
|
+
message: z.ZodString;
|
|
5249
|
+
}, "strip", z.ZodTypeAny, {
|
|
5250
|
+
message: string;
|
|
5251
|
+
type: "source_missing_property_error";
|
|
5252
|
+
source_component_id: string;
|
|
5253
|
+
error_type: "source_missing_property_error";
|
|
5254
|
+
source_missing_property_error_id: string;
|
|
5255
|
+
property_name: string;
|
|
5256
|
+
}, {
|
|
5257
|
+
message: string;
|
|
5258
|
+
type: "source_missing_property_error";
|
|
5259
|
+
source_component_id: string;
|
|
5260
|
+
error_type: "source_missing_property_error";
|
|
5261
|
+
property_name: string;
|
|
5262
|
+
source_missing_property_error_id?: string | undefined;
|
|
5263
|
+
}>;
|
|
5264
|
+
type SourceMissingPropertyErrorInput = z.input<typeof source_missing_property_error>;
|
|
5265
|
+
/**
|
|
5266
|
+
* The source code is missing a property
|
|
5267
|
+
*/
|
|
5268
|
+
interface SourceMissingPropertyError {
|
|
5269
|
+
type: "source_missing_property_error";
|
|
5270
|
+
source_missing_property_error_id: string;
|
|
5271
|
+
source_component_id: string;
|
|
5272
|
+
property_name: string;
|
|
5273
|
+
error_type: "source_missing_property_error";
|
|
5274
|
+
message: string;
|
|
5275
|
+
}
|
|
5276
|
+
|
|
5238
5277
|
declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
5239
5278
|
type: z.ZodLiteral<"source_component">;
|
|
5240
5279
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5834,12 +5873,33 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5834
5873
|
name?: string | undefined;
|
|
5835
5874
|
software_used_string?: string | undefined;
|
|
5836
5875
|
created_at?: string | undefined;
|
|
5876
|
+
}>, z.ZodObject<{
|
|
5877
|
+
type: z.ZodLiteral<"source_missing_property_error">;
|
|
5878
|
+
source_missing_property_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
5879
|
+
source_component_id: z.ZodString;
|
|
5880
|
+
property_name: z.ZodString;
|
|
5881
|
+
error_type: z.ZodLiteral<"source_missing_property_error">;
|
|
5882
|
+
message: z.ZodString;
|
|
5883
|
+
}, "strip", z.ZodTypeAny, {
|
|
5884
|
+
message: string;
|
|
5885
|
+
type: "source_missing_property_error";
|
|
5886
|
+
source_component_id: string;
|
|
5887
|
+
error_type: "source_missing_property_error";
|
|
5888
|
+
source_missing_property_error_id: string;
|
|
5889
|
+
property_name: string;
|
|
5890
|
+
}, {
|
|
5891
|
+
message: string;
|
|
5892
|
+
type: "source_missing_property_error";
|
|
5893
|
+
source_component_id: string;
|
|
5894
|
+
error_type: "source_missing_property_error";
|
|
5895
|
+
property_name: string;
|
|
5896
|
+
source_missing_property_error_id?: string | undefined;
|
|
5837
5897
|
}>]>;
|
|
5838
5898
|
/**
|
|
5839
5899
|
* Deprecated: use `AnySourceElement` instead
|
|
5840
5900
|
*/
|
|
5841
5901
|
type AnySourceComponent = z.infer<typeof any_source_component>;
|
|
5842
|
-
type AnySourceElement = SourceSimpleResistor | SourceSimpleCapacitor | SourceSimpleDiode | SourceSimpleGround | SourceSimpleChip | SourceLed | SourceSimplePowerSource | SourceSimpleBattery | SourceSimpleInductor | SourceSimplePushButton | SourceSimplePotentiometer | SourceSimpleCrystal | SourceSimplePinHeader | SourceSimpleResonator | SourceSimpleSwitch | SourceSimpleTransistor | SourceSimpleMosfet | SourceProjectMetadata;
|
|
5902
|
+
type AnySourceElement = SourceSimpleResistor | SourceSimpleCapacitor | SourceSimpleDiode | SourceSimpleGround | SourceSimpleChip | SourceLed | SourceSimplePowerSource | SourceSimpleBattery | SourceSimpleInductor | SourceSimplePushButton | SourceSimplePotentiometer | SourceSimpleCrystal | SourceSimplePinHeader | SourceSimpleResonator | SourceSimpleSwitch | SourceSimpleTransistor | SourceSimpleMosfet | SourceProjectMetadata | SourceMissingPropertyError;
|
|
5843
5903
|
|
|
5844
5904
|
declare const source_port: z.ZodObject<{
|
|
5845
5905
|
type: z.ZodLiteral<"source_port">;
|
|
@@ -6754,6 +6814,27 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6754
6814
|
name?: string | undefined;
|
|
6755
6815
|
software_used_string?: string | undefined;
|
|
6756
6816
|
created_at?: string | undefined;
|
|
6817
|
+
}>, z.ZodObject<{
|
|
6818
|
+
type: z.ZodLiteral<"source_missing_property_error">;
|
|
6819
|
+
source_missing_property_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
6820
|
+
source_component_id: z.ZodString;
|
|
6821
|
+
property_name: z.ZodString;
|
|
6822
|
+
error_type: z.ZodLiteral<"source_missing_property_error">;
|
|
6823
|
+
message: z.ZodString;
|
|
6824
|
+
}, "strip", z.ZodTypeAny, {
|
|
6825
|
+
message: string;
|
|
6826
|
+
type: "source_missing_property_error";
|
|
6827
|
+
source_component_id: string;
|
|
6828
|
+
error_type: "source_missing_property_error";
|
|
6829
|
+
source_missing_property_error_id: string;
|
|
6830
|
+
property_name: string;
|
|
6831
|
+
}, {
|
|
6832
|
+
message: string;
|
|
6833
|
+
type: "source_missing_property_error";
|
|
6834
|
+
source_component_id: string;
|
|
6835
|
+
error_type: "source_missing_property_error";
|
|
6836
|
+
property_name: string;
|
|
6837
|
+
source_missing_property_error_id?: string | undefined;
|
|
6757
6838
|
}>]>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
6758
6839
|
type: z.ZodLiteral<"source_component">;
|
|
6759
6840
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -9221,10 +9302,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
9221
9302
|
y: string | number;
|
|
9222
9303
|
}>;
|
|
9223
9304
|
rotation: z.ZodDefault<z.ZodNumber>;
|
|
9224
|
-
anchor: z.ZodDefault<z.ZodEnum<["center", "left", "right", "top", "bottom"]>>;
|
|
9305
|
+
anchor: z.ZodDefault<z.ZodUnion<[z.ZodEnum<["center", "left", "right", "top", "bottom"]>, z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>]>>;
|
|
9225
9306
|
color: z.ZodDefault<z.ZodString>;
|
|
9226
9307
|
}, "strip", z.ZodTypeAny, {
|
|
9227
|
-
anchor: "top" | "bottom" | "center" | "left" | "right";
|
|
9308
|
+
anchor: "top" | "bottom" | "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right" | "top_center" | "center_left" | "center_right" | "bottom_center" | "left" | "right";
|
|
9228
9309
|
type: "schematic_text";
|
|
9229
9310
|
rotation: number;
|
|
9230
9311
|
text: string;
|
|
@@ -9244,7 +9325,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
9244
9325
|
x: string | number;
|
|
9245
9326
|
y: string | number;
|
|
9246
9327
|
};
|
|
9247
|
-
anchor?: "top" | "bottom" | "center" | "left" | "right" | undefined;
|
|
9328
|
+
anchor?: "top" | "bottom" | "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right" | "top_center" | "center_left" | "center_right" | "bottom_center" | "left" | "right" | undefined;
|
|
9248
9329
|
rotation?: number | undefined;
|
|
9249
9330
|
color?: string | undefined;
|
|
9250
9331
|
}>, z.ZodObject<{
|
|
@@ -10709,6 +10790,27 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10709
10790
|
name?: string | undefined;
|
|
10710
10791
|
software_used_string?: string | undefined;
|
|
10711
10792
|
created_at?: string | undefined;
|
|
10793
|
+
}>, z.ZodObject<{
|
|
10794
|
+
type: z.ZodLiteral<"source_missing_property_error">;
|
|
10795
|
+
source_missing_property_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
10796
|
+
source_component_id: z.ZodString;
|
|
10797
|
+
property_name: z.ZodString;
|
|
10798
|
+
error_type: z.ZodLiteral<"source_missing_property_error">;
|
|
10799
|
+
message: z.ZodString;
|
|
10800
|
+
}, "strip", z.ZodTypeAny, {
|
|
10801
|
+
message: string;
|
|
10802
|
+
type: "source_missing_property_error";
|
|
10803
|
+
source_component_id: string;
|
|
10804
|
+
error_type: "source_missing_property_error";
|
|
10805
|
+
source_missing_property_error_id: string;
|
|
10806
|
+
property_name: string;
|
|
10807
|
+
}, {
|
|
10808
|
+
message: string;
|
|
10809
|
+
type: "source_missing_property_error";
|
|
10810
|
+
source_component_id: string;
|
|
10811
|
+
error_type: "source_missing_property_error";
|
|
10812
|
+
property_name: string;
|
|
10813
|
+
source_missing_property_error_id?: string | undefined;
|
|
10712
10814
|
}>]>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
10713
10815
|
type: z.ZodLiteral<"source_component">;
|
|
10714
10816
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -13176,10 +13278,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
13176
13278
|
y: string | number;
|
|
13177
13279
|
}>;
|
|
13178
13280
|
rotation: z.ZodDefault<z.ZodNumber>;
|
|
13179
|
-
anchor: z.ZodDefault<z.ZodEnum<["center", "left", "right", "top", "bottom"]>>;
|
|
13281
|
+
anchor: z.ZodDefault<z.ZodUnion<[z.ZodEnum<["center", "left", "right", "top", "bottom"]>, z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>]>>;
|
|
13180
13282
|
color: z.ZodDefault<z.ZodString>;
|
|
13181
13283
|
}, "strip", z.ZodTypeAny, {
|
|
13182
|
-
anchor: "top" | "bottom" | "center" | "left" | "right";
|
|
13284
|
+
anchor: "top" | "bottom" | "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right" | "top_center" | "center_left" | "center_right" | "bottom_center" | "left" | "right";
|
|
13183
13285
|
type: "schematic_text";
|
|
13184
13286
|
rotation: number;
|
|
13185
13287
|
text: string;
|
|
@@ -13199,7 +13301,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
13199
13301
|
x: string | number;
|
|
13200
13302
|
y: string | number;
|
|
13201
13303
|
};
|
|
13202
|
-
anchor?: "top" | "bottom" | "center" | "left" | "right" | undefined;
|
|
13304
|
+
anchor?: "top" | "bottom" | "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right" | "top_center" | "center_left" | "center_right" | "bottom_center" | "left" | "right" | undefined;
|
|
13203
13305
|
rotation?: number | undefined;
|
|
13204
13306
|
color?: string | undefined;
|
|
13205
13307
|
}>, z.ZodObject<{
|
|
@@ -14024,4 +14126,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
14024
14126
|
*/
|
|
14025
14127
|
type CircuitJson = AnyCircuitElement[];
|
|
14026
14128
|
|
|
14027
|
-
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type CadComponent, type CadComponentInput, type CircuitJson, type CircuitJsonError, type Distance, type InferredProjectMetadata, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type PCBBoard, type PCBComponent, type PCBFabricationNotePath, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutInput, 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 PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePillWithRectPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, 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 PcbSmtPadRect, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaInput, type Point, type Point3, type Position, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicBox, type SchematicBoxInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, 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 SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type Size, type SourceComponentBase, type SourceGroup, type SourceGroupInput, type SourceLed, type SourceLedInput, type SourceNet, type SourceNetInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleBugInput, 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 SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, 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 SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceTrace, type SupplierName, type VisibleLayer, type VisibleLayerRef, all_layers, any_circuit_element, any_soup_element, any_source_component, battery_capacity, cad_component, capacitance, current, distance, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, pcb_autorouting_error, pcb_board, pcb_component, pcb_fabrication_note_path, pcb_fabrication_note_text, 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_placement_error, pcb_plated_hole, pcb_port, 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_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_via, point, point3, port_arrangement, position, position3, resistance, rotation, route_hint_point, schematic_box, 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_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_text, schematic_trace, schematic_voltage_probe, size, source_component_base, source_group, source_led, source_net, source_port, source_project_metadata, source_simple_battery, source_simple_bug, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_mosfet, source_simple_pin_header, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_transistor, source_trace, supplier_name, time, visible_layer, voltage };
|
|
14129
|
+
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type CadComponent, type CadComponentInput, type CircuitJson, type CircuitJsonError, type Distance, type InferredProjectMetadata, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type PCBBoard, type PCBComponent, type PCBFabricationNotePath, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutInput, 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 PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePillWithRectPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, 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 PcbSmtPadRect, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaInput, type Point, type Point3, type Position, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicBox, type SchematicBoxInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, 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 SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type Size, type SourceComponentBase, type SourceGroup, type SourceGroupInput, type SourceLed, type SourceLedInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleBugInput, 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 SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, 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 SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceTrace, type SupplierName, type VisibleLayer, type VisibleLayerRef, all_layers, any_circuit_element, any_soup_element, any_source_component, battery_capacity, cad_component, capacitance, current, distance, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, pcb_autorouting_error, pcb_board, pcb_component, pcb_fabrication_note_path, pcb_fabrication_note_text, 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_placement_error, pcb_plated_hole, pcb_port, 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_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_via, point, point3, port_arrangement, position, position3, resistance, rotation, route_hint_point, schematic_box, 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_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_text, schematic_trace, schematic_voltage_probe, size, source_component_base, source_group, source_led, source_missing_property_error, source_net, source_port, source_project_metadata, source_simple_battery, source_simple_bug, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_mosfet, source_simple_pin_header, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_transistor, source_trace, supplier_name, time, visible_layer, voltage };
|