circuit-json 0.0.275 → 0.0.276
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/dist/index.d.mts +381 -31
- package/dist/index.mjs +34 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -612,7 +612,168 @@ interface PcbHoleOval {
|
|
|
612
612
|
x: Distance;
|
|
613
613
|
y: Distance;
|
|
614
614
|
}
|
|
615
|
-
declare const
|
|
615
|
+
declare const pcb_hole_pill: z.ZodObject<{
|
|
616
|
+
type: z.ZodLiteral<"pcb_hole">;
|
|
617
|
+
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
618
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
619
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
620
|
+
hole_shape: z.ZodLiteral<"pill">;
|
|
621
|
+
hole_width: z.ZodNumber;
|
|
622
|
+
hole_height: z.ZodNumber;
|
|
623
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
624
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
625
|
+
}, "strip", z.ZodTypeAny, {
|
|
626
|
+
x: number;
|
|
627
|
+
y: number;
|
|
628
|
+
type: "pcb_hole";
|
|
629
|
+
pcb_hole_id: string;
|
|
630
|
+
hole_shape: "pill";
|
|
631
|
+
hole_width: number;
|
|
632
|
+
hole_height: number;
|
|
633
|
+
subcircuit_id?: string | undefined;
|
|
634
|
+
pcb_group_id?: string | undefined;
|
|
635
|
+
}, {
|
|
636
|
+
x: string | number;
|
|
637
|
+
y: string | number;
|
|
638
|
+
type: "pcb_hole";
|
|
639
|
+
hole_shape: "pill";
|
|
640
|
+
hole_width: number;
|
|
641
|
+
hole_height: number;
|
|
642
|
+
subcircuit_id?: string | undefined;
|
|
643
|
+
pcb_group_id?: string | undefined;
|
|
644
|
+
pcb_hole_id?: string | undefined;
|
|
645
|
+
}>;
|
|
646
|
+
declare const pcb_hole_pill_shape: z.ZodObject<{
|
|
647
|
+
type: z.ZodLiteral<"pcb_hole">;
|
|
648
|
+
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
649
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
650
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
651
|
+
hole_shape: z.ZodLiteral<"pill">;
|
|
652
|
+
hole_width: z.ZodNumber;
|
|
653
|
+
hole_height: z.ZodNumber;
|
|
654
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
655
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
656
|
+
}, "strip", z.ZodTypeAny, {
|
|
657
|
+
x: number;
|
|
658
|
+
y: number;
|
|
659
|
+
type: "pcb_hole";
|
|
660
|
+
pcb_hole_id: string;
|
|
661
|
+
hole_shape: "pill";
|
|
662
|
+
hole_width: number;
|
|
663
|
+
hole_height: number;
|
|
664
|
+
subcircuit_id?: string | undefined;
|
|
665
|
+
pcb_group_id?: string | undefined;
|
|
666
|
+
}, {
|
|
667
|
+
x: string | number;
|
|
668
|
+
y: string | number;
|
|
669
|
+
type: "pcb_hole";
|
|
670
|
+
hole_shape: "pill";
|
|
671
|
+
hole_width: number;
|
|
672
|
+
hole_height: number;
|
|
673
|
+
subcircuit_id?: string | undefined;
|
|
674
|
+
pcb_group_id?: string | undefined;
|
|
675
|
+
pcb_hole_id?: string | undefined;
|
|
676
|
+
}>;
|
|
677
|
+
type PcbHolePillInput = z.input<typeof pcb_hole_pill>;
|
|
678
|
+
/**
|
|
679
|
+
* Defines a pill-shaped hole on the PCB
|
|
680
|
+
*/
|
|
681
|
+
interface PcbHolePill {
|
|
682
|
+
type: "pcb_hole";
|
|
683
|
+
pcb_hole_id: string;
|
|
684
|
+
pcb_group_id?: string;
|
|
685
|
+
subcircuit_id?: string;
|
|
686
|
+
hole_shape: "pill";
|
|
687
|
+
hole_width: number;
|
|
688
|
+
hole_height: number;
|
|
689
|
+
x: Distance;
|
|
690
|
+
y: Distance;
|
|
691
|
+
}
|
|
692
|
+
declare const pcb_hole_rotated_pill: z.ZodObject<{
|
|
693
|
+
type: z.ZodLiteral<"pcb_hole">;
|
|
694
|
+
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
695
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
696
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
697
|
+
hole_shape: z.ZodLiteral<"rotated_pill">;
|
|
698
|
+
hole_width: z.ZodNumber;
|
|
699
|
+
hole_height: z.ZodNumber;
|
|
700
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
701
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
702
|
+
ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
703
|
+
}, "strip", z.ZodTypeAny, {
|
|
704
|
+
x: number;
|
|
705
|
+
y: number;
|
|
706
|
+
type: "pcb_hole";
|
|
707
|
+
pcb_hole_id: string;
|
|
708
|
+
hole_shape: "rotated_pill";
|
|
709
|
+
hole_width: number;
|
|
710
|
+
hole_height: number;
|
|
711
|
+
ccw_rotation: number;
|
|
712
|
+
subcircuit_id?: string | undefined;
|
|
713
|
+
pcb_group_id?: string | undefined;
|
|
714
|
+
}, {
|
|
715
|
+
x: string | number;
|
|
716
|
+
y: string | number;
|
|
717
|
+
type: "pcb_hole";
|
|
718
|
+
hole_shape: "rotated_pill";
|
|
719
|
+
hole_width: number;
|
|
720
|
+
hole_height: number;
|
|
721
|
+
ccw_rotation: string | number;
|
|
722
|
+
subcircuit_id?: string | undefined;
|
|
723
|
+
pcb_group_id?: string | undefined;
|
|
724
|
+
pcb_hole_id?: string | undefined;
|
|
725
|
+
}>;
|
|
726
|
+
declare const pcb_hole_rotated_pill_shape: z.ZodObject<{
|
|
727
|
+
type: z.ZodLiteral<"pcb_hole">;
|
|
728
|
+
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
729
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
730
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
731
|
+
hole_shape: z.ZodLiteral<"rotated_pill">;
|
|
732
|
+
hole_width: z.ZodNumber;
|
|
733
|
+
hole_height: z.ZodNumber;
|
|
734
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
735
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
736
|
+
ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
737
|
+
}, "strip", z.ZodTypeAny, {
|
|
738
|
+
x: number;
|
|
739
|
+
y: number;
|
|
740
|
+
type: "pcb_hole";
|
|
741
|
+
pcb_hole_id: string;
|
|
742
|
+
hole_shape: "rotated_pill";
|
|
743
|
+
hole_width: number;
|
|
744
|
+
hole_height: number;
|
|
745
|
+
ccw_rotation: number;
|
|
746
|
+
subcircuit_id?: string | undefined;
|
|
747
|
+
pcb_group_id?: string | undefined;
|
|
748
|
+
}, {
|
|
749
|
+
x: string | number;
|
|
750
|
+
y: string | number;
|
|
751
|
+
type: "pcb_hole";
|
|
752
|
+
hole_shape: "rotated_pill";
|
|
753
|
+
hole_width: number;
|
|
754
|
+
hole_height: number;
|
|
755
|
+
ccw_rotation: string | number;
|
|
756
|
+
subcircuit_id?: string | undefined;
|
|
757
|
+
pcb_group_id?: string | undefined;
|
|
758
|
+
pcb_hole_id?: string | undefined;
|
|
759
|
+
}>;
|
|
760
|
+
type PcbHoleRotatedPillInput = z.input<typeof pcb_hole_rotated_pill>;
|
|
761
|
+
/**
|
|
762
|
+
* Defines a rotated pill-shaped hole on the PCB
|
|
763
|
+
*/
|
|
764
|
+
interface PcbHoleRotatedPill {
|
|
765
|
+
type: "pcb_hole";
|
|
766
|
+
pcb_hole_id: string;
|
|
767
|
+
pcb_group_id?: string;
|
|
768
|
+
subcircuit_id?: string;
|
|
769
|
+
hole_shape: "rotated_pill";
|
|
770
|
+
hole_width: number;
|
|
771
|
+
hole_height: number;
|
|
772
|
+
x: Distance;
|
|
773
|
+
y: Distance;
|
|
774
|
+
ccw_rotation: Rotation;
|
|
775
|
+
}
|
|
776
|
+
declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
616
777
|
type: z.ZodLiteral<"pcb_hole">;
|
|
617
778
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
618
779
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
@@ -669,16 +830,79 @@ declare const pcb_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
669
830
|
subcircuit_id?: string | undefined;
|
|
670
831
|
pcb_group_id?: string | undefined;
|
|
671
832
|
pcb_hole_id?: string | undefined;
|
|
833
|
+
}>]>, z.ZodObject<{
|
|
834
|
+
type: z.ZodLiteral<"pcb_hole">;
|
|
835
|
+
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
836
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
837
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
838
|
+
hole_shape: z.ZodLiteral<"pill">;
|
|
839
|
+
hole_width: z.ZodNumber;
|
|
840
|
+
hole_height: z.ZodNumber;
|
|
841
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
842
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
843
|
+
}, "strip", z.ZodTypeAny, {
|
|
844
|
+
x: number;
|
|
845
|
+
y: number;
|
|
846
|
+
type: "pcb_hole";
|
|
847
|
+
pcb_hole_id: string;
|
|
848
|
+
hole_shape: "pill";
|
|
849
|
+
hole_width: number;
|
|
850
|
+
hole_height: number;
|
|
851
|
+
subcircuit_id?: string | undefined;
|
|
852
|
+
pcb_group_id?: string | undefined;
|
|
853
|
+
}, {
|
|
854
|
+
x: string | number;
|
|
855
|
+
y: string | number;
|
|
856
|
+
type: "pcb_hole";
|
|
857
|
+
hole_shape: "pill";
|
|
858
|
+
hole_width: number;
|
|
859
|
+
hole_height: number;
|
|
860
|
+
subcircuit_id?: string | undefined;
|
|
861
|
+
pcb_group_id?: string | undefined;
|
|
862
|
+
pcb_hole_id?: string | undefined;
|
|
863
|
+
}>]>, z.ZodObject<{
|
|
864
|
+
type: z.ZodLiteral<"pcb_hole">;
|
|
865
|
+
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
866
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
867
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
868
|
+
hole_shape: z.ZodLiteral<"rotated_pill">;
|
|
869
|
+
hole_width: z.ZodNumber;
|
|
870
|
+
hole_height: z.ZodNumber;
|
|
871
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
872
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
873
|
+
ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
874
|
+
}, "strip", z.ZodTypeAny, {
|
|
875
|
+
x: number;
|
|
876
|
+
y: number;
|
|
877
|
+
type: "pcb_hole";
|
|
878
|
+
pcb_hole_id: string;
|
|
879
|
+
hole_shape: "rotated_pill";
|
|
880
|
+
hole_width: number;
|
|
881
|
+
hole_height: number;
|
|
882
|
+
ccw_rotation: number;
|
|
883
|
+
subcircuit_id?: string | undefined;
|
|
884
|
+
pcb_group_id?: string | undefined;
|
|
885
|
+
}, {
|
|
886
|
+
x: string | number;
|
|
887
|
+
y: string | number;
|
|
888
|
+
type: "pcb_hole";
|
|
889
|
+
hole_shape: "rotated_pill";
|
|
890
|
+
hole_width: number;
|
|
891
|
+
hole_height: number;
|
|
892
|
+
ccw_rotation: string | number;
|
|
893
|
+
subcircuit_id?: string | undefined;
|
|
894
|
+
pcb_group_id?: string | undefined;
|
|
895
|
+
pcb_hole_id?: string | undefined;
|
|
672
896
|
}>]>;
|
|
673
897
|
/**
|
|
674
|
-
* @deprecated Use PcbHoleCircleOrSquare or
|
|
898
|
+
* @deprecated Use PcbHoleCircleOrSquare, PcbHoleOval, PcbHolePill, or PcbHoleRotatedPill
|
|
675
899
|
*/
|
|
676
900
|
type PCBHoleInput = z.input<typeof pcb_hole>;
|
|
677
901
|
/**
|
|
678
|
-
* @deprecated Use PcbHoleCircleOrSquare or
|
|
902
|
+
* @deprecated Use PcbHoleCircleOrSquare, PcbHoleOval, PcbHolePill, or PcbHoleRotatedPill
|
|
679
903
|
*/
|
|
680
904
|
type PCBHole = z.infer<typeof pcb_hole>;
|
|
681
|
-
type PcbHole = PcbHoleCircleOrSquare | PcbHoleOval;
|
|
905
|
+
type PcbHole = PcbHoleCircleOrSquare | PcbHoleOval | PcbHolePill | PcbHoleRotatedPill;
|
|
682
906
|
|
|
683
907
|
/**
|
|
684
908
|
* Defines a circular plated hole on the PCB
|
|
@@ -869,12 +1093,12 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
869
1093
|
type: "pcb_plated_hole";
|
|
870
1094
|
hole_width: number;
|
|
871
1095
|
hole_height: number;
|
|
1096
|
+
ccw_rotation: number;
|
|
872
1097
|
shape: "oval" | "pill";
|
|
873
1098
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
874
1099
|
pcb_plated_hole_id: string;
|
|
875
1100
|
outer_width: number;
|
|
876
1101
|
outer_height: number;
|
|
877
|
-
ccw_rotation: number;
|
|
878
1102
|
pcb_component_id?: string | undefined;
|
|
879
1103
|
subcircuit_id?: string | undefined;
|
|
880
1104
|
pcb_group_id?: string | undefined;
|
|
@@ -886,13 +1110,13 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
886
1110
|
type: "pcb_plated_hole";
|
|
887
1111
|
hole_width: number;
|
|
888
1112
|
hole_height: number;
|
|
1113
|
+
ccw_rotation: string | number;
|
|
889
1114
|
shape: "oval" | "pill";
|
|
890
1115
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
891
1116
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
892
1117
|
})[];
|
|
893
1118
|
outer_width: number;
|
|
894
1119
|
outer_height: number;
|
|
895
|
-
ccw_rotation: string | number;
|
|
896
1120
|
pcb_component_id?: string | undefined;
|
|
897
1121
|
subcircuit_id?: string | undefined;
|
|
898
1122
|
pcb_group_id?: string | undefined;
|
|
@@ -1403,8 +1627,8 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1403
1627
|
width: number;
|
|
1404
1628
|
height: number;
|
|
1405
1629
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1406
|
-
shape: "rotated_rect";
|
|
1407
1630
|
ccw_rotation: number;
|
|
1631
|
+
shape: "rotated_rect";
|
|
1408
1632
|
pcb_smtpad_id: string;
|
|
1409
1633
|
pcb_component_id?: string | undefined;
|
|
1410
1634
|
subcircuit_id?: string | undefined;
|
|
@@ -1422,8 +1646,8 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1422
1646
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
1423
1647
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1424
1648
|
};
|
|
1425
|
-
shape: "rotated_rect";
|
|
1426
1649
|
ccw_rotation: string | number;
|
|
1650
|
+
shape: "rotated_rect";
|
|
1427
1651
|
pcb_component_id?: string | undefined;
|
|
1428
1652
|
subcircuit_id?: string | undefined;
|
|
1429
1653
|
pcb_group_id?: string | undefined;
|
|
@@ -1464,8 +1688,8 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1464
1688
|
width: number;
|
|
1465
1689
|
height: number;
|
|
1466
1690
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1467
|
-
shape: "rotated_pill";
|
|
1468
1691
|
ccw_rotation: number;
|
|
1692
|
+
shape: "rotated_pill";
|
|
1469
1693
|
pcb_smtpad_id: string;
|
|
1470
1694
|
radius: number;
|
|
1471
1695
|
pcb_component_id?: string | undefined;
|
|
@@ -1483,8 +1707,8 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1483
1707
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
1484
1708
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1485
1709
|
};
|
|
1486
|
-
shape: "rotated_pill";
|
|
1487
1710
|
ccw_rotation: string | number;
|
|
1711
|
+
shape: "rotated_pill";
|
|
1488
1712
|
radius: number;
|
|
1489
1713
|
pcb_component_id?: string | undefined;
|
|
1490
1714
|
subcircuit_id?: string | undefined;
|
|
@@ -1912,8 +2136,8 @@ declare const pcb_solder_paste: z.ZodUnion<[z.ZodObject<{
|
|
|
1912
2136
|
width: number;
|
|
1913
2137
|
height: number;
|
|
1914
2138
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1915
|
-
shape: "rotated_rect";
|
|
1916
2139
|
ccw_rotation: number;
|
|
2140
|
+
shape: "rotated_rect";
|
|
1917
2141
|
pcb_solder_paste_id: string;
|
|
1918
2142
|
pcb_component_id?: string | undefined;
|
|
1919
2143
|
subcircuit_id?: string | undefined;
|
|
@@ -1928,8 +2152,8 @@ declare const pcb_solder_paste: z.ZodUnion<[z.ZodObject<{
|
|
|
1928
2152
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
1929
2153
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1930
2154
|
};
|
|
1931
|
-
shape: "rotated_rect";
|
|
1932
2155
|
ccw_rotation: string | number;
|
|
2156
|
+
shape: "rotated_rect";
|
|
1933
2157
|
pcb_component_id?: string | undefined;
|
|
1934
2158
|
subcircuit_id?: string | undefined;
|
|
1935
2159
|
pcb_group_id?: string | undefined;
|
|
@@ -12669,7 +12893,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12669
12893
|
subcircuit_id?: string | undefined;
|
|
12670
12894
|
pcb_group_id?: string | undefined;
|
|
12671
12895
|
obstructs_within_bounds?: boolean | undefined;
|
|
12672
|
-
}>, z.ZodUnion<[z.ZodObject<{
|
|
12896
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
12673
12897
|
type: z.ZodLiteral<"pcb_hole">;
|
|
12674
12898
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
12675
12899
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
@@ -12726,6 +12950,69 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12726
12950
|
subcircuit_id?: string | undefined;
|
|
12727
12951
|
pcb_group_id?: string | undefined;
|
|
12728
12952
|
pcb_hole_id?: string | undefined;
|
|
12953
|
+
}>]>, z.ZodObject<{
|
|
12954
|
+
type: z.ZodLiteral<"pcb_hole">;
|
|
12955
|
+
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
12956
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
12957
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
12958
|
+
hole_shape: z.ZodLiteral<"pill">;
|
|
12959
|
+
hole_width: z.ZodNumber;
|
|
12960
|
+
hole_height: z.ZodNumber;
|
|
12961
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12962
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12963
|
+
}, "strip", z.ZodTypeAny, {
|
|
12964
|
+
x: number;
|
|
12965
|
+
y: number;
|
|
12966
|
+
type: "pcb_hole";
|
|
12967
|
+
pcb_hole_id: string;
|
|
12968
|
+
hole_shape: "pill";
|
|
12969
|
+
hole_width: number;
|
|
12970
|
+
hole_height: number;
|
|
12971
|
+
subcircuit_id?: string | undefined;
|
|
12972
|
+
pcb_group_id?: string | undefined;
|
|
12973
|
+
}, {
|
|
12974
|
+
x: string | number;
|
|
12975
|
+
y: string | number;
|
|
12976
|
+
type: "pcb_hole";
|
|
12977
|
+
hole_shape: "pill";
|
|
12978
|
+
hole_width: number;
|
|
12979
|
+
hole_height: number;
|
|
12980
|
+
subcircuit_id?: string | undefined;
|
|
12981
|
+
pcb_group_id?: string | undefined;
|
|
12982
|
+
pcb_hole_id?: string | undefined;
|
|
12983
|
+
}>]>, z.ZodObject<{
|
|
12984
|
+
type: z.ZodLiteral<"pcb_hole">;
|
|
12985
|
+
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
12986
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
12987
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
12988
|
+
hole_shape: z.ZodLiteral<"rotated_pill">;
|
|
12989
|
+
hole_width: z.ZodNumber;
|
|
12990
|
+
hole_height: z.ZodNumber;
|
|
12991
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12992
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12993
|
+
ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12994
|
+
}, "strip", z.ZodTypeAny, {
|
|
12995
|
+
x: number;
|
|
12996
|
+
y: number;
|
|
12997
|
+
type: "pcb_hole";
|
|
12998
|
+
pcb_hole_id: string;
|
|
12999
|
+
hole_shape: "rotated_pill";
|
|
13000
|
+
hole_width: number;
|
|
13001
|
+
hole_height: number;
|
|
13002
|
+
ccw_rotation: number;
|
|
13003
|
+
subcircuit_id?: string | undefined;
|
|
13004
|
+
pcb_group_id?: string | undefined;
|
|
13005
|
+
}, {
|
|
13006
|
+
x: string | number;
|
|
13007
|
+
y: string | number;
|
|
13008
|
+
type: "pcb_hole";
|
|
13009
|
+
hole_shape: "rotated_pill";
|
|
13010
|
+
hole_width: number;
|
|
13011
|
+
hole_height: number;
|
|
13012
|
+
ccw_rotation: string | number;
|
|
13013
|
+
subcircuit_id?: string | undefined;
|
|
13014
|
+
pcb_group_id?: string | undefined;
|
|
13015
|
+
pcb_hole_id?: string | undefined;
|
|
12729
13016
|
}>]>, z.ZodObject<{
|
|
12730
13017
|
type: z.ZodLiteral<"pcb_missing_footprint_error">;
|
|
12731
13018
|
pcb_missing_footprint_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -12920,12 +13207,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12920
13207
|
type: "pcb_plated_hole";
|
|
12921
13208
|
hole_width: number;
|
|
12922
13209
|
hole_height: number;
|
|
13210
|
+
ccw_rotation: number;
|
|
12923
13211
|
shape: "oval" | "pill";
|
|
12924
13212
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
12925
13213
|
pcb_plated_hole_id: string;
|
|
12926
13214
|
outer_width: number;
|
|
12927
13215
|
outer_height: number;
|
|
12928
|
-
ccw_rotation: number;
|
|
12929
13216
|
pcb_component_id?: string | undefined;
|
|
12930
13217
|
subcircuit_id?: string | undefined;
|
|
12931
13218
|
pcb_group_id?: string | undefined;
|
|
@@ -12937,13 +13224,13 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12937
13224
|
type: "pcb_plated_hole";
|
|
12938
13225
|
hole_width: number;
|
|
12939
13226
|
hole_height: number;
|
|
13227
|
+
ccw_rotation: string | number;
|
|
12940
13228
|
shape: "oval" | "pill";
|
|
12941
13229
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
12942
13230
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
12943
13231
|
})[];
|
|
12944
13232
|
outer_width: number;
|
|
12945
13233
|
outer_height: number;
|
|
12946
|
-
ccw_rotation: string | number;
|
|
12947
13234
|
pcb_component_id?: string | undefined;
|
|
12948
13235
|
subcircuit_id?: string | undefined;
|
|
12949
13236
|
pcb_group_id?: string | undefined;
|
|
@@ -13726,8 +14013,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
13726
14013
|
width: number;
|
|
13727
14014
|
height: number;
|
|
13728
14015
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
13729
|
-
shape: "rotated_rect";
|
|
13730
14016
|
ccw_rotation: number;
|
|
14017
|
+
shape: "rotated_rect";
|
|
13731
14018
|
pcb_smtpad_id: string;
|
|
13732
14019
|
pcb_component_id?: string | undefined;
|
|
13733
14020
|
subcircuit_id?: string | undefined;
|
|
@@ -13745,8 +14032,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
13745
14032
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
13746
14033
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
13747
14034
|
};
|
|
13748
|
-
shape: "rotated_rect";
|
|
13749
14035
|
ccw_rotation: string | number;
|
|
14036
|
+
shape: "rotated_rect";
|
|
13750
14037
|
pcb_component_id?: string | undefined;
|
|
13751
14038
|
subcircuit_id?: string | undefined;
|
|
13752
14039
|
pcb_group_id?: string | undefined;
|
|
@@ -13787,8 +14074,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
13787
14074
|
width: number;
|
|
13788
14075
|
height: number;
|
|
13789
14076
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
13790
|
-
shape: "rotated_pill";
|
|
13791
14077
|
ccw_rotation: number;
|
|
14078
|
+
shape: "rotated_pill";
|
|
13792
14079
|
pcb_smtpad_id: string;
|
|
13793
14080
|
radius: number;
|
|
13794
14081
|
pcb_component_id?: string | undefined;
|
|
@@ -13806,8 +14093,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
13806
14093
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
13807
14094
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
13808
14095
|
};
|
|
13809
|
-
shape: "rotated_pill";
|
|
13810
14096
|
ccw_rotation: string | number;
|
|
14097
|
+
shape: "rotated_pill";
|
|
13811
14098
|
radius: number;
|
|
13812
14099
|
pcb_component_id?: string | undefined;
|
|
13813
14100
|
subcircuit_id?: string | undefined;
|
|
@@ -14111,8 +14398,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14111
14398
|
width: number;
|
|
14112
14399
|
height: number;
|
|
14113
14400
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
14114
|
-
shape: "rotated_rect";
|
|
14115
14401
|
ccw_rotation: number;
|
|
14402
|
+
shape: "rotated_rect";
|
|
14116
14403
|
pcb_solder_paste_id: string;
|
|
14117
14404
|
pcb_component_id?: string | undefined;
|
|
14118
14405
|
subcircuit_id?: string | undefined;
|
|
@@ -14127,8 +14414,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14127
14414
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
14128
14415
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
14129
14416
|
};
|
|
14130
|
-
shape: "rotated_rect";
|
|
14131
14417
|
ccw_rotation: string | number;
|
|
14418
|
+
shape: "rotated_rect";
|
|
14132
14419
|
pcb_component_id?: string | undefined;
|
|
14133
14420
|
subcircuit_id?: string | undefined;
|
|
14134
14421
|
pcb_group_id?: string | undefined;
|
|
@@ -19396,7 +19683,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19396
19683
|
subcircuit_id?: string | undefined;
|
|
19397
19684
|
pcb_group_id?: string | undefined;
|
|
19398
19685
|
obstructs_within_bounds?: boolean | undefined;
|
|
19399
|
-
}>, z.ZodUnion<[z.ZodObject<{
|
|
19686
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
19400
19687
|
type: z.ZodLiteral<"pcb_hole">;
|
|
19401
19688
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
19402
19689
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
@@ -19453,6 +19740,69 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19453
19740
|
subcircuit_id?: string | undefined;
|
|
19454
19741
|
pcb_group_id?: string | undefined;
|
|
19455
19742
|
pcb_hole_id?: string | undefined;
|
|
19743
|
+
}>]>, z.ZodObject<{
|
|
19744
|
+
type: z.ZodLiteral<"pcb_hole">;
|
|
19745
|
+
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
19746
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
19747
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
19748
|
+
hole_shape: z.ZodLiteral<"pill">;
|
|
19749
|
+
hole_width: z.ZodNumber;
|
|
19750
|
+
hole_height: z.ZodNumber;
|
|
19751
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
19752
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
19753
|
+
}, "strip", z.ZodTypeAny, {
|
|
19754
|
+
x: number;
|
|
19755
|
+
y: number;
|
|
19756
|
+
type: "pcb_hole";
|
|
19757
|
+
pcb_hole_id: string;
|
|
19758
|
+
hole_shape: "pill";
|
|
19759
|
+
hole_width: number;
|
|
19760
|
+
hole_height: number;
|
|
19761
|
+
subcircuit_id?: string | undefined;
|
|
19762
|
+
pcb_group_id?: string | undefined;
|
|
19763
|
+
}, {
|
|
19764
|
+
x: string | number;
|
|
19765
|
+
y: string | number;
|
|
19766
|
+
type: "pcb_hole";
|
|
19767
|
+
hole_shape: "pill";
|
|
19768
|
+
hole_width: number;
|
|
19769
|
+
hole_height: number;
|
|
19770
|
+
subcircuit_id?: string | undefined;
|
|
19771
|
+
pcb_group_id?: string | undefined;
|
|
19772
|
+
pcb_hole_id?: string | undefined;
|
|
19773
|
+
}>]>, z.ZodObject<{
|
|
19774
|
+
type: z.ZodLiteral<"pcb_hole">;
|
|
19775
|
+
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
19776
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
19777
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
19778
|
+
hole_shape: z.ZodLiteral<"rotated_pill">;
|
|
19779
|
+
hole_width: z.ZodNumber;
|
|
19780
|
+
hole_height: z.ZodNumber;
|
|
19781
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
19782
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
19783
|
+
ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
19784
|
+
}, "strip", z.ZodTypeAny, {
|
|
19785
|
+
x: number;
|
|
19786
|
+
y: number;
|
|
19787
|
+
type: "pcb_hole";
|
|
19788
|
+
pcb_hole_id: string;
|
|
19789
|
+
hole_shape: "rotated_pill";
|
|
19790
|
+
hole_width: number;
|
|
19791
|
+
hole_height: number;
|
|
19792
|
+
ccw_rotation: number;
|
|
19793
|
+
subcircuit_id?: string | undefined;
|
|
19794
|
+
pcb_group_id?: string | undefined;
|
|
19795
|
+
}, {
|
|
19796
|
+
x: string | number;
|
|
19797
|
+
y: string | number;
|
|
19798
|
+
type: "pcb_hole";
|
|
19799
|
+
hole_shape: "rotated_pill";
|
|
19800
|
+
hole_width: number;
|
|
19801
|
+
hole_height: number;
|
|
19802
|
+
ccw_rotation: string | number;
|
|
19803
|
+
subcircuit_id?: string | undefined;
|
|
19804
|
+
pcb_group_id?: string | undefined;
|
|
19805
|
+
pcb_hole_id?: string | undefined;
|
|
19456
19806
|
}>]>, z.ZodObject<{
|
|
19457
19807
|
type: z.ZodLiteral<"pcb_missing_footprint_error">;
|
|
19458
19808
|
pcb_missing_footprint_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -19647,12 +19997,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19647
19997
|
type: "pcb_plated_hole";
|
|
19648
19998
|
hole_width: number;
|
|
19649
19999
|
hole_height: number;
|
|
20000
|
+
ccw_rotation: number;
|
|
19650
20001
|
shape: "oval" | "pill";
|
|
19651
20002
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
19652
20003
|
pcb_plated_hole_id: string;
|
|
19653
20004
|
outer_width: number;
|
|
19654
20005
|
outer_height: number;
|
|
19655
|
-
ccw_rotation: number;
|
|
19656
20006
|
pcb_component_id?: string | undefined;
|
|
19657
20007
|
subcircuit_id?: string | undefined;
|
|
19658
20008
|
pcb_group_id?: string | undefined;
|
|
@@ -19664,13 +20014,13 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19664
20014
|
type: "pcb_plated_hole";
|
|
19665
20015
|
hole_width: number;
|
|
19666
20016
|
hole_height: number;
|
|
20017
|
+
ccw_rotation: string | number;
|
|
19667
20018
|
shape: "oval" | "pill";
|
|
19668
20019
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
19669
20020
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
19670
20021
|
})[];
|
|
19671
20022
|
outer_width: number;
|
|
19672
20023
|
outer_height: number;
|
|
19673
|
-
ccw_rotation: string | number;
|
|
19674
20024
|
pcb_component_id?: string | undefined;
|
|
19675
20025
|
subcircuit_id?: string | undefined;
|
|
19676
20026
|
pcb_group_id?: string | undefined;
|
|
@@ -20453,8 +20803,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
20453
20803
|
width: number;
|
|
20454
20804
|
height: number;
|
|
20455
20805
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
20456
|
-
shape: "rotated_rect";
|
|
20457
20806
|
ccw_rotation: number;
|
|
20807
|
+
shape: "rotated_rect";
|
|
20458
20808
|
pcb_smtpad_id: string;
|
|
20459
20809
|
pcb_component_id?: string | undefined;
|
|
20460
20810
|
subcircuit_id?: string | undefined;
|
|
@@ -20472,8 +20822,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
20472
20822
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
20473
20823
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
20474
20824
|
};
|
|
20475
|
-
shape: "rotated_rect";
|
|
20476
20825
|
ccw_rotation: string | number;
|
|
20826
|
+
shape: "rotated_rect";
|
|
20477
20827
|
pcb_component_id?: string | undefined;
|
|
20478
20828
|
subcircuit_id?: string | undefined;
|
|
20479
20829
|
pcb_group_id?: string | undefined;
|
|
@@ -20514,8 +20864,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
20514
20864
|
width: number;
|
|
20515
20865
|
height: number;
|
|
20516
20866
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
20517
|
-
shape: "rotated_pill";
|
|
20518
20867
|
ccw_rotation: number;
|
|
20868
|
+
shape: "rotated_pill";
|
|
20519
20869
|
pcb_smtpad_id: string;
|
|
20520
20870
|
radius: number;
|
|
20521
20871
|
pcb_component_id?: string | undefined;
|
|
@@ -20533,8 +20883,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
20533
20883
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
20534
20884
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
20535
20885
|
};
|
|
20536
|
-
shape: "rotated_pill";
|
|
20537
20886
|
ccw_rotation: string | number;
|
|
20887
|
+
shape: "rotated_pill";
|
|
20538
20888
|
radius: number;
|
|
20539
20889
|
pcb_component_id?: string | undefined;
|
|
20540
20890
|
subcircuit_id?: string | undefined;
|
|
@@ -20838,8 +21188,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
20838
21188
|
width: number;
|
|
20839
21189
|
height: number;
|
|
20840
21190
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
20841
|
-
shape: "rotated_rect";
|
|
20842
21191
|
ccw_rotation: number;
|
|
21192
|
+
shape: "rotated_rect";
|
|
20843
21193
|
pcb_solder_paste_id: string;
|
|
20844
21194
|
pcb_component_id?: string | undefined;
|
|
20845
21195
|
subcircuit_id?: string | undefined;
|
|
@@ -20854,8 +21204,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
20854
21204
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
20855
21205
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
20856
21206
|
};
|
|
20857
|
-
shape: "rotated_rect";
|
|
20858
21207
|
ccw_rotation: string | number;
|
|
21208
|
+
shape: "rotated_rect";
|
|
20859
21209
|
pcb_component_id?: string | undefined;
|
|
20860
21210
|
subcircuit_id?: string | undefined;
|
|
20861
21211
|
pcb_group_id?: string | undefined;
|
|
@@ -24097,4 +24447,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
24097
24447
|
*/
|
|
24098
24448
|
type CircuitJson = AnyCircuitElement[];
|
|
24099
24449
|
|
|
24100
|
-
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 PCBCourtyardRect, type PCBFabricationNotePath, type PCBFabricationNoteRect, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, 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 PcbCourtyardRect, type PcbCourtyardRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, 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 PcbHolePillWithRectPad, type PcbHoleRotatedPillWithRectPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbNet, type PcbNetInput, 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 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_outside_board_error, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_courtyard_outline, pcb_courtyard_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_polygon, pcb_cutout_rect, 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_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_net, 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, visible_layer, voltage, wave_shape };
|
|
24450
|
+
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 PCBCourtyardRect, type PCBFabricationNotePath, type PCBFabricationNoteRect, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, 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 PcbCourtyardRect, type PcbCourtyardRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, 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 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 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_outside_board_error, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_courtyard_outline, pcb_courtyard_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_polygon, pcb_cutout_rect, 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_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, visible_layer, voltage, wave_shape };
|