circuit-json 0.0.317 → 0.0.319
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 +6 -0
- package/dist/index.d.mts +194 -38
- package/dist/index.mjs +13 -1
- 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
|
/**
|
|
@@ -1197,6 +1257,7 @@ interface PcbPlatedHoleCircle {
|
|
|
1197
1257
|
pcb_port_id?: string;
|
|
1198
1258
|
pcb_plated_hole_id: string;
|
|
1199
1259
|
soldermask_margin?: number;
|
|
1260
|
+
is_covered_with_solder_mask?: boolean;
|
|
1200
1261
|
}
|
|
1201
1262
|
/**
|
|
1202
1263
|
* Defines an oval or pill-shaped plated hole on the PCB
|
|
@@ -1210,6 +1271,7 @@ interface PcbPlatedHoleOval {
|
|
|
1210
1271
|
outer_height: number;
|
|
1211
1272
|
hole_width: number;
|
|
1212
1273
|
hole_height: number;
|
|
1274
|
+
is_covered_with_solder_mask?: boolean;
|
|
1213
1275
|
x: Distance;
|
|
1214
1276
|
y: Distance;
|
|
1215
1277
|
ccw_rotation: Rotation;
|
|
@@ -1234,6 +1296,7 @@ interface PcbHolePillWithRectPad {
|
|
|
1234
1296
|
rect_border_radius?: number;
|
|
1235
1297
|
hole_offset_x: Distance;
|
|
1236
1298
|
hole_offset_y: Distance;
|
|
1299
|
+
is_covered_with_solder_mask?: boolean;
|
|
1237
1300
|
x: Distance;
|
|
1238
1301
|
y: Distance;
|
|
1239
1302
|
layers: LayerRef[];
|
|
@@ -1259,6 +1322,7 @@ interface PcbHoleRotatedPillWithRectPad {
|
|
|
1259
1322
|
rect_ccw_rotation: Rotation;
|
|
1260
1323
|
hole_offset_x: Distance;
|
|
1261
1324
|
hole_offset_y: Distance;
|
|
1325
|
+
is_covered_with_solder_mask?: boolean;
|
|
1262
1326
|
x: Distance;
|
|
1263
1327
|
y: Distance;
|
|
1264
1328
|
layers: LayerRef[];
|
|
@@ -1281,6 +1345,7 @@ interface PcbHoleCircularWithRectPad {
|
|
|
1281
1345
|
rect_border_radius?: number;
|
|
1282
1346
|
hole_offset_x: Distance;
|
|
1283
1347
|
hole_offset_y: Distance;
|
|
1348
|
+
is_covered_with_solder_mask?: boolean;
|
|
1284
1349
|
x: Distance;
|
|
1285
1350
|
y: Distance;
|
|
1286
1351
|
layers: LayerRef[];
|
|
@@ -1308,6 +1373,7 @@ interface PcbHoleWithPolygonPad {
|
|
|
1308
1373
|
}[];
|
|
1309
1374
|
hole_offset_x: Distance;
|
|
1310
1375
|
hole_offset_y: Distance;
|
|
1376
|
+
is_covered_with_solder_mask?: boolean;
|
|
1311
1377
|
x: Distance;
|
|
1312
1378
|
y: Distance;
|
|
1313
1379
|
layers: LayerRef[];
|
|
@@ -1340,6 +1406,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1340
1406
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
1341
1407
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1342
1408
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
1409
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
1343
1410
|
}, "strip", z.ZodTypeAny, {
|
|
1344
1411
|
x: number;
|
|
1345
1412
|
y: number;
|
|
@@ -1352,6 +1419,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1352
1419
|
pcb_component_id?: string | undefined;
|
|
1353
1420
|
subcircuit_id?: string | undefined;
|
|
1354
1421
|
pcb_group_id?: string | undefined;
|
|
1422
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1355
1423
|
soldermask_margin?: number | undefined;
|
|
1356
1424
|
port_hints?: string[] | undefined;
|
|
1357
1425
|
pcb_port_id?: string | undefined;
|
|
@@ -1368,6 +1436,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1368
1436
|
pcb_component_id?: string | undefined;
|
|
1369
1437
|
subcircuit_id?: string | undefined;
|
|
1370
1438
|
pcb_group_id?: string | undefined;
|
|
1439
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1371
1440
|
soldermask_margin?: number | undefined;
|
|
1372
1441
|
port_hints?: string[] | undefined;
|
|
1373
1442
|
pcb_port_id?: string | undefined;
|
|
@@ -1381,6 +1450,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1381
1450
|
outer_height: z.ZodNumber;
|
|
1382
1451
|
hole_width: z.ZodNumber;
|
|
1383
1452
|
hole_height: z.ZodNumber;
|
|
1453
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
1384
1454
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1385
1455
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1386
1456
|
ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -1413,6 +1483,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1413
1483
|
pcb_component_id?: string | undefined;
|
|
1414
1484
|
subcircuit_id?: string | undefined;
|
|
1415
1485
|
pcb_group_id?: string | undefined;
|
|
1486
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1416
1487
|
soldermask_margin?: number | undefined;
|
|
1417
1488
|
port_hints?: string[] | undefined;
|
|
1418
1489
|
pcb_port_id?: string | undefined;
|
|
@@ -1432,6 +1503,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1432
1503
|
pcb_component_id?: string | undefined;
|
|
1433
1504
|
subcircuit_id?: string | undefined;
|
|
1434
1505
|
pcb_group_id?: string | undefined;
|
|
1506
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1435
1507
|
soldermask_margin?: number | undefined;
|
|
1436
1508
|
port_hints?: string[] | undefined;
|
|
1437
1509
|
pcb_port_id?: string | undefined;
|
|
@@ -1449,6 +1521,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1449
1521
|
rect_border_radius: z.ZodOptional<z.ZodNumber>;
|
|
1450
1522
|
hole_offset_x: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
1451
1523
|
hole_offset_y: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
1524
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
1452
1525
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1453
1526
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1454
1527
|
layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -1482,6 +1555,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1482
1555
|
pcb_component_id?: string | undefined;
|
|
1483
1556
|
subcircuit_id?: string | undefined;
|
|
1484
1557
|
pcb_group_id?: string | undefined;
|
|
1558
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1485
1559
|
soldermask_margin?: number | undefined;
|
|
1486
1560
|
port_hints?: string[] | undefined;
|
|
1487
1561
|
pcb_port_id?: string | undefined;
|
|
@@ -1502,6 +1576,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1502
1576
|
pcb_component_id?: string | undefined;
|
|
1503
1577
|
subcircuit_id?: string | undefined;
|
|
1504
1578
|
pcb_group_id?: string | undefined;
|
|
1579
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1505
1580
|
soldermask_margin?: number | undefined;
|
|
1506
1581
|
port_hints?: string[] | undefined;
|
|
1507
1582
|
pcb_port_id?: string | undefined;
|
|
@@ -1523,6 +1598,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1523
1598
|
rect_border_radius: z.ZodOptional<z.ZodNumber>;
|
|
1524
1599
|
hole_offset_x: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
1525
1600
|
hole_offset_y: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
1601
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
1526
1602
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1527
1603
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1528
1604
|
layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -1557,6 +1633,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1557
1633
|
pcb_component_id?: string | undefined;
|
|
1558
1634
|
subcircuit_id?: string | undefined;
|
|
1559
1635
|
pcb_group_id?: string | undefined;
|
|
1636
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1560
1637
|
soldermask_margin?: number | undefined;
|
|
1561
1638
|
port_hints?: string[] | undefined;
|
|
1562
1639
|
pcb_port_id?: string | undefined;
|
|
@@ -1578,6 +1655,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1578
1655
|
pcb_component_id?: string | undefined;
|
|
1579
1656
|
subcircuit_id?: string | undefined;
|
|
1580
1657
|
pcb_group_id?: string | undefined;
|
|
1658
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1581
1659
|
soldermask_margin?: number | undefined;
|
|
1582
1660
|
port_hints?: string[] | undefined;
|
|
1583
1661
|
pcb_port_id?: string | undefined;
|
|
@@ -1601,6 +1679,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1601
1679
|
rect_ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1602
1680
|
hole_offset_x: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
1603
1681
|
hole_offset_y: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
1682
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
1604
1683
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1605
1684
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1606
1685
|
layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -1637,6 +1716,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1637
1716
|
pcb_component_id?: string | undefined;
|
|
1638
1717
|
subcircuit_id?: string | undefined;
|
|
1639
1718
|
pcb_group_id?: string | undefined;
|
|
1719
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1640
1720
|
soldermask_margin?: number | undefined;
|
|
1641
1721
|
port_hints?: string[] | undefined;
|
|
1642
1722
|
pcb_port_id?: string | undefined;
|
|
@@ -1660,6 +1740,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1660
1740
|
pcb_component_id?: string | undefined;
|
|
1661
1741
|
subcircuit_id?: string | undefined;
|
|
1662
1742
|
pcb_group_id?: string | undefined;
|
|
1743
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1663
1744
|
soldermask_margin?: number | undefined;
|
|
1664
1745
|
port_hints?: string[] | undefined;
|
|
1665
1746
|
pcb_port_id?: string | undefined;
|
|
@@ -1688,6 +1769,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1688
1769
|
}>, "many">;
|
|
1689
1770
|
hole_offset_x: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
1690
1771
|
hole_offset_y: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
1772
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
1691
1773
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1692
1774
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1693
1775
|
layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -1722,6 +1804,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1722
1804
|
subcircuit_id?: string | undefined;
|
|
1723
1805
|
pcb_group_id?: string | undefined;
|
|
1724
1806
|
hole_diameter?: number | undefined;
|
|
1807
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1725
1808
|
soldermask_margin?: number | undefined;
|
|
1726
1809
|
hole_width?: number | undefined;
|
|
1727
1810
|
hole_height?: number | undefined;
|
|
@@ -1744,6 +1827,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1744
1827
|
subcircuit_id?: string | undefined;
|
|
1745
1828
|
pcb_group_id?: string | undefined;
|
|
1746
1829
|
hole_diameter?: number | undefined;
|
|
1830
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1747
1831
|
soldermask_margin?: number | undefined;
|
|
1748
1832
|
hole_width?: number | undefined;
|
|
1749
1833
|
hole_height?: number | undefined;
|
|
@@ -1871,10 +1955,10 @@ declare const pcb_smtpad_pill: z.ZodObject<{
|
|
|
1871
1955
|
pcb_component_id?: string | undefined;
|
|
1872
1956
|
subcircuit_id?: string | undefined;
|
|
1873
1957
|
pcb_group_id?: string | undefined;
|
|
1958
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1874
1959
|
soldermask_margin?: number | undefined;
|
|
1875
1960
|
port_hints?: string[] | undefined;
|
|
1876
1961
|
pcb_port_id?: string | undefined;
|
|
1877
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
1878
1962
|
}, {
|
|
1879
1963
|
x: string | number;
|
|
1880
1964
|
y: string | number;
|
|
@@ -1889,11 +1973,11 @@ declare const pcb_smtpad_pill: z.ZodObject<{
|
|
|
1889
1973
|
pcb_component_id?: string | undefined;
|
|
1890
1974
|
subcircuit_id?: string | undefined;
|
|
1891
1975
|
pcb_group_id?: string | undefined;
|
|
1976
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1892
1977
|
soldermask_margin?: number | undefined;
|
|
1893
1978
|
port_hints?: string[] | undefined;
|
|
1894
1979
|
pcb_port_id?: string | undefined;
|
|
1895
1980
|
pcb_smtpad_id?: string | undefined;
|
|
1896
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
1897
1981
|
}>;
|
|
1898
1982
|
declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
1899
1983
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
@@ -1929,10 +2013,10 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1929
2013
|
pcb_component_id?: string | undefined;
|
|
1930
2014
|
subcircuit_id?: string | undefined;
|
|
1931
2015
|
pcb_group_id?: string | undefined;
|
|
2016
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1932
2017
|
soldermask_margin?: number | undefined;
|
|
1933
2018
|
port_hints?: string[] | undefined;
|
|
1934
2019
|
pcb_port_id?: string | undefined;
|
|
1935
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
1936
2020
|
}, {
|
|
1937
2021
|
x: string | number;
|
|
1938
2022
|
y: string | number;
|
|
@@ -1945,11 +2029,11 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1945
2029
|
pcb_component_id?: string | undefined;
|
|
1946
2030
|
subcircuit_id?: string | undefined;
|
|
1947
2031
|
pcb_group_id?: string | undefined;
|
|
2032
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1948
2033
|
soldermask_margin?: number | undefined;
|
|
1949
2034
|
port_hints?: string[] | undefined;
|
|
1950
2035
|
pcb_port_id?: string | undefined;
|
|
1951
2036
|
pcb_smtpad_id?: string | undefined;
|
|
1952
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
1953
2037
|
}>, z.ZodObject<{
|
|
1954
2038
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
1955
2039
|
shape: z.ZodLiteral<"rect">;
|
|
@@ -1988,11 +2072,11 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1988
2072
|
pcb_component_id?: string | undefined;
|
|
1989
2073
|
subcircuit_id?: string | undefined;
|
|
1990
2074
|
pcb_group_id?: string | undefined;
|
|
2075
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1991
2076
|
soldermask_margin?: number | undefined;
|
|
1992
2077
|
port_hints?: string[] | undefined;
|
|
1993
2078
|
pcb_port_id?: string | undefined;
|
|
1994
2079
|
rect_border_radius?: number | undefined;
|
|
1995
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
1996
2080
|
corner_radius?: number | undefined;
|
|
1997
2081
|
}, {
|
|
1998
2082
|
x: string | number;
|
|
@@ -2007,12 +2091,12 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2007
2091
|
pcb_component_id?: string | undefined;
|
|
2008
2092
|
subcircuit_id?: string | undefined;
|
|
2009
2093
|
pcb_group_id?: string | undefined;
|
|
2094
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
2010
2095
|
soldermask_margin?: number | undefined;
|
|
2011
2096
|
port_hints?: string[] | undefined;
|
|
2012
2097
|
pcb_port_id?: string | undefined;
|
|
2013
2098
|
rect_border_radius?: number | undefined;
|
|
2014
2099
|
pcb_smtpad_id?: string | undefined;
|
|
2015
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
2016
2100
|
corner_radius?: number | undefined;
|
|
2017
2101
|
}>, z.ZodObject<{
|
|
2018
2102
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
@@ -2054,11 +2138,11 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2054
2138
|
pcb_component_id?: string | undefined;
|
|
2055
2139
|
subcircuit_id?: string | undefined;
|
|
2056
2140
|
pcb_group_id?: string | undefined;
|
|
2141
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
2057
2142
|
soldermask_margin?: number | undefined;
|
|
2058
2143
|
port_hints?: string[] | undefined;
|
|
2059
2144
|
pcb_port_id?: string | undefined;
|
|
2060
2145
|
rect_border_radius?: number | undefined;
|
|
2061
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
2062
2146
|
corner_radius?: number | undefined;
|
|
2063
2147
|
}, {
|
|
2064
2148
|
x: string | number;
|
|
@@ -2074,12 +2158,12 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2074
2158
|
pcb_component_id?: string | undefined;
|
|
2075
2159
|
subcircuit_id?: string | undefined;
|
|
2076
2160
|
pcb_group_id?: string | undefined;
|
|
2161
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
2077
2162
|
soldermask_margin?: number | undefined;
|
|
2078
2163
|
port_hints?: string[] | undefined;
|
|
2079
2164
|
pcb_port_id?: string | undefined;
|
|
2080
2165
|
rect_border_radius?: number | undefined;
|
|
2081
2166
|
pcb_smtpad_id?: string | undefined;
|
|
2082
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
2083
2167
|
corner_radius?: number | undefined;
|
|
2084
2168
|
}>, z.ZodObject<{
|
|
2085
2169
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
@@ -2121,10 +2205,10 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2121
2205
|
pcb_component_id?: string | undefined;
|
|
2122
2206
|
subcircuit_id?: string | undefined;
|
|
2123
2207
|
pcb_group_id?: string | undefined;
|
|
2208
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
2124
2209
|
soldermask_margin?: number | undefined;
|
|
2125
2210
|
port_hints?: string[] | undefined;
|
|
2126
2211
|
pcb_port_id?: string | undefined;
|
|
2127
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
2128
2212
|
}, {
|
|
2129
2213
|
x: string | number;
|
|
2130
2214
|
y: string | number;
|
|
@@ -2140,11 +2224,11 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2140
2224
|
pcb_component_id?: string | undefined;
|
|
2141
2225
|
subcircuit_id?: string | undefined;
|
|
2142
2226
|
pcb_group_id?: string | undefined;
|
|
2227
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
2143
2228
|
soldermask_margin?: number | undefined;
|
|
2144
2229
|
port_hints?: string[] | undefined;
|
|
2145
2230
|
pcb_port_id?: string | undefined;
|
|
2146
2231
|
pcb_smtpad_id?: string | undefined;
|
|
2147
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
2148
2232
|
}>, z.ZodObject<{
|
|
2149
2233
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
2150
2234
|
shape: z.ZodLiteral<"pill">;
|
|
@@ -2183,10 +2267,10 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2183
2267
|
pcb_component_id?: string | undefined;
|
|
2184
2268
|
subcircuit_id?: string | undefined;
|
|
2185
2269
|
pcb_group_id?: string | undefined;
|
|
2270
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
2186
2271
|
soldermask_margin?: number | undefined;
|
|
2187
2272
|
port_hints?: string[] | undefined;
|
|
2188
2273
|
pcb_port_id?: string | undefined;
|
|
2189
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
2190
2274
|
}, {
|
|
2191
2275
|
x: string | number;
|
|
2192
2276
|
y: string | number;
|
|
@@ -2201,11 +2285,11 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2201
2285
|
pcb_component_id?: string | undefined;
|
|
2202
2286
|
subcircuit_id?: string | undefined;
|
|
2203
2287
|
pcb_group_id?: string | undefined;
|
|
2288
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
2204
2289
|
soldermask_margin?: number | undefined;
|
|
2205
2290
|
port_hints?: string[] | undefined;
|
|
2206
2291
|
pcb_port_id?: string | undefined;
|
|
2207
2292
|
pcb_smtpad_id?: string | undefined;
|
|
2208
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
2209
2293
|
}>, z.ZodObject<{
|
|
2210
2294
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
2211
2295
|
shape: z.ZodLiteral<"polygon">;
|
|
@@ -2248,10 +2332,10 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2248
2332
|
pcb_component_id?: string | undefined;
|
|
2249
2333
|
subcircuit_id?: string | undefined;
|
|
2250
2334
|
pcb_group_id?: string | undefined;
|
|
2335
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
2251
2336
|
soldermask_margin?: number | undefined;
|
|
2252
2337
|
port_hints?: string[] | undefined;
|
|
2253
2338
|
pcb_port_id?: string | undefined;
|
|
2254
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
2255
2339
|
}, {
|
|
2256
2340
|
type: "pcb_smtpad";
|
|
2257
2341
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -2265,11 +2349,11 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2265
2349
|
pcb_component_id?: string | undefined;
|
|
2266
2350
|
subcircuit_id?: string | undefined;
|
|
2267
2351
|
pcb_group_id?: string | undefined;
|
|
2352
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
2268
2353
|
soldermask_margin?: number | undefined;
|
|
2269
2354
|
port_hints?: string[] | undefined;
|
|
2270
2355
|
pcb_port_id?: string | undefined;
|
|
2271
2356
|
pcb_smtpad_id?: string | undefined;
|
|
2272
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
2273
2357
|
}>]>;
|
|
2274
2358
|
type PCBSMTPadInput = z.input<typeof pcb_smtpad>;
|
|
2275
2359
|
/**
|
|
@@ -14737,6 +14821,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14737
14821
|
hole_diameter: z.ZodNumber;
|
|
14738
14822
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14739
14823
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14824
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
14740
14825
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
14741
14826
|
}, "strip", z.ZodTypeAny, {
|
|
14742
14827
|
x: number;
|
|
@@ -14747,6 +14832,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14747
14832
|
hole_diameter: number;
|
|
14748
14833
|
subcircuit_id?: string | undefined;
|
|
14749
14834
|
pcb_group_id?: string | undefined;
|
|
14835
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
14750
14836
|
soldermask_margin?: number | undefined;
|
|
14751
14837
|
}, {
|
|
14752
14838
|
x: string | number;
|
|
@@ -14757,6 +14843,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14757
14843
|
subcircuit_id?: string | undefined;
|
|
14758
14844
|
pcb_group_id?: string | undefined;
|
|
14759
14845
|
pcb_hole_id?: string | undefined;
|
|
14846
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
14760
14847
|
soldermask_margin?: number | undefined;
|
|
14761
14848
|
}>, z.ZodObject<{
|
|
14762
14849
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -14768,6 +14855,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14768
14855
|
hole_height: z.ZodNumber;
|
|
14769
14856
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14770
14857
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14858
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
14771
14859
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
14772
14860
|
}, "strip", z.ZodTypeAny, {
|
|
14773
14861
|
x: number;
|
|
@@ -14779,6 +14867,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14779
14867
|
hole_height: number;
|
|
14780
14868
|
subcircuit_id?: string | undefined;
|
|
14781
14869
|
pcb_group_id?: string | undefined;
|
|
14870
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
14782
14871
|
soldermask_margin?: number | undefined;
|
|
14783
14872
|
}, {
|
|
14784
14873
|
x: string | number;
|
|
@@ -14790,6 +14879,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14790
14879
|
subcircuit_id?: string | undefined;
|
|
14791
14880
|
pcb_group_id?: string | undefined;
|
|
14792
14881
|
pcb_hole_id?: string | undefined;
|
|
14882
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
14793
14883
|
soldermask_margin?: number | undefined;
|
|
14794
14884
|
}>]>, z.ZodObject<{
|
|
14795
14885
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -14801,6 +14891,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14801
14891
|
hole_height: z.ZodNumber;
|
|
14802
14892
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14803
14893
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14894
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
14804
14895
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
14805
14896
|
}, "strip", z.ZodTypeAny, {
|
|
14806
14897
|
x: number;
|
|
@@ -14812,6 +14903,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14812
14903
|
hole_height: number;
|
|
14813
14904
|
subcircuit_id?: string | undefined;
|
|
14814
14905
|
pcb_group_id?: string | undefined;
|
|
14906
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
14815
14907
|
soldermask_margin?: number | undefined;
|
|
14816
14908
|
}, {
|
|
14817
14909
|
x: string | number;
|
|
@@ -14823,6 +14915,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14823
14915
|
subcircuit_id?: string | undefined;
|
|
14824
14916
|
pcb_group_id?: string | undefined;
|
|
14825
14917
|
pcb_hole_id?: string | undefined;
|
|
14918
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
14826
14919
|
soldermask_margin?: number | undefined;
|
|
14827
14920
|
}>]>, z.ZodObject<{
|
|
14828
14921
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -14835,6 +14928,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14835
14928
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14836
14929
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14837
14930
|
ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14931
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
14838
14932
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
14839
14933
|
}, "strip", z.ZodTypeAny, {
|
|
14840
14934
|
x: number;
|
|
@@ -14847,6 +14941,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14847
14941
|
ccw_rotation: number;
|
|
14848
14942
|
subcircuit_id?: string | undefined;
|
|
14849
14943
|
pcb_group_id?: string | undefined;
|
|
14944
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
14850
14945
|
soldermask_margin?: number | undefined;
|
|
14851
14946
|
}, {
|
|
14852
14947
|
x: string | number;
|
|
@@ -14859,6 +14954,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14859
14954
|
subcircuit_id?: string | undefined;
|
|
14860
14955
|
pcb_group_id?: string | undefined;
|
|
14861
14956
|
pcb_hole_id?: string | undefined;
|
|
14957
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
14862
14958
|
soldermask_margin?: number | undefined;
|
|
14863
14959
|
}>]>, z.ZodObject<{
|
|
14864
14960
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -14869,6 +14965,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14869
14965
|
hole_diameter: z.ZodNumber;
|
|
14870
14966
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14871
14967
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14968
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
14872
14969
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
14873
14970
|
}, "strip", z.ZodTypeAny, {
|
|
14874
14971
|
x: number;
|
|
@@ -14879,6 +14976,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14879
14976
|
hole_diameter: number;
|
|
14880
14977
|
subcircuit_id?: string | undefined;
|
|
14881
14978
|
pcb_group_id?: string | undefined;
|
|
14979
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
14882
14980
|
soldermask_margin?: number | undefined;
|
|
14883
14981
|
}, {
|
|
14884
14982
|
x: string | number;
|
|
@@ -14889,6 +14987,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14889
14987
|
subcircuit_id?: string | undefined;
|
|
14890
14988
|
pcb_group_id?: string | undefined;
|
|
14891
14989
|
pcb_hole_id?: string | undefined;
|
|
14990
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
14892
14991
|
soldermask_margin?: number | undefined;
|
|
14893
14992
|
}>]>, z.ZodObject<{
|
|
14894
14993
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -14900,6 +14999,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14900
14999
|
hole_height: z.ZodNumber;
|
|
14901
15000
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14902
15001
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15002
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
14903
15003
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
14904
15004
|
}, "strip", z.ZodTypeAny, {
|
|
14905
15005
|
x: number;
|
|
@@ -14911,6 +15011,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14911
15011
|
hole_height: number;
|
|
14912
15012
|
subcircuit_id?: string | undefined;
|
|
14913
15013
|
pcb_group_id?: string | undefined;
|
|
15014
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
14914
15015
|
soldermask_margin?: number | undefined;
|
|
14915
15016
|
}, {
|
|
14916
15017
|
x: string | number;
|
|
@@ -14922,6 +15023,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14922
15023
|
subcircuit_id?: string | undefined;
|
|
14923
15024
|
pcb_group_id?: string | undefined;
|
|
14924
15025
|
pcb_hole_id?: string | undefined;
|
|
15026
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
14925
15027
|
soldermask_margin?: number | undefined;
|
|
14926
15028
|
}>]>, z.ZodObject<{
|
|
14927
15029
|
type: z.ZodLiteral<"pcb_missing_footprint_error">;
|
|
@@ -15057,6 +15159,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15057
15159
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
15058
15160
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15059
15161
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
15162
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
15060
15163
|
}, "strip", z.ZodTypeAny, {
|
|
15061
15164
|
x: number;
|
|
15062
15165
|
y: number;
|
|
@@ -15069,6 +15172,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15069
15172
|
pcb_component_id?: string | undefined;
|
|
15070
15173
|
subcircuit_id?: string | undefined;
|
|
15071
15174
|
pcb_group_id?: string | undefined;
|
|
15175
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
15072
15176
|
soldermask_margin?: number | undefined;
|
|
15073
15177
|
port_hints?: string[] | undefined;
|
|
15074
15178
|
pcb_port_id?: string | undefined;
|
|
@@ -15085,6 +15189,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15085
15189
|
pcb_component_id?: string | undefined;
|
|
15086
15190
|
subcircuit_id?: string | undefined;
|
|
15087
15191
|
pcb_group_id?: string | undefined;
|
|
15192
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
15088
15193
|
soldermask_margin?: number | undefined;
|
|
15089
15194
|
port_hints?: string[] | undefined;
|
|
15090
15195
|
pcb_port_id?: string | undefined;
|
|
@@ -15098,6 +15203,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15098
15203
|
outer_height: z.ZodNumber;
|
|
15099
15204
|
hole_width: z.ZodNumber;
|
|
15100
15205
|
hole_height: z.ZodNumber;
|
|
15206
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
15101
15207
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15102
15208
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15103
15209
|
ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -15130,6 +15236,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15130
15236
|
pcb_component_id?: string | undefined;
|
|
15131
15237
|
subcircuit_id?: string | undefined;
|
|
15132
15238
|
pcb_group_id?: string | undefined;
|
|
15239
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
15133
15240
|
soldermask_margin?: number | undefined;
|
|
15134
15241
|
port_hints?: string[] | undefined;
|
|
15135
15242
|
pcb_port_id?: string | undefined;
|
|
@@ -15149,6 +15256,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15149
15256
|
pcb_component_id?: string | undefined;
|
|
15150
15257
|
subcircuit_id?: string | undefined;
|
|
15151
15258
|
pcb_group_id?: string | undefined;
|
|
15259
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
15152
15260
|
soldermask_margin?: number | undefined;
|
|
15153
15261
|
port_hints?: string[] | undefined;
|
|
15154
15262
|
pcb_port_id?: string | undefined;
|
|
@@ -15166,6 +15274,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15166
15274
|
rect_border_radius: z.ZodOptional<z.ZodNumber>;
|
|
15167
15275
|
hole_offset_x: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15168
15276
|
hole_offset_y: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15277
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
15169
15278
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15170
15279
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15171
15280
|
layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -15199,6 +15308,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15199
15308
|
pcb_component_id?: string | undefined;
|
|
15200
15309
|
subcircuit_id?: string | undefined;
|
|
15201
15310
|
pcb_group_id?: string | undefined;
|
|
15311
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
15202
15312
|
soldermask_margin?: number | undefined;
|
|
15203
15313
|
port_hints?: string[] | undefined;
|
|
15204
15314
|
pcb_port_id?: string | undefined;
|
|
@@ -15219,6 +15329,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15219
15329
|
pcb_component_id?: string | undefined;
|
|
15220
15330
|
subcircuit_id?: string | undefined;
|
|
15221
15331
|
pcb_group_id?: string | undefined;
|
|
15332
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
15222
15333
|
soldermask_margin?: number | undefined;
|
|
15223
15334
|
port_hints?: string[] | undefined;
|
|
15224
15335
|
pcb_port_id?: string | undefined;
|
|
@@ -15240,6 +15351,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15240
15351
|
rect_border_radius: z.ZodOptional<z.ZodNumber>;
|
|
15241
15352
|
hole_offset_x: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15242
15353
|
hole_offset_y: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15354
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
15243
15355
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15244
15356
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15245
15357
|
layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -15274,6 +15386,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15274
15386
|
pcb_component_id?: string | undefined;
|
|
15275
15387
|
subcircuit_id?: string | undefined;
|
|
15276
15388
|
pcb_group_id?: string | undefined;
|
|
15389
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
15277
15390
|
soldermask_margin?: number | undefined;
|
|
15278
15391
|
port_hints?: string[] | undefined;
|
|
15279
15392
|
pcb_port_id?: string | undefined;
|
|
@@ -15295,6 +15408,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15295
15408
|
pcb_component_id?: string | undefined;
|
|
15296
15409
|
subcircuit_id?: string | undefined;
|
|
15297
15410
|
pcb_group_id?: string | undefined;
|
|
15411
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
15298
15412
|
soldermask_margin?: number | undefined;
|
|
15299
15413
|
port_hints?: string[] | undefined;
|
|
15300
15414
|
pcb_port_id?: string | undefined;
|
|
@@ -15318,6 +15432,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15318
15432
|
rect_ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15319
15433
|
hole_offset_x: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15320
15434
|
hole_offset_y: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15435
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
15321
15436
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15322
15437
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15323
15438
|
layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -15354,6 +15469,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15354
15469
|
pcb_component_id?: string | undefined;
|
|
15355
15470
|
subcircuit_id?: string | undefined;
|
|
15356
15471
|
pcb_group_id?: string | undefined;
|
|
15472
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
15357
15473
|
soldermask_margin?: number | undefined;
|
|
15358
15474
|
port_hints?: string[] | undefined;
|
|
15359
15475
|
pcb_port_id?: string | undefined;
|
|
@@ -15377,6 +15493,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15377
15493
|
pcb_component_id?: string | undefined;
|
|
15378
15494
|
subcircuit_id?: string | undefined;
|
|
15379
15495
|
pcb_group_id?: string | undefined;
|
|
15496
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
15380
15497
|
soldermask_margin?: number | undefined;
|
|
15381
15498
|
port_hints?: string[] | undefined;
|
|
15382
15499
|
pcb_port_id?: string | undefined;
|
|
@@ -15405,6 +15522,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15405
15522
|
}>, "many">;
|
|
15406
15523
|
hole_offset_x: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15407
15524
|
hole_offset_y: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15525
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
15408
15526
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15409
15527
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15410
15528
|
layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -15439,6 +15557,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15439
15557
|
subcircuit_id?: string | undefined;
|
|
15440
15558
|
pcb_group_id?: string | undefined;
|
|
15441
15559
|
hole_diameter?: number | undefined;
|
|
15560
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
15442
15561
|
soldermask_margin?: number | undefined;
|
|
15443
15562
|
hole_width?: number | undefined;
|
|
15444
15563
|
hole_height?: number | undefined;
|
|
@@ -15461,6 +15580,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15461
15580
|
subcircuit_id?: string | undefined;
|
|
15462
15581
|
pcb_group_id?: string | undefined;
|
|
15463
15582
|
hole_diameter?: number | undefined;
|
|
15583
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
15464
15584
|
soldermask_margin?: number | undefined;
|
|
15465
15585
|
hole_width?: number | undefined;
|
|
15466
15586
|
hole_height?: number | undefined;
|
|
@@ -15924,10 +16044,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15924
16044
|
pcb_component_id?: string | undefined;
|
|
15925
16045
|
subcircuit_id?: string | undefined;
|
|
15926
16046
|
pcb_group_id?: string | undefined;
|
|
16047
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
15927
16048
|
soldermask_margin?: number | undefined;
|
|
15928
16049
|
port_hints?: string[] | undefined;
|
|
15929
16050
|
pcb_port_id?: string | undefined;
|
|
15930
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
15931
16051
|
}, {
|
|
15932
16052
|
x: string | number;
|
|
15933
16053
|
y: string | number;
|
|
@@ -15940,11 +16060,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15940
16060
|
pcb_component_id?: string | undefined;
|
|
15941
16061
|
subcircuit_id?: string | undefined;
|
|
15942
16062
|
pcb_group_id?: string | undefined;
|
|
16063
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
15943
16064
|
soldermask_margin?: number | undefined;
|
|
15944
16065
|
port_hints?: string[] | undefined;
|
|
15945
16066
|
pcb_port_id?: string | undefined;
|
|
15946
16067
|
pcb_smtpad_id?: string | undefined;
|
|
15947
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
15948
16068
|
}>, z.ZodObject<{
|
|
15949
16069
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
15950
16070
|
shape: z.ZodLiteral<"rect">;
|
|
@@ -15983,11 +16103,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15983
16103
|
pcb_component_id?: string | undefined;
|
|
15984
16104
|
subcircuit_id?: string | undefined;
|
|
15985
16105
|
pcb_group_id?: string | undefined;
|
|
16106
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
15986
16107
|
soldermask_margin?: number | undefined;
|
|
15987
16108
|
port_hints?: string[] | undefined;
|
|
15988
16109
|
pcb_port_id?: string | undefined;
|
|
15989
16110
|
rect_border_radius?: number | undefined;
|
|
15990
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
15991
16111
|
corner_radius?: number | undefined;
|
|
15992
16112
|
}, {
|
|
15993
16113
|
x: string | number;
|
|
@@ -16002,12 +16122,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16002
16122
|
pcb_component_id?: string | undefined;
|
|
16003
16123
|
subcircuit_id?: string | undefined;
|
|
16004
16124
|
pcb_group_id?: string | undefined;
|
|
16125
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
16005
16126
|
soldermask_margin?: number | undefined;
|
|
16006
16127
|
port_hints?: string[] | undefined;
|
|
16007
16128
|
pcb_port_id?: string | undefined;
|
|
16008
16129
|
rect_border_radius?: number | undefined;
|
|
16009
16130
|
pcb_smtpad_id?: string | undefined;
|
|
16010
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
16011
16131
|
corner_radius?: number | undefined;
|
|
16012
16132
|
}>, z.ZodObject<{
|
|
16013
16133
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
@@ -16049,11 +16169,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16049
16169
|
pcb_component_id?: string | undefined;
|
|
16050
16170
|
subcircuit_id?: string | undefined;
|
|
16051
16171
|
pcb_group_id?: string | undefined;
|
|
16172
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
16052
16173
|
soldermask_margin?: number | undefined;
|
|
16053
16174
|
port_hints?: string[] | undefined;
|
|
16054
16175
|
pcb_port_id?: string | undefined;
|
|
16055
16176
|
rect_border_radius?: number | undefined;
|
|
16056
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
16057
16177
|
corner_radius?: number | undefined;
|
|
16058
16178
|
}, {
|
|
16059
16179
|
x: string | number;
|
|
@@ -16069,12 +16189,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16069
16189
|
pcb_component_id?: string | undefined;
|
|
16070
16190
|
subcircuit_id?: string | undefined;
|
|
16071
16191
|
pcb_group_id?: string | undefined;
|
|
16192
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
16072
16193
|
soldermask_margin?: number | undefined;
|
|
16073
16194
|
port_hints?: string[] | undefined;
|
|
16074
16195
|
pcb_port_id?: string | undefined;
|
|
16075
16196
|
rect_border_radius?: number | undefined;
|
|
16076
16197
|
pcb_smtpad_id?: string | undefined;
|
|
16077
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
16078
16198
|
corner_radius?: number | undefined;
|
|
16079
16199
|
}>, z.ZodObject<{
|
|
16080
16200
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
@@ -16116,10 +16236,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16116
16236
|
pcb_component_id?: string | undefined;
|
|
16117
16237
|
subcircuit_id?: string | undefined;
|
|
16118
16238
|
pcb_group_id?: string | undefined;
|
|
16239
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
16119
16240
|
soldermask_margin?: number | undefined;
|
|
16120
16241
|
port_hints?: string[] | undefined;
|
|
16121
16242
|
pcb_port_id?: string | undefined;
|
|
16122
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
16123
16243
|
}, {
|
|
16124
16244
|
x: string | number;
|
|
16125
16245
|
y: string | number;
|
|
@@ -16135,11 +16255,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16135
16255
|
pcb_component_id?: string | undefined;
|
|
16136
16256
|
subcircuit_id?: string | undefined;
|
|
16137
16257
|
pcb_group_id?: string | undefined;
|
|
16258
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
16138
16259
|
soldermask_margin?: number | undefined;
|
|
16139
16260
|
port_hints?: string[] | undefined;
|
|
16140
16261
|
pcb_port_id?: string | undefined;
|
|
16141
16262
|
pcb_smtpad_id?: string | undefined;
|
|
16142
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
16143
16263
|
}>, z.ZodObject<{
|
|
16144
16264
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
16145
16265
|
shape: z.ZodLiteral<"pill">;
|
|
@@ -16178,10 +16298,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16178
16298
|
pcb_component_id?: string | undefined;
|
|
16179
16299
|
subcircuit_id?: string | undefined;
|
|
16180
16300
|
pcb_group_id?: string | undefined;
|
|
16301
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
16181
16302
|
soldermask_margin?: number | undefined;
|
|
16182
16303
|
port_hints?: string[] | undefined;
|
|
16183
16304
|
pcb_port_id?: string | undefined;
|
|
16184
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
16185
16305
|
}, {
|
|
16186
16306
|
x: string | number;
|
|
16187
16307
|
y: string | number;
|
|
@@ -16196,11 +16316,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16196
16316
|
pcb_component_id?: string | undefined;
|
|
16197
16317
|
subcircuit_id?: string | undefined;
|
|
16198
16318
|
pcb_group_id?: string | undefined;
|
|
16319
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
16199
16320
|
soldermask_margin?: number | undefined;
|
|
16200
16321
|
port_hints?: string[] | undefined;
|
|
16201
16322
|
pcb_port_id?: string | undefined;
|
|
16202
16323
|
pcb_smtpad_id?: string | undefined;
|
|
16203
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
16204
16324
|
}>, z.ZodObject<{
|
|
16205
16325
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
16206
16326
|
shape: z.ZodLiteral<"polygon">;
|
|
@@ -16243,10 +16363,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16243
16363
|
pcb_component_id?: string | undefined;
|
|
16244
16364
|
subcircuit_id?: string | undefined;
|
|
16245
16365
|
pcb_group_id?: string | undefined;
|
|
16366
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
16246
16367
|
soldermask_margin?: number | undefined;
|
|
16247
16368
|
port_hints?: string[] | undefined;
|
|
16248
16369
|
pcb_port_id?: string | undefined;
|
|
16249
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
16250
16370
|
}, {
|
|
16251
16371
|
type: "pcb_smtpad";
|
|
16252
16372
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -16260,11 +16380,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16260
16380
|
pcb_component_id?: string | undefined;
|
|
16261
16381
|
subcircuit_id?: string | undefined;
|
|
16262
16382
|
pcb_group_id?: string | undefined;
|
|
16383
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
16263
16384
|
soldermask_margin?: number | undefined;
|
|
16264
16385
|
port_hints?: string[] | undefined;
|
|
16265
16386
|
pcb_port_id?: string | undefined;
|
|
16266
16387
|
pcb_smtpad_id?: string | undefined;
|
|
16267
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
16268
16388
|
}>]>, z.ZodUnion<[z.ZodObject<{
|
|
16269
16389
|
type: z.ZodLiteral<"pcb_solder_paste">;
|
|
16270
16390
|
shape: z.ZodLiteral<"circle">;
|
|
@@ -22611,6 +22731,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22611
22731
|
hole_diameter: z.ZodNumber;
|
|
22612
22732
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22613
22733
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22734
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
22614
22735
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22615
22736
|
}, "strip", z.ZodTypeAny, {
|
|
22616
22737
|
x: number;
|
|
@@ -22621,6 +22742,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22621
22742
|
hole_diameter: number;
|
|
22622
22743
|
subcircuit_id?: string | undefined;
|
|
22623
22744
|
pcb_group_id?: string | undefined;
|
|
22745
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
22624
22746
|
soldermask_margin?: number | undefined;
|
|
22625
22747
|
}, {
|
|
22626
22748
|
x: string | number;
|
|
@@ -22631,6 +22753,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22631
22753
|
subcircuit_id?: string | undefined;
|
|
22632
22754
|
pcb_group_id?: string | undefined;
|
|
22633
22755
|
pcb_hole_id?: string | undefined;
|
|
22756
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
22634
22757
|
soldermask_margin?: number | undefined;
|
|
22635
22758
|
}>, z.ZodObject<{
|
|
22636
22759
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -22642,6 +22765,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22642
22765
|
hole_height: z.ZodNumber;
|
|
22643
22766
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22644
22767
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22768
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
22645
22769
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22646
22770
|
}, "strip", z.ZodTypeAny, {
|
|
22647
22771
|
x: number;
|
|
@@ -22653,6 +22777,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22653
22777
|
hole_height: number;
|
|
22654
22778
|
subcircuit_id?: string | undefined;
|
|
22655
22779
|
pcb_group_id?: string | undefined;
|
|
22780
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
22656
22781
|
soldermask_margin?: number | undefined;
|
|
22657
22782
|
}, {
|
|
22658
22783
|
x: string | number;
|
|
@@ -22664,6 +22789,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22664
22789
|
subcircuit_id?: string | undefined;
|
|
22665
22790
|
pcb_group_id?: string | undefined;
|
|
22666
22791
|
pcb_hole_id?: string | undefined;
|
|
22792
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
22667
22793
|
soldermask_margin?: number | undefined;
|
|
22668
22794
|
}>]>, z.ZodObject<{
|
|
22669
22795
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -22675,6 +22801,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22675
22801
|
hole_height: z.ZodNumber;
|
|
22676
22802
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22677
22803
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22804
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
22678
22805
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22679
22806
|
}, "strip", z.ZodTypeAny, {
|
|
22680
22807
|
x: number;
|
|
@@ -22686,6 +22813,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22686
22813
|
hole_height: number;
|
|
22687
22814
|
subcircuit_id?: string | undefined;
|
|
22688
22815
|
pcb_group_id?: string | undefined;
|
|
22816
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
22689
22817
|
soldermask_margin?: number | undefined;
|
|
22690
22818
|
}, {
|
|
22691
22819
|
x: string | number;
|
|
@@ -22697,6 +22825,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22697
22825
|
subcircuit_id?: string | undefined;
|
|
22698
22826
|
pcb_group_id?: string | undefined;
|
|
22699
22827
|
pcb_hole_id?: string | undefined;
|
|
22828
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
22700
22829
|
soldermask_margin?: number | undefined;
|
|
22701
22830
|
}>]>, z.ZodObject<{
|
|
22702
22831
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -22709,6 +22838,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22709
22838
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22710
22839
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22711
22840
|
ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22841
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
22712
22842
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22713
22843
|
}, "strip", z.ZodTypeAny, {
|
|
22714
22844
|
x: number;
|
|
@@ -22721,6 +22851,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22721
22851
|
ccw_rotation: number;
|
|
22722
22852
|
subcircuit_id?: string | undefined;
|
|
22723
22853
|
pcb_group_id?: string | undefined;
|
|
22854
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
22724
22855
|
soldermask_margin?: number | undefined;
|
|
22725
22856
|
}, {
|
|
22726
22857
|
x: string | number;
|
|
@@ -22733,6 +22864,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22733
22864
|
subcircuit_id?: string | undefined;
|
|
22734
22865
|
pcb_group_id?: string | undefined;
|
|
22735
22866
|
pcb_hole_id?: string | undefined;
|
|
22867
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
22736
22868
|
soldermask_margin?: number | undefined;
|
|
22737
22869
|
}>]>, z.ZodObject<{
|
|
22738
22870
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -22743,6 +22875,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22743
22875
|
hole_diameter: z.ZodNumber;
|
|
22744
22876
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22745
22877
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22878
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
22746
22879
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22747
22880
|
}, "strip", z.ZodTypeAny, {
|
|
22748
22881
|
x: number;
|
|
@@ -22753,6 +22886,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22753
22886
|
hole_diameter: number;
|
|
22754
22887
|
subcircuit_id?: string | undefined;
|
|
22755
22888
|
pcb_group_id?: string | undefined;
|
|
22889
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
22756
22890
|
soldermask_margin?: number | undefined;
|
|
22757
22891
|
}, {
|
|
22758
22892
|
x: string | number;
|
|
@@ -22763,6 +22897,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22763
22897
|
subcircuit_id?: string | undefined;
|
|
22764
22898
|
pcb_group_id?: string | undefined;
|
|
22765
22899
|
pcb_hole_id?: string | undefined;
|
|
22900
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
22766
22901
|
soldermask_margin?: number | undefined;
|
|
22767
22902
|
}>]>, z.ZodObject<{
|
|
22768
22903
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -22774,6 +22909,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22774
22909
|
hole_height: z.ZodNumber;
|
|
22775
22910
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22776
22911
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22912
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
22777
22913
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22778
22914
|
}, "strip", z.ZodTypeAny, {
|
|
22779
22915
|
x: number;
|
|
@@ -22785,6 +22921,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22785
22921
|
hole_height: number;
|
|
22786
22922
|
subcircuit_id?: string | undefined;
|
|
22787
22923
|
pcb_group_id?: string | undefined;
|
|
22924
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
22788
22925
|
soldermask_margin?: number | undefined;
|
|
22789
22926
|
}, {
|
|
22790
22927
|
x: string | number;
|
|
@@ -22796,6 +22933,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22796
22933
|
subcircuit_id?: string | undefined;
|
|
22797
22934
|
pcb_group_id?: string | undefined;
|
|
22798
22935
|
pcb_hole_id?: string | undefined;
|
|
22936
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
22799
22937
|
soldermask_margin?: number | undefined;
|
|
22800
22938
|
}>]>, z.ZodObject<{
|
|
22801
22939
|
type: z.ZodLiteral<"pcb_missing_footprint_error">;
|
|
@@ -22931,6 +23069,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22931
23069
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
22932
23070
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
22933
23071
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
23072
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
22934
23073
|
}, "strip", z.ZodTypeAny, {
|
|
22935
23074
|
x: number;
|
|
22936
23075
|
y: number;
|
|
@@ -22943,6 +23082,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22943
23082
|
pcb_component_id?: string | undefined;
|
|
22944
23083
|
subcircuit_id?: string | undefined;
|
|
22945
23084
|
pcb_group_id?: string | undefined;
|
|
23085
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
22946
23086
|
soldermask_margin?: number | undefined;
|
|
22947
23087
|
port_hints?: string[] | undefined;
|
|
22948
23088
|
pcb_port_id?: string | undefined;
|
|
@@ -22959,6 +23099,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22959
23099
|
pcb_component_id?: string | undefined;
|
|
22960
23100
|
subcircuit_id?: string | undefined;
|
|
22961
23101
|
pcb_group_id?: string | undefined;
|
|
23102
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
22962
23103
|
soldermask_margin?: number | undefined;
|
|
22963
23104
|
port_hints?: string[] | undefined;
|
|
22964
23105
|
pcb_port_id?: string | undefined;
|
|
@@ -22972,6 +23113,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22972
23113
|
outer_height: z.ZodNumber;
|
|
22973
23114
|
hole_width: z.ZodNumber;
|
|
22974
23115
|
hole_height: z.ZodNumber;
|
|
23116
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
22975
23117
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22976
23118
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22977
23119
|
ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -23004,6 +23146,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23004
23146
|
pcb_component_id?: string | undefined;
|
|
23005
23147
|
subcircuit_id?: string | undefined;
|
|
23006
23148
|
pcb_group_id?: string | undefined;
|
|
23149
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23007
23150
|
soldermask_margin?: number | undefined;
|
|
23008
23151
|
port_hints?: string[] | undefined;
|
|
23009
23152
|
pcb_port_id?: string | undefined;
|
|
@@ -23023,6 +23166,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23023
23166
|
pcb_component_id?: string | undefined;
|
|
23024
23167
|
subcircuit_id?: string | undefined;
|
|
23025
23168
|
pcb_group_id?: string | undefined;
|
|
23169
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23026
23170
|
soldermask_margin?: number | undefined;
|
|
23027
23171
|
port_hints?: string[] | undefined;
|
|
23028
23172
|
pcb_port_id?: string | undefined;
|
|
@@ -23040,6 +23184,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23040
23184
|
rect_border_radius: z.ZodOptional<z.ZodNumber>;
|
|
23041
23185
|
hole_offset_x: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23042
23186
|
hole_offset_y: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23187
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
23043
23188
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23044
23189
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23045
23190
|
layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -23073,6 +23218,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23073
23218
|
pcb_component_id?: string | undefined;
|
|
23074
23219
|
subcircuit_id?: string | undefined;
|
|
23075
23220
|
pcb_group_id?: string | undefined;
|
|
23221
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23076
23222
|
soldermask_margin?: number | undefined;
|
|
23077
23223
|
port_hints?: string[] | undefined;
|
|
23078
23224
|
pcb_port_id?: string | undefined;
|
|
@@ -23093,6 +23239,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23093
23239
|
pcb_component_id?: string | undefined;
|
|
23094
23240
|
subcircuit_id?: string | undefined;
|
|
23095
23241
|
pcb_group_id?: string | undefined;
|
|
23242
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23096
23243
|
soldermask_margin?: number | undefined;
|
|
23097
23244
|
port_hints?: string[] | undefined;
|
|
23098
23245
|
pcb_port_id?: string | undefined;
|
|
@@ -23114,6 +23261,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23114
23261
|
rect_border_radius: z.ZodOptional<z.ZodNumber>;
|
|
23115
23262
|
hole_offset_x: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23116
23263
|
hole_offset_y: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23264
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
23117
23265
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23118
23266
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23119
23267
|
layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -23148,6 +23296,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23148
23296
|
pcb_component_id?: string | undefined;
|
|
23149
23297
|
subcircuit_id?: string | undefined;
|
|
23150
23298
|
pcb_group_id?: string | undefined;
|
|
23299
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23151
23300
|
soldermask_margin?: number | undefined;
|
|
23152
23301
|
port_hints?: string[] | undefined;
|
|
23153
23302
|
pcb_port_id?: string | undefined;
|
|
@@ -23169,6 +23318,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23169
23318
|
pcb_component_id?: string | undefined;
|
|
23170
23319
|
subcircuit_id?: string | undefined;
|
|
23171
23320
|
pcb_group_id?: string | undefined;
|
|
23321
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23172
23322
|
soldermask_margin?: number | undefined;
|
|
23173
23323
|
port_hints?: string[] | undefined;
|
|
23174
23324
|
pcb_port_id?: string | undefined;
|
|
@@ -23192,6 +23342,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23192
23342
|
rect_ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23193
23343
|
hole_offset_x: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23194
23344
|
hole_offset_y: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23345
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
23195
23346
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23196
23347
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23197
23348
|
layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -23228,6 +23379,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23228
23379
|
pcb_component_id?: string | undefined;
|
|
23229
23380
|
subcircuit_id?: string | undefined;
|
|
23230
23381
|
pcb_group_id?: string | undefined;
|
|
23382
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23231
23383
|
soldermask_margin?: number | undefined;
|
|
23232
23384
|
port_hints?: string[] | undefined;
|
|
23233
23385
|
pcb_port_id?: string | undefined;
|
|
@@ -23251,6 +23403,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23251
23403
|
pcb_component_id?: string | undefined;
|
|
23252
23404
|
subcircuit_id?: string | undefined;
|
|
23253
23405
|
pcb_group_id?: string | undefined;
|
|
23406
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23254
23407
|
soldermask_margin?: number | undefined;
|
|
23255
23408
|
port_hints?: string[] | undefined;
|
|
23256
23409
|
pcb_port_id?: string | undefined;
|
|
@@ -23279,6 +23432,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23279
23432
|
}>, "many">;
|
|
23280
23433
|
hole_offset_x: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23281
23434
|
hole_offset_y: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23435
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
23282
23436
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23283
23437
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23284
23438
|
layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -23313,6 +23467,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23313
23467
|
subcircuit_id?: string | undefined;
|
|
23314
23468
|
pcb_group_id?: string | undefined;
|
|
23315
23469
|
hole_diameter?: number | undefined;
|
|
23470
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23316
23471
|
soldermask_margin?: number | undefined;
|
|
23317
23472
|
hole_width?: number | undefined;
|
|
23318
23473
|
hole_height?: number | undefined;
|
|
@@ -23335,6 +23490,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23335
23490
|
subcircuit_id?: string | undefined;
|
|
23336
23491
|
pcb_group_id?: string | undefined;
|
|
23337
23492
|
hole_diameter?: number | undefined;
|
|
23493
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23338
23494
|
soldermask_margin?: number | undefined;
|
|
23339
23495
|
hole_width?: number | undefined;
|
|
23340
23496
|
hole_height?: number | undefined;
|
|
@@ -23798,10 +23954,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23798
23954
|
pcb_component_id?: string | undefined;
|
|
23799
23955
|
subcircuit_id?: string | undefined;
|
|
23800
23956
|
pcb_group_id?: string | undefined;
|
|
23957
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23801
23958
|
soldermask_margin?: number | undefined;
|
|
23802
23959
|
port_hints?: string[] | undefined;
|
|
23803
23960
|
pcb_port_id?: string | undefined;
|
|
23804
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
23805
23961
|
}, {
|
|
23806
23962
|
x: string | number;
|
|
23807
23963
|
y: string | number;
|
|
@@ -23814,11 +23970,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23814
23970
|
pcb_component_id?: string | undefined;
|
|
23815
23971
|
subcircuit_id?: string | undefined;
|
|
23816
23972
|
pcb_group_id?: string | undefined;
|
|
23973
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23817
23974
|
soldermask_margin?: number | undefined;
|
|
23818
23975
|
port_hints?: string[] | undefined;
|
|
23819
23976
|
pcb_port_id?: string | undefined;
|
|
23820
23977
|
pcb_smtpad_id?: string | undefined;
|
|
23821
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
23822
23978
|
}>, z.ZodObject<{
|
|
23823
23979
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
23824
23980
|
shape: z.ZodLiteral<"rect">;
|
|
@@ -23857,11 +24013,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23857
24013
|
pcb_component_id?: string | undefined;
|
|
23858
24014
|
subcircuit_id?: string | undefined;
|
|
23859
24015
|
pcb_group_id?: string | undefined;
|
|
24016
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23860
24017
|
soldermask_margin?: number | undefined;
|
|
23861
24018
|
port_hints?: string[] | undefined;
|
|
23862
24019
|
pcb_port_id?: string | undefined;
|
|
23863
24020
|
rect_border_radius?: number | undefined;
|
|
23864
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
23865
24021
|
corner_radius?: number | undefined;
|
|
23866
24022
|
}, {
|
|
23867
24023
|
x: string | number;
|
|
@@ -23876,12 +24032,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23876
24032
|
pcb_component_id?: string | undefined;
|
|
23877
24033
|
subcircuit_id?: string | undefined;
|
|
23878
24034
|
pcb_group_id?: string | undefined;
|
|
24035
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23879
24036
|
soldermask_margin?: number | undefined;
|
|
23880
24037
|
port_hints?: string[] | undefined;
|
|
23881
24038
|
pcb_port_id?: string | undefined;
|
|
23882
24039
|
rect_border_radius?: number | undefined;
|
|
23883
24040
|
pcb_smtpad_id?: string | undefined;
|
|
23884
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
23885
24041
|
corner_radius?: number | undefined;
|
|
23886
24042
|
}>, z.ZodObject<{
|
|
23887
24043
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
@@ -23923,11 +24079,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23923
24079
|
pcb_component_id?: string | undefined;
|
|
23924
24080
|
subcircuit_id?: string | undefined;
|
|
23925
24081
|
pcb_group_id?: string | undefined;
|
|
24082
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23926
24083
|
soldermask_margin?: number | undefined;
|
|
23927
24084
|
port_hints?: string[] | undefined;
|
|
23928
24085
|
pcb_port_id?: string | undefined;
|
|
23929
24086
|
rect_border_radius?: number | undefined;
|
|
23930
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
23931
24087
|
corner_radius?: number | undefined;
|
|
23932
24088
|
}, {
|
|
23933
24089
|
x: string | number;
|
|
@@ -23943,12 +24099,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23943
24099
|
pcb_component_id?: string | undefined;
|
|
23944
24100
|
subcircuit_id?: string | undefined;
|
|
23945
24101
|
pcb_group_id?: string | undefined;
|
|
24102
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23946
24103
|
soldermask_margin?: number | undefined;
|
|
23947
24104
|
port_hints?: string[] | undefined;
|
|
23948
24105
|
pcb_port_id?: string | undefined;
|
|
23949
24106
|
rect_border_radius?: number | undefined;
|
|
23950
24107
|
pcb_smtpad_id?: string | undefined;
|
|
23951
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
23952
24108
|
corner_radius?: number | undefined;
|
|
23953
24109
|
}>, z.ZodObject<{
|
|
23954
24110
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
@@ -23990,10 +24146,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23990
24146
|
pcb_component_id?: string | undefined;
|
|
23991
24147
|
subcircuit_id?: string | undefined;
|
|
23992
24148
|
pcb_group_id?: string | undefined;
|
|
24149
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23993
24150
|
soldermask_margin?: number | undefined;
|
|
23994
24151
|
port_hints?: string[] | undefined;
|
|
23995
24152
|
pcb_port_id?: string | undefined;
|
|
23996
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
23997
24153
|
}, {
|
|
23998
24154
|
x: string | number;
|
|
23999
24155
|
y: string | number;
|
|
@@ -24009,11 +24165,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
24009
24165
|
pcb_component_id?: string | undefined;
|
|
24010
24166
|
subcircuit_id?: string | undefined;
|
|
24011
24167
|
pcb_group_id?: string | undefined;
|
|
24168
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
24012
24169
|
soldermask_margin?: number | undefined;
|
|
24013
24170
|
port_hints?: string[] | undefined;
|
|
24014
24171
|
pcb_port_id?: string | undefined;
|
|
24015
24172
|
pcb_smtpad_id?: string | undefined;
|
|
24016
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
24017
24173
|
}>, z.ZodObject<{
|
|
24018
24174
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
24019
24175
|
shape: z.ZodLiteral<"pill">;
|
|
@@ -24052,10 +24208,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
24052
24208
|
pcb_component_id?: string | undefined;
|
|
24053
24209
|
subcircuit_id?: string | undefined;
|
|
24054
24210
|
pcb_group_id?: string | undefined;
|
|
24211
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
24055
24212
|
soldermask_margin?: number | undefined;
|
|
24056
24213
|
port_hints?: string[] | undefined;
|
|
24057
24214
|
pcb_port_id?: string | undefined;
|
|
24058
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
24059
24215
|
}, {
|
|
24060
24216
|
x: string | number;
|
|
24061
24217
|
y: string | number;
|
|
@@ -24070,11 +24226,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
24070
24226
|
pcb_component_id?: string | undefined;
|
|
24071
24227
|
subcircuit_id?: string | undefined;
|
|
24072
24228
|
pcb_group_id?: string | undefined;
|
|
24229
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
24073
24230
|
soldermask_margin?: number | undefined;
|
|
24074
24231
|
port_hints?: string[] | undefined;
|
|
24075
24232
|
pcb_port_id?: string | undefined;
|
|
24076
24233
|
pcb_smtpad_id?: string | undefined;
|
|
24077
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
24078
24234
|
}>, z.ZodObject<{
|
|
24079
24235
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
24080
24236
|
shape: z.ZodLiteral<"polygon">;
|
|
@@ -24117,10 +24273,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
24117
24273
|
pcb_component_id?: string | undefined;
|
|
24118
24274
|
subcircuit_id?: string | undefined;
|
|
24119
24275
|
pcb_group_id?: string | undefined;
|
|
24276
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
24120
24277
|
soldermask_margin?: number | undefined;
|
|
24121
24278
|
port_hints?: string[] | undefined;
|
|
24122
24279
|
pcb_port_id?: string | undefined;
|
|
24123
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
24124
24280
|
}, {
|
|
24125
24281
|
type: "pcb_smtpad";
|
|
24126
24282
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -24134,11 +24290,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
24134
24290
|
pcb_component_id?: string | undefined;
|
|
24135
24291
|
subcircuit_id?: string | undefined;
|
|
24136
24292
|
pcb_group_id?: string | undefined;
|
|
24293
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
24137
24294
|
soldermask_margin?: number | undefined;
|
|
24138
24295
|
port_hints?: string[] | undefined;
|
|
24139
24296
|
pcb_port_id?: string | undefined;
|
|
24140
24297
|
pcb_smtpad_id?: string | undefined;
|
|
24141
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
24142
24298
|
}>]>, z.ZodUnion<[z.ZodObject<{
|
|
24143
24299
|
type: z.ZodLiteral<"pcb_solder_paste">;
|
|
24144
24300
|
shape: z.ZodLiteral<"circle">;
|