circuit-json 0.0.292 → 0.0.294
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 +35 -0
- package/dist/index.d.mts +348 -2
- package/dist/index.mjs +408 -373
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -91,6 +91,7 @@ https://github.com/user-attachments/assets/2f28b7ba-689e-4d80-85b2-5bdef84b41f8
|
|
|
91
91
|
- [PcbComponentInvalidLayerError](#pcbcomponentinvalidlayererror)
|
|
92
92
|
- [PcbComponentOutsideBoardError](#pcbcomponentoutsideboarderror)
|
|
93
93
|
- [PcbCopperPour](#pcbcopperpour)
|
|
94
|
+
- [PcbCopperText](#pcbcoppertext)
|
|
94
95
|
- [PcbCourtyardOutline](#pcbcourtyardoutline)
|
|
95
96
|
- [PcbCourtyardPolygon](#pcbcourtyardpolygon)
|
|
96
97
|
- [PcbCourtyardRect](#pcbcourtyardrect)
|
|
@@ -988,6 +989,38 @@ interface PcbCopperPourRect {
|
|
|
988
989
|
}
|
|
989
990
|
```
|
|
990
991
|
|
|
992
|
+
### PcbCopperText
|
|
993
|
+
|
|
994
|
+
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/pcb/pcb_copper_text.ts)
|
|
995
|
+
|
|
996
|
+
Defines copper text on the PCB
|
|
997
|
+
|
|
998
|
+
```typescript
|
|
999
|
+
/** Defines copper text on the PCB */
|
|
1000
|
+
interface PcbCopperText {
|
|
1001
|
+
type: "pcb_copper_text"
|
|
1002
|
+
pcb_copper_text_id: string
|
|
1003
|
+
pcb_group_id?: string
|
|
1004
|
+
subcircuit_id?: string
|
|
1005
|
+
font: "tscircuit2024"
|
|
1006
|
+
font_size: Length
|
|
1007
|
+
pcb_component_id: string
|
|
1008
|
+
text: string
|
|
1009
|
+
is_knockout?: boolean
|
|
1010
|
+
knockout_padding?: {
|
|
1011
|
+
left: Length
|
|
1012
|
+
top: Length
|
|
1013
|
+
bottom: Length
|
|
1014
|
+
right: Length
|
|
1015
|
+
}
|
|
1016
|
+
ccw_rotation?: number
|
|
1017
|
+
layer: LayerRef
|
|
1018
|
+
is_mirrored?: boolean
|
|
1019
|
+
anchor_position: Point
|
|
1020
|
+
anchor_alignment: NinePointAnchor
|
|
1021
|
+
}
|
|
1022
|
+
```
|
|
1023
|
+
|
|
991
1024
|
### PcbCourtyardOutline
|
|
992
1025
|
|
|
993
1026
|
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/pcb/pcb_courtyard_outline.ts)
|
|
@@ -1092,6 +1125,7 @@ interface PcbFabricationNoteDimension {
|
|
|
1092
1125
|
from: Point
|
|
1093
1126
|
to: Point
|
|
1094
1127
|
text?: string
|
|
1128
|
+
text_ccw_rotation?: number
|
|
1095
1129
|
offset?: Length
|
|
1096
1130
|
offset_distance?: Length
|
|
1097
1131
|
offset_direction?: {
|
|
@@ -1366,6 +1400,7 @@ interface PcbNoteDimension {
|
|
|
1366
1400
|
from: Point
|
|
1367
1401
|
to: Point
|
|
1368
1402
|
text?: string
|
|
1403
|
+
text_ccw_rotation?: number
|
|
1369
1404
|
offset_distance?: Length
|
|
1370
1405
|
offset_direction?: {
|
|
1371
1406
|
x: number
|
package/dist/index.d.mts
CHANGED
|
@@ -3529,6 +3529,136 @@ interface PcbSilkscreenText {
|
|
|
3529
3529
|
*/
|
|
3530
3530
|
type PCBSilkscreenText = PcbSilkscreenText;
|
|
3531
3531
|
|
|
3532
|
+
declare const pcb_copper_text: z.ZodObject<{
|
|
3533
|
+
type: z.ZodLiteral<"pcb_copper_text">;
|
|
3534
|
+
pcb_copper_text_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3535
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
3536
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
3537
|
+
font: z.ZodDefault<z.ZodLiteral<"tscircuit2024">>;
|
|
3538
|
+
font_size: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3539
|
+
pcb_component_id: z.ZodString;
|
|
3540
|
+
text: z.ZodString;
|
|
3541
|
+
is_knockout: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
3542
|
+
knockout_padding: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
3543
|
+
left: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
3544
|
+
top: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
3545
|
+
bottom: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
3546
|
+
right: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
3547
|
+
}, "strip", z.ZodTypeAny, {
|
|
3548
|
+
top: number;
|
|
3549
|
+
bottom: number;
|
|
3550
|
+
left: number;
|
|
3551
|
+
right: number;
|
|
3552
|
+
}, {
|
|
3553
|
+
top: string | number;
|
|
3554
|
+
bottom: string | number;
|
|
3555
|
+
left: string | number;
|
|
3556
|
+
right: string | number;
|
|
3557
|
+
}>>>;
|
|
3558
|
+
ccw_rotation: z.ZodOptional<z.ZodNumber>;
|
|
3559
|
+
layer: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
3560
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
3561
|
+
}, "strip", z.ZodTypeAny, {
|
|
3562
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
3563
|
+
}, {
|
|
3564
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
3565
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
3566
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
3567
|
+
}>;
|
|
3568
|
+
is_mirrored: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
3569
|
+
anchor_position: z.ZodDefault<z.ZodObject<{
|
|
3570
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
3571
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
3572
|
+
}, "strip", z.ZodTypeAny, {
|
|
3573
|
+
x: number;
|
|
3574
|
+
y: number;
|
|
3575
|
+
}, {
|
|
3576
|
+
x: string | number;
|
|
3577
|
+
y: string | number;
|
|
3578
|
+
}>>;
|
|
3579
|
+
anchor_alignment: z.ZodDefault<z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>>;
|
|
3580
|
+
}, "strip", z.ZodTypeAny, {
|
|
3581
|
+
type: "pcb_copper_text";
|
|
3582
|
+
pcb_component_id: string;
|
|
3583
|
+
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
3584
|
+
text: string;
|
|
3585
|
+
font: "tscircuit2024";
|
|
3586
|
+
font_size: number;
|
|
3587
|
+
anchor_position: {
|
|
3588
|
+
x: number;
|
|
3589
|
+
y: number;
|
|
3590
|
+
};
|
|
3591
|
+
anchor_alignment: "center" | "top_left" | "top_center" | "top_right" | "center_left" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
3592
|
+
pcb_copper_text_id: string;
|
|
3593
|
+
subcircuit_id?: string | undefined;
|
|
3594
|
+
pcb_group_id?: string | undefined;
|
|
3595
|
+
ccw_rotation?: number | undefined;
|
|
3596
|
+
is_knockout?: boolean | undefined;
|
|
3597
|
+
knockout_padding?: {
|
|
3598
|
+
top: number;
|
|
3599
|
+
bottom: number;
|
|
3600
|
+
left: number;
|
|
3601
|
+
right: number;
|
|
3602
|
+
} | undefined;
|
|
3603
|
+
is_mirrored?: boolean | undefined;
|
|
3604
|
+
}, {
|
|
3605
|
+
type: "pcb_copper_text";
|
|
3606
|
+
pcb_component_id: string;
|
|
3607
|
+
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
3608
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
3609
|
+
};
|
|
3610
|
+
text: string;
|
|
3611
|
+
subcircuit_id?: string | undefined;
|
|
3612
|
+
pcb_group_id?: string | undefined;
|
|
3613
|
+
ccw_rotation?: number | undefined;
|
|
3614
|
+
font?: "tscircuit2024" | undefined;
|
|
3615
|
+
font_size?: string | number | undefined;
|
|
3616
|
+
is_knockout?: boolean | undefined;
|
|
3617
|
+
knockout_padding?: {
|
|
3618
|
+
top: string | number;
|
|
3619
|
+
bottom: string | number;
|
|
3620
|
+
left: string | number;
|
|
3621
|
+
right: string | number;
|
|
3622
|
+
} | undefined;
|
|
3623
|
+
is_mirrored?: boolean | undefined;
|
|
3624
|
+
anchor_position?: {
|
|
3625
|
+
x: string | number;
|
|
3626
|
+
y: string | number;
|
|
3627
|
+
} | undefined;
|
|
3628
|
+
anchor_alignment?: "center" | "top_left" | "top_center" | "top_right" | "center_left" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
3629
|
+
pcb_copper_text_id?: string | undefined;
|
|
3630
|
+
}>;
|
|
3631
|
+
type PcbCopperTextInput = z.input<typeof pcb_copper_text>;
|
|
3632
|
+
/**
|
|
3633
|
+
* Defines copper text on the PCB
|
|
3634
|
+
*/
|
|
3635
|
+
interface PcbCopperText {
|
|
3636
|
+
type: "pcb_copper_text";
|
|
3637
|
+
pcb_copper_text_id: string;
|
|
3638
|
+
pcb_group_id?: string;
|
|
3639
|
+
subcircuit_id?: string;
|
|
3640
|
+
font: "tscircuit2024";
|
|
3641
|
+
font_size: Length;
|
|
3642
|
+
pcb_component_id: string;
|
|
3643
|
+
text: string;
|
|
3644
|
+
is_knockout?: boolean;
|
|
3645
|
+
knockout_padding?: {
|
|
3646
|
+
left: Length;
|
|
3647
|
+
top: Length;
|
|
3648
|
+
bottom: Length;
|
|
3649
|
+
right: Length;
|
|
3650
|
+
};
|
|
3651
|
+
ccw_rotation?: number;
|
|
3652
|
+
layer: LayerRef;
|
|
3653
|
+
is_mirrored?: boolean;
|
|
3654
|
+
anchor_position: Point;
|
|
3655
|
+
anchor_alignment: NinePointAnchor;
|
|
3656
|
+
}
|
|
3657
|
+
/**
|
|
3658
|
+
* @deprecated use PcbCopperText
|
|
3659
|
+
*/
|
|
3660
|
+
type PCBCopperText = PcbCopperText;
|
|
3661
|
+
|
|
3532
3662
|
declare const pcb_silkscreen_rect: z.ZodObject<{
|
|
3533
3663
|
type: z.ZodLiteral<"pcb_silkscreen_rect">;
|
|
3534
3664
|
pcb_silkscreen_rect_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -4013,6 +4143,7 @@ declare const pcb_fabrication_note_dimension: z.ZodObject<{
|
|
|
4013
4143
|
y: string | number;
|
|
4014
4144
|
}>;
|
|
4015
4145
|
text: z.ZodOptional<z.ZodString>;
|
|
4146
|
+
text_ccw_rotation: z.ZodOptional<z.ZodNumber>;
|
|
4016
4147
|
offset: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4017
4148
|
offset_distance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4018
4149
|
offset_direction: z.ZodOptional<z.ZodObject<{
|
|
@@ -4049,6 +4180,7 @@ declare const pcb_fabrication_note_dimension: z.ZodObject<{
|
|
|
4049
4180
|
pcb_group_id?: string | undefined;
|
|
4050
4181
|
text?: string | undefined;
|
|
4051
4182
|
color?: string | undefined;
|
|
4183
|
+
text_ccw_rotation?: number | undefined;
|
|
4052
4184
|
offset?: number | undefined;
|
|
4053
4185
|
offset_distance?: number | undefined;
|
|
4054
4186
|
offset_direction?: {
|
|
@@ -4074,6 +4206,7 @@ declare const pcb_fabrication_note_dimension: z.ZodObject<{
|
|
|
4074
4206
|
font_size?: string | number | undefined;
|
|
4075
4207
|
color?: string | undefined;
|
|
4076
4208
|
pcb_fabrication_note_dimension_id?: string | undefined;
|
|
4209
|
+
text_ccw_rotation?: number | undefined;
|
|
4077
4210
|
offset?: string | number | undefined;
|
|
4078
4211
|
offset_distance?: string | number | undefined;
|
|
4079
4212
|
offset_direction?: {
|
|
@@ -4096,6 +4229,7 @@ interface PcbFabricationNoteDimension {
|
|
|
4096
4229
|
from: Point;
|
|
4097
4230
|
to: Point;
|
|
4098
4231
|
text?: string;
|
|
4232
|
+
text_ccw_rotation?: number;
|
|
4099
4233
|
offset?: Length;
|
|
4100
4234
|
offset_distance?: Length;
|
|
4101
4235
|
offset_direction?: {
|
|
@@ -4433,6 +4567,7 @@ declare const pcb_note_dimension: z.ZodObject<{
|
|
|
4433
4567
|
y: string | number;
|
|
4434
4568
|
}>;
|
|
4435
4569
|
text: z.ZodOptional<z.ZodString>;
|
|
4570
|
+
text_ccw_rotation: z.ZodOptional<z.ZodNumber>;
|
|
4436
4571
|
offset_distance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4437
4572
|
offset_direction: z.ZodOptional<z.ZodObject<{
|
|
4438
4573
|
x: z.ZodNumber;
|
|
@@ -4468,6 +4603,7 @@ declare const pcb_note_dimension: z.ZodObject<{
|
|
|
4468
4603
|
pcb_group_id?: string | undefined;
|
|
4469
4604
|
text?: string | undefined;
|
|
4470
4605
|
color?: string | undefined;
|
|
4606
|
+
text_ccw_rotation?: number | undefined;
|
|
4471
4607
|
offset_distance?: number | undefined;
|
|
4472
4608
|
offset_direction?: {
|
|
4473
4609
|
x: number;
|
|
@@ -4491,6 +4627,7 @@ declare const pcb_note_dimension: z.ZodObject<{
|
|
|
4491
4627
|
font?: "tscircuit2024" | undefined;
|
|
4492
4628
|
font_size?: string | number | undefined;
|
|
4493
4629
|
color?: string | undefined;
|
|
4630
|
+
text_ccw_rotation?: number | undefined;
|
|
4494
4631
|
offset_distance?: string | number | undefined;
|
|
4495
4632
|
offset_direction?: {
|
|
4496
4633
|
x: number;
|
|
@@ -4513,6 +4650,7 @@ interface PcbNoteDimension {
|
|
|
4513
4650
|
from: Point;
|
|
4514
4651
|
to: Point;
|
|
4515
4652
|
text?: string;
|
|
4653
|
+
text_ccw_rotation?: number;
|
|
4516
4654
|
offset_distance?: Length;
|
|
4517
4655
|
offset_direction?: {
|
|
4518
4656
|
x: number;
|
|
@@ -6518,7 +6656,7 @@ interface PcbCourtyardPolygon {
|
|
|
6518
6656
|
*/
|
|
6519
6657
|
type PCBCourtyardPolygon = PcbCourtyardPolygon;
|
|
6520
6658
|
|
|
6521
|
-
type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceError | PcbTraceMissingError | PcbMissingFootprintError | ExternalFootprintLoadError | CircuitJsonFootprintLoadError | PcbManualEditConflictWarning | PcbPortNotMatchedError | PcbPortNotConnectedError | PcbVia | PcbNet | PcbBoard | PcbPanel | PcbPlacementError | PcbTraceHint | PcbSilkscreenLine | PcbSilkscreenPath | PcbSilkscreenText | PcbSilkscreenRect | PcbSilkscreenCircle | PcbFabricationNoteRect | PcbFabricationNoteDimension | PcbNoteText | PcbNoteRect | PcbNotePath | PcbNoteLine | PcbNoteDimension | PcbAutoroutingError | PcbFootprintOverlapError | PcbCutout | PcbBreakoutPoint | PcbGroundPlane | PcbGroundPlaneRegion | PcbThermalSpoke | PcbCopperPour | PcbComponentOutsideBoardError | PcbComponentInvalidLayerError | PcbViaClearanceError | PcbCourtyardRect | PcbCourtyardOutline | PcbCourtyardPolygon;
|
|
6659
|
+
type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceError | PcbTraceMissingError | PcbMissingFootprintError | ExternalFootprintLoadError | CircuitJsonFootprintLoadError | PcbManualEditConflictWarning | PcbPortNotMatchedError | PcbPortNotConnectedError | PcbVia | PcbNet | PcbBoard | PcbPanel | PcbPlacementError | PcbTraceHint | PcbSilkscreenLine | PcbSilkscreenPath | PcbSilkscreenText | PcbCopperText | PcbSilkscreenRect | PcbSilkscreenCircle | PcbFabricationNoteRect | PcbFabricationNoteDimension | PcbNoteText | PcbNoteRect | PcbNotePath | PcbNoteLine | PcbNoteDimension | PcbAutoroutingError | PcbFootprintOverlapError | PcbCutout | PcbBreakoutPoint | PcbGroundPlane | PcbGroundPlaneRegion | PcbThermalSpoke | PcbCopperPour | PcbComponentOutsideBoardError | PcbComponentInvalidLayerError | PcbViaClearanceError | PcbCourtyardRect | PcbCourtyardOutline | PcbCourtyardPolygon;
|
|
6522
6660
|
|
|
6523
6661
|
interface SchematicBox {
|
|
6524
6662
|
type: "schematic_box";
|
|
@@ -15702,6 +15840,104 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15702
15840
|
y: string | number;
|
|
15703
15841
|
} | undefined;
|
|
15704
15842
|
anchor_alignment?: "center" | "top_left" | "top_center" | "top_right" | "center_left" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
15843
|
+
}>, z.ZodObject<{
|
|
15844
|
+
type: z.ZodLiteral<"pcb_copper_text">;
|
|
15845
|
+
pcb_copper_text_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15846
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
15847
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
15848
|
+
font: z.ZodDefault<z.ZodLiteral<"tscircuit2024">>;
|
|
15849
|
+
font_size: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15850
|
+
pcb_component_id: z.ZodString;
|
|
15851
|
+
text: z.ZodString;
|
|
15852
|
+
is_knockout: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
15853
|
+
knockout_padding: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
15854
|
+
left: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15855
|
+
top: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15856
|
+
bottom: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15857
|
+
right: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15858
|
+
}, "strip", z.ZodTypeAny, {
|
|
15859
|
+
top: number;
|
|
15860
|
+
bottom: number;
|
|
15861
|
+
left: number;
|
|
15862
|
+
right: number;
|
|
15863
|
+
}, {
|
|
15864
|
+
top: string | number;
|
|
15865
|
+
bottom: string | number;
|
|
15866
|
+
left: string | number;
|
|
15867
|
+
right: string | number;
|
|
15868
|
+
}>>>;
|
|
15869
|
+
ccw_rotation: z.ZodOptional<z.ZodNumber>;
|
|
15870
|
+
layer: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
15871
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
15872
|
+
}, "strip", z.ZodTypeAny, {
|
|
15873
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
15874
|
+
}, {
|
|
15875
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
15876
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
15877
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
15878
|
+
}>;
|
|
15879
|
+
is_mirrored: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
15880
|
+
anchor_position: z.ZodDefault<z.ZodObject<{
|
|
15881
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15882
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15883
|
+
}, "strip", z.ZodTypeAny, {
|
|
15884
|
+
x: number;
|
|
15885
|
+
y: number;
|
|
15886
|
+
}, {
|
|
15887
|
+
x: string | number;
|
|
15888
|
+
y: string | number;
|
|
15889
|
+
}>>;
|
|
15890
|
+
anchor_alignment: z.ZodDefault<z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>>;
|
|
15891
|
+
}, "strip", z.ZodTypeAny, {
|
|
15892
|
+
type: "pcb_copper_text";
|
|
15893
|
+
pcb_component_id: string;
|
|
15894
|
+
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
15895
|
+
text: string;
|
|
15896
|
+
font: "tscircuit2024";
|
|
15897
|
+
font_size: number;
|
|
15898
|
+
anchor_position: {
|
|
15899
|
+
x: number;
|
|
15900
|
+
y: number;
|
|
15901
|
+
};
|
|
15902
|
+
anchor_alignment: "center" | "top_left" | "top_center" | "top_right" | "center_left" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
15903
|
+
pcb_copper_text_id: string;
|
|
15904
|
+
subcircuit_id?: string | undefined;
|
|
15905
|
+
pcb_group_id?: string | undefined;
|
|
15906
|
+
ccw_rotation?: number | undefined;
|
|
15907
|
+
is_knockout?: boolean | undefined;
|
|
15908
|
+
knockout_padding?: {
|
|
15909
|
+
top: number;
|
|
15910
|
+
bottom: number;
|
|
15911
|
+
left: number;
|
|
15912
|
+
right: number;
|
|
15913
|
+
} | undefined;
|
|
15914
|
+
is_mirrored?: boolean | undefined;
|
|
15915
|
+
}, {
|
|
15916
|
+
type: "pcb_copper_text";
|
|
15917
|
+
pcb_component_id: string;
|
|
15918
|
+
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
15919
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
15920
|
+
};
|
|
15921
|
+
text: string;
|
|
15922
|
+
subcircuit_id?: string | undefined;
|
|
15923
|
+
pcb_group_id?: string | undefined;
|
|
15924
|
+
ccw_rotation?: number | undefined;
|
|
15925
|
+
font?: "tscircuit2024" | undefined;
|
|
15926
|
+
font_size?: string | number | undefined;
|
|
15927
|
+
is_knockout?: boolean | undefined;
|
|
15928
|
+
knockout_padding?: {
|
|
15929
|
+
top: string | number;
|
|
15930
|
+
bottom: string | number;
|
|
15931
|
+
left: string | number;
|
|
15932
|
+
right: string | number;
|
|
15933
|
+
} | undefined;
|
|
15934
|
+
is_mirrored?: boolean | undefined;
|
|
15935
|
+
anchor_position?: {
|
|
15936
|
+
x: string | number;
|
|
15937
|
+
y: string | number;
|
|
15938
|
+
} | undefined;
|
|
15939
|
+
anchor_alignment?: "center" | "top_left" | "top_center" | "top_right" | "center_left" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
15940
|
+
pcb_copper_text_id?: string | undefined;
|
|
15705
15941
|
}>, z.ZodObject<{
|
|
15706
15942
|
type: z.ZodLiteral<"pcb_silkscreen_rect">;
|
|
15707
15943
|
pcb_silkscreen_rect_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -16254,6 +16490,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16254
16490
|
y: string | number;
|
|
16255
16491
|
}>;
|
|
16256
16492
|
text: z.ZodOptional<z.ZodString>;
|
|
16493
|
+
text_ccw_rotation: z.ZodOptional<z.ZodNumber>;
|
|
16257
16494
|
offset: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
16258
16495
|
offset_distance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
16259
16496
|
offset_direction: z.ZodOptional<z.ZodObject<{
|
|
@@ -16290,6 +16527,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16290
16527
|
pcb_group_id?: string | undefined;
|
|
16291
16528
|
text?: string | undefined;
|
|
16292
16529
|
color?: string | undefined;
|
|
16530
|
+
text_ccw_rotation?: number | undefined;
|
|
16293
16531
|
offset?: number | undefined;
|
|
16294
16532
|
offset_distance?: number | undefined;
|
|
16295
16533
|
offset_direction?: {
|
|
@@ -16315,6 +16553,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16315
16553
|
font_size?: string | number | undefined;
|
|
16316
16554
|
color?: string | undefined;
|
|
16317
16555
|
pcb_fabrication_note_dimension_id?: string | undefined;
|
|
16556
|
+
text_ccw_rotation?: number | undefined;
|
|
16318
16557
|
offset?: string | number | undefined;
|
|
16319
16558
|
offset_distance?: string | number | undefined;
|
|
16320
16559
|
offset_direction?: {
|
|
@@ -16560,6 +16799,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16560
16799
|
y: string | number;
|
|
16561
16800
|
}>;
|
|
16562
16801
|
text: z.ZodOptional<z.ZodString>;
|
|
16802
|
+
text_ccw_rotation: z.ZodOptional<z.ZodNumber>;
|
|
16563
16803
|
offset_distance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
16564
16804
|
offset_direction: z.ZodOptional<z.ZodObject<{
|
|
16565
16805
|
x: z.ZodNumber;
|
|
@@ -16595,6 +16835,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16595
16835
|
pcb_group_id?: string | undefined;
|
|
16596
16836
|
text?: string | undefined;
|
|
16597
16837
|
color?: string | undefined;
|
|
16838
|
+
text_ccw_rotation?: number | undefined;
|
|
16598
16839
|
offset_distance?: number | undefined;
|
|
16599
16840
|
offset_direction?: {
|
|
16600
16841
|
x: number;
|
|
@@ -16618,6 +16859,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16618
16859
|
font?: "tscircuit2024" | undefined;
|
|
16619
16860
|
font_size?: string | number | undefined;
|
|
16620
16861
|
color?: string | undefined;
|
|
16862
|
+
text_ccw_rotation?: number | undefined;
|
|
16621
16863
|
offset_distance?: string | number | undefined;
|
|
16622
16864
|
offset_direction?: {
|
|
16623
16865
|
x: number;
|
|
@@ -23051,6 +23293,104 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23051
23293
|
y: string | number;
|
|
23052
23294
|
} | undefined;
|
|
23053
23295
|
anchor_alignment?: "center" | "top_left" | "top_center" | "top_right" | "center_left" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
23296
|
+
}>, z.ZodObject<{
|
|
23297
|
+
type: z.ZodLiteral<"pcb_copper_text">;
|
|
23298
|
+
pcb_copper_text_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
23299
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
23300
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
23301
|
+
font: z.ZodDefault<z.ZodLiteral<"tscircuit2024">>;
|
|
23302
|
+
font_size: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23303
|
+
pcb_component_id: z.ZodString;
|
|
23304
|
+
text: z.ZodString;
|
|
23305
|
+
is_knockout: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
23306
|
+
knockout_padding: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
23307
|
+
left: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23308
|
+
top: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23309
|
+
bottom: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23310
|
+
right: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23311
|
+
}, "strip", z.ZodTypeAny, {
|
|
23312
|
+
top: number;
|
|
23313
|
+
bottom: number;
|
|
23314
|
+
left: number;
|
|
23315
|
+
right: number;
|
|
23316
|
+
}, {
|
|
23317
|
+
top: string | number;
|
|
23318
|
+
bottom: string | number;
|
|
23319
|
+
left: string | number;
|
|
23320
|
+
right: string | number;
|
|
23321
|
+
}>>>;
|
|
23322
|
+
ccw_rotation: z.ZodOptional<z.ZodNumber>;
|
|
23323
|
+
layer: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
23324
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
23325
|
+
}, "strip", z.ZodTypeAny, {
|
|
23326
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
23327
|
+
}, {
|
|
23328
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
23329
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
23330
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
23331
|
+
}>;
|
|
23332
|
+
is_mirrored: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
23333
|
+
anchor_position: z.ZodDefault<z.ZodObject<{
|
|
23334
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23335
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23336
|
+
}, "strip", z.ZodTypeAny, {
|
|
23337
|
+
x: number;
|
|
23338
|
+
y: number;
|
|
23339
|
+
}, {
|
|
23340
|
+
x: string | number;
|
|
23341
|
+
y: string | number;
|
|
23342
|
+
}>>;
|
|
23343
|
+
anchor_alignment: z.ZodDefault<z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>>;
|
|
23344
|
+
}, "strip", z.ZodTypeAny, {
|
|
23345
|
+
type: "pcb_copper_text";
|
|
23346
|
+
pcb_component_id: string;
|
|
23347
|
+
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
23348
|
+
text: string;
|
|
23349
|
+
font: "tscircuit2024";
|
|
23350
|
+
font_size: number;
|
|
23351
|
+
anchor_position: {
|
|
23352
|
+
x: number;
|
|
23353
|
+
y: number;
|
|
23354
|
+
};
|
|
23355
|
+
anchor_alignment: "center" | "top_left" | "top_center" | "top_right" | "center_left" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
23356
|
+
pcb_copper_text_id: string;
|
|
23357
|
+
subcircuit_id?: string | undefined;
|
|
23358
|
+
pcb_group_id?: string | undefined;
|
|
23359
|
+
ccw_rotation?: number | undefined;
|
|
23360
|
+
is_knockout?: boolean | undefined;
|
|
23361
|
+
knockout_padding?: {
|
|
23362
|
+
top: number;
|
|
23363
|
+
bottom: number;
|
|
23364
|
+
left: number;
|
|
23365
|
+
right: number;
|
|
23366
|
+
} | undefined;
|
|
23367
|
+
is_mirrored?: boolean | undefined;
|
|
23368
|
+
}, {
|
|
23369
|
+
type: "pcb_copper_text";
|
|
23370
|
+
pcb_component_id: string;
|
|
23371
|
+
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
23372
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
23373
|
+
};
|
|
23374
|
+
text: string;
|
|
23375
|
+
subcircuit_id?: string | undefined;
|
|
23376
|
+
pcb_group_id?: string | undefined;
|
|
23377
|
+
ccw_rotation?: number | undefined;
|
|
23378
|
+
font?: "tscircuit2024" | undefined;
|
|
23379
|
+
font_size?: string | number | undefined;
|
|
23380
|
+
is_knockout?: boolean | undefined;
|
|
23381
|
+
knockout_padding?: {
|
|
23382
|
+
top: string | number;
|
|
23383
|
+
bottom: string | number;
|
|
23384
|
+
left: string | number;
|
|
23385
|
+
right: string | number;
|
|
23386
|
+
} | undefined;
|
|
23387
|
+
is_mirrored?: boolean | undefined;
|
|
23388
|
+
anchor_position?: {
|
|
23389
|
+
x: string | number;
|
|
23390
|
+
y: string | number;
|
|
23391
|
+
} | undefined;
|
|
23392
|
+
anchor_alignment?: "center" | "top_left" | "top_center" | "top_right" | "center_left" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
23393
|
+
pcb_copper_text_id?: string | undefined;
|
|
23054
23394
|
}>, z.ZodObject<{
|
|
23055
23395
|
type: z.ZodLiteral<"pcb_silkscreen_rect">;
|
|
23056
23396
|
pcb_silkscreen_rect_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -23603,6 +23943,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23603
23943
|
y: string | number;
|
|
23604
23944
|
}>;
|
|
23605
23945
|
text: z.ZodOptional<z.ZodString>;
|
|
23946
|
+
text_ccw_rotation: z.ZodOptional<z.ZodNumber>;
|
|
23606
23947
|
offset: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23607
23948
|
offset_distance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23608
23949
|
offset_direction: z.ZodOptional<z.ZodObject<{
|
|
@@ -23639,6 +23980,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23639
23980
|
pcb_group_id?: string | undefined;
|
|
23640
23981
|
text?: string | undefined;
|
|
23641
23982
|
color?: string | undefined;
|
|
23983
|
+
text_ccw_rotation?: number | undefined;
|
|
23642
23984
|
offset?: number | undefined;
|
|
23643
23985
|
offset_distance?: number | undefined;
|
|
23644
23986
|
offset_direction?: {
|
|
@@ -23664,6 +24006,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23664
24006
|
font_size?: string | number | undefined;
|
|
23665
24007
|
color?: string | undefined;
|
|
23666
24008
|
pcb_fabrication_note_dimension_id?: string | undefined;
|
|
24009
|
+
text_ccw_rotation?: number | undefined;
|
|
23667
24010
|
offset?: string | number | undefined;
|
|
23668
24011
|
offset_distance?: string | number | undefined;
|
|
23669
24012
|
offset_direction?: {
|
|
@@ -23909,6 +24252,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23909
24252
|
y: string | number;
|
|
23910
24253
|
}>;
|
|
23911
24254
|
text: z.ZodOptional<z.ZodString>;
|
|
24255
|
+
text_ccw_rotation: z.ZodOptional<z.ZodNumber>;
|
|
23912
24256
|
offset_distance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23913
24257
|
offset_direction: z.ZodOptional<z.ZodObject<{
|
|
23914
24258
|
x: z.ZodNumber;
|
|
@@ -23944,6 +24288,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23944
24288
|
pcb_group_id?: string | undefined;
|
|
23945
24289
|
text?: string | undefined;
|
|
23946
24290
|
color?: string | undefined;
|
|
24291
|
+
text_ccw_rotation?: number | undefined;
|
|
23947
24292
|
offset_distance?: number | undefined;
|
|
23948
24293
|
offset_direction?: {
|
|
23949
24294
|
x: number;
|
|
@@ -23967,6 +24312,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23967
24312
|
font?: "tscircuit2024" | undefined;
|
|
23968
24313
|
font_size?: string | number | undefined;
|
|
23969
24314
|
color?: string | undefined;
|
|
24315
|
+
text_ccw_rotation?: number | undefined;
|
|
23970
24316
|
offset_distance?: string | number | undefined;
|
|
23971
24317
|
offset_direction?: {
|
|
23972
24318
|
x: number;
|
|
@@ -26335,4 +26681,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
26335
26681
|
*/
|
|
26336
26682
|
type CircuitJson = AnyCircuitElement[];
|
|
26337
26683
|
|
|
26338
|
-
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type BRepShape, type CadComponent, type CadComponentInput, type CircuitJson, type CircuitJsonError, type CircuitJsonFootprintLoadError, type CircuitJsonFootprintLoadErrorInput, type Distance, type ExperimentType, type ExternalFootprintLoadError, type ExternalFootprintLoadErrorInput, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBCourtyardOutline, type PCBCourtyardPolygon, type PCBCourtyardRect, type PCBFabricationNoteDimension, type PCBFabricationNotePath, type PCBFabricationNoteRect, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPanel, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbComponentInvalidLayerError, type PcbComponentInvalidLayerErrorInput, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardPolygon, type PcbCourtyardPolygonInput, type PcbCourtyardRect, type PcbCourtyardRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNoteDimension, type PcbFabricationNoteDimensionInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteRect, type PcbFabricationNoteRectInput, 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 PcbHolePill, type PcbHolePillInput, type PcbHolePillWithRectPad, type PcbHoleRotatedPill, type PcbHoleRotatedPillInput, type PcbHoleRotatedPillWithRectPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbNet, type PcbNetInput, type PcbNoteDimension, type PcbNoteDimensionInput, type PcbNoteLine, type PcbNoteLineInput, type PcbNotePath, type PcbNotePathInput, type PcbNoteRect, type PcbNoteRectInput, type PcbNoteText, type PcbNoteTextInput, type PcbPanel, type PcbPanelInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotConnectedError, type PcbPortNotConnectedErrorInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadPolygon, type PcbSmtPadRect, type PcbSmtPadRotatedPill, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbThermalSpoke, type PcbThermalSpokeInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceMissingError, type PcbTraceMissingErrorInput, type PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicArc, type SchematicArcInput, type SchematicBox, type SchematicBoxInput, type SchematicCircle, type SchematicCircleInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicRect, type SchematicRectInput, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationVoltageProbe, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePinout, type SourceSimplePinoutInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type UnknownErrorFindingPart, type UnknownErrorFindingPartInput, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, battery_capacity, brep_shape, cad_component, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, ms, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_outside_board_error, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_courtyard_outline, pcb_courtyard_polygon, pcb_courtyard_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_dimension, pcb_fabrication_note_path, pcb_fabrication_note_rect, 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_hole_pill_shape, pcb_hole_rotated_pill_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_net, pcb_note_dimension, pcb_note_line, pcb_note_path, pcb_note_rect, pcb_note_text, pcb_panel, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_connected_error, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_thermal_spoke, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_missing_error, pcb_trace_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_via, pcb_via_clearance_error, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, rotation, route_hint_point, schematic_arc, schematic_box, schematic_circle, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_rect, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_voltage_source, simulation_dc_voltage_source, simulation_experiment, simulation_switch, simulation_transient_voltage_graph, simulation_voltage_probe, simulation_voltage_source, size, source_board, source_component_base, source_failed_to_create_component_error, source_group, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, source_pin_missing_trace_warning, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_pin_header, source_simple_pinout, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_trace, source_trace_not_connected_error, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|
|
26684
|
+
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type BRepShape, type CadComponent, type CadComponentInput, type CircuitJson, type CircuitJsonError, type CircuitJsonFootprintLoadError, type CircuitJsonFootprintLoadErrorInput, type Distance, type ExperimentType, type ExternalFootprintLoadError, type ExternalFootprintLoadErrorInput, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBCopperText, type PCBCourtyardOutline, type PCBCourtyardPolygon, type PCBCourtyardRect, type PCBFabricationNoteDimension, type PCBFabricationNotePath, type PCBFabricationNoteRect, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPanel, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbComponentInvalidLayerError, type PcbComponentInvalidLayerErrorInput, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCopperText, type PcbCopperTextInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardPolygon, type PcbCourtyardPolygonInput, type PcbCourtyardRect, type PcbCourtyardRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNoteDimension, type PcbFabricationNoteDimensionInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteRect, type PcbFabricationNoteRectInput, 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 PcbHolePill, type PcbHolePillInput, type PcbHolePillWithRectPad, type PcbHoleRotatedPill, type PcbHoleRotatedPillInput, type PcbHoleRotatedPillWithRectPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbNet, type PcbNetInput, type PcbNoteDimension, type PcbNoteDimensionInput, type PcbNoteLine, type PcbNoteLineInput, type PcbNotePath, type PcbNotePathInput, type PcbNoteRect, type PcbNoteRectInput, type PcbNoteText, type PcbNoteTextInput, type PcbPanel, type PcbPanelInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotConnectedError, type PcbPortNotConnectedErrorInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadPolygon, type PcbSmtPadRect, type PcbSmtPadRotatedPill, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbThermalSpoke, type PcbThermalSpokeInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceMissingError, type PcbTraceMissingErrorInput, type PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicArc, type SchematicArcInput, type SchematicBox, type SchematicBoxInput, type SchematicCircle, type SchematicCircleInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicRect, type SchematicRectInput, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationVoltageProbe, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePinout, type SourceSimplePinoutInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type UnknownErrorFindingPart, type UnknownErrorFindingPartInput, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, battery_capacity, brep_shape, cad_component, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, ms, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_outside_board_error, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_copper_text, pcb_courtyard_outline, pcb_courtyard_polygon, pcb_courtyard_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_dimension, pcb_fabrication_note_path, pcb_fabrication_note_rect, 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_hole_pill_shape, pcb_hole_rotated_pill_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_net, pcb_note_dimension, pcb_note_line, pcb_note_path, pcb_note_rect, pcb_note_text, pcb_panel, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_connected_error, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_thermal_spoke, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_missing_error, pcb_trace_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_via, pcb_via_clearance_error, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, rotation, route_hint_point, schematic_arc, schematic_box, schematic_circle, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_rect, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_voltage_source, simulation_dc_voltage_source, simulation_experiment, simulation_switch, simulation_transient_voltage_graph, simulation_voltage_probe, simulation_voltage_source, size, source_board, source_component_base, source_failed_to_create_component_error, source_group, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, source_pin_missing_trace_warning, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_pin_header, source_simple_pinout, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_trace, source_trace_not_connected_error, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|