circuit-json 0.0.293 → 0.0.295
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 +36 -2
- package/dist/index.d.mts +358 -22
- package/dist/index.mjs +411 -377
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1363,7 +1363,7 @@ declare const pcb_port: z.ZodObject<{
|
|
|
1363
1363
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
1364
1364
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
1365
1365
|
source_port_id: z.ZodString;
|
|
1366
|
-
pcb_component_id: z.ZodString
|
|
1366
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
1367
1367
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1368
1368
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1369
1369
|
layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -1380,10 +1380,10 @@ declare const pcb_port: z.ZodObject<{
|
|
|
1380
1380
|
x: number;
|
|
1381
1381
|
y: number;
|
|
1382
1382
|
type: "pcb_port";
|
|
1383
|
-
pcb_component_id: string;
|
|
1384
1383
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
1385
1384
|
pcb_port_id: string;
|
|
1386
1385
|
source_port_id: string;
|
|
1386
|
+
pcb_component_id?: string | undefined;
|
|
1387
1387
|
subcircuit_id?: string | undefined;
|
|
1388
1388
|
pcb_group_id?: string | undefined;
|
|
1389
1389
|
is_board_pinout?: boolean | undefined;
|
|
@@ -1391,11 +1391,11 @@ declare const pcb_port: z.ZodObject<{
|
|
|
1391
1391
|
x: string | number;
|
|
1392
1392
|
y: string | number;
|
|
1393
1393
|
type: "pcb_port";
|
|
1394
|
-
pcb_component_id: string;
|
|
1395
1394
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
1396
1395
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1397
1396
|
})[];
|
|
1398
1397
|
source_port_id: string;
|
|
1398
|
+
pcb_component_id?: string | undefined;
|
|
1399
1399
|
subcircuit_id?: string | undefined;
|
|
1400
1400
|
pcb_group_id?: string | undefined;
|
|
1401
1401
|
pcb_port_id?: string | undefined;
|
|
@@ -1411,7 +1411,7 @@ interface PcbPort {
|
|
|
1411
1411
|
pcb_group_id?: string;
|
|
1412
1412
|
subcircuit_id?: string;
|
|
1413
1413
|
source_port_id: string;
|
|
1414
|
-
pcb_component_id
|
|
1414
|
+
pcb_component_id?: string;
|
|
1415
1415
|
x: Distance;
|
|
1416
1416
|
y: Distance;
|
|
1417
1417
|
layers: LayerRef[];
|
|
@@ -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>>;
|
|
@@ -6526,7 +6656,7 @@ interface PcbCourtyardPolygon {
|
|
|
6526
6656
|
*/
|
|
6527
6657
|
type PCBCourtyardPolygon = PcbCourtyardPolygon;
|
|
6528
6658
|
|
|
6529
|
-
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;
|
|
6530
6660
|
|
|
6531
6661
|
interface SchematicBox {
|
|
6532
6662
|
type: "schematic_box";
|
|
@@ -10808,25 +10938,28 @@ declare const source_port: z.ZodObject<{
|
|
|
10808
10938
|
port_hints: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
10809
10939
|
name: z.ZodString;
|
|
10810
10940
|
source_port_id: z.ZodString;
|
|
10811
|
-
source_component_id: z.ZodString
|
|
10941
|
+
source_component_id: z.ZodOptional<z.ZodString>;
|
|
10942
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
10812
10943
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
10813
10944
|
subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
|
|
10814
10945
|
}, "strip", z.ZodTypeAny, {
|
|
10815
10946
|
type: "source_port";
|
|
10816
10947
|
name: string;
|
|
10817
|
-
source_component_id: string;
|
|
10818
10948
|
source_port_id: string;
|
|
10949
|
+
source_component_id?: string | undefined;
|
|
10819
10950
|
subcircuit_id?: string | undefined;
|
|
10820
10951
|
port_hints?: string[] | undefined;
|
|
10952
|
+
source_group_id?: string | undefined;
|
|
10821
10953
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
10822
10954
|
pin_number?: number | undefined;
|
|
10823
10955
|
}, {
|
|
10824
10956
|
type: "source_port";
|
|
10825
10957
|
name: string;
|
|
10826
|
-
source_component_id: string;
|
|
10827
10958
|
source_port_id: string;
|
|
10959
|
+
source_component_id?: string | undefined;
|
|
10828
10960
|
subcircuit_id?: string | undefined;
|
|
10829
10961
|
port_hints?: string[] | undefined;
|
|
10962
|
+
source_group_id?: string | undefined;
|
|
10830
10963
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
10831
10964
|
pin_number?: number | undefined;
|
|
10832
10965
|
}>;
|
|
@@ -10840,7 +10973,8 @@ interface SourcePort {
|
|
|
10840
10973
|
port_hints?: string[];
|
|
10841
10974
|
name: string;
|
|
10842
10975
|
source_port_id: string;
|
|
10843
|
-
source_component_id
|
|
10976
|
+
source_component_id?: string;
|
|
10977
|
+
source_group_id?: string;
|
|
10844
10978
|
subcircuit_id?: string;
|
|
10845
10979
|
subcircuit_connectivity_map_key?: string;
|
|
10846
10980
|
}
|
|
@@ -11668,25 +11802,28 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11668
11802
|
port_hints: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
11669
11803
|
name: z.ZodString;
|
|
11670
11804
|
source_port_id: z.ZodString;
|
|
11671
|
-
source_component_id: z.ZodString
|
|
11805
|
+
source_component_id: z.ZodOptional<z.ZodString>;
|
|
11806
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11672
11807
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
11673
11808
|
subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
|
|
11674
11809
|
}, "strip", z.ZodTypeAny, {
|
|
11675
11810
|
type: "source_port";
|
|
11676
11811
|
name: string;
|
|
11677
|
-
source_component_id: string;
|
|
11678
11812
|
source_port_id: string;
|
|
11813
|
+
source_component_id?: string | undefined;
|
|
11679
11814
|
subcircuit_id?: string | undefined;
|
|
11680
11815
|
port_hints?: string[] | undefined;
|
|
11816
|
+
source_group_id?: string | undefined;
|
|
11681
11817
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
11682
11818
|
pin_number?: number | undefined;
|
|
11683
11819
|
}, {
|
|
11684
11820
|
type: "source_port";
|
|
11685
11821
|
name: string;
|
|
11686
|
-
source_component_id: string;
|
|
11687
11822
|
source_port_id: string;
|
|
11823
|
+
source_component_id?: string | undefined;
|
|
11688
11824
|
subcircuit_id?: string | undefined;
|
|
11689
11825
|
port_hints?: string[] | undefined;
|
|
11826
|
+
source_group_id?: string | undefined;
|
|
11690
11827
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
11691
11828
|
pin_number?: number | undefined;
|
|
11692
11829
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
@@ -14357,7 +14494,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14357
14494
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
14358
14495
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
14359
14496
|
source_port_id: z.ZodString;
|
|
14360
|
-
pcb_component_id: z.ZodString
|
|
14497
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
14361
14498
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14362
14499
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14363
14500
|
layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -14374,10 +14511,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14374
14511
|
x: number;
|
|
14375
14512
|
y: number;
|
|
14376
14513
|
type: "pcb_port";
|
|
14377
|
-
pcb_component_id: string;
|
|
14378
14514
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
14379
14515
|
pcb_port_id: string;
|
|
14380
14516
|
source_port_id: string;
|
|
14517
|
+
pcb_component_id?: string | undefined;
|
|
14381
14518
|
subcircuit_id?: string | undefined;
|
|
14382
14519
|
pcb_group_id?: string | undefined;
|
|
14383
14520
|
is_board_pinout?: boolean | undefined;
|
|
@@ -14385,11 +14522,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14385
14522
|
x: string | number;
|
|
14386
14523
|
y: string | number;
|
|
14387
14524
|
type: "pcb_port";
|
|
14388
|
-
pcb_component_id: string;
|
|
14389
14525
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
14390
14526
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
14391
14527
|
})[];
|
|
14392
14528
|
source_port_id: string;
|
|
14529
|
+
pcb_component_id?: string | undefined;
|
|
14393
14530
|
subcircuit_id?: string | undefined;
|
|
14394
14531
|
pcb_group_id?: string | undefined;
|
|
14395
14532
|
pcb_port_id?: string | undefined;
|
|
@@ -15710,6 +15847,104 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15710
15847
|
y: string | number;
|
|
15711
15848
|
} | undefined;
|
|
15712
15849
|
anchor_alignment?: "center" | "top_left" | "top_center" | "top_right" | "center_left" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
15850
|
+
}>, z.ZodObject<{
|
|
15851
|
+
type: z.ZodLiteral<"pcb_copper_text">;
|
|
15852
|
+
pcb_copper_text_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15853
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
15854
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
15855
|
+
font: z.ZodDefault<z.ZodLiteral<"tscircuit2024">>;
|
|
15856
|
+
font_size: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15857
|
+
pcb_component_id: z.ZodString;
|
|
15858
|
+
text: z.ZodString;
|
|
15859
|
+
is_knockout: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
15860
|
+
knockout_padding: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
15861
|
+
left: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15862
|
+
top: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15863
|
+
bottom: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15864
|
+
right: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15865
|
+
}, "strip", z.ZodTypeAny, {
|
|
15866
|
+
top: number;
|
|
15867
|
+
bottom: number;
|
|
15868
|
+
left: number;
|
|
15869
|
+
right: number;
|
|
15870
|
+
}, {
|
|
15871
|
+
top: string | number;
|
|
15872
|
+
bottom: string | number;
|
|
15873
|
+
left: string | number;
|
|
15874
|
+
right: string | number;
|
|
15875
|
+
}>>>;
|
|
15876
|
+
ccw_rotation: z.ZodOptional<z.ZodNumber>;
|
|
15877
|
+
layer: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
15878
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
15879
|
+
}, "strip", z.ZodTypeAny, {
|
|
15880
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
15881
|
+
}, {
|
|
15882
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
15883
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
15884
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
15885
|
+
}>;
|
|
15886
|
+
is_mirrored: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
15887
|
+
anchor_position: z.ZodDefault<z.ZodObject<{
|
|
15888
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15889
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15890
|
+
}, "strip", z.ZodTypeAny, {
|
|
15891
|
+
x: number;
|
|
15892
|
+
y: number;
|
|
15893
|
+
}, {
|
|
15894
|
+
x: string | number;
|
|
15895
|
+
y: string | number;
|
|
15896
|
+
}>>;
|
|
15897
|
+
anchor_alignment: z.ZodDefault<z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>>;
|
|
15898
|
+
}, "strip", z.ZodTypeAny, {
|
|
15899
|
+
type: "pcb_copper_text";
|
|
15900
|
+
pcb_component_id: string;
|
|
15901
|
+
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
15902
|
+
text: string;
|
|
15903
|
+
font: "tscircuit2024";
|
|
15904
|
+
font_size: number;
|
|
15905
|
+
anchor_position: {
|
|
15906
|
+
x: number;
|
|
15907
|
+
y: number;
|
|
15908
|
+
};
|
|
15909
|
+
anchor_alignment: "center" | "top_left" | "top_center" | "top_right" | "center_left" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
15910
|
+
pcb_copper_text_id: string;
|
|
15911
|
+
subcircuit_id?: string | undefined;
|
|
15912
|
+
pcb_group_id?: string | undefined;
|
|
15913
|
+
ccw_rotation?: number | undefined;
|
|
15914
|
+
is_knockout?: boolean | undefined;
|
|
15915
|
+
knockout_padding?: {
|
|
15916
|
+
top: number;
|
|
15917
|
+
bottom: number;
|
|
15918
|
+
left: number;
|
|
15919
|
+
right: number;
|
|
15920
|
+
} | undefined;
|
|
15921
|
+
is_mirrored?: boolean | undefined;
|
|
15922
|
+
}, {
|
|
15923
|
+
type: "pcb_copper_text";
|
|
15924
|
+
pcb_component_id: string;
|
|
15925
|
+
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
15926
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
15927
|
+
};
|
|
15928
|
+
text: string;
|
|
15929
|
+
subcircuit_id?: string | undefined;
|
|
15930
|
+
pcb_group_id?: string | undefined;
|
|
15931
|
+
ccw_rotation?: number | undefined;
|
|
15932
|
+
font?: "tscircuit2024" | undefined;
|
|
15933
|
+
font_size?: string | number | undefined;
|
|
15934
|
+
is_knockout?: boolean | undefined;
|
|
15935
|
+
knockout_padding?: {
|
|
15936
|
+
top: string | number;
|
|
15937
|
+
bottom: string | number;
|
|
15938
|
+
left: string | number;
|
|
15939
|
+
right: string | number;
|
|
15940
|
+
} | undefined;
|
|
15941
|
+
is_mirrored?: boolean | undefined;
|
|
15942
|
+
anchor_position?: {
|
|
15943
|
+
x: string | number;
|
|
15944
|
+
y: string | number;
|
|
15945
|
+
} | undefined;
|
|
15946
|
+
anchor_alignment?: "center" | "top_left" | "top_center" | "top_right" | "center_left" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
15947
|
+
pcb_copper_text_id?: string | undefined;
|
|
15713
15948
|
}>, z.ZodObject<{
|
|
15714
15949
|
type: z.ZodLiteral<"pcb_silkscreen_rect">;
|
|
15715
15950
|
pcb_silkscreen_rect_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -19023,25 +19258,28 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19023
19258
|
port_hints: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
19024
19259
|
name: z.ZodString;
|
|
19025
19260
|
source_port_id: z.ZodString;
|
|
19026
|
-
source_component_id: z.ZodString
|
|
19261
|
+
source_component_id: z.ZodOptional<z.ZodString>;
|
|
19262
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
19027
19263
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
19028
19264
|
subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
|
|
19029
19265
|
}, "strip", z.ZodTypeAny, {
|
|
19030
19266
|
type: "source_port";
|
|
19031
19267
|
name: string;
|
|
19032
|
-
source_component_id: string;
|
|
19033
19268
|
source_port_id: string;
|
|
19269
|
+
source_component_id?: string | undefined;
|
|
19034
19270
|
subcircuit_id?: string | undefined;
|
|
19035
19271
|
port_hints?: string[] | undefined;
|
|
19272
|
+
source_group_id?: string | undefined;
|
|
19036
19273
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
19037
19274
|
pin_number?: number | undefined;
|
|
19038
19275
|
}, {
|
|
19039
19276
|
type: "source_port";
|
|
19040
19277
|
name: string;
|
|
19041
|
-
source_component_id: string;
|
|
19042
19278
|
source_port_id: string;
|
|
19279
|
+
source_component_id?: string | undefined;
|
|
19043
19280
|
subcircuit_id?: string | undefined;
|
|
19044
19281
|
port_hints?: string[] | undefined;
|
|
19282
|
+
source_group_id?: string | undefined;
|
|
19045
19283
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
19046
19284
|
pin_number?: number | undefined;
|
|
19047
19285
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
@@ -21712,7 +21950,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
21712
21950
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
21713
21951
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
21714
21952
|
source_port_id: z.ZodString;
|
|
21715
|
-
pcb_component_id: z.ZodString
|
|
21953
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
21716
21954
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
21717
21955
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
21718
21956
|
layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -21729,10 +21967,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
21729
21967
|
x: number;
|
|
21730
21968
|
y: number;
|
|
21731
21969
|
type: "pcb_port";
|
|
21732
|
-
pcb_component_id: string;
|
|
21733
21970
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
21734
21971
|
pcb_port_id: string;
|
|
21735
21972
|
source_port_id: string;
|
|
21973
|
+
pcb_component_id?: string | undefined;
|
|
21736
21974
|
subcircuit_id?: string | undefined;
|
|
21737
21975
|
pcb_group_id?: string | undefined;
|
|
21738
21976
|
is_board_pinout?: boolean | undefined;
|
|
@@ -21740,11 +21978,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
21740
21978
|
x: string | number;
|
|
21741
21979
|
y: string | number;
|
|
21742
21980
|
type: "pcb_port";
|
|
21743
|
-
pcb_component_id: string;
|
|
21744
21981
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
21745
21982
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
21746
21983
|
})[];
|
|
21747
21984
|
source_port_id: string;
|
|
21985
|
+
pcb_component_id?: string | undefined;
|
|
21748
21986
|
subcircuit_id?: string | undefined;
|
|
21749
21987
|
pcb_group_id?: string | undefined;
|
|
21750
21988
|
pcb_port_id?: string | undefined;
|
|
@@ -23065,6 +23303,104 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23065
23303
|
y: string | number;
|
|
23066
23304
|
} | undefined;
|
|
23067
23305
|
anchor_alignment?: "center" | "top_left" | "top_center" | "top_right" | "center_left" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
23306
|
+
}>, z.ZodObject<{
|
|
23307
|
+
type: z.ZodLiteral<"pcb_copper_text">;
|
|
23308
|
+
pcb_copper_text_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
23309
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
23310
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
23311
|
+
font: z.ZodDefault<z.ZodLiteral<"tscircuit2024">>;
|
|
23312
|
+
font_size: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23313
|
+
pcb_component_id: z.ZodString;
|
|
23314
|
+
text: z.ZodString;
|
|
23315
|
+
is_knockout: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
23316
|
+
knockout_padding: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
23317
|
+
left: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23318
|
+
top: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23319
|
+
bottom: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23320
|
+
right: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23321
|
+
}, "strip", z.ZodTypeAny, {
|
|
23322
|
+
top: number;
|
|
23323
|
+
bottom: number;
|
|
23324
|
+
left: number;
|
|
23325
|
+
right: number;
|
|
23326
|
+
}, {
|
|
23327
|
+
top: string | number;
|
|
23328
|
+
bottom: string | number;
|
|
23329
|
+
left: string | number;
|
|
23330
|
+
right: string | number;
|
|
23331
|
+
}>>>;
|
|
23332
|
+
ccw_rotation: z.ZodOptional<z.ZodNumber>;
|
|
23333
|
+
layer: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
23334
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
23335
|
+
}, "strip", z.ZodTypeAny, {
|
|
23336
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
23337
|
+
}, {
|
|
23338
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
23339
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
23340
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
23341
|
+
}>;
|
|
23342
|
+
is_mirrored: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
23343
|
+
anchor_position: z.ZodDefault<z.ZodObject<{
|
|
23344
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23345
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23346
|
+
}, "strip", z.ZodTypeAny, {
|
|
23347
|
+
x: number;
|
|
23348
|
+
y: number;
|
|
23349
|
+
}, {
|
|
23350
|
+
x: string | number;
|
|
23351
|
+
y: string | number;
|
|
23352
|
+
}>>;
|
|
23353
|
+
anchor_alignment: z.ZodDefault<z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>>;
|
|
23354
|
+
}, "strip", z.ZodTypeAny, {
|
|
23355
|
+
type: "pcb_copper_text";
|
|
23356
|
+
pcb_component_id: string;
|
|
23357
|
+
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
23358
|
+
text: string;
|
|
23359
|
+
font: "tscircuit2024";
|
|
23360
|
+
font_size: number;
|
|
23361
|
+
anchor_position: {
|
|
23362
|
+
x: number;
|
|
23363
|
+
y: number;
|
|
23364
|
+
};
|
|
23365
|
+
anchor_alignment: "center" | "top_left" | "top_center" | "top_right" | "center_left" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
23366
|
+
pcb_copper_text_id: string;
|
|
23367
|
+
subcircuit_id?: string | undefined;
|
|
23368
|
+
pcb_group_id?: string | undefined;
|
|
23369
|
+
ccw_rotation?: number | undefined;
|
|
23370
|
+
is_knockout?: boolean | undefined;
|
|
23371
|
+
knockout_padding?: {
|
|
23372
|
+
top: number;
|
|
23373
|
+
bottom: number;
|
|
23374
|
+
left: number;
|
|
23375
|
+
right: number;
|
|
23376
|
+
} | undefined;
|
|
23377
|
+
is_mirrored?: boolean | undefined;
|
|
23378
|
+
}, {
|
|
23379
|
+
type: "pcb_copper_text";
|
|
23380
|
+
pcb_component_id: string;
|
|
23381
|
+
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
23382
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
23383
|
+
};
|
|
23384
|
+
text: string;
|
|
23385
|
+
subcircuit_id?: string | undefined;
|
|
23386
|
+
pcb_group_id?: string | undefined;
|
|
23387
|
+
ccw_rotation?: number | undefined;
|
|
23388
|
+
font?: "tscircuit2024" | undefined;
|
|
23389
|
+
font_size?: string | number | undefined;
|
|
23390
|
+
is_knockout?: boolean | undefined;
|
|
23391
|
+
knockout_padding?: {
|
|
23392
|
+
top: string | number;
|
|
23393
|
+
bottom: string | number;
|
|
23394
|
+
left: string | number;
|
|
23395
|
+
right: string | number;
|
|
23396
|
+
} | undefined;
|
|
23397
|
+
is_mirrored?: boolean | undefined;
|
|
23398
|
+
anchor_position?: {
|
|
23399
|
+
x: string | number;
|
|
23400
|
+
y: string | number;
|
|
23401
|
+
} | undefined;
|
|
23402
|
+
anchor_alignment?: "center" | "top_left" | "top_center" | "top_right" | "center_left" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
23403
|
+
pcb_copper_text_id?: string | undefined;
|
|
23068
23404
|
}>, z.ZodObject<{
|
|
23069
23405
|
type: z.ZodLiteral<"pcb_silkscreen_rect">;
|
|
23070
23406
|
pcb_silkscreen_rect_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -26355,4 +26691,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
26355
26691
|
*/
|
|
26356
26692
|
type CircuitJson = AnyCircuitElement[];
|
|
26357
26693
|
|
|
26358
|
-
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 };
|
|
26694
|
+
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 };
|