circuit-json 0.0.317 → 0.0.318
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 +5 -0
- package/dist/index.d.mts +184 -38
- package/dist/index.mjs +11 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -482,6 +482,7 @@ declare const pcb_hole_circle: z.ZodObject<{
|
|
|
482
482
|
hole_diameter: z.ZodNumber;
|
|
483
483
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
484
484
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
485
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
485
486
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
486
487
|
}, "strip", z.ZodTypeAny, {
|
|
487
488
|
x: number;
|
|
@@ -492,6 +493,7 @@ declare const pcb_hole_circle: z.ZodObject<{
|
|
|
492
493
|
hole_diameter: number;
|
|
493
494
|
subcircuit_id?: string | undefined;
|
|
494
495
|
pcb_group_id?: string | undefined;
|
|
496
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
495
497
|
soldermask_margin?: number | undefined;
|
|
496
498
|
}, {
|
|
497
499
|
x: string | number;
|
|
@@ -502,6 +504,7 @@ declare const pcb_hole_circle: z.ZodObject<{
|
|
|
502
504
|
subcircuit_id?: string | undefined;
|
|
503
505
|
pcb_group_id?: string | undefined;
|
|
504
506
|
pcb_hole_id?: string | undefined;
|
|
507
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
505
508
|
soldermask_margin?: number | undefined;
|
|
506
509
|
}>;
|
|
507
510
|
declare const pcb_hole_circle_shape: z.ZodObject<{
|
|
@@ -513,6 +516,7 @@ declare const pcb_hole_circle_shape: z.ZodObject<{
|
|
|
513
516
|
hole_diameter: z.ZodNumber;
|
|
514
517
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
515
518
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
519
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
516
520
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
517
521
|
}, "strip", z.ZodTypeAny, {
|
|
518
522
|
x: number;
|
|
@@ -523,6 +527,7 @@ declare const pcb_hole_circle_shape: z.ZodObject<{
|
|
|
523
527
|
hole_diameter: number;
|
|
524
528
|
subcircuit_id?: string | undefined;
|
|
525
529
|
pcb_group_id?: string | undefined;
|
|
530
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
526
531
|
soldermask_margin?: number | undefined;
|
|
527
532
|
}, {
|
|
528
533
|
x: string | number;
|
|
@@ -533,6 +538,7 @@ declare const pcb_hole_circle_shape: z.ZodObject<{
|
|
|
533
538
|
subcircuit_id?: string | undefined;
|
|
534
539
|
pcb_group_id?: string | undefined;
|
|
535
540
|
pcb_hole_id?: string | undefined;
|
|
541
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
536
542
|
soldermask_margin?: number | undefined;
|
|
537
543
|
}>;
|
|
538
544
|
type PcbHoleCircleInput = z.input<typeof pcb_hole_circle>;
|
|
@@ -548,6 +554,7 @@ interface PcbHoleCircle {
|
|
|
548
554
|
hole_diameter: number;
|
|
549
555
|
x: Distance;
|
|
550
556
|
y: Distance;
|
|
557
|
+
is_covered_with_solder_mask?: boolean;
|
|
551
558
|
soldermask_margin?: number;
|
|
552
559
|
}
|
|
553
560
|
declare const pcb_hole_rect: z.ZodObject<{
|
|
@@ -560,6 +567,7 @@ declare const pcb_hole_rect: z.ZodObject<{
|
|
|
560
567
|
hole_height: z.ZodNumber;
|
|
561
568
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
562
569
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
570
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
563
571
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
564
572
|
}, "strip", z.ZodTypeAny, {
|
|
565
573
|
x: number;
|
|
@@ -571,6 +579,7 @@ declare const pcb_hole_rect: z.ZodObject<{
|
|
|
571
579
|
hole_height: number;
|
|
572
580
|
subcircuit_id?: string | undefined;
|
|
573
581
|
pcb_group_id?: string | undefined;
|
|
582
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
574
583
|
soldermask_margin?: number | undefined;
|
|
575
584
|
}, {
|
|
576
585
|
x: string | number;
|
|
@@ -582,6 +591,7 @@ declare const pcb_hole_rect: z.ZodObject<{
|
|
|
582
591
|
subcircuit_id?: string | undefined;
|
|
583
592
|
pcb_group_id?: string | undefined;
|
|
584
593
|
pcb_hole_id?: string | undefined;
|
|
594
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
585
595
|
soldermask_margin?: number | undefined;
|
|
586
596
|
}>;
|
|
587
597
|
declare const pcb_hole_rect_shape: z.ZodObject<{
|
|
@@ -594,6 +604,7 @@ declare const pcb_hole_rect_shape: z.ZodObject<{
|
|
|
594
604
|
hole_height: z.ZodNumber;
|
|
595
605
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
596
606
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
607
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
597
608
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
598
609
|
}, "strip", z.ZodTypeAny, {
|
|
599
610
|
x: number;
|
|
@@ -605,6 +616,7 @@ declare const pcb_hole_rect_shape: z.ZodObject<{
|
|
|
605
616
|
hole_height: number;
|
|
606
617
|
subcircuit_id?: string | undefined;
|
|
607
618
|
pcb_group_id?: string | undefined;
|
|
619
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
608
620
|
soldermask_margin?: number | undefined;
|
|
609
621
|
}, {
|
|
610
622
|
x: string | number;
|
|
@@ -616,6 +628,7 @@ declare const pcb_hole_rect_shape: z.ZodObject<{
|
|
|
616
628
|
subcircuit_id?: string | undefined;
|
|
617
629
|
pcb_group_id?: string | undefined;
|
|
618
630
|
pcb_hole_id?: string | undefined;
|
|
631
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
619
632
|
soldermask_margin?: number | undefined;
|
|
620
633
|
}>;
|
|
621
634
|
type PcbHoleRectInput = z.input<typeof pcb_hole_rect>;
|
|
@@ -632,6 +645,7 @@ interface PcbHoleRect {
|
|
|
632
645
|
hole_height: number;
|
|
633
646
|
x: Distance;
|
|
634
647
|
y: Distance;
|
|
648
|
+
is_covered_with_solder_mask?: boolean;
|
|
635
649
|
soldermask_margin?: number;
|
|
636
650
|
}
|
|
637
651
|
declare const pcb_hole_circle_or_square: z.ZodObject<{
|
|
@@ -643,6 +657,7 @@ declare const pcb_hole_circle_or_square: z.ZodObject<{
|
|
|
643
657
|
hole_diameter: z.ZodNumber;
|
|
644
658
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
645
659
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
660
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
646
661
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
647
662
|
}, "strip", z.ZodTypeAny, {
|
|
648
663
|
x: number;
|
|
@@ -653,6 +668,7 @@ declare const pcb_hole_circle_or_square: z.ZodObject<{
|
|
|
653
668
|
hole_diameter: number;
|
|
654
669
|
subcircuit_id?: string | undefined;
|
|
655
670
|
pcb_group_id?: string | undefined;
|
|
671
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
656
672
|
soldermask_margin?: number | undefined;
|
|
657
673
|
}, {
|
|
658
674
|
x: string | number;
|
|
@@ -663,6 +679,7 @@ declare const pcb_hole_circle_or_square: z.ZodObject<{
|
|
|
663
679
|
subcircuit_id?: string | undefined;
|
|
664
680
|
pcb_group_id?: string | undefined;
|
|
665
681
|
pcb_hole_id?: string | undefined;
|
|
682
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
666
683
|
soldermask_margin?: number | undefined;
|
|
667
684
|
}>;
|
|
668
685
|
declare const pcb_hole_circle_or_square_shape: z.ZodObject<{
|
|
@@ -674,6 +691,7 @@ declare const pcb_hole_circle_or_square_shape: z.ZodObject<{
|
|
|
674
691
|
hole_diameter: z.ZodNumber;
|
|
675
692
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
676
693
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
694
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
677
695
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
678
696
|
}, "strip", z.ZodTypeAny, {
|
|
679
697
|
x: number;
|
|
@@ -684,6 +702,7 @@ declare const pcb_hole_circle_or_square_shape: z.ZodObject<{
|
|
|
684
702
|
hole_diameter: number;
|
|
685
703
|
subcircuit_id?: string | undefined;
|
|
686
704
|
pcb_group_id?: string | undefined;
|
|
705
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
687
706
|
soldermask_margin?: number | undefined;
|
|
688
707
|
}, {
|
|
689
708
|
x: string | number;
|
|
@@ -694,6 +713,7 @@ declare const pcb_hole_circle_or_square_shape: z.ZodObject<{
|
|
|
694
713
|
subcircuit_id?: string | undefined;
|
|
695
714
|
pcb_group_id?: string | undefined;
|
|
696
715
|
pcb_hole_id?: string | undefined;
|
|
716
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
697
717
|
soldermask_margin?: number | undefined;
|
|
698
718
|
}>;
|
|
699
719
|
type PcbHoleCircleOrSquareInput = z.input<typeof pcb_hole_circle_or_square>;
|
|
@@ -712,6 +732,7 @@ interface PcbHoleCircleOrSquare {
|
|
|
712
732
|
hole_diameter: number;
|
|
713
733
|
x: Distance;
|
|
714
734
|
y: Distance;
|
|
735
|
+
is_covered_with_solder_mask?: boolean;
|
|
715
736
|
soldermask_margin?: number;
|
|
716
737
|
}
|
|
717
738
|
declare const pcb_hole_oval: z.ZodObject<{
|
|
@@ -724,6 +745,7 @@ declare const pcb_hole_oval: z.ZodObject<{
|
|
|
724
745
|
hole_height: z.ZodNumber;
|
|
725
746
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
726
747
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
748
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
727
749
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
728
750
|
}, "strip", z.ZodTypeAny, {
|
|
729
751
|
x: number;
|
|
@@ -735,6 +757,7 @@ declare const pcb_hole_oval: z.ZodObject<{
|
|
|
735
757
|
hole_height: number;
|
|
736
758
|
subcircuit_id?: string | undefined;
|
|
737
759
|
pcb_group_id?: string | undefined;
|
|
760
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
738
761
|
soldermask_margin?: number | undefined;
|
|
739
762
|
}, {
|
|
740
763
|
x: string | number;
|
|
@@ -746,6 +769,7 @@ declare const pcb_hole_oval: z.ZodObject<{
|
|
|
746
769
|
subcircuit_id?: string | undefined;
|
|
747
770
|
pcb_group_id?: string | undefined;
|
|
748
771
|
pcb_hole_id?: string | undefined;
|
|
772
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
749
773
|
soldermask_margin?: number | undefined;
|
|
750
774
|
}>;
|
|
751
775
|
declare const pcb_hole_oval_shape: z.ZodObject<{
|
|
@@ -758,6 +782,7 @@ declare const pcb_hole_oval_shape: z.ZodObject<{
|
|
|
758
782
|
hole_height: z.ZodNumber;
|
|
759
783
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
760
784
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
785
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
761
786
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
762
787
|
}, "strip", z.ZodTypeAny, {
|
|
763
788
|
x: number;
|
|
@@ -769,6 +794,7 @@ declare const pcb_hole_oval_shape: z.ZodObject<{
|
|
|
769
794
|
hole_height: number;
|
|
770
795
|
subcircuit_id?: string | undefined;
|
|
771
796
|
pcb_group_id?: string | undefined;
|
|
797
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
772
798
|
soldermask_margin?: number | undefined;
|
|
773
799
|
}, {
|
|
774
800
|
x: string | number;
|
|
@@ -780,6 +806,7 @@ declare const pcb_hole_oval_shape: z.ZodObject<{
|
|
|
780
806
|
subcircuit_id?: string | undefined;
|
|
781
807
|
pcb_group_id?: string | undefined;
|
|
782
808
|
pcb_hole_id?: string | undefined;
|
|
809
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
783
810
|
soldermask_margin?: number | undefined;
|
|
784
811
|
}>;
|
|
785
812
|
type PcbHoleOvalInput = z.input<typeof pcb_hole_oval>;
|
|
@@ -796,6 +823,7 @@ interface PcbHoleOval {
|
|
|
796
823
|
hole_height: number;
|
|
797
824
|
x: Distance;
|
|
798
825
|
y: Distance;
|
|
826
|
+
is_covered_with_solder_mask?: boolean;
|
|
799
827
|
soldermask_margin?: number;
|
|
800
828
|
}
|
|
801
829
|
declare const pcb_hole_pill: z.ZodObject<{
|
|
@@ -808,6 +836,7 @@ declare const pcb_hole_pill: z.ZodObject<{
|
|
|
808
836
|
hole_height: z.ZodNumber;
|
|
809
837
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
810
838
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
839
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
811
840
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
812
841
|
}, "strip", z.ZodTypeAny, {
|
|
813
842
|
x: number;
|
|
@@ -819,6 +848,7 @@ declare const pcb_hole_pill: z.ZodObject<{
|
|
|
819
848
|
hole_height: number;
|
|
820
849
|
subcircuit_id?: string | undefined;
|
|
821
850
|
pcb_group_id?: string | undefined;
|
|
851
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
822
852
|
soldermask_margin?: number | undefined;
|
|
823
853
|
}, {
|
|
824
854
|
x: string | number;
|
|
@@ -830,6 +860,7 @@ declare const pcb_hole_pill: z.ZodObject<{
|
|
|
830
860
|
subcircuit_id?: string | undefined;
|
|
831
861
|
pcb_group_id?: string | undefined;
|
|
832
862
|
pcb_hole_id?: string | undefined;
|
|
863
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
833
864
|
soldermask_margin?: number | undefined;
|
|
834
865
|
}>;
|
|
835
866
|
declare const pcb_hole_pill_shape: z.ZodObject<{
|
|
@@ -842,6 +873,7 @@ declare const pcb_hole_pill_shape: z.ZodObject<{
|
|
|
842
873
|
hole_height: z.ZodNumber;
|
|
843
874
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
844
875
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
876
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
845
877
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
846
878
|
}, "strip", z.ZodTypeAny, {
|
|
847
879
|
x: number;
|
|
@@ -853,6 +885,7 @@ declare const pcb_hole_pill_shape: z.ZodObject<{
|
|
|
853
885
|
hole_height: number;
|
|
854
886
|
subcircuit_id?: string | undefined;
|
|
855
887
|
pcb_group_id?: string | undefined;
|
|
888
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
856
889
|
soldermask_margin?: number | undefined;
|
|
857
890
|
}, {
|
|
858
891
|
x: string | number;
|
|
@@ -864,6 +897,7 @@ declare const pcb_hole_pill_shape: z.ZodObject<{
|
|
|
864
897
|
subcircuit_id?: string | undefined;
|
|
865
898
|
pcb_group_id?: string | undefined;
|
|
866
899
|
pcb_hole_id?: string | undefined;
|
|
900
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
867
901
|
soldermask_margin?: number | undefined;
|
|
868
902
|
}>;
|
|
869
903
|
type PcbHolePillInput = z.input<typeof pcb_hole_pill>;
|
|
@@ -880,6 +914,7 @@ interface PcbHolePill {
|
|
|
880
914
|
hole_height: number;
|
|
881
915
|
x: Distance;
|
|
882
916
|
y: Distance;
|
|
917
|
+
is_covered_with_solder_mask?: boolean;
|
|
883
918
|
soldermask_margin?: number;
|
|
884
919
|
}
|
|
885
920
|
declare const pcb_hole_rotated_pill: z.ZodObject<{
|
|
@@ -893,6 +928,7 @@ declare const pcb_hole_rotated_pill: z.ZodObject<{
|
|
|
893
928
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
894
929
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
895
930
|
ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
931
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
896
932
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
897
933
|
}, "strip", z.ZodTypeAny, {
|
|
898
934
|
x: number;
|
|
@@ -905,6 +941,7 @@ declare const pcb_hole_rotated_pill: z.ZodObject<{
|
|
|
905
941
|
ccw_rotation: number;
|
|
906
942
|
subcircuit_id?: string | undefined;
|
|
907
943
|
pcb_group_id?: string | undefined;
|
|
944
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
908
945
|
soldermask_margin?: number | undefined;
|
|
909
946
|
}, {
|
|
910
947
|
x: string | number;
|
|
@@ -917,6 +954,7 @@ declare const pcb_hole_rotated_pill: z.ZodObject<{
|
|
|
917
954
|
subcircuit_id?: string | undefined;
|
|
918
955
|
pcb_group_id?: string | undefined;
|
|
919
956
|
pcb_hole_id?: string | undefined;
|
|
957
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
920
958
|
soldermask_margin?: number | undefined;
|
|
921
959
|
}>;
|
|
922
960
|
declare const pcb_hole_rotated_pill_shape: z.ZodObject<{
|
|
@@ -930,6 +968,7 @@ declare const pcb_hole_rotated_pill_shape: z.ZodObject<{
|
|
|
930
968
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
931
969
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
932
970
|
ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
971
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
933
972
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
934
973
|
}, "strip", z.ZodTypeAny, {
|
|
935
974
|
x: number;
|
|
@@ -942,6 +981,7 @@ declare const pcb_hole_rotated_pill_shape: z.ZodObject<{
|
|
|
942
981
|
ccw_rotation: number;
|
|
943
982
|
subcircuit_id?: string | undefined;
|
|
944
983
|
pcb_group_id?: string | undefined;
|
|
984
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
945
985
|
soldermask_margin?: number | undefined;
|
|
946
986
|
}, {
|
|
947
987
|
x: string | number;
|
|
@@ -954,6 +994,7 @@ declare const pcb_hole_rotated_pill_shape: z.ZodObject<{
|
|
|
954
994
|
subcircuit_id?: string | undefined;
|
|
955
995
|
pcb_group_id?: string | undefined;
|
|
956
996
|
pcb_hole_id?: string | undefined;
|
|
997
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
957
998
|
soldermask_margin?: number | undefined;
|
|
958
999
|
}>;
|
|
959
1000
|
type PcbHoleRotatedPillInput = z.input<typeof pcb_hole_rotated_pill>;
|
|
@@ -971,6 +1012,7 @@ interface PcbHoleRotatedPill {
|
|
|
971
1012
|
x: Distance;
|
|
972
1013
|
y: Distance;
|
|
973
1014
|
ccw_rotation: Rotation;
|
|
1015
|
+
is_covered_with_solder_mask?: boolean;
|
|
974
1016
|
soldermask_margin?: number;
|
|
975
1017
|
}
|
|
976
1018
|
declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
@@ -982,6 +1024,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
982
1024
|
hole_diameter: z.ZodNumber;
|
|
983
1025
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
984
1026
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1027
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
985
1028
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
986
1029
|
}, "strip", z.ZodTypeAny, {
|
|
987
1030
|
x: number;
|
|
@@ -992,6 +1035,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
992
1035
|
hole_diameter: number;
|
|
993
1036
|
subcircuit_id?: string | undefined;
|
|
994
1037
|
pcb_group_id?: string | undefined;
|
|
1038
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
995
1039
|
soldermask_margin?: number | undefined;
|
|
996
1040
|
}, {
|
|
997
1041
|
x: string | number;
|
|
@@ -1002,6 +1046,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1002
1046
|
subcircuit_id?: string | undefined;
|
|
1003
1047
|
pcb_group_id?: string | undefined;
|
|
1004
1048
|
pcb_hole_id?: string | undefined;
|
|
1049
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1005
1050
|
soldermask_margin?: number | undefined;
|
|
1006
1051
|
}>, z.ZodObject<{
|
|
1007
1052
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -1013,6 +1058,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1013
1058
|
hole_height: z.ZodNumber;
|
|
1014
1059
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1015
1060
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1061
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
1016
1062
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
1017
1063
|
}, "strip", z.ZodTypeAny, {
|
|
1018
1064
|
x: number;
|
|
@@ -1024,6 +1070,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1024
1070
|
hole_height: number;
|
|
1025
1071
|
subcircuit_id?: string | undefined;
|
|
1026
1072
|
pcb_group_id?: string | undefined;
|
|
1073
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1027
1074
|
soldermask_margin?: number | undefined;
|
|
1028
1075
|
}, {
|
|
1029
1076
|
x: string | number;
|
|
@@ -1035,6 +1082,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1035
1082
|
subcircuit_id?: string | undefined;
|
|
1036
1083
|
pcb_group_id?: string | undefined;
|
|
1037
1084
|
pcb_hole_id?: string | undefined;
|
|
1085
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1038
1086
|
soldermask_margin?: number | undefined;
|
|
1039
1087
|
}>]>, z.ZodObject<{
|
|
1040
1088
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -1046,6 +1094,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1046
1094
|
hole_height: z.ZodNumber;
|
|
1047
1095
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1048
1096
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1097
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
1049
1098
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
1050
1099
|
}, "strip", z.ZodTypeAny, {
|
|
1051
1100
|
x: number;
|
|
@@ -1057,6 +1106,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1057
1106
|
hole_height: number;
|
|
1058
1107
|
subcircuit_id?: string | undefined;
|
|
1059
1108
|
pcb_group_id?: string | undefined;
|
|
1109
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1060
1110
|
soldermask_margin?: number | undefined;
|
|
1061
1111
|
}, {
|
|
1062
1112
|
x: string | number;
|
|
@@ -1068,6 +1118,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1068
1118
|
subcircuit_id?: string | undefined;
|
|
1069
1119
|
pcb_group_id?: string | undefined;
|
|
1070
1120
|
pcb_hole_id?: string | undefined;
|
|
1121
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1071
1122
|
soldermask_margin?: number | undefined;
|
|
1072
1123
|
}>]>, z.ZodObject<{
|
|
1073
1124
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -1080,6 +1131,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1080
1131
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1081
1132
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1082
1133
|
ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1134
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
1083
1135
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
1084
1136
|
}, "strip", z.ZodTypeAny, {
|
|
1085
1137
|
x: number;
|
|
@@ -1092,6 +1144,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1092
1144
|
ccw_rotation: number;
|
|
1093
1145
|
subcircuit_id?: string | undefined;
|
|
1094
1146
|
pcb_group_id?: string | undefined;
|
|
1147
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1095
1148
|
soldermask_margin?: number | undefined;
|
|
1096
1149
|
}, {
|
|
1097
1150
|
x: string | number;
|
|
@@ -1104,6 +1157,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1104
1157
|
subcircuit_id?: string | undefined;
|
|
1105
1158
|
pcb_group_id?: string | undefined;
|
|
1106
1159
|
pcb_hole_id?: string | undefined;
|
|
1160
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1107
1161
|
soldermask_margin?: number | undefined;
|
|
1108
1162
|
}>]>, z.ZodObject<{
|
|
1109
1163
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -1114,6 +1168,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1114
1168
|
hole_diameter: z.ZodNumber;
|
|
1115
1169
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1116
1170
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1171
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
1117
1172
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
1118
1173
|
}, "strip", z.ZodTypeAny, {
|
|
1119
1174
|
x: number;
|
|
@@ -1124,6 +1179,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1124
1179
|
hole_diameter: number;
|
|
1125
1180
|
subcircuit_id?: string | undefined;
|
|
1126
1181
|
pcb_group_id?: string | undefined;
|
|
1182
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1127
1183
|
soldermask_margin?: number | undefined;
|
|
1128
1184
|
}, {
|
|
1129
1185
|
x: string | number;
|
|
@@ -1134,6 +1190,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1134
1190
|
subcircuit_id?: string | undefined;
|
|
1135
1191
|
pcb_group_id?: string | undefined;
|
|
1136
1192
|
pcb_hole_id?: string | undefined;
|
|
1193
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1137
1194
|
soldermask_margin?: number | undefined;
|
|
1138
1195
|
}>]>, z.ZodObject<{
|
|
1139
1196
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -1145,6 +1202,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1145
1202
|
hole_height: z.ZodNumber;
|
|
1146
1203
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1147
1204
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1205
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
1148
1206
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
1149
1207
|
}, "strip", z.ZodTypeAny, {
|
|
1150
1208
|
x: number;
|
|
@@ -1156,6 +1214,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1156
1214
|
hole_height: number;
|
|
1157
1215
|
subcircuit_id?: string | undefined;
|
|
1158
1216
|
pcb_group_id?: string | undefined;
|
|
1217
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1159
1218
|
soldermask_margin?: number | undefined;
|
|
1160
1219
|
}, {
|
|
1161
1220
|
x: string | number;
|
|
@@ -1167,6 +1226,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1167
1226
|
subcircuit_id?: string | undefined;
|
|
1168
1227
|
pcb_group_id?: string | undefined;
|
|
1169
1228
|
pcb_hole_id?: string | undefined;
|
|
1229
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1170
1230
|
soldermask_margin?: number | undefined;
|
|
1171
1231
|
}>]>;
|
|
1172
1232
|
/**
|
|
@@ -1210,6 +1270,7 @@ interface PcbPlatedHoleOval {
|
|
|
1210
1270
|
outer_height: number;
|
|
1211
1271
|
hole_width: number;
|
|
1212
1272
|
hole_height: number;
|
|
1273
|
+
is_covered_with_solder_mask?: boolean;
|
|
1213
1274
|
x: Distance;
|
|
1214
1275
|
y: Distance;
|
|
1215
1276
|
ccw_rotation: Rotation;
|
|
@@ -1234,6 +1295,7 @@ interface PcbHolePillWithRectPad {
|
|
|
1234
1295
|
rect_border_radius?: number;
|
|
1235
1296
|
hole_offset_x: Distance;
|
|
1236
1297
|
hole_offset_y: Distance;
|
|
1298
|
+
is_covered_with_solder_mask?: boolean;
|
|
1237
1299
|
x: Distance;
|
|
1238
1300
|
y: Distance;
|
|
1239
1301
|
layers: LayerRef[];
|
|
@@ -1259,6 +1321,7 @@ interface PcbHoleRotatedPillWithRectPad {
|
|
|
1259
1321
|
rect_ccw_rotation: Rotation;
|
|
1260
1322
|
hole_offset_x: Distance;
|
|
1261
1323
|
hole_offset_y: Distance;
|
|
1324
|
+
is_covered_with_solder_mask?: boolean;
|
|
1262
1325
|
x: Distance;
|
|
1263
1326
|
y: Distance;
|
|
1264
1327
|
layers: LayerRef[];
|
|
@@ -1281,6 +1344,7 @@ interface PcbHoleCircularWithRectPad {
|
|
|
1281
1344
|
rect_border_radius?: number;
|
|
1282
1345
|
hole_offset_x: Distance;
|
|
1283
1346
|
hole_offset_y: Distance;
|
|
1347
|
+
is_covered_with_solder_mask?: boolean;
|
|
1284
1348
|
x: Distance;
|
|
1285
1349
|
y: Distance;
|
|
1286
1350
|
layers: LayerRef[];
|
|
@@ -1308,6 +1372,7 @@ interface PcbHoleWithPolygonPad {
|
|
|
1308
1372
|
}[];
|
|
1309
1373
|
hole_offset_x: Distance;
|
|
1310
1374
|
hole_offset_y: Distance;
|
|
1375
|
+
is_covered_with_solder_mask?: boolean;
|
|
1311
1376
|
x: Distance;
|
|
1312
1377
|
y: Distance;
|
|
1313
1378
|
layers: LayerRef[];
|
|
@@ -1381,6 +1446,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1381
1446
|
outer_height: z.ZodNumber;
|
|
1382
1447
|
hole_width: z.ZodNumber;
|
|
1383
1448
|
hole_height: z.ZodNumber;
|
|
1449
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
1384
1450
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1385
1451
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1386
1452
|
ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -1413,6 +1479,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1413
1479
|
pcb_component_id?: string | undefined;
|
|
1414
1480
|
subcircuit_id?: string | undefined;
|
|
1415
1481
|
pcb_group_id?: string | undefined;
|
|
1482
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1416
1483
|
soldermask_margin?: number | undefined;
|
|
1417
1484
|
port_hints?: string[] | undefined;
|
|
1418
1485
|
pcb_port_id?: string | undefined;
|
|
@@ -1432,6 +1499,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1432
1499
|
pcb_component_id?: string | undefined;
|
|
1433
1500
|
subcircuit_id?: string | undefined;
|
|
1434
1501
|
pcb_group_id?: string | undefined;
|
|
1502
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1435
1503
|
soldermask_margin?: number | undefined;
|
|
1436
1504
|
port_hints?: string[] | undefined;
|
|
1437
1505
|
pcb_port_id?: string | undefined;
|
|
@@ -1449,6 +1517,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1449
1517
|
rect_border_radius: z.ZodOptional<z.ZodNumber>;
|
|
1450
1518
|
hole_offset_x: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
1451
1519
|
hole_offset_y: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
1520
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
1452
1521
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1453
1522
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1454
1523
|
layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -1482,6 +1551,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1482
1551
|
pcb_component_id?: string | undefined;
|
|
1483
1552
|
subcircuit_id?: string | undefined;
|
|
1484
1553
|
pcb_group_id?: string | undefined;
|
|
1554
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1485
1555
|
soldermask_margin?: number | undefined;
|
|
1486
1556
|
port_hints?: string[] | undefined;
|
|
1487
1557
|
pcb_port_id?: string | undefined;
|
|
@@ -1502,6 +1572,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1502
1572
|
pcb_component_id?: string | undefined;
|
|
1503
1573
|
subcircuit_id?: string | undefined;
|
|
1504
1574
|
pcb_group_id?: string | undefined;
|
|
1575
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1505
1576
|
soldermask_margin?: number | undefined;
|
|
1506
1577
|
port_hints?: string[] | undefined;
|
|
1507
1578
|
pcb_port_id?: string | undefined;
|
|
@@ -1523,6 +1594,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1523
1594
|
rect_border_radius: z.ZodOptional<z.ZodNumber>;
|
|
1524
1595
|
hole_offset_x: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
1525
1596
|
hole_offset_y: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
1597
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
1526
1598
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1527
1599
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1528
1600
|
layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -1557,6 +1629,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1557
1629
|
pcb_component_id?: string | undefined;
|
|
1558
1630
|
subcircuit_id?: string | undefined;
|
|
1559
1631
|
pcb_group_id?: string | undefined;
|
|
1632
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1560
1633
|
soldermask_margin?: number | undefined;
|
|
1561
1634
|
port_hints?: string[] | undefined;
|
|
1562
1635
|
pcb_port_id?: string | undefined;
|
|
@@ -1578,6 +1651,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1578
1651
|
pcb_component_id?: string | undefined;
|
|
1579
1652
|
subcircuit_id?: string | undefined;
|
|
1580
1653
|
pcb_group_id?: string | undefined;
|
|
1654
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1581
1655
|
soldermask_margin?: number | undefined;
|
|
1582
1656
|
port_hints?: string[] | undefined;
|
|
1583
1657
|
pcb_port_id?: string | undefined;
|
|
@@ -1601,6 +1675,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1601
1675
|
rect_ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1602
1676
|
hole_offset_x: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
1603
1677
|
hole_offset_y: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
1678
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
1604
1679
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1605
1680
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1606
1681
|
layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -1637,6 +1712,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1637
1712
|
pcb_component_id?: string | undefined;
|
|
1638
1713
|
subcircuit_id?: string | undefined;
|
|
1639
1714
|
pcb_group_id?: string | undefined;
|
|
1715
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1640
1716
|
soldermask_margin?: number | undefined;
|
|
1641
1717
|
port_hints?: string[] | undefined;
|
|
1642
1718
|
pcb_port_id?: string | undefined;
|
|
@@ -1660,6 +1736,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1660
1736
|
pcb_component_id?: string | undefined;
|
|
1661
1737
|
subcircuit_id?: string | undefined;
|
|
1662
1738
|
pcb_group_id?: string | undefined;
|
|
1739
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1663
1740
|
soldermask_margin?: number | undefined;
|
|
1664
1741
|
port_hints?: string[] | undefined;
|
|
1665
1742
|
pcb_port_id?: string | undefined;
|
|
@@ -1688,6 +1765,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1688
1765
|
}>, "many">;
|
|
1689
1766
|
hole_offset_x: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
1690
1767
|
hole_offset_y: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
1768
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
1691
1769
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1692
1770
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1693
1771
|
layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -1722,6 +1800,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1722
1800
|
subcircuit_id?: string | undefined;
|
|
1723
1801
|
pcb_group_id?: string | undefined;
|
|
1724
1802
|
hole_diameter?: number | undefined;
|
|
1803
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1725
1804
|
soldermask_margin?: number | undefined;
|
|
1726
1805
|
hole_width?: number | undefined;
|
|
1727
1806
|
hole_height?: number | undefined;
|
|
@@ -1744,6 +1823,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1744
1823
|
subcircuit_id?: string | undefined;
|
|
1745
1824
|
pcb_group_id?: string | undefined;
|
|
1746
1825
|
hole_diameter?: number | undefined;
|
|
1826
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1747
1827
|
soldermask_margin?: number | undefined;
|
|
1748
1828
|
hole_width?: number | undefined;
|
|
1749
1829
|
hole_height?: number | undefined;
|
|
@@ -1871,10 +1951,10 @@ declare const pcb_smtpad_pill: z.ZodObject<{
|
|
|
1871
1951
|
pcb_component_id?: string | undefined;
|
|
1872
1952
|
subcircuit_id?: string | undefined;
|
|
1873
1953
|
pcb_group_id?: string | undefined;
|
|
1954
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1874
1955
|
soldermask_margin?: number | undefined;
|
|
1875
1956
|
port_hints?: string[] | undefined;
|
|
1876
1957
|
pcb_port_id?: string | undefined;
|
|
1877
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
1878
1958
|
}, {
|
|
1879
1959
|
x: string | number;
|
|
1880
1960
|
y: string | number;
|
|
@@ -1889,11 +1969,11 @@ declare const pcb_smtpad_pill: z.ZodObject<{
|
|
|
1889
1969
|
pcb_component_id?: string | undefined;
|
|
1890
1970
|
subcircuit_id?: string | undefined;
|
|
1891
1971
|
pcb_group_id?: string | undefined;
|
|
1972
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1892
1973
|
soldermask_margin?: number | undefined;
|
|
1893
1974
|
port_hints?: string[] | undefined;
|
|
1894
1975
|
pcb_port_id?: string | undefined;
|
|
1895
1976
|
pcb_smtpad_id?: string | undefined;
|
|
1896
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
1897
1977
|
}>;
|
|
1898
1978
|
declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
1899
1979
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
@@ -1929,10 +2009,10 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1929
2009
|
pcb_component_id?: string | undefined;
|
|
1930
2010
|
subcircuit_id?: string | undefined;
|
|
1931
2011
|
pcb_group_id?: string | undefined;
|
|
2012
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1932
2013
|
soldermask_margin?: number | undefined;
|
|
1933
2014
|
port_hints?: string[] | undefined;
|
|
1934
2015
|
pcb_port_id?: string | undefined;
|
|
1935
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
1936
2016
|
}, {
|
|
1937
2017
|
x: string | number;
|
|
1938
2018
|
y: string | number;
|
|
@@ -1945,11 +2025,11 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1945
2025
|
pcb_component_id?: string | undefined;
|
|
1946
2026
|
subcircuit_id?: string | undefined;
|
|
1947
2027
|
pcb_group_id?: string | undefined;
|
|
2028
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1948
2029
|
soldermask_margin?: number | undefined;
|
|
1949
2030
|
port_hints?: string[] | undefined;
|
|
1950
2031
|
pcb_port_id?: string | undefined;
|
|
1951
2032
|
pcb_smtpad_id?: string | undefined;
|
|
1952
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
1953
2033
|
}>, z.ZodObject<{
|
|
1954
2034
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
1955
2035
|
shape: z.ZodLiteral<"rect">;
|
|
@@ -1988,11 +2068,11 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1988
2068
|
pcb_component_id?: string | undefined;
|
|
1989
2069
|
subcircuit_id?: string | undefined;
|
|
1990
2070
|
pcb_group_id?: string | undefined;
|
|
2071
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1991
2072
|
soldermask_margin?: number | undefined;
|
|
1992
2073
|
port_hints?: string[] | undefined;
|
|
1993
2074
|
pcb_port_id?: string | undefined;
|
|
1994
2075
|
rect_border_radius?: number | undefined;
|
|
1995
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
1996
2076
|
corner_radius?: number | undefined;
|
|
1997
2077
|
}, {
|
|
1998
2078
|
x: string | number;
|
|
@@ -2007,12 +2087,12 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2007
2087
|
pcb_component_id?: string | undefined;
|
|
2008
2088
|
subcircuit_id?: string | undefined;
|
|
2009
2089
|
pcb_group_id?: string | undefined;
|
|
2090
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
2010
2091
|
soldermask_margin?: number | undefined;
|
|
2011
2092
|
port_hints?: string[] | undefined;
|
|
2012
2093
|
pcb_port_id?: string | undefined;
|
|
2013
2094
|
rect_border_radius?: number | undefined;
|
|
2014
2095
|
pcb_smtpad_id?: string | undefined;
|
|
2015
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
2016
2096
|
corner_radius?: number | undefined;
|
|
2017
2097
|
}>, z.ZodObject<{
|
|
2018
2098
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
@@ -2054,11 +2134,11 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2054
2134
|
pcb_component_id?: string | undefined;
|
|
2055
2135
|
subcircuit_id?: string | undefined;
|
|
2056
2136
|
pcb_group_id?: string | undefined;
|
|
2137
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
2057
2138
|
soldermask_margin?: number | undefined;
|
|
2058
2139
|
port_hints?: string[] | undefined;
|
|
2059
2140
|
pcb_port_id?: string | undefined;
|
|
2060
2141
|
rect_border_radius?: number | undefined;
|
|
2061
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
2062
2142
|
corner_radius?: number | undefined;
|
|
2063
2143
|
}, {
|
|
2064
2144
|
x: string | number;
|
|
@@ -2074,12 +2154,12 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2074
2154
|
pcb_component_id?: string | undefined;
|
|
2075
2155
|
subcircuit_id?: string | undefined;
|
|
2076
2156
|
pcb_group_id?: string | undefined;
|
|
2157
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
2077
2158
|
soldermask_margin?: number | undefined;
|
|
2078
2159
|
port_hints?: string[] | undefined;
|
|
2079
2160
|
pcb_port_id?: string | undefined;
|
|
2080
2161
|
rect_border_radius?: number | undefined;
|
|
2081
2162
|
pcb_smtpad_id?: string | undefined;
|
|
2082
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
2083
2163
|
corner_radius?: number | undefined;
|
|
2084
2164
|
}>, z.ZodObject<{
|
|
2085
2165
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
@@ -2121,10 +2201,10 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2121
2201
|
pcb_component_id?: string | undefined;
|
|
2122
2202
|
subcircuit_id?: string | undefined;
|
|
2123
2203
|
pcb_group_id?: string | undefined;
|
|
2204
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
2124
2205
|
soldermask_margin?: number | undefined;
|
|
2125
2206
|
port_hints?: string[] | undefined;
|
|
2126
2207
|
pcb_port_id?: string | undefined;
|
|
2127
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
2128
2208
|
}, {
|
|
2129
2209
|
x: string | number;
|
|
2130
2210
|
y: string | number;
|
|
@@ -2140,11 +2220,11 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2140
2220
|
pcb_component_id?: string | undefined;
|
|
2141
2221
|
subcircuit_id?: string | undefined;
|
|
2142
2222
|
pcb_group_id?: string | undefined;
|
|
2223
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
2143
2224
|
soldermask_margin?: number | undefined;
|
|
2144
2225
|
port_hints?: string[] | undefined;
|
|
2145
2226
|
pcb_port_id?: string | undefined;
|
|
2146
2227
|
pcb_smtpad_id?: string | undefined;
|
|
2147
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
2148
2228
|
}>, z.ZodObject<{
|
|
2149
2229
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
2150
2230
|
shape: z.ZodLiteral<"pill">;
|
|
@@ -2183,10 +2263,10 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2183
2263
|
pcb_component_id?: string | undefined;
|
|
2184
2264
|
subcircuit_id?: string | undefined;
|
|
2185
2265
|
pcb_group_id?: string | undefined;
|
|
2266
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
2186
2267
|
soldermask_margin?: number | undefined;
|
|
2187
2268
|
port_hints?: string[] | undefined;
|
|
2188
2269
|
pcb_port_id?: string | undefined;
|
|
2189
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
2190
2270
|
}, {
|
|
2191
2271
|
x: string | number;
|
|
2192
2272
|
y: string | number;
|
|
@@ -2201,11 +2281,11 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2201
2281
|
pcb_component_id?: string | undefined;
|
|
2202
2282
|
subcircuit_id?: string | undefined;
|
|
2203
2283
|
pcb_group_id?: string | undefined;
|
|
2284
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
2204
2285
|
soldermask_margin?: number | undefined;
|
|
2205
2286
|
port_hints?: string[] | undefined;
|
|
2206
2287
|
pcb_port_id?: string | undefined;
|
|
2207
2288
|
pcb_smtpad_id?: string | undefined;
|
|
2208
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
2209
2289
|
}>, z.ZodObject<{
|
|
2210
2290
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
2211
2291
|
shape: z.ZodLiteral<"polygon">;
|
|
@@ -2248,10 +2328,10 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2248
2328
|
pcb_component_id?: string | undefined;
|
|
2249
2329
|
subcircuit_id?: string | undefined;
|
|
2250
2330
|
pcb_group_id?: string | undefined;
|
|
2331
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
2251
2332
|
soldermask_margin?: number | undefined;
|
|
2252
2333
|
port_hints?: string[] | undefined;
|
|
2253
2334
|
pcb_port_id?: string | undefined;
|
|
2254
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
2255
2335
|
}, {
|
|
2256
2336
|
type: "pcb_smtpad";
|
|
2257
2337
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -2265,11 +2345,11 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2265
2345
|
pcb_component_id?: string | undefined;
|
|
2266
2346
|
subcircuit_id?: string | undefined;
|
|
2267
2347
|
pcb_group_id?: string | undefined;
|
|
2348
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
2268
2349
|
soldermask_margin?: number | undefined;
|
|
2269
2350
|
port_hints?: string[] | undefined;
|
|
2270
2351
|
pcb_port_id?: string | undefined;
|
|
2271
2352
|
pcb_smtpad_id?: string | undefined;
|
|
2272
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
2273
2353
|
}>]>;
|
|
2274
2354
|
type PCBSMTPadInput = z.input<typeof pcb_smtpad>;
|
|
2275
2355
|
/**
|
|
@@ -14737,6 +14817,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14737
14817
|
hole_diameter: z.ZodNumber;
|
|
14738
14818
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14739
14819
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14820
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
14740
14821
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
14741
14822
|
}, "strip", z.ZodTypeAny, {
|
|
14742
14823
|
x: number;
|
|
@@ -14747,6 +14828,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14747
14828
|
hole_diameter: number;
|
|
14748
14829
|
subcircuit_id?: string | undefined;
|
|
14749
14830
|
pcb_group_id?: string | undefined;
|
|
14831
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
14750
14832
|
soldermask_margin?: number | undefined;
|
|
14751
14833
|
}, {
|
|
14752
14834
|
x: string | number;
|
|
@@ -14757,6 +14839,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14757
14839
|
subcircuit_id?: string | undefined;
|
|
14758
14840
|
pcb_group_id?: string | undefined;
|
|
14759
14841
|
pcb_hole_id?: string | undefined;
|
|
14842
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
14760
14843
|
soldermask_margin?: number | undefined;
|
|
14761
14844
|
}>, z.ZodObject<{
|
|
14762
14845
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -14768,6 +14851,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14768
14851
|
hole_height: z.ZodNumber;
|
|
14769
14852
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14770
14853
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14854
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
14771
14855
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
14772
14856
|
}, "strip", z.ZodTypeAny, {
|
|
14773
14857
|
x: number;
|
|
@@ -14779,6 +14863,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14779
14863
|
hole_height: number;
|
|
14780
14864
|
subcircuit_id?: string | undefined;
|
|
14781
14865
|
pcb_group_id?: string | undefined;
|
|
14866
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
14782
14867
|
soldermask_margin?: number | undefined;
|
|
14783
14868
|
}, {
|
|
14784
14869
|
x: string | number;
|
|
@@ -14790,6 +14875,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14790
14875
|
subcircuit_id?: string | undefined;
|
|
14791
14876
|
pcb_group_id?: string | undefined;
|
|
14792
14877
|
pcb_hole_id?: string | undefined;
|
|
14878
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
14793
14879
|
soldermask_margin?: number | undefined;
|
|
14794
14880
|
}>]>, z.ZodObject<{
|
|
14795
14881
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -14801,6 +14887,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14801
14887
|
hole_height: z.ZodNumber;
|
|
14802
14888
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14803
14889
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14890
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
14804
14891
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
14805
14892
|
}, "strip", z.ZodTypeAny, {
|
|
14806
14893
|
x: number;
|
|
@@ -14812,6 +14899,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14812
14899
|
hole_height: number;
|
|
14813
14900
|
subcircuit_id?: string | undefined;
|
|
14814
14901
|
pcb_group_id?: string | undefined;
|
|
14902
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
14815
14903
|
soldermask_margin?: number | undefined;
|
|
14816
14904
|
}, {
|
|
14817
14905
|
x: string | number;
|
|
@@ -14823,6 +14911,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14823
14911
|
subcircuit_id?: string | undefined;
|
|
14824
14912
|
pcb_group_id?: string | undefined;
|
|
14825
14913
|
pcb_hole_id?: string | undefined;
|
|
14914
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
14826
14915
|
soldermask_margin?: number | undefined;
|
|
14827
14916
|
}>]>, z.ZodObject<{
|
|
14828
14917
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -14835,6 +14924,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14835
14924
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14836
14925
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14837
14926
|
ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14927
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
14838
14928
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
14839
14929
|
}, "strip", z.ZodTypeAny, {
|
|
14840
14930
|
x: number;
|
|
@@ -14847,6 +14937,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14847
14937
|
ccw_rotation: number;
|
|
14848
14938
|
subcircuit_id?: string | undefined;
|
|
14849
14939
|
pcb_group_id?: string | undefined;
|
|
14940
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
14850
14941
|
soldermask_margin?: number | undefined;
|
|
14851
14942
|
}, {
|
|
14852
14943
|
x: string | number;
|
|
@@ -14859,6 +14950,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14859
14950
|
subcircuit_id?: string | undefined;
|
|
14860
14951
|
pcb_group_id?: string | undefined;
|
|
14861
14952
|
pcb_hole_id?: string | undefined;
|
|
14953
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
14862
14954
|
soldermask_margin?: number | undefined;
|
|
14863
14955
|
}>]>, z.ZodObject<{
|
|
14864
14956
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -14869,6 +14961,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14869
14961
|
hole_diameter: z.ZodNumber;
|
|
14870
14962
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14871
14963
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14964
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
14872
14965
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
14873
14966
|
}, "strip", z.ZodTypeAny, {
|
|
14874
14967
|
x: number;
|
|
@@ -14879,6 +14972,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14879
14972
|
hole_diameter: number;
|
|
14880
14973
|
subcircuit_id?: string | undefined;
|
|
14881
14974
|
pcb_group_id?: string | undefined;
|
|
14975
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
14882
14976
|
soldermask_margin?: number | undefined;
|
|
14883
14977
|
}, {
|
|
14884
14978
|
x: string | number;
|
|
@@ -14889,6 +14983,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14889
14983
|
subcircuit_id?: string | undefined;
|
|
14890
14984
|
pcb_group_id?: string | undefined;
|
|
14891
14985
|
pcb_hole_id?: string | undefined;
|
|
14986
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
14892
14987
|
soldermask_margin?: number | undefined;
|
|
14893
14988
|
}>]>, z.ZodObject<{
|
|
14894
14989
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -14900,6 +14995,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14900
14995
|
hole_height: z.ZodNumber;
|
|
14901
14996
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14902
14997
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14998
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
14903
14999
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
14904
15000
|
}, "strip", z.ZodTypeAny, {
|
|
14905
15001
|
x: number;
|
|
@@ -14911,6 +15007,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14911
15007
|
hole_height: number;
|
|
14912
15008
|
subcircuit_id?: string | undefined;
|
|
14913
15009
|
pcb_group_id?: string | undefined;
|
|
15010
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
14914
15011
|
soldermask_margin?: number | undefined;
|
|
14915
15012
|
}, {
|
|
14916
15013
|
x: string | number;
|
|
@@ -14922,6 +15019,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14922
15019
|
subcircuit_id?: string | undefined;
|
|
14923
15020
|
pcb_group_id?: string | undefined;
|
|
14924
15021
|
pcb_hole_id?: string | undefined;
|
|
15022
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
14925
15023
|
soldermask_margin?: number | undefined;
|
|
14926
15024
|
}>]>, z.ZodObject<{
|
|
14927
15025
|
type: z.ZodLiteral<"pcb_missing_footprint_error">;
|
|
@@ -15098,6 +15196,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15098
15196
|
outer_height: z.ZodNumber;
|
|
15099
15197
|
hole_width: z.ZodNumber;
|
|
15100
15198
|
hole_height: z.ZodNumber;
|
|
15199
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
15101
15200
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15102
15201
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15103
15202
|
ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -15130,6 +15229,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15130
15229
|
pcb_component_id?: string | undefined;
|
|
15131
15230
|
subcircuit_id?: string | undefined;
|
|
15132
15231
|
pcb_group_id?: string | undefined;
|
|
15232
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
15133
15233
|
soldermask_margin?: number | undefined;
|
|
15134
15234
|
port_hints?: string[] | undefined;
|
|
15135
15235
|
pcb_port_id?: string | undefined;
|
|
@@ -15149,6 +15249,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15149
15249
|
pcb_component_id?: string | undefined;
|
|
15150
15250
|
subcircuit_id?: string | undefined;
|
|
15151
15251
|
pcb_group_id?: string | undefined;
|
|
15252
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
15152
15253
|
soldermask_margin?: number | undefined;
|
|
15153
15254
|
port_hints?: string[] | undefined;
|
|
15154
15255
|
pcb_port_id?: string | undefined;
|
|
@@ -15166,6 +15267,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15166
15267
|
rect_border_radius: z.ZodOptional<z.ZodNumber>;
|
|
15167
15268
|
hole_offset_x: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15168
15269
|
hole_offset_y: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15270
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
15169
15271
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15170
15272
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15171
15273
|
layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -15199,6 +15301,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15199
15301
|
pcb_component_id?: string | undefined;
|
|
15200
15302
|
subcircuit_id?: string | undefined;
|
|
15201
15303
|
pcb_group_id?: string | undefined;
|
|
15304
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
15202
15305
|
soldermask_margin?: number | undefined;
|
|
15203
15306
|
port_hints?: string[] | undefined;
|
|
15204
15307
|
pcb_port_id?: string | undefined;
|
|
@@ -15219,6 +15322,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15219
15322
|
pcb_component_id?: string | undefined;
|
|
15220
15323
|
subcircuit_id?: string | undefined;
|
|
15221
15324
|
pcb_group_id?: string | undefined;
|
|
15325
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
15222
15326
|
soldermask_margin?: number | undefined;
|
|
15223
15327
|
port_hints?: string[] | undefined;
|
|
15224
15328
|
pcb_port_id?: string | undefined;
|
|
@@ -15240,6 +15344,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15240
15344
|
rect_border_radius: z.ZodOptional<z.ZodNumber>;
|
|
15241
15345
|
hole_offset_x: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15242
15346
|
hole_offset_y: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15347
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
15243
15348
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15244
15349
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15245
15350
|
layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -15274,6 +15379,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15274
15379
|
pcb_component_id?: string | undefined;
|
|
15275
15380
|
subcircuit_id?: string | undefined;
|
|
15276
15381
|
pcb_group_id?: string | undefined;
|
|
15382
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
15277
15383
|
soldermask_margin?: number | undefined;
|
|
15278
15384
|
port_hints?: string[] | undefined;
|
|
15279
15385
|
pcb_port_id?: string | undefined;
|
|
@@ -15295,6 +15401,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15295
15401
|
pcb_component_id?: string | undefined;
|
|
15296
15402
|
subcircuit_id?: string | undefined;
|
|
15297
15403
|
pcb_group_id?: string | undefined;
|
|
15404
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
15298
15405
|
soldermask_margin?: number | undefined;
|
|
15299
15406
|
port_hints?: string[] | undefined;
|
|
15300
15407
|
pcb_port_id?: string | undefined;
|
|
@@ -15318,6 +15425,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15318
15425
|
rect_ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15319
15426
|
hole_offset_x: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15320
15427
|
hole_offset_y: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15428
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
15321
15429
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15322
15430
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15323
15431
|
layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -15354,6 +15462,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15354
15462
|
pcb_component_id?: string | undefined;
|
|
15355
15463
|
subcircuit_id?: string | undefined;
|
|
15356
15464
|
pcb_group_id?: string | undefined;
|
|
15465
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
15357
15466
|
soldermask_margin?: number | undefined;
|
|
15358
15467
|
port_hints?: string[] | undefined;
|
|
15359
15468
|
pcb_port_id?: string | undefined;
|
|
@@ -15377,6 +15486,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15377
15486
|
pcb_component_id?: string | undefined;
|
|
15378
15487
|
subcircuit_id?: string | undefined;
|
|
15379
15488
|
pcb_group_id?: string | undefined;
|
|
15489
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
15380
15490
|
soldermask_margin?: number | undefined;
|
|
15381
15491
|
port_hints?: string[] | undefined;
|
|
15382
15492
|
pcb_port_id?: string | undefined;
|
|
@@ -15405,6 +15515,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15405
15515
|
}>, "many">;
|
|
15406
15516
|
hole_offset_x: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15407
15517
|
hole_offset_y: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15518
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
15408
15519
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15409
15520
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15410
15521
|
layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -15439,6 +15550,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15439
15550
|
subcircuit_id?: string | undefined;
|
|
15440
15551
|
pcb_group_id?: string | undefined;
|
|
15441
15552
|
hole_diameter?: number | undefined;
|
|
15553
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
15442
15554
|
soldermask_margin?: number | undefined;
|
|
15443
15555
|
hole_width?: number | undefined;
|
|
15444
15556
|
hole_height?: number | undefined;
|
|
@@ -15461,6 +15573,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15461
15573
|
subcircuit_id?: string | undefined;
|
|
15462
15574
|
pcb_group_id?: string | undefined;
|
|
15463
15575
|
hole_diameter?: number | undefined;
|
|
15576
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
15464
15577
|
soldermask_margin?: number | undefined;
|
|
15465
15578
|
hole_width?: number | undefined;
|
|
15466
15579
|
hole_height?: number | undefined;
|
|
@@ -15924,10 +16037,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15924
16037
|
pcb_component_id?: string | undefined;
|
|
15925
16038
|
subcircuit_id?: string | undefined;
|
|
15926
16039
|
pcb_group_id?: string | undefined;
|
|
16040
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
15927
16041
|
soldermask_margin?: number | undefined;
|
|
15928
16042
|
port_hints?: string[] | undefined;
|
|
15929
16043
|
pcb_port_id?: string | undefined;
|
|
15930
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
15931
16044
|
}, {
|
|
15932
16045
|
x: string | number;
|
|
15933
16046
|
y: string | number;
|
|
@@ -15940,11 +16053,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15940
16053
|
pcb_component_id?: string | undefined;
|
|
15941
16054
|
subcircuit_id?: string | undefined;
|
|
15942
16055
|
pcb_group_id?: string | undefined;
|
|
16056
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
15943
16057
|
soldermask_margin?: number | undefined;
|
|
15944
16058
|
port_hints?: string[] | undefined;
|
|
15945
16059
|
pcb_port_id?: string | undefined;
|
|
15946
16060
|
pcb_smtpad_id?: string | undefined;
|
|
15947
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
15948
16061
|
}>, z.ZodObject<{
|
|
15949
16062
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
15950
16063
|
shape: z.ZodLiteral<"rect">;
|
|
@@ -15983,11 +16096,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15983
16096
|
pcb_component_id?: string | undefined;
|
|
15984
16097
|
subcircuit_id?: string | undefined;
|
|
15985
16098
|
pcb_group_id?: string | undefined;
|
|
16099
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
15986
16100
|
soldermask_margin?: number | undefined;
|
|
15987
16101
|
port_hints?: string[] | undefined;
|
|
15988
16102
|
pcb_port_id?: string | undefined;
|
|
15989
16103
|
rect_border_radius?: number | undefined;
|
|
15990
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
15991
16104
|
corner_radius?: number | undefined;
|
|
15992
16105
|
}, {
|
|
15993
16106
|
x: string | number;
|
|
@@ -16002,12 +16115,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16002
16115
|
pcb_component_id?: string | undefined;
|
|
16003
16116
|
subcircuit_id?: string | undefined;
|
|
16004
16117
|
pcb_group_id?: string | undefined;
|
|
16118
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
16005
16119
|
soldermask_margin?: number | undefined;
|
|
16006
16120
|
port_hints?: string[] | undefined;
|
|
16007
16121
|
pcb_port_id?: string | undefined;
|
|
16008
16122
|
rect_border_radius?: number | undefined;
|
|
16009
16123
|
pcb_smtpad_id?: string | undefined;
|
|
16010
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
16011
16124
|
corner_radius?: number | undefined;
|
|
16012
16125
|
}>, z.ZodObject<{
|
|
16013
16126
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
@@ -16049,11 +16162,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16049
16162
|
pcb_component_id?: string | undefined;
|
|
16050
16163
|
subcircuit_id?: string | undefined;
|
|
16051
16164
|
pcb_group_id?: string | undefined;
|
|
16165
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
16052
16166
|
soldermask_margin?: number | undefined;
|
|
16053
16167
|
port_hints?: string[] | undefined;
|
|
16054
16168
|
pcb_port_id?: string | undefined;
|
|
16055
16169
|
rect_border_radius?: number | undefined;
|
|
16056
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
16057
16170
|
corner_radius?: number | undefined;
|
|
16058
16171
|
}, {
|
|
16059
16172
|
x: string | number;
|
|
@@ -16069,12 +16182,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16069
16182
|
pcb_component_id?: string | undefined;
|
|
16070
16183
|
subcircuit_id?: string | undefined;
|
|
16071
16184
|
pcb_group_id?: string | undefined;
|
|
16185
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
16072
16186
|
soldermask_margin?: number | undefined;
|
|
16073
16187
|
port_hints?: string[] | undefined;
|
|
16074
16188
|
pcb_port_id?: string | undefined;
|
|
16075
16189
|
rect_border_radius?: number | undefined;
|
|
16076
16190
|
pcb_smtpad_id?: string | undefined;
|
|
16077
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
16078
16191
|
corner_radius?: number | undefined;
|
|
16079
16192
|
}>, z.ZodObject<{
|
|
16080
16193
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
@@ -16116,10 +16229,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16116
16229
|
pcb_component_id?: string | undefined;
|
|
16117
16230
|
subcircuit_id?: string | undefined;
|
|
16118
16231
|
pcb_group_id?: string | undefined;
|
|
16232
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
16119
16233
|
soldermask_margin?: number | undefined;
|
|
16120
16234
|
port_hints?: string[] | undefined;
|
|
16121
16235
|
pcb_port_id?: string | undefined;
|
|
16122
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
16123
16236
|
}, {
|
|
16124
16237
|
x: string | number;
|
|
16125
16238
|
y: string | number;
|
|
@@ -16135,11 +16248,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16135
16248
|
pcb_component_id?: string | undefined;
|
|
16136
16249
|
subcircuit_id?: string | undefined;
|
|
16137
16250
|
pcb_group_id?: string | undefined;
|
|
16251
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
16138
16252
|
soldermask_margin?: number | undefined;
|
|
16139
16253
|
port_hints?: string[] | undefined;
|
|
16140
16254
|
pcb_port_id?: string | undefined;
|
|
16141
16255
|
pcb_smtpad_id?: string | undefined;
|
|
16142
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
16143
16256
|
}>, z.ZodObject<{
|
|
16144
16257
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
16145
16258
|
shape: z.ZodLiteral<"pill">;
|
|
@@ -16178,10 +16291,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16178
16291
|
pcb_component_id?: string | undefined;
|
|
16179
16292
|
subcircuit_id?: string | undefined;
|
|
16180
16293
|
pcb_group_id?: string | undefined;
|
|
16294
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
16181
16295
|
soldermask_margin?: number | undefined;
|
|
16182
16296
|
port_hints?: string[] | undefined;
|
|
16183
16297
|
pcb_port_id?: string | undefined;
|
|
16184
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
16185
16298
|
}, {
|
|
16186
16299
|
x: string | number;
|
|
16187
16300
|
y: string | number;
|
|
@@ -16196,11 +16309,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16196
16309
|
pcb_component_id?: string | undefined;
|
|
16197
16310
|
subcircuit_id?: string | undefined;
|
|
16198
16311
|
pcb_group_id?: string | undefined;
|
|
16312
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
16199
16313
|
soldermask_margin?: number | undefined;
|
|
16200
16314
|
port_hints?: string[] | undefined;
|
|
16201
16315
|
pcb_port_id?: string | undefined;
|
|
16202
16316
|
pcb_smtpad_id?: string | undefined;
|
|
16203
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
16204
16317
|
}>, z.ZodObject<{
|
|
16205
16318
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
16206
16319
|
shape: z.ZodLiteral<"polygon">;
|
|
@@ -16243,10 +16356,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16243
16356
|
pcb_component_id?: string | undefined;
|
|
16244
16357
|
subcircuit_id?: string | undefined;
|
|
16245
16358
|
pcb_group_id?: string | undefined;
|
|
16359
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
16246
16360
|
soldermask_margin?: number | undefined;
|
|
16247
16361
|
port_hints?: string[] | undefined;
|
|
16248
16362
|
pcb_port_id?: string | undefined;
|
|
16249
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
16250
16363
|
}, {
|
|
16251
16364
|
type: "pcb_smtpad";
|
|
16252
16365
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -16260,11 +16373,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16260
16373
|
pcb_component_id?: string | undefined;
|
|
16261
16374
|
subcircuit_id?: string | undefined;
|
|
16262
16375
|
pcb_group_id?: string | undefined;
|
|
16376
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
16263
16377
|
soldermask_margin?: number | undefined;
|
|
16264
16378
|
port_hints?: string[] | undefined;
|
|
16265
16379
|
pcb_port_id?: string | undefined;
|
|
16266
16380
|
pcb_smtpad_id?: string | undefined;
|
|
16267
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
16268
16381
|
}>]>, z.ZodUnion<[z.ZodObject<{
|
|
16269
16382
|
type: z.ZodLiteral<"pcb_solder_paste">;
|
|
16270
16383
|
shape: z.ZodLiteral<"circle">;
|
|
@@ -22611,6 +22724,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22611
22724
|
hole_diameter: z.ZodNumber;
|
|
22612
22725
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22613
22726
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22727
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
22614
22728
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22615
22729
|
}, "strip", z.ZodTypeAny, {
|
|
22616
22730
|
x: number;
|
|
@@ -22621,6 +22735,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22621
22735
|
hole_diameter: number;
|
|
22622
22736
|
subcircuit_id?: string | undefined;
|
|
22623
22737
|
pcb_group_id?: string | undefined;
|
|
22738
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
22624
22739
|
soldermask_margin?: number | undefined;
|
|
22625
22740
|
}, {
|
|
22626
22741
|
x: string | number;
|
|
@@ -22631,6 +22746,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22631
22746
|
subcircuit_id?: string | undefined;
|
|
22632
22747
|
pcb_group_id?: string | undefined;
|
|
22633
22748
|
pcb_hole_id?: string | undefined;
|
|
22749
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
22634
22750
|
soldermask_margin?: number | undefined;
|
|
22635
22751
|
}>, z.ZodObject<{
|
|
22636
22752
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -22642,6 +22758,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22642
22758
|
hole_height: z.ZodNumber;
|
|
22643
22759
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22644
22760
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22761
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
22645
22762
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22646
22763
|
}, "strip", z.ZodTypeAny, {
|
|
22647
22764
|
x: number;
|
|
@@ -22653,6 +22770,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22653
22770
|
hole_height: number;
|
|
22654
22771
|
subcircuit_id?: string | undefined;
|
|
22655
22772
|
pcb_group_id?: string | undefined;
|
|
22773
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
22656
22774
|
soldermask_margin?: number | undefined;
|
|
22657
22775
|
}, {
|
|
22658
22776
|
x: string | number;
|
|
@@ -22664,6 +22782,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22664
22782
|
subcircuit_id?: string | undefined;
|
|
22665
22783
|
pcb_group_id?: string | undefined;
|
|
22666
22784
|
pcb_hole_id?: string | undefined;
|
|
22785
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
22667
22786
|
soldermask_margin?: number | undefined;
|
|
22668
22787
|
}>]>, z.ZodObject<{
|
|
22669
22788
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -22675,6 +22794,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22675
22794
|
hole_height: z.ZodNumber;
|
|
22676
22795
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22677
22796
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22797
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
22678
22798
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22679
22799
|
}, "strip", z.ZodTypeAny, {
|
|
22680
22800
|
x: number;
|
|
@@ -22686,6 +22806,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22686
22806
|
hole_height: number;
|
|
22687
22807
|
subcircuit_id?: string | undefined;
|
|
22688
22808
|
pcb_group_id?: string | undefined;
|
|
22809
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
22689
22810
|
soldermask_margin?: number | undefined;
|
|
22690
22811
|
}, {
|
|
22691
22812
|
x: string | number;
|
|
@@ -22697,6 +22818,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22697
22818
|
subcircuit_id?: string | undefined;
|
|
22698
22819
|
pcb_group_id?: string | undefined;
|
|
22699
22820
|
pcb_hole_id?: string | undefined;
|
|
22821
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
22700
22822
|
soldermask_margin?: number | undefined;
|
|
22701
22823
|
}>]>, z.ZodObject<{
|
|
22702
22824
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -22709,6 +22831,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22709
22831
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22710
22832
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22711
22833
|
ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22834
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
22712
22835
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22713
22836
|
}, "strip", z.ZodTypeAny, {
|
|
22714
22837
|
x: number;
|
|
@@ -22721,6 +22844,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22721
22844
|
ccw_rotation: number;
|
|
22722
22845
|
subcircuit_id?: string | undefined;
|
|
22723
22846
|
pcb_group_id?: string | undefined;
|
|
22847
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
22724
22848
|
soldermask_margin?: number | undefined;
|
|
22725
22849
|
}, {
|
|
22726
22850
|
x: string | number;
|
|
@@ -22733,6 +22857,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22733
22857
|
subcircuit_id?: string | undefined;
|
|
22734
22858
|
pcb_group_id?: string | undefined;
|
|
22735
22859
|
pcb_hole_id?: string | undefined;
|
|
22860
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
22736
22861
|
soldermask_margin?: number | undefined;
|
|
22737
22862
|
}>]>, z.ZodObject<{
|
|
22738
22863
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -22743,6 +22868,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22743
22868
|
hole_diameter: z.ZodNumber;
|
|
22744
22869
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22745
22870
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22871
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
22746
22872
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22747
22873
|
}, "strip", z.ZodTypeAny, {
|
|
22748
22874
|
x: number;
|
|
@@ -22753,6 +22879,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22753
22879
|
hole_diameter: number;
|
|
22754
22880
|
subcircuit_id?: string | undefined;
|
|
22755
22881
|
pcb_group_id?: string | undefined;
|
|
22882
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
22756
22883
|
soldermask_margin?: number | undefined;
|
|
22757
22884
|
}, {
|
|
22758
22885
|
x: string | number;
|
|
@@ -22763,6 +22890,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22763
22890
|
subcircuit_id?: string | undefined;
|
|
22764
22891
|
pcb_group_id?: string | undefined;
|
|
22765
22892
|
pcb_hole_id?: string | undefined;
|
|
22893
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
22766
22894
|
soldermask_margin?: number | undefined;
|
|
22767
22895
|
}>]>, z.ZodObject<{
|
|
22768
22896
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -22774,6 +22902,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22774
22902
|
hole_height: z.ZodNumber;
|
|
22775
22903
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22776
22904
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22905
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
22777
22906
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22778
22907
|
}, "strip", z.ZodTypeAny, {
|
|
22779
22908
|
x: number;
|
|
@@ -22785,6 +22914,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22785
22914
|
hole_height: number;
|
|
22786
22915
|
subcircuit_id?: string | undefined;
|
|
22787
22916
|
pcb_group_id?: string | undefined;
|
|
22917
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
22788
22918
|
soldermask_margin?: number | undefined;
|
|
22789
22919
|
}, {
|
|
22790
22920
|
x: string | number;
|
|
@@ -22796,6 +22926,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22796
22926
|
subcircuit_id?: string | undefined;
|
|
22797
22927
|
pcb_group_id?: string | undefined;
|
|
22798
22928
|
pcb_hole_id?: string | undefined;
|
|
22929
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
22799
22930
|
soldermask_margin?: number | undefined;
|
|
22800
22931
|
}>]>, z.ZodObject<{
|
|
22801
22932
|
type: z.ZodLiteral<"pcb_missing_footprint_error">;
|
|
@@ -22972,6 +23103,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22972
23103
|
outer_height: z.ZodNumber;
|
|
22973
23104
|
hole_width: z.ZodNumber;
|
|
22974
23105
|
hole_height: z.ZodNumber;
|
|
23106
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
22975
23107
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22976
23108
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22977
23109
|
ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -23004,6 +23136,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23004
23136
|
pcb_component_id?: string | undefined;
|
|
23005
23137
|
subcircuit_id?: string | undefined;
|
|
23006
23138
|
pcb_group_id?: string | undefined;
|
|
23139
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23007
23140
|
soldermask_margin?: number | undefined;
|
|
23008
23141
|
port_hints?: string[] | undefined;
|
|
23009
23142
|
pcb_port_id?: string | undefined;
|
|
@@ -23023,6 +23156,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23023
23156
|
pcb_component_id?: string | undefined;
|
|
23024
23157
|
subcircuit_id?: string | undefined;
|
|
23025
23158
|
pcb_group_id?: string | undefined;
|
|
23159
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23026
23160
|
soldermask_margin?: number | undefined;
|
|
23027
23161
|
port_hints?: string[] | undefined;
|
|
23028
23162
|
pcb_port_id?: string | undefined;
|
|
@@ -23040,6 +23174,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23040
23174
|
rect_border_radius: z.ZodOptional<z.ZodNumber>;
|
|
23041
23175
|
hole_offset_x: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23042
23176
|
hole_offset_y: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23177
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
23043
23178
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23044
23179
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23045
23180
|
layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -23073,6 +23208,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23073
23208
|
pcb_component_id?: string | undefined;
|
|
23074
23209
|
subcircuit_id?: string | undefined;
|
|
23075
23210
|
pcb_group_id?: string | undefined;
|
|
23211
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23076
23212
|
soldermask_margin?: number | undefined;
|
|
23077
23213
|
port_hints?: string[] | undefined;
|
|
23078
23214
|
pcb_port_id?: string | undefined;
|
|
@@ -23093,6 +23229,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23093
23229
|
pcb_component_id?: string | undefined;
|
|
23094
23230
|
subcircuit_id?: string | undefined;
|
|
23095
23231
|
pcb_group_id?: string | undefined;
|
|
23232
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23096
23233
|
soldermask_margin?: number | undefined;
|
|
23097
23234
|
port_hints?: string[] | undefined;
|
|
23098
23235
|
pcb_port_id?: string | undefined;
|
|
@@ -23114,6 +23251,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23114
23251
|
rect_border_radius: z.ZodOptional<z.ZodNumber>;
|
|
23115
23252
|
hole_offset_x: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23116
23253
|
hole_offset_y: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23254
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
23117
23255
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23118
23256
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23119
23257
|
layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -23148,6 +23286,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23148
23286
|
pcb_component_id?: string | undefined;
|
|
23149
23287
|
subcircuit_id?: string | undefined;
|
|
23150
23288
|
pcb_group_id?: string | undefined;
|
|
23289
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23151
23290
|
soldermask_margin?: number | undefined;
|
|
23152
23291
|
port_hints?: string[] | undefined;
|
|
23153
23292
|
pcb_port_id?: string | undefined;
|
|
@@ -23169,6 +23308,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23169
23308
|
pcb_component_id?: string | undefined;
|
|
23170
23309
|
subcircuit_id?: string | undefined;
|
|
23171
23310
|
pcb_group_id?: string | undefined;
|
|
23311
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23172
23312
|
soldermask_margin?: number | undefined;
|
|
23173
23313
|
port_hints?: string[] | undefined;
|
|
23174
23314
|
pcb_port_id?: string | undefined;
|
|
@@ -23192,6 +23332,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23192
23332
|
rect_ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23193
23333
|
hole_offset_x: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23194
23334
|
hole_offset_y: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23335
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
23195
23336
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23196
23337
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23197
23338
|
layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -23228,6 +23369,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23228
23369
|
pcb_component_id?: string | undefined;
|
|
23229
23370
|
subcircuit_id?: string | undefined;
|
|
23230
23371
|
pcb_group_id?: string | undefined;
|
|
23372
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23231
23373
|
soldermask_margin?: number | undefined;
|
|
23232
23374
|
port_hints?: string[] | undefined;
|
|
23233
23375
|
pcb_port_id?: string | undefined;
|
|
@@ -23251,6 +23393,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23251
23393
|
pcb_component_id?: string | undefined;
|
|
23252
23394
|
subcircuit_id?: string | undefined;
|
|
23253
23395
|
pcb_group_id?: string | undefined;
|
|
23396
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23254
23397
|
soldermask_margin?: number | undefined;
|
|
23255
23398
|
port_hints?: string[] | undefined;
|
|
23256
23399
|
pcb_port_id?: string | undefined;
|
|
@@ -23279,6 +23422,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23279
23422
|
}>, "many">;
|
|
23280
23423
|
hole_offset_x: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23281
23424
|
hole_offset_y: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23425
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
23282
23426
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23283
23427
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23284
23428
|
layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -23313,6 +23457,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23313
23457
|
subcircuit_id?: string | undefined;
|
|
23314
23458
|
pcb_group_id?: string | undefined;
|
|
23315
23459
|
hole_diameter?: number | undefined;
|
|
23460
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23316
23461
|
soldermask_margin?: number | undefined;
|
|
23317
23462
|
hole_width?: number | undefined;
|
|
23318
23463
|
hole_height?: number | undefined;
|
|
@@ -23335,6 +23480,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23335
23480
|
subcircuit_id?: string | undefined;
|
|
23336
23481
|
pcb_group_id?: string | undefined;
|
|
23337
23482
|
hole_diameter?: number | undefined;
|
|
23483
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23338
23484
|
soldermask_margin?: number | undefined;
|
|
23339
23485
|
hole_width?: number | undefined;
|
|
23340
23486
|
hole_height?: number | undefined;
|
|
@@ -23798,10 +23944,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23798
23944
|
pcb_component_id?: string | undefined;
|
|
23799
23945
|
subcircuit_id?: string | undefined;
|
|
23800
23946
|
pcb_group_id?: string | undefined;
|
|
23947
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23801
23948
|
soldermask_margin?: number | undefined;
|
|
23802
23949
|
port_hints?: string[] | undefined;
|
|
23803
23950
|
pcb_port_id?: string | undefined;
|
|
23804
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
23805
23951
|
}, {
|
|
23806
23952
|
x: string | number;
|
|
23807
23953
|
y: string | number;
|
|
@@ -23814,11 +23960,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23814
23960
|
pcb_component_id?: string | undefined;
|
|
23815
23961
|
subcircuit_id?: string | undefined;
|
|
23816
23962
|
pcb_group_id?: string | undefined;
|
|
23963
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23817
23964
|
soldermask_margin?: number | undefined;
|
|
23818
23965
|
port_hints?: string[] | undefined;
|
|
23819
23966
|
pcb_port_id?: string | undefined;
|
|
23820
23967
|
pcb_smtpad_id?: string | undefined;
|
|
23821
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
23822
23968
|
}>, z.ZodObject<{
|
|
23823
23969
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
23824
23970
|
shape: z.ZodLiteral<"rect">;
|
|
@@ -23857,11 +24003,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23857
24003
|
pcb_component_id?: string | undefined;
|
|
23858
24004
|
subcircuit_id?: string | undefined;
|
|
23859
24005
|
pcb_group_id?: string | undefined;
|
|
24006
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23860
24007
|
soldermask_margin?: number | undefined;
|
|
23861
24008
|
port_hints?: string[] | undefined;
|
|
23862
24009
|
pcb_port_id?: string | undefined;
|
|
23863
24010
|
rect_border_radius?: number | undefined;
|
|
23864
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
23865
24011
|
corner_radius?: number | undefined;
|
|
23866
24012
|
}, {
|
|
23867
24013
|
x: string | number;
|
|
@@ -23876,12 +24022,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23876
24022
|
pcb_component_id?: string | undefined;
|
|
23877
24023
|
subcircuit_id?: string | undefined;
|
|
23878
24024
|
pcb_group_id?: string | undefined;
|
|
24025
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23879
24026
|
soldermask_margin?: number | undefined;
|
|
23880
24027
|
port_hints?: string[] | undefined;
|
|
23881
24028
|
pcb_port_id?: string | undefined;
|
|
23882
24029
|
rect_border_radius?: number | undefined;
|
|
23883
24030
|
pcb_smtpad_id?: string | undefined;
|
|
23884
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
23885
24031
|
corner_radius?: number | undefined;
|
|
23886
24032
|
}>, z.ZodObject<{
|
|
23887
24033
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
@@ -23923,11 +24069,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23923
24069
|
pcb_component_id?: string | undefined;
|
|
23924
24070
|
subcircuit_id?: string | undefined;
|
|
23925
24071
|
pcb_group_id?: string | undefined;
|
|
24072
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23926
24073
|
soldermask_margin?: number | undefined;
|
|
23927
24074
|
port_hints?: string[] | undefined;
|
|
23928
24075
|
pcb_port_id?: string | undefined;
|
|
23929
24076
|
rect_border_radius?: number | undefined;
|
|
23930
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
23931
24077
|
corner_radius?: number | undefined;
|
|
23932
24078
|
}, {
|
|
23933
24079
|
x: string | number;
|
|
@@ -23943,12 +24089,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23943
24089
|
pcb_component_id?: string | undefined;
|
|
23944
24090
|
subcircuit_id?: string | undefined;
|
|
23945
24091
|
pcb_group_id?: string | undefined;
|
|
24092
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23946
24093
|
soldermask_margin?: number | undefined;
|
|
23947
24094
|
port_hints?: string[] | undefined;
|
|
23948
24095
|
pcb_port_id?: string | undefined;
|
|
23949
24096
|
rect_border_radius?: number | undefined;
|
|
23950
24097
|
pcb_smtpad_id?: string | undefined;
|
|
23951
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
23952
24098
|
corner_radius?: number | undefined;
|
|
23953
24099
|
}>, z.ZodObject<{
|
|
23954
24100
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
@@ -23990,10 +24136,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23990
24136
|
pcb_component_id?: string | undefined;
|
|
23991
24137
|
subcircuit_id?: string | undefined;
|
|
23992
24138
|
pcb_group_id?: string | undefined;
|
|
24139
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23993
24140
|
soldermask_margin?: number | undefined;
|
|
23994
24141
|
port_hints?: string[] | undefined;
|
|
23995
24142
|
pcb_port_id?: string | undefined;
|
|
23996
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
23997
24143
|
}, {
|
|
23998
24144
|
x: string | number;
|
|
23999
24145
|
y: string | number;
|
|
@@ -24009,11 +24155,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
24009
24155
|
pcb_component_id?: string | undefined;
|
|
24010
24156
|
subcircuit_id?: string | undefined;
|
|
24011
24157
|
pcb_group_id?: string | undefined;
|
|
24158
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
24012
24159
|
soldermask_margin?: number | undefined;
|
|
24013
24160
|
port_hints?: string[] | undefined;
|
|
24014
24161
|
pcb_port_id?: string | undefined;
|
|
24015
24162
|
pcb_smtpad_id?: string | undefined;
|
|
24016
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
24017
24163
|
}>, z.ZodObject<{
|
|
24018
24164
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
24019
24165
|
shape: z.ZodLiteral<"pill">;
|
|
@@ -24052,10 +24198,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
24052
24198
|
pcb_component_id?: string | undefined;
|
|
24053
24199
|
subcircuit_id?: string | undefined;
|
|
24054
24200
|
pcb_group_id?: string | undefined;
|
|
24201
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
24055
24202
|
soldermask_margin?: number | undefined;
|
|
24056
24203
|
port_hints?: string[] | undefined;
|
|
24057
24204
|
pcb_port_id?: string | undefined;
|
|
24058
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
24059
24205
|
}, {
|
|
24060
24206
|
x: string | number;
|
|
24061
24207
|
y: string | number;
|
|
@@ -24070,11 +24216,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
24070
24216
|
pcb_component_id?: string | undefined;
|
|
24071
24217
|
subcircuit_id?: string | undefined;
|
|
24072
24218
|
pcb_group_id?: string | undefined;
|
|
24219
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
24073
24220
|
soldermask_margin?: number | undefined;
|
|
24074
24221
|
port_hints?: string[] | undefined;
|
|
24075
24222
|
pcb_port_id?: string | undefined;
|
|
24076
24223
|
pcb_smtpad_id?: string | undefined;
|
|
24077
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
24078
24224
|
}>, z.ZodObject<{
|
|
24079
24225
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
24080
24226
|
shape: z.ZodLiteral<"polygon">;
|
|
@@ -24117,10 +24263,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
24117
24263
|
pcb_component_id?: string | undefined;
|
|
24118
24264
|
subcircuit_id?: string | undefined;
|
|
24119
24265
|
pcb_group_id?: string | undefined;
|
|
24266
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
24120
24267
|
soldermask_margin?: number | undefined;
|
|
24121
24268
|
port_hints?: string[] | undefined;
|
|
24122
24269
|
pcb_port_id?: string | undefined;
|
|
24123
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
24124
24270
|
}, {
|
|
24125
24271
|
type: "pcb_smtpad";
|
|
24126
24272
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -24134,11 +24280,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
24134
24280
|
pcb_component_id?: string | undefined;
|
|
24135
24281
|
subcircuit_id?: string | undefined;
|
|
24136
24282
|
pcb_group_id?: string | undefined;
|
|
24283
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
24137
24284
|
soldermask_margin?: number | undefined;
|
|
24138
24285
|
port_hints?: string[] | undefined;
|
|
24139
24286
|
pcb_port_id?: string | undefined;
|
|
24140
24287
|
pcb_smtpad_id?: string | undefined;
|
|
24141
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
24142
24288
|
}>]>, z.ZodUnion<[z.ZodObject<{
|
|
24143
24289
|
type: z.ZodLiteral<"pcb_solder_paste">;
|
|
24144
24290
|
shape: z.ZodLiteral<"circle">;
|