circuit-json 0.0.335 → 0.0.337
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 +1 -0
- package/dist/index.d.mts +284 -2
- package/dist/index.mjs +405 -382
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -490,6 +490,7 @@ declare const pcb_hole_circle: z.ZodObject<{
|
|
|
490
490
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
491
491
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
492
492
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
493
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
493
494
|
hole_shape: z.ZodLiteral<"circle">;
|
|
494
495
|
hole_diameter: z.ZodNumber;
|
|
495
496
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -503,6 +504,7 @@ declare const pcb_hole_circle: z.ZodObject<{
|
|
|
503
504
|
pcb_hole_id: string;
|
|
504
505
|
hole_shape: "circle";
|
|
505
506
|
hole_diameter: number;
|
|
507
|
+
pcb_component_id?: string | undefined;
|
|
506
508
|
subcircuit_id?: string | undefined;
|
|
507
509
|
pcb_group_id?: string | undefined;
|
|
508
510
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -513,6 +515,7 @@ declare const pcb_hole_circle: z.ZodObject<{
|
|
|
513
515
|
type: "pcb_hole";
|
|
514
516
|
hole_shape: "circle";
|
|
515
517
|
hole_diameter: number;
|
|
518
|
+
pcb_component_id?: string | undefined;
|
|
516
519
|
subcircuit_id?: string | undefined;
|
|
517
520
|
pcb_group_id?: string | undefined;
|
|
518
521
|
pcb_hole_id?: string | undefined;
|
|
@@ -524,6 +527,7 @@ declare const pcb_hole_circle_shape: z.ZodObject<{
|
|
|
524
527
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
525
528
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
526
529
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
530
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
527
531
|
hole_shape: z.ZodLiteral<"circle">;
|
|
528
532
|
hole_diameter: z.ZodNumber;
|
|
529
533
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -537,6 +541,7 @@ declare const pcb_hole_circle_shape: z.ZodObject<{
|
|
|
537
541
|
pcb_hole_id: string;
|
|
538
542
|
hole_shape: "circle";
|
|
539
543
|
hole_diameter: number;
|
|
544
|
+
pcb_component_id?: string | undefined;
|
|
540
545
|
subcircuit_id?: string | undefined;
|
|
541
546
|
pcb_group_id?: string | undefined;
|
|
542
547
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -547,6 +552,7 @@ declare const pcb_hole_circle_shape: z.ZodObject<{
|
|
|
547
552
|
type: "pcb_hole";
|
|
548
553
|
hole_shape: "circle";
|
|
549
554
|
hole_diameter: number;
|
|
555
|
+
pcb_component_id?: string | undefined;
|
|
550
556
|
subcircuit_id?: string | undefined;
|
|
551
557
|
pcb_group_id?: string | undefined;
|
|
552
558
|
pcb_hole_id?: string | undefined;
|
|
@@ -562,6 +568,7 @@ interface PcbHoleCircle {
|
|
|
562
568
|
pcb_hole_id: string;
|
|
563
569
|
pcb_group_id?: string;
|
|
564
570
|
subcircuit_id?: string;
|
|
571
|
+
pcb_component_id?: string;
|
|
565
572
|
hole_shape: "circle";
|
|
566
573
|
hole_diameter: number;
|
|
567
574
|
x: Distance;
|
|
@@ -574,6 +581,7 @@ declare const pcb_hole_rect: z.ZodObject<{
|
|
|
574
581
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
575
582
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
576
583
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
584
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
577
585
|
hole_shape: z.ZodLiteral<"rect">;
|
|
578
586
|
hole_width: z.ZodNumber;
|
|
579
587
|
hole_height: z.ZodNumber;
|
|
@@ -589,6 +597,7 @@ declare const pcb_hole_rect: z.ZodObject<{
|
|
|
589
597
|
hole_shape: "rect";
|
|
590
598
|
hole_width: number;
|
|
591
599
|
hole_height: number;
|
|
600
|
+
pcb_component_id?: string | undefined;
|
|
592
601
|
subcircuit_id?: string | undefined;
|
|
593
602
|
pcb_group_id?: string | undefined;
|
|
594
603
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -600,6 +609,7 @@ declare const pcb_hole_rect: z.ZodObject<{
|
|
|
600
609
|
hole_shape: "rect";
|
|
601
610
|
hole_width: number;
|
|
602
611
|
hole_height: number;
|
|
612
|
+
pcb_component_id?: string | undefined;
|
|
603
613
|
subcircuit_id?: string | undefined;
|
|
604
614
|
pcb_group_id?: string | undefined;
|
|
605
615
|
pcb_hole_id?: string | undefined;
|
|
@@ -611,6 +621,7 @@ declare const pcb_hole_rect_shape: z.ZodObject<{
|
|
|
611
621
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
612
622
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
613
623
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
624
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
614
625
|
hole_shape: z.ZodLiteral<"rect">;
|
|
615
626
|
hole_width: z.ZodNumber;
|
|
616
627
|
hole_height: z.ZodNumber;
|
|
@@ -626,6 +637,7 @@ declare const pcb_hole_rect_shape: z.ZodObject<{
|
|
|
626
637
|
hole_shape: "rect";
|
|
627
638
|
hole_width: number;
|
|
628
639
|
hole_height: number;
|
|
640
|
+
pcb_component_id?: string | undefined;
|
|
629
641
|
subcircuit_id?: string | undefined;
|
|
630
642
|
pcb_group_id?: string | undefined;
|
|
631
643
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -637,6 +649,7 @@ declare const pcb_hole_rect_shape: z.ZodObject<{
|
|
|
637
649
|
hole_shape: "rect";
|
|
638
650
|
hole_width: number;
|
|
639
651
|
hole_height: number;
|
|
652
|
+
pcb_component_id?: string | undefined;
|
|
640
653
|
subcircuit_id?: string | undefined;
|
|
641
654
|
pcb_group_id?: string | undefined;
|
|
642
655
|
pcb_hole_id?: string | undefined;
|
|
@@ -652,6 +665,7 @@ interface PcbHoleRect {
|
|
|
652
665
|
pcb_hole_id: string;
|
|
653
666
|
pcb_group_id?: string;
|
|
654
667
|
subcircuit_id?: string;
|
|
668
|
+
pcb_component_id?: string;
|
|
655
669
|
hole_shape: "rect";
|
|
656
670
|
hole_width: number;
|
|
657
671
|
hole_height: number;
|
|
@@ -665,6 +679,7 @@ declare const pcb_hole_circle_or_square: z.ZodObject<{
|
|
|
665
679
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
666
680
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
667
681
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
682
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
668
683
|
hole_shape: z.ZodEnum<["circle", "square"]>;
|
|
669
684
|
hole_diameter: z.ZodNumber;
|
|
670
685
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -678,6 +693,7 @@ declare const pcb_hole_circle_or_square: z.ZodObject<{
|
|
|
678
693
|
pcb_hole_id: string;
|
|
679
694
|
hole_shape: "circle" | "square";
|
|
680
695
|
hole_diameter: number;
|
|
696
|
+
pcb_component_id?: string | undefined;
|
|
681
697
|
subcircuit_id?: string | undefined;
|
|
682
698
|
pcb_group_id?: string | undefined;
|
|
683
699
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -688,6 +704,7 @@ declare const pcb_hole_circle_or_square: z.ZodObject<{
|
|
|
688
704
|
type: "pcb_hole";
|
|
689
705
|
hole_shape: "circle" | "square";
|
|
690
706
|
hole_diameter: number;
|
|
707
|
+
pcb_component_id?: string | undefined;
|
|
691
708
|
subcircuit_id?: string | undefined;
|
|
692
709
|
pcb_group_id?: string | undefined;
|
|
693
710
|
pcb_hole_id?: string | undefined;
|
|
@@ -699,6 +716,7 @@ declare const pcb_hole_circle_or_square_shape: z.ZodObject<{
|
|
|
699
716
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
700
717
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
701
718
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
719
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
702
720
|
hole_shape: z.ZodEnum<["circle", "square"]>;
|
|
703
721
|
hole_diameter: z.ZodNumber;
|
|
704
722
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -712,6 +730,7 @@ declare const pcb_hole_circle_or_square_shape: z.ZodObject<{
|
|
|
712
730
|
pcb_hole_id: string;
|
|
713
731
|
hole_shape: "circle" | "square";
|
|
714
732
|
hole_diameter: number;
|
|
733
|
+
pcb_component_id?: string | undefined;
|
|
715
734
|
subcircuit_id?: string | undefined;
|
|
716
735
|
pcb_group_id?: string | undefined;
|
|
717
736
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -722,6 +741,7 @@ declare const pcb_hole_circle_or_square_shape: z.ZodObject<{
|
|
|
722
741
|
type: "pcb_hole";
|
|
723
742
|
hole_shape: "circle" | "square";
|
|
724
743
|
hole_diameter: number;
|
|
744
|
+
pcb_component_id?: string | undefined;
|
|
725
745
|
subcircuit_id?: string | undefined;
|
|
726
746
|
pcb_group_id?: string | undefined;
|
|
727
747
|
pcb_hole_id?: string | undefined;
|
|
@@ -740,6 +760,7 @@ interface PcbHoleCircleOrSquare {
|
|
|
740
760
|
pcb_hole_id: string;
|
|
741
761
|
pcb_group_id?: string;
|
|
742
762
|
subcircuit_id?: string;
|
|
763
|
+
pcb_component_id?: string;
|
|
743
764
|
hole_shape: "circle" | "square";
|
|
744
765
|
hole_diameter: number;
|
|
745
766
|
x: Distance;
|
|
@@ -752,6 +773,7 @@ declare const pcb_hole_oval: z.ZodObject<{
|
|
|
752
773
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
753
774
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
754
775
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
776
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
755
777
|
hole_shape: z.ZodLiteral<"oval">;
|
|
756
778
|
hole_width: z.ZodNumber;
|
|
757
779
|
hole_height: z.ZodNumber;
|
|
@@ -767,6 +789,7 @@ declare const pcb_hole_oval: z.ZodObject<{
|
|
|
767
789
|
hole_shape: "oval";
|
|
768
790
|
hole_width: number;
|
|
769
791
|
hole_height: number;
|
|
792
|
+
pcb_component_id?: string | undefined;
|
|
770
793
|
subcircuit_id?: string | undefined;
|
|
771
794
|
pcb_group_id?: string | undefined;
|
|
772
795
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -778,6 +801,7 @@ declare const pcb_hole_oval: z.ZodObject<{
|
|
|
778
801
|
hole_shape: "oval";
|
|
779
802
|
hole_width: number;
|
|
780
803
|
hole_height: number;
|
|
804
|
+
pcb_component_id?: string | undefined;
|
|
781
805
|
subcircuit_id?: string | undefined;
|
|
782
806
|
pcb_group_id?: string | undefined;
|
|
783
807
|
pcb_hole_id?: string | undefined;
|
|
@@ -789,6 +813,7 @@ declare const pcb_hole_oval_shape: z.ZodObject<{
|
|
|
789
813
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
790
814
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
791
815
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
816
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
792
817
|
hole_shape: z.ZodLiteral<"oval">;
|
|
793
818
|
hole_width: z.ZodNumber;
|
|
794
819
|
hole_height: z.ZodNumber;
|
|
@@ -804,6 +829,7 @@ declare const pcb_hole_oval_shape: z.ZodObject<{
|
|
|
804
829
|
hole_shape: "oval";
|
|
805
830
|
hole_width: number;
|
|
806
831
|
hole_height: number;
|
|
832
|
+
pcb_component_id?: string | undefined;
|
|
807
833
|
subcircuit_id?: string | undefined;
|
|
808
834
|
pcb_group_id?: string | undefined;
|
|
809
835
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -815,6 +841,7 @@ declare const pcb_hole_oval_shape: z.ZodObject<{
|
|
|
815
841
|
hole_shape: "oval";
|
|
816
842
|
hole_width: number;
|
|
817
843
|
hole_height: number;
|
|
844
|
+
pcb_component_id?: string | undefined;
|
|
818
845
|
subcircuit_id?: string | undefined;
|
|
819
846
|
pcb_group_id?: string | undefined;
|
|
820
847
|
pcb_hole_id?: string | undefined;
|
|
@@ -830,6 +857,7 @@ interface PcbHoleOval {
|
|
|
830
857
|
pcb_hole_id: string;
|
|
831
858
|
pcb_group_id?: string;
|
|
832
859
|
subcircuit_id?: string;
|
|
860
|
+
pcb_component_id?: string;
|
|
833
861
|
hole_shape: "oval";
|
|
834
862
|
hole_width: number;
|
|
835
863
|
hole_height: number;
|
|
@@ -843,6 +871,7 @@ declare const pcb_hole_pill: z.ZodObject<{
|
|
|
843
871
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
844
872
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
845
873
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
874
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
846
875
|
hole_shape: z.ZodLiteral<"pill">;
|
|
847
876
|
hole_width: z.ZodNumber;
|
|
848
877
|
hole_height: z.ZodNumber;
|
|
@@ -858,6 +887,7 @@ declare const pcb_hole_pill: z.ZodObject<{
|
|
|
858
887
|
hole_shape: "pill";
|
|
859
888
|
hole_width: number;
|
|
860
889
|
hole_height: number;
|
|
890
|
+
pcb_component_id?: string | undefined;
|
|
861
891
|
subcircuit_id?: string | undefined;
|
|
862
892
|
pcb_group_id?: string | undefined;
|
|
863
893
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -869,6 +899,7 @@ declare const pcb_hole_pill: z.ZodObject<{
|
|
|
869
899
|
hole_shape: "pill";
|
|
870
900
|
hole_width: number;
|
|
871
901
|
hole_height: number;
|
|
902
|
+
pcb_component_id?: string | undefined;
|
|
872
903
|
subcircuit_id?: string | undefined;
|
|
873
904
|
pcb_group_id?: string | undefined;
|
|
874
905
|
pcb_hole_id?: string | undefined;
|
|
@@ -880,6 +911,7 @@ declare const pcb_hole_pill_shape: z.ZodObject<{
|
|
|
880
911
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
881
912
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
882
913
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
914
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
883
915
|
hole_shape: z.ZodLiteral<"pill">;
|
|
884
916
|
hole_width: z.ZodNumber;
|
|
885
917
|
hole_height: z.ZodNumber;
|
|
@@ -895,6 +927,7 @@ declare const pcb_hole_pill_shape: z.ZodObject<{
|
|
|
895
927
|
hole_shape: "pill";
|
|
896
928
|
hole_width: number;
|
|
897
929
|
hole_height: number;
|
|
930
|
+
pcb_component_id?: string | undefined;
|
|
898
931
|
subcircuit_id?: string | undefined;
|
|
899
932
|
pcb_group_id?: string | undefined;
|
|
900
933
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -906,6 +939,7 @@ declare const pcb_hole_pill_shape: z.ZodObject<{
|
|
|
906
939
|
hole_shape: "pill";
|
|
907
940
|
hole_width: number;
|
|
908
941
|
hole_height: number;
|
|
942
|
+
pcb_component_id?: string | undefined;
|
|
909
943
|
subcircuit_id?: string | undefined;
|
|
910
944
|
pcb_group_id?: string | undefined;
|
|
911
945
|
pcb_hole_id?: string | undefined;
|
|
@@ -921,6 +955,7 @@ interface PcbHolePill {
|
|
|
921
955
|
pcb_hole_id: string;
|
|
922
956
|
pcb_group_id?: string;
|
|
923
957
|
subcircuit_id?: string;
|
|
958
|
+
pcb_component_id?: string;
|
|
924
959
|
hole_shape: "pill";
|
|
925
960
|
hole_width: number;
|
|
926
961
|
hole_height: number;
|
|
@@ -934,6 +969,7 @@ declare const pcb_hole_rotated_pill: z.ZodObject<{
|
|
|
934
969
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
935
970
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
936
971
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
972
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
937
973
|
hole_shape: z.ZodLiteral<"rotated_pill">;
|
|
938
974
|
hole_width: z.ZodNumber;
|
|
939
975
|
hole_height: z.ZodNumber;
|
|
@@ -951,6 +987,7 @@ declare const pcb_hole_rotated_pill: z.ZodObject<{
|
|
|
951
987
|
hole_width: number;
|
|
952
988
|
hole_height: number;
|
|
953
989
|
ccw_rotation: number;
|
|
990
|
+
pcb_component_id?: string | undefined;
|
|
954
991
|
subcircuit_id?: string | undefined;
|
|
955
992
|
pcb_group_id?: string | undefined;
|
|
956
993
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -963,6 +1000,7 @@ declare const pcb_hole_rotated_pill: z.ZodObject<{
|
|
|
963
1000
|
hole_width: number;
|
|
964
1001
|
hole_height: number;
|
|
965
1002
|
ccw_rotation: string | number;
|
|
1003
|
+
pcb_component_id?: string | undefined;
|
|
966
1004
|
subcircuit_id?: string | undefined;
|
|
967
1005
|
pcb_group_id?: string | undefined;
|
|
968
1006
|
pcb_hole_id?: string | undefined;
|
|
@@ -974,6 +1012,7 @@ declare const pcb_hole_rotated_pill_shape: z.ZodObject<{
|
|
|
974
1012
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
975
1013
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
976
1014
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
1015
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
977
1016
|
hole_shape: z.ZodLiteral<"rotated_pill">;
|
|
978
1017
|
hole_width: z.ZodNumber;
|
|
979
1018
|
hole_height: z.ZodNumber;
|
|
@@ -991,6 +1030,7 @@ declare const pcb_hole_rotated_pill_shape: z.ZodObject<{
|
|
|
991
1030
|
hole_width: number;
|
|
992
1031
|
hole_height: number;
|
|
993
1032
|
ccw_rotation: number;
|
|
1033
|
+
pcb_component_id?: string | undefined;
|
|
994
1034
|
subcircuit_id?: string | undefined;
|
|
995
1035
|
pcb_group_id?: string | undefined;
|
|
996
1036
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -1003,6 +1043,7 @@ declare const pcb_hole_rotated_pill_shape: z.ZodObject<{
|
|
|
1003
1043
|
hole_width: number;
|
|
1004
1044
|
hole_height: number;
|
|
1005
1045
|
ccw_rotation: string | number;
|
|
1046
|
+
pcb_component_id?: string | undefined;
|
|
1006
1047
|
subcircuit_id?: string | undefined;
|
|
1007
1048
|
pcb_group_id?: string | undefined;
|
|
1008
1049
|
pcb_hole_id?: string | undefined;
|
|
@@ -1018,6 +1059,7 @@ interface PcbHoleRotatedPill {
|
|
|
1018
1059
|
pcb_hole_id: string;
|
|
1019
1060
|
pcb_group_id?: string;
|
|
1020
1061
|
subcircuit_id?: string;
|
|
1062
|
+
pcb_component_id?: string;
|
|
1021
1063
|
hole_shape: "rotated_pill";
|
|
1022
1064
|
hole_width: number;
|
|
1023
1065
|
hole_height: number;
|
|
@@ -1032,6 +1074,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1032
1074
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1033
1075
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
1034
1076
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
1077
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
1035
1078
|
hole_shape: z.ZodEnum<["circle", "square"]>;
|
|
1036
1079
|
hole_diameter: z.ZodNumber;
|
|
1037
1080
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -1045,6 +1088,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1045
1088
|
pcb_hole_id: string;
|
|
1046
1089
|
hole_shape: "circle" | "square";
|
|
1047
1090
|
hole_diameter: number;
|
|
1091
|
+
pcb_component_id?: string | undefined;
|
|
1048
1092
|
subcircuit_id?: string | undefined;
|
|
1049
1093
|
pcb_group_id?: string | undefined;
|
|
1050
1094
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -1055,6 +1099,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1055
1099
|
type: "pcb_hole";
|
|
1056
1100
|
hole_shape: "circle" | "square";
|
|
1057
1101
|
hole_diameter: number;
|
|
1102
|
+
pcb_component_id?: string | undefined;
|
|
1058
1103
|
subcircuit_id?: string | undefined;
|
|
1059
1104
|
pcb_group_id?: string | undefined;
|
|
1060
1105
|
pcb_hole_id?: string | undefined;
|
|
@@ -1065,6 +1110,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1065
1110
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1066
1111
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
1067
1112
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
1113
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
1068
1114
|
hole_shape: z.ZodLiteral<"oval">;
|
|
1069
1115
|
hole_width: z.ZodNumber;
|
|
1070
1116
|
hole_height: z.ZodNumber;
|
|
@@ -1080,6 +1126,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1080
1126
|
hole_shape: "oval";
|
|
1081
1127
|
hole_width: number;
|
|
1082
1128
|
hole_height: number;
|
|
1129
|
+
pcb_component_id?: string | undefined;
|
|
1083
1130
|
subcircuit_id?: string | undefined;
|
|
1084
1131
|
pcb_group_id?: string | undefined;
|
|
1085
1132
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -1091,6 +1138,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1091
1138
|
hole_shape: "oval";
|
|
1092
1139
|
hole_width: number;
|
|
1093
1140
|
hole_height: number;
|
|
1141
|
+
pcb_component_id?: string | undefined;
|
|
1094
1142
|
subcircuit_id?: string | undefined;
|
|
1095
1143
|
pcb_group_id?: string | undefined;
|
|
1096
1144
|
pcb_hole_id?: string | undefined;
|
|
@@ -1101,6 +1149,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1101
1149
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1102
1150
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
1103
1151
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
1152
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
1104
1153
|
hole_shape: z.ZodLiteral<"pill">;
|
|
1105
1154
|
hole_width: z.ZodNumber;
|
|
1106
1155
|
hole_height: z.ZodNumber;
|
|
@@ -1116,6 +1165,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1116
1165
|
hole_shape: "pill";
|
|
1117
1166
|
hole_width: number;
|
|
1118
1167
|
hole_height: number;
|
|
1168
|
+
pcb_component_id?: string | undefined;
|
|
1119
1169
|
subcircuit_id?: string | undefined;
|
|
1120
1170
|
pcb_group_id?: string | undefined;
|
|
1121
1171
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -1127,6 +1177,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1127
1177
|
hole_shape: "pill";
|
|
1128
1178
|
hole_width: number;
|
|
1129
1179
|
hole_height: number;
|
|
1180
|
+
pcb_component_id?: string | undefined;
|
|
1130
1181
|
subcircuit_id?: string | undefined;
|
|
1131
1182
|
pcb_group_id?: string | undefined;
|
|
1132
1183
|
pcb_hole_id?: string | undefined;
|
|
@@ -1137,6 +1188,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1137
1188
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1138
1189
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
1139
1190
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
1191
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
1140
1192
|
hole_shape: z.ZodLiteral<"rotated_pill">;
|
|
1141
1193
|
hole_width: z.ZodNumber;
|
|
1142
1194
|
hole_height: z.ZodNumber;
|
|
@@ -1154,6 +1206,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1154
1206
|
hole_width: number;
|
|
1155
1207
|
hole_height: number;
|
|
1156
1208
|
ccw_rotation: number;
|
|
1209
|
+
pcb_component_id?: string | undefined;
|
|
1157
1210
|
subcircuit_id?: string | undefined;
|
|
1158
1211
|
pcb_group_id?: string | undefined;
|
|
1159
1212
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -1166,6 +1219,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1166
1219
|
hole_width: number;
|
|
1167
1220
|
hole_height: number;
|
|
1168
1221
|
ccw_rotation: string | number;
|
|
1222
|
+
pcb_component_id?: string | undefined;
|
|
1169
1223
|
subcircuit_id?: string | undefined;
|
|
1170
1224
|
pcb_group_id?: string | undefined;
|
|
1171
1225
|
pcb_hole_id?: string | undefined;
|
|
@@ -1176,6 +1230,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1176
1230
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1177
1231
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
1178
1232
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
1233
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
1179
1234
|
hole_shape: z.ZodLiteral<"circle">;
|
|
1180
1235
|
hole_diameter: z.ZodNumber;
|
|
1181
1236
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -1189,6 +1244,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1189
1244
|
pcb_hole_id: string;
|
|
1190
1245
|
hole_shape: "circle";
|
|
1191
1246
|
hole_diameter: number;
|
|
1247
|
+
pcb_component_id?: string | undefined;
|
|
1192
1248
|
subcircuit_id?: string | undefined;
|
|
1193
1249
|
pcb_group_id?: string | undefined;
|
|
1194
1250
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -1199,6 +1255,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1199
1255
|
type: "pcb_hole";
|
|
1200
1256
|
hole_shape: "circle";
|
|
1201
1257
|
hole_diameter: number;
|
|
1258
|
+
pcb_component_id?: string | undefined;
|
|
1202
1259
|
subcircuit_id?: string | undefined;
|
|
1203
1260
|
pcb_group_id?: string | undefined;
|
|
1204
1261
|
pcb_hole_id?: string | undefined;
|
|
@@ -1209,6 +1266,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1209
1266
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1210
1267
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
1211
1268
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
1269
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
1212
1270
|
hole_shape: z.ZodLiteral<"rect">;
|
|
1213
1271
|
hole_width: z.ZodNumber;
|
|
1214
1272
|
hole_height: z.ZodNumber;
|
|
@@ -1224,6 +1282,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1224
1282
|
hole_shape: "rect";
|
|
1225
1283
|
hole_width: number;
|
|
1226
1284
|
hole_height: number;
|
|
1285
|
+
pcb_component_id?: string | undefined;
|
|
1227
1286
|
subcircuit_id?: string | undefined;
|
|
1228
1287
|
pcb_group_id?: string | undefined;
|
|
1229
1288
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -1235,6 +1294,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1235
1294
|
hole_shape: "rect";
|
|
1236
1295
|
hole_width: number;
|
|
1237
1296
|
hole_height: number;
|
|
1297
|
+
pcb_component_id?: string | undefined;
|
|
1238
1298
|
subcircuit_id?: string | undefined;
|
|
1239
1299
|
pcb_group_id?: string | undefined;
|
|
1240
1300
|
pcb_hole_id?: string | undefined;
|
|
@@ -4452,6 +4512,82 @@ interface PcbSilkscreenOval {
|
|
|
4452
4512
|
*/
|
|
4453
4513
|
type PcbSilkscreenOvalDeprecated = PcbSilkscreenOval;
|
|
4454
4514
|
|
|
4515
|
+
declare const pcb_silkscreen_pill: z.ZodObject<{
|
|
4516
|
+
type: z.ZodLiteral<"pcb_silkscreen_pill">;
|
|
4517
|
+
pcb_silkscreen_pill_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
4518
|
+
pcb_component_id: z.ZodString;
|
|
4519
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
4520
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
4521
|
+
center: z.ZodObject<{
|
|
4522
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
4523
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
4524
|
+
}, "strip", z.ZodTypeAny, {
|
|
4525
|
+
x: number;
|
|
4526
|
+
y: number;
|
|
4527
|
+
}, {
|
|
4528
|
+
x: string | number;
|
|
4529
|
+
y: string | number;
|
|
4530
|
+
}>;
|
|
4531
|
+
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
4532
|
+
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
4533
|
+
layer: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
4534
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
4535
|
+
}, "strip", z.ZodTypeAny, {
|
|
4536
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
4537
|
+
}, {
|
|
4538
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
4539
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
4540
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
4541
|
+
}>;
|
|
4542
|
+
}, "strip", z.ZodTypeAny, {
|
|
4543
|
+
type: "pcb_silkscreen_pill";
|
|
4544
|
+
width: number;
|
|
4545
|
+
height: number;
|
|
4546
|
+
pcb_component_id: string;
|
|
4547
|
+
center: {
|
|
4548
|
+
x: number;
|
|
4549
|
+
y: number;
|
|
4550
|
+
};
|
|
4551
|
+
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
4552
|
+
pcb_silkscreen_pill_id: string;
|
|
4553
|
+
subcircuit_id?: string | undefined;
|
|
4554
|
+
pcb_group_id?: string | undefined;
|
|
4555
|
+
}, {
|
|
4556
|
+
type: "pcb_silkscreen_pill";
|
|
4557
|
+
width: string | number;
|
|
4558
|
+
height: string | number;
|
|
4559
|
+
pcb_component_id: string;
|
|
4560
|
+
center: {
|
|
4561
|
+
x: string | number;
|
|
4562
|
+
y: string | number;
|
|
4563
|
+
};
|
|
4564
|
+
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
4565
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
4566
|
+
};
|
|
4567
|
+
subcircuit_id?: string | undefined;
|
|
4568
|
+
pcb_group_id?: string | undefined;
|
|
4569
|
+
pcb_silkscreen_pill_id?: string | undefined;
|
|
4570
|
+
}>;
|
|
4571
|
+
type PcbSilkscreenPillInput = z.input<typeof pcb_silkscreen_pill>;
|
|
4572
|
+
/**
|
|
4573
|
+
* Defines a silkscreen pill on the PCB
|
|
4574
|
+
*/
|
|
4575
|
+
interface PcbSilkscreenPill {
|
|
4576
|
+
type: "pcb_silkscreen_pill";
|
|
4577
|
+
pcb_silkscreen_pill_id: string;
|
|
4578
|
+
pcb_component_id: string;
|
|
4579
|
+
pcb_group_id?: string;
|
|
4580
|
+
subcircuit_id?: string;
|
|
4581
|
+
center: Point;
|
|
4582
|
+
width: Length;
|
|
4583
|
+
height: Length;
|
|
4584
|
+
layer: LayerRef;
|
|
4585
|
+
}
|
|
4586
|
+
/**
|
|
4587
|
+
* @deprecated use PcbSilkscreenPill
|
|
4588
|
+
*/
|
|
4589
|
+
type PcbSilkscreenPillDeprecated = PcbSilkscreenPill;
|
|
4590
|
+
|
|
4455
4591
|
declare const pcb_fabrication_note_text: z.ZodObject<{
|
|
4456
4592
|
type: z.ZodLiteral<"pcb_fabrication_note_text">;
|
|
4457
4593
|
pcb_fabrication_note_text_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -7463,7 +7599,7 @@ interface PcbCourtyardPolygon {
|
|
|
7463
7599
|
*/
|
|
7464
7600
|
type PCBCourtyardPolygon = PcbCourtyardPolygon;
|
|
7465
7601
|
|
|
7466
|
-
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;
|
|
7602
|
+
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 | PcbSilkscreenPill | PcbCopperText | PcbSilkscreenRect | PcbSilkscreenCircle | PcbFabricationNoteRect | PcbFabricationNoteDimension | PcbNoteText | PcbNoteRect | PcbNotePath | PcbNoteLine | PcbNoteDimension | PcbAutoroutingError | PcbFootprintOverlapError | PcbCutout | PcbBreakoutPoint | PcbGroundPlane | PcbGroundPlaneRegion | PcbThermalSpoke | PcbCopperPour | PcbComponentOutsideBoardError | PcbComponentInvalidLayerError | PcbViaClearanceError | PcbCourtyardRect | PcbCourtyardOutline | PcbCourtyardPolygon;
|
|
7467
7603
|
|
|
7468
7604
|
interface SchematicBox {
|
|
7469
7605
|
type: "schematic_box";
|
|
@@ -15239,6 +15375,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15239
15375
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15240
15376
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
15241
15377
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
15378
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
15242
15379
|
hole_shape: z.ZodEnum<["circle", "square"]>;
|
|
15243
15380
|
hole_diameter: z.ZodNumber;
|
|
15244
15381
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -15252,6 +15389,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15252
15389
|
pcb_hole_id: string;
|
|
15253
15390
|
hole_shape: "circle" | "square";
|
|
15254
15391
|
hole_diameter: number;
|
|
15392
|
+
pcb_component_id?: string | undefined;
|
|
15255
15393
|
subcircuit_id?: string | undefined;
|
|
15256
15394
|
pcb_group_id?: string | undefined;
|
|
15257
15395
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -15262,6 +15400,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15262
15400
|
type: "pcb_hole";
|
|
15263
15401
|
hole_shape: "circle" | "square";
|
|
15264
15402
|
hole_diameter: number;
|
|
15403
|
+
pcb_component_id?: string | undefined;
|
|
15265
15404
|
subcircuit_id?: string | undefined;
|
|
15266
15405
|
pcb_group_id?: string | undefined;
|
|
15267
15406
|
pcb_hole_id?: string | undefined;
|
|
@@ -15272,6 +15411,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15272
15411
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15273
15412
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
15274
15413
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
15414
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
15275
15415
|
hole_shape: z.ZodLiteral<"oval">;
|
|
15276
15416
|
hole_width: z.ZodNumber;
|
|
15277
15417
|
hole_height: z.ZodNumber;
|
|
@@ -15287,6 +15427,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15287
15427
|
hole_shape: "oval";
|
|
15288
15428
|
hole_width: number;
|
|
15289
15429
|
hole_height: number;
|
|
15430
|
+
pcb_component_id?: string | undefined;
|
|
15290
15431
|
subcircuit_id?: string | undefined;
|
|
15291
15432
|
pcb_group_id?: string | undefined;
|
|
15292
15433
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -15298,6 +15439,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15298
15439
|
hole_shape: "oval";
|
|
15299
15440
|
hole_width: number;
|
|
15300
15441
|
hole_height: number;
|
|
15442
|
+
pcb_component_id?: string | undefined;
|
|
15301
15443
|
subcircuit_id?: string | undefined;
|
|
15302
15444
|
pcb_group_id?: string | undefined;
|
|
15303
15445
|
pcb_hole_id?: string | undefined;
|
|
@@ -15308,6 +15450,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15308
15450
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15309
15451
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
15310
15452
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
15453
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
15311
15454
|
hole_shape: z.ZodLiteral<"pill">;
|
|
15312
15455
|
hole_width: z.ZodNumber;
|
|
15313
15456
|
hole_height: z.ZodNumber;
|
|
@@ -15323,6 +15466,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15323
15466
|
hole_shape: "pill";
|
|
15324
15467
|
hole_width: number;
|
|
15325
15468
|
hole_height: number;
|
|
15469
|
+
pcb_component_id?: string | undefined;
|
|
15326
15470
|
subcircuit_id?: string | undefined;
|
|
15327
15471
|
pcb_group_id?: string | undefined;
|
|
15328
15472
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -15334,6 +15478,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15334
15478
|
hole_shape: "pill";
|
|
15335
15479
|
hole_width: number;
|
|
15336
15480
|
hole_height: number;
|
|
15481
|
+
pcb_component_id?: string | undefined;
|
|
15337
15482
|
subcircuit_id?: string | undefined;
|
|
15338
15483
|
pcb_group_id?: string | undefined;
|
|
15339
15484
|
pcb_hole_id?: string | undefined;
|
|
@@ -15344,6 +15489,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15344
15489
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15345
15490
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
15346
15491
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
15492
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
15347
15493
|
hole_shape: z.ZodLiteral<"rotated_pill">;
|
|
15348
15494
|
hole_width: z.ZodNumber;
|
|
15349
15495
|
hole_height: z.ZodNumber;
|
|
@@ -15361,6 +15507,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15361
15507
|
hole_width: number;
|
|
15362
15508
|
hole_height: number;
|
|
15363
15509
|
ccw_rotation: number;
|
|
15510
|
+
pcb_component_id?: string | undefined;
|
|
15364
15511
|
subcircuit_id?: string | undefined;
|
|
15365
15512
|
pcb_group_id?: string | undefined;
|
|
15366
15513
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -15373,6 +15520,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15373
15520
|
hole_width: number;
|
|
15374
15521
|
hole_height: number;
|
|
15375
15522
|
ccw_rotation: string | number;
|
|
15523
|
+
pcb_component_id?: string | undefined;
|
|
15376
15524
|
subcircuit_id?: string | undefined;
|
|
15377
15525
|
pcb_group_id?: string | undefined;
|
|
15378
15526
|
pcb_hole_id?: string | undefined;
|
|
@@ -15383,6 +15531,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15383
15531
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15384
15532
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
15385
15533
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
15534
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
15386
15535
|
hole_shape: z.ZodLiteral<"circle">;
|
|
15387
15536
|
hole_diameter: z.ZodNumber;
|
|
15388
15537
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -15396,6 +15545,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15396
15545
|
pcb_hole_id: string;
|
|
15397
15546
|
hole_shape: "circle";
|
|
15398
15547
|
hole_diameter: number;
|
|
15548
|
+
pcb_component_id?: string | undefined;
|
|
15399
15549
|
subcircuit_id?: string | undefined;
|
|
15400
15550
|
pcb_group_id?: string | undefined;
|
|
15401
15551
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -15406,6 +15556,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15406
15556
|
type: "pcb_hole";
|
|
15407
15557
|
hole_shape: "circle";
|
|
15408
15558
|
hole_diameter: number;
|
|
15559
|
+
pcb_component_id?: string | undefined;
|
|
15409
15560
|
subcircuit_id?: string | undefined;
|
|
15410
15561
|
pcb_group_id?: string | undefined;
|
|
15411
15562
|
pcb_hole_id?: string | undefined;
|
|
@@ -15416,6 +15567,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15416
15567
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15417
15568
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
15418
15569
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
15570
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
15419
15571
|
hole_shape: z.ZodLiteral<"rect">;
|
|
15420
15572
|
hole_width: z.ZodNumber;
|
|
15421
15573
|
hole_height: z.ZodNumber;
|
|
@@ -15431,6 +15583,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15431
15583
|
hole_shape: "rect";
|
|
15432
15584
|
hole_width: number;
|
|
15433
15585
|
hole_height: number;
|
|
15586
|
+
pcb_component_id?: string | undefined;
|
|
15434
15587
|
subcircuit_id?: string | undefined;
|
|
15435
15588
|
pcb_group_id?: string | undefined;
|
|
15436
15589
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -15442,6 +15595,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15442
15595
|
hole_shape: "rect";
|
|
15443
15596
|
hole_width: number;
|
|
15444
15597
|
hole_height: number;
|
|
15598
|
+
pcb_component_id?: string | undefined;
|
|
15445
15599
|
subcircuit_id?: string | undefined;
|
|
15446
15600
|
pcb_group_id?: string | undefined;
|
|
15447
15601
|
pcb_hole_id?: string | undefined;
|
|
@@ -17532,6 +17686,61 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17532
17686
|
y: string | number;
|
|
17533
17687
|
} | undefined;
|
|
17534
17688
|
anchor_alignment?: "center" | "top_left" | "top_center" | "top_right" | "center_left" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
17689
|
+
}>, z.ZodObject<{
|
|
17690
|
+
type: z.ZodLiteral<"pcb_silkscreen_pill">;
|
|
17691
|
+
pcb_silkscreen_pill_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
17692
|
+
pcb_component_id: z.ZodString;
|
|
17693
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
17694
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
17695
|
+
center: z.ZodObject<{
|
|
17696
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
17697
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
17698
|
+
}, "strip", z.ZodTypeAny, {
|
|
17699
|
+
x: number;
|
|
17700
|
+
y: number;
|
|
17701
|
+
}, {
|
|
17702
|
+
x: string | number;
|
|
17703
|
+
y: string | number;
|
|
17704
|
+
}>;
|
|
17705
|
+
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
17706
|
+
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
17707
|
+
layer: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
17708
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
17709
|
+
}, "strip", z.ZodTypeAny, {
|
|
17710
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
17711
|
+
}, {
|
|
17712
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
17713
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
17714
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
17715
|
+
}>;
|
|
17716
|
+
}, "strip", z.ZodTypeAny, {
|
|
17717
|
+
type: "pcb_silkscreen_pill";
|
|
17718
|
+
width: number;
|
|
17719
|
+
height: number;
|
|
17720
|
+
pcb_component_id: string;
|
|
17721
|
+
center: {
|
|
17722
|
+
x: number;
|
|
17723
|
+
y: number;
|
|
17724
|
+
};
|
|
17725
|
+
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
17726
|
+
pcb_silkscreen_pill_id: string;
|
|
17727
|
+
subcircuit_id?: string | undefined;
|
|
17728
|
+
pcb_group_id?: string | undefined;
|
|
17729
|
+
}, {
|
|
17730
|
+
type: "pcb_silkscreen_pill";
|
|
17731
|
+
width: string | number;
|
|
17732
|
+
height: string | number;
|
|
17733
|
+
pcb_component_id: string;
|
|
17734
|
+
center: {
|
|
17735
|
+
x: string | number;
|
|
17736
|
+
y: string | number;
|
|
17737
|
+
};
|
|
17738
|
+
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
17739
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
17740
|
+
};
|
|
17741
|
+
subcircuit_id?: string | undefined;
|
|
17742
|
+
pcb_group_id?: string | undefined;
|
|
17743
|
+
pcb_silkscreen_pill_id?: string | undefined;
|
|
17535
17744
|
}>, z.ZodObject<{
|
|
17536
17745
|
type: z.ZodLiteral<"pcb_copper_text">;
|
|
17537
17746
|
pcb_copper_text_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -23311,6 +23520,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23311
23520
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
23312
23521
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
23313
23522
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
23523
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23314
23524
|
hole_shape: z.ZodEnum<["circle", "square"]>;
|
|
23315
23525
|
hole_diameter: z.ZodNumber;
|
|
23316
23526
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -23324,6 +23534,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23324
23534
|
pcb_hole_id: string;
|
|
23325
23535
|
hole_shape: "circle" | "square";
|
|
23326
23536
|
hole_diameter: number;
|
|
23537
|
+
pcb_component_id?: string | undefined;
|
|
23327
23538
|
subcircuit_id?: string | undefined;
|
|
23328
23539
|
pcb_group_id?: string | undefined;
|
|
23329
23540
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -23334,6 +23545,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23334
23545
|
type: "pcb_hole";
|
|
23335
23546
|
hole_shape: "circle" | "square";
|
|
23336
23547
|
hole_diameter: number;
|
|
23548
|
+
pcb_component_id?: string | undefined;
|
|
23337
23549
|
subcircuit_id?: string | undefined;
|
|
23338
23550
|
pcb_group_id?: string | undefined;
|
|
23339
23551
|
pcb_hole_id?: string | undefined;
|
|
@@ -23344,6 +23556,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23344
23556
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
23345
23557
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
23346
23558
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
23559
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23347
23560
|
hole_shape: z.ZodLiteral<"oval">;
|
|
23348
23561
|
hole_width: z.ZodNumber;
|
|
23349
23562
|
hole_height: z.ZodNumber;
|
|
@@ -23359,6 +23572,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23359
23572
|
hole_shape: "oval";
|
|
23360
23573
|
hole_width: number;
|
|
23361
23574
|
hole_height: number;
|
|
23575
|
+
pcb_component_id?: string | undefined;
|
|
23362
23576
|
subcircuit_id?: string | undefined;
|
|
23363
23577
|
pcb_group_id?: string | undefined;
|
|
23364
23578
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -23370,6 +23584,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23370
23584
|
hole_shape: "oval";
|
|
23371
23585
|
hole_width: number;
|
|
23372
23586
|
hole_height: number;
|
|
23587
|
+
pcb_component_id?: string | undefined;
|
|
23373
23588
|
subcircuit_id?: string | undefined;
|
|
23374
23589
|
pcb_group_id?: string | undefined;
|
|
23375
23590
|
pcb_hole_id?: string | undefined;
|
|
@@ -23380,6 +23595,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23380
23595
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
23381
23596
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
23382
23597
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
23598
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23383
23599
|
hole_shape: z.ZodLiteral<"pill">;
|
|
23384
23600
|
hole_width: z.ZodNumber;
|
|
23385
23601
|
hole_height: z.ZodNumber;
|
|
@@ -23395,6 +23611,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23395
23611
|
hole_shape: "pill";
|
|
23396
23612
|
hole_width: number;
|
|
23397
23613
|
hole_height: number;
|
|
23614
|
+
pcb_component_id?: string | undefined;
|
|
23398
23615
|
subcircuit_id?: string | undefined;
|
|
23399
23616
|
pcb_group_id?: string | undefined;
|
|
23400
23617
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -23406,6 +23623,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23406
23623
|
hole_shape: "pill";
|
|
23407
23624
|
hole_width: number;
|
|
23408
23625
|
hole_height: number;
|
|
23626
|
+
pcb_component_id?: string | undefined;
|
|
23409
23627
|
subcircuit_id?: string | undefined;
|
|
23410
23628
|
pcb_group_id?: string | undefined;
|
|
23411
23629
|
pcb_hole_id?: string | undefined;
|
|
@@ -23416,6 +23634,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23416
23634
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
23417
23635
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
23418
23636
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
23637
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23419
23638
|
hole_shape: z.ZodLiteral<"rotated_pill">;
|
|
23420
23639
|
hole_width: z.ZodNumber;
|
|
23421
23640
|
hole_height: z.ZodNumber;
|
|
@@ -23433,6 +23652,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23433
23652
|
hole_width: number;
|
|
23434
23653
|
hole_height: number;
|
|
23435
23654
|
ccw_rotation: number;
|
|
23655
|
+
pcb_component_id?: string | undefined;
|
|
23436
23656
|
subcircuit_id?: string | undefined;
|
|
23437
23657
|
pcb_group_id?: string | undefined;
|
|
23438
23658
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -23445,6 +23665,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23445
23665
|
hole_width: number;
|
|
23446
23666
|
hole_height: number;
|
|
23447
23667
|
ccw_rotation: string | number;
|
|
23668
|
+
pcb_component_id?: string | undefined;
|
|
23448
23669
|
subcircuit_id?: string | undefined;
|
|
23449
23670
|
pcb_group_id?: string | undefined;
|
|
23450
23671
|
pcb_hole_id?: string | undefined;
|
|
@@ -23455,6 +23676,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23455
23676
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
23456
23677
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
23457
23678
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
23679
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23458
23680
|
hole_shape: z.ZodLiteral<"circle">;
|
|
23459
23681
|
hole_diameter: z.ZodNumber;
|
|
23460
23682
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -23468,6 +23690,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23468
23690
|
pcb_hole_id: string;
|
|
23469
23691
|
hole_shape: "circle";
|
|
23470
23692
|
hole_diameter: number;
|
|
23693
|
+
pcb_component_id?: string | undefined;
|
|
23471
23694
|
subcircuit_id?: string | undefined;
|
|
23472
23695
|
pcb_group_id?: string | undefined;
|
|
23473
23696
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -23478,6 +23701,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23478
23701
|
type: "pcb_hole";
|
|
23479
23702
|
hole_shape: "circle";
|
|
23480
23703
|
hole_diameter: number;
|
|
23704
|
+
pcb_component_id?: string | undefined;
|
|
23481
23705
|
subcircuit_id?: string | undefined;
|
|
23482
23706
|
pcb_group_id?: string | undefined;
|
|
23483
23707
|
pcb_hole_id?: string | undefined;
|
|
@@ -23488,6 +23712,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23488
23712
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
23489
23713
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
23490
23714
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
23715
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23491
23716
|
hole_shape: z.ZodLiteral<"rect">;
|
|
23492
23717
|
hole_width: z.ZodNumber;
|
|
23493
23718
|
hole_height: z.ZodNumber;
|
|
@@ -23503,6 +23728,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23503
23728
|
hole_shape: "rect";
|
|
23504
23729
|
hole_width: number;
|
|
23505
23730
|
hole_height: number;
|
|
23731
|
+
pcb_component_id?: string | undefined;
|
|
23506
23732
|
subcircuit_id?: string | undefined;
|
|
23507
23733
|
pcb_group_id?: string | undefined;
|
|
23508
23734
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -23514,6 +23740,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23514
23740
|
hole_shape: "rect";
|
|
23515
23741
|
hole_width: number;
|
|
23516
23742
|
hole_height: number;
|
|
23743
|
+
pcb_component_id?: string | undefined;
|
|
23517
23744
|
subcircuit_id?: string | undefined;
|
|
23518
23745
|
pcb_group_id?: string | undefined;
|
|
23519
23746
|
pcb_hole_id?: string | undefined;
|
|
@@ -25604,6 +25831,61 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
25604
25831
|
y: string | number;
|
|
25605
25832
|
} | undefined;
|
|
25606
25833
|
anchor_alignment?: "center" | "top_left" | "top_center" | "top_right" | "center_left" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
25834
|
+
}>, z.ZodObject<{
|
|
25835
|
+
type: z.ZodLiteral<"pcb_silkscreen_pill">;
|
|
25836
|
+
pcb_silkscreen_pill_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
25837
|
+
pcb_component_id: z.ZodString;
|
|
25838
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
25839
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
25840
|
+
center: z.ZodObject<{
|
|
25841
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
25842
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
25843
|
+
}, "strip", z.ZodTypeAny, {
|
|
25844
|
+
x: number;
|
|
25845
|
+
y: number;
|
|
25846
|
+
}, {
|
|
25847
|
+
x: string | number;
|
|
25848
|
+
y: string | number;
|
|
25849
|
+
}>;
|
|
25850
|
+
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
25851
|
+
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
25852
|
+
layer: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
25853
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
25854
|
+
}, "strip", z.ZodTypeAny, {
|
|
25855
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
25856
|
+
}, {
|
|
25857
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
25858
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
25859
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
25860
|
+
}>;
|
|
25861
|
+
}, "strip", z.ZodTypeAny, {
|
|
25862
|
+
type: "pcb_silkscreen_pill";
|
|
25863
|
+
width: number;
|
|
25864
|
+
height: number;
|
|
25865
|
+
pcb_component_id: string;
|
|
25866
|
+
center: {
|
|
25867
|
+
x: number;
|
|
25868
|
+
y: number;
|
|
25869
|
+
};
|
|
25870
|
+
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
25871
|
+
pcb_silkscreen_pill_id: string;
|
|
25872
|
+
subcircuit_id?: string | undefined;
|
|
25873
|
+
pcb_group_id?: string | undefined;
|
|
25874
|
+
}, {
|
|
25875
|
+
type: "pcb_silkscreen_pill";
|
|
25876
|
+
width: string | number;
|
|
25877
|
+
height: string | number;
|
|
25878
|
+
pcb_component_id: string;
|
|
25879
|
+
center: {
|
|
25880
|
+
x: string | number;
|
|
25881
|
+
y: string | number;
|
|
25882
|
+
};
|
|
25883
|
+
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
25884
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
25885
|
+
};
|
|
25886
|
+
subcircuit_id?: string | undefined;
|
|
25887
|
+
pcb_group_id?: string | undefined;
|
|
25888
|
+
pcb_silkscreen_pill_id?: string | undefined;
|
|
25607
25889
|
}>, z.ZodObject<{
|
|
25608
25890
|
type: z.ZodLiteral<"pcb_copper_text">;
|
|
25609
25891
|
pcb_copper_text_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -29157,4 +29439,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
29157
29439
|
*/
|
|
29158
29440
|
type CircuitJson = AnyCircuitElement[];
|
|
29159
29441
|
|
|
29160
|
-
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 PcbCutoutPath, type PcbCutoutPathInput, 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 PcbHoleCircle, type PcbHoleCircleInput, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePill, type PcbHolePillInput, type PcbHolePillWithRectPad, type PcbHoleRect, type PcbHoleRectInput, type PcbHoleRotatedPill, type PcbHoleRotatedPillInput, type PcbHoleRotatedPillWithRectPad, type PcbHoleWithPolygonPad, 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 SchematicSheet, type SchematicSheetInput, 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 SimulationUnknownExperimentError, type SimulationUnknownExperimentErrorInput, type SimulationVoltageProbe, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceComponentInternalConnection, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceInterconnect, type SourceInterconnectInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePinMustBeConnectedError, type SourcePinMustBeConnectedErrorInput, 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 SourceSimpleFiducial, type SourceSimpleFiducialInput, 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 SourceSimpleVoltageProbe, type SourceSimpleVoltageProbeInput, 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_path, 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_circle_shape, pcb_hole_oval_shape, pcb_hole_pill_shape, pcb_hole_rect_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_sheet, 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_unknown_experiment_error, simulation_voltage_probe, simulation_voltage_source, size, source_board, source_component_base, source_component_internal_connection, source_failed_to_create_component_error, source_group, source_interconnect, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, source_pin_missing_trace_warning, source_pin_must_be_connected_error, 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_fiducial, 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_simple_voltage_probe, source_trace, source_trace_not_connected_error, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|
|
29442
|
+
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 PcbCutoutPath, type PcbCutoutPathInput, 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 PcbHoleCircle, type PcbHoleCircleInput, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePill, type PcbHolePillInput, type PcbHolePillWithRectPad, type PcbHoleRect, type PcbHoleRectInput, type PcbHoleRotatedPill, type PcbHoleRotatedPillInput, type PcbHoleRotatedPillWithRectPad, type PcbHoleWithPolygonPad, 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 PcbSilkscreenPill, type PcbSilkscreenPillDeprecated, type PcbSilkscreenPillInput, 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 SchematicSheet, type SchematicSheetInput, 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 SimulationUnknownExperimentError, type SimulationUnknownExperimentErrorInput, type SimulationVoltageProbe, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceComponentInternalConnection, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceInterconnect, type SourceInterconnectInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePinMustBeConnectedError, type SourcePinMustBeConnectedErrorInput, 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 SourceSimpleFiducial, type SourceSimpleFiducialInput, 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 SourceSimpleVoltageProbe, type SourceSimpleVoltageProbeInput, 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_path, 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_circle_shape, pcb_hole_oval_shape, pcb_hole_pill_shape, pcb_hole_rect_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_pill, 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_sheet, 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_unknown_experiment_error, simulation_voltage_probe, simulation_voltage_source, size, source_board, source_component_base, source_component_internal_connection, source_failed_to_create_component_error, source_group, source_interconnect, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, source_pin_missing_trace_warning, source_pin_must_be_connected_error, 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_fiducial, 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_simple_voltage_probe, source_trace, source_trace_not_connected_error, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|