circuit-json 0.0.192 → 0.0.194
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 +16 -0
- package/dist/index.d.mts +84 -1
- package/dist/index.mjs +430 -413
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -101,6 +101,7 @@ https://github.com/user-attachments/assets/2f28b7ba-689e-4d80-85b2-5bdef84b41f8
|
|
|
101
101
|
- [SchematicComponent](#schematiccomponent)
|
|
102
102
|
- [SchematicError](#schematicerror)
|
|
103
103
|
- [SchematicGroup](#schematicgroup)
|
|
104
|
+
- [SchematicLayoutError](#schematiclayouterror)
|
|
104
105
|
- [SchematicLine](#schematicline)
|
|
105
106
|
- [SchematicManualEditConflictWarning](#schematicmanualeditconflictwarning)
|
|
106
107
|
- [SchematicNetLabel](#schematicnetlabel)
|
|
@@ -270,6 +271,7 @@ interface SourcePort {
|
|
|
270
271
|
source_port_id: string
|
|
271
272
|
source_component_id: string
|
|
272
273
|
subcircuit_id?: string
|
|
274
|
+
subcircuit_connectivity_map_key?: string
|
|
273
275
|
}
|
|
274
276
|
```
|
|
275
277
|
|
|
@@ -1201,6 +1203,20 @@ interface SchematicGroup {
|
|
|
1201
1203
|
}
|
|
1202
1204
|
```
|
|
1203
1205
|
|
|
1206
|
+
### SchematicLayoutError
|
|
1207
|
+
|
|
1208
|
+
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/schematic/schematic_layout_error.ts)
|
|
1209
|
+
|
|
1210
|
+
```typescript
|
|
1211
|
+
interface SchematicLayoutError {
|
|
1212
|
+
type: "schematic_layout_error"
|
|
1213
|
+
schematic_layout_error_id: string
|
|
1214
|
+
message: string
|
|
1215
|
+
source_group_id: string
|
|
1216
|
+
schematic_group_id: string
|
|
1217
|
+
}
|
|
1218
|
+
```
|
|
1219
|
+
|
|
1204
1220
|
### SchematicLine
|
|
1205
1221
|
|
|
1206
1222
|
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/schematic/schematic_line.ts)
|
package/dist/index.d.mts
CHANGED
|
@@ -4453,6 +4453,34 @@ declare const schematic_error: z.ZodObject<{
|
|
|
4453
4453
|
}>;
|
|
4454
4454
|
type SchematicErrorInput = z.input<typeof schematic_error>;
|
|
4455
4455
|
|
|
4456
|
+
declare const schematic_layout_error: z.ZodObject<{
|
|
4457
|
+
type: z.ZodLiteral<"schematic_layout_error">;
|
|
4458
|
+
schematic_layout_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
4459
|
+
message: z.ZodString;
|
|
4460
|
+
source_group_id: z.ZodString;
|
|
4461
|
+
schematic_group_id: z.ZodString;
|
|
4462
|
+
}, "strip", z.ZodTypeAny, {
|
|
4463
|
+
message: string;
|
|
4464
|
+
type: "schematic_layout_error";
|
|
4465
|
+
source_group_id: string;
|
|
4466
|
+
schematic_group_id: string;
|
|
4467
|
+
schematic_layout_error_id: string;
|
|
4468
|
+
}, {
|
|
4469
|
+
message: string;
|
|
4470
|
+
type: "schematic_layout_error";
|
|
4471
|
+
source_group_id: string;
|
|
4472
|
+
schematic_group_id: string;
|
|
4473
|
+
schematic_layout_error_id?: string | undefined;
|
|
4474
|
+
}>;
|
|
4475
|
+
type SchematicLayoutErrorInput = z.input<typeof schematic_layout_error>;
|
|
4476
|
+
interface SchematicLayoutError {
|
|
4477
|
+
type: "schematic_layout_error";
|
|
4478
|
+
schematic_layout_error_id: string;
|
|
4479
|
+
message: string;
|
|
4480
|
+
source_group_id: string;
|
|
4481
|
+
schematic_group_id: string;
|
|
4482
|
+
}
|
|
4483
|
+
|
|
4456
4484
|
declare const schematic_debug_object_base: z.ZodObject<{
|
|
4457
4485
|
type: z.ZodLiteral<"schematic_debug_object">;
|
|
4458
4486
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -6848,6 +6876,7 @@ declare const source_port: z.ZodObject<{
|
|
|
6848
6876
|
source_port_id: z.ZodString;
|
|
6849
6877
|
source_component_id: z.ZodString;
|
|
6850
6878
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
6879
|
+
subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
|
|
6851
6880
|
}, "strip", z.ZodTypeAny, {
|
|
6852
6881
|
type: "source_port";
|
|
6853
6882
|
name: string;
|
|
@@ -6856,6 +6885,7 @@ declare const source_port: z.ZodObject<{
|
|
|
6856
6885
|
subcircuit_id?: string | undefined;
|
|
6857
6886
|
port_hints?: string[] | undefined;
|
|
6858
6887
|
pin_number?: number | undefined;
|
|
6888
|
+
subcircuit_connectivity_map_key?: string | undefined;
|
|
6859
6889
|
}, {
|
|
6860
6890
|
type: "source_port";
|
|
6861
6891
|
name: string;
|
|
@@ -6864,6 +6894,7 @@ declare const source_port: z.ZodObject<{
|
|
|
6864
6894
|
subcircuit_id?: string | undefined;
|
|
6865
6895
|
port_hints?: string[] | undefined;
|
|
6866
6896
|
pin_number?: number | undefined;
|
|
6897
|
+
subcircuit_connectivity_map_key?: string | undefined;
|
|
6867
6898
|
}>;
|
|
6868
6899
|
type SourcePortInput = z.input<typeof source_port>;
|
|
6869
6900
|
/**
|
|
@@ -6877,6 +6908,7 @@ interface SourcePort {
|
|
|
6877
6908
|
source_port_id: string;
|
|
6878
6909
|
source_component_id: string;
|
|
6879
6910
|
subcircuit_id?: string;
|
|
6911
|
+
subcircuit_connectivity_map_key?: string;
|
|
6880
6912
|
}
|
|
6881
6913
|
|
|
6882
6914
|
interface SourceTrace {
|
|
@@ -6958,6 +6990,7 @@ declare const source_net: z.ZodObject<{
|
|
|
6958
6990
|
is_analog_signal: z.ZodOptional<z.ZodBoolean>;
|
|
6959
6991
|
trace_width: z.ZodOptional<z.ZodNumber>;
|
|
6960
6992
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
6993
|
+
subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
|
|
6961
6994
|
}, "strip", z.ZodTypeAny, {
|
|
6962
6995
|
type: "source_net";
|
|
6963
6996
|
name: string;
|
|
@@ -6965,6 +6998,7 @@ declare const source_net: z.ZodObject<{
|
|
|
6965
6998
|
member_source_group_ids: string[];
|
|
6966
6999
|
trace_width?: number | undefined;
|
|
6967
7000
|
subcircuit_id?: string | undefined;
|
|
7001
|
+
subcircuit_connectivity_map_key?: string | undefined;
|
|
6968
7002
|
is_power?: boolean | undefined;
|
|
6969
7003
|
is_ground?: boolean | undefined;
|
|
6970
7004
|
is_digital_signal?: boolean | undefined;
|
|
@@ -6976,6 +7010,7 @@ declare const source_net: z.ZodObject<{
|
|
|
6976
7010
|
member_source_group_ids: string[];
|
|
6977
7011
|
trace_width?: number | undefined;
|
|
6978
7012
|
subcircuit_id?: string | undefined;
|
|
7013
|
+
subcircuit_connectivity_map_key?: string | undefined;
|
|
6979
7014
|
is_power?: boolean | undefined;
|
|
6980
7015
|
is_ground?: boolean | undefined;
|
|
6981
7016
|
is_digital_signal?: boolean | undefined;
|
|
@@ -7138,6 +7173,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7138
7173
|
source_port_id: z.ZodString;
|
|
7139
7174
|
source_component_id: z.ZodString;
|
|
7140
7175
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
7176
|
+
subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
|
|
7141
7177
|
}, "strip", z.ZodTypeAny, {
|
|
7142
7178
|
type: "source_port";
|
|
7143
7179
|
name: string;
|
|
@@ -7146,6 +7182,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7146
7182
|
subcircuit_id?: string | undefined;
|
|
7147
7183
|
port_hints?: string[] | undefined;
|
|
7148
7184
|
pin_number?: number | undefined;
|
|
7185
|
+
subcircuit_connectivity_map_key?: string | undefined;
|
|
7149
7186
|
}, {
|
|
7150
7187
|
type: "source_port";
|
|
7151
7188
|
name: string;
|
|
@@ -7154,6 +7191,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7154
7191
|
subcircuit_id?: string | undefined;
|
|
7155
7192
|
port_hints?: string[] | undefined;
|
|
7156
7193
|
pin_number?: number | undefined;
|
|
7194
|
+
subcircuit_connectivity_map_key?: string | undefined;
|
|
7157
7195
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
7158
7196
|
type: z.ZodLiteral<"source_component">;
|
|
7159
7197
|
source_component_id: z.ZodString;
|
|
@@ -8044,6 +8082,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8044
8082
|
is_analog_signal: z.ZodOptional<z.ZodBoolean>;
|
|
8045
8083
|
trace_width: z.ZodOptional<z.ZodNumber>;
|
|
8046
8084
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
8085
|
+
subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
|
|
8047
8086
|
}, "strip", z.ZodTypeAny, {
|
|
8048
8087
|
type: "source_net";
|
|
8049
8088
|
name: string;
|
|
@@ -8051,6 +8090,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8051
8090
|
member_source_group_ids: string[];
|
|
8052
8091
|
trace_width?: number | undefined;
|
|
8053
8092
|
subcircuit_id?: string | undefined;
|
|
8093
|
+
subcircuit_connectivity_map_key?: string | undefined;
|
|
8054
8094
|
is_power?: boolean | undefined;
|
|
8055
8095
|
is_ground?: boolean | undefined;
|
|
8056
8096
|
is_digital_signal?: boolean | undefined;
|
|
@@ -8062,6 +8102,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8062
8102
|
member_source_group_ids: string[];
|
|
8063
8103
|
trace_width?: number | undefined;
|
|
8064
8104
|
subcircuit_id?: string | undefined;
|
|
8105
|
+
subcircuit_connectivity_map_key?: string | undefined;
|
|
8065
8106
|
is_power?: boolean | undefined;
|
|
8066
8107
|
is_ground?: boolean | undefined;
|
|
8067
8108
|
is_digital_signal?: boolean | undefined;
|
|
@@ -11274,6 +11315,24 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11274
11315
|
type: "schematic_error";
|
|
11275
11316
|
error_type: "schematic_port_not_found";
|
|
11276
11317
|
schematic_error_id: string;
|
|
11318
|
+
}>, z.ZodObject<{
|
|
11319
|
+
type: z.ZodLiteral<"schematic_layout_error">;
|
|
11320
|
+
schematic_layout_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
11321
|
+
message: z.ZodString;
|
|
11322
|
+
source_group_id: z.ZodString;
|
|
11323
|
+
schematic_group_id: z.ZodString;
|
|
11324
|
+
}, "strip", z.ZodTypeAny, {
|
|
11325
|
+
message: string;
|
|
11326
|
+
type: "schematic_layout_error";
|
|
11327
|
+
source_group_id: string;
|
|
11328
|
+
schematic_group_id: string;
|
|
11329
|
+
schematic_layout_error_id: string;
|
|
11330
|
+
}, {
|
|
11331
|
+
message: string;
|
|
11332
|
+
type: "schematic_layout_error";
|
|
11333
|
+
source_group_id: string;
|
|
11334
|
+
schematic_group_id: string;
|
|
11335
|
+
schematic_layout_error_id?: string | undefined;
|
|
11277
11336
|
}>, z.ZodObject<{
|
|
11278
11337
|
type: z.ZodLiteral<"schematic_net_label">;
|
|
11279
11338
|
schematic_net_label_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -11728,6 +11787,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11728
11787
|
source_port_id: z.ZodString;
|
|
11729
11788
|
source_component_id: z.ZodString;
|
|
11730
11789
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
11790
|
+
subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
|
|
11731
11791
|
}, "strip", z.ZodTypeAny, {
|
|
11732
11792
|
type: "source_port";
|
|
11733
11793
|
name: string;
|
|
@@ -11736,6 +11796,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11736
11796
|
subcircuit_id?: string | undefined;
|
|
11737
11797
|
port_hints?: string[] | undefined;
|
|
11738
11798
|
pin_number?: number | undefined;
|
|
11799
|
+
subcircuit_connectivity_map_key?: string | undefined;
|
|
11739
11800
|
}, {
|
|
11740
11801
|
type: "source_port";
|
|
11741
11802
|
name: string;
|
|
@@ -11744,6 +11805,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11744
11805
|
subcircuit_id?: string | undefined;
|
|
11745
11806
|
port_hints?: string[] | undefined;
|
|
11746
11807
|
pin_number?: number | undefined;
|
|
11808
|
+
subcircuit_connectivity_map_key?: string | undefined;
|
|
11747
11809
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
11748
11810
|
type: z.ZodLiteral<"source_component">;
|
|
11749
11811
|
source_component_id: z.ZodString;
|
|
@@ -12634,6 +12696,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12634
12696
|
is_analog_signal: z.ZodOptional<z.ZodBoolean>;
|
|
12635
12697
|
trace_width: z.ZodOptional<z.ZodNumber>;
|
|
12636
12698
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
12699
|
+
subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
|
|
12637
12700
|
}, "strip", z.ZodTypeAny, {
|
|
12638
12701
|
type: "source_net";
|
|
12639
12702
|
name: string;
|
|
@@ -12641,6 +12704,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12641
12704
|
member_source_group_ids: string[];
|
|
12642
12705
|
trace_width?: number | undefined;
|
|
12643
12706
|
subcircuit_id?: string | undefined;
|
|
12707
|
+
subcircuit_connectivity_map_key?: string | undefined;
|
|
12644
12708
|
is_power?: boolean | undefined;
|
|
12645
12709
|
is_ground?: boolean | undefined;
|
|
12646
12710
|
is_digital_signal?: boolean | undefined;
|
|
@@ -12652,6 +12716,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12652
12716
|
member_source_group_ids: string[];
|
|
12653
12717
|
trace_width?: number | undefined;
|
|
12654
12718
|
subcircuit_id?: string | undefined;
|
|
12719
|
+
subcircuit_connectivity_map_key?: string | undefined;
|
|
12655
12720
|
is_power?: boolean | undefined;
|
|
12656
12721
|
is_ground?: boolean | undefined;
|
|
12657
12722
|
is_digital_signal?: boolean | undefined;
|
|
@@ -15864,6 +15929,24 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15864
15929
|
type: "schematic_error";
|
|
15865
15930
|
error_type: "schematic_port_not_found";
|
|
15866
15931
|
schematic_error_id: string;
|
|
15932
|
+
}>, z.ZodObject<{
|
|
15933
|
+
type: z.ZodLiteral<"schematic_layout_error">;
|
|
15934
|
+
schematic_layout_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15935
|
+
message: z.ZodString;
|
|
15936
|
+
source_group_id: z.ZodString;
|
|
15937
|
+
schematic_group_id: z.ZodString;
|
|
15938
|
+
}, "strip", z.ZodTypeAny, {
|
|
15939
|
+
message: string;
|
|
15940
|
+
type: "schematic_layout_error";
|
|
15941
|
+
source_group_id: string;
|
|
15942
|
+
schematic_group_id: string;
|
|
15943
|
+
schematic_layout_error_id: string;
|
|
15944
|
+
}, {
|
|
15945
|
+
message: string;
|
|
15946
|
+
type: "schematic_layout_error";
|
|
15947
|
+
source_group_id: string;
|
|
15948
|
+
schematic_group_id: string;
|
|
15949
|
+
schematic_layout_error_id?: string | undefined;
|
|
15867
15950
|
}>, z.ZodObject<{
|
|
15868
15951
|
type: z.ZodLiteral<"schematic_net_label">;
|
|
15869
15952
|
schematic_net_label_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -16293,4 +16376,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
16293
16376
|
*/
|
|
16294
16377
|
type CircuitJson = AnyCircuitElement[];
|
|
16295
16378
|
|
|
16296
|
-
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 InferredSchematicNetLabel, 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 PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, 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 SchematicGroup, type SchematicGroupInput, 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 SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, 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 SourceSimpleLed, type SourceSimpleLedInput, 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_cutout, pcb_cutout_circle, pcb_cutout_polygon, pcb_cutout_rect, 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_group, 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_failed_to_create_component_error, 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_led, 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 };
|
|
16379
|
+
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 InferredSchematicNetLabel, 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 PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, 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 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 SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type Size, type SourceComponentBase, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, 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 SourceSimpleLed, type SourceSimpleLedInput, 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_cutout, pcb_cutout_circle, pcb_cutout_polygon, pcb_cutout_rect, 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_group, schematic_layout_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_failed_to_create_component_error, 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_led, 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 };
|