circuit-json 0.0.223 → 0.0.224
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 +22 -0
- package/dist/index.d.mts +199 -2
- package/dist/index.mjs +721 -701
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -72,6 +72,7 @@ https://github.com/user-attachments/assets/2f28b7ba-689e-4d80-85b2-5bdef84b41f8
|
|
|
72
72
|
- [SourceSimpleTestPoint](#sourcesimpletestpoint)
|
|
73
73
|
- [SourceSimpleTransistor](#sourcesimpletransistor)
|
|
74
74
|
- [SourceTrace](#sourcetrace)
|
|
75
|
+
- [SourceTraceNotConnected](#sourcetracenotconnected)
|
|
75
76
|
- [PCB Elements](#pcb-elements)
|
|
76
77
|
- [PcbAutoroutingError](#pcbautoroutingerror)
|
|
77
78
|
- [PcbBoard](#pcbboard)
|
|
@@ -616,6 +617,27 @@ interface SourceTrace {
|
|
|
616
617
|
}
|
|
617
618
|
```
|
|
618
619
|
|
|
620
|
+
### SourceTraceNotConnected
|
|
621
|
+
|
|
622
|
+
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/source/source_trace_not_connected.ts)
|
|
623
|
+
|
|
624
|
+
Occurs when a source trace selector does not match any ports
|
|
625
|
+
|
|
626
|
+
```typescript
|
|
627
|
+
/** Occurs when a source trace selector does not match any ports */
|
|
628
|
+
interface SourceTraceNotConnected {
|
|
629
|
+
type: "source_trace_not_connected"
|
|
630
|
+
source_trace_not_connected_id: string
|
|
631
|
+
error_type: "source_trace_not_connected"
|
|
632
|
+
message: string
|
|
633
|
+
subcircuit_id?: string
|
|
634
|
+
source_group_id?: string
|
|
635
|
+
source_trace_id?: string
|
|
636
|
+
connected_source_port_ids?: string[]
|
|
637
|
+
selectors_not_found?: string[]
|
|
638
|
+
}
|
|
639
|
+
```
|
|
640
|
+
|
|
619
641
|
## PCB Elements
|
|
620
642
|
|
|
621
643
|
### PcbAutoroutingError
|
package/dist/index.d.mts
CHANGED
|
@@ -6903,6 +6903,53 @@ interface SourceFailedToCreateComponentError {
|
|
|
6903
6903
|
};
|
|
6904
6904
|
}
|
|
6905
6905
|
|
|
6906
|
+
declare const source_trace_not_connected: z.ZodObject<{
|
|
6907
|
+
type: z.ZodLiteral<"source_trace_not_connected">;
|
|
6908
|
+
source_trace_not_connected_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
6909
|
+
error_type: z.ZodDefault<z.ZodLiteral<"source_trace_not_connected">>;
|
|
6910
|
+
message: z.ZodString;
|
|
6911
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
6912
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
6913
|
+
source_trace_id: z.ZodOptional<z.ZodString>;
|
|
6914
|
+
connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6915
|
+
selectors_not_found: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6916
|
+
}, "strip", z.ZodTypeAny, {
|
|
6917
|
+
message: string;
|
|
6918
|
+
type: "source_trace_not_connected";
|
|
6919
|
+
error_type: "source_trace_not_connected";
|
|
6920
|
+
source_trace_not_connected_id: string;
|
|
6921
|
+
subcircuit_id?: string | undefined;
|
|
6922
|
+
source_trace_id?: string | undefined;
|
|
6923
|
+
source_group_id?: string | undefined;
|
|
6924
|
+
connected_source_port_ids?: string[] | undefined;
|
|
6925
|
+
selectors_not_found?: string[] | undefined;
|
|
6926
|
+
}, {
|
|
6927
|
+
message: string;
|
|
6928
|
+
type: "source_trace_not_connected";
|
|
6929
|
+
subcircuit_id?: string | undefined;
|
|
6930
|
+
source_trace_id?: string | undefined;
|
|
6931
|
+
error_type?: "source_trace_not_connected" | undefined;
|
|
6932
|
+
source_group_id?: string | undefined;
|
|
6933
|
+
source_trace_not_connected_id?: string | undefined;
|
|
6934
|
+
connected_source_port_ids?: string[] | undefined;
|
|
6935
|
+
selectors_not_found?: string[] | undefined;
|
|
6936
|
+
}>;
|
|
6937
|
+
type SourceTraceNotConnectedInput = z.input<typeof source_trace_not_connected>;
|
|
6938
|
+
/**
|
|
6939
|
+
* Occurs when a source trace selector does not match any ports
|
|
6940
|
+
*/
|
|
6941
|
+
interface SourceTraceNotConnected {
|
|
6942
|
+
type: "source_trace_not_connected";
|
|
6943
|
+
source_trace_not_connected_id: string;
|
|
6944
|
+
error_type: "source_trace_not_connected";
|
|
6945
|
+
message: string;
|
|
6946
|
+
subcircuit_id?: string;
|
|
6947
|
+
source_group_id?: string;
|
|
6948
|
+
source_trace_id?: string;
|
|
6949
|
+
connected_source_port_ids?: string[];
|
|
6950
|
+
selectors_not_found?: string[];
|
|
6951
|
+
}
|
|
6952
|
+
|
|
6906
6953
|
declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
6907
6954
|
type: z.ZodLiteral<"source_component">;
|
|
6908
6955
|
source_component_id: z.ZodString;
|
|
@@ -7801,12 +7848,42 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
7801
7848
|
x?: number | undefined;
|
|
7802
7849
|
y?: number | undefined;
|
|
7803
7850
|
} | undefined;
|
|
7851
|
+
}>, z.ZodObject<{
|
|
7852
|
+
type: z.ZodLiteral<"source_trace_not_connected">;
|
|
7853
|
+
source_trace_not_connected_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
7854
|
+
error_type: z.ZodDefault<z.ZodLiteral<"source_trace_not_connected">>;
|
|
7855
|
+
message: z.ZodString;
|
|
7856
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
7857
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7858
|
+
source_trace_id: z.ZodOptional<z.ZodString>;
|
|
7859
|
+
connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
7860
|
+
selectors_not_found: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
7861
|
+
}, "strip", z.ZodTypeAny, {
|
|
7862
|
+
message: string;
|
|
7863
|
+
type: "source_trace_not_connected";
|
|
7864
|
+
error_type: "source_trace_not_connected";
|
|
7865
|
+
source_trace_not_connected_id: string;
|
|
7866
|
+
subcircuit_id?: string | undefined;
|
|
7867
|
+
source_trace_id?: string | undefined;
|
|
7868
|
+
source_group_id?: string | undefined;
|
|
7869
|
+
connected_source_port_ids?: string[] | undefined;
|
|
7870
|
+
selectors_not_found?: string[] | undefined;
|
|
7871
|
+
}, {
|
|
7872
|
+
message: string;
|
|
7873
|
+
type: "source_trace_not_connected";
|
|
7874
|
+
subcircuit_id?: string | undefined;
|
|
7875
|
+
source_trace_id?: string | undefined;
|
|
7876
|
+
error_type?: "source_trace_not_connected" | undefined;
|
|
7877
|
+
source_group_id?: string | undefined;
|
|
7878
|
+
source_trace_not_connected_id?: string | undefined;
|
|
7879
|
+
connected_source_port_ids?: string[] | undefined;
|
|
7880
|
+
selectors_not_found?: string[] | undefined;
|
|
7804
7881
|
}>]>;
|
|
7805
7882
|
/**
|
|
7806
7883
|
* Deprecated: use `AnySourceElement` instead
|
|
7807
7884
|
*/
|
|
7808
7885
|
type AnySourceComponent = z.infer<typeof any_source_component>;
|
|
7809
|
-
type AnySourceElement = SourceSimpleResistor | SourceSimpleCapacitor | SourceSimpleDiode | SourceSimpleLed | SourceSimpleGround | SourceSimpleChip | SourceSimplePowerSource | SourceSimpleBattery | SourceSimpleInductor | SourceSimplePushButton | SourceSimplePotentiometer | SourceSimpleCrystal | SourceSimplePinHeader | SourceSimpleResonator | SourceSimpleSwitch | SourceSimpleTransistor | SourceSimpleTestPoint | SourceSimpleMosfet | SourceSimpleFuse | SourceProjectMetadata | SourceMissingPropertyError | SourceFailedToCreateComponentError;
|
|
7886
|
+
type AnySourceElement = SourceSimpleResistor | SourceSimpleCapacitor | SourceSimpleDiode | SourceSimpleLed | SourceSimpleGround | SourceSimpleChip | SourceSimplePowerSource | SourceSimpleBattery | SourceSimpleInductor | SourceSimplePushButton | SourceSimplePotentiometer | SourceSimpleCrystal | SourceSimplePinHeader | SourceSimpleResonator | SourceSimpleSwitch | SourceSimpleTransistor | SourceSimpleTestPoint | SourceSimpleMosfet | SourceSimpleFuse | SourceProjectMetadata | SourceMissingPropertyError | SourceFailedToCreateComponentError | SourceTraceNotConnected;
|
|
7810
7887
|
|
|
7811
7888
|
declare const source_port: z.ZodObject<{
|
|
7812
7889
|
type: z.ZodLiteral<"source_port">;
|
|
@@ -9134,6 +9211,36 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
9134
9211
|
x?: number | undefined;
|
|
9135
9212
|
y?: number | undefined;
|
|
9136
9213
|
} | undefined;
|
|
9214
|
+
}>, z.ZodObject<{
|
|
9215
|
+
type: z.ZodLiteral<"source_trace_not_connected">;
|
|
9216
|
+
source_trace_not_connected_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
9217
|
+
error_type: z.ZodDefault<z.ZodLiteral<"source_trace_not_connected">>;
|
|
9218
|
+
message: z.ZodString;
|
|
9219
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
9220
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
9221
|
+
source_trace_id: z.ZodOptional<z.ZodString>;
|
|
9222
|
+
connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
9223
|
+
selectors_not_found: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
9224
|
+
}, "strip", z.ZodTypeAny, {
|
|
9225
|
+
message: string;
|
|
9226
|
+
type: "source_trace_not_connected";
|
|
9227
|
+
error_type: "source_trace_not_connected";
|
|
9228
|
+
source_trace_not_connected_id: string;
|
|
9229
|
+
subcircuit_id?: string | undefined;
|
|
9230
|
+
source_trace_id?: string | undefined;
|
|
9231
|
+
source_group_id?: string | undefined;
|
|
9232
|
+
connected_source_port_ids?: string[] | undefined;
|
|
9233
|
+
selectors_not_found?: string[] | undefined;
|
|
9234
|
+
}, {
|
|
9235
|
+
message: string;
|
|
9236
|
+
type: "source_trace_not_connected";
|
|
9237
|
+
subcircuit_id?: string | undefined;
|
|
9238
|
+
source_trace_id?: string | undefined;
|
|
9239
|
+
error_type?: "source_trace_not_connected" | undefined;
|
|
9240
|
+
source_group_id?: string | undefined;
|
|
9241
|
+
source_trace_not_connected_id?: string | undefined;
|
|
9242
|
+
connected_source_port_ids?: string[] | undefined;
|
|
9243
|
+
selectors_not_found?: string[] | undefined;
|
|
9137
9244
|
}>]>, z.ZodObject<{
|
|
9138
9245
|
type: z.ZodLiteral<"source_net">;
|
|
9139
9246
|
source_net_id: z.ZodString;
|
|
@@ -9903,6 +10010,36 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
9903
10010
|
software_used_string?: string | undefined;
|
|
9904
10011
|
project_url?: string | undefined;
|
|
9905
10012
|
created_at?: string | undefined;
|
|
10013
|
+
}>, z.ZodObject<{
|
|
10014
|
+
type: z.ZodLiteral<"source_trace_not_connected">;
|
|
10015
|
+
source_trace_not_connected_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
10016
|
+
error_type: z.ZodDefault<z.ZodLiteral<"source_trace_not_connected">>;
|
|
10017
|
+
message: z.ZodString;
|
|
10018
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
10019
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
10020
|
+
source_trace_id: z.ZodOptional<z.ZodString>;
|
|
10021
|
+
connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
10022
|
+
selectors_not_found: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
10023
|
+
}, "strip", z.ZodTypeAny, {
|
|
10024
|
+
message: string;
|
|
10025
|
+
type: "source_trace_not_connected";
|
|
10026
|
+
error_type: "source_trace_not_connected";
|
|
10027
|
+
source_trace_not_connected_id: string;
|
|
10028
|
+
subcircuit_id?: string | undefined;
|
|
10029
|
+
source_trace_id?: string | undefined;
|
|
10030
|
+
source_group_id?: string | undefined;
|
|
10031
|
+
connected_source_port_ids?: string[] | undefined;
|
|
10032
|
+
selectors_not_found?: string[] | undefined;
|
|
10033
|
+
}, {
|
|
10034
|
+
message: string;
|
|
10035
|
+
type: "source_trace_not_connected";
|
|
10036
|
+
subcircuit_id?: string | undefined;
|
|
10037
|
+
source_trace_id?: string | undefined;
|
|
10038
|
+
error_type?: "source_trace_not_connected" | undefined;
|
|
10039
|
+
source_group_id?: string | undefined;
|
|
10040
|
+
source_trace_not_connected_id?: string | undefined;
|
|
10041
|
+
connected_source_port_ids?: string[] | undefined;
|
|
10042
|
+
selectors_not_found?: string[] | undefined;
|
|
9906
10043
|
}>, z.ZodObject<{
|
|
9907
10044
|
type: z.ZodLiteral<"pcb_component">;
|
|
9908
10045
|
pcb_component_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -14432,6 +14569,36 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14432
14569
|
x?: number | undefined;
|
|
14433
14570
|
y?: number | undefined;
|
|
14434
14571
|
} | undefined;
|
|
14572
|
+
}>, z.ZodObject<{
|
|
14573
|
+
type: z.ZodLiteral<"source_trace_not_connected">;
|
|
14574
|
+
source_trace_not_connected_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
14575
|
+
error_type: z.ZodDefault<z.ZodLiteral<"source_trace_not_connected">>;
|
|
14576
|
+
message: z.ZodString;
|
|
14577
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
14578
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
14579
|
+
source_trace_id: z.ZodOptional<z.ZodString>;
|
|
14580
|
+
connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
14581
|
+
selectors_not_found: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
14582
|
+
}, "strip", z.ZodTypeAny, {
|
|
14583
|
+
message: string;
|
|
14584
|
+
type: "source_trace_not_connected";
|
|
14585
|
+
error_type: "source_trace_not_connected";
|
|
14586
|
+
source_trace_not_connected_id: string;
|
|
14587
|
+
subcircuit_id?: string | undefined;
|
|
14588
|
+
source_trace_id?: string | undefined;
|
|
14589
|
+
source_group_id?: string | undefined;
|
|
14590
|
+
connected_source_port_ids?: string[] | undefined;
|
|
14591
|
+
selectors_not_found?: string[] | undefined;
|
|
14592
|
+
}, {
|
|
14593
|
+
message: string;
|
|
14594
|
+
type: "source_trace_not_connected";
|
|
14595
|
+
subcircuit_id?: string | undefined;
|
|
14596
|
+
source_trace_id?: string | undefined;
|
|
14597
|
+
error_type?: "source_trace_not_connected" | undefined;
|
|
14598
|
+
source_group_id?: string | undefined;
|
|
14599
|
+
source_trace_not_connected_id?: string | undefined;
|
|
14600
|
+
connected_source_port_ids?: string[] | undefined;
|
|
14601
|
+
selectors_not_found?: string[] | undefined;
|
|
14435
14602
|
}>]>, z.ZodObject<{
|
|
14436
14603
|
type: z.ZodLiteral<"source_net">;
|
|
14437
14604
|
source_net_id: z.ZodString;
|
|
@@ -15201,6 +15368,36 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15201
15368
|
software_used_string?: string | undefined;
|
|
15202
15369
|
project_url?: string | undefined;
|
|
15203
15370
|
created_at?: string | undefined;
|
|
15371
|
+
}>, z.ZodObject<{
|
|
15372
|
+
type: z.ZodLiteral<"source_trace_not_connected">;
|
|
15373
|
+
source_trace_not_connected_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15374
|
+
error_type: z.ZodDefault<z.ZodLiteral<"source_trace_not_connected">>;
|
|
15375
|
+
message: z.ZodString;
|
|
15376
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
15377
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
15378
|
+
source_trace_id: z.ZodOptional<z.ZodString>;
|
|
15379
|
+
connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
15380
|
+
selectors_not_found: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
15381
|
+
}, "strip", z.ZodTypeAny, {
|
|
15382
|
+
message: string;
|
|
15383
|
+
type: "source_trace_not_connected";
|
|
15384
|
+
error_type: "source_trace_not_connected";
|
|
15385
|
+
source_trace_not_connected_id: string;
|
|
15386
|
+
subcircuit_id?: string | undefined;
|
|
15387
|
+
source_trace_id?: string | undefined;
|
|
15388
|
+
source_group_id?: string | undefined;
|
|
15389
|
+
connected_source_port_ids?: string[] | undefined;
|
|
15390
|
+
selectors_not_found?: string[] | undefined;
|
|
15391
|
+
}, {
|
|
15392
|
+
message: string;
|
|
15393
|
+
type: "source_trace_not_connected";
|
|
15394
|
+
subcircuit_id?: string | undefined;
|
|
15395
|
+
source_trace_id?: string | undefined;
|
|
15396
|
+
error_type?: "source_trace_not_connected" | undefined;
|
|
15397
|
+
source_group_id?: string | undefined;
|
|
15398
|
+
source_trace_not_connected_id?: string | undefined;
|
|
15399
|
+
connected_source_port_ids?: string[] | undefined;
|
|
15400
|
+
selectors_not_found?: string[] | undefined;
|
|
15204
15401
|
}>, z.ZodObject<{
|
|
15205
15402
|
type: z.ZodLiteral<"pcb_component">;
|
|
15206
15403
|
pcb_component_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -18788,4 +18985,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
18788
18985
|
*/
|
|
18789
18986
|
type CircuitJson = AnyCircuitElement[];
|
|
18790
18987
|
|
|
18791
|
-
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 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 PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, 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 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 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 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 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 SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceComponentBase, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, 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 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 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, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, 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_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_thermal_spoke, 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_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_voltage_source, size, source_component_base, source_failed_to_create_component_error, source_group, source_missing_property_error, source_net, source_pcb_ground_plane, source_port, source_project_metadata, 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_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, supplier_name, time, visible_layer, voltage };
|
|
18988
|
+
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 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 PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, 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 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 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 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 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 SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceComponentBase, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, 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 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 SourceTraceNotConnected, type SourceTraceNotConnectedInput, 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, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, 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_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_thermal_spoke, 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_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_voltage_source, size, source_component_base, source_failed_to_create_component_error, source_group, source_missing_property_error, source_net, source_pcb_ground_plane, source_port, source_project_metadata, 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_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, supplier_name, time, visible_layer, voltage };
|