circuit-json 0.0.206 → 0.0.207
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 +79 -0
- package/dist/index.d.mts +415 -2
- package/dist/index.mjs +608 -547
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -49,6 +49,7 @@ https://github.com/user-attachments/assets/2f28b7ba-689e-4d80-85b2-5bdef84b41f8
|
|
|
49
49
|
- [SourceComponentBase](#sourcecomponentbase)
|
|
50
50
|
- [SourceFailedToCreateComponentError](#sourcefailedtocreatecomponenterror)
|
|
51
51
|
- [SourceMissingPropertyError](#sourcemissingpropertyerror)
|
|
52
|
+
- [SourcePcbGroundPlane](#sourcepcbgroundplane)
|
|
52
53
|
- [SourcePort](#sourceport)
|
|
53
54
|
- [SourceProjectMetadata](#sourceprojectmetadata)
|
|
54
55
|
- [SourceSimpleBattery](#sourcesimplebattery)
|
|
@@ -77,6 +78,8 @@ https://github.com/user-attachments/assets/2f28b7ba-689e-4d80-85b2-5bdef84b41f8
|
|
|
77
78
|
- [PcbCutout](#pcbcutout)
|
|
78
79
|
- [PcbFabricationNotePath](#pcbfabricationnotepath)
|
|
79
80
|
- [PcbFabricationNoteText](#pcbfabricationnotetext)
|
|
81
|
+
- [PcbGroundPlane](#pcbgroundplane)
|
|
82
|
+
- [PcbGroundPlaneRegion](#pcbgroundplaneregion)
|
|
80
83
|
- [PcbGroup](#pcbgroup)
|
|
81
84
|
- [PcbHole](#pcbhole)
|
|
82
85
|
- [PcbManualEditConflictWarning](#pcbmanualeditconflictwarning)
|
|
@@ -94,6 +97,7 @@ https://github.com/user-attachments/assets/2f28b7ba-689e-4d80-85b2-5bdef84b41f8
|
|
|
94
97
|
- [PcbSilkscreenText](#pcbsilkscreentext)
|
|
95
98
|
- [PcbSolderPaste](#pcbsolderpaste)
|
|
96
99
|
- [PcbText](#pcbtext)
|
|
100
|
+
- [PcbThermalSpoke](#pcbthermalspoke)
|
|
97
101
|
- [PcbTrace](#pcbtrace)
|
|
98
102
|
- [PcbTraceError](#pcbtraceerror)
|
|
99
103
|
- [PcbTraceHint](#pcbtracehint)
|
|
@@ -244,6 +248,23 @@ interface SourceMissingPropertyError {
|
|
|
244
248
|
}
|
|
245
249
|
```
|
|
246
250
|
|
|
251
|
+
### SourcePcbGroundPlane
|
|
252
|
+
|
|
253
|
+
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/source/source_pcb_ground_plane.ts)
|
|
254
|
+
|
|
255
|
+
Defines a ground plane in the source domain
|
|
256
|
+
|
|
257
|
+
```typescript
|
|
258
|
+
/** Defines a ground plane in the source domain */
|
|
259
|
+
interface SourcePcbGroundPlane {
|
|
260
|
+
type: "source_pcb_ground_plane"
|
|
261
|
+
source_pcb_ground_plane_id: string
|
|
262
|
+
source_group_id: string
|
|
263
|
+
source_net_id: string
|
|
264
|
+
subcircuit_id?: string
|
|
265
|
+
}
|
|
266
|
+
```
|
|
267
|
+
|
|
247
268
|
### SourcePort
|
|
248
269
|
|
|
249
270
|
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/source/source_port.ts)
|
|
@@ -694,6 +715,43 @@ interface PcbFabricationNoteText {
|
|
|
694
715
|
}
|
|
695
716
|
```
|
|
696
717
|
|
|
718
|
+
### PcbGroundPlane
|
|
719
|
+
|
|
720
|
+
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/pcb/pcb_ground_plane.ts)
|
|
721
|
+
|
|
722
|
+
Defines a ground plane on the PCB
|
|
723
|
+
|
|
724
|
+
```typescript
|
|
725
|
+
/** Defines a ground plane on the PCB */
|
|
726
|
+
interface PcbGroundPlane {
|
|
727
|
+
type: "pcb_ground_plane"
|
|
728
|
+
pcb_ground_plane_id: string
|
|
729
|
+
source_pcb_ground_plane_id: string
|
|
730
|
+
source_net_id: string
|
|
731
|
+
pcb_group_id?: string
|
|
732
|
+
subcircuit_id?: string
|
|
733
|
+
}
|
|
734
|
+
```
|
|
735
|
+
|
|
736
|
+
### PcbGroundPlaneRegion
|
|
737
|
+
|
|
738
|
+
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/pcb/pcb_ground_plane_region.ts)
|
|
739
|
+
|
|
740
|
+
Defines a polygon region of a ground plane
|
|
741
|
+
|
|
742
|
+
```typescript
|
|
743
|
+
/** Defines a polygon region of a ground plane */
|
|
744
|
+
interface PcbGroundPlaneRegion {
|
|
745
|
+
type: "pcb_ground_plane_region"
|
|
746
|
+
pcb_ground_plane_region_id: string
|
|
747
|
+
pcb_ground_plane_id: string
|
|
748
|
+
pcb_group_id?: string
|
|
749
|
+
subcircuit_id?: string
|
|
750
|
+
layer: LayerRef
|
|
751
|
+
points: Point[]
|
|
752
|
+
}
|
|
753
|
+
```
|
|
754
|
+
|
|
697
755
|
### PcbGroup
|
|
698
756
|
|
|
699
757
|
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/pcb/pcb_group.ts)
|
|
@@ -1097,6 +1155,27 @@ interface PcbText {
|
|
|
1097
1155
|
}
|
|
1098
1156
|
```
|
|
1099
1157
|
|
|
1158
|
+
### PcbThermalSpoke
|
|
1159
|
+
|
|
1160
|
+
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/pcb/pcb_thermal_spoke.ts)
|
|
1161
|
+
|
|
1162
|
+
Pattern for connecting a ground plane to a plated hole
|
|
1163
|
+
|
|
1164
|
+
```typescript
|
|
1165
|
+
/** Pattern for connecting a ground plane to a plated hole */
|
|
1166
|
+
interface PcbThermalSpoke {
|
|
1167
|
+
type: "pcb_thermal_spoke"
|
|
1168
|
+
pcb_thermal_spoke_id: string
|
|
1169
|
+
pcb_ground_plane_id: string
|
|
1170
|
+
shape: string
|
|
1171
|
+
spoke_count: number
|
|
1172
|
+
spoke_thickness: Distance
|
|
1173
|
+
spoke_inner_diameter: Distance
|
|
1174
|
+
spoke_outer_diameter: Distance
|
|
1175
|
+
pcb_plated_hole_id?: string
|
|
1176
|
+
}
|
|
1177
|
+
```
|
|
1178
|
+
|
|
1100
1179
|
### PcbTrace
|
|
1101
1180
|
|
|
1102
1181
|
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/pcb/pcb_trace.ts)
|
package/dist/index.d.mts
CHANGED
|
@@ -3625,7 +3625,153 @@ interface PcbBreakoutPoint {
|
|
|
3625
3625
|
y: Distance;
|
|
3626
3626
|
}
|
|
3627
3627
|
|
|
3628
|
-
|
|
3628
|
+
declare const pcb_ground_plane: z.ZodObject<{
|
|
3629
|
+
type: z.ZodLiteral<"pcb_ground_plane">;
|
|
3630
|
+
pcb_ground_plane_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3631
|
+
source_pcb_ground_plane_id: z.ZodString;
|
|
3632
|
+
source_net_id: z.ZodString;
|
|
3633
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
3634
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
3635
|
+
}, "strip", z.ZodTypeAny, {
|
|
3636
|
+
type: "pcb_ground_plane";
|
|
3637
|
+
source_net_id: string;
|
|
3638
|
+
pcb_ground_plane_id: string;
|
|
3639
|
+
source_pcb_ground_plane_id: string;
|
|
3640
|
+
subcircuit_id?: string | undefined;
|
|
3641
|
+
pcb_group_id?: string | undefined;
|
|
3642
|
+
}, {
|
|
3643
|
+
type: "pcb_ground_plane";
|
|
3644
|
+
source_net_id: string;
|
|
3645
|
+
source_pcb_ground_plane_id: string;
|
|
3646
|
+
subcircuit_id?: string | undefined;
|
|
3647
|
+
pcb_group_id?: string | undefined;
|
|
3648
|
+
pcb_ground_plane_id?: string | undefined;
|
|
3649
|
+
}>;
|
|
3650
|
+
type PcbGroundPlaneInput = z.input<typeof pcb_ground_plane>;
|
|
3651
|
+
/**
|
|
3652
|
+
* Defines a ground plane on the PCB
|
|
3653
|
+
*/
|
|
3654
|
+
interface PcbGroundPlane {
|
|
3655
|
+
type: "pcb_ground_plane";
|
|
3656
|
+
pcb_ground_plane_id: string;
|
|
3657
|
+
source_pcb_ground_plane_id: string;
|
|
3658
|
+
source_net_id: string;
|
|
3659
|
+
pcb_group_id?: string;
|
|
3660
|
+
subcircuit_id?: string;
|
|
3661
|
+
}
|
|
3662
|
+
|
|
3663
|
+
declare const pcb_ground_plane_region: z.ZodObject<{
|
|
3664
|
+
type: z.ZodLiteral<"pcb_ground_plane_region">;
|
|
3665
|
+
pcb_ground_plane_region_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3666
|
+
pcb_ground_plane_id: z.ZodString;
|
|
3667
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
3668
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
3669
|
+
layer: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
3670
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
3671
|
+
}, "strip", z.ZodTypeAny, {
|
|
3672
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
3673
|
+
}, {
|
|
3674
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
3675
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
3676
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
3677
|
+
}>;
|
|
3678
|
+
points: z.ZodArray<z.ZodObject<{
|
|
3679
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
3680
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
3681
|
+
}, "strip", z.ZodTypeAny, {
|
|
3682
|
+
x: number;
|
|
3683
|
+
y: number;
|
|
3684
|
+
}, {
|
|
3685
|
+
x: string | number;
|
|
3686
|
+
y: string | number;
|
|
3687
|
+
}>, "many">;
|
|
3688
|
+
}, "strip", z.ZodTypeAny, {
|
|
3689
|
+
type: "pcb_ground_plane_region";
|
|
3690
|
+
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
3691
|
+
points: {
|
|
3692
|
+
x: number;
|
|
3693
|
+
y: number;
|
|
3694
|
+
}[];
|
|
3695
|
+
pcb_ground_plane_id: string;
|
|
3696
|
+
pcb_ground_plane_region_id: string;
|
|
3697
|
+
subcircuit_id?: string | undefined;
|
|
3698
|
+
pcb_group_id?: string | undefined;
|
|
3699
|
+
}, {
|
|
3700
|
+
type: "pcb_ground_plane_region";
|
|
3701
|
+
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
3702
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
3703
|
+
};
|
|
3704
|
+
points: {
|
|
3705
|
+
x: string | number;
|
|
3706
|
+
y: string | number;
|
|
3707
|
+
}[];
|
|
3708
|
+
pcb_ground_plane_id: string;
|
|
3709
|
+
subcircuit_id?: string | undefined;
|
|
3710
|
+
pcb_group_id?: string | undefined;
|
|
3711
|
+
pcb_ground_plane_region_id?: string | undefined;
|
|
3712
|
+
}>;
|
|
3713
|
+
type PcbGroundPlaneRegionInput = z.input<typeof pcb_ground_plane_region>;
|
|
3714
|
+
/**
|
|
3715
|
+
* Defines a polygon region of a ground plane
|
|
3716
|
+
*/
|
|
3717
|
+
interface PcbGroundPlaneRegion {
|
|
3718
|
+
type: "pcb_ground_plane_region";
|
|
3719
|
+
pcb_ground_plane_region_id: string;
|
|
3720
|
+
pcb_ground_plane_id: string;
|
|
3721
|
+
pcb_group_id?: string;
|
|
3722
|
+
subcircuit_id?: string;
|
|
3723
|
+
layer: LayerRef;
|
|
3724
|
+
points: Point[];
|
|
3725
|
+
}
|
|
3726
|
+
|
|
3727
|
+
declare const pcb_thermal_spoke: z.ZodObject<{
|
|
3728
|
+
type: z.ZodLiteral<"pcb_thermal_spoke">;
|
|
3729
|
+
pcb_thermal_spoke_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3730
|
+
pcb_ground_plane_id: z.ZodString;
|
|
3731
|
+
shape: z.ZodString;
|
|
3732
|
+
spoke_count: z.ZodNumber;
|
|
3733
|
+
spoke_thickness: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
3734
|
+
spoke_inner_diameter: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
3735
|
+
spoke_outer_diameter: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
3736
|
+
pcb_plated_hole_id: z.ZodOptional<z.ZodString>;
|
|
3737
|
+
}, "strip", z.ZodTypeAny, {
|
|
3738
|
+
type: "pcb_thermal_spoke";
|
|
3739
|
+
shape: string;
|
|
3740
|
+
pcb_ground_plane_id: string;
|
|
3741
|
+
pcb_thermal_spoke_id: string;
|
|
3742
|
+
spoke_count: number;
|
|
3743
|
+
spoke_thickness: number;
|
|
3744
|
+
spoke_inner_diameter: number;
|
|
3745
|
+
spoke_outer_diameter: number;
|
|
3746
|
+
pcb_plated_hole_id?: string | undefined;
|
|
3747
|
+
}, {
|
|
3748
|
+
type: "pcb_thermal_spoke";
|
|
3749
|
+
shape: string;
|
|
3750
|
+
pcb_ground_plane_id: string;
|
|
3751
|
+
spoke_count: number;
|
|
3752
|
+
spoke_thickness: string | number;
|
|
3753
|
+
spoke_inner_diameter: string | number;
|
|
3754
|
+
spoke_outer_diameter: string | number;
|
|
3755
|
+
pcb_plated_hole_id?: string | undefined;
|
|
3756
|
+
pcb_thermal_spoke_id?: string | undefined;
|
|
3757
|
+
}>;
|
|
3758
|
+
type PcbThermalSpokeInput = z.input<typeof pcb_thermal_spoke>;
|
|
3759
|
+
/**
|
|
3760
|
+
* Pattern for connecting a ground plane to a plated hole
|
|
3761
|
+
*/
|
|
3762
|
+
interface PcbThermalSpoke {
|
|
3763
|
+
type: "pcb_thermal_spoke";
|
|
3764
|
+
pcb_thermal_spoke_id: string;
|
|
3765
|
+
pcb_ground_plane_id: string;
|
|
3766
|
+
shape: string;
|
|
3767
|
+
spoke_count: number;
|
|
3768
|
+
spoke_thickness: Distance;
|
|
3769
|
+
spoke_inner_diameter: Distance;
|
|
3770
|
+
spoke_outer_diameter: Distance;
|
|
3771
|
+
pcb_plated_hole_id?: string;
|
|
3772
|
+
}
|
|
3773
|
+
|
|
3774
|
+
type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceError | PcbMissingFootprintError | PcbManualEditConflictWarning | PcbPortNotMatchedError | PcbVia | PcbBoard | PcbPlacementError | PcbTraceHint | PcbSilkscreenLine | PcbSilkscreenPath | PcbSilkscreenText | PcbSilkscreenRect | PcbSilkscreenCircle | PcbAutoroutingError | PcbCutout | PcbBreakoutPoint | PcbGroundPlane | PcbGroundPlaneRegion | PcbThermalSpoke;
|
|
3629
3775
|
|
|
3630
3776
|
interface SchematicBox {
|
|
3631
3777
|
type: "schematic_box";
|
|
@@ -7229,6 +7375,37 @@ declare const source_net: z.ZodObject<{
|
|
|
7229
7375
|
type SourceNet = z.infer<typeof source_net>;
|
|
7230
7376
|
type SourceNetInput = z.input<typeof source_net>;
|
|
7231
7377
|
|
|
7378
|
+
declare const source_pcb_ground_plane: z.ZodObject<{
|
|
7379
|
+
type: z.ZodLiteral<"source_pcb_ground_plane">;
|
|
7380
|
+
source_pcb_ground_plane_id: z.ZodString;
|
|
7381
|
+
source_group_id: z.ZodString;
|
|
7382
|
+
source_net_id: z.ZodString;
|
|
7383
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
7384
|
+
}, "strip", z.ZodTypeAny, {
|
|
7385
|
+
type: "source_pcb_ground_plane";
|
|
7386
|
+
source_group_id: string;
|
|
7387
|
+
source_net_id: string;
|
|
7388
|
+
source_pcb_ground_plane_id: string;
|
|
7389
|
+
subcircuit_id?: string | undefined;
|
|
7390
|
+
}, {
|
|
7391
|
+
type: "source_pcb_ground_plane";
|
|
7392
|
+
source_group_id: string;
|
|
7393
|
+
source_net_id: string;
|
|
7394
|
+
source_pcb_ground_plane_id: string;
|
|
7395
|
+
subcircuit_id?: string | undefined;
|
|
7396
|
+
}>;
|
|
7397
|
+
type SourcePcbGroundPlaneInput = z.input<typeof source_pcb_ground_plane>;
|
|
7398
|
+
/**
|
|
7399
|
+
* Defines a ground plane in the source domain
|
|
7400
|
+
*/
|
|
7401
|
+
interface SourcePcbGroundPlane {
|
|
7402
|
+
type: "source_pcb_ground_plane";
|
|
7403
|
+
source_pcb_ground_plane_id: string;
|
|
7404
|
+
source_group_id: string;
|
|
7405
|
+
source_net_id: string;
|
|
7406
|
+
subcircuit_id?: string;
|
|
7407
|
+
}
|
|
7408
|
+
|
|
7232
7409
|
declare const cad_component: z.ZodObject<{
|
|
7233
7410
|
type: z.ZodLiteral<"cad_component">;
|
|
7234
7411
|
cad_component_id: z.ZodString;
|
|
@@ -8984,6 +9161,24 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8984
9161
|
display_value?: string | undefined;
|
|
8985
9162
|
are_pins_interchangeable?: boolean | undefined;
|
|
8986
9163
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
9164
|
+
}>, z.ZodObject<{
|
|
9165
|
+
type: z.ZodLiteral<"source_pcb_ground_plane">;
|
|
9166
|
+
source_pcb_ground_plane_id: z.ZodString;
|
|
9167
|
+
source_group_id: z.ZodString;
|
|
9168
|
+
source_net_id: z.ZodString;
|
|
9169
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
9170
|
+
}, "strip", z.ZodTypeAny, {
|
|
9171
|
+
type: "source_pcb_ground_plane";
|
|
9172
|
+
source_group_id: string;
|
|
9173
|
+
source_net_id: string;
|
|
9174
|
+
source_pcb_ground_plane_id: string;
|
|
9175
|
+
subcircuit_id?: string | undefined;
|
|
9176
|
+
}, {
|
|
9177
|
+
type: "source_pcb_ground_plane";
|
|
9178
|
+
source_group_id: string;
|
|
9179
|
+
source_net_id: string;
|
|
9180
|
+
source_pcb_ground_plane_id: string;
|
|
9181
|
+
subcircuit_id?: string | undefined;
|
|
8987
9182
|
}>, z.ZodObject<{
|
|
8988
9183
|
type: z.ZodLiteral<"source_project_metadata">;
|
|
8989
9184
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -11143,6 +11338,106 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11143
11338
|
pcb_group_id?: string | undefined;
|
|
11144
11339
|
pcb_cutout_id?: string | undefined;
|
|
11145
11340
|
}>]>, z.ZodObject<{
|
|
11341
|
+
type: z.ZodLiteral<"pcb_ground_plane">;
|
|
11342
|
+
pcb_ground_plane_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
11343
|
+
source_pcb_ground_plane_id: z.ZodString;
|
|
11344
|
+
source_net_id: z.ZodString;
|
|
11345
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
11346
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
11347
|
+
}, "strip", z.ZodTypeAny, {
|
|
11348
|
+
type: "pcb_ground_plane";
|
|
11349
|
+
source_net_id: string;
|
|
11350
|
+
pcb_ground_plane_id: string;
|
|
11351
|
+
source_pcb_ground_plane_id: string;
|
|
11352
|
+
subcircuit_id?: string | undefined;
|
|
11353
|
+
pcb_group_id?: string | undefined;
|
|
11354
|
+
}, {
|
|
11355
|
+
type: "pcb_ground_plane";
|
|
11356
|
+
source_net_id: string;
|
|
11357
|
+
source_pcb_ground_plane_id: string;
|
|
11358
|
+
subcircuit_id?: string | undefined;
|
|
11359
|
+
pcb_group_id?: string | undefined;
|
|
11360
|
+
pcb_ground_plane_id?: string | undefined;
|
|
11361
|
+
}>, z.ZodObject<{
|
|
11362
|
+
type: z.ZodLiteral<"pcb_ground_plane_region">;
|
|
11363
|
+
pcb_ground_plane_region_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
11364
|
+
pcb_ground_plane_id: z.ZodString;
|
|
11365
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
11366
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
11367
|
+
layer: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
11368
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
11369
|
+
}, "strip", z.ZodTypeAny, {
|
|
11370
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
11371
|
+
}, {
|
|
11372
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
11373
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
11374
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
11375
|
+
}>;
|
|
11376
|
+
points: z.ZodArray<z.ZodObject<{
|
|
11377
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
11378
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
11379
|
+
}, "strip", z.ZodTypeAny, {
|
|
11380
|
+
x: number;
|
|
11381
|
+
y: number;
|
|
11382
|
+
}, {
|
|
11383
|
+
x: string | number;
|
|
11384
|
+
y: string | number;
|
|
11385
|
+
}>, "many">;
|
|
11386
|
+
}, "strip", z.ZodTypeAny, {
|
|
11387
|
+
type: "pcb_ground_plane_region";
|
|
11388
|
+
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
11389
|
+
points: {
|
|
11390
|
+
x: number;
|
|
11391
|
+
y: number;
|
|
11392
|
+
}[];
|
|
11393
|
+
pcb_ground_plane_id: string;
|
|
11394
|
+
pcb_ground_plane_region_id: string;
|
|
11395
|
+
subcircuit_id?: string | undefined;
|
|
11396
|
+
pcb_group_id?: string | undefined;
|
|
11397
|
+
}, {
|
|
11398
|
+
type: "pcb_ground_plane_region";
|
|
11399
|
+
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
11400
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
11401
|
+
};
|
|
11402
|
+
points: {
|
|
11403
|
+
x: string | number;
|
|
11404
|
+
y: string | number;
|
|
11405
|
+
}[];
|
|
11406
|
+
pcb_ground_plane_id: string;
|
|
11407
|
+
subcircuit_id?: string | undefined;
|
|
11408
|
+
pcb_group_id?: string | undefined;
|
|
11409
|
+
pcb_ground_plane_region_id?: string | undefined;
|
|
11410
|
+
}>, z.ZodObject<{
|
|
11411
|
+
type: z.ZodLiteral<"pcb_thermal_spoke">;
|
|
11412
|
+
pcb_thermal_spoke_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
11413
|
+
pcb_ground_plane_id: z.ZodString;
|
|
11414
|
+
shape: z.ZodString;
|
|
11415
|
+
spoke_count: z.ZodNumber;
|
|
11416
|
+
spoke_thickness: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
11417
|
+
spoke_inner_diameter: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
11418
|
+
spoke_outer_diameter: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
11419
|
+
pcb_plated_hole_id: z.ZodOptional<z.ZodString>;
|
|
11420
|
+
}, "strip", z.ZodTypeAny, {
|
|
11421
|
+
type: "pcb_thermal_spoke";
|
|
11422
|
+
shape: string;
|
|
11423
|
+
pcb_ground_plane_id: string;
|
|
11424
|
+
pcb_thermal_spoke_id: string;
|
|
11425
|
+
spoke_count: number;
|
|
11426
|
+
spoke_thickness: number;
|
|
11427
|
+
spoke_inner_diameter: number;
|
|
11428
|
+
spoke_outer_diameter: number;
|
|
11429
|
+
pcb_plated_hole_id?: string | undefined;
|
|
11430
|
+
}, {
|
|
11431
|
+
type: "pcb_thermal_spoke";
|
|
11432
|
+
shape: string;
|
|
11433
|
+
pcb_ground_plane_id: string;
|
|
11434
|
+
spoke_count: number;
|
|
11435
|
+
spoke_thickness: string | number;
|
|
11436
|
+
spoke_inner_diameter: string | number;
|
|
11437
|
+
spoke_outer_diameter: string | number;
|
|
11438
|
+
pcb_plated_hole_id?: string | undefined;
|
|
11439
|
+
pcb_thermal_spoke_id?: string | undefined;
|
|
11440
|
+
}>, z.ZodObject<{
|
|
11146
11441
|
type: z.ZodLiteral<"schematic_box">;
|
|
11147
11442
|
schematic_component_id: z.ZodString;
|
|
11148
11443
|
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -13749,6 +14044,24 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
13749
14044
|
display_value?: string | undefined;
|
|
13750
14045
|
are_pins_interchangeable?: boolean | undefined;
|
|
13751
14046
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
14047
|
+
}>, z.ZodObject<{
|
|
14048
|
+
type: z.ZodLiteral<"source_pcb_ground_plane">;
|
|
14049
|
+
source_pcb_ground_plane_id: z.ZodString;
|
|
14050
|
+
source_group_id: z.ZodString;
|
|
14051
|
+
source_net_id: z.ZodString;
|
|
14052
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
14053
|
+
}, "strip", z.ZodTypeAny, {
|
|
14054
|
+
type: "source_pcb_ground_plane";
|
|
14055
|
+
source_group_id: string;
|
|
14056
|
+
source_net_id: string;
|
|
14057
|
+
source_pcb_ground_plane_id: string;
|
|
14058
|
+
subcircuit_id?: string | undefined;
|
|
14059
|
+
}, {
|
|
14060
|
+
type: "source_pcb_ground_plane";
|
|
14061
|
+
source_group_id: string;
|
|
14062
|
+
source_net_id: string;
|
|
14063
|
+
source_pcb_ground_plane_id: string;
|
|
14064
|
+
subcircuit_id?: string | undefined;
|
|
13752
14065
|
}>, z.ZodObject<{
|
|
13753
14066
|
type: z.ZodLiteral<"source_project_metadata">;
|
|
13754
14067
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -15908,6 +16221,106 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15908
16221
|
pcb_group_id?: string | undefined;
|
|
15909
16222
|
pcb_cutout_id?: string | undefined;
|
|
15910
16223
|
}>]>, z.ZodObject<{
|
|
16224
|
+
type: z.ZodLiteral<"pcb_ground_plane">;
|
|
16225
|
+
pcb_ground_plane_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
16226
|
+
source_pcb_ground_plane_id: z.ZodString;
|
|
16227
|
+
source_net_id: z.ZodString;
|
|
16228
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
16229
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
16230
|
+
}, "strip", z.ZodTypeAny, {
|
|
16231
|
+
type: "pcb_ground_plane";
|
|
16232
|
+
source_net_id: string;
|
|
16233
|
+
pcb_ground_plane_id: string;
|
|
16234
|
+
source_pcb_ground_plane_id: string;
|
|
16235
|
+
subcircuit_id?: string | undefined;
|
|
16236
|
+
pcb_group_id?: string | undefined;
|
|
16237
|
+
}, {
|
|
16238
|
+
type: "pcb_ground_plane";
|
|
16239
|
+
source_net_id: string;
|
|
16240
|
+
source_pcb_ground_plane_id: string;
|
|
16241
|
+
subcircuit_id?: string | undefined;
|
|
16242
|
+
pcb_group_id?: string | undefined;
|
|
16243
|
+
pcb_ground_plane_id?: string | undefined;
|
|
16244
|
+
}>, z.ZodObject<{
|
|
16245
|
+
type: z.ZodLiteral<"pcb_ground_plane_region">;
|
|
16246
|
+
pcb_ground_plane_region_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
16247
|
+
pcb_ground_plane_id: z.ZodString;
|
|
16248
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
16249
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
16250
|
+
layer: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
16251
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
16252
|
+
}, "strip", z.ZodTypeAny, {
|
|
16253
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
16254
|
+
}, {
|
|
16255
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
16256
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
16257
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
16258
|
+
}>;
|
|
16259
|
+
points: z.ZodArray<z.ZodObject<{
|
|
16260
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
16261
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
16262
|
+
}, "strip", z.ZodTypeAny, {
|
|
16263
|
+
x: number;
|
|
16264
|
+
y: number;
|
|
16265
|
+
}, {
|
|
16266
|
+
x: string | number;
|
|
16267
|
+
y: string | number;
|
|
16268
|
+
}>, "many">;
|
|
16269
|
+
}, "strip", z.ZodTypeAny, {
|
|
16270
|
+
type: "pcb_ground_plane_region";
|
|
16271
|
+
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
16272
|
+
points: {
|
|
16273
|
+
x: number;
|
|
16274
|
+
y: number;
|
|
16275
|
+
}[];
|
|
16276
|
+
pcb_ground_plane_id: string;
|
|
16277
|
+
pcb_ground_plane_region_id: string;
|
|
16278
|
+
subcircuit_id?: string | undefined;
|
|
16279
|
+
pcb_group_id?: string | undefined;
|
|
16280
|
+
}, {
|
|
16281
|
+
type: "pcb_ground_plane_region";
|
|
16282
|
+
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
16283
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
16284
|
+
};
|
|
16285
|
+
points: {
|
|
16286
|
+
x: string | number;
|
|
16287
|
+
y: string | number;
|
|
16288
|
+
}[];
|
|
16289
|
+
pcb_ground_plane_id: string;
|
|
16290
|
+
subcircuit_id?: string | undefined;
|
|
16291
|
+
pcb_group_id?: string | undefined;
|
|
16292
|
+
pcb_ground_plane_region_id?: string | undefined;
|
|
16293
|
+
}>, z.ZodObject<{
|
|
16294
|
+
type: z.ZodLiteral<"pcb_thermal_spoke">;
|
|
16295
|
+
pcb_thermal_spoke_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
16296
|
+
pcb_ground_plane_id: z.ZodString;
|
|
16297
|
+
shape: z.ZodString;
|
|
16298
|
+
spoke_count: z.ZodNumber;
|
|
16299
|
+
spoke_thickness: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
16300
|
+
spoke_inner_diameter: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
16301
|
+
spoke_outer_diameter: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
16302
|
+
pcb_plated_hole_id: z.ZodOptional<z.ZodString>;
|
|
16303
|
+
}, "strip", z.ZodTypeAny, {
|
|
16304
|
+
type: "pcb_thermal_spoke";
|
|
16305
|
+
shape: string;
|
|
16306
|
+
pcb_ground_plane_id: string;
|
|
16307
|
+
pcb_thermal_spoke_id: string;
|
|
16308
|
+
spoke_count: number;
|
|
16309
|
+
spoke_thickness: number;
|
|
16310
|
+
spoke_inner_diameter: number;
|
|
16311
|
+
spoke_outer_diameter: number;
|
|
16312
|
+
pcb_plated_hole_id?: string | undefined;
|
|
16313
|
+
}, {
|
|
16314
|
+
type: "pcb_thermal_spoke";
|
|
16315
|
+
shape: string;
|
|
16316
|
+
pcb_ground_plane_id: string;
|
|
16317
|
+
spoke_count: number;
|
|
16318
|
+
spoke_thickness: string | number;
|
|
16319
|
+
spoke_inner_diameter: string | number;
|
|
16320
|
+
spoke_outer_diameter: string | number;
|
|
16321
|
+
pcb_plated_hole_id?: string | undefined;
|
|
16322
|
+
pcb_thermal_spoke_id?: string | undefined;
|
|
16323
|
+
}>, z.ZodObject<{
|
|
15911
16324
|
type: z.ZodLiteral<"schematic_box">;
|
|
15912
16325
|
schematic_component_id: z.ZodString;
|
|
15913
16326
|
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -16888,4 +17301,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
16888
17301
|
*/
|
|
16889
17302
|
type CircuitJson = AnyCircuitElement[];
|
|
16890
17303
|
|
|
16891
|
-
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 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 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 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 PcbSmtPadPolygon, 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 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 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_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_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_test_point, source_simple_transistor, source_trace, supplier_name, time, visible_layer, voltage };
|
|
17304
|
+
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 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 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 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 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 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 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 SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, 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 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_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_text, schematic_trace, schematic_voltage_probe, 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_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_test_point, source_simple_transistor, source_trace, supplier_name, time, visible_layer, voltage };
|