circuit-json 0.0.315 → 0.0.317
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 +7 -0
- package/dist/index.d.mts +232 -0
- package/dist/index.mjs +38 -19
- 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
|
/**
|
|
@@ -5215,6 +5326,7 @@ declare const pcb_cutout_rect: z.ZodObject<{
|
|
|
5215
5326
|
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
5216
5327
|
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
5217
5328
|
rotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5329
|
+
corner_radius: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5218
5330
|
}, "strip", z.ZodTypeAny, {
|
|
5219
5331
|
type: "pcb_cutout";
|
|
5220
5332
|
width: number;
|
|
@@ -5228,6 +5340,7 @@ declare const pcb_cutout_rect: z.ZodObject<{
|
|
|
5228
5340
|
rotation?: number | undefined;
|
|
5229
5341
|
subcircuit_id?: string | undefined;
|
|
5230
5342
|
pcb_group_id?: string | undefined;
|
|
5343
|
+
corner_radius?: number | undefined;
|
|
5231
5344
|
pcb_board_id?: string | undefined;
|
|
5232
5345
|
pcb_panel_id?: string | undefined;
|
|
5233
5346
|
}, {
|
|
@@ -5242,6 +5355,7 @@ declare const pcb_cutout_rect: z.ZodObject<{
|
|
|
5242
5355
|
rotation?: string | number | undefined;
|
|
5243
5356
|
subcircuit_id?: string | undefined;
|
|
5244
5357
|
pcb_group_id?: string | undefined;
|
|
5358
|
+
corner_radius?: string | number | undefined;
|
|
5245
5359
|
pcb_board_id?: string | undefined;
|
|
5246
5360
|
pcb_panel_id?: string | undefined;
|
|
5247
5361
|
pcb_cutout_id?: string | undefined;
|
|
@@ -5262,6 +5376,7 @@ interface PcbCutoutRect {
|
|
|
5262
5376
|
width: Length;
|
|
5263
5377
|
height: Length;
|
|
5264
5378
|
rotation?: Rotation;
|
|
5379
|
+
corner_radius?: Length;
|
|
5265
5380
|
}
|
|
5266
5381
|
declare const pcb_cutout_circle: z.ZodObject<{
|
|
5267
5382
|
type: z.ZodLiteral<"pcb_cutout">;
|
|
@@ -5483,6 +5598,7 @@ declare const pcb_cutout: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
5483
5598
|
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
5484
5599
|
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
5485
5600
|
rotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5601
|
+
corner_radius: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5486
5602
|
}, "strip", z.ZodTypeAny, {
|
|
5487
5603
|
type: "pcb_cutout";
|
|
5488
5604
|
width: number;
|
|
@@ -5496,6 +5612,7 @@ declare const pcb_cutout: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
5496
5612
|
rotation?: number | undefined;
|
|
5497
5613
|
subcircuit_id?: string | undefined;
|
|
5498
5614
|
pcb_group_id?: string | undefined;
|
|
5615
|
+
corner_radius?: number | undefined;
|
|
5499
5616
|
pcb_board_id?: string | undefined;
|
|
5500
5617
|
pcb_panel_id?: string | undefined;
|
|
5501
5618
|
}, {
|
|
@@ -5510,6 +5627,7 @@ declare const pcb_cutout: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
5510
5627
|
rotation?: string | number | undefined;
|
|
5511
5628
|
subcircuit_id?: string | undefined;
|
|
5512
5629
|
pcb_group_id?: string | undefined;
|
|
5630
|
+
corner_radius?: string | number | undefined;
|
|
5513
5631
|
pcb_board_id?: string | undefined;
|
|
5514
5632
|
pcb_panel_id?: string | undefined;
|
|
5515
5633
|
pcb_cutout_id?: string | undefined;
|
|
@@ -14619,6 +14737,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14619
14737
|
hole_diameter: z.ZodNumber;
|
|
14620
14738
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14621
14739
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14740
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
14622
14741
|
}, "strip", z.ZodTypeAny, {
|
|
14623
14742
|
x: number;
|
|
14624
14743
|
y: number;
|
|
@@ -14628,6 +14747,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14628
14747
|
hole_diameter: number;
|
|
14629
14748
|
subcircuit_id?: string | undefined;
|
|
14630
14749
|
pcb_group_id?: string | undefined;
|
|
14750
|
+
soldermask_margin?: number | undefined;
|
|
14631
14751
|
}, {
|
|
14632
14752
|
x: string | number;
|
|
14633
14753
|
y: string | number;
|
|
@@ -14637,6 +14757,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14637
14757
|
subcircuit_id?: string | undefined;
|
|
14638
14758
|
pcb_group_id?: string | undefined;
|
|
14639
14759
|
pcb_hole_id?: string | undefined;
|
|
14760
|
+
soldermask_margin?: number | undefined;
|
|
14640
14761
|
}>, z.ZodObject<{
|
|
14641
14762
|
type: z.ZodLiteral<"pcb_hole">;
|
|
14642
14763
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -14647,6 +14768,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14647
14768
|
hole_height: z.ZodNumber;
|
|
14648
14769
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14649
14770
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14771
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
14650
14772
|
}, "strip", z.ZodTypeAny, {
|
|
14651
14773
|
x: number;
|
|
14652
14774
|
y: number;
|
|
@@ -14657,6 +14779,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14657
14779
|
hole_height: number;
|
|
14658
14780
|
subcircuit_id?: string | undefined;
|
|
14659
14781
|
pcb_group_id?: string | undefined;
|
|
14782
|
+
soldermask_margin?: number | undefined;
|
|
14660
14783
|
}, {
|
|
14661
14784
|
x: string | number;
|
|
14662
14785
|
y: string | number;
|
|
@@ -14667,6 +14790,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14667
14790
|
subcircuit_id?: string | undefined;
|
|
14668
14791
|
pcb_group_id?: string | undefined;
|
|
14669
14792
|
pcb_hole_id?: string | undefined;
|
|
14793
|
+
soldermask_margin?: number | undefined;
|
|
14670
14794
|
}>]>, z.ZodObject<{
|
|
14671
14795
|
type: z.ZodLiteral<"pcb_hole">;
|
|
14672
14796
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -14677,6 +14801,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14677
14801
|
hole_height: z.ZodNumber;
|
|
14678
14802
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14679
14803
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14804
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
14680
14805
|
}, "strip", z.ZodTypeAny, {
|
|
14681
14806
|
x: number;
|
|
14682
14807
|
y: number;
|
|
@@ -14687,6 +14812,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14687
14812
|
hole_height: number;
|
|
14688
14813
|
subcircuit_id?: string | undefined;
|
|
14689
14814
|
pcb_group_id?: string | undefined;
|
|
14815
|
+
soldermask_margin?: number | undefined;
|
|
14690
14816
|
}, {
|
|
14691
14817
|
x: string | number;
|
|
14692
14818
|
y: string | number;
|
|
@@ -14697,6 +14823,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14697
14823
|
subcircuit_id?: string | undefined;
|
|
14698
14824
|
pcb_group_id?: string | undefined;
|
|
14699
14825
|
pcb_hole_id?: string | undefined;
|
|
14826
|
+
soldermask_margin?: number | undefined;
|
|
14700
14827
|
}>]>, z.ZodObject<{
|
|
14701
14828
|
type: z.ZodLiteral<"pcb_hole">;
|
|
14702
14829
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -14708,6 +14835,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14708
14835
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14709
14836
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14710
14837
|
ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14838
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
14711
14839
|
}, "strip", z.ZodTypeAny, {
|
|
14712
14840
|
x: number;
|
|
14713
14841
|
y: number;
|
|
@@ -14719,6 +14847,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14719
14847
|
ccw_rotation: number;
|
|
14720
14848
|
subcircuit_id?: string | undefined;
|
|
14721
14849
|
pcb_group_id?: string | undefined;
|
|
14850
|
+
soldermask_margin?: number | undefined;
|
|
14722
14851
|
}, {
|
|
14723
14852
|
x: string | number;
|
|
14724
14853
|
y: string | number;
|
|
@@ -14730,6 +14859,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14730
14859
|
subcircuit_id?: string | undefined;
|
|
14731
14860
|
pcb_group_id?: string | undefined;
|
|
14732
14861
|
pcb_hole_id?: string | undefined;
|
|
14862
|
+
soldermask_margin?: number | undefined;
|
|
14733
14863
|
}>]>, z.ZodObject<{
|
|
14734
14864
|
type: z.ZodLiteral<"pcb_hole">;
|
|
14735
14865
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -14739,6 +14869,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14739
14869
|
hole_diameter: z.ZodNumber;
|
|
14740
14870
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14741
14871
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14872
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
14742
14873
|
}, "strip", z.ZodTypeAny, {
|
|
14743
14874
|
x: number;
|
|
14744
14875
|
y: number;
|
|
@@ -14748,6 +14879,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14748
14879
|
hole_diameter: number;
|
|
14749
14880
|
subcircuit_id?: string | undefined;
|
|
14750
14881
|
pcb_group_id?: string | undefined;
|
|
14882
|
+
soldermask_margin?: number | undefined;
|
|
14751
14883
|
}, {
|
|
14752
14884
|
x: string | number;
|
|
14753
14885
|
y: string | number;
|
|
@@ -14757,6 +14889,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14757
14889
|
subcircuit_id?: string | undefined;
|
|
14758
14890
|
pcb_group_id?: string | undefined;
|
|
14759
14891
|
pcb_hole_id?: string | undefined;
|
|
14892
|
+
soldermask_margin?: number | undefined;
|
|
14760
14893
|
}>]>, z.ZodObject<{
|
|
14761
14894
|
type: z.ZodLiteral<"pcb_hole">;
|
|
14762
14895
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -14767,6 +14900,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14767
14900
|
hole_height: z.ZodNumber;
|
|
14768
14901
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14769
14902
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14903
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
14770
14904
|
}, "strip", z.ZodTypeAny, {
|
|
14771
14905
|
x: number;
|
|
14772
14906
|
y: number;
|
|
@@ -14777,6 +14911,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14777
14911
|
hole_height: number;
|
|
14778
14912
|
subcircuit_id?: string | undefined;
|
|
14779
14913
|
pcb_group_id?: string | undefined;
|
|
14914
|
+
soldermask_margin?: number | undefined;
|
|
14780
14915
|
}, {
|
|
14781
14916
|
x: string | number;
|
|
14782
14917
|
y: string | number;
|
|
@@ -14787,6 +14922,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14787
14922
|
subcircuit_id?: string | undefined;
|
|
14788
14923
|
pcb_group_id?: string | undefined;
|
|
14789
14924
|
pcb_hole_id?: string | undefined;
|
|
14925
|
+
soldermask_margin?: number | undefined;
|
|
14790
14926
|
}>]>, z.ZodObject<{
|
|
14791
14927
|
type: z.ZodLiteral<"pcb_missing_footprint_error">;
|
|
14792
14928
|
pcb_missing_footprint_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -14920,6 +15056,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14920
15056
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
14921
15057
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
14922
15058
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15059
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
14923
15060
|
}, "strip", z.ZodTypeAny, {
|
|
14924
15061
|
x: number;
|
|
14925
15062
|
y: number;
|
|
@@ -14932,6 +15069,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14932
15069
|
pcb_component_id?: string | undefined;
|
|
14933
15070
|
subcircuit_id?: string | undefined;
|
|
14934
15071
|
pcb_group_id?: string | undefined;
|
|
15072
|
+
soldermask_margin?: number | undefined;
|
|
14935
15073
|
port_hints?: string[] | undefined;
|
|
14936
15074
|
pcb_port_id?: string | undefined;
|
|
14937
15075
|
}, {
|
|
@@ -14947,6 +15085,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14947
15085
|
pcb_component_id?: string | undefined;
|
|
14948
15086
|
subcircuit_id?: string | undefined;
|
|
14949
15087
|
pcb_group_id?: string | undefined;
|
|
15088
|
+
soldermask_margin?: number | undefined;
|
|
14950
15089
|
port_hints?: string[] | undefined;
|
|
14951
15090
|
pcb_port_id?: string | undefined;
|
|
14952
15091
|
pcb_plated_hole_id?: string | undefined;
|
|
@@ -14975,6 +15114,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14975
15114
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
14976
15115
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
14977
15116
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15117
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
14978
15118
|
}, "strip", z.ZodTypeAny, {
|
|
14979
15119
|
x: number;
|
|
14980
15120
|
y: number;
|
|
@@ -14990,6 +15130,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14990
15130
|
pcb_component_id?: string | undefined;
|
|
14991
15131
|
subcircuit_id?: string | undefined;
|
|
14992
15132
|
pcb_group_id?: string | undefined;
|
|
15133
|
+
soldermask_margin?: number | undefined;
|
|
14993
15134
|
port_hints?: string[] | undefined;
|
|
14994
15135
|
pcb_port_id?: string | undefined;
|
|
14995
15136
|
}, {
|
|
@@ -15008,6 +15149,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15008
15149
|
pcb_component_id?: string | undefined;
|
|
15009
15150
|
subcircuit_id?: string | undefined;
|
|
15010
15151
|
pcb_group_id?: string | undefined;
|
|
15152
|
+
soldermask_margin?: number | undefined;
|
|
15011
15153
|
port_hints?: string[] | undefined;
|
|
15012
15154
|
pcb_port_id?: string | undefined;
|
|
15013
15155
|
pcb_plated_hole_id?: string | undefined;
|
|
@@ -15039,6 +15181,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15039
15181
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
15040
15182
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
15041
15183
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15184
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
15042
15185
|
}, "strip", z.ZodTypeAny, {
|
|
15043
15186
|
x: number;
|
|
15044
15187
|
y: number;
|
|
@@ -15056,6 +15199,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15056
15199
|
pcb_component_id?: string | undefined;
|
|
15057
15200
|
subcircuit_id?: string | undefined;
|
|
15058
15201
|
pcb_group_id?: string | undefined;
|
|
15202
|
+
soldermask_margin?: number | undefined;
|
|
15059
15203
|
port_hints?: string[] | undefined;
|
|
15060
15204
|
pcb_port_id?: string | undefined;
|
|
15061
15205
|
rect_border_radius?: number | undefined;
|
|
@@ -15075,6 +15219,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15075
15219
|
pcb_component_id?: string | undefined;
|
|
15076
15220
|
subcircuit_id?: string | undefined;
|
|
15077
15221
|
pcb_group_id?: string | undefined;
|
|
15222
|
+
soldermask_margin?: number | undefined;
|
|
15078
15223
|
port_hints?: string[] | undefined;
|
|
15079
15224
|
pcb_port_id?: string | undefined;
|
|
15080
15225
|
pcb_plated_hole_id?: string | undefined;
|
|
@@ -15110,6 +15255,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15110
15255
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
15111
15256
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
15112
15257
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15258
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
15113
15259
|
}, "strip", z.ZodTypeAny, {
|
|
15114
15260
|
x: number;
|
|
15115
15261
|
y: number;
|
|
@@ -15128,6 +15274,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15128
15274
|
pcb_component_id?: string | undefined;
|
|
15129
15275
|
subcircuit_id?: string | undefined;
|
|
15130
15276
|
pcb_group_id?: string | undefined;
|
|
15277
|
+
soldermask_margin?: number | undefined;
|
|
15131
15278
|
port_hints?: string[] | undefined;
|
|
15132
15279
|
pcb_port_id?: string | undefined;
|
|
15133
15280
|
rect_border_radius?: number | undefined;
|
|
@@ -15148,6 +15295,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15148
15295
|
pcb_component_id?: string | undefined;
|
|
15149
15296
|
subcircuit_id?: string | undefined;
|
|
15150
15297
|
pcb_group_id?: string | undefined;
|
|
15298
|
+
soldermask_margin?: number | undefined;
|
|
15151
15299
|
port_hints?: string[] | undefined;
|
|
15152
15300
|
pcb_port_id?: string | undefined;
|
|
15153
15301
|
pcb_plated_hole_id?: string | undefined;
|
|
@@ -15185,6 +15333,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15185
15333
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
15186
15334
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
15187
15335
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15336
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
15188
15337
|
}, "strip", z.ZodTypeAny, {
|
|
15189
15338
|
x: number;
|
|
15190
15339
|
y: number;
|
|
@@ -15205,6 +15354,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15205
15354
|
pcb_component_id?: string | undefined;
|
|
15206
15355
|
subcircuit_id?: string | undefined;
|
|
15207
15356
|
pcb_group_id?: string | undefined;
|
|
15357
|
+
soldermask_margin?: number | undefined;
|
|
15208
15358
|
port_hints?: string[] | undefined;
|
|
15209
15359
|
pcb_port_id?: string | undefined;
|
|
15210
15360
|
rect_border_radius?: number | undefined;
|
|
@@ -15227,6 +15377,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15227
15377
|
pcb_component_id?: string | undefined;
|
|
15228
15378
|
subcircuit_id?: string | undefined;
|
|
15229
15379
|
pcb_group_id?: string | undefined;
|
|
15380
|
+
soldermask_margin?: number | undefined;
|
|
15230
15381
|
port_hints?: string[] | undefined;
|
|
15231
15382
|
pcb_port_id?: string | undefined;
|
|
15232
15383
|
pcb_plated_hole_id?: string | undefined;
|
|
@@ -15269,6 +15420,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15269
15420
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
15270
15421
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
15271
15422
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15423
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
15272
15424
|
}, "strip", z.ZodTypeAny, {
|
|
15273
15425
|
x: number;
|
|
15274
15426
|
y: number;
|
|
@@ -15287,6 +15439,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15287
15439
|
subcircuit_id?: string | undefined;
|
|
15288
15440
|
pcb_group_id?: string | undefined;
|
|
15289
15441
|
hole_diameter?: number | undefined;
|
|
15442
|
+
soldermask_margin?: number | undefined;
|
|
15290
15443
|
hole_width?: number | undefined;
|
|
15291
15444
|
hole_height?: number | undefined;
|
|
15292
15445
|
port_hints?: string[] | undefined;
|
|
@@ -15308,6 +15461,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15308
15461
|
subcircuit_id?: string | undefined;
|
|
15309
15462
|
pcb_group_id?: string | undefined;
|
|
15310
15463
|
hole_diameter?: number | undefined;
|
|
15464
|
+
soldermask_margin?: number | undefined;
|
|
15311
15465
|
hole_width?: number | undefined;
|
|
15312
15466
|
hole_height?: number | undefined;
|
|
15313
15467
|
port_hints?: string[] | undefined;
|
|
@@ -15758,6 +15912,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15758
15912
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
15759
15913
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
15760
15914
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
15915
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
15761
15916
|
}, "strip", z.ZodTypeAny, {
|
|
15762
15917
|
x: number;
|
|
15763
15918
|
y: number;
|
|
@@ -15769,6 +15924,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15769
15924
|
pcb_component_id?: string | undefined;
|
|
15770
15925
|
subcircuit_id?: string | undefined;
|
|
15771
15926
|
pcb_group_id?: string | undefined;
|
|
15927
|
+
soldermask_margin?: number | undefined;
|
|
15772
15928
|
port_hints?: string[] | undefined;
|
|
15773
15929
|
pcb_port_id?: string | undefined;
|
|
15774
15930
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -15784,6 +15940,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15784
15940
|
pcb_component_id?: string | undefined;
|
|
15785
15941
|
subcircuit_id?: string | undefined;
|
|
15786
15942
|
pcb_group_id?: string | undefined;
|
|
15943
|
+
soldermask_margin?: number | undefined;
|
|
15787
15944
|
port_hints?: string[] | undefined;
|
|
15788
15945
|
pcb_port_id?: string | undefined;
|
|
15789
15946
|
pcb_smtpad_id?: string | undefined;
|
|
@@ -15813,6 +15970,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15813
15970
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
15814
15971
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
15815
15972
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
15973
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
15816
15974
|
}, "strip", z.ZodTypeAny, {
|
|
15817
15975
|
x: number;
|
|
15818
15976
|
y: number;
|
|
@@ -15825,6 +15983,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15825
15983
|
pcb_component_id?: string | undefined;
|
|
15826
15984
|
subcircuit_id?: string | undefined;
|
|
15827
15985
|
pcb_group_id?: string | undefined;
|
|
15986
|
+
soldermask_margin?: number | undefined;
|
|
15828
15987
|
port_hints?: string[] | undefined;
|
|
15829
15988
|
pcb_port_id?: string | undefined;
|
|
15830
15989
|
rect_border_radius?: number | undefined;
|
|
@@ -15843,6 +16002,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15843
16002
|
pcb_component_id?: string | undefined;
|
|
15844
16003
|
subcircuit_id?: string | undefined;
|
|
15845
16004
|
pcb_group_id?: string | undefined;
|
|
16005
|
+
soldermask_margin?: number | undefined;
|
|
15846
16006
|
port_hints?: string[] | undefined;
|
|
15847
16007
|
pcb_port_id?: string | undefined;
|
|
15848
16008
|
rect_border_radius?: number | undefined;
|
|
@@ -15875,6 +16035,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15875
16035
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
15876
16036
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
15877
16037
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
16038
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
15878
16039
|
}, "strip", z.ZodTypeAny, {
|
|
15879
16040
|
x: number;
|
|
15880
16041
|
y: number;
|
|
@@ -15888,6 +16049,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15888
16049
|
pcb_component_id?: string | undefined;
|
|
15889
16050
|
subcircuit_id?: string | undefined;
|
|
15890
16051
|
pcb_group_id?: string | undefined;
|
|
16052
|
+
soldermask_margin?: number | undefined;
|
|
15891
16053
|
port_hints?: string[] | undefined;
|
|
15892
16054
|
pcb_port_id?: string | undefined;
|
|
15893
16055
|
rect_border_radius?: number | undefined;
|
|
@@ -15907,6 +16069,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15907
16069
|
pcb_component_id?: string | undefined;
|
|
15908
16070
|
subcircuit_id?: string | undefined;
|
|
15909
16071
|
pcb_group_id?: string | undefined;
|
|
16072
|
+
soldermask_margin?: number | undefined;
|
|
15910
16073
|
port_hints?: string[] | undefined;
|
|
15911
16074
|
pcb_port_id?: string | undefined;
|
|
15912
16075
|
rect_border_radius?: number | undefined;
|
|
@@ -15938,6 +16101,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15938
16101
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
15939
16102
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
15940
16103
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
16104
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
15941
16105
|
}, "strip", z.ZodTypeAny, {
|
|
15942
16106
|
x: number;
|
|
15943
16107
|
y: number;
|
|
@@ -15952,6 +16116,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15952
16116
|
pcb_component_id?: string | undefined;
|
|
15953
16117
|
subcircuit_id?: string | undefined;
|
|
15954
16118
|
pcb_group_id?: string | undefined;
|
|
16119
|
+
soldermask_margin?: number | undefined;
|
|
15955
16120
|
port_hints?: string[] | undefined;
|
|
15956
16121
|
pcb_port_id?: string | undefined;
|
|
15957
16122
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -15970,6 +16135,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15970
16135
|
pcb_component_id?: string | undefined;
|
|
15971
16136
|
subcircuit_id?: string | undefined;
|
|
15972
16137
|
pcb_group_id?: string | undefined;
|
|
16138
|
+
soldermask_margin?: number | undefined;
|
|
15973
16139
|
port_hints?: string[] | undefined;
|
|
15974
16140
|
pcb_port_id?: string | undefined;
|
|
15975
16141
|
pcb_smtpad_id?: string | undefined;
|
|
@@ -15998,6 +16164,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15998
16164
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
15999
16165
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
16000
16166
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
16167
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
16001
16168
|
}, "strip", z.ZodTypeAny, {
|
|
16002
16169
|
x: number;
|
|
16003
16170
|
y: number;
|
|
@@ -16011,6 +16178,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16011
16178
|
pcb_component_id?: string | undefined;
|
|
16012
16179
|
subcircuit_id?: string | undefined;
|
|
16013
16180
|
pcb_group_id?: string | undefined;
|
|
16181
|
+
soldermask_margin?: number | undefined;
|
|
16014
16182
|
port_hints?: string[] | undefined;
|
|
16015
16183
|
pcb_port_id?: string | undefined;
|
|
16016
16184
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -16028,6 +16196,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16028
16196
|
pcb_component_id?: string | undefined;
|
|
16029
16197
|
subcircuit_id?: string | undefined;
|
|
16030
16198
|
pcb_group_id?: string | undefined;
|
|
16199
|
+
soldermask_margin?: number | undefined;
|
|
16031
16200
|
port_hints?: string[] | undefined;
|
|
16032
16201
|
pcb_port_id?: string | undefined;
|
|
16033
16202
|
pcb_smtpad_id?: string | undefined;
|
|
@@ -16061,6 +16230,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16061
16230
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
16062
16231
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
16063
16232
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
16233
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
16064
16234
|
}, "strip", z.ZodTypeAny, {
|
|
16065
16235
|
type: "pcb_smtpad";
|
|
16066
16236
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -16073,6 +16243,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16073
16243
|
pcb_component_id?: string | undefined;
|
|
16074
16244
|
subcircuit_id?: string | undefined;
|
|
16075
16245
|
pcb_group_id?: string | undefined;
|
|
16246
|
+
soldermask_margin?: number | undefined;
|
|
16076
16247
|
port_hints?: string[] | undefined;
|
|
16077
16248
|
pcb_port_id?: string | undefined;
|
|
16078
16249
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -16089,6 +16260,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16089
16260
|
pcb_component_id?: string | undefined;
|
|
16090
16261
|
subcircuit_id?: string | undefined;
|
|
16091
16262
|
pcb_group_id?: string | undefined;
|
|
16263
|
+
soldermask_margin?: number | undefined;
|
|
16092
16264
|
port_hints?: string[] | undefined;
|
|
16093
16265
|
pcb_port_id?: string | undefined;
|
|
16094
16266
|
pcb_smtpad_id?: string | undefined;
|
|
@@ -17933,6 +18105,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17933
18105
|
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
17934
18106
|
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
17935
18107
|
rotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
18108
|
+
corner_radius: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
17936
18109
|
}, "strip", z.ZodTypeAny, {
|
|
17937
18110
|
type: "pcb_cutout";
|
|
17938
18111
|
width: number;
|
|
@@ -17946,6 +18119,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17946
18119
|
rotation?: number | undefined;
|
|
17947
18120
|
subcircuit_id?: string | undefined;
|
|
17948
18121
|
pcb_group_id?: string | undefined;
|
|
18122
|
+
corner_radius?: number | undefined;
|
|
17949
18123
|
pcb_board_id?: string | undefined;
|
|
17950
18124
|
pcb_panel_id?: string | undefined;
|
|
17951
18125
|
}, {
|
|
@@ -17960,6 +18134,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17960
18134
|
rotation?: string | number | undefined;
|
|
17961
18135
|
subcircuit_id?: string | undefined;
|
|
17962
18136
|
pcb_group_id?: string | undefined;
|
|
18137
|
+
corner_radius?: string | number | undefined;
|
|
17963
18138
|
pcb_board_id?: string | undefined;
|
|
17964
18139
|
pcb_panel_id?: string | undefined;
|
|
17965
18140
|
pcb_cutout_id?: string | undefined;
|
|
@@ -22436,6 +22611,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22436
22611
|
hole_diameter: z.ZodNumber;
|
|
22437
22612
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22438
22613
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22614
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22439
22615
|
}, "strip", z.ZodTypeAny, {
|
|
22440
22616
|
x: number;
|
|
22441
22617
|
y: number;
|
|
@@ -22445,6 +22621,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22445
22621
|
hole_diameter: number;
|
|
22446
22622
|
subcircuit_id?: string | undefined;
|
|
22447
22623
|
pcb_group_id?: string | undefined;
|
|
22624
|
+
soldermask_margin?: number | undefined;
|
|
22448
22625
|
}, {
|
|
22449
22626
|
x: string | number;
|
|
22450
22627
|
y: string | number;
|
|
@@ -22454,6 +22631,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22454
22631
|
subcircuit_id?: string | undefined;
|
|
22455
22632
|
pcb_group_id?: string | undefined;
|
|
22456
22633
|
pcb_hole_id?: string | undefined;
|
|
22634
|
+
soldermask_margin?: number | undefined;
|
|
22457
22635
|
}>, z.ZodObject<{
|
|
22458
22636
|
type: z.ZodLiteral<"pcb_hole">;
|
|
22459
22637
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -22464,6 +22642,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22464
22642
|
hole_height: z.ZodNumber;
|
|
22465
22643
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22466
22644
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22645
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22467
22646
|
}, "strip", z.ZodTypeAny, {
|
|
22468
22647
|
x: number;
|
|
22469
22648
|
y: number;
|
|
@@ -22474,6 +22653,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22474
22653
|
hole_height: number;
|
|
22475
22654
|
subcircuit_id?: string | undefined;
|
|
22476
22655
|
pcb_group_id?: string | undefined;
|
|
22656
|
+
soldermask_margin?: number | undefined;
|
|
22477
22657
|
}, {
|
|
22478
22658
|
x: string | number;
|
|
22479
22659
|
y: string | number;
|
|
@@ -22484,6 +22664,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22484
22664
|
subcircuit_id?: string | undefined;
|
|
22485
22665
|
pcb_group_id?: string | undefined;
|
|
22486
22666
|
pcb_hole_id?: string | undefined;
|
|
22667
|
+
soldermask_margin?: number | undefined;
|
|
22487
22668
|
}>]>, z.ZodObject<{
|
|
22488
22669
|
type: z.ZodLiteral<"pcb_hole">;
|
|
22489
22670
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -22494,6 +22675,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22494
22675
|
hole_height: z.ZodNumber;
|
|
22495
22676
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22496
22677
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22678
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22497
22679
|
}, "strip", z.ZodTypeAny, {
|
|
22498
22680
|
x: number;
|
|
22499
22681
|
y: number;
|
|
@@ -22504,6 +22686,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22504
22686
|
hole_height: number;
|
|
22505
22687
|
subcircuit_id?: string | undefined;
|
|
22506
22688
|
pcb_group_id?: string | undefined;
|
|
22689
|
+
soldermask_margin?: number | undefined;
|
|
22507
22690
|
}, {
|
|
22508
22691
|
x: string | number;
|
|
22509
22692
|
y: string | number;
|
|
@@ -22514,6 +22697,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22514
22697
|
subcircuit_id?: string | undefined;
|
|
22515
22698
|
pcb_group_id?: string | undefined;
|
|
22516
22699
|
pcb_hole_id?: string | undefined;
|
|
22700
|
+
soldermask_margin?: number | undefined;
|
|
22517
22701
|
}>]>, z.ZodObject<{
|
|
22518
22702
|
type: z.ZodLiteral<"pcb_hole">;
|
|
22519
22703
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -22525,6 +22709,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22525
22709
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22526
22710
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22527
22711
|
ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22712
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22528
22713
|
}, "strip", z.ZodTypeAny, {
|
|
22529
22714
|
x: number;
|
|
22530
22715
|
y: number;
|
|
@@ -22536,6 +22721,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22536
22721
|
ccw_rotation: number;
|
|
22537
22722
|
subcircuit_id?: string | undefined;
|
|
22538
22723
|
pcb_group_id?: string | undefined;
|
|
22724
|
+
soldermask_margin?: number | undefined;
|
|
22539
22725
|
}, {
|
|
22540
22726
|
x: string | number;
|
|
22541
22727
|
y: string | number;
|
|
@@ -22547,6 +22733,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22547
22733
|
subcircuit_id?: string | undefined;
|
|
22548
22734
|
pcb_group_id?: string | undefined;
|
|
22549
22735
|
pcb_hole_id?: string | undefined;
|
|
22736
|
+
soldermask_margin?: number | undefined;
|
|
22550
22737
|
}>]>, z.ZodObject<{
|
|
22551
22738
|
type: z.ZodLiteral<"pcb_hole">;
|
|
22552
22739
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -22556,6 +22743,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22556
22743
|
hole_diameter: z.ZodNumber;
|
|
22557
22744
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22558
22745
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22746
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22559
22747
|
}, "strip", z.ZodTypeAny, {
|
|
22560
22748
|
x: number;
|
|
22561
22749
|
y: number;
|
|
@@ -22565,6 +22753,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22565
22753
|
hole_diameter: number;
|
|
22566
22754
|
subcircuit_id?: string | undefined;
|
|
22567
22755
|
pcb_group_id?: string | undefined;
|
|
22756
|
+
soldermask_margin?: number | undefined;
|
|
22568
22757
|
}, {
|
|
22569
22758
|
x: string | number;
|
|
22570
22759
|
y: string | number;
|
|
@@ -22574,6 +22763,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22574
22763
|
subcircuit_id?: string | undefined;
|
|
22575
22764
|
pcb_group_id?: string | undefined;
|
|
22576
22765
|
pcb_hole_id?: string | undefined;
|
|
22766
|
+
soldermask_margin?: number | undefined;
|
|
22577
22767
|
}>]>, z.ZodObject<{
|
|
22578
22768
|
type: z.ZodLiteral<"pcb_hole">;
|
|
22579
22769
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -22584,6 +22774,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22584
22774
|
hole_height: z.ZodNumber;
|
|
22585
22775
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22586
22776
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22777
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22587
22778
|
}, "strip", z.ZodTypeAny, {
|
|
22588
22779
|
x: number;
|
|
22589
22780
|
y: number;
|
|
@@ -22594,6 +22785,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22594
22785
|
hole_height: number;
|
|
22595
22786
|
subcircuit_id?: string | undefined;
|
|
22596
22787
|
pcb_group_id?: string | undefined;
|
|
22788
|
+
soldermask_margin?: number | undefined;
|
|
22597
22789
|
}, {
|
|
22598
22790
|
x: string | number;
|
|
22599
22791
|
y: string | number;
|
|
@@ -22604,6 +22796,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22604
22796
|
subcircuit_id?: string | undefined;
|
|
22605
22797
|
pcb_group_id?: string | undefined;
|
|
22606
22798
|
pcb_hole_id?: string | undefined;
|
|
22799
|
+
soldermask_margin?: number | undefined;
|
|
22607
22800
|
}>]>, z.ZodObject<{
|
|
22608
22801
|
type: z.ZodLiteral<"pcb_missing_footprint_error">;
|
|
22609
22802
|
pcb_missing_footprint_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -22737,6 +22930,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22737
22930
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
22738
22931
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
22739
22932
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
22933
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22740
22934
|
}, "strip", z.ZodTypeAny, {
|
|
22741
22935
|
x: number;
|
|
22742
22936
|
y: number;
|
|
@@ -22749,6 +22943,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22749
22943
|
pcb_component_id?: string | undefined;
|
|
22750
22944
|
subcircuit_id?: string | undefined;
|
|
22751
22945
|
pcb_group_id?: string | undefined;
|
|
22946
|
+
soldermask_margin?: number | undefined;
|
|
22752
22947
|
port_hints?: string[] | undefined;
|
|
22753
22948
|
pcb_port_id?: string | undefined;
|
|
22754
22949
|
}, {
|
|
@@ -22764,6 +22959,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22764
22959
|
pcb_component_id?: string | undefined;
|
|
22765
22960
|
subcircuit_id?: string | undefined;
|
|
22766
22961
|
pcb_group_id?: string | undefined;
|
|
22962
|
+
soldermask_margin?: number | undefined;
|
|
22767
22963
|
port_hints?: string[] | undefined;
|
|
22768
22964
|
pcb_port_id?: string | undefined;
|
|
22769
22965
|
pcb_plated_hole_id?: string | undefined;
|
|
@@ -22792,6 +22988,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22792
22988
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
22793
22989
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
22794
22990
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
22991
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22795
22992
|
}, "strip", z.ZodTypeAny, {
|
|
22796
22993
|
x: number;
|
|
22797
22994
|
y: number;
|
|
@@ -22807,6 +23004,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22807
23004
|
pcb_component_id?: string | undefined;
|
|
22808
23005
|
subcircuit_id?: string | undefined;
|
|
22809
23006
|
pcb_group_id?: string | undefined;
|
|
23007
|
+
soldermask_margin?: number | undefined;
|
|
22810
23008
|
port_hints?: string[] | undefined;
|
|
22811
23009
|
pcb_port_id?: string | undefined;
|
|
22812
23010
|
}, {
|
|
@@ -22825,6 +23023,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22825
23023
|
pcb_component_id?: string | undefined;
|
|
22826
23024
|
subcircuit_id?: string | undefined;
|
|
22827
23025
|
pcb_group_id?: string | undefined;
|
|
23026
|
+
soldermask_margin?: number | undefined;
|
|
22828
23027
|
port_hints?: string[] | undefined;
|
|
22829
23028
|
pcb_port_id?: string | undefined;
|
|
22830
23029
|
pcb_plated_hole_id?: string | undefined;
|
|
@@ -22856,6 +23055,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22856
23055
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
22857
23056
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
22858
23057
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
23058
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22859
23059
|
}, "strip", z.ZodTypeAny, {
|
|
22860
23060
|
x: number;
|
|
22861
23061
|
y: number;
|
|
@@ -22873,6 +23073,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22873
23073
|
pcb_component_id?: string | undefined;
|
|
22874
23074
|
subcircuit_id?: string | undefined;
|
|
22875
23075
|
pcb_group_id?: string | undefined;
|
|
23076
|
+
soldermask_margin?: number | undefined;
|
|
22876
23077
|
port_hints?: string[] | undefined;
|
|
22877
23078
|
pcb_port_id?: string | undefined;
|
|
22878
23079
|
rect_border_radius?: number | undefined;
|
|
@@ -22892,6 +23093,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22892
23093
|
pcb_component_id?: string | undefined;
|
|
22893
23094
|
subcircuit_id?: string | undefined;
|
|
22894
23095
|
pcb_group_id?: string | undefined;
|
|
23096
|
+
soldermask_margin?: number | undefined;
|
|
22895
23097
|
port_hints?: string[] | undefined;
|
|
22896
23098
|
pcb_port_id?: string | undefined;
|
|
22897
23099
|
pcb_plated_hole_id?: string | undefined;
|
|
@@ -22927,6 +23129,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22927
23129
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
22928
23130
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
22929
23131
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
23132
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22930
23133
|
}, "strip", z.ZodTypeAny, {
|
|
22931
23134
|
x: number;
|
|
22932
23135
|
y: number;
|
|
@@ -22945,6 +23148,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22945
23148
|
pcb_component_id?: string | undefined;
|
|
22946
23149
|
subcircuit_id?: string | undefined;
|
|
22947
23150
|
pcb_group_id?: string | undefined;
|
|
23151
|
+
soldermask_margin?: number | undefined;
|
|
22948
23152
|
port_hints?: string[] | undefined;
|
|
22949
23153
|
pcb_port_id?: string | undefined;
|
|
22950
23154
|
rect_border_radius?: number | undefined;
|
|
@@ -22965,6 +23169,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22965
23169
|
pcb_component_id?: string | undefined;
|
|
22966
23170
|
subcircuit_id?: string | undefined;
|
|
22967
23171
|
pcb_group_id?: string | undefined;
|
|
23172
|
+
soldermask_margin?: number | undefined;
|
|
22968
23173
|
port_hints?: string[] | undefined;
|
|
22969
23174
|
pcb_port_id?: string | undefined;
|
|
22970
23175
|
pcb_plated_hole_id?: string | undefined;
|
|
@@ -23002,6 +23207,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23002
23207
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23003
23208
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
23004
23209
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
23210
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
23005
23211
|
}, "strip", z.ZodTypeAny, {
|
|
23006
23212
|
x: number;
|
|
23007
23213
|
y: number;
|
|
@@ -23022,6 +23228,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23022
23228
|
pcb_component_id?: string | undefined;
|
|
23023
23229
|
subcircuit_id?: string | undefined;
|
|
23024
23230
|
pcb_group_id?: string | undefined;
|
|
23231
|
+
soldermask_margin?: number | undefined;
|
|
23025
23232
|
port_hints?: string[] | undefined;
|
|
23026
23233
|
pcb_port_id?: string | undefined;
|
|
23027
23234
|
rect_border_radius?: number | undefined;
|
|
@@ -23044,6 +23251,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23044
23251
|
pcb_component_id?: string | undefined;
|
|
23045
23252
|
subcircuit_id?: string | undefined;
|
|
23046
23253
|
pcb_group_id?: string | undefined;
|
|
23254
|
+
soldermask_margin?: number | undefined;
|
|
23047
23255
|
port_hints?: string[] | undefined;
|
|
23048
23256
|
pcb_port_id?: string | undefined;
|
|
23049
23257
|
pcb_plated_hole_id?: string | undefined;
|
|
@@ -23086,6 +23294,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23086
23294
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23087
23295
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
23088
23296
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
23297
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
23089
23298
|
}, "strip", z.ZodTypeAny, {
|
|
23090
23299
|
x: number;
|
|
23091
23300
|
y: number;
|
|
@@ -23104,6 +23313,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23104
23313
|
subcircuit_id?: string | undefined;
|
|
23105
23314
|
pcb_group_id?: string | undefined;
|
|
23106
23315
|
hole_diameter?: number | undefined;
|
|
23316
|
+
soldermask_margin?: number | undefined;
|
|
23107
23317
|
hole_width?: number | undefined;
|
|
23108
23318
|
hole_height?: number | undefined;
|
|
23109
23319
|
port_hints?: string[] | undefined;
|
|
@@ -23125,6 +23335,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23125
23335
|
subcircuit_id?: string | undefined;
|
|
23126
23336
|
pcb_group_id?: string | undefined;
|
|
23127
23337
|
hole_diameter?: number | undefined;
|
|
23338
|
+
soldermask_margin?: number | undefined;
|
|
23128
23339
|
hole_width?: number | undefined;
|
|
23129
23340
|
hole_height?: number | undefined;
|
|
23130
23341
|
port_hints?: string[] | undefined;
|
|
@@ -23575,6 +23786,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23575
23786
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23576
23787
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
23577
23788
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
23789
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
23578
23790
|
}, "strip", z.ZodTypeAny, {
|
|
23579
23791
|
x: number;
|
|
23580
23792
|
y: number;
|
|
@@ -23586,6 +23798,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23586
23798
|
pcb_component_id?: string | undefined;
|
|
23587
23799
|
subcircuit_id?: string | undefined;
|
|
23588
23800
|
pcb_group_id?: string | undefined;
|
|
23801
|
+
soldermask_margin?: number | undefined;
|
|
23589
23802
|
port_hints?: string[] | undefined;
|
|
23590
23803
|
pcb_port_id?: string | undefined;
|
|
23591
23804
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -23601,6 +23814,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23601
23814
|
pcb_component_id?: string | undefined;
|
|
23602
23815
|
subcircuit_id?: string | undefined;
|
|
23603
23816
|
pcb_group_id?: string | undefined;
|
|
23817
|
+
soldermask_margin?: number | undefined;
|
|
23604
23818
|
port_hints?: string[] | undefined;
|
|
23605
23819
|
pcb_port_id?: string | undefined;
|
|
23606
23820
|
pcb_smtpad_id?: string | undefined;
|
|
@@ -23630,6 +23844,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23630
23844
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23631
23845
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
23632
23846
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
23847
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
23633
23848
|
}, "strip", z.ZodTypeAny, {
|
|
23634
23849
|
x: number;
|
|
23635
23850
|
y: number;
|
|
@@ -23642,6 +23857,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23642
23857
|
pcb_component_id?: string | undefined;
|
|
23643
23858
|
subcircuit_id?: string | undefined;
|
|
23644
23859
|
pcb_group_id?: string | undefined;
|
|
23860
|
+
soldermask_margin?: number | undefined;
|
|
23645
23861
|
port_hints?: string[] | undefined;
|
|
23646
23862
|
pcb_port_id?: string | undefined;
|
|
23647
23863
|
rect_border_radius?: number | undefined;
|
|
@@ -23660,6 +23876,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23660
23876
|
pcb_component_id?: string | undefined;
|
|
23661
23877
|
subcircuit_id?: string | undefined;
|
|
23662
23878
|
pcb_group_id?: string | undefined;
|
|
23879
|
+
soldermask_margin?: number | undefined;
|
|
23663
23880
|
port_hints?: string[] | undefined;
|
|
23664
23881
|
pcb_port_id?: string | undefined;
|
|
23665
23882
|
rect_border_radius?: number | undefined;
|
|
@@ -23692,6 +23909,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23692
23909
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23693
23910
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
23694
23911
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
23912
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
23695
23913
|
}, "strip", z.ZodTypeAny, {
|
|
23696
23914
|
x: number;
|
|
23697
23915
|
y: number;
|
|
@@ -23705,6 +23923,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23705
23923
|
pcb_component_id?: string | undefined;
|
|
23706
23924
|
subcircuit_id?: string | undefined;
|
|
23707
23925
|
pcb_group_id?: string | undefined;
|
|
23926
|
+
soldermask_margin?: number | undefined;
|
|
23708
23927
|
port_hints?: string[] | undefined;
|
|
23709
23928
|
pcb_port_id?: string | undefined;
|
|
23710
23929
|
rect_border_radius?: number | undefined;
|
|
@@ -23724,6 +23943,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23724
23943
|
pcb_component_id?: string | undefined;
|
|
23725
23944
|
subcircuit_id?: string | undefined;
|
|
23726
23945
|
pcb_group_id?: string | undefined;
|
|
23946
|
+
soldermask_margin?: number | undefined;
|
|
23727
23947
|
port_hints?: string[] | undefined;
|
|
23728
23948
|
pcb_port_id?: string | undefined;
|
|
23729
23949
|
rect_border_radius?: number | undefined;
|
|
@@ -23755,6 +23975,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23755
23975
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23756
23976
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
23757
23977
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
23978
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
23758
23979
|
}, "strip", z.ZodTypeAny, {
|
|
23759
23980
|
x: number;
|
|
23760
23981
|
y: number;
|
|
@@ -23769,6 +23990,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23769
23990
|
pcb_component_id?: string | undefined;
|
|
23770
23991
|
subcircuit_id?: string | undefined;
|
|
23771
23992
|
pcb_group_id?: string | undefined;
|
|
23993
|
+
soldermask_margin?: number | undefined;
|
|
23772
23994
|
port_hints?: string[] | undefined;
|
|
23773
23995
|
pcb_port_id?: string | undefined;
|
|
23774
23996
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -23787,6 +24009,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23787
24009
|
pcb_component_id?: string | undefined;
|
|
23788
24010
|
subcircuit_id?: string | undefined;
|
|
23789
24011
|
pcb_group_id?: string | undefined;
|
|
24012
|
+
soldermask_margin?: number | undefined;
|
|
23790
24013
|
port_hints?: string[] | undefined;
|
|
23791
24014
|
pcb_port_id?: string | undefined;
|
|
23792
24015
|
pcb_smtpad_id?: string | undefined;
|
|
@@ -23815,6 +24038,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23815
24038
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23816
24039
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
23817
24040
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
24041
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
23818
24042
|
}, "strip", z.ZodTypeAny, {
|
|
23819
24043
|
x: number;
|
|
23820
24044
|
y: number;
|
|
@@ -23828,6 +24052,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23828
24052
|
pcb_component_id?: string | undefined;
|
|
23829
24053
|
subcircuit_id?: string | undefined;
|
|
23830
24054
|
pcb_group_id?: string | undefined;
|
|
24055
|
+
soldermask_margin?: number | undefined;
|
|
23831
24056
|
port_hints?: string[] | undefined;
|
|
23832
24057
|
pcb_port_id?: string | undefined;
|
|
23833
24058
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -23845,6 +24070,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23845
24070
|
pcb_component_id?: string | undefined;
|
|
23846
24071
|
subcircuit_id?: string | undefined;
|
|
23847
24072
|
pcb_group_id?: string | undefined;
|
|
24073
|
+
soldermask_margin?: number | undefined;
|
|
23848
24074
|
port_hints?: string[] | undefined;
|
|
23849
24075
|
pcb_port_id?: string | undefined;
|
|
23850
24076
|
pcb_smtpad_id?: string | undefined;
|
|
@@ -23878,6 +24104,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23878
24104
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23879
24105
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
23880
24106
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
24107
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
23881
24108
|
}, "strip", z.ZodTypeAny, {
|
|
23882
24109
|
type: "pcb_smtpad";
|
|
23883
24110
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -23890,6 +24117,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23890
24117
|
pcb_component_id?: string | undefined;
|
|
23891
24118
|
subcircuit_id?: string | undefined;
|
|
23892
24119
|
pcb_group_id?: string | undefined;
|
|
24120
|
+
soldermask_margin?: number | undefined;
|
|
23893
24121
|
port_hints?: string[] | undefined;
|
|
23894
24122
|
pcb_port_id?: string | undefined;
|
|
23895
24123
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -23906,6 +24134,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23906
24134
|
pcb_component_id?: string | undefined;
|
|
23907
24135
|
subcircuit_id?: string | undefined;
|
|
23908
24136
|
pcb_group_id?: string | undefined;
|
|
24137
|
+
soldermask_margin?: number | undefined;
|
|
23909
24138
|
port_hints?: string[] | undefined;
|
|
23910
24139
|
pcb_port_id?: string | undefined;
|
|
23911
24140
|
pcb_smtpad_id?: string | undefined;
|
|
@@ -25750,6 +25979,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
25750
25979
|
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
25751
25980
|
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
25752
25981
|
rotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25982
|
+
corner_radius: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25753
25983
|
}, "strip", z.ZodTypeAny, {
|
|
25754
25984
|
type: "pcb_cutout";
|
|
25755
25985
|
width: number;
|
|
@@ -25763,6 +25993,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
25763
25993
|
rotation?: number | undefined;
|
|
25764
25994
|
subcircuit_id?: string | undefined;
|
|
25765
25995
|
pcb_group_id?: string | undefined;
|
|
25996
|
+
corner_radius?: number | undefined;
|
|
25766
25997
|
pcb_board_id?: string | undefined;
|
|
25767
25998
|
pcb_panel_id?: string | undefined;
|
|
25768
25999
|
}, {
|
|
@@ -25777,6 +26008,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
25777
26008
|
rotation?: string | number | undefined;
|
|
25778
26009
|
subcircuit_id?: string | undefined;
|
|
25779
26010
|
pcb_group_id?: string | undefined;
|
|
26011
|
+
corner_radius?: string | number | undefined;
|
|
25780
26012
|
pcb_board_id?: string | undefined;
|
|
25781
26013
|
pcb_panel_id?: string | undefined;
|
|
25782
26014
|
pcb_cutout_id?: string | undefined;
|