circuit-json 0.0.316 → 0.0.318
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -0
- package/dist/index.d.mts +197 -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
|
/**
|
|
@@ -1210,6 +1270,7 @@ interface PcbPlatedHoleOval {
|
|
|
1210
1270
|
outer_height: number;
|
|
1211
1271
|
hole_width: number;
|
|
1212
1272
|
hole_height: number;
|
|
1273
|
+
is_covered_with_solder_mask?: boolean;
|
|
1213
1274
|
x: Distance;
|
|
1214
1275
|
y: Distance;
|
|
1215
1276
|
ccw_rotation: Rotation;
|
|
@@ -1234,6 +1295,7 @@ interface PcbHolePillWithRectPad {
|
|
|
1234
1295
|
rect_border_radius?: number;
|
|
1235
1296
|
hole_offset_x: Distance;
|
|
1236
1297
|
hole_offset_y: Distance;
|
|
1298
|
+
is_covered_with_solder_mask?: boolean;
|
|
1237
1299
|
x: Distance;
|
|
1238
1300
|
y: Distance;
|
|
1239
1301
|
layers: LayerRef[];
|
|
@@ -1259,6 +1321,7 @@ interface PcbHoleRotatedPillWithRectPad {
|
|
|
1259
1321
|
rect_ccw_rotation: Rotation;
|
|
1260
1322
|
hole_offset_x: Distance;
|
|
1261
1323
|
hole_offset_y: Distance;
|
|
1324
|
+
is_covered_with_solder_mask?: boolean;
|
|
1262
1325
|
x: Distance;
|
|
1263
1326
|
y: Distance;
|
|
1264
1327
|
layers: LayerRef[];
|
|
@@ -1281,6 +1344,7 @@ interface PcbHoleCircularWithRectPad {
|
|
|
1281
1344
|
rect_border_radius?: number;
|
|
1282
1345
|
hole_offset_x: Distance;
|
|
1283
1346
|
hole_offset_y: Distance;
|
|
1347
|
+
is_covered_with_solder_mask?: boolean;
|
|
1284
1348
|
x: Distance;
|
|
1285
1349
|
y: Distance;
|
|
1286
1350
|
layers: LayerRef[];
|
|
@@ -1308,6 +1372,7 @@ interface PcbHoleWithPolygonPad {
|
|
|
1308
1372
|
}[];
|
|
1309
1373
|
hole_offset_x: Distance;
|
|
1310
1374
|
hole_offset_y: Distance;
|
|
1375
|
+
is_covered_with_solder_mask?: boolean;
|
|
1311
1376
|
x: Distance;
|
|
1312
1377
|
y: Distance;
|
|
1313
1378
|
layers: LayerRef[];
|
|
@@ -1381,6 +1446,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1381
1446
|
outer_height: z.ZodNumber;
|
|
1382
1447
|
hole_width: z.ZodNumber;
|
|
1383
1448
|
hole_height: z.ZodNumber;
|
|
1449
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
1384
1450
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1385
1451
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1386
1452
|
ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -1413,6 +1479,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1413
1479
|
pcb_component_id?: string | undefined;
|
|
1414
1480
|
subcircuit_id?: string | undefined;
|
|
1415
1481
|
pcb_group_id?: string | undefined;
|
|
1482
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1416
1483
|
soldermask_margin?: number | undefined;
|
|
1417
1484
|
port_hints?: string[] | undefined;
|
|
1418
1485
|
pcb_port_id?: string | undefined;
|
|
@@ -1432,6 +1499,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1432
1499
|
pcb_component_id?: string | undefined;
|
|
1433
1500
|
subcircuit_id?: string | undefined;
|
|
1434
1501
|
pcb_group_id?: string | undefined;
|
|
1502
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1435
1503
|
soldermask_margin?: number | undefined;
|
|
1436
1504
|
port_hints?: string[] | undefined;
|
|
1437
1505
|
pcb_port_id?: string | undefined;
|
|
@@ -1449,6 +1517,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1449
1517
|
rect_border_radius: z.ZodOptional<z.ZodNumber>;
|
|
1450
1518
|
hole_offset_x: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
1451
1519
|
hole_offset_y: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
1520
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
1452
1521
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1453
1522
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1454
1523
|
layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -1482,6 +1551,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1482
1551
|
pcb_component_id?: string | undefined;
|
|
1483
1552
|
subcircuit_id?: string | undefined;
|
|
1484
1553
|
pcb_group_id?: string | undefined;
|
|
1554
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1485
1555
|
soldermask_margin?: number | undefined;
|
|
1486
1556
|
port_hints?: string[] | undefined;
|
|
1487
1557
|
pcb_port_id?: string | undefined;
|
|
@@ -1502,6 +1572,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1502
1572
|
pcb_component_id?: string | undefined;
|
|
1503
1573
|
subcircuit_id?: string | undefined;
|
|
1504
1574
|
pcb_group_id?: string | undefined;
|
|
1575
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1505
1576
|
soldermask_margin?: number | undefined;
|
|
1506
1577
|
port_hints?: string[] | undefined;
|
|
1507
1578
|
pcb_port_id?: string | undefined;
|
|
@@ -1523,6 +1594,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1523
1594
|
rect_border_radius: z.ZodOptional<z.ZodNumber>;
|
|
1524
1595
|
hole_offset_x: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
1525
1596
|
hole_offset_y: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
1597
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
1526
1598
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1527
1599
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1528
1600
|
layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -1557,6 +1629,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1557
1629
|
pcb_component_id?: string | undefined;
|
|
1558
1630
|
subcircuit_id?: string | undefined;
|
|
1559
1631
|
pcb_group_id?: string | undefined;
|
|
1632
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1560
1633
|
soldermask_margin?: number | undefined;
|
|
1561
1634
|
port_hints?: string[] | undefined;
|
|
1562
1635
|
pcb_port_id?: string | undefined;
|
|
@@ -1578,6 +1651,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1578
1651
|
pcb_component_id?: string | undefined;
|
|
1579
1652
|
subcircuit_id?: string | undefined;
|
|
1580
1653
|
pcb_group_id?: string | undefined;
|
|
1654
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1581
1655
|
soldermask_margin?: number | undefined;
|
|
1582
1656
|
port_hints?: string[] | undefined;
|
|
1583
1657
|
pcb_port_id?: string | undefined;
|
|
@@ -1601,6 +1675,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1601
1675
|
rect_ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1602
1676
|
hole_offset_x: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
1603
1677
|
hole_offset_y: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
1678
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
1604
1679
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1605
1680
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1606
1681
|
layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -1637,6 +1712,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1637
1712
|
pcb_component_id?: string | undefined;
|
|
1638
1713
|
subcircuit_id?: string | undefined;
|
|
1639
1714
|
pcb_group_id?: string | undefined;
|
|
1715
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1640
1716
|
soldermask_margin?: number | undefined;
|
|
1641
1717
|
port_hints?: string[] | undefined;
|
|
1642
1718
|
pcb_port_id?: string | undefined;
|
|
@@ -1660,6 +1736,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1660
1736
|
pcb_component_id?: string | undefined;
|
|
1661
1737
|
subcircuit_id?: string | undefined;
|
|
1662
1738
|
pcb_group_id?: string | undefined;
|
|
1739
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1663
1740
|
soldermask_margin?: number | undefined;
|
|
1664
1741
|
port_hints?: string[] | undefined;
|
|
1665
1742
|
pcb_port_id?: string | undefined;
|
|
@@ -1688,6 +1765,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1688
1765
|
}>, "many">;
|
|
1689
1766
|
hole_offset_x: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
1690
1767
|
hole_offset_y: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
1768
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
1691
1769
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1692
1770
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1693
1771
|
layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -1722,6 +1800,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1722
1800
|
subcircuit_id?: string | undefined;
|
|
1723
1801
|
pcb_group_id?: string | undefined;
|
|
1724
1802
|
hole_diameter?: number | undefined;
|
|
1803
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1725
1804
|
soldermask_margin?: number | undefined;
|
|
1726
1805
|
hole_width?: number | undefined;
|
|
1727
1806
|
hole_height?: number | undefined;
|
|
@@ -1744,6 +1823,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1744
1823
|
subcircuit_id?: string | undefined;
|
|
1745
1824
|
pcb_group_id?: string | undefined;
|
|
1746
1825
|
hole_diameter?: number | undefined;
|
|
1826
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1747
1827
|
soldermask_margin?: number | undefined;
|
|
1748
1828
|
hole_width?: number | undefined;
|
|
1749
1829
|
hole_height?: number | undefined;
|
|
@@ -1871,10 +1951,10 @@ declare const pcb_smtpad_pill: z.ZodObject<{
|
|
|
1871
1951
|
pcb_component_id?: string | undefined;
|
|
1872
1952
|
subcircuit_id?: string | undefined;
|
|
1873
1953
|
pcb_group_id?: string | undefined;
|
|
1954
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1874
1955
|
soldermask_margin?: number | undefined;
|
|
1875
1956
|
port_hints?: string[] | undefined;
|
|
1876
1957
|
pcb_port_id?: string | undefined;
|
|
1877
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
1878
1958
|
}, {
|
|
1879
1959
|
x: string | number;
|
|
1880
1960
|
y: string | number;
|
|
@@ -1889,11 +1969,11 @@ declare const pcb_smtpad_pill: z.ZodObject<{
|
|
|
1889
1969
|
pcb_component_id?: string | undefined;
|
|
1890
1970
|
subcircuit_id?: string | undefined;
|
|
1891
1971
|
pcb_group_id?: string | undefined;
|
|
1972
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1892
1973
|
soldermask_margin?: number | undefined;
|
|
1893
1974
|
port_hints?: string[] | undefined;
|
|
1894
1975
|
pcb_port_id?: string | undefined;
|
|
1895
1976
|
pcb_smtpad_id?: string | undefined;
|
|
1896
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
1897
1977
|
}>;
|
|
1898
1978
|
declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
1899
1979
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
@@ -1929,10 +2009,10 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1929
2009
|
pcb_component_id?: string | undefined;
|
|
1930
2010
|
subcircuit_id?: string | undefined;
|
|
1931
2011
|
pcb_group_id?: string | undefined;
|
|
2012
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1932
2013
|
soldermask_margin?: number | undefined;
|
|
1933
2014
|
port_hints?: string[] | undefined;
|
|
1934
2015
|
pcb_port_id?: string | undefined;
|
|
1935
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
1936
2016
|
}, {
|
|
1937
2017
|
x: string | number;
|
|
1938
2018
|
y: string | number;
|
|
@@ -1945,11 +2025,11 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1945
2025
|
pcb_component_id?: string | undefined;
|
|
1946
2026
|
subcircuit_id?: string | undefined;
|
|
1947
2027
|
pcb_group_id?: string | undefined;
|
|
2028
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1948
2029
|
soldermask_margin?: number | undefined;
|
|
1949
2030
|
port_hints?: string[] | undefined;
|
|
1950
2031
|
pcb_port_id?: string | undefined;
|
|
1951
2032
|
pcb_smtpad_id?: string | undefined;
|
|
1952
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
1953
2033
|
}>, z.ZodObject<{
|
|
1954
2034
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
1955
2035
|
shape: z.ZodLiteral<"rect">;
|
|
@@ -1988,11 +2068,11 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1988
2068
|
pcb_component_id?: string | undefined;
|
|
1989
2069
|
subcircuit_id?: string | undefined;
|
|
1990
2070
|
pcb_group_id?: string | undefined;
|
|
2071
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1991
2072
|
soldermask_margin?: number | undefined;
|
|
1992
2073
|
port_hints?: string[] | undefined;
|
|
1993
2074
|
pcb_port_id?: string | undefined;
|
|
1994
2075
|
rect_border_radius?: number | undefined;
|
|
1995
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
1996
2076
|
corner_radius?: number | undefined;
|
|
1997
2077
|
}, {
|
|
1998
2078
|
x: string | number;
|
|
@@ -2007,12 +2087,12 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2007
2087
|
pcb_component_id?: string | undefined;
|
|
2008
2088
|
subcircuit_id?: string | undefined;
|
|
2009
2089
|
pcb_group_id?: string | undefined;
|
|
2090
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
2010
2091
|
soldermask_margin?: number | undefined;
|
|
2011
2092
|
port_hints?: string[] | undefined;
|
|
2012
2093
|
pcb_port_id?: string | undefined;
|
|
2013
2094
|
rect_border_radius?: number | undefined;
|
|
2014
2095
|
pcb_smtpad_id?: string | undefined;
|
|
2015
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
2016
2096
|
corner_radius?: number | undefined;
|
|
2017
2097
|
}>, z.ZodObject<{
|
|
2018
2098
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
@@ -2054,11 +2134,11 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2054
2134
|
pcb_component_id?: string | undefined;
|
|
2055
2135
|
subcircuit_id?: string | undefined;
|
|
2056
2136
|
pcb_group_id?: string | undefined;
|
|
2137
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
2057
2138
|
soldermask_margin?: number | undefined;
|
|
2058
2139
|
port_hints?: string[] | undefined;
|
|
2059
2140
|
pcb_port_id?: string | undefined;
|
|
2060
2141
|
rect_border_radius?: number | undefined;
|
|
2061
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
2062
2142
|
corner_radius?: number | undefined;
|
|
2063
2143
|
}, {
|
|
2064
2144
|
x: string | number;
|
|
@@ -2074,12 +2154,12 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2074
2154
|
pcb_component_id?: string | undefined;
|
|
2075
2155
|
subcircuit_id?: string | undefined;
|
|
2076
2156
|
pcb_group_id?: string | undefined;
|
|
2157
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
2077
2158
|
soldermask_margin?: number | undefined;
|
|
2078
2159
|
port_hints?: string[] | undefined;
|
|
2079
2160
|
pcb_port_id?: string | undefined;
|
|
2080
2161
|
rect_border_radius?: number | undefined;
|
|
2081
2162
|
pcb_smtpad_id?: string | undefined;
|
|
2082
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
2083
2163
|
corner_radius?: number | undefined;
|
|
2084
2164
|
}>, z.ZodObject<{
|
|
2085
2165
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
@@ -2121,10 +2201,10 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2121
2201
|
pcb_component_id?: string | undefined;
|
|
2122
2202
|
subcircuit_id?: string | undefined;
|
|
2123
2203
|
pcb_group_id?: string | undefined;
|
|
2204
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
2124
2205
|
soldermask_margin?: number | undefined;
|
|
2125
2206
|
port_hints?: string[] | undefined;
|
|
2126
2207
|
pcb_port_id?: string | undefined;
|
|
2127
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
2128
2208
|
}, {
|
|
2129
2209
|
x: string | number;
|
|
2130
2210
|
y: string | number;
|
|
@@ -2140,11 +2220,11 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2140
2220
|
pcb_component_id?: string | undefined;
|
|
2141
2221
|
subcircuit_id?: string | undefined;
|
|
2142
2222
|
pcb_group_id?: string | undefined;
|
|
2223
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
2143
2224
|
soldermask_margin?: number | undefined;
|
|
2144
2225
|
port_hints?: string[] | undefined;
|
|
2145
2226
|
pcb_port_id?: string | undefined;
|
|
2146
2227
|
pcb_smtpad_id?: string | undefined;
|
|
2147
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
2148
2228
|
}>, z.ZodObject<{
|
|
2149
2229
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
2150
2230
|
shape: z.ZodLiteral<"pill">;
|
|
@@ -2183,10 +2263,10 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2183
2263
|
pcb_component_id?: string | undefined;
|
|
2184
2264
|
subcircuit_id?: string | undefined;
|
|
2185
2265
|
pcb_group_id?: string | undefined;
|
|
2266
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
2186
2267
|
soldermask_margin?: number | undefined;
|
|
2187
2268
|
port_hints?: string[] | undefined;
|
|
2188
2269
|
pcb_port_id?: string | undefined;
|
|
2189
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
2190
2270
|
}, {
|
|
2191
2271
|
x: string | number;
|
|
2192
2272
|
y: string | number;
|
|
@@ -2201,11 +2281,11 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2201
2281
|
pcb_component_id?: string | undefined;
|
|
2202
2282
|
subcircuit_id?: string | undefined;
|
|
2203
2283
|
pcb_group_id?: string | undefined;
|
|
2284
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
2204
2285
|
soldermask_margin?: number | undefined;
|
|
2205
2286
|
port_hints?: string[] | undefined;
|
|
2206
2287
|
pcb_port_id?: string | undefined;
|
|
2207
2288
|
pcb_smtpad_id?: string | undefined;
|
|
2208
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
2209
2289
|
}>, z.ZodObject<{
|
|
2210
2290
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
2211
2291
|
shape: z.ZodLiteral<"polygon">;
|
|
@@ -2248,10 +2328,10 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2248
2328
|
pcb_component_id?: string | undefined;
|
|
2249
2329
|
subcircuit_id?: string | undefined;
|
|
2250
2330
|
pcb_group_id?: string | undefined;
|
|
2331
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
2251
2332
|
soldermask_margin?: number | undefined;
|
|
2252
2333
|
port_hints?: string[] | undefined;
|
|
2253
2334
|
pcb_port_id?: string | undefined;
|
|
2254
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
2255
2335
|
}, {
|
|
2256
2336
|
type: "pcb_smtpad";
|
|
2257
2337
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -2265,11 +2345,11 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2265
2345
|
pcb_component_id?: string | undefined;
|
|
2266
2346
|
subcircuit_id?: string | undefined;
|
|
2267
2347
|
pcb_group_id?: string | undefined;
|
|
2348
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
2268
2349
|
soldermask_margin?: number | undefined;
|
|
2269
2350
|
port_hints?: string[] | undefined;
|
|
2270
2351
|
pcb_port_id?: string | undefined;
|
|
2271
2352
|
pcb_smtpad_id?: string | undefined;
|
|
2272
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
2273
2353
|
}>]>;
|
|
2274
2354
|
type PCBSMTPadInput = z.input<typeof pcb_smtpad>;
|
|
2275
2355
|
/**
|
|
@@ -5326,6 +5406,7 @@ declare const pcb_cutout_rect: z.ZodObject<{
|
|
|
5326
5406
|
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
5327
5407
|
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
5328
5408
|
rotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5409
|
+
corner_radius: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5329
5410
|
}, "strip", z.ZodTypeAny, {
|
|
5330
5411
|
type: "pcb_cutout";
|
|
5331
5412
|
width: number;
|
|
@@ -5339,6 +5420,7 @@ declare const pcb_cutout_rect: z.ZodObject<{
|
|
|
5339
5420
|
rotation?: number | undefined;
|
|
5340
5421
|
subcircuit_id?: string | undefined;
|
|
5341
5422
|
pcb_group_id?: string | undefined;
|
|
5423
|
+
corner_radius?: number | undefined;
|
|
5342
5424
|
pcb_board_id?: string | undefined;
|
|
5343
5425
|
pcb_panel_id?: string | undefined;
|
|
5344
5426
|
}, {
|
|
@@ -5353,6 +5435,7 @@ declare const pcb_cutout_rect: z.ZodObject<{
|
|
|
5353
5435
|
rotation?: string | number | undefined;
|
|
5354
5436
|
subcircuit_id?: string | undefined;
|
|
5355
5437
|
pcb_group_id?: string | undefined;
|
|
5438
|
+
corner_radius?: string | number | undefined;
|
|
5356
5439
|
pcb_board_id?: string | undefined;
|
|
5357
5440
|
pcb_panel_id?: string | undefined;
|
|
5358
5441
|
pcb_cutout_id?: string | undefined;
|
|
@@ -5373,6 +5456,7 @@ interface PcbCutoutRect {
|
|
|
5373
5456
|
width: Length;
|
|
5374
5457
|
height: Length;
|
|
5375
5458
|
rotation?: Rotation;
|
|
5459
|
+
corner_radius?: Length;
|
|
5376
5460
|
}
|
|
5377
5461
|
declare const pcb_cutout_circle: z.ZodObject<{
|
|
5378
5462
|
type: z.ZodLiteral<"pcb_cutout">;
|
|
@@ -5594,6 +5678,7 @@ declare const pcb_cutout: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
5594
5678
|
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
5595
5679
|
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
5596
5680
|
rotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5681
|
+
corner_radius: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5597
5682
|
}, "strip", z.ZodTypeAny, {
|
|
5598
5683
|
type: "pcb_cutout";
|
|
5599
5684
|
width: number;
|
|
@@ -5607,6 +5692,7 @@ declare const pcb_cutout: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
5607
5692
|
rotation?: number | undefined;
|
|
5608
5693
|
subcircuit_id?: string | undefined;
|
|
5609
5694
|
pcb_group_id?: string | undefined;
|
|
5695
|
+
corner_radius?: number | undefined;
|
|
5610
5696
|
pcb_board_id?: string | undefined;
|
|
5611
5697
|
pcb_panel_id?: string | undefined;
|
|
5612
5698
|
}, {
|
|
@@ -5621,6 +5707,7 @@ declare const pcb_cutout: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
5621
5707
|
rotation?: string | number | undefined;
|
|
5622
5708
|
subcircuit_id?: string | undefined;
|
|
5623
5709
|
pcb_group_id?: string | undefined;
|
|
5710
|
+
corner_radius?: string | number | undefined;
|
|
5624
5711
|
pcb_board_id?: string | undefined;
|
|
5625
5712
|
pcb_panel_id?: string | undefined;
|
|
5626
5713
|
pcb_cutout_id?: string | undefined;
|
|
@@ -14730,6 +14817,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14730
14817
|
hole_diameter: z.ZodNumber;
|
|
14731
14818
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14732
14819
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14820
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
14733
14821
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
14734
14822
|
}, "strip", z.ZodTypeAny, {
|
|
14735
14823
|
x: number;
|
|
@@ -14740,6 +14828,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14740
14828
|
hole_diameter: number;
|
|
14741
14829
|
subcircuit_id?: string | undefined;
|
|
14742
14830
|
pcb_group_id?: string | undefined;
|
|
14831
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
14743
14832
|
soldermask_margin?: number | undefined;
|
|
14744
14833
|
}, {
|
|
14745
14834
|
x: string | number;
|
|
@@ -14750,6 +14839,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14750
14839
|
subcircuit_id?: string | undefined;
|
|
14751
14840
|
pcb_group_id?: string | undefined;
|
|
14752
14841
|
pcb_hole_id?: string | undefined;
|
|
14842
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
14753
14843
|
soldermask_margin?: number | undefined;
|
|
14754
14844
|
}>, z.ZodObject<{
|
|
14755
14845
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -14761,6 +14851,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14761
14851
|
hole_height: z.ZodNumber;
|
|
14762
14852
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14763
14853
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14854
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
14764
14855
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
14765
14856
|
}, "strip", z.ZodTypeAny, {
|
|
14766
14857
|
x: number;
|
|
@@ -14772,6 +14863,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14772
14863
|
hole_height: number;
|
|
14773
14864
|
subcircuit_id?: string | undefined;
|
|
14774
14865
|
pcb_group_id?: string | undefined;
|
|
14866
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
14775
14867
|
soldermask_margin?: number | undefined;
|
|
14776
14868
|
}, {
|
|
14777
14869
|
x: string | number;
|
|
@@ -14783,6 +14875,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14783
14875
|
subcircuit_id?: string | undefined;
|
|
14784
14876
|
pcb_group_id?: string | undefined;
|
|
14785
14877
|
pcb_hole_id?: string | undefined;
|
|
14878
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
14786
14879
|
soldermask_margin?: number | undefined;
|
|
14787
14880
|
}>]>, z.ZodObject<{
|
|
14788
14881
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -14794,6 +14887,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14794
14887
|
hole_height: z.ZodNumber;
|
|
14795
14888
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14796
14889
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14890
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
14797
14891
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
14798
14892
|
}, "strip", z.ZodTypeAny, {
|
|
14799
14893
|
x: number;
|
|
@@ -14805,6 +14899,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14805
14899
|
hole_height: number;
|
|
14806
14900
|
subcircuit_id?: string | undefined;
|
|
14807
14901
|
pcb_group_id?: string | undefined;
|
|
14902
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
14808
14903
|
soldermask_margin?: number | undefined;
|
|
14809
14904
|
}, {
|
|
14810
14905
|
x: string | number;
|
|
@@ -14816,6 +14911,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14816
14911
|
subcircuit_id?: string | undefined;
|
|
14817
14912
|
pcb_group_id?: string | undefined;
|
|
14818
14913
|
pcb_hole_id?: string | undefined;
|
|
14914
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
14819
14915
|
soldermask_margin?: number | undefined;
|
|
14820
14916
|
}>]>, z.ZodObject<{
|
|
14821
14917
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -14828,6 +14924,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14828
14924
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14829
14925
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14830
14926
|
ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14927
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
14831
14928
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
14832
14929
|
}, "strip", z.ZodTypeAny, {
|
|
14833
14930
|
x: number;
|
|
@@ -14840,6 +14937,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14840
14937
|
ccw_rotation: number;
|
|
14841
14938
|
subcircuit_id?: string | undefined;
|
|
14842
14939
|
pcb_group_id?: string | undefined;
|
|
14940
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
14843
14941
|
soldermask_margin?: number | undefined;
|
|
14844
14942
|
}, {
|
|
14845
14943
|
x: string | number;
|
|
@@ -14852,6 +14950,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14852
14950
|
subcircuit_id?: string | undefined;
|
|
14853
14951
|
pcb_group_id?: string | undefined;
|
|
14854
14952
|
pcb_hole_id?: string | undefined;
|
|
14953
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
14855
14954
|
soldermask_margin?: number | undefined;
|
|
14856
14955
|
}>]>, z.ZodObject<{
|
|
14857
14956
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -14862,6 +14961,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14862
14961
|
hole_diameter: z.ZodNumber;
|
|
14863
14962
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14864
14963
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14964
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
14865
14965
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
14866
14966
|
}, "strip", z.ZodTypeAny, {
|
|
14867
14967
|
x: number;
|
|
@@ -14872,6 +14972,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14872
14972
|
hole_diameter: number;
|
|
14873
14973
|
subcircuit_id?: string | undefined;
|
|
14874
14974
|
pcb_group_id?: string | undefined;
|
|
14975
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
14875
14976
|
soldermask_margin?: number | undefined;
|
|
14876
14977
|
}, {
|
|
14877
14978
|
x: string | number;
|
|
@@ -14882,6 +14983,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14882
14983
|
subcircuit_id?: string | undefined;
|
|
14883
14984
|
pcb_group_id?: string | undefined;
|
|
14884
14985
|
pcb_hole_id?: string | undefined;
|
|
14986
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
14885
14987
|
soldermask_margin?: number | undefined;
|
|
14886
14988
|
}>]>, z.ZodObject<{
|
|
14887
14989
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -14893,6 +14995,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14893
14995
|
hole_height: z.ZodNumber;
|
|
14894
14996
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14895
14997
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14998
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
14896
14999
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
14897
15000
|
}, "strip", z.ZodTypeAny, {
|
|
14898
15001
|
x: number;
|
|
@@ -14904,6 +15007,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14904
15007
|
hole_height: number;
|
|
14905
15008
|
subcircuit_id?: string | undefined;
|
|
14906
15009
|
pcb_group_id?: string | undefined;
|
|
15010
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
14907
15011
|
soldermask_margin?: number | undefined;
|
|
14908
15012
|
}, {
|
|
14909
15013
|
x: string | number;
|
|
@@ -14915,6 +15019,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14915
15019
|
subcircuit_id?: string | undefined;
|
|
14916
15020
|
pcb_group_id?: string | undefined;
|
|
14917
15021
|
pcb_hole_id?: string | undefined;
|
|
15022
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
14918
15023
|
soldermask_margin?: number | undefined;
|
|
14919
15024
|
}>]>, z.ZodObject<{
|
|
14920
15025
|
type: z.ZodLiteral<"pcb_missing_footprint_error">;
|
|
@@ -15091,6 +15196,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15091
15196
|
outer_height: z.ZodNumber;
|
|
15092
15197
|
hole_width: z.ZodNumber;
|
|
15093
15198
|
hole_height: z.ZodNumber;
|
|
15199
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
15094
15200
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15095
15201
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15096
15202
|
ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -15123,6 +15229,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15123
15229
|
pcb_component_id?: string | undefined;
|
|
15124
15230
|
subcircuit_id?: string | undefined;
|
|
15125
15231
|
pcb_group_id?: string | undefined;
|
|
15232
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
15126
15233
|
soldermask_margin?: number | undefined;
|
|
15127
15234
|
port_hints?: string[] | undefined;
|
|
15128
15235
|
pcb_port_id?: string | undefined;
|
|
@@ -15142,6 +15249,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15142
15249
|
pcb_component_id?: string | undefined;
|
|
15143
15250
|
subcircuit_id?: string | undefined;
|
|
15144
15251
|
pcb_group_id?: string | undefined;
|
|
15252
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
15145
15253
|
soldermask_margin?: number | undefined;
|
|
15146
15254
|
port_hints?: string[] | undefined;
|
|
15147
15255
|
pcb_port_id?: string | undefined;
|
|
@@ -15159,6 +15267,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15159
15267
|
rect_border_radius: z.ZodOptional<z.ZodNumber>;
|
|
15160
15268
|
hole_offset_x: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15161
15269
|
hole_offset_y: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15270
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
15162
15271
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15163
15272
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15164
15273
|
layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -15192,6 +15301,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15192
15301
|
pcb_component_id?: string | undefined;
|
|
15193
15302
|
subcircuit_id?: string | undefined;
|
|
15194
15303
|
pcb_group_id?: string | undefined;
|
|
15304
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
15195
15305
|
soldermask_margin?: number | undefined;
|
|
15196
15306
|
port_hints?: string[] | undefined;
|
|
15197
15307
|
pcb_port_id?: string | undefined;
|
|
@@ -15212,6 +15322,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15212
15322
|
pcb_component_id?: string | undefined;
|
|
15213
15323
|
subcircuit_id?: string | undefined;
|
|
15214
15324
|
pcb_group_id?: string | undefined;
|
|
15325
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
15215
15326
|
soldermask_margin?: number | undefined;
|
|
15216
15327
|
port_hints?: string[] | undefined;
|
|
15217
15328
|
pcb_port_id?: string | undefined;
|
|
@@ -15233,6 +15344,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15233
15344
|
rect_border_radius: z.ZodOptional<z.ZodNumber>;
|
|
15234
15345
|
hole_offset_x: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15235
15346
|
hole_offset_y: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15347
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
15236
15348
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15237
15349
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15238
15350
|
layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -15267,6 +15379,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15267
15379
|
pcb_component_id?: string | undefined;
|
|
15268
15380
|
subcircuit_id?: string | undefined;
|
|
15269
15381
|
pcb_group_id?: string | undefined;
|
|
15382
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
15270
15383
|
soldermask_margin?: number | undefined;
|
|
15271
15384
|
port_hints?: string[] | undefined;
|
|
15272
15385
|
pcb_port_id?: string | undefined;
|
|
@@ -15288,6 +15401,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15288
15401
|
pcb_component_id?: string | undefined;
|
|
15289
15402
|
subcircuit_id?: string | undefined;
|
|
15290
15403
|
pcb_group_id?: string | undefined;
|
|
15404
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
15291
15405
|
soldermask_margin?: number | undefined;
|
|
15292
15406
|
port_hints?: string[] | undefined;
|
|
15293
15407
|
pcb_port_id?: string | undefined;
|
|
@@ -15311,6 +15425,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15311
15425
|
rect_ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15312
15426
|
hole_offset_x: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15313
15427
|
hole_offset_y: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15428
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
15314
15429
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15315
15430
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15316
15431
|
layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -15347,6 +15462,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15347
15462
|
pcb_component_id?: string | undefined;
|
|
15348
15463
|
subcircuit_id?: string | undefined;
|
|
15349
15464
|
pcb_group_id?: string | undefined;
|
|
15465
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
15350
15466
|
soldermask_margin?: number | undefined;
|
|
15351
15467
|
port_hints?: string[] | undefined;
|
|
15352
15468
|
pcb_port_id?: string | undefined;
|
|
@@ -15370,6 +15486,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15370
15486
|
pcb_component_id?: string | undefined;
|
|
15371
15487
|
subcircuit_id?: string | undefined;
|
|
15372
15488
|
pcb_group_id?: string | undefined;
|
|
15489
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
15373
15490
|
soldermask_margin?: number | undefined;
|
|
15374
15491
|
port_hints?: string[] | undefined;
|
|
15375
15492
|
pcb_port_id?: string | undefined;
|
|
@@ -15398,6 +15515,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15398
15515
|
}>, "many">;
|
|
15399
15516
|
hole_offset_x: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15400
15517
|
hole_offset_y: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15518
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
15401
15519
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15402
15520
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15403
15521
|
layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -15432,6 +15550,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15432
15550
|
subcircuit_id?: string | undefined;
|
|
15433
15551
|
pcb_group_id?: string | undefined;
|
|
15434
15552
|
hole_diameter?: number | undefined;
|
|
15553
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
15435
15554
|
soldermask_margin?: number | undefined;
|
|
15436
15555
|
hole_width?: number | undefined;
|
|
15437
15556
|
hole_height?: number | undefined;
|
|
@@ -15454,6 +15573,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15454
15573
|
subcircuit_id?: string | undefined;
|
|
15455
15574
|
pcb_group_id?: string | undefined;
|
|
15456
15575
|
hole_diameter?: number | undefined;
|
|
15576
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
15457
15577
|
soldermask_margin?: number | undefined;
|
|
15458
15578
|
hole_width?: number | undefined;
|
|
15459
15579
|
hole_height?: number | undefined;
|
|
@@ -15917,10 +16037,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15917
16037
|
pcb_component_id?: string | undefined;
|
|
15918
16038
|
subcircuit_id?: string | undefined;
|
|
15919
16039
|
pcb_group_id?: string | undefined;
|
|
16040
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
15920
16041
|
soldermask_margin?: number | undefined;
|
|
15921
16042
|
port_hints?: string[] | undefined;
|
|
15922
16043
|
pcb_port_id?: string | undefined;
|
|
15923
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
15924
16044
|
}, {
|
|
15925
16045
|
x: string | number;
|
|
15926
16046
|
y: string | number;
|
|
@@ -15933,11 +16053,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15933
16053
|
pcb_component_id?: string | undefined;
|
|
15934
16054
|
subcircuit_id?: string | undefined;
|
|
15935
16055
|
pcb_group_id?: string | undefined;
|
|
16056
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
15936
16057
|
soldermask_margin?: number | undefined;
|
|
15937
16058
|
port_hints?: string[] | undefined;
|
|
15938
16059
|
pcb_port_id?: string | undefined;
|
|
15939
16060
|
pcb_smtpad_id?: string | undefined;
|
|
15940
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
15941
16061
|
}>, z.ZodObject<{
|
|
15942
16062
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
15943
16063
|
shape: z.ZodLiteral<"rect">;
|
|
@@ -15976,11 +16096,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15976
16096
|
pcb_component_id?: string | undefined;
|
|
15977
16097
|
subcircuit_id?: string | undefined;
|
|
15978
16098
|
pcb_group_id?: string | undefined;
|
|
16099
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
15979
16100
|
soldermask_margin?: number | undefined;
|
|
15980
16101
|
port_hints?: string[] | undefined;
|
|
15981
16102
|
pcb_port_id?: string | undefined;
|
|
15982
16103
|
rect_border_radius?: number | undefined;
|
|
15983
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
15984
16104
|
corner_radius?: number | undefined;
|
|
15985
16105
|
}, {
|
|
15986
16106
|
x: string | number;
|
|
@@ -15995,12 +16115,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15995
16115
|
pcb_component_id?: string | undefined;
|
|
15996
16116
|
subcircuit_id?: string | undefined;
|
|
15997
16117
|
pcb_group_id?: string | undefined;
|
|
16118
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
15998
16119
|
soldermask_margin?: number | undefined;
|
|
15999
16120
|
port_hints?: string[] | undefined;
|
|
16000
16121
|
pcb_port_id?: string | undefined;
|
|
16001
16122
|
rect_border_radius?: number | undefined;
|
|
16002
16123
|
pcb_smtpad_id?: string | undefined;
|
|
16003
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
16004
16124
|
corner_radius?: number | undefined;
|
|
16005
16125
|
}>, z.ZodObject<{
|
|
16006
16126
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
@@ -16042,11 +16162,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16042
16162
|
pcb_component_id?: string | undefined;
|
|
16043
16163
|
subcircuit_id?: string | undefined;
|
|
16044
16164
|
pcb_group_id?: string | undefined;
|
|
16165
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
16045
16166
|
soldermask_margin?: number | undefined;
|
|
16046
16167
|
port_hints?: string[] | undefined;
|
|
16047
16168
|
pcb_port_id?: string | undefined;
|
|
16048
16169
|
rect_border_radius?: number | undefined;
|
|
16049
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
16050
16170
|
corner_radius?: number | undefined;
|
|
16051
16171
|
}, {
|
|
16052
16172
|
x: string | number;
|
|
@@ -16062,12 +16182,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16062
16182
|
pcb_component_id?: string | undefined;
|
|
16063
16183
|
subcircuit_id?: string | undefined;
|
|
16064
16184
|
pcb_group_id?: string | undefined;
|
|
16185
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
16065
16186
|
soldermask_margin?: number | undefined;
|
|
16066
16187
|
port_hints?: string[] | undefined;
|
|
16067
16188
|
pcb_port_id?: string | undefined;
|
|
16068
16189
|
rect_border_radius?: number | undefined;
|
|
16069
16190
|
pcb_smtpad_id?: string | undefined;
|
|
16070
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
16071
16191
|
corner_radius?: number | undefined;
|
|
16072
16192
|
}>, z.ZodObject<{
|
|
16073
16193
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
@@ -16109,10 +16229,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16109
16229
|
pcb_component_id?: string | undefined;
|
|
16110
16230
|
subcircuit_id?: string | undefined;
|
|
16111
16231
|
pcb_group_id?: string | undefined;
|
|
16232
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
16112
16233
|
soldermask_margin?: number | undefined;
|
|
16113
16234
|
port_hints?: string[] | undefined;
|
|
16114
16235
|
pcb_port_id?: string | undefined;
|
|
16115
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
16116
16236
|
}, {
|
|
16117
16237
|
x: string | number;
|
|
16118
16238
|
y: string | number;
|
|
@@ -16128,11 +16248,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16128
16248
|
pcb_component_id?: string | undefined;
|
|
16129
16249
|
subcircuit_id?: string | undefined;
|
|
16130
16250
|
pcb_group_id?: string | undefined;
|
|
16251
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
16131
16252
|
soldermask_margin?: number | undefined;
|
|
16132
16253
|
port_hints?: string[] | undefined;
|
|
16133
16254
|
pcb_port_id?: string | undefined;
|
|
16134
16255
|
pcb_smtpad_id?: string | undefined;
|
|
16135
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
16136
16256
|
}>, z.ZodObject<{
|
|
16137
16257
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
16138
16258
|
shape: z.ZodLiteral<"pill">;
|
|
@@ -16171,10 +16291,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16171
16291
|
pcb_component_id?: string | undefined;
|
|
16172
16292
|
subcircuit_id?: string | undefined;
|
|
16173
16293
|
pcb_group_id?: string | undefined;
|
|
16294
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
16174
16295
|
soldermask_margin?: number | undefined;
|
|
16175
16296
|
port_hints?: string[] | undefined;
|
|
16176
16297
|
pcb_port_id?: string | undefined;
|
|
16177
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
16178
16298
|
}, {
|
|
16179
16299
|
x: string | number;
|
|
16180
16300
|
y: string | number;
|
|
@@ -16189,11 +16309,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16189
16309
|
pcb_component_id?: string | undefined;
|
|
16190
16310
|
subcircuit_id?: string | undefined;
|
|
16191
16311
|
pcb_group_id?: string | undefined;
|
|
16312
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
16192
16313
|
soldermask_margin?: number | undefined;
|
|
16193
16314
|
port_hints?: string[] | undefined;
|
|
16194
16315
|
pcb_port_id?: string | undefined;
|
|
16195
16316
|
pcb_smtpad_id?: string | undefined;
|
|
16196
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
16197
16317
|
}>, z.ZodObject<{
|
|
16198
16318
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
16199
16319
|
shape: z.ZodLiteral<"polygon">;
|
|
@@ -16236,10 +16356,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16236
16356
|
pcb_component_id?: string | undefined;
|
|
16237
16357
|
subcircuit_id?: string | undefined;
|
|
16238
16358
|
pcb_group_id?: string | undefined;
|
|
16359
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
16239
16360
|
soldermask_margin?: number | undefined;
|
|
16240
16361
|
port_hints?: string[] | undefined;
|
|
16241
16362
|
pcb_port_id?: string | undefined;
|
|
16242
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
16243
16363
|
}, {
|
|
16244
16364
|
type: "pcb_smtpad";
|
|
16245
16365
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -16253,11 +16373,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16253
16373
|
pcb_component_id?: string | undefined;
|
|
16254
16374
|
subcircuit_id?: string | undefined;
|
|
16255
16375
|
pcb_group_id?: string | undefined;
|
|
16376
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
16256
16377
|
soldermask_margin?: number | undefined;
|
|
16257
16378
|
port_hints?: string[] | undefined;
|
|
16258
16379
|
pcb_port_id?: string | undefined;
|
|
16259
16380
|
pcb_smtpad_id?: string | undefined;
|
|
16260
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
16261
16381
|
}>]>, z.ZodUnion<[z.ZodObject<{
|
|
16262
16382
|
type: z.ZodLiteral<"pcb_solder_paste">;
|
|
16263
16383
|
shape: z.ZodLiteral<"circle">;
|
|
@@ -18098,6 +18218,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18098
18218
|
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
18099
18219
|
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
18100
18220
|
rotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
18221
|
+
corner_radius: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
18101
18222
|
}, "strip", z.ZodTypeAny, {
|
|
18102
18223
|
type: "pcb_cutout";
|
|
18103
18224
|
width: number;
|
|
@@ -18111,6 +18232,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18111
18232
|
rotation?: number | undefined;
|
|
18112
18233
|
subcircuit_id?: string | undefined;
|
|
18113
18234
|
pcb_group_id?: string | undefined;
|
|
18235
|
+
corner_radius?: number | undefined;
|
|
18114
18236
|
pcb_board_id?: string | undefined;
|
|
18115
18237
|
pcb_panel_id?: string | undefined;
|
|
18116
18238
|
}, {
|
|
@@ -18125,6 +18247,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18125
18247
|
rotation?: string | number | undefined;
|
|
18126
18248
|
subcircuit_id?: string | undefined;
|
|
18127
18249
|
pcb_group_id?: string | undefined;
|
|
18250
|
+
corner_radius?: string | number | undefined;
|
|
18128
18251
|
pcb_board_id?: string | undefined;
|
|
18129
18252
|
pcb_panel_id?: string | undefined;
|
|
18130
18253
|
pcb_cutout_id?: string | undefined;
|
|
@@ -22601,6 +22724,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22601
22724
|
hole_diameter: z.ZodNumber;
|
|
22602
22725
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22603
22726
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22727
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
22604
22728
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22605
22729
|
}, "strip", z.ZodTypeAny, {
|
|
22606
22730
|
x: number;
|
|
@@ -22611,6 +22735,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22611
22735
|
hole_diameter: number;
|
|
22612
22736
|
subcircuit_id?: string | undefined;
|
|
22613
22737
|
pcb_group_id?: string | undefined;
|
|
22738
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
22614
22739
|
soldermask_margin?: number | undefined;
|
|
22615
22740
|
}, {
|
|
22616
22741
|
x: string | number;
|
|
@@ -22621,6 +22746,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22621
22746
|
subcircuit_id?: string | undefined;
|
|
22622
22747
|
pcb_group_id?: string | undefined;
|
|
22623
22748
|
pcb_hole_id?: string | undefined;
|
|
22749
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
22624
22750
|
soldermask_margin?: number | undefined;
|
|
22625
22751
|
}>, z.ZodObject<{
|
|
22626
22752
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -22632,6 +22758,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22632
22758
|
hole_height: z.ZodNumber;
|
|
22633
22759
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22634
22760
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22761
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
22635
22762
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22636
22763
|
}, "strip", z.ZodTypeAny, {
|
|
22637
22764
|
x: number;
|
|
@@ -22643,6 +22770,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22643
22770
|
hole_height: number;
|
|
22644
22771
|
subcircuit_id?: string | undefined;
|
|
22645
22772
|
pcb_group_id?: string | undefined;
|
|
22773
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
22646
22774
|
soldermask_margin?: number | undefined;
|
|
22647
22775
|
}, {
|
|
22648
22776
|
x: string | number;
|
|
@@ -22654,6 +22782,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22654
22782
|
subcircuit_id?: string | undefined;
|
|
22655
22783
|
pcb_group_id?: string | undefined;
|
|
22656
22784
|
pcb_hole_id?: string | undefined;
|
|
22785
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
22657
22786
|
soldermask_margin?: number | undefined;
|
|
22658
22787
|
}>]>, z.ZodObject<{
|
|
22659
22788
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -22665,6 +22794,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22665
22794
|
hole_height: z.ZodNumber;
|
|
22666
22795
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22667
22796
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22797
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
22668
22798
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22669
22799
|
}, "strip", z.ZodTypeAny, {
|
|
22670
22800
|
x: number;
|
|
@@ -22676,6 +22806,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22676
22806
|
hole_height: number;
|
|
22677
22807
|
subcircuit_id?: string | undefined;
|
|
22678
22808
|
pcb_group_id?: string | undefined;
|
|
22809
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
22679
22810
|
soldermask_margin?: number | undefined;
|
|
22680
22811
|
}, {
|
|
22681
22812
|
x: string | number;
|
|
@@ -22687,6 +22818,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22687
22818
|
subcircuit_id?: string | undefined;
|
|
22688
22819
|
pcb_group_id?: string | undefined;
|
|
22689
22820
|
pcb_hole_id?: string | undefined;
|
|
22821
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
22690
22822
|
soldermask_margin?: number | undefined;
|
|
22691
22823
|
}>]>, z.ZodObject<{
|
|
22692
22824
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -22699,6 +22831,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22699
22831
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22700
22832
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22701
22833
|
ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22834
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
22702
22835
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22703
22836
|
}, "strip", z.ZodTypeAny, {
|
|
22704
22837
|
x: number;
|
|
@@ -22711,6 +22844,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22711
22844
|
ccw_rotation: number;
|
|
22712
22845
|
subcircuit_id?: string | undefined;
|
|
22713
22846
|
pcb_group_id?: string | undefined;
|
|
22847
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
22714
22848
|
soldermask_margin?: number | undefined;
|
|
22715
22849
|
}, {
|
|
22716
22850
|
x: string | number;
|
|
@@ -22723,6 +22857,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22723
22857
|
subcircuit_id?: string | undefined;
|
|
22724
22858
|
pcb_group_id?: string | undefined;
|
|
22725
22859
|
pcb_hole_id?: string | undefined;
|
|
22860
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
22726
22861
|
soldermask_margin?: number | undefined;
|
|
22727
22862
|
}>]>, z.ZodObject<{
|
|
22728
22863
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -22733,6 +22868,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22733
22868
|
hole_diameter: z.ZodNumber;
|
|
22734
22869
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22735
22870
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22871
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
22736
22872
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22737
22873
|
}, "strip", z.ZodTypeAny, {
|
|
22738
22874
|
x: number;
|
|
@@ -22743,6 +22879,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22743
22879
|
hole_diameter: number;
|
|
22744
22880
|
subcircuit_id?: string | undefined;
|
|
22745
22881
|
pcb_group_id?: string | undefined;
|
|
22882
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
22746
22883
|
soldermask_margin?: number | undefined;
|
|
22747
22884
|
}, {
|
|
22748
22885
|
x: string | number;
|
|
@@ -22753,6 +22890,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22753
22890
|
subcircuit_id?: string | undefined;
|
|
22754
22891
|
pcb_group_id?: string | undefined;
|
|
22755
22892
|
pcb_hole_id?: string | undefined;
|
|
22893
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
22756
22894
|
soldermask_margin?: number | undefined;
|
|
22757
22895
|
}>]>, z.ZodObject<{
|
|
22758
22896
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -22764,6 +22902,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22764
22902
|
hole_height: z.ZodNumber;
|
|
22765
22903
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22766
22904
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22905
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
22767
22906
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22768
22907
|
}, "strip", z.ZodTypeAny, {
|
|
22769
22908
|
x: number;
|
|
@@ -22775,6 +22914,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22775
22914
|
hole_height: number;
|
|
22776
22915
|
subcircuit_id?: string | undefined;
|
|
22777
22916
|
pcb_group_id?: string | undefined;
|
|
22917
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
22778
22918
|
soldermask_margin?: number | undefined;
|
|
22779
22919
|
}, {
|
|
22780
22920
|
x: string | number;
|
|
@@ -22786,6 +22926,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22786
22926
|
subcircuit_id?: string | undefined;
|
|
22787
22927
|
pcb_group_id?: string | undefined;
|
|
22788
22928
|
pcb_hole_id?: string | undefined;
|
|
22929
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
22789
22930
|
soldermask_margin?: number | undefined;
|
|
22790
22931
|
}>]>, z.ZodObject<{
|
|
22791
22932
|
type: z.ZodLiteral<"pcb_missing_footprint_error">;
|
|
@@ -22962,6 +23103,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22962
23103
|
outer_height: z.ZodNumber;
|
|
22963
23104
|
hole_width: z.ZodNumber;
|
|
22964
23105
|
hole_height: z.ZodNumber;
|
|
23106
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
22965
23107
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22966
23108
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22967
23109
|
ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -22994,6 +23136,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22994
23136
|
pcb_component_id?: string | undefined;
|
|
22995
23137
|
subcircuit_id?: string | undefined;
|
|
22996
23138
|
pcb_group_id?: string | undefined;
|
|
23139
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
22997
23140
|
soldermask_margin?: number | undefined;
|
|
22998
23141
|
port_hints?: string[] | undefined;
|
|
22999
23142
|
pcb_port_id?: string | undefined;
|
|
@@ -23013,6 +23156,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23013
23156
|
pcb_component_id?: string | undefined;
|
|
23014
23157
|
subcircuit_id?: string | undefined;
|
|
23015
23158
|
pcb_group_id?: string | undefined;
|
|
23159
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23016
23160
|
soldermask_margin?: number | undefined;
|
|
23017
23161
|
port_hints?: string[] | undefined;
|
|
23018
23162
|
pcb_port_id?: string | undefined;
|
|
@@ -23030,6 +23174,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23030
23174
|
rect_border_radius: z.ZodOptional<z.ZodNumber>;
|
|
23031
23175
|
hole_offset_x: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23032
23176
|
hole_offset_y: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23177
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
23033
23178
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23034
23179
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23035
23180
|
layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -23063,6 +23208,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23063
23208
|
pcb_component_id?: string | undefined;
|
|
23064
23209
|
subcircuit_id?: string | undefined;
|
|
23065
23210
|
pcb_group_id?: string | undefined;
|
|
23211
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23066
23212
|
soldermask_margin?: number | undefined;
|
|
23067
23213
|
port_hints?: string[] | undefined;
|
|
23068
23214
|
pcb_port_id?: string | undefined;
|
|
@@ -23083,6 +23229,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23083
23229
|
pcb_component_id?: string | undefined;
|
|
23084
23230
|
subcircuit_id?: string | undefined;
|
|
23085
23231
|
pcb_group_id?: string | undefined;
|
|
23232
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23086
23233
|
soldermask_margin?: number | undefined;
|
|
23087
23234
|
port_hints?: string[] | undefined;
|
|
23088
23235
|
pcb_port_id?: string | undefined;
|
|
@@ -23104,6 +23251,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23104
23251
|
rect_border_radius: z.ZodOptional<z.ZodNumber>;
|
|
23105
23252
|
hole_offset_x: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23106
23253
|
hole_offset_y: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23254
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
23107
23255
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23108
23256
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23109
23257
|
layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -23138,6 +23286,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23138
23286
|
pcb_component_id?: string | undefined;
|
|
23139
23287
|
subcircuit_id?: string | undefined;
|
|
23140
23288
|
pcb_group_id?: string | undefined;
|
|
23289
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23141
23290
|
soldermask_margin?: number | undefined;
|
|
23142
23291
|
port_hints?: string[] | undefined;
|
|
23143
23292
|
pcb_port_id?: string | undefined;
|
|
@@ -23159,6 +23308,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23159
23308
|
pcb_component_id?: string | undefined;
|
|
23160
23309
|
subcircuit_id?: string | undefined;
|
|
23161
23310
|
pcb_group_id?: string | undefined;
|
|
23311
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23162
23312
|
soldermask_margin?: number | undefined;
|
|
23163
23313
|
port_hints?: string[] | undefined;
|
|
23164
23314
|
pcb_port_id?: string | undefined;
|
|
@@ -23182,6 +23332,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23182
23332
|
rect_ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23183
23333
|
hole_offset_x: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23184
23334
|
hole_offset_y: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23335
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
23185
23336
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23186
23337
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23187
23338
|
layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -23218,6 +23369,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23218
23369
|
pcb_component_id?: string | undefined;
|
|
23219
23370
|
subcircuit_id?: string | undefined;
|
|
23220
23371
|
pcb_group_id?: string | undefined;
|
|
23372
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23221
23373
|
soldermask_margin?: number | undefined;
|
|
23222
23374
|
port_hints?: string[] | undefined;
|
|
23223
23375
|
pcb_port_id?: string | undefined;
|
|
@@ -23241,6 +23393,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23241
23393
|
pcb_component_id?: string | undefined;
|
|
23242
23394
|
subcircuit_id?: string | undefined;
|
|
23243
23395
|
pcb_group_id?: string | undefined;
|
|
23396
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23244
23397
|
soldermask_margin?: number | undefined;
|
|
23245
23398
|
port_hints?: string[] | undefined;
|
|
23246
23399
|
pcb_port_id?: string | undefined;
|
|
@@ -23269,6 +23422,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23269
23422
|
}>, "many">;
|
|
23270
23423
|
hole_offset_x: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23271
23424
|
hole_offset_y: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23425
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
23272
23426
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23273
23427
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23274
23428
|
layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -23303,6 +23457,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23303
23457
|
subcircuit_id?: string | undefined;
|
|
23304
23458
|
pcb_group_id?: string | undefined;
|
|
23305
23459
|
hole_diameter?: number | undefined;
|
|
23460
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23306
23461
|
soldermask_margin?: number | undefined;
|
|
23307
23462
|
hole_width?: number | undefined;
|
|
23308
23463
|
hole_height?: number | undefined;
|
|
@@ -23325,6 +23480,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23325
23480
|
subcircuit_id?: string | undefined;
|
|
23326
23481
|
pcb_group_id?: string | undefined;
|
|
23327
23482
|
hole_diameter?: number | undefined;
|
|
23483
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23328
23484
|
soldermask_margin?: number | undefined;
|
|
23329
23485
|
hole_width?: number | undefined;
|
|
23330
23486
|
hole_height?: number | undefined;
|
|
@@ -23788,10 +23944,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23788
23944
|
pcb_component_id?: string | undefined;
|
|
23789
23945
|
subcircuit_id?: string | undefined;
|
|
23790
23946
|
pcb_group_id?: string | undefined;
|
|
23947
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23791
23948
|
soldermask_margin?: number | undefined;
|
|
23792
23949
|
port_hints?: string[] | undefined;
|
|
23793
23950
|
pcb_port_id?: string | undefined;
|
|
23794
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
23795
23951
|
}, {
|
|
23796
23952
|
x: string | number;
|
|
23797
23953
|
y: string | number;
|
|
@@ -23804,11 +23960,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23804
23960
|
pcb_component_id?: string | undefined;
|
|
23805
23961
|
subcircuit_id?: string | undefined;
|
|
23806
23962
|
pcb_group_id?: string | undefined;
|
|
23963
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23807
23964
|
soldermask_margin?: number | undefined;
|
|
23808
23965
|
port_hints?: string[] | undefined;
|
|
23809
23966
|
pcb_port_id?: string | undefined;
|
|
23810
23967
|
pcb_smtpad_id?: string | undefined;
|
|
23811
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
23812
23968
|
}>, z.ZodObject<{
|
|
23813
23969
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
23814
23970
|
shape: z.ZodLiteral<"rect">;
|
|
@@ -23847,11 +24003,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23847
24003
|
pcb_component_id?: string | undefined;
|
|
23848
24004
|
subcircuit_id?: string | undefined;
|
|
23849
24005
|
pcb_group_id?: string | undefined;
|
|
24006
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23850
24007
|
soldermask_margin?: number | undefined;
|
|
23851
24008
|
port_hints?: string[] | undefined;
|
|
23852
24009
|
pcb_port_id?: string | undefined;
|
|
23853
24010
|
rect_border_radius?: number | undefined;
|
|
23854
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
23855
24011
|
corner_radius?: number | undefined;
|
|
23856
24012
|
}, {
|
|
23857
24013
|
x: string | number;
|
|
@@ -23866,12 +24022,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23866
24022
|
pcb_component_id?: string | undefined;
|
|
23867
24023
|
subcircuit_id?: string | undefined;
|
|
23868
24024
|
pcb_group_id?: string | undefined;
|
|
24025
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23869
24026
|
soldermask_margin?: number | undefined;
|
|
23870
24027
|
port_hints?: string[] | undefined;
|
|
23871
24028
|
pcb_port_id?: string | undefined;
|
|
23872
24029
|
rect_border_radius?: number | undefined;
|
|
23873
24030
|
pcb_smtpad_id?: string | undefined;
|
|
23874
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
23875
24031
|
corner_radius?: number | undefined;
|
|
23876
24032
|
}>, z.ZodObject<{
|
|
23877
24033
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
@@ -23913,11 +24069,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23913
24069
|
pcb_component_id?: string | undefined;
|
|
23914
24070
|
subcircuit_id?: string | undefined;
|
|
23915
24071
|
pcb_group_id?: string | undefined;
|
|
24072
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23916
24073
|
soldermask_margin?: number | undefined;
|
|
23917
24074
|
port_hints?: string[] | undefined;
|
|
23918
24075
|
pcb_port_id?: string | undefined;
|
|
23919
24076
|
rect_border_radius?: number | undefined;
|
|
23920
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
23921
24077
|
corner_radius?: number | undefined;
|
|
23922
24078
|
}, {
|
|
23923
24079
|
x: string | number;
|
|
@@ -23933,12 +24089,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23933
24089
|
pcb_component_id?: string | undefined;
|
|
23934
24090
|
subcircuit_id?: string | undefined;
|
|
23935
24091
|
pcb_group_id?: string | undefined;
|
|
24092
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23936
24093
|
soldermask_margin?: number | undefined;
|
|
23937
24094
|
port_hints?: string[] | undefined;
|
|
23938
24095
|
pcb_port_id?: string | undefined;
|
|
23939
24096
|
rect_border_radius?: number | undefined;
|
|
23940
24097
|
pcb_smtpad_id?: string | undefined;
|
|
23941
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
23942
24098
|
corner_radius?: number | undefined;
|
|
23943
24099
|
}>, z.ZodObject<{
|
|
23944
24100
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
@@ -23980,10 +24136,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23980
24136
|
pcb_component_id?: string | undefined;
|
|
23981
24137
|
subcircuit_id?: string | undefined;
|
|
23982
24138
|
pcb_group_id?: string | undefined;
|
|
24139
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23983
24140
|
soldermask_margin?: number | undefined;
|
|
23984
24141
|
port_hints?: string[] | undefined;
|
|
23985
24142
|
pcb_port_id?: string | undefined;
|
|
23986
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
23987
24143
|
}, {
|
|
23988
24144
|
x: string | number;
|
|
23989
24145
|
y: string | number;
|
|
@@ -23999,11 +24155,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23999
24155
|
pcb_component_id?: string | undefined;
|
|
24000
24156
|
subcircuit_id?: string | undefined;
|
|
24001
24157
|
pcb_group_id?: string | undefined;
|
|
24158
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
24002
24159
|
soldermask_margin?: number | undefined;
|
|
24003
24160
|
port_hints?: string[] | undefined;
|
|
24004
24161
|
pcb_port_id?: string | undefined;
|
|
24005
24162
|
pcb_smtpad_id?: string | undefined;
|
|
24006
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
24007
24163
|
}>, z.ZodObject<{
|
|
24008
24164
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
24009
24165
|
shape: z.ZodLiteral<"pill">;
|
|
@@ -24042,10 +24198,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
24042
24198
|
pcb_component_id?: string | undefined;
|
|
24043
24199
|
subcircuit_id?: string | undefined;
|
|
24044
24200
|
pcb_group_id?: string | undefined;
|
|
24201
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
24045
24202
|
soldermask_margin?: number | undefined;
|
|
24046
24203
|
port_hints?: string[] | undefined;
|
|
24047
24204
|
pcb_port_id?: string | undefined;
|
|
24048
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
24049
24205
|
}, {
|
|
24050
24206
|
x: string | number;
|
|
24051
24207
|
y: string | number;
|
|
@@ -24060,11 +24216,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
24060
24216
|
pcb_component_id?: string | undefined;
|
|
24061
24217
|
subcircuit_id?: string | undefined;
|
|
24062
24218
|
pcb_group_id?: string | undefined;
|
|
24219
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
24063
24220
|
soldermask_margin?: number | undefined;
|
|
24064
24221
|
port_hints?: string[] | undefined;
|
|
24065
24222
|
pcb_port_id?: string | undefined;
|
|
24066
24223
|
pcb_smtpad_id?: string | undefined;
|
|
24067
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
24068
24224
|
}>, z.ZodObject<{
|
|
24069
24225
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
24070
24226
|
shape: z.ZodLiteral<"polygon">;
|
|
@@ -24107,10 +24263,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
24107
24263
|
pcb_component_id?: string | undefined;
|
|
24108
24264
|
subcircuit_id?: string | undefined;
|
|
24109
24265
|
pcb_group_id?: string | undefined;
|
|
24266
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
24110
24267
|
soldermask_margin?: number | undefined;
|
|
24111
24268
|
port_hints?: string[] | undefined;
|
|
24112
24269
|
pcb_port_id?: string | undefined;
|
|
24113
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
24114
24270
|
}, {
|
|
24115
24271
|
type: "pcb_smtpad";
|
|
24116
24272
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -24124,11 +24280,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
24124
24280
|
pcb_component_id?: string | undefined;
|
|
24125
24281
|
subcircuit_id?: string | undefined;
|
|
24126
24282
|
pcb_group_id?: string | undefined;
|
|
24283
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
24127
24284
|
soldermask_margin?: number | undefined;
|
|
24128
24285
|
port_hints?: string[] | undefined;
|
|
24129
24286
|
pcb_port_id?: string | undefined;
|
|
24130
24287
|
pcb_smtpad_id?: string | undefined;
|
|
24131
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
24132
24288
|
}>]>, z.ZodUnion<[z.ZodObject<{
|
|
24133
24289
|
type: z.ZodLiteral<"pcb_solder_paste">;
|
|
24134
24290
|
shape: z.ZodLiteral<"circle">;
|
|
@@ -25969,6 +26125,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
25969
26125
|
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
25970
26126
|
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
25971
26127
|
rotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
26128
|
+
corner_radius: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25972
26129
|
}, "strip", z.ZodTypeAny, {
|
|
25973
26130
|
type: "pcb_cutout";
|
|
25974
26131
|
width: number;
|
|
@@ -25982,6 +26139,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
25982
26139
|
rotation?: number | undefined;
|
|
25983
26140
|
subcircuit_id?: string | undefined;
|
|
25984
26141
|
pcb_group_id?: string | undefined;
|
|
26142
|
+
corner_radius?: number | undefined;
|
|
25985
26143
|
pcb_board_id?: string | undefined;
|
|
25986
26144
|
pcb_panel_id?: string | undefined;
|
|
25987
26145
|
}, {
|
|
@@ -25996,6 +26154,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
25996
26154
|
rotation?: string | number | undefined;
|
|
25997
26155
|
subcircuit_id?: string | undefined;
|
|
25998
26156
|
pcb_group_id?: string | undefined;
|
|
26157
|
+
corner_radius?: string | number | undefined;
|
|
25999
26158
|
pcb_board_id?: string | undefined;
|
|
26000
26159
|
pcb_panel_id?: string | undefined;
|
|
26001
26160
|
pcb_cutout_id?: string | undefined;
|