circuit-json 0.0.314 → 0.0.316
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -0
- package/dist/index.d.mts +245 -0
- package/dist/index.mjs +38 -18
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -482,6 +482,7 @@ declare const pcb_hole_circle: z.ZodObject<{
|
|
|
482
482
|
hole_diameter: z.ZodNumber;
|
|
483
483
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
484
484
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
485
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
485
486
|
}, "strip", z.ZodTypeAny, {
|
|
486
487
|
x: number;
|
|
487
488
|
y: number;
|
|
@@ -491,6 +492,7 @@ declare const pcb_hole_circle: z.ZodObject<{
|
|
|
491
492
|
hole_diameter: number;
|
|
492
493
|
subcircuit_id?: string | undefined;
|
|
493
494
|
pcb_group_id?: string | undefined;
|
|
495
|
+
soldermask_margin?: number | undefined;
|
|
494
496
|
}, {
|
|
495
497
|
x: string | number;
|
|
496
498
|
y: string | number;
|
|
@@ -500,6 +502,7 @@ declare const pcb_hole_circle: z.ZodObject<{
|
|
|
500
502
|
subcircuit_id?: string | undefined;
|
|
501
503
|
pcb_group_id?: string | undefined;
|
|
502
504
|
pcb_hole_id?: string | undefined;
|
|
505
|
+
soldermask_margin?: number | undefined;
|
|
503
506
|
}>;
|
|
504
507
|
declare const pcb_hole_circle_shape: z.ZodObject<{
|
|
505
508
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -510,6 +513,7 @@ declare const pcb_hole_circle_shape: z.ZodObject<{
|
|
|
510
513
|
hole_diameter: z.ZodNumber;
|
|
511
514
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
512
515
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
516
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
513
517
|
}, "strip", z.ZodTypeAny, {
|
|
514
518
|
x: number;
|
|
515
519
|
y: number;
|
|
@@ -519,6 +523,7 @@ declare const pcb_hole_circle_shape: z.ZodObject<{
|
|
|
519
523
|
hole_diameter: number;
|
|
520
524
|
subcircuit_id?: string | undefined;
|
|
521
525
|
pcb_group_id?: string | undefined;
|
|
526
|
+
soldermask_margin?: number | undefined;
|
|
522
527
|
}, {
|
|
523
528
|
x: string | number;
|
|
524
529
|
y: string | number;
|
|
@@ -528,6 +533,7 @@ declare const pcb_hole_circle_shape: z.ZodObject<{
|
|
|
528
533
|
subcircuit_id?: string | undefined;
|
|
529
534
|
pcb_group_id?: string | undefined;
|
|
530
535
|
pcb_hole_id?: string | undefined;
|
|
536
|
+
soldermask_margin?: number | undefined;
|
|
531
537
|
}>;
|
|
532
538
|
type PcbHoleCircleInput = z.input<typeof pcb_hole_circle>;
|
|
533
539
|
/**
|
|
@@ -542,6 +548,7 @@ interface PcbHoleCircle {
|
|
|
542
548
|
hole_diameter: number;
|
|
543
549
|
x: Distance;
|
|
544
550
|
y: Distance;
|
|
551
|
+
soldermask_margin?: number;
|
|
545
552
|
}
|
|
546
553
|
declare const pcb_hole_rect: z.ZodObject<{
|
|
547
554
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -553,6 +560,7 @@ declare const pcb_hole_rect: z.ZodObject<{
|
|
|
553
560
|
hole_height: z.ZodNumber;
|
|
554
561
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
555
562
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
563
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
556
564
|
}, "strip", z.ZodTypeAny, {
|
|
557
565
|
x: number;
|
|
558
566
|
y: number;
|
|
@@ -563,6 +571,7 @@ declare const pcb_hole_rect: z.ZodObject<{
|
|
|
563
571
|
hole_height: number;
|
|
564
572
|
subcircuit_id?: string | undefined;
|
|
565
573
|
pcb_group_id?: string | undefined;
|
|
574
|
+
soldermask_margin?: number | undefined;
|
|
566
575
|
}, {
|
|
567
576
|
x: string | number;
|
|
568
577
|
y: string | number;
|
|
@@ -573,6 +582,7 @@ declare const pcb_hole_rect: z.ZodObject<{
|
|
|
573
582
|
subcircuit_id?: string | undefined;
|
|
574
583
|
pcb_group_id?: string | undefined;
|
|
575
584
|
pcb_hole_id?: string | undefined;
|
|
585
|
+
soldermask_margin?: number | undefined;
|
|
576
586
|
}>;
|
|
577
587
|
declare const pcb_hole_rect_shape: z.ZodObject<{
|
|
578
588
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -584,6 +594,7 @@ declare const pcb_hole_rect_shape: z.ZodObject<{
|
|
|
584
594
|
hole_height: z.ZodNumber;
|
|
585
595
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
586
596
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
597
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
587
598
|
}, "strip", z.ZodTypeAny, {
|
|
588
599
|
x: number;
|
|
589
600
|
y: number;
|
|
@@ -594,6 +605,7 @@ declare const pcb_hole_rect_shape: z.ZodObject<{
|
|
|
594
605
|
hole_height: number;
|
|
595
606
|
subcircuit_id?: string | undefined;
|
|
596
607
|
pcb_group_id?: string | undefined;
|
|
608
|
+
soldermask_margin?: number | undefined;
|
|
597
609
|
}, {
|
|
598
610
|
x: string | number;
|
|
599
611
|
y: string | number;
|
|
@@ -604,6 +616,7 @@ declare const pcb_hole_rect_shape: z.ZodObject<{
|
|
|
604
616
|
subcircuit_id?: string | undefined;
|
|
605
617
|
pcb_group_id?: string | undefined;
|
|
606
618
|
pcb_hole_id?: string | undefined;
|
|
619
|
+
soldermask_margin?: number | undefined;
|
|
607
620
|
}>;
|
|
608
621
|
type PcbHoleRectInput = z.input<typeof pcb_hole_rect>;
|
|
609
622
|
/**
|
|
@@ -619,6 +632,7 @@ interface PcbHoleRect {
|
|
|
619
632
|
hole_height: number;
|
|
620
633
|
x: Distance;
|
|
621
634
|
y: Distance;
|
|
635
|
+
soldermask_margin?: number;
|
|
622
636
|
}
|
|
623
637
|
declare const pcb_hole_circle_or_square: z.ZodObject<{
|
|
624
638
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -629,6 +643,7 @@ declare const pcb_hole_circle_or_square: z.ZodObject<{
|
|
|
629
643
|
hole_diameter: z.ZodNumber;
|
|
630
644
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
631
645
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
646
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
632
647
|
}, "strip", z.ZodTypeAny, {
|
|
633
648
|
x: number;
|
|
634
649
|
y: number;
|
|
@@ -638,6 +653,7 @@ declare const pcb_hole_circle_or_square: z.ZodObject<{
|
|
|
638
653
|
hole_diameter: number;
|
|
639
654
|
subcircuit_id?: string | undefined;
|
|
640
655
|
pcb_group_id?: string | undefined;
|
|
656
|
+
soldermask_margin?: number | undefined;
|
|
641
657
|
}, {
|
|
642
658
|
x: string | number;
|
|
643
659
|
y: string | number;
|
|
@@ -647,6 +663,7 @@ declare const pcb_hole_circle_or_square: z.ZodObject<{
|
|
|
647
663
|
subcircuit_id?: string | undefined;
|
|
648
664
|
pcb_group_id?: string | undefined;
|
|
649
665
|
pcb_hole_id?: string | undefined;
|
|
666
|
+
soldermask_margin?: number | undefined;
|
|
650
667
|
}>;
|
|
651
668
|
declare const pcb_hole_circle_or_square_shape: z.ZodObject<{
|
|
652
669
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -657,6 +674,7 @@ declare const pcb_hole_circle_or_square_shape: z.ZodObject<{
|
|
|
657
674
|
hole_diameter: z.ZodNumber;
|
|
658
675
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
659
676
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
677
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
660
678
|
}, "strip", z.ZodTypeAny, {
|
|
661
679
|
x: number;
|
|
662
680
|
y: number;
|
|
@@ -666,6 +684,7 @@ declare const pcb_hole_circle_or_square_shape: z.ZodObject<{
|
|
|
666
684
|
hole_diameter: number;
|
|
667
685
|
subcircuit_id?: string | undefined;
|
|
668
686
|
pcb_group_id?: string | undefined;
|
|
687
|
+
soldermask_margin?: number | undefined;
|
|
669
688
|
}, {
|
|
670
689
|
x: string | number;
|
|
671
690
|
y: string | number;
|
|
@@ -675,6 +694,7 @@ declare const pcb_hole_circle_or_square_shape: z.ZodObject<{
|
|
|
675
694
|
subcircuit_id?: string | undefined;
|
|
676
695
|
pcb_group_id?: string | undefined;
|
|
677
696
|
pcb_hole_id?: string | undefined;
|
|
697
|
+
soldermask_margin?: number | undefined;
|
|
678
698
|
}>;
|
|
679
699
|
type PcbHoleCircleOrSquareInput = z.input<typeof pcb_hole_circle_or_square>;
|
|
680
700
|
/**
|
|
@@ -692,6 +712,7 @@ interface PcbHoleCircleOrSquare {
|
|
|
692
712
|
hole_diameter: number;
|
|
693
713
|
x: Distance;
|
|
694
714
|
y: Distance;
|
|
715
|
+
soldermask_margin?: number;
|
|
695
716
|
}
|
|
696
717
|
declare const pcb_hole_oval: z.ZodObject<{
|
|
697
718
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -703,6 +724,7 @@ declare const pcb_hole_oval: z.ZodObject<{
|
|
|
703
724
|
hole_height: z.ZodNumber;
|
|
704
725
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
705
726
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
727
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
706
728
|
}, "strip", z.ZodTypeAny, {
|
|
707
729
|
x: number;
|
|
708
730
|
y: number;
|
|
@@ -713,6 +735,7 @@ declare const pcb_hole_oval: z.ZodObject<{
|
|
|
713
735
|
hole_height: number;
|
|
714
736
|
subcircuit_id?: string | undefined;
|
|
715
737
|
pcb_group_id?: string | undefined;
|
|
738
|
+
soldermask_margin?: number | undefined;
|
|
716
739
|
}, {
|
|
717
740
|
x: string | number;
|
|
718
741
|
y: string | number;
|
|
@@ -723,6 +746,7 @@ declare const pcb_hole_oval: z.ZodObject<{
|
|
|
723
746
|
subcircuit_id?: string | undefined;
|
|
724
747
|
pcb_group_id?: string | undefined;
|
|
725
748
|
pcb_hole_id?: string | undefined;
|
|
749
|
+
soldermask_margin?: number | undefined;
|
|
726
750
|
}>;
|
|
727
751
|
declare const pcb_hole_oval_shape: z.ZodObject<{
|
|
728
752
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -734,6 +758,7 @@ declare const pcb_hole_oval_shape: z.ZodObject<{
|
|
|
734
758
|
hole_height: z.ZodNumber;
|
|
735
759
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
736
760
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
761
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
737
762
|
}, "strip", z.ZodTypeAny, {
|
|
738
763
|
x: number;
|
|
739
764
|
y: number;
|
|
@@ -744,6 +769,7 @@ declare const pcb_hole_oval_shape: z.ZodObject<{
|
|
|
744
769
|
hole_height: number;
|
|
745
770
|
subcircuit_id?: string | undefined;
|
|
746
771
|
pcb_group_id?: string | undefined;
|
|
772
|
+
soldermask_margin?: number | undefined;
|
|
747
773
|
}, {
|
|
748
774
|
x: string | number;
|
|
749
775
|
y: string | number;
|
|
@@ -754,6 +780,7 @@ declare const pcb_hole_oval_shape: z.ZodObject<{
|
|
|
754
780
|
subcircuit_id?: string | undefined;
|
|
755
781
|
pcb_group_id?: string | undefined;
|
|
756
782
|
pcb_hole_id?: string | undefined;
|
|
783
|
+
soldermask_margin?: number | undefined;
|
|
757
784
|
}>;
|
|
758
785
|
type PcbHoleOvalInput = z.input<typeof pcb_hole_oval>;
|
|
759
786
|
/**
|
|
@@ -769,6 +796,7 @@ interface PcbHoleOval {
|
|
|
769
796
|
hole_height: number;
|
|
770
797
|
x: Distance;
|
|
771
798
|
y: Distance;
|
|
799
|
+
soldermask_margin?: number;
|
|
772
800
|
}
|
|
773
801
|
declare const pcb_hole_pill: z.ZodObject<{
|
|
774
802
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -780,6 +808,7 @@ declare const pcb_hole_pill: z.ZodObject<{
|
|
|
780
808
|
hole_height: z.ZodNumber;
|
|
781
809
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
782
810
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
811
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
783
812
|
}, "strip", z.ZodTypeAny, {
|
|
784
813
|
x: number;
|
|
785
814
|
y: number;
|
|
@@ -790,6 +819,7 @@ declare const pcb_hole_pill: z.ZodObject<{
|
|
|
790
819
|
hole_height: number;
|
|
791
820
|
subcircuit_id?: string | undefined;
|
|
792
821
|
pcb_group_id?: string | undefined;
|
|
822
|
+
soldermask_margin?: number | undefined;
|
|
793
823
|
}, {
|
|
794
824
|
x: string | number;
|
|
795
825
|
y: string | number;
|
|
@@ -800,6 +830,7 @@ declare const pcb_hole_pill: z.ZodObject<{
|
|
|
800
830
|
subcircuit_id?: string | undefined;
|
|
801
831
|
pcb_group_id?: string | undefined;
|
|
802
832
|
pcb_hole_id?: string | undefined;
|
|
833
|
+
soldermask_margin?: number | undefined;
|
|
803
834
|
}>;
|
|
804
835
|
declare const pcb_hole_pill_shape: z.ZodObject<{
|
|
805
836
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -811,6 +842,7 @@ declare const pcb_hole_pill_shape: z.ZodObject<{
|
|
|
811
842
|
hole_height: z.ZodNumber;
|
|
812
843
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
813
844
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
845
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
814
846
|
}, "strip", z.ZodTypeAny, {
|
|
815
847
|
x: number;
|
|
816
848
|
y: number;
|
|
@@ -821,6 +853,7 @@ declare const pcb_hole_pill_shape: z.ZodObject<{
|
|
|
821
853
|
hole_height: number;
|
|
822
854
|
subcircuit_id?: string | undefined;
|
|
823
855
|
pcb_group_id?: string | undefined;
|
|
856
|
+
soldermask_margin?: number | undefined;
|
|
824
857
|
}, {
|
|
825
858
|
x: string | number;
|
|
826
859
|
y: string | number;
|
|
@@ -831,6 +864,7 @@ declare const pcb_hole_pill_shape: z.ZodObject<{
|
|
|
831
864
|
subcircuit_id?: string | undefined;
|
|
832
865
|
pcb_group_id?: string | undefined;
|
|
833
866
|
pcb_hole_id?: string | undefined;
|
|
867
|
+
soldermask_margin?: number | undefined;
|
|
834
868
|
}>;
|
|
835
869
|
type PcbHolePillInput = z.input<typeof pcb_hole_pill>;
|
|
836
870
|
/**
|
|
@@ -846,6 +880,7 @@ interface PcbHolePill {
|
|
|
846
880
|
hole_height: number;
|
|
847
881
|
x: Distance;
|
|
848
882
|
y: Distance;
|
|
883
|
+
soldermask_margin?: number;
|
|
849
884
|
}
|
|
850
885
|
declare const pcb_hole_rotated_pill: z.ZodObject<{
|
|
851
886
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -858,6 +893,7 @@ declare const pcb_hole_rotated_pill: z.ZodObject<{
|
|
|
858
893
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
859
894
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
860
895
|
ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
896
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
861
897
|
}, "strip", z.ZodTypeAny, {
|
|
862
898
|
x: number;
|
|
863
899
|
y: number;
|
|
@@ -869,6 +905,7 @@ declare const pcb_hole_rotated_pill: z.ZodObject<{
|
|
|
869
905
|
ccw_rotation: number;
|
|
870
906
|
subcircuit_id?: string | undefined;
|
|
871
907
|
pcb_group_id?: string | undefined;
|
|
908
|
+
soldermask_margin?: number | undefined;
|
|
872
909
|
}, {
|
|
873
910
|
x: string | number;
|
|
874
911
|
y: string | number;
|
|
@@ -880,6 +917,7 @@ declare const pcb_hole_rotated_pill: z.ZodObject<{
|
|
|
880
917
|
subcircuit_id?: string | undefined;
|
|
881
918
|
pcb_group_id?: string | undefined;
|
|
882
919
|
pcb_hole_id?: string | undefined;
|
|
920
|
+
soldermask_margin?: number | undefined;
|
|
883
921
|
}>;
|
|
884
922
|
declare const pcb_hole_rotated_pill_shape: z.ZodObject<{
|
|
885
923
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -892,6 +930,7 @@ declare const pcb_hole_rotated_pill_shape: z.ZodObject<{
|
|
|
892
930
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
893
931
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
894
932
|
ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
933
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
895
934
|
}, "strip", z.ZodTypeAny, {
|
|
896
935
|
x: number;
|
|
897
936
|
y: number;
|
|
@@ -903,6 +942,7 @@ declare const pcb_hole_rotated_pill_shape: z.ZodObject<{
|
|
|
903
942
|
ccw_rotation: number;
|
|
904
943
|
subcircuit_id?: string | undefined;
|
|
905
944
|
pcb_group_id?: string | undefined;
|
|
945
|
+
soldermask_margin?: number | undefined;
|
|
906
946
|
}, {
|
|
907
947
|
x: string | number;
|
|
908
948
|
y: string | number;
|
|
@@ -914,6 +954,7 @@ declare const pcb_hole_rotated_pill_shape: z.ZodObject<{
|
|
|
914
954
|
subcircuit_id?: string | undefined;
|
|
915
955
|
pcb_group_id?: string | undefined;
|
|
916
956
|
pcb_hole_id?: string | undefined;
|
|
957
|
+
soldermask_margin?: number | undefined;
|
|
917
958
|
}>;
|
|
918
959
|
type PcbHoleRotatedPillInput = z.input<typeof pcb_hole_rotated_pill>;
|
|
919
960
|
/**
|
|
@@ -930,6 +971,7 @@ interface PcbHoleRotatedPill {
|
|
|
930
971
|
x: Distance;
|
|
931
972
|
y: Distance;
|
|
932
973
|
ccw_rotation: Rotation;
|
|
974
|
+
soldermask_margin?: number;
|
|
933
975
|
}
|
|
934
976
|
declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
935
977
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -940,6 +982,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
940
982
|
hole_diameter: z.ZodNumber;
|
|
941
983
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
942
984
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
985
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
943
986
|
}, "strip", z.ZodTypeAny, {
|
|
944
987
|
x: number;
|
|
945
988
|
y: number;
|
|
@@ -949,6 +992,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
949
992
|
hole_diameter: number;
|
|
950
993
|
subcircuit_id?: string | undefined;
|
|
951
994
|
pcb_group_id?: string | undefined;
|
|
995
|
+
soldermask_margin?: number | undefined;
|
|
952
996
|
}, {
|
|
953
997
|
x: string | number;
|
|
954
998
|
y: string | number;
|
|
@@ -958,6 +1002,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
958
1002
|
subcircuit_id?: string | undefined;
|
|
959
1003
|
pcb_group_id?: string | undefined;
|
|
960
1004
|
pcb_hole_id?: string | undefined;
|
|
1005
|
+
soldermask_margin?: number | undefined;
|
|
961
1006
|
}>, z.ZodObject<{
|
|
962
1007
|
type: z.ZodLiteral<"pcb_hole">;
|
|
963
1008
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -968,6 +1013,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
968
1013
|
hole_height: z.ZodNumber;
|
|
969
1014
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
970
1015
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1016
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
971
1017
|
}, "strip", z.ZodTypeAny, {
|
|
972
1018
|
x: number;
|
|
973
1019
|
y: number;
|
|
@@ -978,6 +1024,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
978
1024
|
hole_height: number;
|
|
979
1025
|
subcircuit_id?: string | undefined;
|
|
980
1026
|
pcb_group_id?: string | undefined;
|
|
1027
|
+
soldermask_margin?: number | undefined;
|
|
981
1028
|
}, {
|
|
982
1029
|
x: string | number;
|
|
983
1030
|
y: string | number;
|
|
@@ -988,6 +1035,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
988
1035
|
subcircuit_id?: string | undefined;
|
|
989
1036
|
pcb_group_id?: string | undefined;
|
|
990
1037
|
pcb_hole_id?: string | undefined;
|
|
1038
|
+
soldermask_margin?: number | undefined;
|
|
991
1039
|
}>]>, z.ZodObject<{
|
|
992
1040
|
type: z.ZodLiteral<"pcb_hole">;
|
|
993
1041
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -998,6 +1046,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
998
1046
|
hole_height: z.ZodNumber;
|
|
999
1047
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1000
1048
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1049
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
1001
1050
|
}, "strip", z.ZodTypeAny, {
|
|
1002
1051
|
x: number;
|
|
1003
1052
|
y: number;
|
|
@@ -1008,6 +1057,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1008
1057
|
hole_height: number;
|
|
1009
1058
|
subcircuit_id?: string | undefined;
|
|
1010
1059
|
pcb_group_id?: string | undefined;
|
|
1060
|
+
soldermask_margin?: number | undefined;
|
|
1011
1061
|
}, {
|
|
1012
1062
|
x: string | number;
|
|
1013
1063
|
y: string | number;
|
|
@@ -1018,6 +1068,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1018
1068
|
subcircuit_id?: string | undefined;
|
|
1019
1069
|
pcb_group_id?: string | undefined;
|
|
1020
1070
|
pcb_hole_id?: string | undefined;
|
|
1071
|
+
soldermask_margin?: number | undefined;
|
|
1021
1072
|
}>]>, z.ZodObject<{
|
|
1022
1073
|
type: z.ZodLiteral<"pcb_hole">;
|
|
1023
1074
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -1029,6 +1080,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1029
1080
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1030
1081
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1031
1082
|
ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1083
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
1032
1084
|
}, "strip", z.ZodTypeAny, {
|
|
1033
1085
|
x: number;
|
|
1034
1086
|
y: number;
|
|
@@ -1040,6 +1092,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1040
1092
|
ccw_rotation: number;
|
|
1041
1093
|
subcircuit_id?: string | undefined;
|
|
1042
1094
|
pcb_group_id?: string | undefined;
|
|
1095
|
+
soldermask_margin?: number | undefined;
|
|
1043
1096
|
}, {
|
|
1044
1097
|
x: string | number;
|
|
1045
1098
|
y: string | number;
|
|
@@ -1051,6 +1104,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1051
1104
|
subcircuit_id?: string | undefined;
|
|
1052
1105
|
pcb_group_id?: string | undefined;
|
|
1053
1106
|
pcb_hole_id?: string | undefined;
|
|
1107
|
+
soldermask_margin?: number | undefined;
|
|
1054
1108
|
}>]>, z.ZodObject<{
|
|
1055
1109
|
type: z.ZodLiteral<"pcb_hole">;
|
|
1056
1110
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -1060,6 +1114,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1060
1114
|
hole_diameter: z.ZodNumber;
|
|
1061
1115
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1062
1116
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1117
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
1063
1118
|
}, "strip", z.ZodTypeAny, {
|
|
1064
1119
|
x: number;
|
|
1065
1120
|
y: number;
|
|
@@ -1069,6 +1124,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1069
1124
|
hole_diameter: number;
|
|
1070
1125
|
subcircuit_id?: string | undefined;
|
|
1071
1126
|
pcb_group_id?: string | undefined;
|
|
1127
|
+
soldermask_margin?: number | undefined;
|
|
1072
1128
|
}, {
|
|
1073
1129
|
x: string | number;
|
|
1074
1130
|
y: string | number;
|
|
@@ -1078,6 +1134,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1078
1134
|
subcircuit_id?: string | undefined;
|
|
1079
1135
|
pcb_group_id?: string | undefined;
|
|
1080
1136
|
pcb_hole_id?: string | undefined;
|
|
1137
|
+
soldermask_margin?: number | undefined;
|
|
1081
1138
|
}>]>, z.ZodObject<{
|
|
1082
1139
|
type: z.ZodLiteral<"pcb_hole">;
|
|
1083
1140
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -1088,6 +1145,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1088
1145
|
hole_height: z.ZodNumber;
|
|
1089
1146
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1090
1147
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1148
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
1091
1149
|
}, "strip", z.ZodTypeAny, {
|
|
1092
1150
|
x: number;
|
|
1093
1151
|
y: number;
|
|
@@ -1098,6 +1156,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1098
1156
|
hole_height: number;
|
|
1099
1157
|
subcircuit_id?: string | undefined;
|
|
1100
1158
|
pcb_group_id?: string | undefined;
|
|
1159
|
+
soldermask_margin?: number | undefined;
|
|
1101
1160
|
}, {
|
|
1102
1161
|
x: string | number;
|
|
1103
1162
|
y: string | number;
|
|
@@ -1108,6 +1167,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1108
1167
|
subcircuit_id?: string | undefined;
|
|
1109
1168
|
pcb_group_id?: string | undefined;
|
|
1110
1169
|
pcb_hole_id?: string | undefined;
|
|
1170
|
+
soldermask_margin?: number | undefined;
|
|
1111
1171
|
}>]>;
|
|
1112
1172
|
/**
|
|
1113
1173
|
* @deprecated Use PcbHoleCircleOrSquare, PcbHoleCircle, PcbHoleRect, PcbHoleOval, PcbHolePill, or PcbHoleRotatedPill
|
|
@@ -1136,6 +1196,7 @@ interface PcbPlatedHoleCircle {
|
|
|
1136
1196
|
pcb_component_id?: string;
|
|
1137
1197
|
pcb_port_id?: string;
|
|
1138
1198
|
pcb_plated_hole_id: string;
|
|
1199
|
+
soldermask_margin?: number;
|
|
1139
1200
|
}
|
|
1140
1201
|
/**
|
|
1141
1202
|
* Defines an oval or pill-shaped plated hole on the PCB
|
|
@@ -1157,6 +1218,7 @@ interface PcbPlatedHoleOval {
|
|
|
1157
1218
|
pcb_component_id?: string;
|
|
1158
1219
|
pcb_port_id?: string;
|
|
1159
1220
|
pcb_plated_hole_id: string;
|
|
1221
|
+
soldermask_margin?: number;
|
|
1160
1222
|
}
|
|
1161
1223
|
interface PcbHolePillWithRectPad {
|
|
1162
1224
|
type: "pcb_plated_hole";
|
|
@@ -1179,6 +1241,7 @@ interface PcbHolePillWithRectPad {
|
|
|
1179
1241
|
pcb_component_id?: string;
|
|
1180
1242
|
pcb_port_id?: string;
|
|
1181
1243
|
pcb_plated_hole_id: string;
|
|
1244
|
+
soldermask_margin?: number;
|
|
1182
1245
|
}
|
|
1183
1246
|
interface PcbHoleRotatedPillWithRectPad {
|
|
1184
1247
|
type: "pcb_plated_hole";
|
|
@@ -1203,6 +1266,7 @@ interface PcbHoleRotatedPillWithRectPad {
|
|
|
1203
1266
|
pcb_component_id?: string;
|
|
1204
1267
|
pcb_port_id?: string;
|
|
1205
1268
|
pcb_plated_hole_id: string;
|
|
1269
|
+
soldermask_margin?: number;
|
|
1206
1270
|
}
|
|
1207
1271
|
interface PcbHoleCircularWithRectPad {
|
|
1208
1272
|
type: "pcb_plated_hole";
|
|
@@ -1224,6 +1288,7 @@ interface PcbHoleCircularWithRectPad {
|
|
|
1224
1288
|
pcb_component_id?: string;
|
|
1225
1289
|
pcb_port_id?: string;
|
|
1226
1290
|
pcb_plated_hole_id: string;
|
|
1291
|
+
soldermask_margin?: number;
|
|
1227
1292
|
}
|
|
1228
1293
|
/**
|
|
1229
1294
|
* Defines a plated hole with a polygonal pad on the PCB
|
|
@@ -1250,6 +1315,7 @@ interface PcbHoleWithPolygonPad {
|
|
|
1250
1315
|
pcb_component_id?: string;
|
|
1251
1316
|
pcb_port_id?: string;
|
|
1252
1317
|
pcb_plated_hole_id: string;
|
|
1318
|
+
soldermask_margin?: number;
|
|
1253
1319
|
}
|
|
1254
1320
|
declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
1255
1321
|
type: z.ZodLiteral<"pcb_plated_hole">;
|
|
@@ -1273,6 +1339,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1273
1339
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
1274
1340
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
1275
1341
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1342
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
1276
1343
|
}, "strip", z.ZodTypeAny, {
|
|
1277
1344
|
x: number;
|
|
1278
1345
|
y: number;
|
|
@@ -1285,6 +1352,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1285
1352
|
pcb_component_id?: string | undefined;
|
|
1286
1353
|
subcircuit_id?: string | undefined;
|
|
1287
1354
|
pcb_group_id?: string | undefined;
|
|
1355
|
+
soldermask_margin?: number | undefined;
|
|
1288
1356
|
port_hints?: string[] | undefined;
|
|
1289
1357
|
pcb_port_id?: string | undefined;
|
|
1290
1358
|
}, {
|
|
@@ -1300,6 +1368,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1300
1368
|
pcb_component_id?: string | undefined;
|
|
1301
1369
|
subcircuit_id?: string | undefined;
|
|
1302
1370
|
pcb_group_id?: string | undefined;
|
|
1371
|
+
soldermask_margin?: number | undefined;
|
|
1303
1372
|
port_hints?: string[] | undefined;
|
|
1304
1373
|
pcb_port_id?: string | undefined;
|
|
1305
1374
|
pcb_plated_hole_id?: string | undefined;
|
|
@@ -1328,6 +1397,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1328
1397
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
1329
1398
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
1330
1399
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1400
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
1331
1401
|
}, "strip", z.ZodTypeAny, {
|
|
1332
1402
|
x: number;
|
|
1333
1403
|
y: number;
|
|
@@ -1343,6 +1413,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1343
1413
|
pcb_component_id?: string | undefined;
|
|
1344
1414
|
subcircuit_id?: string | undefined;
|
|
1345
1415
|
pcb_group_id?: string | undefined;
|
|
1416
|
+
soldermask_margin?: number | undefined;
|
|
1346
1417
|
port_hints?: string[] | undefined;
|
|
1347
1418
|
pcb_port_id?: string | undefined;
|
|
1348
1419
|
}, {
|
|
@@ -1361,6 +1432,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1361
1432
|
pcb_component_id?: string | undefined;
|
|
1362
1433
|
subcircuit_id?: string | undefined;
|
|
1363
1434
|
pcb_group_id?: string | undefined;
|
|
1435
|
+
soldermask_margin?: number | undefined;
|
|
1364
1436
|
port_hints?: string[] | undefined;
|
|
1365
1437
|
pcb_port_id?: string | undefined;
|
|
1366
1438
|
pcb_plated_hole_id?: string | undefined;
|
|
@@ -1392,6 +1464,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1392
1464
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
1393
1465
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
1394
1466
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1467
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
1395
1468
|
}, "strip", z.ZodTypeAny, {
|
|
1396
1469
|
x: number;
|
|
1397
1470
|
y: number;
|
|
@@ -1409,6 +1482,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1409
1482
|
pcb_component_id?: string | undefined;
|
|
1410
1483
|
subcircuit_id?: string | undefined;
|
|
1411
1484
|
pcb_group_id?: string | undefined;
|
|
1485
|
+
soldermask_margin?: number | undefined;
|
|
1412
1486
|
port_hints?: string[] | undefined;
|
|
1413
1487
|
pcb_port_id?: string | undefined;
|
|
1414
1488
|
rect_border_radius?: number | undefined;
|
|
@@ -1428,6 +1502,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1428
1502
|
pcb_component_id?: string | undefined;
|
|
1429
1503
|
subcircuit_id?: string | undefined;
|
|
1430
1504
|
pcb_group_id?: string | undefined;
|
|
1505
|
+
soldermask_margin?: number | undefined;
|
|
1431
1506
|
port_hints?: string[] | undefined;
|
|
1432
1507
|
pcb_port_id?: string | undefined;
|
|
1433
1508
|
pcb_plated_hole_id?: string | undefined;
|
|
@@ -1463,6 +1538,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1463
1538
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
1464
1539
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
1465
1540
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1541
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
1466
1542
|
}, "strip", z.ZodTypeAny, {
|
|
1467
1543
|
x: number;
|
|
1468
1544
|
y: number;
|
|
@@ -1481,6 +1557,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1481
1557
|
pcb_component_id?: string | undefined;
|
|
1482
1558
|
subcircuit_id?: string | undefined;
|
|
1483
1559
|
pcb_group_id?: string | undefined;
|
|
1560
|
+
soldermask_margin?: number | undefined;
|
|
1484
1561
|
port_hints?: string[] | undefined;
|
|
1485
1562
|
pcb_port_id?: string | undefined;
|
|
1486
1563
|
rect_border_radius?: number | undefined;
|
|
@@ -1501,6 +1578,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1501
1578
|
pcb_component_id?: string | undefined;
|
|
1502
1579
|
subcircuit_id?: string | undefined;
|
|
1503
1580
|
pcb_group_id?: string | undefined;
|
|
1581
|
+
soldermask_margin?: number | undefined;
|
|
1504
1582
|
port_hints?: string[] | undefined;
|
|
1505
1583
|
pcb_port_id?: string | undefined;
|
|
1506
1584
|
pcb_plated_hole_id?: string | undefined;
|
|
@@ -1538,6 +1616,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1538
1616
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
1539
1617
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
1540
1618
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1619
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
1541
1620
|
}, "strip", z.ZodTypeAny, {
|
|
1542
1621
|
x: number;
|
|
1543
1622
|
y: number;
|
|
@@ -1558,6 +1637,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1558
1637
|
pcb_component_id?: string | undefined;
|
|
1559
1638
|
subcircuit_id?: string | undefined;
|
|
1560
1639
|
pcb_group_id?: string | undefined;
|
|
1640
|
+
soldermask_margin?: number | undefined;
|
|
1561
1641
|
port_hints?: string[] | undefined;
|
|
1562
1642
|
pcb_port_id?: string | undefined;
|
|
1563
1643
|
rect_border_radius?: number | undefined;
|
|
@@ -1580,6 +1660,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1580
1660
|
pcb_component_id?: string | undefined;
|
|
1581
1661
|
subcircuit_id?: string | undefined;
|
|
1582
1662
|
pcb_group_id?: string | undefined;
|
|
1663
|
+
soldermask_margin?: number | undefined;
|
|
1583
1664
|
port_hints?: string[] | undefined;
|
|
1584
1665
|
pcb_port_id?: string | undefined;
|
|
1585
1666
|
pcb_plated_hole_id?: string | undefined;
|
|
@@ -1622,6 +1703,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1622
1703
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
1623
1704
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
1624
1705
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1706
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
1625
1707
|
}, "strip", z.ZodTypeAny, {
|
|
1626
1708
|
x: number;
|
|
1627
1709
|
y: number;
|
|
@@ -1640,6 +1722,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1640
1722
|
subcircuit_id?: string | undefined;
|
|
1641
1723
|
pcb_group_id?: string | undefined;
|
|
1642
1724
|
hole_diameter?: number | undefined;
|
|
1725
|
+
soldermask_margin?: number | undefined;
|
|
1643
1726
|
hole_width?: number | undefined;
|
|
1644
1727
|
hole_height?: number | undefined;
|
|
1645
1728
|
port_hints?: string[] | undefined;
|
|
@@ -1661,6 +1744,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1661
1744
|
subcircuit_id?: string | undefined;
|
|
1662
1745
|
pcb_group_id?: string | undefined;
|
|
1663
1746
|
hole_diameter?: number | undefined;
|
|
1747
|
+
soldermask_margin?: number | undefined;
|
|
1664
1748
|
hole_width?: number | undefined;
|
|
1665
1749
|
hole_height?: number | undefined;
|
|
1666
1750
|
port_hints?: string[] | undefined;
|
|
@@ -1773,6 +1857,7 @@ declare const pcb_smtpad_pill: z.ZodObject<{
|
|
|
1773
1857
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
1774
1858
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
1775
1859
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
1860
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
1776
1861
|
}, "strip", z.ZodTypeAny, {
|
|
1777
1862
|
x: number;
|
|
1778
1863
|
y: number;
|
|
@@ -1786,6 +1871,7 @@ declare const pcb_smtpad_pill: z.ZodObject<{
|
|
|
1786
1871
|
pcb_component_id?: string | undefined;
|
|
1787
1872
|
subcircuit_id?: string | undefined;
|
|
1788
1873
|
pcb_group_id?: string | undefined;
|
|
1874
|
+
soldermask_margin?: number | undefined;
|
|
1789
1875
|
port_hints?: string[] | undefined;
|
|
1790
1876
|
pcb_port_id?: string | undefined;
|
|
1791
1877
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -1803,6 +1889,7 @@ declare const pcb_smtpad_pill: z.ZodObject<{
|
|
|
1803
1889
|
pcb_component_id?: string | undefined;
|
|
1804
1890
|
subcircuit_id?: string | undefined;
|
|
1805
1891
|
pcb_group_id?: string | undefined;
|
|
1892
|
+
soldermask_margin?: number | undefined;
|
|
1806
1893
|
port_hints?: string[] | undefined;
|
|
1807
1894
|
pcb_port_id?: string | undefined;
|
|
1808
1895
|
pcb_smtpad_id?: string | undefined;
|
|
@@ -1830,6 +1917,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1830
1917
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
1831
1918
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
1832
1919
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
1920
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
1833
1921
|
}, "strip", z.ZodTypeAny, {
|
|
1834
1922
|
x: number;
|
|
1835
1923
|
y: number;
|
|
@@ -1841,6 +1929,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1841
1929
|
pcb_component_id?: string | undefined;
|
|
1842
1930
|
subcircuit_id?: string | undefined;
|
|
1843
1931
|
pcb_group_id?: string | undefined;
|
|
1932
|
+
soldermask_margin?: number | undefined;
|
|
1844
1933
|
port_hints?: string[] | undefined;
|
|
1845
1934
|
pcb_port_id?: string | undefined;
|
|
1846
1935
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -1856,6 +1945,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1856
1945
|
pcb_component_id?: string | undefined;
|
|
1857
1946
|
subcircuit_id?: string | undefined;
|
|
1858
1947
|
pcb_group_id?: string | undefined;
|
|
1948
|
+
soldermask_margin?: number | undefined;
|
|
1859
1949
|
port_hints?: string[] | undefined;
|
|
1860
1950
|
pcb_port_id?: string | undefined;
|
|
1861
1951
|
pcb_smtpad_id?: string | undefined;
|
|
@@ -1885,6 +1975,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1885
1975
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
1886
1976
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
1887
1977
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
1978
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
1888
1979
|
}, "strip", z.ZodTypeAny, {
|
|
1889
1980
|
x: number;
|
|
1890
1981
|
y: number;
|
|
@@ -1897,6 +1988,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1897
1988
|
pcb_component_id?: string | undefined;
|
|
1898
1989
|
subcircuit_id?: string | undefined;
|
|
1899
1990
|
pcb_group_id?: string | undefined;
|
|
1991
|
+
soldermask_margin?: number | undefined;
|
|
1900
1992
|
port_hints?: string[] | undefined;
|
|
1901
1993
|
pcb_port_id?: string | undefined;
|
|
1902
1994
|
rect_border_radius?: number | undefined;
|
|
@@ -1915,6 +2007,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1915
2007
|
pcb_component_id?: string | undefined;
|
|
1916
2008
|
subcircuit_id?: string | undefined;
|
|
1917
2009
|
pcb_group_id?: string | undefined;
|
|
2010
|
+
soldermask_margin?: number | undefined;
|
|
1918
2011
|
port_hints?: string[] | undefined;
|
|
1919
2012
|
pcb_port_id?: string | undefined;
|
|
1920
2013
|
rect_border_radius?: number | undefined;
|
|
@@ -1947,6 +2040,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1947
2040
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
1948
2041
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
1949
2042
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
2043
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
1950
2044
|
}, "strip", z.ZodTypeAny, {
|
|
1951
2045
|
x: number;
|
|
1952
2046
|
y: number;
|
|
@@ -1960,6 +2054,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1960
2054
|
pcb_component_id?: string | undefined;
|
|
1961
2055
|
subcircuit_id?: string | undefined;
|
|
1962
2056
|
pcb_group_id?: string | undefined;
|
|
2057
|
+
soldermask_margin?: number | undefined;
|
|
1963
2058
|
port_hints?: string[] | undefined;
|
|
1964
2059
|
pcb_port_id?: string | undefined;
|
|
1965
2060
|
rect_border_radius?: number | undefined;
|
|
@@ -1979,6 +2074,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1979
2074
|
pcb_component_id?: string | undefined;
|
|
1980
2075
|
subcircuit_id?: string | undefined;
|
|
1981
2076
|
pcb_group_id?: string | undefined;
|
|
2077
|
+
soldermask_margin?: number | undefined;
|
|
1982
2078
|
port_hints?: string[] | undefined;
|
|
1983
2079
|
pcb_port_id?: string | undefined;
|
|
1984
2080
|
rect_border_radius?: number | undefined;
|
|
@@ -2010,6 +2106,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2010
2106
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
2011
2107
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
2012
2108
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
2109
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
2013
2110
|
}, "strip", z.ZodTypeAny, {
|
|
2014
2111
|
x: number;
|
|
2015
2112
|
y: number;
|
|
@@ -2024,6 +2121,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2024
2121
|
pcb_component_id?: string | undefined;
|
|
2025
2122
|
subcircuit_id?: string | undefined;
|
|
2026
2123
|
pcb_group_id?: string | undefined;
|
|
2124
|
+
soldermask_margin?: number | undefined;
|
|
2027
2125
|
port_hints?: string[] | undefined;
|
|
2028
2126
|
pcb_port_id?: string | undefined;
|
|
2029
2127
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -2042,6 +2140,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2042
2140
|
pcb_component_id?: string | undefined;
|
|
2043
2141
|
subcircuit_id?: string | undefined;
|
|
2044
2142
|
pcb_group_id?: string | undefined;
|
|
2143
|
+
soldermask_margin?: number | undefined;
|
|
2045
2144
|
port_hints?: string[] | undefined;
|
|
2046
2145
|
pcb_port_id?: string | undefined;
|
|
2047
2146
|
pcb_smtpad_id?: string | undefined;
|
|
@@ -2070,6 +2169,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2070
2169
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
2071
2170
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
2072
2171
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
2172
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
2073
2173
|
}, "strip", z.ZodTypeAny, {
|
|
2074
2174
|
x: number;
|
|
2075
2175
|
y: number;
|
|
@@ -2083,6 +2183,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2083
2183
|
pcb_component_id?: string | undefined;
|
|
2084
2184
|
subcircuit_id?: string | undefined;
|
|
2085
2185
|
pcb_group_id?: string | undefined;
|
|
2186
|
+
soldermask_margin?: number | undefined;
|
|
2086
2187
|
port_hints?: string[] | undefined;
|
|
2087
2188
|
pcb_port_id?: string | undefined;
|
|
2088
2189
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -2100,6 +2201,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2100
2201
|
pcb_component_id?: string | undefined;
|
|
2101
2202
|
subcircuit_id?: string | undefined;
|
|
2102
2203
|
pcb_group_id?: string | undefined;
|
|
2204
|
+
soldermask_margin?: number | undefined;
|
|
2103
2205
|
port_hints?: string[] | undefined;
|
|
2104
2206
|
pcb_port_id?: string | undefined;
|
|
2105
2207
|
pcb_smtpad_id?: string | undefined;
|
|
@@ -2133,6 +2235,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2133
2235
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
2134
2236
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
2135
2237
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
2238
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
2136
2239
|
}, "strip", z.ZodTypeAny, {
|
|
2137
2240
|
type: "pcb_smtpad";
|
|
2138
2241
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -2145,6 +2248,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2145
2248
|
pcb_component_id?: string | undefined;
|
|
2146
2249
|
subcircuit_id?: string | undefined;
|
|
2147
2250
|
pcb_group_id?: string | undefined;
|
|
2251
|
+
soldermask_margin?: number | undefined;
|
|
2148
2252
|
port_hints?: string[] | undefined;
|
|
2149
2253
|
pcb_port_id?: string | undefined;
|
|
2150
2254
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -2161,6 +2265,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2161
2265
|
pcb_component_id?: string | undefined;
|
|
2162
2266
|
subcircuit_id?: string | undefined;
|
|
2163
2267
|
pcb_group_id?: string | undefined;
|
|
2268
|
+
soldermask_margin?: number | undefined;
|
|
2164
2269
|
port_hints?: string[] | undefined;
|
|
2165
2270
|
pcb_port_id?: string | undefined;
|
|
2166
2271
|
pcb_smtpad_id?: string | undefined;
|
|
@@ -2184,6 +2289,7 @@ interface PcbSmtPadCircle {
|
|
|
2184
2289
|
pcb_component_id?: string;
|
|
2185
2290
|
pcb_port_id?: string;
|
|
2186
2291
|
is_covered_with_solder_mask?: boolean;
|
|
2292
|
+
soldermask_margin?: number;
|
|
2187
2293
|
}
|
|
2188
2294
|
/**
|
|
2189
2295
|
* Defines a rectangular SMT pad on the PCB
|
|
@@ -2205,6 +2311,7 @@ interface PcbSmtPadRect {
|
|
|
2205
2311
|
pcb_component_id?: string;
|
|
2206
2312
|
pcb_port_id?: string;
|
|
2207
2313
|
is_covered_with_solder_mask?: boolean;
|
|
2314
|
+
soldermask_margin?: number;
|
|
2208
2315
|
}
|
|
2209
2316
|
/**
|
|
2210
2317
|
* Defines a rotated rectangular SMT pad on the PCB
|
|
@@ -2227,6 +2334,7 @@ interface PcbSmtPadRotatedRect {
|
|
|
2227
2334
|
pcb_component_id?: string;
|
|
2228
2335
|
pcb_port_id?: string;
|
|
2229
2336
|
is_covered_with_solder_mask?: boolean;
|
|
2337
|
+
soldermask_margin?: number;
|
|
2230
2338
|
}
|
|
2231
2339
|
/**
|
|
2232
2340
|
* Defines a pill-shaped SMT pad on the PCB (rounded rectangle).
|
|
@@ -2247,6 +2355,7 @@ interface PcbSmtPadPill {
|
|
|
2247
2355
|
pcb_component_id?: string;
|
|
2248
2356
|
pcb_port_id?: string;
|
|
2249
2357
|
is_covered_with_solder_mask?: boolean;
|
|
2358
|
+
soldermask_margin?: number;
|
|
2250
2359
|
}
|
|
2251
2360
|
/**
|
|
2252
2361
|
* Defines a rotated pill-shaped SMT pad on the PCB
|
|
@@ -2268,6 +2377,7 @@ interface PcbSmtPadRotatedPill {
|
|
|
2268
2377
|
pcb_component_id?: string;
|
|
2269
2378
|
pcb_port_id?: string;
|
|
2270
2379
|
is_covered_with_solder_mask?: boolean;
|
|
2380
|
+
soldermask_margin?: number;
|
|
2271
2381
|
}
|
|
2272
2382
|
/**
|
|
2273
2383
|
* Defines a polygonal SMT pad on the PCB
|
|
@@ -2284,6 +2394,7 @@ interface PcbSmtPadPolygon {
|
|
|
2284
2394
|
pcb_component_id?: string;
|
|
2285
2395
|
pcb_port_id?: string;
|
|
2286
2396
|
is_covered_with_solder_mask?: boolean;
|
|
2397
|
+
soldermask_margin?: number;
|
|
2287
2398
|
}
|
|
2288
2399
|
type PcbSmtPad = PcbSmtPadCircle | PcbSmtPadRect | PcbSmtPadRotatedRect | PcbSmtPadRotatedPill | PcbSmtPadPill | PcbSmtPadPolygon;
|
|
2289
2400
|
/**
|
|
@@ -8846,6 +8957,7 @@ interface SchematicVoltageProbe {
|
|
|
8846
8957
|
type: "schematic_voltage_probe";
|
|
8847
8958
|
schematic_voltage_probe_id: string;
|
|
8848
8959
|
source_component_id?: string;
|
|
8960
|
+
name?: string;
|
|
8849
8961
|
position: Point;
|
|
8850
8962
|
schematic_trace_id: string;
|
|
8851
8963
|
voltage?: number;
|
|
@@ -8856,6 +8968,7 @@ declare const schematic_voltage_probe: z.ZodObject<{
|
|
|
8856
8968
|
type: z.ZodLiteral<"schematic_voltage_probe">;
|
|
8857
8969
|
schematic_voltage_probe_id: z.ZodString;
|
|
8858
8970
|
source_component_id: z.ZodOptional<z.ZodString>;
|
|
8971
|
+
name: z.ZodOptional<z.ZodString>;
|
|
8859
8972
|
position: z.ZodObject<{
|
|
8860
8973
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
8861
8974
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -8878,6 +8991,7 @@ declare const schematic_voltage_probe: z.ZodObject<{
|
|
|
8878
8991
|
y: number;
|
|
8879
8992
|
};
|
|
8880
8993
|
schematic_voltage_probe_id: string;
|
|
8994
|
+
name?: string | undefined;
|
|
8881
8995
|
source_component_id?: string | undefined;
|
|
8882
8996
|
subcircuit_id?: string | undefined;
|
|
8883
8997
|
color?: string | undefined;
|
|
@@ -8890,6 +9004,7 @@ declare const schematic_voltage_probe: z.ZodObject<{
|
|
|
8890
9004
|
y: string | number;
|
|
8891
9005
|
};
|
|
8892
9006
|
schematic_voltage_probe_id: string;
|
|
9007
|
+
name?: string | undefined;
|
|
8893
9008
|
source_component_id?: string | undefined;
|
|
8894
9009
|
subcircuit_id?: string | undefined;
|
|
8895
9010
|
color?: string | undefined;
|
|
@@ -9506,6 +9621,7 @@ declare const simulation_voltage_probe: z.ZodEffects<z.ZodObject<{
|
|
|
9506
9621
|
type: z.ZodLiteral<"simulation_voltage_probe">;
|
|
9507
9622
|
simulation_voltage_probe_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
9508
9623
|
source_component_id: z.ZodOptional<z.ZodString>;
|
|
9624
|
+
name: z.ZodOptional<z.ZodString>;
|
|
9509
9625
|
source_port_id: z.ZodOptional<z.ZodString>;
|
|
9510
9626
|
source_net_id: z.ZodOptional<z.ZodString>;
|
|
9511
9627
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
@@ -9513,6 +9629,7 @@ declare const simulation_voltage_probe: z.ZodEffects<z.ZodObject<{
|
|
|
9513
9629
|
}, "strip", z.ZodTypeAny, {
|
|
9514
9630
|
type: "simulation_voltage_probe";
|
|
9515
9631
|
simulation_voltage_probe_id: string;
|
|
9632
|
+
name?: string | undefined;
|
|
9516
9633
|
source_component_id?: string | undefined;
|
|
9517
9634
|
subcircuit_id?: string | undefined;
|
|
9518
9635
|
source_port_id?: string | undefined;
|
|
@@ -9520,6 +9637,7 @@ declare const simulation_voltage_probe: z.ZodEffects<z.ZodObject<{
|
|
|
9520
9637
|
color?: string | undefined;
|
|
9521
9638
|
}, {
|
|
9522
9639
|
type: "simulation_voltage_probe";
|
|
9640
|
+
name?: string | undefined;
|
|
9523
9641
|
source_component_id?: string | undefined;
|
|
9524
9642
|
subcircuit_id?: string | undefined;
|
|
9525
9643
|
source_port_id?: string | undefined;
|
|
@@ -9529,6 +9647,7 @@ declare const simulation_voltage_probe: z.ZodEffects<z.ZodObject<{
|
|
|
9529
9647
|
}>, {
|
|
9530
9648
|
type: "simulation_voltage_probe";
|
|
9531
9649
|
simulation_voltage_probe_id: string;
|
|
9650
|
+
name?: string | undefined;
|
|
9532
9651
|
source_component_id?: string | undefined;
|
|
9533
9652
|
subcircuit_id?: string | undefined;
|
|
9534
9653
|
source_port_id?: string | undefined;
|
|
@@ -9536,6 +9655,7 @@ declare const simulation_voltage_probe: z.ZodEffects<z.ZodObject<{
|
|
|
9536
9655
|
color?: string | undefined;
|
|
9537
9656
|
}, {
|
|
9538
9657
|
type: "simulation_voltage_probe";
|
|
9658
|
+
name?: string | undefined;
|
|
9539
9659
|
source_component_id?: string | undefined;
|
|
9540
9660
|
subcircuit_id?: string | undefined;
|
|
9541
9661
|
source_port_id?: string | undefined;
|
|
@@ -9551,6 +9671,7 @@ interface SimulationVoltageProbe {
|
|
|
9551
9671
|
type: "simulation_voltage_probe";
|
|
9552
9672
|
simulation_voltage_probe_id: string;
|
|
9553
9673
|
source_component_id?: string;
|
|
9674
|
+
name?: string;
|
|
9554
9675
|
source_port_id?: string;
|
|
9555
9676
|
source_net_id?: string;
|
|
9556
9677
|
subcircuit_id?: string;
|
|
@@ -14609,6 +14730,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14609
14730
|
hole_diameter: z.ZodNumber;
|
|
14610
14731
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14611
14732
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14733
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
14612
14734
|
}, "strip", z.ZodTypeAny, {
|
|
14613
14735
|
x: number;
|
|
14614
14736
|
y: number;
|
|
@@ -14618,6 +14740,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14618
14740
|
hole_diameter: number;
|
|
14619
14741
|
subcircuit_id?: string | undefined;
|
|
14620
14742
|
pcb_group_id?: string | undefined;
|
|
14743
|
+
soldermask_margin?: number | undefined;
|
|
14621
14744
|
}, {
|
|
14622
14745
|
x: string | number;
|
|
14623
14746
|
y: string | number;
|
|
@@ -14627,6 +14750,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14627
14750
|
subcircuit_id?: string | undefined;
|
|
14628
14751
|
pcb_group_id?: string | undefined;
|
|
14629
14752
|
pcb_hole_id?: string | undefined;
|
|
14753
|
+
soldermask_margin?: number | undefined;
|
|
14630
14754
|
}>, z.ZodObject<{
|
|
14631
14755
|
type: z.ZodLiteral<"pcb_hole">;
|
|
14632
14756
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -14637,6 +14761,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14637
14761
|
hole_height: z.ZodNumber;
|
|
14638
14762
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14639
14763
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14764
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
14640
14765
|
}, "strip", z.ZodTypeAny, {
|
|
14641
14766
|
x: number;
|
|
14642
14767
|
y: number;
|
|
@@ -14647,6 +14772,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14647
14772
|
hole_height: number;
|
|
14648
14773
|
subcircuit_id?: string | undefined;
|
|
14649
14774
|
pcb_group_id?: string | undefined;
|
|
14775
|
+
soldermask_margin?: number | undefined;
|
|
14650
14776
|
}, {
|
|
14651
14777
|
x: string | number;
|
|
14652
14778
|
y: string | number;
|
|
@@ -14657,6 +14783,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14657
14783
|
subcircuit_id?: string | undefined;
|
|
14658
14784
|
pcb_group_id?: string | undefined;
|
|
14659
14785
|
pcb_hole_id?: string | undefined;
|
|
14786
|
+
soldermask_margin?: number | undefined;
|
|
14660
14787
|
}>]>, z.ZodObject<{
|
|
14661
14788
|
type: z.ZodLiteral<"pcb_hole">;
|
|
14662
14789
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -14667,6 +14794,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14667
14794
|
hole_height: z.ZodNumber;
|
|
14668
14795
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14669
14796
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14797
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
14670
14798
|
}, "strip", z.ZodTypeAny, {
|
|
14671
14799
|
x: number;
|
|
14672
14800
|
y: number;
|
|
@@ -14677,6 +14805,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14677
14805
|
hole_height: number;
|
|
14678
14806
|
subcircuit_id?: string | undefined;
|
|
14679
14807
|
pcb_group_id?: string | undefined;
|
|
14808
|
+
soldermask_margin?: number | undefined;
|
|
14680
14809
|
}, {
|
|
14681
14810
|
x: string | number;
|
|
14682
14811
|
y: string | number;
|
|
@@ -14687,6 +14816,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14687
14816
|
subcircuit_id?: string | undefined;
|
|
14688
14817
|
pcb_group_id?: string | undefined;
|
|
14689
14818
|
pcb_hole_id?: string | undefined;
|
|
14819
|
+
soldermask_margin?: number | undefined;
|
|
14690
14820
|
}>]>, z.ZodObject<{
|
|
14691
14821
|
type: z.ZodLiteral<"pcb_hole">;
|
|
14692
14822
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -14698,6 +14828,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14698
14828
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14699
14829
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14700
14830
|
ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14831
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
14701
14832
|
}, "strip", z.ZodTypeAny, {
|
|
14702
14833
|
x: number;
|
|
14703
14834
|
y: number;
|
|
@@ -14709,6 +14840,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14709
14840
|
ccw_rotation: number;
|
|
14710
14841
|
subcircuit_id?: string | undefined;
|
|
14711
14842
|
pcb_group_id?: string | undefined;
|
|
14843
|
+
soldermask_margin?: number | undefined;
|
|
14712
14844
|
}, {
|
|
14713
14845
|
x: string | number;
|
|
14714
14846
|
y: string | number;
|
|
@@ -14720,6 +14852,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14720
14852
|
subcircuit_id?: string | undefined;
|
|
14721
14853
|
pcb_group_id?: string | undefined;
|
|
14722
14854
|
pcb_hole_id?: string | undefined;
|
|
14855
|
+
soldermask_margin?: number | undefined;
|
|
14723
14856
|
}>]>, z.ZodObject<{
|
|
14724
14857
|
type: z.ZodLiteral<"pcb_hole">;
|
|
14725
14858
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -14729,6 +14862,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14729
14862
|
hole_diameter: z.ZodNumber;
|
|
14730
14863
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14731
14864
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14865
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
14732
14866
|
}, "strip", z.ZodTypeAny, {
|
|
14733
14867
|
x: number;
|
|
14734
14868
|
y: number;
|
|
@@ -14738,6 +14872,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14738
14872
|
hole_diameter: number;
|
|
14739
14873
|
subcircuit_id?: string | undefined;
|
|
14740
14874
|
pcb_group_id?: string | undefined;
|
|
14875
|
+
soldermask_margin?: number | undefined;
|
|
14741
14876
|
}, {
|
|
14742
14877
|
x: string | number;
|
|
14743
14878
|
y: string | number;
|
|
@@ -14747,6 +14882,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14747
14882
|
subcircuit_id?: string | undefined;
|
|
14748
14883
|
pcb_group_id?: string | undefined;
|
|
14749
14884
|
pcb_hole_id?: string | undefined;
|
|
14885
|
+
soldermask_margin?: number | undefined;
|
|
14750
14886
|
}>]>, z.ZodObject<{
|
|
14751
14887
|
type: z.ZodLiteral<"pcb_hole">;
|
|
14752
14888
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -14757,6 +14893,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14757
14893
|
hole_height: z.ZodNumber;
|
|
14758
14894
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14759
14895
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14896
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
14760
14897
|
}, "strip", z.ZodTypeAny, {
|
|
14761
14898
|
x: number;
|
|
14762
14899
|
y: number;
|
|
@@ -14767,6 +14904,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14767
14904
|
hole_height: number;
|
|
14768
14905
|
subcircuit_id?: string | undefined;
|
|
14769
14906
|
pcb_group_id?: string | undefined;
|
|
14907
|
+
soldermask_margin?: number | undefined;
|
|
14770
14908
|
}, {
|
|
14771
14909
|
x: string | number;
|
|
14772
14910
|
y: string | number;
|
|
@@ -14777,6 +14915,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14777
14915
|
subcircuit_id?: string | undefined;
|
|
14778
14916
|
pcb_group_id?: string | undefined;
|
|
14779
14917
|
pcb_hole_id?: string | undefined;
|
|
14918
|
+
soldermask_margin?: number | undefined;
|
|
14780
14919
|
}>]>, z.ZodObject<{
|
|
14781
14920
|
type: z.ZodLiteral<"pcb_missing_footprint_error">;
|
|
14782
14921
|
pcb_missing_footprint_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -14910,6 +15049,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14910
15049
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
14911
15050
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
14912
15051
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15052
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
14913
15053
|
}, "strip", z.ZodTypeAny, {
|
|
14914
15054
|
x: number;
|
|
14915
15055
|
y: number;
|
|
@@ -14922,6 +15062,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14922
15062
|
pcb_component_id?: string | undefined;
|
|
14923
15063
|
subcircuit_id?: string | undefined;
|
|
14924
15064
|
pcb_group_id?: string | undefined;
|
|
15065
|
+
soldermask_margin?: number | undefined;
|
|
14925
15066
|
port_hints?: string[] | undefined;
|
|
14926
15067
|
pcb_port_id?: string | undefined;
|
|
14927
15068
|
}, {
|
|
@@ -14937,6 +15078,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14937
15078
|
pcb_component_id?: string | undefined;
|
|
14938
15079
|
subcircuit_id?: string | undefined;
|
|
14939
15080
|
pcb_group_id?: string | undefined;
|
|
15081
|
+
soldermask_margin?: number | undefined;
|
|
14940
15082
|
port_hints?: string[] | undefined;
|
|
14941
15083
|
pcb_port_id?: string | undefined;
|
|
14942
15084
|
pcb_plated_hole_id?: string | undefined;
|
|
@@ -14965,6 +15107,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14965
15107
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
14966
15108
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
14967
15109
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15110
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
14968
15111
|
}, "strip", z.ZodTypeAny, {
|
|
14969
15112
|
x: number;
|
|
14970
15113
|
y: number;
|
|
@@ -14980,6 +15123,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14980
15123
|
pcb_component_id?: string | undefined;
|
|
14981
15124
|
subcircuit_id?: string | undefined;
|
|
14982
15125
|
pcb_group_id?: string | undefined;
|
|
15126
|
+
soldermask_margin?: number | undefined;
|
|
14983
15127
|
port_hints?: string[] | undefined;
|
|
14984
15128
|
pcb_port_id?: string | undefined;
|
|
14985
15129
|
}, {
|
|
@@ -14998,6 +15142,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14998
15142
|
pcb_component_id?: string | undefined;
|
|
14999
15143
|
subcircuit_id?: string | undefined;
|
|
15000
15144
|
pcb_group_id?: string | undefined;
|
|
15145
|
+
soldermask_margin?: number | undefined;
|
|
15001
15146
|
port_hints?: string[] | undefined;
|
|
15002
15147
|
pcb_port_id?: string | undefined;
|
|
15003
15148
|
pcb_plated_hole_id?: string | undefined;
|
|
@@ -15029,6 +15174,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15029
15174
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
15030
15175
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
15031
15176
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15177
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
15032
15178
|
}, "strip", z.ZodTypeAny, {
|
|
15033
15179
|
x: number;
|
|
15034
15180
|
y: number;
|
|
@@ -15046,6 +15192,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15046
15192
|
pcb_component_id?: string | undefined;
|
|
15047
15193
|
subcircuit_id?: string | undefined;
|
|
15048
15194
|
pcb_group_id?: string | undefined;
|
|
15195
|
+
soldermask_margin?: number | undefined;
|
|
15049
15196
|
port_hints?: string[] | undefined;
|
|
15050
15197
|
pcb_port_id?: string | undefined;
|
|
15051
15198
|
rect_border_radius?: number | undefined;
|
|
@@ -15065,6 +15212,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15065
15212
|
pcb_component_id?: string | undefined;
|
|
15066
15213
|
subcircuit_id?: string | undefined;
|
|
15067
15214
|
pcb_group_id?: string | undefined;
|
|
15215
|
+
soldermask_margin?: number | undefined;
|
|
15068
15216
|
port_hints?: string[] | undefined;
|
|
15069
15217
|
pcb_port_id?: string | undefined;
|
|
15070
15218
|
pcb_plated_hole_id?: string | undefined;
|
|
@@ -15100,6 +15248,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15100
15248
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
15101
15249
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
15102
15250
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15251
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
15103
15252
|
}, "strip", z.ZodTypeAny, {
|
|
15104
15253
|
x: number;
|
|
15105
15254
|
y: number;
|
|
@@ -15118,6 +15267,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15118
15267
|
pcb_component_id?: string | undefined;
|
|
15119
15268
|
subcircuit_id?: string | undefined;
|
|
15120
15269
|
pcb_group_id?: string | undefined;
|
|
15270
|
+
soldermask_margin?: number | undefined;
|
|
15121
15271
|
port_hints?: string[] | undefined;
|
|
15122
15272
|
pcb_port_id?: string | undefined;
|
|
15123
15273
|
rect_border_radius?: number | undefined;
|
|
@@ -15138,6 +15288,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15138
15288
|
pcb_component_id?: string | undefined;
|
|
15139
15289
|
subcircuit_id?: string | undefined;
|
|
15140
15290
|
pcb_group_id?: string | undefined;
|
|
15291
|
+
soldermask_margin?: number | undefined;
|
|
15141
15292
|
port_hints?: string[] | undefined;
|
|
15142
15293
|
pcb_port_id?: string | undefined;
|
|
15143
15294
|
pcb_plated_hole_id?: string | undefined;
|
|
@@ -15175,6 +15326,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15175
15326
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
15176
15327
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
15177
15328
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15329
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
15178
15330
|
}, "strip", z.ZodTypeAny, {
|
|
15179
15331
|
x: number;
|
|
15180
15332
|
y: number;
|
|
@@ -15195,6 +15347,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15195
15347
|
pcb_component_id?: string | undefined;
|
|
15196
15348
|
subcircuit_id?: string | undefined;
|
|
15197
15349
|
pcb_group_id?: string | undefined;
|
|
15350
|
+
soldermask_margin?: number | undefined;
|
|
15198
15351
|
port_hints?: string[] | undefined;
|
|
15199
15352
|
pcb_port_id?: string | undefined;
|
|
15200
15353
|
rect_border_radius?: number | undefined;
|
|
@@ -15217,6 +15370,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15217
15370
|
pcb_component_id?: string | undefined;
|
|
15218
15371
|
subcircuit_id?: string | undefined;
|
|
15219
15372
|
pcb_group_id?: string | undefined;
|
|
15373
|
+
soldermask_margin?: number | undefined;
|
|
15220
15374
|
port_hints?: string[] | undefined;
|
|
15221
15375
|
pcb_port_id?: string | undefined;
|
|
15222
15376
|
pcb_plated_hole_id?: string | undefined;
|
|
@@ -15259,6 +15413,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15259
15413
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
15260
15414
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
15261
15415
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15416
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
15262
15417
|
}, "strip", z.ZodTypeAny, {
|
|
15263
15418
|
x: number;
|
|
15264
15419
|
y: number;
|
|
@@ -15277,6 +15432,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15277
15432
|
subcircuit_id?: string | undefined;
|
|
15278
15433
|
pcb_group_id?: string | undefined;
|
|
15279
15434
|
hole_diameter?: number | undefined;
|
|
15435
|
+
soldermask_margin?: number | undefined;
|
|
15280
15436
|
hole_width?: number | undefined;
|
|
15281
15437
|
hole_height?: number | undefined;
|
|
15282
15438
|
port_hints?: string[] | undefined;
|
|
@@ -15298,6 +15454,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15298
15454
|
subcircuit_id?: string | undefined;
|
|
15299
15455
|
pcb_group_id?: string | undefined;
|
|
15300
15456
|
hole_diameter?: number | undefined;
|
|
15457
|
+
soldermask_margin?: number | undefined;
|
|
15301
15458
|
hole_width?: number | undefined;
|
|
15302
15459
|
hole_height?: number | undefined;
|
|
15303
15460
|
port_hints?: string[] | undefined;
|
|
@@ -15748,6 +15905,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15748
15905
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
15749
15906
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
15750
15907
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
15908
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
15751
15909
|
}, "strip", z.ZodTypeAny, {
|
|
15752
15910
|
x: number;
|
|
15753
15911
|
y: number;
|
|
@@ -15759,6 +15917,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15759
15917
|
pcb_component_id?: string | undefined;
|
|
15760
15918
|
subcircuit_id?: string | undefined;
|
|
15761
15919
|
pcb_group_id?: string | undefined;
|
|
15920
|
+
soldermask_margin?: number | undefined;
|
|
15762
15921
|
port_hints?: string[] | undefined;
|
|
15763
15922
|
pcb_port_id?: string | undefined;
|
|
15764
15923
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -15774,6 +15933,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15774
15933
|
pcb_component_id?: string | undefined;
|
|
15775
15934
|
subcircuit_id?: string | undefined;
|
|
15776
15935
|
pcb_group_id?: string | undefined;
|
|
15936
|
+
soldermask_margin?: number | undefined;
|
|
15777
15937
|
port_hints?: string[] | undefined;
|
|
15778
15938
|
pcb_port_id?: string | undefined;
|
|
15779
15939
|
pcb_smtpad_id?: string | undefined;
|
|
@@ -15803,6 +15963,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15803
15963
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
15804
15964
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
15805
15965
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
15966
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
15806
15967
|
}, "strip", z.ZodTypeAny, {
|
|
15807
15968
|
x: number;
|
|
15808
15969
|
y: number;
|
|
@@ -15815,6 +15976,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15815
15976
|
pcb_component_id?: string | undefined;
|
|
15816
15977
|
subcircuit_id?: string | undefined;
|
|
15817
15978
|
pcb_group_id?: string | undefined;
|
|
15979
|
+
soldermask_margin?: number | undefined;
|
|
15818
15980
|
port_hints?: string[] | undefined;
|
|
15819
15981
|
pcb_port_id?: string | undefined;
|
|
15820
15982
|
rect_border_radius?: number | undefined;
|
|
@@ -15833,6 +15995,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15833
15995
|
pcb_component_id?: string | undefined;
|
|
15834
15996
|
subcircuit_id?: string | undefined;
|
|
15835
15997
|
pcb_group_id?: string | undefined;
|
|
15998
|
+
soldermask_margin?: number | undefined;
|
|
15836
15999
|
port_hints?: string[] | undefined;
|
|
15837
16000
|
pcb_port_id?: string | undefined;
|
|
15838
16001
|
rect_border_radius?: number | undefined;
|
|
@@ -15865,6 +16028,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15865
16028
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
15866
16029
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
15867
16030
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
16031
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
15868
16032
|
}, "strip", z.ZodTypeAny, {
|
|
15869
16033
|
x: number;
|
|
15870
16034
|
y: number;
|
|
@@ -15878,6 +16042,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15878
16042
|
pcb_component_id?: string | undefined;
|
|
15879
16043
|
subcircuit_id?: string | undefined;
|
|
15880
16044
|
pcb_group_id?: string | undefined;
|
|
16045
|
+
soldermask_margin?: number | undefined;
|
|
15881
16046
|
port_hints?: string[] | undefined;
|
|
15882
16047
|
pcb_port_id?: string | undefined;
|
|
15883
16048
|
rect_border_radius?: number | undefined;
|
|
@@ -15897,6 +16062,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15897
16062
|
pcb_component_id?: string | undefined;
|
|
15898
16063
|
subcircuit_id?: string | undefined;
|
|
15899
16064
|
pcb_group_id?: string | undefined;
|
|
16065
|
+
soldermask_margin?: number | undefined;
|
|
15900
16066
|
port_hints?: string[] | undefined;
|
|
15901
16067
|
pcb_port_id?: string | undefined;
|
|
15902
16068
|
rect_border_radius?: number | undefined;
|
|
@@ -15928,6 +16094,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15928
16094
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
15929
16095
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
15930
16096
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
16097
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
15931
16098
|
}, "strip", z.ZodTypeAny, {
|
|
15932
16099
|
x: number;
|
|
15933
16100
|
y: number;
|
|
@@ -15942,6 +16109,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15942
16109
|
pcb_component_id?: string | undefined;
|
|
15943
16110
|
subcircuit_id?: string | undefined;
|
|
15944
16111
|
pcb_group_id?: string | undefined;
|
|
16112
|
+
soldermask_margin?: number | undefined;
|
|
15945
16113
|
port_hints?: string[] | undefined;
|
|
15946
16114
|
pcb_port_id?: string | undefined;
|
|
15947
16115
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -15960,6 +16128,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15960
16128
|
pcb_component_id?: string | undefined;
|
|
15961
16129
|
subcircuit_id?: string | undefined;
|
|
15962
16130
|
pcb_group_id?: string | undefined;
|
|
16131
|
+
soldermask_margin?: number | undefined;
|
|
15963
16132
|
port_hints?: string[] | undefined;
|
|
15964
16133
|
pcb_port_id?: string | undefined;
|
|
15965
16134
|
pcb_smtpad_id?: string | undefined;
|
|
@@ -15988,6 +16157,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15988
16157
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
15989
16158
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
15990
16159
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
16160
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
15991
16161
|
}, "strip", z.ZodTypeAny, {
|
|
15992
16162
|
x: number;
|
|
15993
16163
|
y: number;
|
|
@@ -16001,6 +16171,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16001
16171
|
pcb_component_id?: string | undefined;
|
|
16002
16172
|
subcircuit_id?: string | undefined;
|
|
16003
16173
|
pcb_group_id?: string | undefined;
|
|
16174
|
+
soldermask_margin?: number | undefined;
|
|
16004
16175
|
port_hints?: string[] | undefined;
|
|
16005
16176
|
pcb_port_id?: string | undefined;
|
|
16006
16177
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -16018,6 +16189,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16018
16189
|
pcb_component_id?: string | undefined;
|
|
16019
16190
|
subcircuit_id?: string | undefined;
|
|
16020
16191
|
pcb_group_id?: string | undefined;
|
|
16192
|
+
soldermask_margin?: number | undefined;
|
|
16021
16193
|
port_hints?: string[] | undefined;
|
|
16022
16194
|
pcb_port_id?: string | undefined;
|
|
16023
16195
|
pcb_smtpad_id?: string | undefined;
|
|
@@ -16051,6 +16223,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16051
16223
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
16052
16224
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
16053
16225
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
16226
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
16054
16227
|
}, "strip", z.ZodTypeAny, {
|
|
16055
16228
|
type: "pcb_smtpad";
|
|
16056
16229
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -16063,6 +16236,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16063
16236
|
pcb_component_id?: string | undefined;
|
|
16064
16237
|
subcircuit_id?: string | undefined;
|
|
16065
16238
|
pcb_group_id?: string | undefined;
|
|
16239
|
+
soldermask_margin?: number | undefined;
|
|
16066
16240
|
port_hints?: string[] | undefined;
|
|
16067
16241
|
pcb_port_id?: string | undefined;
|
|
16068
16242
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -16079,6 +16253,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16079
16253
|
pcb_component_id?: string | undefined;
|
|
16080
16254
|
subcircuit_id?: string | undefined;
|
|
16081
16255
|
pcb_group_id?: string | undefined;
|
|
16256
|
+
soldermask_margin?: number | undefined;
|
|
16082
16257
|
port_hints?: string[] | undefined;
|
|
16083
16258
|
pcb_port_id?: string | undefined;
|
|
16084
16259
|
pcb_smtpad_id?: string | undefined;
|
|
@@ -19707,6 +19882,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19707
19882
|
type: z.ZodLiteral<"schematic_voltage_probe">;
|
|
19708
19883
|
schematic_voltage_probe_id: z.ZodString;
|
|
19709
19884
|
source_component_id: z.ZodOptional<z.ZodString>;
|
|
19885
|
+
name: z.ZodOptional<z.ZodString>;
|
|
19710
19886
|
position: z.ZodObject<{
|
|
19711
19887
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
19712
19888
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -19729,6 +19905,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19729
19905
|
y: number;
|
|
19730
19906
|
};
|
|
19731
19907
|
schematic_voltage_probe_id: string;
|
|
19908
|
+
name?: string | undefined;
|
|
19732
19909
|
source_component_id?: string | undefined;
|
|
19733
19910
|
subcircuit_id?: string | undefined;
|
|
19734
19911
|
color?: string | undefined;
|
|
@@ -19741,6 +19918,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19741
19918
|
y: string | number;
|
|
19742
19919
|
};
|
|
19743
19920
|
schematic_voltage_probe_id: string;
|
|
19921
|
+
name?: string | undefined;
|
|
19744
19922
|
source_component_id?: string | undefined;
|
|
19745
19923
|
subcircuit_id?: string | undefined;
|
|
19746
19924
|
color?: string | undefined;
|
|
@@ -20242,6 +20420,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
20242
20420
|
type: z.ZodLiteral<"simulation_voltage_probe">;
|
|
20243
20421
|
simulation_voltage_probe_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
20244
20422
|
source_component_id: z.ZodOptional<z.ZodString>;
|
|
20423
|
+
name: z.ZodOptional<z.ZodString>;
|
|
20245
20424
|
source_port_id: z.ZodOptional<z.ZodString>;
|
|
20246
20425
|
source_net_id: z.ZodOptional<z.ZodString>;
|
|
20247
20426
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
@@ -20249,6 +20428,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
20249
20428
|
}, "strip", z.ZodTypeAny, {
|
|
20250
20429
|
type: "simulation_voltage_probe";
|
|
20251
20430
|
simulation_voltage_probe_id: string;
|
|
20431
|
+
name?: string | undefined;
|
|
20252
20432
|
source_component_id?: string | undefined;
|
|
20253
20433
|
subcircuit_id?: string | undefined;
|
|
20254
20434
|
source_port_id?: string | undefined;
|
|
@@ -20256,6 +20436,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
20256
20436
|
color?: string | undefined;
|
|
20257
20437
|
}, {
|
|
20258
20438
|
type: "simulation_voltage_probe";
|
|
20439
|
+
name?: string | undefined;
|
|
20259
20440
|
source_component_id?: string | undefined;
|
|
20260
20441
|
subcircuit_id?: string | undefined;
|
|
20261
20442
|
source_port_id?: string | undefined;
|
|
@@ -20265,6 +20446,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
20265
20446
|
}>, {
|
|
20266
20447
|
type: "simulation_voltage_probe";
|
|
20267
20448
|
simulation_voltage_probe_id: string;
|
|
20449
|
+
name?: string | undefined;
|
|
20268
20450
|
source_component_id?: string | undefined;
|
|
20269
20451
|
subcircuit_id?: string | undefined;
|
|
20270
20452
|
source_port_id?: string | undefined;
|
|
@@ -20272,6 +20454,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
20272
20454
|
color?: string | undefined;
|
|
20273
20455
|
}, {
|
|
20274
20456
|
type: "simulation_voltage_probe";
|
|
20457
|
+
name?: string | undefined;
|
|
20275
20458
|
source_component_id?: string | undefined;
|
|
20276
20459
|
subcircuit_id?: string | undefined;
|
|
20277
20460
|
source_port_id?: string | undefined;
|
|
@@ -22418,6 +22601,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22418
22601
|
hole_diameter: z.ZodNumber;
|
|
22419
22602
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22420
22603
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22604
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22421
22605
|
}, "strip", z.ZodTypeAny, {
|
|
22422
22606
|
x: number;
|
|
22423
22607
|
y: number;
|
|
@@ -22427,6 +22611,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22427
22611
|
hole_diameter: number;
|
|
22428
22612
|
subcircuit_id?: string | undefined;
|
|
22429
22613
|
pcb_group_id?: string | undefined;
|
|
22614
|
+
soldermask_margin?: number | undefined;
|
|
22430
22615
|
}, {
|
|
22431
22616
|
x: string | number;
|
|
22432
22617
|
y: string | number;
|
|
@@ -22436,6 +22621,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22436
22621
|
subcircuit_id?: string | undefined;
|
|
22437
22622
|
pcb_group_id?: string | undefined;
|
|
22438
22623
|
pcb_hole_id?: string | undefined;
|
|
22624
|
+
soldermask_margin?: number | undefined;
|
|
22439
22625
|
}>, z.ZodObject<{
|
|
22440
22626
|
type: z.ZodLiteral<"pcb_hole">;
|
|
22441
22627
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -22446,6 +22632,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22446
22632
|
hole_height: z.ZodNumber;
|
|
22447
22633
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22448
22634
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22635
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22449
22636
|
}, "strip", z.ZodTypeAny, {
|
|
22450
22637
|
x: number;
|
|
22451
22638
|
y: number;
|
|
@@ -22456,6 +22643,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22456
22643
|
hole_height: number;
|
|
22457
22644
|
subcircuit_id?: string | undefined;
|
|
22458
22645
|
pcb_group_id?: string | undefined;
|
|
22646
|
+
soldermask_margin?: number | undefined;
|
|
22459
22647
|
}, {
|
|
22460
22648
|
x: string | number;
|
|
22461
22649
|
y: string | number;
|
|
@@ -22466,6 +22654,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22466
22654
|
subcircuit_id?: string | undefined;
|
|
22467
22655
|
pcb_group_id?: string | undefined;
|
|
22468
22656
|
pcb_hole_id?: string | undefined;
|
|
22657
|
+
soldermask_margin?: number | undefined;
|
|
22469
22658
|
}>]>, z.ZodObject<{
|
|
22470
22659
|
type: z.ZodLiteral<"pcb_hole">;
|
|
22471
22660
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -22476,6 +22665,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22476
22665
|
hole_height: z.ZodNumber;
|
|
22477
22666
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22478
22667
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22668
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22479
22669
|
}, "strip", z.ZodTypeAny, {
|
|
22480
22670
|
x: number;
|
|
22481
22671
|
y: number;
|
|
@@ -22486,6 +22676,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22486
22676
|
hole_height: number;
|
|
22487
22677
|
subcircuit_id?: string | undefined;
|
|
22488
22678
|
pcb_group_id?: string | undefined;
|
|
22679
|
+
soldermask_margin?: number | undefined;
|
|
22489
22680
|
}, {
|
|
22490
22681
|
x: string | number;
|
|
22491
22682
|
y: string | number;
|
|
@@ -22496,6 +22687,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22496
22687
|
subcircuit_id?: string | undefined;
|
|
22497
22688
|
pcb_group_id?: string | undefined;
|
|
22498
22689
|
pcb_hole_id?: string | undefined;
|
|
22690
|
+
soldermask_margin?: number | undefined;
|
|
22499
22691
|
}>]>, z.ZodObject<{
|
|
22500
22692
|
type: z.ZodLiteral<"pcb_hole">;
|
|
22501
22693
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -22507,6 +22699,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22507
22699
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22508
22700
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22509
22701
|
ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22702
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22510
22703
|
}, "strip", z.ZodTypeAny, {
|
|
22511
22704
|
x: number;
|
|
22512
22705
|
y: number;
|
|
@@ -22518,6 +22711,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22518
22711
|
ccw_rotation: number;
|
|
22519
22712
|
subcircuit_id?: string | undefined;
|
|
22520
22713
|
pcb_group_id?: string | undefined;
|
|
22714
|
+
soldermask_margin?: number | undefined;
|
|
22521
22715
|
}, {
|
|
22522
22716
|
x: string | number;
|
|
22523
22717
|
y: string | number;
|
|
@@ -22529,6 +22723,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22529
22723
|
subcircuit_id?: string | undefined;
|
|
22530
22724
|
pcb_group_id?: string | undefined;
|
|
22531
22725
|
pcb_hole_id?: string | undefined;
|
|
22726
|
+
soldermask_margin?: number | undefined;
|
|
22532
22727
|
}>]>, z.ZodObject<{
|
|
22533
22728
|
type: z.ZodLiteral<"pcb_hole">;
|
|
22534
22729
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -22538,6 +22733,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22538
22733
|
hole_diameter: z.ZodNumber;
|
|
22539
22734
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22540
22735
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22736
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22541
22737
|
}, "strip", z.ZodTypeAny, {
|
|
22542
22738
|
x: number;
|
|
22543
22739
|
y: number;
|
|
@@ -22547,6 +22743,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22547
22743
|
hole_diameter: number;
|
|
22548
22744
|
subcircuit_id?: string | undefined;
|
|
22549
22745
|
pcb_group_id?: string | undefined;
|
|
22746
|
+
soldermask_margin?: number | undefined;
|
|
22550
22747
|
}, {
|
|
22551
22748
|
x: string | number;
|
|
22552
22749
|
y: string | number;
|
|
@@ -22556,6 +22753,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22556
22753
|
subcircuit_id?: string | undefined;
|
|
22557
22754
|
pcb_group_id?: string | undefined;
|
|
22558
22755
|
pcb_hole_id?: string | undefined;
|
|
22756
|
+
soldermask_margin?: number | undefined;
|
|
22559
22757
|
}>]>, z.ZodObject<{
|
|
22560
22758
|
type: z.ZodLiteral<"pcb_hole">;
|
|
22561
22759
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -22566,6 +22764,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22566
22764
|
hole_height: z.ZodNumber;
|
|
22567
22765
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22568
22766
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22767
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22569
22768
|
}, "strip", z.ZodTypeAny, {
|
|
22570
22769
|
x: number;
|
|
22571
22770
|
y: number;
|
|
@@ -22576,6 +22775,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22576
22775
|
hole_height: number;
|
|
22577
22776
|
subcircuit_id?: string | undefined;
|
|
22578
22777
|
pcb_group_id?: string | undefined;
|
|
22778
|
+
soldermask_margin?: number | undefined;
|
|
22579
22779
|
}, {
|
|
22580
22780
|
x: string | number;
|
|
22581
22781
|
y: string | number;
|
|
@@ -22586,6 +22786,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22586
22786
|
subcircuit_id?: string | undefined;
|
|
22587
22787
|
pcb_group_id?: string | undefined;
|
|
22588
22788
|
pcb_hole_id?: string | undefined;
|
|
22789
|
+
soldermask_margin?: number | undefined;
|
|
22589
22790
|
}>]>, z.ZodObject<{
|
|
22590
22791
|
type: z.ZodLiteral<"pcb_missing_footprint_error">;
|
|
22591
22792
|
pcb_missing_footprint_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -22719,6 +22920,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22719
22920
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
22720
22921
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
22721
22922
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
22923
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22722
22924
|
}, "strip", z.ZodTypeAny, {
|
|
22723
22925
|
x: number;
|
|
22724
22926
|
y: number;
|
|
@@ -22731,6 +22933,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22731
22933
|
pcb_component_id?: string | undefined;
|
|
22732
22934
|
subcircuit_id?: string | undefined;
|
|
22733
22935
|
pcb_group_id?: string | undefined;
|
|
22936
|
+
soldermask_margin?: number | undefined;
|
|
22734
22937
|
port_hints?: string[] | undefined;
|
|
22735
22938
|
pcb_port_id?: string | undefined;
|
|
22736
22939
|
}, {
|
|
@@ -22746,6 +22949,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22746
22949
|
pcb_component_id?: string | undefined;
|
|
22747
22950
|
subcircuit_id?: string | undefined;
|
|
22748
22951
|
pcb_group_id?: string | undefined;
|
|
22952
|
+
soldermask_margin?: number | undefined;
|
|
22749
22953
|
port_hints?: string[] | undefined;
|
|
22750
22954
|
pcb_port_id?: string | undefined;
|
|
22751
22955
|
pcb_plated_hole_id?: string | undefined;
|
|
@@ -22774,6 +22978,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22774
22978
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
22775
22979
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
22776
22980
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
22981
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22777
22982
|
}, "strip", z.ZodTypeAny, {
|
|
22778
22983
|
x: number;
|
|
22779
22984
|
y: number;
|
|
@@ -22789,6 +22994,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22789
22994
|
pcb_component_id?: string | undefined;
|
|
22790
22995
|
subcircuit_id?: string | undefined;
|
|
22791
22996
|
pcb_group_id?: string | undefined;
|
|
22997
|
+
soldermask_margin?: number | undefined;
|
|
22792
22998
|
port_hints?: string[] | undefined;
|
|
22793
22999
|
pcb_port_id?: string | undefined;
|
|
22794
23000
|
}, {
|
|
@@ -22807,6 +23013,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22807
23013
|
pcb_component_id?: string | undefined;
|
|
22808
23014
|
subcircuit_id?: string | undefined;
|
|
22809
23015
|
pcb_group_id?: string | undefined;
|
|
23016
|
+
soldermask_margin?: number | undefined;
|
|
22810
23017
|
port_hints?: string[] | undefined;
|
|
22811
23018
|
pcb_port_id?: string | undefined;
|
|
22812
23019
|
pcb_plated_hole_id?: string | undefined;
|
|
@@ -22838,6 +23045,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22838
23045
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
22839
23046
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
22840
23047
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
23048
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22841
23049
|
}, "strip", z.ZodTypeAny, {
|
|
22842
23050
|
x: number;
|
|
22843
23051
|
y: number;
|
|
@@ -22855,6 +23063,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22855
23063
|
pcb_component_id?: string | undefined;
|
|
22856
23064
|
subcircuit_id?: string | undefined;
|
|
22857
23065
|
pcb_group_id?: string | undefined;
|
|
23066
|
+
soldermask_margin?: number | undefined;
|
|
22858
23067
|
port_hints?: string[] | undefined;
|
|
22859
23068
|
pcb_port_id?: string | undefined;
|
|
22860
23069
|
rect_border_radius?: number | undefined;
|
|
@@ -22874,6 +23083,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22874
23083
|
pcb_component_id?: string | undefined;
|
|
22875
23084
|
subcircuit_id?: string | undefined;
|
|
22876
23085
|
pcb_group_id?: string | undefined;
|
|
23086
|
+
soldermask_margin?: number | undefined;
|
|
22877
23087
|
port_hints?: string[] | undefined;
|
|
22878
23088
|
pcb_port_id?: string | undefined;
|
|
22879
23089
|
pcb_plated_hole_id?: string | undefined;
|
|
@@ -22909,6 +23119,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22909
23119
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
22910
23120
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
22911
23121
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
23122
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22912
23123
|
}, "strip", z.ZodTypeAny, {
|
|
22913
23124
|
x: number;
|
|
22914
23125
|
y: number;
|
|
@@ -22927,6 +23138,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22927
23138
|
pcb_component_id?: string | undefined;
|
|
22928
23139
|
subcircuit_id?: string | undefined;
|
|
22929
23140
|
pcb_group_id?: string | undefined;
|
|
23141
|
+
soldermask_margin?: number | undefined;
|
|
22930
23142
|
port_hints?: string[] | undefined;
|
|
22931
23143
|
pcb_port_id?: string | undefined;
|
|
22932
23144
|
rect_border_radius?: number | undefined;
|
|
@@ -22947,6 +23159,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22947
23159
|
pcb_component_id?: string | undefined;
|
|
22948
23160
|
subcircuit_id?: string | undefined;
|
|
22949
23161
|
pcb_group_id?: string | undefined;
|
|
23162
|
+
soldermask_margin?: number | undefined;
|
|
22950
23163
|
port_hints?: string[] | undefined;
|
|
22951
23164
|
pcb_port_id?: string | undefined;
|
|
22952
23165
|
pcb_plated_hole_id?: string | undefined;
|
|
@@ -22984,6 +23197,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22984
23197
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
22985
23198
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
22986
23199
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
23200
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
22987
23201
|
}, "strip", z.ZodTypeAny, {
|
|
22988
23202
|
x: number;
|
|
22989
23203
|
y: number;
|
|
@@ -23004,6 +23218,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23004
23218
|
pcb_component_id?: string | undefined;
|
|
23005
23219
|
subcircuit_id?: string | undefined;
|
|
23006
23220
|
pcb_group_id?: string | undefined;
|
|
23221
|
+
soldermask_margin?: number | undefined;
|
|
23007
23222
|
port_hints?: string[] | undefined;
|
|
23008
23223
|
pcb_port_id?: string | undefined;
|
|
23009
23224
|
rect_border_radius?: number | undefined;
|
|
@@ -23026,6 +23241,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23026
23241
|
pcb_component_id?: string | undefined;
|
|
23027
23242
|
subcircuit_id?: string | undefined;
|
|
23028
23243
|
pcb_group_id?: string | undefined;
|
|
23244
|
+
soldermask_margin?: number | undefined;
|
|
23029
23245
|
port_hints?: string[] | undefined;
|
|
23030
23246
|
pcb_port_id?: string | undefined;
|
|
23031
23247
|
pcb_plated_hole_id?: string | undefined;
|
|
@@ -23068,6 +23284,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23068
23284
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23069
23285
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
23070
23286
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
23287
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
23071
23288
|
}, "strip", z.ZodTypeAny, {
|
|
23072
23289
|
x: number;
|
|
23073
23290
|
y: number;
|
|
@@ -23086,6 +23303,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23086
23303
|
subcircuit_id?: string | undefined;
|
|
23087
23304
|
pcb_group_id?: string | undefined;
|
|
23088
23305
|
hole_diameter?: number | undefined;
|
|
23306
|
+
soldermask_margin?: number | undefined;
|
|
23089
23307
|
hole_width?: number | undefined;
|
|
23090
23308
|
hole_height?: number | undefined;
|
|
23091
23309
|
port_hints?: string[] | undefined;
|
|
@@ -23107,6 +23325,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23107
23325
|
subcircuit_id?: string | undefined;
|
|
23108
23326
|
pcb_group_id?: string | undefined;
|
|
23109
23327
|
hole_diameter?: number | undefined;
|
|
23328
|
+
soldermask_margin?: number | undefined;
|
|
23110
23329
|
hole_width?: number | undefined;
|
|
23111
23330
|
hole_height?: number | undefined;
|
|
23112
23331
|
port_hints?: string[] | undefined;
|
|
@@ -23557,6 +23776,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23557
23776
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23558
23777
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
23559
23778
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
23779
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
23560
23780
|
}, "strip", z.ZodTypeAny, {
|
|
23561
23781
|
x: number;
|
|
23562
23782
|
y: number;
|
|
@@ -23568,6 +23788,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23568
23788
|
pcb_component_id?: string | undefined;
|
|
23569
23789
|
subcircuit_id?: string | undefined;
|
|
23570
23790
|
pcb_group_id?: string | undefined;
|
|
23791
|
+
soldermask_margin?: number | undefined;
|
|
23571
23792
|
port_hints?: string[] | undefined;
|
|
23572
23793
|
pcb_port_id?: string | undefined;
|
|
23573
23794
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -23583,6 +23804,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23583
23804
|
pcb_component_id?: string | undefined;
|
|
23584
23805
|
subcircuit_id?: string | undefined;
|
|
23585
23806
|
pcb_group_id?: string | undefined;
|
|
23807
|
+
soldermask_margin?: number | undefined;
|
|
23586
23808
|
port_hints?: string[] | undefined;
|
|
23587
23809
|
pcb_port_id?: string | undefined;
|
|
23588
23810
|
pcb_smtpad_id?: string | undefined;
|
|
@@ -23612,6 +23834,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23612
23834
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23613
23835
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
23614
23836
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
23837
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
23615
23838
|
}, "strip", z.ZodTypeAny, {
|
|
23616
23839
|
x: number;
|
|
23617
23840
|
y: number;
|
|
@@ -23624,6 +23847,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23624
23847
|
pcb_component_id?: string | undefined;
|
|
23625
23848
|
subcircuit_id?: string | undefined;
|
|
23626
23849
|
pcb_group_id?: string | undefined;
|
|
23850
|
+
soldermask_margin?: number | undefined;
|
|
23627
23851
|
port_hints?: string[] | undefined;
|
|
23628
23852
|
pcb_port_id?: string | undefined;
|
|
23629
23853
|
rect_border_radius?: number | undefined;
|
|
@@ -23642,6 +23866,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23642
23866
|
pcb_component_id?: string | undefined;
|
|
23643
23867
|
subcircuit_id?: string | undefined;
|
|
23644
23868
|
pcb_group_id?: string | undefined;
|
|
23869
|
+
soldermask_margin?: number | undefined;
|
|
23645
23870
|
port_hints?: string[] | undefined;
|
|
23646
23871
|
pcb_port_id?: string | undefined;
|
|
23647
23872
|
rect_border_radius?: number | undefined;
|
|
@@ -23674,6 +23899,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23674
23899
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23675
23900
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
23676
23901
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
23902
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
23677
23903
|
}, "strip", z.ZodTypeAny, {
|
|
23678
23904
|
x: number;
|
|
23679
23905
|
y: number;
|
|
@@ -23687,6 +23913,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23687
23913
|
pcb_component_id?: string | undefined;
|
|
23688
23914
|
subcircuit_id?: string | undefined;
|
|
23689
23915
|
pcb_group_id?: string | undefined;
|
|
23916
|
+
soldermask_margin?: number | undefined;
|
|
23690
23917
|
port_hints?: string[] | undefined;
|
|
23691
23918
|
pcb_port_id?: string | undefined;
|
|
23692
23919
|
rect_border_radius?: number | undefined;
|
|
@@ -23706,6 +23933,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23706
23933
|
pcb_component_id?: string | undefined;
|
|
23707
23934
|
subcircuit_id?: string | undefined;
|
|
23708
23935
|
pcb_group_id?: string | undefined;
|
|
23936
|
+
soldermask_margin?: number | undefined;
|
|
23709
23937
|
port_hints?: string[] | undefined;
|
|
23710
23938
|
pcb_port_id?: string | undefined;
|
|
23711
23939
|
rect_border_radius?: number | undefined;
|
|
@@ -23737,6 +23965,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23737
23965
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23738
23966
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
23739
23967
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
23968
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
23740
23969
|
}, "strip", z.ZodTypeAny, {
|
|
23741
23970
|
x: number;
|
|
23742
23971
|
y: number;
|
|
@@ -23751,6 +23980,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23751
23980
|
pcb_component_id?: string | undefined;
|
|
23752
23981
|
subcircuit_id?: string | undefined;
|
|
23753
23982
|
pcb_group_id?: string | undefined;
|
|
23983
|
+
soldermask_margin?: number | undefined;
|
|
23754
23984
|
port_hints?: string[] | undefined;
|
|
23755
23985
|
pcb_port_id?: string | undefined;
|
|
23756
23986
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -23769,6 +23999,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23769
23999
|
pcb_component_id?: string | undefined;
|
|
23770
24000
|
subcircuit_id?: string | undefined;
|
|
23771
24001
|
pcb_group_id?: string | undefined;
|
|
24002
|
+
soldermask_margin?: number | undefined;
|
|
23772
24003
|
port_hints?: string[] | undefined;
|
|
23773
24004
|
pcb_port_id?: string | undefined;
|
|
23774
24005
|
pcb_smtpad_id?: string | undefined;
|
|
@@ -23797,6 +24028,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23797
24028
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23798
24029
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
23799
24030
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
24031
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
23800
24032
|
}, "strip", z.ZodTypeAny, {
|
|
23801
24033
|
x: number;
|
|
23802
24034
|
y: number;
|
|
@@ -23810,6 +24042,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23810
24042
|
pcb_component_id?: string | undefined;
|
|
23811
24043
|
subcircuit_id?: string | undefined;
|
|
23812
24044
|
pcb_group_id?: string | undefined;
|
|
24045
|
+
soldermask_margin?: number | undefined;
|
|
23813
24046
|
port_hints?: string[] | undefined;
|
|
23814
24047
|
pcb_port_id?: string | undefined;
|
|
23815
24048
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -23827,6 +24060,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23827
24060
|
pcb_component_id?: string | undefined;
|
|
23828
24061
|
subcircuit_id?: string | undefined;
|
|
23829
24062
|
pcb_group_id?: string | undefined;
|
|
24063
|
+
soldermask_margin?: number | undefined;
|
|
23830
24064
|
port_hints?: string[] | undefined;
|
|
23831
24065
|
pcb_port_id?: string | undefined;
|
|
23832
24066
|
pcb_smtpad_id?: string | undefined;
|
|
@@ -23860,6 +24094,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23860
24094
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23861
24095
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
23862
24096
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
24097
|
+
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
23863
24098
|
}, "strip", z.ZodTypeAny, {
|
|
23864
24099
|
type: "pcb_smtpad";
|
|
23865
24100
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -23872,6 +24107,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23872
24107
|
pcb_component_id?: string | undefined;
|
|
23873
24108
|
subcircuit_id?: string | undefined;
|
|
23874
24109
|
pcb_group_id?: string | undefined;
|
|
24110
|
+
soldermask_margin?: number | undefined;
|
|
23875
24111
|
port_hints?: string[] | undefined;
|
|
23876
24112
|
pcb_port_id?: string | undefined;
|
|
23877
24113
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -23888,6 +24124,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23888
24124
|
pcb_component_id?: string | undefined;
|
|
23889
24125
|
subcircuit_id?: string | undefined;
|
|
23890
24126
|
pcb_group_id?: string | undefined;
|
|
24127
|
+
soldermask_margin?: number | undefined;
|
|
23891
24128
|
port_hints?: string[] | undefined;
|
|
23892
24129
|
pcb_port_id?: string | undefined;
|
|
23893
24130
|
pcb_smtpad_id?: string | undefined;
|
|
@@ -27516,6 +27753,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27516
27753
|
type: z.ZodLiteral<"schematic_voltage_probe">;
|
|
27517
27754
|
schematic_voltage_probe_id: z.ZodString;
|
|
27518
27755
|
source_component_id: z.ZodOptional<z.ZodString>;
|
|
27756
|
+
name: z.ZodOptional<z.ZodString>;
|
|
27519
27757
|
position: z.ZodObject<{
|
|
27520
27758
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
27521
27759
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -27538,6 +27776,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27538
27776
|
y: number;
|
|
27539
27777
|
};
|
|
27540
27778
|
schematic_voltage_probe_id: string;
|
|
27779
|
+
name?: string | undefined;
|
|
27541
27780
|
source_component_id?: string | undefined;
|
|
27542
27781
|
subcircuit_id?: string | undefined;
|
|
27543
27782
|
color?: string | undefined;
|
|
@@ -27550,6 +27789,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27550
27789
|
y: string | number;
|
|
27551
27790
|
};
|
|
27552
27791
|
schematic_voltage_probe_id: string;
|
|
27792
|
+
name?: string | undefined;
|
|
27553
27793
|
source_component_id?: string | undefined;
|
|
27554
27794
|
subcircuit_id?: string | undefined;
|
|
27555
27795
|
color?: string | undefined;
|
|
@@ -28051,6 +28291,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
28051
28291
|
type: z.ZodLiteral<"simulation_voltage_probe">;
|
|
28052
28292
|
simulation_voltage_probe_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
28053
28293
|
source_component_id: z.ZodOptional<z.ZodString>;
|
|
28294
|
+
name: z.ZodOptional<z.ZodString>;
|
|
28054
28295
|
source_port_id: z.ZodOptional<z.ZodString>;
|
|
28055
28296
|
source_net_id: z.ZodOptional<z.ZodString>;
|
|
28056
28297
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
@@ -28058,6 +28299,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
28058
28299
|
}, "strip", z.ZodTypeAny, {
|
|
28059
28300
|
type: "simulation_voltage_probe";
|
|
28060
28301
|
simulation_voltage_probe_id: string;
|
|
28302
|
+
name?: string | undefined;
|
|
28061
28303
|
source_component_id?: string | undefined;
|
|
28062
28304
|
subcircuit_id?: string | undefined;
|
|
28063
28305
|
source_port_id?: string | undefined;
|
|
@@ -28065,6 +28307,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
28065
28307
|
color?: string | undefined;
|
|
28066
28308
|
}, {
|
|
28067
28309
|
type: "simulation_voltage_probe";
|
|
28310
|
+
name?: string | undefined;
|
|
28068
28311
|
source_component_id?: string | undefined;
|
|
28069
28312
|
subcircuit_id?: string | undefined;
|
|
28070
28313
|
source_port_id?: string | undefined;
|
|
@@ -28074,6 +28317,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
28074
28317
|
}>, {
|
|
28075
28318
|
type: "simulation_voltage_probe";
|
|
28076
28319
|
simulation_voltage_probe_id: string;
|
|
28320
|
+
name?: string | undefined;
|
|
28077
28321
|
source_component_id?: string | undefined;
|
|
28078
28322
|
subcircuit_id?: string | undefined;
|
|
28079
28323
|
source_port_id?: string | undefined;
|
|
@@ -28081,6 +28325,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
28081
28325
|
color?: string | undefined;
|
|
28082
28326
|
}, {
|
|
28083
28327
|
type: "simulation_voltage_probe";
|
|
28328
|
+
name?: string | undefined;
|
|
28084
28329
|
source_component_id?: string | undefined;
|
|
28085
28330
|
subcircuit_id?: string | undefined;
|
|
28086
28331
|
source_port_id?: string | undefined;
|