circuit-json 0.0.335 → 0.0.336
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 +96 -0
- package/dist/index.mjs +6 -0
- 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;
|
|
@@ -15239,6 +15299,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15239
15299
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15240
15300
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
15241
15301
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
15302
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
15242
15303
|
hole_shape: z.ZodEnum<["circle", "square"]>;
|
|
15243
15304
|
hole_diameter: z.ZodNumber;
|
|
15244
15305
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -15252,6 +15313,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15252
15313
|
pcb_hole_id: string;
|
|
15253
15314
|
hole_shape: "circle" | "square";
|
|
15254
15315
|
hole_diameter: number;
|
|
15316
|
+
pcb_component_id?: string | undefined;
|
|
15255
15317
|
subcircuit_id?: string | undefined;
|
|
15256
15318
|
pcb_group_id?: string | undefined;
|
|
15257
15319
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -15262,6 +15324,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15262
15324
|
type: "pcb_hole";
|
|
15263
15325
|
hole_shape: "circle" | "square";
|
|
15264
15326
|
hole_diameter: number;
|
|
15327
|
+
pcb_component_id?: string | undefined;
|
|
15265
15328
|
subcircuit_id?: string | undefined;
|
|
15266
15329
|
pcb_group_id?: string | undefined;
|
|
15267
15330
|
pcb_hole_id?: string | undefined;
|
|
@@ -15272,6 +15335,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15272
15335
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15273
15336
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
15274
15337
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
15338
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
15275
15339
|
hole_shape: z.ZodLiteral<"oval">;
|
|
15276
15340
|
hole_width: z.ZodNumber;
|
|
15277
15341
|
hole_height: z.ZodNumber;
|
|
@@ -15287,6 +15351,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15287
15351
|
hole_shape: "oval";
|
|
15288
15352
|
hole_width: number;
|
|
15289
15353
|
hole_height: number;
|
|
15354
|
+
pcb_component_id?: string | undefined;
|
|
15290
15355
|
subcircuit_id?: string | undefined;
|
|
15291
15356
|
pcb_group_id?: string | undefined;
|
|
15292
15357
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -15298,6 +15363,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15298
15363
|
hole_shape: "oval";
|
|
15299
15364
|
hole_width: number;
|
|
15300
15365
|
hole_height: number;
|
|
15366
|
+
pcb_component_id?: string | undefined;
|
|
15301
15367
|
subcircuit_id?: string | undefined;
|
|
15302
15368
|
pcb_group_id?: string | undefined;
|
|
15303
15369
|
pcb_hole_id?: string | undefined;
|
|
@@ -15308,6 +15374,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15308
15374
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15309
15375
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
15310
15376
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
15377
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
15311
15378
|
hole_shape: z.ZodLiteral<"pill">;
|
|
15312
15379
|
hole_width: z.ZodNumber;
|
|
15313
15380
|
hole_height: z.ZodNumber;
|
|
@@ -15323,6 +15390,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15323
15390
|
hole_shape: "pill";
|
|
15324
15391
|
hole_width: number;
|
|
15325
15392
|
hole_height: number;
|
|
15393
|
+
pcb_component_id?: string | undefined;
|
|
15326
15394
|
subcircuit_id?: string | undefined;
|
|
15327
15395
|
pcb_group_id?: string | undefined;
|
|
15328
15396
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -15334,6 +15402,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15334
15402
|
hole_shape: "pill";
|
|
15335
15403
|
hole_width: number;
|
|
15336
15404
|
hole_height: number;
|
|
15405
|
+
pcb_component_id?: string | undefined;
|
|
15337
15406
|
subcircuit_id?: string | undefined;
|
|
15338
15407
|
pcb_group_id?: string | undefined;
|
|
15339
15408
|
pcb_hole_id?: string | undefined;
|
|
@@ -15344,6 +15413,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15344
15413
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15345
15414
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
15346
15415
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
15416
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
15347
15417
|
hole_shape: z.ZodLiteral<"rotated_pill">;
|
|
15348
15418
|
hole_width: z.ZodNumber;
|
|
15349
15419
|
hole_height: z.ZodNumber;
|
|
@@ -15361,6 +15431,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15361
15431
|
hole_width: number;
|
|
15362
15432
|
hole_height: number;
|
|
15363
15433
|
ccw_rotation: number;
|
|
15434
|
+
pcb_component_id?: string | undefined;
|
|
15364
15435
|
subcircuit_id?: string | undefined;
|
|
15365
15436
|
pcb_group_id?: string | undefined;
|
|
15366
15437
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -15373,6 +15444,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15373
15444
|
hole_width: number;
|
|
15374
15445
|
hole_height: number;
|
|
15375
15446
|
ccw_rotation: string | number;
|
|
15447
|
+
pcb_component_id?: string | undefined;
|
|
15376
15448
|
subcircuit_id?: string | undefined;
|
|
15377
15449
|
pcb_group_id?: string | undefined;
|
|
15378
15450
|
pcb_hole_id?: string | undefined;
|
|
@@ -15383,6 +15455,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15383
15455
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15384
15456
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
15385
15457
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
15458
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
15386
15459
|
hole_shape: z.ZodLiteral<"circle">;
|
|
15387
15460
|
hole_diameter: z.ZodNumber;
|
|
15388
15461
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -15396,6 +15469,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15396
15469
|
pcb_hole_id: string;
|
|
15397
15470
|
hole_shape: "circle";
|
|
15398
15471
|
hole_diameter: number;
|
|
15472
|
+
pcb_component_id?: string | undefined;
|
|
15399
15473
|
subcircuit_id?: string | undefined;
|
|
15400
15474
|
pcb_group_id?: string | undefined;
|
|
15401
15475
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -15406,6 +15480,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15406
15480
|
type: "pcb_hole";
|
|
15407
15481
|
hole_shape: "circle";
|
|
15408
15482
|
hole_diameter: number;
|
|
15483
|
+
pcb_component_id?: string | undefined;
|
|
15409
15484
|
subcircuit_id?: string | undefined;
|
|
15410
15485
|
pcb_group_id?: string | undefined;
|
|
15411
15486
|
pcb_hole_id?: string | undefined;
|
|
@@ -15416,6 +15491,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15416
15491
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15417
15492
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
15418
15493
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
15494
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
15419
15495
|
hole_shape: z.ZodLiteral<"rect">;
|
|
15420
15496
|
hole_width: z.ZodNumber;
|
|
15421
15497
|
hole_height: z.ZodNumber;
|
|
@@ -15431,6 +15507,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15431
15507
|
hole_shape: "rect";
|
|
15432
15508
|
hole_width: number;
|
|
15433
15509
|
hole_height: number;
|
|
15510
|
+
pcb_component_id?: string | undefined;
|
|
15434
15511
|
subcircuit_id?: string | undefined;
|
|
15435
15512
|
pcb_group_id?: string | undefined;
|
|
15436
15513
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -15442,6 +15519,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15442
15519
|
hole_shape: "rect";
|
|
15443
15520
|
hole_width: number;
|
|
15444
15521
|
hole_height: number;
|
|
15522
|
+
pcb_component_id?: string | undefined;
|
|
15445
15523
|
subcircuit_id?: string | undefined;
|
|
15446
15524
|
pcb_group_id?: string | undefined;
|
|
15447
15525
|
pcb_hole_id?: string | undefined;
|
|
@@ -23311,6 +23389,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23311
23389
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
23312
23390
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
23313
23391
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
23392
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23314
23393
|
hole_shape: z.ZodEnum<["circle", "square"]>;
|
|
23315
23394
|
hole_diameter: z.ZodNumber;
|
|
23316
23395
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -23324,6 +23403,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23324
23403
|
pcb_hole_id: string;
|
|
23325
23404
|
hole_shape: "circle" | "square";
|
|
23326
23405
|
hole_diameter: number;
|
|
23406
|
+
pcb_component_id?: string | undefined;
|
|
23327
23407
|
subcircuit_id?: string | undefined;
|
|
23328
23408
|
pcb_group_id?: string | undefined;
|
|
23329
23409
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -23334,6 +23414,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23334
23414
|
type: "pcb_hole";
|
|
23335
23415
|
hole_shape: "circle" | "square";
|
|
23336
23416
|
hole_diameter: number;
|
|
23417
|
+
pcb_component_id?: string | undefined;
|
|
23337
23418
|
subcircuit_id?: string | undefined;
|
|
23338
23419
|
pcb_group_id?: string | undefined;
|
|
23339
23420
|
pcb_hole_id?: string | undefined;
|
|
@@ -23344,6 +23425,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23344
23425
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
23345
23426
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
23346
23427
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
23428
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23347
23429
|
hole_shape: z.ZodLiteral<"oval">;
|
|
23348
23430
|
hole_width: z.ZodNumber;
|
|
23349
23431
|
hole_height: z.ZodNumber;
|
|
@@ -23359,6 +23441,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23359
23441
|
hole_shape: "oval";
|
|
23360
23442
|
hole_width: number;
|
|
23361
23443
|
hole_height: number;
|
|
23444
|
+
pcb_component_id?: string | undefined;
|
|
23362
23445
|
subcircuit_id?: string | undefined;
|
|
23363
23446
|
pcb_group_id?: string | undefined;
|
|
23364
23447
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -23370,6 +23453,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23370
23453
|
hole_shape: "oval";
|
|
23371
23454
|
hole_width: number;
|
|
23372
23455
|
hole_height: number;
|
|
23456
|
+
pcb_component_id?: string | undefined;
|
|
23373
23457
|
subcircuit_id?: string | undefined;
|
|
23374
23458
|
pcb_group_id?: string | undefined;
|
|
23375
23459
|
pcb_hole_id?: string | undefined;
|
|
@@ -23380,6 +23464,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23380
23464
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
23381
23465
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
23382
23466
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
23467
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23383
23468
|
hole_shape: z.ZodLiteral<"pill">;
|
|
23384
23469
|
hole_width: z.ZodNumber;
|
|
23385
23470
|
hole_height: z.ZodNumber;
|
|
@@ -23395,6 +23480,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23395
23480
|
hole_shape: "pill";
|
|
23396
23481
|
hole_width: number;
|
|
23397
23482
|
hole_height: number;
|
|
23483
|
+
pcb_component_id?: string | undefined;
|
|
23398
23484
|
subcircuit_id?: string | undefined;
|
|
23399
23485
|
pcb_group_id?: string | undefined;
|
|
23400
23486
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -23406,6 +23492,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23406
23492
|
hole_shape: "pill";
|
|
23407
23493
|
hole_width: number;
|
|
23408
23494
|
hole_height: number;
|
|
23495
|
+
pcb_component_id?: string | undefined;
|
|
23409
23496
|
subcircuit_id?: string | undefined;
|
|
23410
23497
|
pcb_group_id?: string | undefined;
|
|
23411
23498
|
pcb_hole_id?: string | undefined;
|
|
@@ -23416,6 +23503,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23416
23503
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
23417
23504
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
23418
23505
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
23506
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23419
23507
|
hole_shape: z.ZodLiteral<"rotated_pill">;
|
|
23420
23508
|
hole_width: z.ZodNumber;
|
|
23421
23509
|
hole_height: z.ZodNumber;
|
|
@@ -23433,6 +23521,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23433
23521
|
hole_width: number;
|
|
23434
23522
|
hole_height: number;
|
|
23435
23523
|
ccw_rotation: number;
|
|
23524
|
+
pcb_component_id?: string | undefined;
|
|
23436
23525
|
subcircuit_id?: string | undefined;
|
|
23437
23526
|
pcb_group_id?: string | undefined;
|
|
23438
23527
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -23445,6 +23534,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23445
23534
|
hole_width: number;
|
|
23446
23535
|
hole_height: number;
|
|
23447
23536
|
ccw_rotation: string | number;
|
|
23537
|
+
pcb_component_id?: string | undefined;
|
|
23448
23538
|
subcircuit_id?: string | undefined;
|
|
23449
23539
|
pcb_group_id?: string | undefined;
|
|
23450
23540
|
pcb_hole_id?: string | undefined;
|
|
@@ -23455,6 +23545,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23455
23545
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
23456
23546
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
23457
23547
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
23548
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23458
23549
|
hole_shape: z.ZodLiteral<"circle">;
|
|
23459
23550
|
hole_diameter: z.ZodNumber;
|
|
23460
23551
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -23468,6 +23559,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23468
23559
|
pcb_hole_id: string;
|
|
23469
23560
|
hole_shape: "circle";
|
|
23470
23561
|
hole_diameter: number;
|
|
23562
|
+
pcb_component_id?: string | undefined;
|
|
23471
23563
|
subcircuit_id?: string | undefined;
|
|
23472
23564
|
pcb_group_id?: string | undefined;
|
|
23473
23565
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -23478,6 +23570,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23478
23570
|
type: "pcb_hole";
|
|
23479
23571
|
hole_shape: "circle";
|
|
23480
23572
|
hole_diameter: number;
|
|
23573
|
+
pcb_component_id?: string | undefined;
|
|
23481
23574
|
subcircuit_id?: string | undefined;
|
|
23482
23575
|
pcb_group_id?: string | undefined;
|
|
23483
23576
|
pcb_hole_id?: string | undefined;
|
|
@@ -23488,6 +23581,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23488
23581
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
23489
23582
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
23490
23583
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
23584
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23491
23585
|
hole_shape: z.ZodLiteral<"rect">;
|
|
23492
23586
|
hole_width: z.ZodNumber;
|
|
23493
23587
|
hole_height: z.ZodNumber;
|
|
@@ -23503,6 +23597,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23503
23597
|
hole_shape: "rect";
|
|
23504
23598
|
hole_width: number;
|
|
23505
23599
|
hole_height: number;
|
|
23600
|
+
pcb_component_id?: string | undefined;
|
|
23506
23601
|
subcircuit_id?: string | undefined;
|
|
23507
23602
|
pcb_group_id?: string | undefined;
|
|
23508
23603
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -23514,6 +23609,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23514
23609
|
hole_shape: "rect";
|
|
23515
23610
|
hole_width: number;
|
|
23516
23611
|
hole_height: number;
|
|
23612
|
+
pcb_component_id?: string | undefined;
|
|
23517
23613
|
subcircuit_id?: string | undefined;
|
|
23518
23614
|
pcb_group_id?: string | undefined;
|
|
23519
23615
|
pcb_hole_id?: string | undefined;
|