circuit-json 0.0.315 → 0.0.316
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 +219 -0
- package/dist/index.mjs +36 -18
- 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
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
485
486
|
}, "strip", z.ZodTypeAny, {
|
|
486
487
|
x: number;
|
|
487
488
|
y: number;
|
|
@@ -491,6 +492,7 @@ declare const pcb_hole_circle: z.ZodObject<{
|
|
|
491
492
|
hole_diameter: number;
|
|
492
493
|
subcircuit_id?: string | undefined;
|
|
493
494
|
pcb_group_id?: string | undefined;
|
|
495
|
+
soldermask_margin?: number | undefined;
|
|
494
496
|
}, {
|
|
495
497
|
x: string | number;
|
|
496
498
|
y: string | number;
|
|
@@ -500,6 +502,7 @@ declare const pcb_hole_circle: z.ZodObject<{
|
|
|
500
502
|
subcircuit_id?: string | undefined;
|
|
501
503
|
pcb_group_id?: string | undefined;
|
|
502
504
|
pcb_hole_id?: string | undefined;
|
|
505
|
+
soldermask_margin?: number | undefined;
|
|
503
506
|
}>;
|
|
504
507
|
declare const pcb_hole_circle_shape: z.ZodObject<{
|
|
505
508
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -510,6 +513,7 @@ declare const pcb_hole_circle_shape: z.ZodObject<{
|
|
|
510
513
|
hole_diameter: z.ZodNumber;
|
|
511
514
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
512
515
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
516
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
513
517
|
}, "strip", z.ZodTypeAny, {
|
|
514
518
|
x: number;
|
|
515
519
|
y: number;
|
|
@@ -519,6 +523,7 @@ declare const pcb_hole_circle_shape: z.ZodObject<{
|
|
|
519
523
|
hole_diameter: number;
|
|
520
524
|
subcircuit_id?: string | undefined;
|
|
521
525
|
pcb_group_id?: string | undefined;
|
|
526
|
+
soldermask_margin?: number | undefined;
|
|
522
527
|
}, {
|
|
523
528
|
x: string | number;
|
|
524
529
|
y: string | number;
|
|
@@ -528,6 +533,7 @@ declare const pcb_hole_circle_shape: z.ZodObject<{
|
|
|
528
533
|
subcircuit_id?: string | undefined;
|
|
529
534
|
pcb_group_id?: string | undefined;
|
|
530
535
|
pcb_hole_id?: string | undefined;
|
|
536
|
+
soldermask_margin?: number | undefined;
|
|
531
537
|
}>;
|
|
532
538
|
type PcbHoleCircleInput = z.input<typeof pcb_hole_circle>;
|
|
533
539
|
/**
|
|
@@ -542,6 +548,7 @@ interface PcbHoleCircle {
|
|
|
542
548
|
hole_diameter: number;
|
|
543
549
|
x: Distance;
|
|
544
550
|
y: Distance;
|
|
551
|
+
soldermask_margin?: number;
|
|
545
552
|
}
|
|
546
553
|
declare const pcb_hole_rect: z.ZodObject<{
|
|
547
554
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -553,6 +560,7 @@ declare const pcb_hole_rect: z.ZodObject<{
|
|
|
553
560
|
hole_height: z.ZodNumber;
|
|
554
561
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
555
562
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
563
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
556
564
|
}, "strip", z.ZodTypeAny, {
|
|
557
565
|
x: number;
|
|
558
566
|
y: number;
|
|
@@ -563,6 +571,7 @@ declare const pcb_hole_rect: z.ZodObject<{
|
|
|
563
571
|
hole_height: number;
|
|
564
572
|
subcircuit_id?: string | undefined;
|
|
565
573
|
pcb_group_id?: string | undefined;
|
|
574
|
+
soldermask_margin?: number | undefined;
|
|
566
575
|
}, {
|
|
567
576
|
x: string | number;
|
|
568
577
|
y: string | number;
|
|
@@ -573,6 +582,7 @@ declare const pcb_hole_rect: z.ZodObject<{
|
|
|
573
582
|
subcircuit_id?: string | undefined;
|
|
574
583
|
pcb_group_id?: string | undefined;
|
|
575
584
|
pcb_hole_id?: string | undefined;
|
|
585
|
+
soldermask_margin?: number | undefined;
|
|
576
586
|
}>;
|
|
577
587
|
declare const pcb_hole_rect_shape: z.ZodObject<{
|
|
578
588
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -584,6 +594,7 @@ declare const pcb_hole_rect_shape: z.ZodObject<{
|
|
|
584
594
|
hole_height: z.ZodNumber;
|
|
585
595
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
586
596
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
597
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
587
598
|
}, "strip", z.ZodTypeAny, {
|
|
588
599
|
x: number;
|
|
589
600
|
y: number;
|
|
@@ -594,6 +605,7 @@ declare const pcb_hole_rect_shape: z.ZodObject<{
|
|
|
594
605
|
hole_height: number;
|
|
595
606
|
subcircuit_id?: string | undefined;
|
|
596
607
|
pcb_group_id?: string | undefined;
|
|
608
|
+
soldermask_margin?: number | undefined;
|
|
597
609
|
}, {
|
|
598
610
|
x: string | number;
|
|
599
611
|
y: string | number;
|
|
@@ -604,6 +616,7 @@ declare const pcb_hole_rect_shape: z.ZodObject<{
|
|
|
604
616
|
subcircuit_id?: string | undefined;
|
|
605
617
|
pcb_group_id?: string | undefined;
|
|
606
618
|
pcb_hole_id?: string | undefined;
|
|
619
|
+
soldermask_margin?: number | undefined;
|
|
607
620
|
}>;
|
|
608
621
|
type PcbHoleRectInput = z.input<typeof pcb_hole_rect>;
|
|
609
622
|
/**
|
|
@@ -619,6 +632,7 @@ interface PcbHoleRect {
|
|
|
619
632
|
hole_height: number;
|
|
620
633
|
x: Distance;
|
|
621
634
|
y: Distance;
|
|
635
|
+
soldermask_margin?: number;
|
|
622
636
|
}
|
|
623
637
|
declare const pcb_hole_circle_or_square: z.ZodObject<{
|
|
624
638
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -629,6 +643,7 @@ declare const pcb_hole_circle_or_square: z.ZodObject<{
|
|
|
629
643
|
hole_diameter: z.ZodNumber;
|
|
630
644
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
631
645
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
646
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
632
647
|
}, "strip", z.ZodTypeAny, {
|
|
633
648
|
x: number;
|
|
634
649
|
y: number;
|
|
@@ -638,6 +653,7 @@ declare const pcb_hole_circle_or_square: z.ZodObject<{
|
|
|
638
653
|
hole_diameter: number;
|
|
639
654
|
subcircuit_id?: string | undefined;
|
|
640
655
|
pcb_group_id?: string | undefined;
|
|
656
|
+
soldermask_margin?: number | undefined;
|
|
641
657
|
}, {
|
|
642
658
|
x: string | number;
|
|
643
659
|
y: string | number;
|
|
@@ -647,6 +663,7 @@ declare const pcb_hole_circle_or_square: z.ZodObject<{
|
|
|
647
663
|
subcircuit_id?: string | undefined;
|
|
648
664
|
pcb_group_id?: string | undefined;
|
|
649
665
|
pcb_hole_id?: string | undefined;
|
|
666
|
+
soldermask_margin?: number | undefined;
|
|
650
667
|
}>;
|
|
651
668
|
declare const pcb_hole_circle_or_square_shape: z.ZodObject<{
|
|
652
669
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -657,6 +674,7 @@ declare const pcb_hole_circle_or_square_shape: z.ZodObject<{
|
|
|
657
674
|
hole_diameter: z.ZodNumber;
|
|
658
675
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
659
676
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
677
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
660
678
|
}, "strip", z.ZodTypeAny, {
|
|
661
679
|
x: number;
|
|
662
680
|
y: number;
|
|
@@ -666,6 +684,7 @@ declare const pcb_hole_circle_or_square_shape: z.ZodObject<{
|
|
|
666
684
|
hole_diameter: number;
|
|
667
685
|
subcircuit_id?: string | undefined;
|
|
668
686
|
pcb_group_id?: string | undefined;
|
|
687
|
+
soldermask_margin?: number | undefined;
|
|
669
688
|
}, {
|
|
670
689
|
x: string | number;
|
|
671
690
|
y: string | number;
|
|
@@ -675,6 +694,7 @@ declare const pcb_hole_circle_or_square_shape: z.ZodObject<{
|
|
|
675
694
|
subcircuit_id?: string | undefined;
|
|
676
695
|
pcb_group_id?: string | undefined;
|
|
677
696
|
pcb_hole_id?: string | undefined;
|
|
697
|
+
soldermask_margin?: number | undefined;
|
|
678
698
|
}>;
|
|
679
699
|
type PcbHoleCircleOrSquareInput = z.input<typeof pcb_hole_circle_or_square>;
|
|
680
700
|
/**
|
|
@@ -692,6 +712,7 @@ interface PcbHoleCircleOrSquare {
|
|
|
692
712
|
hole_diameter: number;
|
|
693
713
|
x: Distance;
|
|
694
714
|
y: Distance;
|
|
715
|
+
soldermask_margin?: number;
|
|
695
716
|
}
|
|
696
717
|
declare const pcb_hole_oval: z.ZodObject<{
|
|
697
718
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -703,6 +724,7 @@ declare const pcb_hole_oval: z.ZodObject<{
|
|
|
703
724
|
hole_height: z.ZodNumber;
|
|
704
725
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
705
726
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
727
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
706
728
|
}, "strip", z.ZodTypeAny, {
|
|
707
729
|
x: number;
|
|
708
730
|
y: number;
|
|
@@ -713,6 +735,7 @@ declare const pcb_hole_oval: z.ZodObject<{
|
|
|
713
735
|
hole_height: number;
|
|
714
736
|
subcircuit_id?: string | undefined;
|
|
715
737
|
pcb_group_id?: string | undefined;
|
|
738
|
+
soldermask_margin?: number | undefined;
|
|
716
739
|
}, {
|
|
717
740
|
x: string | number;
|
|
718
741
|
y: string | number;
|
|
@@ -723,6 +746,7 @@ declare const pcb_hole_oval: z.ZodObject<{
|
|
|
723
746
|
subcircuit_id?: string | undefined;
|
|
724
747
|
pcb_group_id?: string | undefined;
|
|
725
748
|
pcb_hole_id?: string | undefined;
|
|
749
|
+
soldermask_margin?: number | undefined;
|
|
726
750
|
}>;
|
|
727
751
|
declare const pcb_hole_oval_shape: z.ZodObject<{
|
|
728
752
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -734,6 +758,7 @@ declare const pcb_hole_oval_shape: z.ZodObject<{
|
|
|
734
758
|
hole_height: z.ZodNumber;
|
|
735
759
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
736
760
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
761
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
737
762
|
}, "strip", z.ZodTypeAny, {
|
|
738
763
|
x: number;
|
|
739
764
|
y: number;
|
|
@@ -744,6 +769,7 @@ declare const pcb_hole_oval_shape: z.ZodObject<{
|
|
|
744
769
|
hole_height: number;
|
|
745
770
|
subcircuit_id?: string | undefined;
|
|
746
771
|
pcb_group_id?: string | undefined;
|
|
772
|
+
soldermask_margin?: number | undefined;
|
|
747
773
|
}, {
|
|
748
774
|
x: string | number;
|
|
749
775
|
y: string | number;
|
|
@@ -754,6 +780,7 @@ declare const pcb_hole_oval_shape: z.ZodObject<{
|
|
|
754
780
|
subcircuit_id?: string | undefined;
|
|
755
781
|
pcb_group_id?: string | undefined;
|
|
756
782
|
pcb_hole_id?: string | undefined;
|
|
783
|
+
soldermask_margin?: number | undefined;
|
|
757
784
|
}>;
|
|
758
785
|
type PcbHoleOvalInput = z.input<typeof pcb_hole_oval>;
|
|
759
786
|
/**
|
|
@@ -769,6 +796,7 @@ interface PcbHoleOval {
|
|
|
769
796
|
hole_height: number;
|
|
770
797
|
x: Distance;
|
|
771
798
|
y: Distance;
|
|
799
|
+
soldermask_margin?: number;
|
|
772
800
|
}
|
|
773
801
|
declare const pcb_hole_pill: z.ZodObject<{
|
|
774
802
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -780,6 +808,7 @@ declare const pcb_hole_pill: z.ZodObject<{
|
|
|
780
808
|
hole_height: z.ZodNumber;
|
|
781
809
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
782
810
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
811
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
783
812
|
}, "strip", z.ZodTypeAny, {
|
|
784
813
|
x: number;
|
|
785
814
|
y: number;
|
|
@@ -790,6 +819,7 @@ declare const pcb_hole_pill: z.ZodObject<{
|
|
|
790
819
|
hole_height: number;
|
|
791
820
|
subcircuit_id?: string | undefined;
|
|
792
821
|
pcb_group_id?: string | undefined;
|
|
822
|
+
soldermask_margin?: number | undefined;
|
|
793
823
|
}, {
|
|
794
824
|
x: string | number;
|
|
795
825
|
y: string | number;
|
|
@@ -800,6 +830,7 @@ declare const pcb_hole_pill: z.ZodObject<{
|
|
|
800
830
|
subcircuit_id?: string | undefined;
|
|
801
831
|
pcb_group_id?: string | undefined;
|
|
802
832
|
pcb_hole_id?: string | undefined;
|
|
833
|
+
soldermask_margin?: number | undefined;
|
|
803
834
|
}>;
|
|
804
835
|
declare const pcb_hole_pill_shape: z.ZodObject<{
|
|
805
836
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -811,6 +842,7 @@ declare const pcb_hole_pill_shape: z.ZodObject<{
|
|
|
811
842
|
hole_height: z.ZodNumber;
|
|
812
843
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
813
844
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
845
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
814
846
|
}, "strip", z.ZodTypeAny, {
|
|
815
847
|
x: number;
|
|
816
848
|
y: number;
|
|
@@ -821,6 +853,7 @@ declare const pcb_hole_pill_shape: z.ZodObject<{
|
|
|
821
853
|
hole_height: number;
|
|
822
854
|
subcircuit_id?: string | undefined;
|
|
823
855
|
pcb_group_id?: string | undefined;
|
|
856
|
+
soldermask_margin?: number | undefined;
|
|
824
857
|
}, {
|
|
825
858
|
x: string | number;
|
|
826
859
|
y: string | number;
|
|
@@ -831,6 +864,7 @@ declare const pcb_hole_pill_shape: z.ZodObject<{
|
|
|
831
864
|
subcircuit_id?: string | undefined;
|
|
832
865
|
pcb_group_id?: string | undefined;
|
|
833
866
|
pcb_hole_id?: string | undefined;
|
|
867
|
+
soldermask_margin?: number | undefined;
|
|
834
868
|
}>;
|
|
835
869
|
type PcbHolePillInput = z.input<typeof pcb_hole_pill>;
|
|
836
870
|
/**
|
|
@@ -846,6 +880,7 @@ interface PcbHolePill {
|
|
|
846
880
|
hole_height: number;
|
|
847
881
|
x: Distance;
|
|
848
882
|
y: Distance;
|
|
883
|
+
soldermask_margin?: number;
|
|
849
884
|
}
|
|
850
885
|
declare const pcb_hole_rotated_pill: z.ZodObject<{
|
|
851
886
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -858,6 +893,7 @@ declare const pcb_hole_rotated_pill: z.ZodObject<{
|
|
|
858
893
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
859
894
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
860
895
|
ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
896
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
861
897
|
}, "strip", z.ZodTypeAny, {
|
|
862
898
|
x: number;
|
|
863
899
|
y: number;
|
|
@@ -869,6 +905,7 @@ declare const pcb_hole_rotated_pill: z.ZodObject<{
|
|
|
869
905
|
ccw_rotation: number;
|
|
870
906
|
subcircuit_id?: string | undefined;
|
|
871
907
|
pcb_group_id?: string | undefined;
|
|
908
|
+
soldermask_margin?: number | undefined;
|
|
872
909
|
}, {
|
|
873
910
|
x: string | number;
|
|
874
911
|
y: string | number;
|
|
@@ -880,6 +917,7 @@ declare const pcb_hole_rotated_pill: z.ZodObject<{
|
|
|
880
917
|
subcircuit_id?: string | undefined;
|
|
881
918
|
pcb_group_id?: string | undefined;
|
|
882
919
|
pcb_hole_id?: string | undefined;
|
|
920
|
+
soldermask_margin?: number | undefined;
|
|
883
921
|
}>;
|
|
884
922
|
declare const pcb_hole_rotated_pill_shape: z.ZodObject<{
|
|
885
923
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -892,6 +930,7 @@ declare const pcb_hole_rotated_pill_shape: z.ZodObject<{
|
|
|
892
930
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
893
931
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
894
932
|
ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
933
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
895
934
|
}, "strip", z.ZodTypeAny, {
|
|
896
935
|
x: number;
|
|
897
936
|
y: number;
|
|
@@ -903,6 +942,7 @@ declare const pcb_hole_rotated_pill_shape: z.ZodObject<{
|
|
|
903
942
|
ccw_rotation: number;
|
|
904
943
|
subcircuit_id?: string | undefined;
|
|
905
944
|
pcb_group_id?: string | undefined;
|
|
945
|
+
soldermask_margin?: number | undefined;
|
|
906
946
|
}, {
|
|
907
947
|
x: string | number;
|
|
908
948
|
y: string | number;
|
|
@@ -914,6 +954,7 @@ declare const pcb_hole_rotated_pill_shape: z.ZodObject<{
|
|
|
914
954
|
subcircuit_id?: string | undefined;
|
|
915
955
|
pcb_group_id?: string | undefined;
|
|
916
956
|
pcb_hole_id?: string | undefined;
|
|
957
|
+
soldermask_margin?: number | undefined;
|
|
917
958
|
}>;
|
|
918
959
|
type PcbHoleRotatedPillInput = z.input<typeof pcb_hole_rotated_pill>;
|
|
919
960
|
/**
|
|
@@ -930,6 +971,7 @@ interface PcbHoleRotatedPill {
|
|
|
930
971
|
x: Distance;
|
|
931
972
|
y: Distance;
|
|
932
973
|
ccw_rotation: Rotation;
|
|
974
|
+
soldermask_margin?: number;
|
|
933
975
|
}
|
|
934
976
|
declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
935
977
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -940,6 +982,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
940
982
|
hole_diameter: z.ZodNumber;
|
|
941
983
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
942
984
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
985
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
943
986
|
}, "strip", z.ZodTypeAny, {
|
|
944
987
|
x: number;
|
|
945
988
|
y: number;
|
|
@@ -949,6 +992,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
949
992
|
hole_diameter: number;
|
|
950
993
|
subcircuit_id?: string | undefined;
|
|
951
994
|
pcb_group_id?: string | undefined;
|
|
995
|
+
soldermask_margin?: number | undefined;
|
|
952
996
|
}, {
|
|
953
997
|
x: string | number;
|
|
954
998
|
y: string | number;
|
|
@@ -958,6 +1002,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
958
1002
|
subcircuit_id?: string | undefined;
|
|
959
1003
|
pcb_group_id?: string | undefined;
|
|
960
1004
|
pcb_hole_id?: string | undefined;
|
|
1005
|
+
soldermask_margin?: number | undefined;
|
|
961
1006
|
}>, z.ZodObject<{
|
|
962
1007
|
type: z.ZodLiteral<"pcb_hole">;
|
|
963
1008
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -968,6 +1013,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
968
1013
|
hole_height: z.ZodNumber;
|
|
969
1014
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
970
1015
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1016
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
971
1017
|
}, "strip", z.ZodTypeAny, {
|
|
972
1018
|
x: number;
|
|
973
1019
|
y: number;
|
|
@@ -978,6 +1024,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
978
1024
|
hole_height: number;
|
|
979
1025
|
subcircuit_id?: string | undefined;
|
|
980
1026
|
pcb_group_id?: string | undefined;
|
|
1027
|
+
soldermask_margin?: number | undefined;
|
|
981
1028
|
}, {
|
|
982
1029
|
x: string | number;
|
|
983
1030
|
y: string | number;
|
|
@@ -988,6 +1035,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
988
1035
|
subcircuit_id?: string | undefined;
|
|
989
1036
|
pcb_group_id?: string | undefined;
|
|
990
1037
|
pcb_hole_id?: string | undefined;
|
|
1038
|
+
soldermask_margin?: number | undefined;
|
|
991
1039
|
}>]>, z.ZodObject<{
|
|
992
1040
|
type: z.ZodLiteral<"pcb_hole">;
|
|
993
1041
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -998,6 +1046,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
998
1046
|
hole_height: z.ZodNumber;
|
|
999
1047
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1000
1048
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1049
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
1001
1050
|
}, "strip", z.ZodTypeAny, {
|
|
1002
1051
|
x: number;
|
|
1003
1052
|
y: number;
|
|
@@ -1008,6 +1057,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1008
1057
|
hole_height: number;
|
|
1009
1058
|
subcircuit_id?: string | undefined;
|
|
1010
1059
|
pcb_group_id?: string | undefined;
|
|
1060
|
+
soldermask_margin?: number | undefined;
|
|
1011
1061
|
}, {
|
|
1012
1062
|
x: string | number;
|
|
1013
1063
|
y: string | number;
|
|
@@ -1018,6 +1068,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1018
1068
|
subcircuit_id?: string | undefined;
|
|
1019
1069
|
pcb_group_id?: string | undefined;
|
|
1020
1070
|
pcb_hole_id?: string | undefined;
|
|
1071
|
+
soldermask_margin?: number | undefined;
|
|
1021
1072
|
}>]>, z.ZodObject<{
|
|
1022
1073
|
type: z.ZodLiteral<"pcb_hole">;
|
|
1023
1074
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -1029,6 +1080,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1029
1080
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1030
1081
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1031
1082
|
ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1083
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
1032
1084
|
}, "strip", z.ZodTypeAny, {
|
|
1033
1085
|
x: number;
|
|
1034
1086
|
y: number;
|
|
@@ -1040,6 +1092,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1040
1092
|
ccw_rotation: number;
|
|
1041
1093
|
subcircuit_id?: string | undefined;
|
|
1042
1094
|
pcb_group_id?: string | undefined;
|
|
1095
|
+
soldermask_margin?: number | undefined;
|
|
1043
1096
|
}, {
|
|
1044
1097
|
x: string | number;
|
|
1045
1098
|
y: string | number;
|
|
@@ -1051,6 +1104,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1051
1104
|
subcircuit_id?: string | undefined;
|
|
1052
1105
|
pcb_group_id?: string | undefined;
|
|
1053
1106
|
pcb_hole_id?: string | undefined;
|
|
1107
|
+
soldermask_margin?: number | undefined;
|
|
1054
1108
|
}>]>, z.ZodObject<{
|
|
1055
1109
|
type: z.ZodLiteral<"pcb_hole">;
|
|
1056
1110
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -1060,6 +1114,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1060
1114
|
hole_diameter: z.ZodNumber;
|
|
1061
1115
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1062
1116
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1117
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
1063
1118
|
}, "strip", z.ZodTypeAny, {
|
|
1064
1119
|
x: number;
|
|
1065
1120
|
y: number;
|
|
@@ -1069,6 +1124,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1069
1124
|
hole_diameter: number;
|
|
1070
1125
|
subcircuit_id?: string | undefined;
|
|
1071
1126
|
pcb_group_id?: string | undefined;
|
|
1127
|
+
soldermask_margin?: number | undefined;
|
|
1072
1128
|
}, {
|
|
1073
1129
|
x: string | number;
|
|
1074
1130
|
y: string | number;
|
|
@@ -1078,6 +1134,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1078
1134
|
subcircuit_id?: string | undefined;
|
|
1079
1135
|
pcb_group_id?: string | undefined;
|
|
1080
1136
|
pcb_hole_id?: string | undefined;
|
|
1137
|
+
soldermask_margin?: number | undefined;
|
|
1081
1138
|
}>]>, z.ZodObject<{
|
|
1082
1139
|
type: z.ZodLiteral<"pcb_hole">;
|
|
1083
1140
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -1088,6 +1145,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1088
1145
|
hole_height: z.ZodNumber;
|
|
1089
1146
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1090
1147
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1148
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
1091
1149
|
}, "strip", z.ZodTypeAny, {
|
|
1092
1150
|
x: number;
|
|
1093
1151
|
y: number;
|
|
@@ -1098,6 +1156,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1098
1156
|
hole_height: number;
|
|
1099
1157
|
subcircuit_id?: string | undefined;
|
|
1100
1158
|
pcb_group_id?: string | undefined;
|
|
1159
|
+
soldermask_margin?: number | undefined;
|
|
1101
1160
|
}, {
|
|
1102
1161
|
x: string | number;
|
|
1103
1162
|
y: string | number;
|
|
@@ -1108,6 +1167,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1108
1167
|
subcircuit_id?: string | undefined;
|
|
1109
1168
|
pcb_group_id?: string | undefined;
|
|
1110
1169
|
pcb_hole_id?: string | undefined;
|
|
1170
|
+
soldermask_margin?: number | undefined;
|
|
1111
1171
|
}>]>;
|
|
1112
1172
|
/**
|
|
1113
1173
|
* @deprecated Use PcbHoleCircleOrSquare, PcbHoleCircle, PcbHoleRect, PcbHoleOval, PcbHolePill, or PcbHoleRotatedPill
|
|
@@ -1136,6 +1196,7 @@ interface PcbPlatedHoleCircle {
|
|
|
1136
1196
|
pcb_component_id?: string;
|
|
1137
1197
|
pcb_port_id?: string;
|
|
1138
1198
|
pcb_plated_hole_id: string;
|
|
1199
|
+
soldermask_margin?: number;
|
|
1139
1200
|
}
|
|
1140
1201
|
/**
|
|
1141
1202
|
* Defines an oval or pill-shaped plated hole on the PCB
|
|
@@ -1157,6 +1218,7 @@ interface PcbPlatedHoleOval {
|
|
|
1157
1218
|
pcb_component_id?: string;
|
|
1158
1219
|
pcb_port_id?: string;
|
|
1159
1220
|
pcb_plated_hole_id: string;
|
|
1221
|
+
soldermask_margin?: number;
|
|
1160
1222
|
}
|
|
1161
1223
|
interface PcbHolePillWithRectPad {
|
|
1162
1224
|
type: "pcb_plated_hole";
|
|
@@ -1179,6 +1241,7 @@ interface PcbHolePillWithRectPad {
|
|
|
1179
1241
|
pcb_component_id?: string;
|
|
1180
1242
|
pcb_port_id?: string;
|
|
1181
1243
|
pcb_plated_hole_id: string;
|
|
1244
|
+
soldermask_margin?: number;
|
|
1182
1245
|
}
|
|
1183
1246
|
interface PcbHoleRotatedPillWithRectPad {
|
|
1184
1247
|
type: "pcb_plated_hole";
|
|
@@ -1203,6 +1266,7 @@ interface PcbHoleRotatedPillWithRectPad {
|
|
|
1203
1266
|
pcb_component_id?: string;
|
|
1204
1267
|
pcb_port_id?: string;
|
|
1205
1268
|
pcb_plated_hole_id: string;
|
|
1269
|
+
soldermask_margin?: number;
|
|
1206
1270
|
}
|
|
1207
1271
|
interface PcbHoleCircularWithRectPad {
|
|
1208
1272
|
type: "pcb_plated_hole";
|
|
@@ -1224,6 +1288,7 @@ interface PcbHoleCircularWithRectPad {
|
|
|
1224
1288
|
pcb_component_id?: string;
|
|
1225
1289
|
pcb_port_id?: string;
|
|
1226
1290
|
pcb_plated_hole_id: string;
|
|
1291
|
+
soldermask_margin?: number;
|
|
1227
1292
|
}
|
|
1228
1293
|
/**
|
|
1229
1294
|
* Defines a plated hole with a polygonal pad on the PCB
|
|
@@ -1250,6 +1315,7 @@ interface PcbHoleWithPolygonPad {
|
|
|
1250
1315
|
pcb_component_id?: string;
|
|
1251
1316
|
pcb_port_id?: string;
|
|
1252
1317
|
pcb_plated_hole_id: string;
|
|
1318
|
+
soldermask_margin?: number;
|
|
1253
1319
|
}
|
|
1254
1320
|
declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
1255
1321
|
type: z.ZodLiteral<"pcb_plated_hole">;
|
|
@@ -1273,6 +1339,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1273
1339
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
1274
1340
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
1275
1341
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1342
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
1276
1343
|
}, "strip", z.ZodTypeAny, {
|
|
1277
1344
|
x: number;
|
|
1278
1345
|
y: number;
|
|
@@ -1285,6 +1352,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1285
1352
|
pcb_component_id?: string | undefined;
|
|
1286
1353
|
subcircuit_id?: string | undefined;
|
|
1287
1354
|
pcb_group_id?: string | undefined;
|
|
1355
|
+
soldermask_margin?: number | undefined;
|
|
1288
1356
|
port_hints?: string[] | undefined;
|
|
1289
1357
|
pcb_port_id?: string | undefined;
|
|
1290
1358
|
}, {
|
|
@@ -1300,6 +1368,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1300
1368
|
pcb_component_id?: string | undefined;
|
|
1301
1369
|
subcircuit_id?: string | undefined;
|
|
1302
1370
|
pcb_group_id?: string | undefined;
|
|
1371
|
+
soldermask_margin?: number | undefined;
|
|
1303
1372
|
port_hints?: string[] | undefined;
|
|
1304
1373
|
pcb_port_id?: string | undefined;
|
|
1305
1374
|
pcb_plated_hole_id?: string | undefined;
|
|
@@ -1328,6 +1397,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1328
1397
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
1329
1398
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
1330
1399
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1400
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
1331
1401
|
}, "strip", z.ZodTypeAny, {
|
|
1332
1402
|
x: number;
|
|
1333
1403
|
y: number;
|
|
@@ -1343,6 +1413,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1343
1413
|
pcb_component_id?: string | undefined;
|
|
1344
1414
|
subcircuit_id?: string | undefined;
|
|
1345
1415
|
pcb_group_id?: string | undefined;
|
|
1416
|
+
soldermask_margin?: number | undefined;
|
|
1346
1417
|
port_hints?: string[] | undefined;
|
|
1347
1418
|
pcb_port_id?: string | undefined;
|
|
1348
1419
|
}, {
|
|
@@ -1361,6 +1432,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1361
1432
|
pcb_component_id?: string | undefined;
|
|
1362
1433
|
subcircuit_id?: string | undefined;
|
|
1363
1434
|
pcb_group_id?: string | undefined;
|
|
1435
|
+
soldermask_margin?: number | undefined;
|
|
1364
1436
|
port_hints?: string[] | undefined;
|
|
1365
1437
|
pcb_port_id?: string | undefined;
|
|
1366
1438
|
pcb_plated_hole_id?: string | undefined;
|
|
@@ -1392,6 +1464,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1392
1464
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
1393
1465
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
1394
1466
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1467
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
1395
1468
|
}, "strip", z.ZodTypeAny, {
|
|
1396
1469
|
x: number;
|
|
1397
1470
|
y: number;
|
|
@@ -1409,6 +1482,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1409
1482
|
pcb_component_id?: string | undefined;
|
|
1410
1483
|
subcircuit_id?: string | undefined;
|
|
1411
1484
|
pcb_group_id?: string | undefined;
|
|
1485
|
+
soldermask_margin?: number | undefined;
|
|
1412
1486
|
port_hints?: string[] | undefined;
|
|
1413
1487
|
pcb_port_id?: string | undefined;
|
|
1414
1488
|
rect_border_radius?: number | undefined;
|
|
@@ -1428,6 +1502,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1428
1502
|
pcb_component_id?: string | undefined;
|
|
1429
1503
|
subcircuit_id?: string | undefined;
|
|
1430
1504
|
pcb_group_id?: string | undefined;
|
|
1505
|
+
soldermask_margin?: number | undefined;
|
|
1431
1506
|
port_hints?: string[] | undefined;
|
|
1432
1507
|
pcb_port_id?: string | undefined;
|
|
1433
1508
|
pcb_plated_hole_id?: string | undefined;
|
|
@@ -1463,6 +1538,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1463
1538
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
1464
1539
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
1465
1540
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1541
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
1466
1542
|
}, "strip", z.ZodTypeAny, {
|
|
1467
1543
|
x: number;
|
|
1468
1544
|
y: number;
|
|
@@ -1481,6 +1557,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1481
1557
|
pcb_component_id?: string | undefined;
|
|
1482
1558
|
subcircuit_id?: string | undefined;
|
|
1483
1559
|
pcb_group_id?: string | undefined;
|
|
1560
|
+
soldermask_margin?: number | undefined;
|
|
1484
1561
|
port_hints?: string[] | undefined;
|
|
1485
1562
|
pcb_port_id?: string | undefined;
|
|
1486
1563
|
rect_border_radius?: number | undefined;
|
|
@@ -1501,6 +1578,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1501
1578
|
pcb_component_id?: string | undefined;
|
|
1502
1579
|
subcircuit_id?: string | undefined;
|
|
1503
1580
|
pcb_group_id?: string | undefined;
|
|
1581
|
+
soldermask_margin?: number | undefined;
|
|
1504
1582
|
port_hints?: string[] | undefined;
|
|
1505
1583
|
pcb_port_id?: string | undefined;
|
|
1506
1584
|
pcb_plated_hole_id?: string | undefined;
|
|
@@ -1538,6 +1616,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1538
1616
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
1539
1617
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
1540
1618
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1619
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
1541
1620
|
}, "strip", z.ZodTypeAny, {
|
|
1542
1621
|
x: number;
|
|
1543
1622
|
y: number;
|
|
@@ -1558,6 +1637,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1558
1637
|
pcb_component_id?: string | undefined;
|
|
1559
1638
|
subcircuit_id?: string | undefined;
|
|
1560
1639
|
pcb_group_id?: string | undefined;
|
|
1640
|
+
soldermask_margin?: number | undefined;
|
|
1561
1641
|
port_hints?: string[] | undefined;
|
|
1562
1642
|
pcb_port_id?: string | undefined;
|
|
1563
1643
|
rect_border_radius?: number | undefined;
|
|
@@ -1580,6 +1660,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1580
1660
|
pcb_component_id?: string | undefined;
|
|
1581
1661
|
subcircuit_id?: string | undefined;
|
|
1582
1662
|
pcb_group_id?: string | undefined;
|
|
1663
|
+
soldermask_margin?: number | undefined;
|
|
1583
1664
|
port_hints?: string[] | undefined;
|
|
1584
1665
|
pcb_port_id?: string | undefined;
|
|
1585
1666
|
pcb_plated_hole_id?: string | undefined;
|
|
@@ -1622,6 +1703,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1622
1703
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
1623
1704
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
1624
1705
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1706
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
1625
1707
|
}, "strip", z.ZodTypeAny, {
|
|
1626
1708
|
x: number;
|
|
1627
1709
|
y: number;
|
|
@@ -1640,6 +1722,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1640
1722
|
subcircuit_id?: string | undefined;
|
|
1641
1723
|
pcb_group_id?: string | undefined;
|
|
1642
1724
|
hole_diameter?: number | undefined;
|
|
1725
|
+
soldermask_margin?: number | undefined;
|
|
1643
1726
|
hole_width?: number | undefined;
|
|
1644
1727
|
hole_height?: number | undefined;
|
|
1645
1728
|
port_hints?: string[] | undefined;
|
|
@@ -1661,6 +1744,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1661
1744
|
subcircuit_id?: string | undefined;
|
|
1662
1745
|
pcb_group_id?: string | undefined;
|
|
1663
1746
|
hole_diameter?: number | undefined;
|
|
1747
|
+
soldermask_margin?: number | undefined;
|
|
1664
1748
|
hole_width?: number | undefined;
|
|
1665
1749
|
hole_height?: number | undefined;
|
|
1666
1750
|
port_hints?: string[] | undefined;
|
|
@@ -1773,6 +1857,7 @@ declare const pcb_smtpad_pill: z.ZodObject<{
|
|
|
1773
1857
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
1774
1858
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
1775
1859
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
1860
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
1776
1861
|
}, "strip", z.ZodTypeAny, {
|
|
1777
1862
|
x: number;
|
|
1778
1863
|
y: number;
|
|
@@ -1786,6 +1871,7 @@ declare const pcb_smtpad_pill: z.ZodObject<{
|
|
|
1786
1871
|
pcb_component_id?: string | undefined;
|
|
1787
1872
|
subcircuit_id?: string | undefined;
|
|
1788
1873
|
pcb_group_id?: string | undefined;
|
|
1874
|
+
soldermask_margin?: number | undefined;
|
|
1789
1875
|
port_hints?: string[] | undefined;
|
|
1790
1876
|
pcb_port_id?: string | undefined;
|
|
1791
1877
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -1803,6 +1889,7 @@ declare const pcb_smtpad_pill: z.ZodObject<{
|
|
|
1803
1889
|
pcb_component_id?: string | undefined;
|
|
1804
1890
|
subcircuit_id?: string | undefined;
|
|
1805
1891
|
pcb_group_id?: string | undefined;
|
|
1892
|
+
soldermask_margin?: number | undefined;
|
|
1806
1893
|
port_hints?: string[] | undefined;
|
|
1807
1894
|
pcb_port_id?: string | undefined;
|
|
1808
1895
|
pcb_smtpad_id?: string | undefined;
|
|
@@ -1830,6 +1917,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1830
1917
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
1831
1918
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
1832
1919
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
1920
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
1833
1921
|
}, "strip", z.ZodTypeAny, {
|
|
1834
1922
|
x: number;
|
|
1835
1923
|
y: number;
|
|
@@ -1841,6 +1929,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1841
1929
|
pcb_component_id?: string | undefined;
|
|
1842
1930
|
subcircuit_id?: string | undefined;
|
|
1843
1931
|
pcb_group_id?: string | undefined;
|
|
1932
|
+
soldermask_margin?: number | undefined;
|
|
1844
1933
|
port_hints?: string[] | undefined;
|
|
1845
1934
|
pcb_port_id?: string | undefined;
|
|
1846
1935
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -1856,6 +1945,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1856
1945
|
pcb_component_id?: string | undefined;
|
|
1857
1946
|
subcircuit_id?: string | undefined;
|
|
1858
1947
|
pcb_group_id?: string | undefined;
|
|
1948
|
+
soldermask_margin?: number | undefined;
|
|
1859
1949
|
port_hints?: string[] | undefined;
|
|
1860
1950
|
pcb_port_id?: string | undefined;
|
|
1861
1951
|
pcb_smtpad_id?: string | undefined;
|
|
@@ -1885,6 +1975,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1885
1975
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
1886
1976
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
1887
1977
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
1978
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
1888
1979
|
}, "strip", z.ZodTypeAny, {
|
|
1889
1980
|
x: number;
|
|
1890
1981
|
y: number;
|
|
@@ -1897,6 +1988,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1897
1988
|
pcb_component_id?: string | undefined;
|
|
1898
1989
|
subcircuit_id?: string | undefined;
|
|
1899
1990
|
pcb_group_id?: string | undefined;
|
|
1991
|
+
soldermask_margin?: number | undefined;
|
|
1900
1992
|
port_hints?: string[] | undefined;
|
|
1901
1993
|
pcb_port_id?: string | undefined;
|
|
1902
1994
|
rect_border_radius?: number | undefined;
|
|
@@ -1915,6 +2007,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1915
2007
|
pcb_component_id?: string | undefined;
|
|
1916
2008
|
subcircuit_id?: string | undefined;
|
|
1917
2009
|
pcb_group_id?: string | undefined;
|
|
2010
|
+
soldermask_margin?: number | undefined;
|
|
1918
2011
|
port_hints?: string[] | undefined;
|
|
1919
2012
|
pcb_port_id?: string | undefined;
|
|
1920
2013
|
rect_border_radius?: number | undefined;
|
|
@@ -1947,6 +2040,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1947
2040
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
1948
2041
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
1949
2042
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
2043
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
1950
2044
|
}, "strip", z.ZodTypeAny, {
|
|
1951
2045
|
x: number;
|
|
1952
2046
|
y: number;
|
|
@@ -1960,6 +2054,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1960
2054
|
pcb_component_id?: string | undefined;
|
|
1961
2055
|
subcircuit_id?: string | undefined;
|
|
1962
2056
|
pcb_group_id?: string | undefined;
|
|
2057
|
+
soldermask_margin?: number | undefined;
|
|
1963
2058
|
port_hints?: string[] | undefined;
|
|
1964
2059
|
pcb_port_id?: string | undefined;
|
|
1965
2060
|
rect_border_radius?: number | undefined;
|
|
@@ -1979,6 +2074,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1979
2074
|
pcb_component_id?: string | undefined;
|
|
1980
2075
|
subcircuit_id?: string | undefined;
|
|
1981
2076
|
pcb_group_id?: string | undefined;
|
|
2077
|
+
soldermask_margin?: number | undefined;
|
|
1982
2078
|
port_hints?: string[] | undefined;
|
|
1983
2079
|
pcb_port_id?: string | undefined;
|
|
1984
2080
|
rect_border_radius?: number | undefined;
|
|
@@ -2010,6 +2106,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2010
2106
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
2011
2107
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
2012
2108
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
2109
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
2013
2110
|
}, "strip", z.ZodTypeAny, {
|
|
2014
2111
|
x: number;
|
|
2015
2112
|
y: number;
|
|
@@ -2024,6 +2121,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2024
2121
|
pcb_component_id?: string | undefined;
|
|
2025
2122
|
subcircuit_id?: string | undefined;
|
|
2026
2123
|
pcb_group_id?: string | undefined;
|
|
2124
|
+
soldermask_margin?: number | undefined;
|
|
2027
2125
|
port_hints?: string[] | undefined;
|
|
2028
2126
|
pcb_port_id?: string | undefined;
|
|
2029
2127
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -2042,6 +2140,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2042
2140
|
pcb_component_id?: string | undefined;
|
|
2043
2141
|
subcircuit_id?: string | undefined;
|
|
2044
2142
|
pcb_group_id?: string | undefined;
|
|
2143
|
+
soldermask_margin?: number | undefined;
|
|
2045
2144
|
port_hints?: string[] | undefined;
|
|
2046
2145
|
pcb_port_id?: string | undefined;
|
|
2047
2146
|
pcb_smtpad_id?: string | undefined;
|
|
@@ -2070,6 +2169,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2070
2169
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
2071
2170
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
2072
2171
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
2172
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
2073
2173
|
}, "strip", z.ZodTypeAny, {
|
|
2074
2174
|
x: number;
|
|
2075
2175
|
y: number;
|
|
@@ -2083,6 +2183,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2083
2183
|
pcb_component_id?: string | undefined;
|
|
2084
2184
|
subcircuit_id?: string | undefined;
|
|
2085
2185
|
pcb_group_id?: string | undefined;
|
|
2186
|
+
soldermask_margin?: number | undefined;
|
|
2086
2187
|
port_hints?: string[] | undefined;
|
|
2087
2188
|
pcb_port_id?: string | undefined;
|
|
2088
2189
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -2100,6 +2201,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2100
2201
|
pcb_component_id?: string | undefined;
|
|
2101
2202
|
subcircuit_id?: string | undefined;
|
|
2102
2203
|
pcb_group_id?: string | undefined;
|
|
2204
|
+
soldermask_margin?: number | undefined;
|
|
2103
2205
|
port_hints?: string[] | undefined;
|
|
2104
2206
|
pcb_port_id?: string | undefined;
|
|
2105
2207
|
pcb_smtpad_id?: string | undefined;
|
|
@@ -2133,6 +2235,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2133
2235
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
2134
2236
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
2135
2237
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
2238
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
2136
2239
|
}, "strip", z.ZodTypeAny, {
|
|
2137
2240
|
type: "pcb_smtpad";
|
|
2138
2241
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -2145,6 +2248,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2145
2248
|
pcb_component_id?: string | undefined;
|
|
2146
2249
|
subcircuit_id?: string | undefined;
|
|
2147
2250
|
pcb_group_id?: string | undefined;
|
|
2251
|
+
soldermask_margin?: number | undefined;
|
|
2148
2252
|
port_hints?: string[] | undefined;
|
|
2149
2253
|
pcb_port_id?: string | undefined;
|
|
2150
2254
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -2161,6 +2265,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2161
2265
|
pcb_component_id?: string | undefined;
|
|
2162
2266
|
subcircuit_id?: string | undefined;
|
|
2163
2267
|
pcb_group_id?: string | undefined;
|
|
2268
|
+
soldermask_margin?: number | undefined;
|
|
2164
2269
|
port_hints?: string[] | undefined;
|
|
2165
2270
|
pcb_port_id?: string | undefined;
|
|
2166
2271
|
pcb_smtpad_id?: string | undefined;
|
|
@@ -2184,6 +2289,7 @@ interface PcbSmtPadCircle {
|
|
|
2184
2289
|
pcb_component_id?: string;
|
|
2185
2290
|
pcb_port_id?: string;
|
|
2186
2291
|
is_covered_with_solder_mask?: boolean;
|
|
2292
|
+
soldermask_margin?: number;
|
|
2187
2293
|
}
|
|
2188
2294
|
/**
|
|
2189
2295
|
* Defines a rectangular SMT pad on the PCB
|
|
@@ -2205,6 +2311,7 @@ interface PcbSmtPadRect {
|
|
|
2205
2311
|
pcb_component_id?: string;
|
|
2206
2312
|
pcb_port_id?: string;
|
|
2207
2313
|
is_covered_with_solder_mask?: boolean;
|
|
2314
|
+
soldermask_margin?: number;
|
|
2208
2315
|
}
|
|
2209
2316
|
/**
|
|
2210
2317
|
* Defines a rotated rectangular SMT pad on the PCB
|
|
@@ -2227,6 +2334,7 @@ interface PcbSmtPadRotatedRect {
|
|
|
2227
2334
|
pcb_component_id?: string;
|
|
2228
2335
|
pcb_port_id?: string;
|
|
2229
2336
|
is_covered_with_solder_mask?: boolean;
|
|
2337
|
+
soldermask_margin?: number;
|
|
2230
2338
|
}
|
|
2231
2339
|
/**
|
|
2232
2340
|
* Defines a pill-shaped SMT pad on the PCB (rounded rectangle).
|
|
@@ -2247,6 +2355,7 @@ interface PcbSmtPadPill {
|
|
|
2247
2355
|
pcb_component_id?: string;
|
|
2248
2356
|
pcb_port_id?: string;
|
|
2249
2357
|
is_covered_with_solder_mask?: boolean;
|
|
2358
|
+
soldermask_margin?: number;
|
|
2250
2359
|
}
|
|
2251
2360
|
/**
|
|
2252
2361
|
* Defines a rotated pill-shaped SMT pad on the PCB
|
|
@@ -2268,6 +2377,7 @@ interface PcbSmtPadRotatedPill {
|
|
|
2268
2377
|
pcb_component_id?: string;
|
|
2269
2378
|
pcb_port_id?: string;
|
|
2270
2379
|
is_covered_with_solder_mask?: boolean;
|
|
2380
|
+
soldermask_margin?: number;
|
|
2271
2381
|
}
|
|
2272
2382
|
/**
|
|
2273
2383
|
* Defines a polygonal SMT pad on the PCB
|
|
@@ -2284,6 +2394,7 @@ interface PcbSmtPadPolygon {
|
|
|
2284
2394
|
pcb_component_id?: string;
|
|
2285
2395
|
pcb_port_id?: string;
|
|
2286
2396
|
is_covered_with_solder_mask?: boolean;
|
|
2397
|
+
soldermask_margin?: number;
|
|
2287
2398
|
}
|
|
2288
2399
|
type PcbSmtPad = PcbSmtPadCircle | PcbSmtPadRect | PcbSmtPadRotatedRect | PcbSmtPadRotatedPill | PcbSmtPadPill | PcbSmtPadPolygon;
|
|
2289
2400
|
/**
|
|
@@ -14619,6 +14730,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14619
14730
|
hole_diameter: z.ZodNumber;
|
|
14620
14731
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14621
14732
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14733
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
14622
14734
|
}, "strip", z.ZodTypeAny, {
|
|
14623
14735
|
x: number;
|
|
14624
14736
|
y: number;
|
|
@@ -14628,6 +14740,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14628
14740
|
hole_diameter: number;
|
|
14629
14741
|
subcircuit_id?: string | undefined;
|
|
14630
14742
|
pcb_group_id?: string | undefined;
|
|
14743
|
+
soldermask_margin?: number | undefined;
|
|
14631
14744
|
}, {
|
|
14632
14745
|
x: string | number;
|
|
14633
14746
|
y: string | number;
|
|
@@ -14637,6 +14750,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14637
14750
|
subcircuit_id?: string | undefined;
|
|
14638
14751
|
pcb_group_id?: string | undefined;
|
|
14639
14752
|
pcb_hole_id?: string | undefined;
|
|
14753
|
+
soldermask_margin?: number | undefined;
|
|
14640
14754
|
}>, z.ZodObject<{
|
|
14641
14755
|
type: z.ZodLiteral<"pcb_hole">;
|
|
14642
14756
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -14647,6 +14761,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14647
14761
|
hole_height: z.ZodNumber;
|
|
14648
14762
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14649
14763
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14764
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
14650
14765
|
}, "strip", z.ZodTypeAny, {
|
|
14651
14766
|
x: number;
|
|
14652
14767
|
y: number;
|
|
@@ -14657,6 +14772,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14657
14772
|
hole_height: number;
|
|
14658
14773
|
subcircuit_id?: string | undefined;
|
|
14659
14774
|
pcb_group_id?: string | undefined;
|
|
14775
|
+
soldermask_margin?: number | undefined;
|
|
14660
14776
|
}, {
|
|
14661
14777
|
x: string | number;
|
|
14662
14778
|
y: string | number;
|
|
@@ -14667,6 +14783,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14667
14783
|
subcircuit_id?: string | undefined;
|
|
14668
14784
|
pcb_group_id?: string | undefined;
|
|
14669
14785
|
pcb_hole_id?: string | undefined;
|
|
14786
|
+
soldermask_margin?: number | undefined;
|
|
14670
14787
|
}>]>, z.ZodObject<{
|
|
14671
14788
|
type: z.ZodLiteral<"pcb_hole">;
|
|
14672
14789
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -14677,6 +14794,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14677
14794
|
hole_height: z.ZodNumber;
|
|
14678
14795
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14679
14796
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14797
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
14680
14798
|
}, "strip", z.ZodTypeAny, {
|
|
14681
14799
|
x: number;
|
|
14682
14800
|
y: number;
|
|
@@ -14687,6 +14805,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14687
14805
|
hole_height: number;
|
|
14688
14806
|
subcircuit_id?: string | undefined;
|
|
14689
14807
|
pcb_group_id?: string | undefined;
|
|
14808
|
+
soldermask_margin?: number | undefined;
|
|
14690
14809
|
}, {
|
|
14691
14810
|
x: string | number;
|
|
14692
14811
|
y: string | number;
|
|
@@ -14697,6 +14816,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14697
14816
|
subcircuit_id?: string | undefined;
|
|
14698
14817
|
pcb_group_id?: string | undefined;
|
|
14699
14818
|
pcb_hole_id?: string | undefined;
|
|
14819
|
+
soldermask_margin?: number | undefined;
|
|
14700
14820
|
}>]>, z.ZodObject<{
|
|
14701
14821
|
type: z.ZodLiteral<"pcb_hole">;
|
|
14702
14822
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -14708,6 +14828,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14708
14828
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14709
14829
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14710
14830
|
ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14831
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
14711
14832
|
}, "strip", z.ZodTypeAny, {
|
|
14712
14833
|
x: number;
|
|
14713
14834
|
y: number;
|
|
@@ -14719,6 +14840,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14719
14840
|
ccw_rotation: number;
|
|
14720
14841
|
subcircuit_id?: string | undefined;
|
|
14721
14842
|
pcb_group_id?: string | undefined;
|
|
14843
|
+
soldermask_margin?: number | undefined;
|
|
14722
14844
|
}, {
|
|
14723
14845
|
x: string | number;
|
|
14724
14846
|
y: string | number;
|
|
@@ -14730,6 +14852,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14730
14852
|
subcircuit_id?: string | undefined;
|
|
14731
14853
|
pcb_group_id?: string | undefined;
|
|
14732
14854
|
pcb_hole_id?: string | undefined;
|
|
14855
|
+
soldermask_margin?: number | undefined;
|
|
14733
14856
|
}>]>, z.ZodObject<{
|
|
14734
14857
|
type: z.ZodLiteral<"pcb_hole">;
|
|
14735
14858
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -14739,6 +14862,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14739
14862
|
hole_diameter: z.ZodNumber;
|
|
14740
14863
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14741
14864
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14865
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
14742
14866
|
}, "strip", z.ZodTypeAny, {
|
|
14743
14867
|
x: number;
|
|
14744
14868
|
y: number;
|
|
@@ -14748,6 +14872,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14748
14872
|
hole_diameter: number;
|
|
14749
14873
|
subcircuit_id?: string | undefined;
|
|
14750
14874
|
pcb_group_id?: string | undefined;
|
|
14875
|
+
soldermask_margin?: number | undefined;
|
|
14751
14876
|
}, {
|
|
14752
14877
|
x: string | number;
|
|
14753
14878
|
y: string | number;
|
|
@@ -14757,6 +14882,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14757
14882
|
subcircuit_id?: string | undefined;
|
|
14758
14883
|
pcb_group_id?: string | undefined;
|
|
14759
14884
|
pcb_hole_id?: string | undefined;
|
|
14885
|
+
soldermask_margin?: number | undefined;
|
|
14760
14886
|
}>]>, z.ZodObject<{
|
|
14761
14887
|
type: z.ZodLiteral<"pcb_hole">;
|
|
14762
14888
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -14767,6 +14893,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14767
14893
|
hole_height: z.ZodNumber;
|
|
14768
14894
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14769
14895
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14896
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
14770
14897
|
}, "strip", z.ZodTypeAny, {
|
|
14771
14898
|
x: number;
|
|
14772
14899
|
y: number;
|
|
@@ -14777,6 +14904,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14777
14904
|
hole_height: number;
|
|
14778
14905
|
subcircuit_id?: string | undefined;
|
|
14779
14906
|
pcb_group_id?: string | undefined;
|
|
14907
|
+
soldermask_margin?: number | undefined;
|
|
14780
14908
|
}, {
|
|
14781
14909
|
x: string | number;
|
|
14782
14910
|
y: string | number;
|
|
@@ -14787,6 +14915,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14787
14915
|
subcircuit_id?: string | undefined;
|
|
14788
14916
|
pcb_group_id?: string | undefined;
|
|
14789
14917
|
pcb_hole_id?: string | undefined;
|
|
14918
|
+
soldermask_margin?: number | undefined;
|
|
14790
14919
|
}>]>, z.ZodObject<{
|
|
14791
14920
|
type: z.ZodLiteral<"pcb_missing_footprint_error">;
|
|
14792
14921
|
pcb_missing_footprint_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -14920,6 +15049,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14920
15049
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
14921
15050
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
14922
15051
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15052
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
14923
15053
|
}, "strip", z.ZodTypeAny, {
|
|
14924
15054
|
x: number;
|
|
14925
15055
|
y: number;
|
|
@@ -14932,6 +15062,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14932
15062
|
pcb_component_id?: string | undefined;
|
|
14933
15063
|
subcircuit_id?: string | undefined;
|
|
14934
15064
|
pcb_group_id?: string | undefined;
|
|
15065
|
+
soldermask_margin?: number | undefined;
|
|
14935
15066
|
port_hints?: string[] | undefined;
|
|
14936
15067
|
pcb_port_id?: string | undefined;
|
|
14937
15068
|
}, {
|
|
@@ -14947,6 +15078,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14947
15078
|
pcb_component_id?: string | undefined;
|
|
14948
15079
|
subcircuit_id?: string | undefined;
|
|
14949
15080
|
pcb_group_id?: string | undefined;
|
|
15081
|
+
soldermask_margin?: number | undefined;
|
|
14950
15082
|
port_hints?: string[] | undefined;
|
|
14951
15083
|
pcb_port_id?: string | undefined;
|
|
14952
15084
|
pcb_plated_hole_id?: string | undefined;
|
|
@@ -14975,6 +15107,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14975
15107
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
14976
15108
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
14977
15109
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15110
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
14978
15111
|
}, "strip", z.ZodTypeAny, {
|
|
14979
15112
|
x: number;
|
|
14980
15113
|
y: number;
|
|
@@ -14990,6 +15123,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14990
15123
|
pcb_component_id?: string | undefined;
|
|
14991
15124
|
subcircuit_id?: string | undefined;
|
|
14992
15125
|
pcb_group_id?: string | undefined;
|
|
15126
|
+
soldermask_margin?: number | undefined;
|
|
14993
15127
|
port_hints?: string[] | undefined;
|
|
14994
15128
|
pcb_port_id?: string | undefined;
|
|
14995
15129
|
}, {
|
|
@@ -15008,6 +15142,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15008
15142
|
pcb_component_id?: string | undefined;
|
|
15009
15143
|
subcircuit_id?: string | undefined;
|
|
15010
15144
|
pcb_group_id?: string | undefined;
|
|
15145
|
+
soldermask_margin?: number | undefined;
|
|
15011
15146
|
port_hints?: string[] | undefined;
|
|
15012
15147
|
pcb_port_id?: string | undefined;
|
|
15013
15148
|
pcb_plated_hole_id?: string | undefined;
|
|
@@ -15039,6 +15174,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15039
15174
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
15040
15175
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
15041
15176
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15177
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
15042
15178
|
}, "strip", z.ZodTypeAny, {
|
|
15043
15179
|
x: number;
|
|
15044
15180
|
y: number;
|
|
@@ -15056,6 +15192,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15056
15192
|
pcb_component_id?: string | undefined;
|
|
15057
15193
|
subcircuit_id?: string | undefined;
|
|
15058
15194
|
pcb_group_id?: string | undefined;
|
|
15195
|
+
soldermask_margin?: number | undefined;
|
|
15059
15196
|
port_hints?: string[] | undefined;
|
|
15060
15197
|
pcb_port_id?: string | undefined;
|
|
15061
15198
|
rect_border_radius?: number | undefined;
|
|
@@ -15075,6 +15212,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15075
15212
|
pcb_component_id?: string | undefined;
|
|
15076
15213
|
subcircuit_id?: string | undefined;
|
|
15077
15214
|
pcb_group_id?: string | undefined;
|
|
15215
|
+
soldermask_margin?: number | undefined;
|
|
15078
15216
|
port_hints?: string[] | undefined;
|
|
15079
15217
|
pcb_port_id?: string | undefined;
|
|
15080
15218
|
pcb_plated_hole_id?: string | undefined;
|
|
@@ -15110,6 +15248,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15110
15248
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
15111
15249
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
15112
15250
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15251
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
15113
15252
|
}, "strip", z.ZodTypeAny, {
|
|
15114
15253
|
x: number;
|
|
15115
15254
|
y: number;
|
|
@@ -15128,6 +15267,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15128
15267
|
pcb_component_id?: string | undefined;
|
|
15129
15268
|
subcircuit_id?: string | undefined;
|
|
15130
15269
|
pcb_group_id?: string | undefined;
|
|
15270
|
+
soldermask_margin?: number | undefined;
|
|
15131
15271
|
port_hints?: string[] | undefined;
|
|
15132
15272
|
pcb_port_id?: string | undefined;
|
|
15133
15273
|
rect_border_radius?: number | undefined;
|
|
@@ -15148,6 +15288,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15148
15288
|
pcb_component_id?: string | undefined;
|
|
15149
15289
|
subcircuit_id?: string | undefined;
|
|
15150
15290
|
pcb_group_id?: string | undefined;
|
|
15291
|
+
soldermask_margin?: number | undefined;
|
|
15151
15292
|
port_hints?: string[] | undefined;
|
|
15152
15293
|
pcb_port_id?: string | undefined;
|
|
15153
15294
|
pcb_plated_hole_id?: string | undefined;
|
|
@@ -15185,6 +15326,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15185
15326
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
15186
15327
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
15187
15328
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15329
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
15188
15330
|
}, "strip", z.ZodTypeAny, {
|
|
15189
15331
|
x: number;
|
|
15190
15332
|
y: number;
|
|
@@ -15205,6 +15347,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15205
15347
|
pcb_component_id?: string | undefined;
|
|
15206
15348
|
subcircuit_id?: string | undefined;
|
|
15207
15349
|
pcb_group_id?: string | undefined;
|
|
15350
|
+
soldermask_margin?: number | undefined;
|
|
15208
15351
|
port_hints?: string[] | undefined;
|
|
15209
15352
|
pcb_port_id?: string | undefined;
|
|
15210
15353
|
rect_border_radius?: number | undefined;
|
|
@@ -15227,6 +15370,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15227
15370
|
pcb_component_id?: string | undefined;
|
|
15228
15371
|
subcircuit_id?: string | undefined;
|
|
15229
15372
|
pcb_group_id?: string | undefined;
|
|
15373
|
+
soldermask_margin?: number | undefined;
|
|
15230
15374
|
port_hints?: string[] | undefined;
|
|
15231
15375
|
pcb_port_id?: string | undefined;
|
|
15232
15376
|
pcb_plated_hole_id?: string | undefined;
|
|
@@ -15269,6 +15413,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15269
15413
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
15270
15414
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
15271
15415
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15416
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
15272
15417
|
}, "strip", z.ZodTypeAny, {
|
|
15273
15418
|
x: number;
|
|
15274
15419
|
y: number;
|
|
@@ -15287,6 +15432,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15287
15432
|
subcircuit_id?: string | undefined;
|
|
15288
15433
|
pcb_group_id?: string | undefined;
|
|
15289
15434
|
hole_diameter?: number | undefined;
|
|
15435
|
+
soldermask_margin?: number | undefined;
|
|
15290
15436
|
hole_width?: number | undefined;
|
|
15291
15437
|
hole_height?: number | undefined;
|
|
15292
15438
|
port_hints?: string[] | undefined;
|
|
@@ -15308,6 +15454,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15308
15454
|
subcircuit_id?: string | undefined;
|
|
15309
15455
|
pcb_group_id?: string | undefined;
|
|
15310
15456
|
hole_diameter?: number | undefined;
|
|
15457
|
+
soldermask_margin?: number | undefined;
|
|
15311
15458
|
hole_width?: number | undefined;
|
|
15312
15459
|
hole_height?: number | undefined;
|
|
15313
15460
|
port_hints?: string[] | undefined;
|
|
@@ -15758,6 +15905,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15758
15905
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
15759
15906
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
15760
15907
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
15908
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
15761
15909
|
}, "strip", z.ZodTypeAny, {
|
|
15762
15910
|
x: number;
|
|
15763
15911
|
y: number;
|
|
@@ -15769,6 +15917,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15769
15917
|
pcb_component_id?: string | undefined;
|
|
15770
15918
|
subcircuit_id?: string | undefined;
|
|
15771
15919
|
pcb_group_id?: string | undefined;
|
|
15920
|
+
soldermask_margin?: number | undefined;
|
|
15772
15921
|
port_hints?: string[] | undefined;
|
|
15773
15922
|
pcb_port_id?: string | undefined;
|
|
15774
15923
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -15784,6 +15933,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15784
15933
|
pcb_component_id?: string | undefined;
|
|
15785
15934
|
subcircuit_id?: string | undefined;
|
|
15786
15935
|
pcb_group_id?: string | undefined;
|
|
15936
|
+
soldermask_margin?: number | undefined;
|
|
15787
15937
|
port_hints?: string[] | undefined;
|
|
15788
15938
|
pcb_port_id?: string | undefined;
|
|
15789
15939
|
pcb_smtpad_id?: string | undefined;
|
|
@@ -15813,6 +15963,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15813
15963
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
15814
15964
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
15815
15965
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
15966
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
15816
15967
|
}, "strip", z.ZodTypeAny, {
|
|
15817
15968
|
x: number;
|
|
15818
15969
|
y: number;
|
|
@@ -15825,6 +15976,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15825
15976
|
pcb_component_id?: string | undefined;
|
|
15826
15977
|
subcircuit_id?: string | undefined;
|
|
15827
15978
|
pcb_group_id?: string | undefined;
|
|
15979
|
+
soldermask_margin?: number | undefined;
|
|
15828
15980
|
port_hints?: string[] | undefined;
|
|
15829
15981
|
pcb_port_id?: string | undefined;
|
|
15830
15982
|
rect_border_radius?: number | undefined;
|
|
@@ -15843,6 +15995,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15843
15995
|
pcb_component_id?: string | undefined;
|
|
15844
15996
|
subcircuit_id?: string | undefined;
|
|
15845
15997
|
pcb_group_id?: string | undefined;
|
|
15998
|
+
soldermask_margin?: number | undefined;
|
|
15846
15999
|
port_hints?: string[] | undefined;
|
|
15847
16000
|
pcb_port_id?: string | undefined;
|
|
15848
16001
|
rect_border_radius?: number | undefined;
|
|
@@ -15875,6 +16028,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15875
16028
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
15876
16029
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
15877
16030
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
16031
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
15878
16032
|
}, "strip", z.ZodTypeAny, {
|
|
15879
16033
|
x: number;
|
|
15880
16034
|
y: number;
|
|
@@ -15888,6 +16042,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15888
16042
|
pcb_component_id?: string | undefined;
|
|
15889
16043
|
subcircuit_id?: string | undefined;
|
|
15890
16044
|
pcb_group_id?: string | undefined;
|
|
16045
|
+
soldermask_margin?: number | undefined;
|
|
15891
16046
|
port_hints?: string[] | undefined;
|
|
15892
16047
|
pcb_port_id?: string | undefined;
|
|
15893
16048
|
rect_border_radius?: number | undefined;
|
|
@@ -15907,6 +16062,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15907
16062
|
pcb_component_id?: string | undefined;
|
|
15908
16063
|
subcircuit_id?: string | undefined;
|
|
15909
16064
|
pcb_group_id?: string | undefined;
|
|
16065
|
+
soldermask_margin?: number | undefined;
|
|
15910
16066
|
port_hints?: string[] | undefined;
|
|
15911
16067
|
pcb_port_id?: string | undefined;
|
|
15912
16068
|
rect_border_radius?: number | undefined;
|
|
@@ -15938,6 +16094,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15938
16094
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
15939
16095
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
15940
16096
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
16097
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
15941
16098
|
}, "strip", z.ZodTypeAny, {
|
|
15942
16099
|
x: number;
|
|
15943
16100
|
y: number;
|
|
@@ -15952,6 +16109,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15952
16109
|
pcb_component_id?: string | undefined;
|
|
15953
16110
|
subcircuit_id?: string | undefined;
|
|
15954
16111
|
pcb_group_id?: string | undefined;
|
|
16112
|
+
soldermask_margin?: number | undefined;
|
|
15955
16113
|
port_hints?: string[] | undefined;
|
|
15956
16114
|
pcb_port_id?: string | undefined;
|
|
15957
16115
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -15970,6 +16128,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15970
16128
|
pcb_component_id?: string | undefined;
|
|
15971
16129
|
subcircuit_id?: string | undefined;
|
|
15972
16130
|
pcb_group_id?: string | undefined;
|
|
16131
|
+
soldermask_margin?: number | undefined;
|
|
15973
16132
|
port_hints?: string[] | undefined;
|
|
15974
16133
|
pcb_port_id?: string | undefined;
|
|
15975
16134
|
pcb_smtpad_id?: string | undefined;
|
|
@@ -15998,6 +16157,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15998
16157
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
15999
16158
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
16000
16159
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
16160
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
16001
16161
|
}, "strip", z.ZodTypeAny, {
|
|
16002
16162
|
x: number;
|
|
16003
16163
|
y: number;
|
|
@@ -16011,6 +16171,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16011
16171
|
pcb_component_id?: string | undefined;
|
|
16012
16172
|
subcircuit_id?: string | undefined;
|
|
16013
16173
|
pcb_group_id?: string | undefined;
|
|
16174
|
+
soldermask_margin?: number | undefined;
|
|
16014
16175
|
port_hints?: string[] | undefined;
|
|
16015
16176
|
pcb_port_id?: string | undefined;
|
|
16016
16177
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -16028,6 +16189,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16028
16189
|
pcb_component_id?: string | undefined;
|
|
16029
16190
|
subcircuit_id?: string | undefined;
|
|
16030
16191
|
pcb_group_id?: string | undefined;
|
|
16192
|
+
soldermask_margin?: number | undefined;
|
|
16031
16193
|
port_hints?: string[] | undefined;
|
|
16032
16194
|
pcb_port_id?: string | undefined;
|
|
16033
16195
|
pcb_smtpad_id?: string | undefined;
|
|
@@ -16061,6 +16223,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16061
16223
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
16062
16224
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
16063
16225
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
16226
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
16064
16227
|
}, "strip", z.ZodTypeAny, {
|
|
16065
16228
|
type: "pcb_smtpad";
|
|
16066
16229
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -16073,6 +16236,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16073
16236
|
pcb_component_id?: string | undefined;
|
|
16074
16237
|
subcircuit_id?: string | undefined;
|
|
16075
16238
|
pcb_group_id?: string | undefined;
|
|
16239
|
+
soldermask_margin?: number | undefined;
|
|
16076
16240
|
port_hints?: string[] | undefined;
|
|
16077
16241
|
pcb_port_id?: string | undefined;
|
|
16078
16242
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -16089,6 +16253,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16089
16253
|
pcb_component_id?: string | undefined;
|
|
16090
16254
|
subcircuit_id?: string | undefined;
|
|
16091
16255
|
pcb_group_id?: string | undefined;
|
|
16256
|
+
soldermask_margin?: number | undefined;
|
|
16092
16257
|
port_hints?: string[] | undefined;
|
|
16093
16258
|
pcb_port_id?: string | undefined;
|
|
16094
16259
|
pcb_smtpad_id?: string | undefined;
|
|
@@ -22436,6 +22601,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22436
22601
|
hole_diameter: z.ZodNumber;
|
|
22437
22602
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22438
22603
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22604
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22439
22605
|
}, "strip", z.ZodTypeAny, {
|
|
22440
22606
|
x: number;
|
|
22441
22607
|
y: number;
|
|
@@ -22445,6 +22611,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22445
22611
|
hole_diameter: number;
|
|
22446
22612
|
subcircuit_id?: string | undefined;
|
|
22447
22613
|
pcb_group_id?: string | undefined;
|
|
22614
|
+
soldermask_margin?: number | undefined;
|
|
22448
22615
|
}, {
|
|
22449
22616
|
x: string | number;
|
|
22450
22617
|
y: string | number;
|
|
@@ -22454,6 +22621,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22454
22621
|
subcircuit_id?: string | undefined;
|
|
22455
22622
|
pcb_group_id?: string | undefined;
|
|
22456
22623
|
pcb_hole_id?: string | undefined;
|
|
22624
|
+
soldermask_margin?: number | undefined;
|
|
22457
22625
|
}>, z.ZodObject<{
|
|
22458
22626
|
type: z.ZodLiteral<"pcb_hole">;
|
|
22459
22627
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -22464,6 +22632,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22464
22632
|
hole_height: z.ZodNumber;
|
|
22465
22633
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22466
22634
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22635
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22467
22636
|
}, "strip", z.ZodTypeAny, {
|
|
22468
22637
|
x: number;
|
|
22469
22638
|
y: number;
|
|
@@ -22474,6 +22643,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22474
22643
|
hole_height: number;
|
|
22475
22644
|
subcircuit_id?: string | undefined;
|
|
22476
22645
|
pcb_group_id?: string | undefined;
|
|
22646
|
+
soldermask_margin?: number | undefined;
|
|
22477
22647
|
}, {
|
|
22478
22648
|
x: string | number;
|
|
22479
22649
|
y: string | number;
|
|
@@ -22484,6 +22654,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22484
22654
|
subcircuit_id?: string | undefined;
|
|
22485
22655
|
pcb_group_id?: string | undefined;
|
|
22486
22656
|
pcb_hole_id?: string | undefined;
|
|
22657
|
+
soldermask_margin?: number | undefined;
|
|
22487
22658
|
}>]>, z.ZodObject<{
|
|
22488
22659
|
type: z.ZodLiteral<"pcb_hole">;
|
|
22489
22660
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -22494,6 +22665,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22494
22665
|
hole_height: z.ZodNumber;
|
|
22495
22666
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22496
22667
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22668
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22497
22669
|
}, "strip", z.ZodTypeAny, {
|
|
22498
22670
|
x: number;
|
|
22499
22671
|
y: number;
|
|
@@ -22504,6 +22676,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22504
22676
|
hole_height: number;
|
|
22505
22677
|
subcircuit_id?: string | undefined;
|
|
22506
22678
|
pcb_group_id?: string | undefined;
|
|
22679
|
+
soldermask_margin?: number | undefined;
|
|
22507
22680
|
}, {
|
|
22508
22681
|
x: string | number;
|
|
22509
22682
|
y: string | number;
|
|
@@ -22514,6 +22687,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22514
22687
|
subcircuit_id?: string | undefined;
|
|
22515
22688
|
pcb_group_id?: string | undefined;
|
|
22516
22689
|
pcb_hole_id?: string | undefined;
|
|
22690
|
+
soldermask_margin?: number | undefined;
|
|
22517
22691
|
}>]>, z.ZodObject<{
|
|
22518
22692
|
type: z.ZodLiteral<"pcb_hole">;
|
|
22519
22693
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -22525,6 +22699,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22525
22699
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22526
22700
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22527
22701
|
ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22702
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22528
22703
|
}, "strip", z.ZodTypeAny, {
|
|
22529
22704
|
x: number;
|
|
22530
22705
|
y: number;
|
|
@@ -22536,6 +22711,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22536
22711
|
ccw_rotation: number;
|
|
22537
22712
|
subcircuit_id?: string | undefined;
|
|
22538
22713
|
pcb_group_id?: string | undefined;
|
|
22714
|
+
soldermask_margin?: number | undefined;
|
|
22539
22715
|
}, {
|
|
22540
22716
|
x: string | number;
|
|
22541
22717
|
y: string | number;
|
|
@@ -22547,6 +22723,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22547
22723
|
subcircuit_id?: string | undefined;
|
|
22548
22724
|
pcb_group_id?: string | undefined;
|
|
22549
22725
|
pcb_hole_id?: string | undefined;
|
|
22726
|
+
soldermask_margin?: number | undefined;
|
|
22550
22727
|
}>]>, z.ZodObject<{
|
|
22551
22728
|
type: z.ZodLiteral<"pcb_hole">;
|
|
22552
22729
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -22556,6 +22733,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22556
22733
|
hole_diameter: z.ZodNumber;
|
|
22557
22734
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22558
22735
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22736
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22559
22737
|
}, "strip", z.ZodTypeAny, {
|
|
22560
22738
|
x: number;
|
|
22561
22739
|
y: number;
|
|
@@ -22565,6 +22743,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22565
22743
|
hole_diameter: number;
|
|
22566
22744
|
subcircuit_id?: string | undefined;
|
|
22567
22745
|
pcb_group_id?: string | undefined;
|
|
22746
|
+
soldermask_margin?: number | undefined;
|
|
22568
22747
|
}, {
|
|
22569
22748
|
x: string | number;
|
|
22570
22749
|
y: string | number;
|
|
@@ -22574,6 +22753,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22574
22753
|
subcircuit_id?: string | undefined;
|
|
22575
22754
|
pcb_group_id?: string | undefined;
|
|
22576
22755
|
pcb_hole_id?: string | undefined;
|
|
22756
|
+
soldermask_margin?: number | undefined;
|
|
22577
22757
|
}>]>, z.ZodObject<{
|
|
22578
22758
|
type: z.ZodLiteral<"pcb_hole">;
|
|
22579
22759
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -22584,6 +22764,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22584
22764
|
hole_height: z.ZodNumber;
|
|
22585
22765
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22586
22766
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22767
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22587
22768
|
}, "strip", z.ZodTypeAny, {
|
|
22588
22769
|
x: number;
|
|
22589
22770
|
y: number;
|
|
@@ -22594,6 +22775,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22594
22775
|
hole_height: number;
|
|
22595
22776
|
subcircuit_id?: string | undefined;
|
|
22596
22777
|
pcb_group_id?: string | undefined;
|
|
22778
|
+
soldermask_margin?: number | undefined;
|
|
22597
22779
|
}, {
|
|
22598
22780
|
x: string | number;
|
|
22599
22781
|
y: string | number;
|
|
@@ -22604,6 +22786,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22604
22786
|
subcircuit_id?: string | undefined;
|
|
22605
22787
|
pcb_group_id?: string | undefined;
|
|
22606
22788
|
pcb_hole_id?: string | undefined;
|
|
22789
|
+
soldermask_margin?: number | undefined;
|
|
22607
22790
|
}>]>, z.ZodObject<{
|
|
22608
22791
|
type: z.ZodLiteral<"pcb_missing_footprint_error">;
|
|
22609
22792
|
pcb_missing_footprint_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -22737,6 +22920,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22737
22920
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
22738
22921
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
22739
22922
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
22923
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22740
22924
|
}, "strip", z.ZodTypeAny, {
|
|
22741
22925
|
x: number;
|
|
22742
22926
|
y: number;
|
|
@@ -22749,6 +22933,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22749
22933
|
pcb_component_id?: string | undefined;
|
|
22750
22934
|
subcircuit_id?: string | undefined;
|
|
22751
22935
|
pcb_group_id?: string | undefined;
|
|
22936
|
+
soldermask_margin?: number | undefined;
|
|
22752
22937
|
port_hints?: string[] | undefined;
|
|
22753
22938
|
pcb_port_id?: string | undefined;
|
|
22754
22939
|
}, {
|
|
@@ -22764,6 +22949,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22764
22949
|
pcb_component_id?: string | undefined;
|
|
22765
22950
|
subcircuit_id?: string | undefined;
|
|
22766
22951
|
pcb_group_id?: string | undefined;
|
|
22952
|
+
soldermask_margin?: number | undefined;
|
|
22767
22953
|
port_hints?: string[] | undefined;
|
|
22768
22954
|
pcb_port_id?: string | undefined;
|
|
22769
22955
|
pcb_plated_hole_id?: string | undefined;
|
|
@@ -22792,6 +22978,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22792
22978
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
22793
22979
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
22794
22980
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
22981
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22795
22982
|
}, "strip", z.ZodTypeAny, {
|
|
22796
22983
|
x: number;
|
|
22797
22984
|
y: number;
|
|
@@ -22807,6 +22994,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22807
22994
|
pcb_component_id?: string | undefined;
|
|
22808
22995
|
subcircuit_id?: string | undefined;
|
|
22809
22996
|
pcb_group_id?: string | undefined;
|
|
22997
|
+
soldermask_margin?: number | undefined;
|
|
22810
22998
|
port_hints?: string[] | undefined;
|
|
22811
22999
|
pcb_port_id?: string | undefined;
|
|
22812
23000
|
}, {
|
|
@@ -22825,6 +23013,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22825
23013
|
pcb_component_id?: string | undefined;
|
|
22826
23014
|
subcircuit_id?: string | undefined;
|
|
22827
23015
|
pcb_group_id?: string | undefined;
|
|
23016
|
+
soldermask_margin?: number | undefined;
|
|
22828
23017
|
port_hints?: string[] | undefined;
|
|
22829
23018
|
pcb_port_id?: string | undefined;
|
|
22830
23019
|
pcb_plated_hole_id?: string | undefined;
|
|
@@ -22856,6 +23045,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22856
23045
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
22857
23046
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
22858
23047
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
23048
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22859
23049
|
}, "strip", z.ZodTypeAny, {
|
|
22860
23050
|
x: number;
|
|
22861
23051
|
y: number;
|
|
@@ -22873,6 +23063,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22873
23063
|
pcb_component_id?: string | undefined;
|
|
22874
23064
|
subcircuit_id?: string | undefined;
|
|
22875
23065
|
pcb_group_id?: string | undefined;
|
|
23066
|
+
soldermask_margin?: number | undefined;
|
|
22876
23067
|
port_hints?: string[] | undefined;
|
|
22877
23068
|
pcb_port_id?: string | undefined;
|
|
22878
23069
|
rect_border_radius?: number | undefined;
|
|
@@ -22892,6 +23083,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22892
23083
|
pcb_component_id?: string | undefined;
|
|
22893
23084
|
subcircuit_id?: string | undefined;
|
|
22894
23085
|
pcb_group_id?: string | undefined;
|
|
23086
|
+
soldermask_margin?: number | undefined;
|
|
22895
23087
|
port_hints?: string[] | undefined;
|
|
22896
23088
|
pcb_port_id?: string | undefined;
|
|
22897
23089
|
pcb_plated_hole_id?: string | undefined;
|
|
@@ -22927,6 +23119,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22927
23119
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
22928
23120
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
22929
23121
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
23122
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22930
23123
|
}, "strip", z.ZodTypeAny, {
|
|
22931
23124
|
x: number;
|
|
22932
23125
|
y: number;
|
|
@@ -22945,6 +23138,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22945
23138
|
pcb_component_id?: string | undefined;
|
|
22946
23139
|
subcircuit_id?: string | undefined;
|
|
22947
23140
|
pcb_group_id?: string | undefined;
|
|
23141
|
+
soldermask_margin?: number | undefined;
|
|
22948
23142
|
port_hints?: string[] | undefined;
|
|
22949
23143
|
pcb_port_id?: string | undefined;
|
|
22950
23144
|
rect_border_radius?: number | undefined;
|
|
@@ -22965,6 +23159,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22965
23159
|
pcb_component_id?: string | undefined;
|
|
22966
23160
|
subcircuit_id?: string | undefined;
|
|
22967
23161
|
pcb_group_id?: string | undefined;
|
|
23162
|
+
soldermask_margin?: number | undefined;
|
|
22968
23163
|
port_hints?: string[] | undefined;
|
|
22969
23164
|
pcb_port_id?: string | undefined;
|
|
22970
23165
|
pcb_plated_hole_id?: string | undefined;
|
|
@@ -23002,6 +23197,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23002
23197
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23003
23198
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
23004
23199
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
23200
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
23005
23201
|
}, "strip", z.ZodTypeAny, {
|
|
23006
23202
|
x: number;
|
|
23007
23203
|
y: number;
|
|
@@ -23022,6 +23218,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23022
23218
|
pcb_component_id?: string | undefined;
|
|
23023
23219
|
subcircuit_id?: string | undefined;
|
|
23024
23220
|
pcb_group_id?: string | undefined;
|
|
23221
|
+
soldermask_margin?: number | undefined;
|
|
23025
23222
|
port_hints?: string[] | undefined;
|
|
23026
23223
|
pcb_port_id?: string | undefined;
|
|
23027
23224
|
rect_border_radius?: number | undefined;
|
|
@@ -23044,6 +23241,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23044
23241
|
pcb_component_id?: string | undefined;
|
|
23045
23242
|
subcircuit_id?: string | undefined;
|
|
23046
23243
|
pcb_group_id?: string | undefined;
|
|
23244
|
+
soldermask_margin?: number | undefined;
|
|
23047
23245
|
port_hints?: string[] | undefined;
|
|
23048
23246
|
pcb_port_id?: string | undefined;
|
|
23049
23247
|
pcb_plated_hole_id?: string | undefined;
|
|
@@ -23086,6 +23284,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23086
23284
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23087
23285
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
23088
23286
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
23287
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
23089
23288
|
}, "strip", z.ZodTypeAny, {
|
|
23090
23289
|
x: number;
|
|
23091
23290
|
y: number;
|
|
@@ -23104,6 +23303,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23104
23303
|
subcircuit_id?: string | undefined;
|
|
23105
23304
|
pcb_group_id?: string | undefined;
|
|
23106
23305
|
hole_diameter?: number | undefined;
|
|
23306
|
+
soldermask_margin?: number | undefined;
|
|
23107
23307
|
hole_width?: number | undefined;
|
|
23108
23308
|
hole_height?: number | undefined;
|
|
23109
23309
|
port_hints?: string[] | undefined;
|
|
@@ -23125,6 +23325,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23125
23325
|
subcircuit_id?: string | undefined;
|
|
23126
23326
|
pcb_group_id?: string | undefined;
|
|
23127
23327
|
hole_diameter?: number | undefined;
|
|
23328
|
+
soldermask_margin?: number | undefined;
|
|
23128
23329
|
hole_width?: number | undefined;
|
|
23129
23330
|
hole_height?: number | undefined;
|
|
23130
23331
|
port_hints?: string[] | undefined;
|
|
@@ -23575,6 +23776,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23575
23776
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23576
23777
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
23577
23778
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
23779
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
23578
23780
|
}, "strip", z.ZodTypeAny, {
|
|
23579
23781
|
x: number;
|
|
23580
23782
|
y: number;
|
|
@@ -23586,6 +23788,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23586
23788
|
pcb_component_id?: string | undefined;
|
|
23587
23789
|
subcircuit_id?: string | undefined;
|
|
23588
23790
|
pcb_group_id?: string | undefined;
|
|
23791
|
+
soldermask_margin?: number | undefined;
|
|
23589
23792
|
port_hints?: string[] | undefined;
|
|
23590
23793
|
pcb_port_id?: string | undefined;
|
|
23591
23794
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -23601,6 +23804,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23601
23804
|
pcb_component_id?: string | undefined;
|
|
23602
23805
|
subcircuit_id?: string | undefined;
|
|
23603
23806
|
pcb_group_id?: string | undefined;
|
|
23807
|
+
soldermask_margin?: number | undefined;
|
|
23604
23808
|
port_hints?: string[] | undefined;
|
|
23605
23809
|
pcb_port_id?: string | undefined;
|
|
23606
23810
|
pcb_smtpad_id?: string | undefined;
|
|
@@ -23630,6 +23834,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23630
23834
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23631
23835
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
23632
23836
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
23837
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
23633
23838
|
}, "strip", z.ZodTypeAny, {
|
|
23634
23839
|
x: number;
|
|
23635
23840
|
y: number;
|
|
@@ -23642,6 +23847,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23642
23847
|
pcb_component_id?: string | undefined;
|
|
23643
23848
|
subcircuit_id?: string | undefined;
|
|
23644
23849
|
pcb_group_id?: string | undefined;
|
|
23850
|
+
soldermask_margin?: number | undefined;
|
|
23645
23851
|
port_hints?: string[] | undefined;
|
|
23646
23852
|
pcb_port_id?: string | undefined;
|
|
23647
23853
|
rect_border_radius?: number | undefined;
|
|
@@ -23660,6 +23866,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23660
23866
|
pcb_component_id?: string | undefined;
|
|
23661
23867
|
subcircuit_id?: string | undefined;
|
|
23662
23868
|
pcb_group_id?: string | undefined;
|
|
23869
|
+
soldermask_margin?: number | undefined;
|
|
23663
23870
|
port_hints?: string[] | undefined;
|
|
23664
23871
|
pcb_port_id?: string | undefined;
|
|
23665
23872
|
rect_border_radius?: number | undefined;
|
|
@@ -23692,6 +23899,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23692
23899
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23693
23900
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
23694
23901
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
23902
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
23695
23903
|
}, "strip", z.ZodTypeAny, {
|
|
23696
23904
|
x: number;
|
|
23697
23905
|
y: number;
|
|
@@ -23705,6 +23913,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23705
23913
|
pcb_component_id?: string | undefined;
|
|
23706
23914
|
subcircuit_id?: string | undefined;
|
|
23707
23915
|
pcb_group_id?: string | undefined;
|
|
23916
|
+
soldermask_margin?: number | undefined;
|
|
23708
23917
|
port_hints?: string[] | undefined;
|
|
23709
23918
|
pcb_port_id?: string | undefined;
|
|
23710
23919
|
rect_border_radius?: number | undefined;
|
|
@@ -23724,6 +23933,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23724
23933
|
pcb_component_id?: string | undefined;
|
|
23725
23934
|
subcircuit_id?: string | undefined;
|
|
23726
23935
|
pcb_group_id?: string | undefined;
|
|
23936
|
+
soldermask_margin?: number | undefined;
|
|
23727
23937
|
port_hints?: string[] | undefined;
|
|
23728
23938
|
pcb_port_id?: string | undefined;
|
|
23729
23939
|
rect_border_radius?: number | undefined;
|
|
@@ -23755,6 +23965,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23755
23965
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23756
23966
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
23757
23967
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
23968
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
23758
23969
|
}, "strip", z.ZodTypeAny, {
|
|
23759
23970
|
x: number;
|
|
23760
23971
|
y: number;
|
|
@@ -23769,6 +23980,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23769
23980
|
pcb_component_id?: string | undefined;
|
|
23770
23981
|
subcircuit_id?: string | undefined;
|
|
23771
23982
|
pcb_group_id?: string | undefined;
|
|
23983
|
+
soldermask_margin?: number | undefined;
|
|
23772
23984
|
port_hints?: string[] | undefined;
|
|
23773
23985
|
pcb_port_id?: string | undefined;
|
|
23774
23986
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -23787,6 +23999,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23787
23999
|
pcb_component_id?: string | undefined;
|
|
23788
24000
|
subcircuit_id?: string | undefined;
|
|
23789
24001
|
pcb_group_id?: string | undefined;
|
|
24002
|
+
soldermask_margin?: number | undefined;
|
|
23790
24003
|
port_hints?: string[] | undefined;
|
|
23791
24004
|
pcb_port_id?: string | undefined;
|
|
23792
24005
|
pcb_smtpad_id?: string | undefined;
|
|
@@ -23815,6 +24028,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23815
24028
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23816
24029
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
23817
24030
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
24031
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
23818
24032
|
}, "strip", z.ZodTypeAny, {
|
|
23819
24033
|
x: number;
|
|
23820
24034
|
y: number;
|
|
@@ -23828,6 +24042,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23828
24042
|
pcb_component_id?: string | undefined;
|
|
23829
24043
|
subcircuit_id?: string | undefined;
|
|
23830
24044
|
pcb_group_id?: string | undefined;
|
|
24045
|
+
soldermask_margin?: number | undefined;
|
|
23831
24046
|
port_hints?: string[] | undefined;
|
|
23832
24047
|
pcb_port_id?: string | undefined;
|
|
23833
24048
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -23845,6 +24060,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23845
24060
|
pcb_component_id?: string | undefined;
|
|
23846
24061
|
subcircuit_id?: string | undefined;
|
|
23847
24062
|
pcb_group_id?: string | undefined;
|
|
24063
|
+
soldermask_margin?: number | undefined;
|
|
23848
24064
|
port_hints?: string[] | undefined;
|
|
23849
24065
|
pcb_port_id?: string | undefined;
|
|
23850
24066
|
pcb_smtpad_id?: string | undefined;
|
|
@@ -23878,6 +24094,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23878
24094
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23879
24095
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
23880
24096
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
24097
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
23881
24098
|
}, "strip", z.ZodTypeAny, {
|
|
23882
24099
|
type: "pcb_smtpad";
|
|
23883
24100
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -23890,6 +24107,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23890
24107
|
pcb_component_id?: string | undefined;
|
|
23891
24108
|
subcircuit_id?: string | undefined;
|
|
23892
24109
|
pcb_group_id?: string | undefined;
|
|
24110
|
+
soldermask_margin?: number | undefined;
|
|
23893
24111
|
port_hints?: string[] | undefined;
|
|
23894
24112
|
pcb_port_id?: string | undefined;
|
|
23895
24113
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -23906,6 +24124,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23906
24124
|
pcb_component_id?: string | undefined;
|
|
23907
24125
|
subcircuit_id?: string | undefined;
|
|
23908
24126
|
pcb_group_id?: string | undefined;
|
|
24127
|
+
soldermask_margin?: number | undefined;
|
|
23909
24128
|
port_hints?: string[] | undefined;
|
|
23910
24129
|
pcb_port_id?: string | undefined;
|
|
23911
24130
|
pcb_smtpad_id?: string | undefined;
|