circuit-json 0.0.334 → 0.0.336
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 +15 -0
- package/dist/index.d.mts +255 -2
- package/dist/index.mjs +1304 -1289
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -490,6 +490,7 @@ declare const pcb_hole_circle: z.ZodObject<{
|
|
|
490
490
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
491
491
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
492
492
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
493
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
493
494
|
hole_shape: z.ZodLiteral<"circle">;
|
|
494
495
|
hole_diameter: z.ZodNumber;
|
|
495
496
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -503,6 +504,7 @@ declare const pcb_hole_circle: z.ZodObject<{
|
|
|
503
504
|
pcb_hole_id: string;
|
|
504
505
|
hole_shape: "circle";
|
|
505
506
|
hole_diameter: number;
|
|
507
|
+
pcb_component_id?: string | undefined;
|
|
506
508
|
subcircuit_id?: string | undefined;
|
|
507
509
|
pcb_group_id?: string | undefined;
|
|
508
510
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -513,6 +515,7 @@ declare const pcb_hole_circle: z.ZodObject<{
|
|
|
513
515
|
type: "pcb_hole";
|
|
514
516
|
hole_shape: "circle";
|
|
515
517
|
hole_diameter: number;
|
|
518
|
+
pcb_component_id?: string | undefined;
|
|
516
519
|
subcircuit_id?: string | undefined;
|
|
517
520
|
pcb_group_id?: string | undefined;
|
|
518
521
|
pcb_hole_id?: string | undefined;
|
|
@@ -524,6 +527,7 @@ declare const pcb_hole_circle_shape: z.ZodObject<{
|
|
|
524
527
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
525
528
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
526
529
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
530
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
527
531
|
hole_shape: z.ZodLiteral<"circle">;
|
|
528
532
|
hole_diameter: z.ZodNumber;
|
|
529
533
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -537,6 +541,7 @@ declare const pcb_hole_circle_shape: z.ZodObject<{
|
|
|
537
541
|
pcb_hole_id: string;
|
|
538
542
|
hole_shape: "circle";
|
|
539
543
|
hole_diameter: number;
|
|
544
|
+
pcb_component_id?: string | undefined;
|
|
540
545
|
subcircuit_id?: string | undefined;
|
|
541
546
|
pcb_group_id?: string | undefined;
|
|
542
547
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -547,6 +552,7 @@ declare const pcb_hole_circle_shape: z.ZodObject<{
|
|
|
547
552
|
type: "pcb_hole";
|
|
548
553
|
hole_shape: "circle";
|
|
549
554
|
hole_diameter: number;
|
|
555
|
+
pcb_component_id?: string | undefined;
|
|
550
556
|
subcircuit_id?: string | undefined;
|
|
551
557
|
pcb_group_id?: string | undefined;
|
|
552
558
|
pcb_hole_id?: string | undefined;
|
|
@@ -562,6 +568,7 @@ interface PcbHoleCircle {
|
|
|
562
568
|
pcb_hole_id: string;
|
|
563
569
|
pcb_group_id?: string;
|
|
564
570
|
subcircuit_id?: string;
|
|
571
|
+
pcb_component_id?: string;
|
|
565
572
|
hole_shape: "circle";
|
|
566
573
|
hole_diameter: number;
|
|
567
574
|
x: Distance;
|
|
@@ -574,6 +581,7 @@ declare const pcb_hole_rect: z.ZodObject<{
|
|
|
574
581
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
575
582
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
576
583
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
584
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
577
585
|
hole_shape: z.ZodLiteral<"rect">;
|
|
578
586
|
hole_width: z.ZodNumber;
|
|
579
587
|
hole_height: z.ZodNumber;
|
|
@@ -589,6 +597,7 @@ declare const pcb_hole_rect: z.ZodObject<{
|
|
|
589
597
|
hole_shape: "rect";
|
|
590
598
|
hole_width: number;
|
|
591
599
|
hole_height: number;
|
|
600
|
+
pcb_component_id?: string | undefined;
|
|
592
601
|
subcircuit_id?: string | undefined;
|
|
593
602
|
pcb_group_id?: string | undefined;
|
|
594
603
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -600,6 +609,7 @@ declare const pcb_hole_rect: z.ZodObject<{
|
|
|
600
609
|
hole_shape: "rect";
|
|
601
610
|
hole_width: number;
|
|
602
611
|
hole_height: number;
|
|
612
|
+
pcb_component_id?: string | undefined;
|
|
603
613
|
subcircuit_id?: string | undefined;
|
|
604
614
|
pcb_group_id?: string | undefined;
|
|
605
615
|
pcb_hole_id?: string | undefined;
|
|
@@ -611,6 +621,7 @@ declare const pcb_hole_rect_shape: z.ZodObject<{
|
|
|
611
621
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
612
622
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
613
623
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
624
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
614
625
|
hole_shape: z.ZodLiteral<"rect">;
|
|
615
626
|
hole_width: z.ZodNumber;
|
|
616
627
|
hole_height: z.ZodNumber;
|
|
@@ -626,6 +637,7 @@ declare const pcb_hole_rect_shape: z.ZodObject<{
|
|
|
626
637
|
hole_shape: "rect";
|
|
627
638
|
hole_width: number;
|
|
628
639
|
hole_height: number;
|
|
640
|
+
pcb_component_id?: string | undefined;
|
|
629
641
|
subcircuit_id?: string | undefined;
|
|
630
642
|
pcb_group_id?: string | undefined;
|
|
631
643
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -637,6 +649,7 @@ declare const pcb_hole_rect_shape: z.ZodObject<{
|
|
|
637
649
|
hole_shape: "rect";
|
|
638
650
|
hole_width: number;
|
|
639
651
|
hole_height: number;
|
|
652
|
+
pcb_component_id?: string | undefined;
|
|
640
653
|
subcircuit_id?: string | undefined;
|
|
641
654
|
pcb_group_id?: string | undefined;
|
|
642
655
|
pcb_hole_id?: string | undefined;
|
|
@@ -652,6 +665,7 @@ interface PcbHoleRect {
|
|
|
652
665
|
pcb_hole_id: string;
|
|
653
666
|
pcb_group_id?: string;
|
|
654
667
|
subcircuit_id?: string;
|
|
668
|
+
pcb_component_id?: string;
|
|
655
669
|
hole_shape: "rect";
|
|
656
670
|
hole_width: number;
|
|
657
671
|
hole_height: number;
|
|
@@ -665,6 +679,7 @@ declare const pcb_hole_circle_or_square: z.ZodObject<{
|
|
|
665
679
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
666
680
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
667
681
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
682
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
668
683
|
hole_shape: z.ZodEnum<["circle", "square"]>;
|
|
669
684
|
hole_diameter: z.ZodNumber;
|
|
670
685
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -678,6 +693,7 @@ declare const pcb_hole_circle_or_square: z.ZodObject<{
|
|
|
678
693
|
pcb_hole_id: string;
|
|
679
694
|
hole_shape: "circle" | "square";
|
|
680
695
|
hole_diameter: number;
|
|
696
|
+
pcb_component_id?: string | undefined;
|
|
681
697
|
subcircuit_id?: string | undefined;
|
|
682
698
|
pcb_group_id?: string | undefined;
|
|
683
699
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -688,6 +704,7 @@ declare const pcb_hole_circle_or_square: z.ZodObject<{
|
|
|
688
704
|
type: "pcb_hole";
|
|
689
705
|
hole_shape: "circle" | "square";
|
|
690
706
|
hole_diameter: number;
|
|
707
|
+
pcb_component_id?: string | undefined;
|
|
691
708
|
subcircuit_id?: string | undefined;
|
|
692
709
|
pcb_group_id?: string | undefined;
|
|
693
710
|
pcb_hole_id?: string | undefined;
|
|
@@ -699,6 +716,7 @@ declare const pcb_hole_circle_or_square_shape: z.ZodObject<{
|
|
|
699
716
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
700
717
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
701
718
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
719
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
702
720
|
hole_shape: z.ZodEnum<["circle", "square"]>;
|
|
703
721
|
hole_diameter: z.ZodNumber;
|
|
704
722
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -712,6 +730,7 @@ declare const pcb_hole_circle_or_square_shape: z.ZodObject<{
|
|
|
712
730
|
pcb_hole_id: string;
|
|
713
731
|
hole_shape: "circle" | "square";
|
|
714
732
|
hole_diameter: number;
|
|
733
|
+
pcb_component_id?: string | undefined;
|
|
715
734
|
subcircuit_id?: string | undefined;
|
|
716
735
|
pcb_group_id?: string | undefined;
|
|
717
736
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -722,6 +741,7 @@ declare const pcb_hole_circle_or_square_shape: z.ZodObject<{
|
|
|
722
741
|
type: "pcb_hole";
|
|
723
742
|
hole_shape: "circle" | "square";
|
|
724
743
|
hole_diameter: number;
|
|
744
|
+
pcb_component_id?: string | undefined;
|
|
725
745
|
subcircuit_id?: string | undefined;
|
|
726
746
|
pcb_group_id?: string | undefined;
|
|
727
747
|
pcb_hole_id?: string | undefined;
|
|
@@ -740,6 +760,7 @@ interface PcbHoleCircleOrSquare {
|
|
|
740
760
|
pcb_hole_id: string;
|
|
741
761
|
pcb_group_id?: string;
|
|
742
762
|
subcircuit_id?: string;
|
|
763
|
+
pcb_component_id?: string;
|
|
743
764
|
hole_shape: "circle" | "square";
|
|
744
765
|
hole_diameter: number;
|
|
745
766
|
x: Distance;
|
|
@@ -752,6 +773,7 @@ declare const pcb_hole_oval: z.ZodObject<{
|
|
|
752
773
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
753
774
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
754
775
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
776
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
755
777
|
hole_shape: z.ZodLiteral<"oval">;
|
|
756
778
|
hole_width: z.ZodNumber;
|
|
757
779
|
hole_height: z.ZodNumber;
|
|
@@ -767,6 +789,7 @@ declare const pcb_hole_oval: z.ZodObject<{
|
|
|
767
789
|
hole_shape: "oval";
|
|
768
790
|
hole_width: number;
|
|
769
791
|
hole_height: number;
|
|
792
|
+
pcb_component_id?: string | undefined;
|
|
770
793
|
subcircuit_id?: string | undefined;
|
|
771
794
|
pcb_group_id?: string | undefined;
|
|
772
795
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -778,6 +801,7 @@ declare const pcb_hole_oval: z.ZodObject<{
|
|
|
778
801
|
hole_shape: "oval";
|
|
779
802
|
hole_width: number;
|
|
780
803
|
hole_height: number;
|
|
804
|
+
pcb_component_id?: string | undefined;
|
|
781
805
|
subcircuit_id?: string | undefined;
|
|
782
806
|
pcb_group_id?: string | undefined;
|
|
783
807
|
pcb_hole_id?: string | undefined;
|
|
@@ -789,6 +813,7 @@ declare const pcb_hole_oval_shape: z.ZodObject<{
|
|
|
789
813
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
790
814
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
791
815
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
816
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
792
817
|
hole_shape: z.ZodLiteral<"oval">;
|
|
793
818
|
hole_width: z.ZodNumber;
|
|
794
819
|
hole_height: z.ZodNumber;
|
|
@@ -804,6 +829,7 @@ declare const pcb_hole_oval_shape: z.ZodObject<{
|
|
|
804
829
|
hole_shape: "oval";
|
|
805
830
|
hole_width: number;
|
|
806
831
|
hole_height: number;
|
|
832
|
+
pcb_component_id?: string | undefined;
|
|
807
833
|
subcircuit_id?: string | undefined;
|
|
808
834
|
pcb_group_id?: string | undefined;
|
|
809
835
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -815,6 +841,7 @@ declare const pcb_hole_oval_shape: z.ZodObject<{
|
|
|
815
841
|
hole_shape: "oval";
|
|
816
842
|
hole_width: number;
|
|
817
843
|
hole_height: number;
|
|
844
|
+
pcb_component_id?: string | undefined;
|
|
818
845
|
subcircuit_id?: string | undefined;
|
|
819
846
|
pcb_group_id?: string | undefined;
|
|
820
847
|
pcb_hole_id?: string | undefined;
|
|
@@ -830,6 +857,7 @@ interface PcbHoleOval {
|
|
|
830
857
|
pcb_hole_id: string;
|
|
831
858
|
pcb_group_id?: string;
|
|
832
859
|
subcircuit_id?: string;
|
|
860
|
+
pcb_component_id?: string;
|
|
833
861
|
hole_shape: "oval";
|
|
834
862
|
hole_width: number;
|
|
835
863
|
hole_height: number;
|
|
@@ -843,6 +871,7 @@ declare const pcb_hole_pill: z.ZodObject<{
|
|
|
843
871
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
844
872
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
845
873
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
874
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
846
875
|
hole_shape: z.ZodLiteral<"pill">;
|
|
847
876
|
hole_width: z.ZodNumber;
|
|
848
877
|
hole_height: z.ZodNumber;
|
|
@@ -858,6 +887,7 @@ declare const pcb_hole_pill: z.ZodObject<{
|
|
|
858
887
|
hole_shape: "pill";
|
|
859
888
|
hole_width: number;
|
|
860
889
|
hole_height: number;
|
|
890
|
+
pcb_component_id?: string | undefined;
|
|
861
891
|
subcircuit_id?: string | undefined;
|
|
862
892
|
pcb_group_id?: string | undefined;
|
|
863
893
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -869,6 +899,7 @@ declare const pcb_hole_pill: z.ZodObject<{
|
|
|
869
899
|
hole_shape: "pill";
|
|
870
900
|
hole_width: number;
|
|
871
901
|
hole_height: number;
|
|
902
|
+
pcb_component_id?: string | undefined;
|
|
872
903
|
subcircuit_id?: string | undefined;
|
|
873
904
|
pcb_group_id?: string | undefined;
|
|
874
905
|
pcb_hole_id?: string | undefined;
|
|
@@ -880,6 +911,7 @@ declare const pcb_hole_pill_shape: z.ZodObject<{
|
|
|
880
911
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
881
912
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
882
913
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
914
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
883
915
|
hole_shape: z.ZodLiteral<"pill">;
|
|
884
916
|
hole_width: z.ZodNumber;
|
|
885
917
|
hole_height: z.ZodNumber;
|
|
@@ -895,6 +927,7 @@ declare const pcb_hole_pill_shape: z.ZodObject<{
|
|
|
895
927
|
hole_shape: "pill";
|
|
896
928
|
hole_width: number;
|
|
897
929
|
hole_height: number;
|
|
930
|
+
pcb_component_id?: string | undefined;
|
|
898
931
|
subcircuit_id?: string | undefined;
|
|
899
932
|
pcb_group_id?: string | undefined;
|
|
900
933
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -906,6 +939,7 @@ declare const pcb_hole_pill_shape: z.ZodObject<{
|
|
|
906
939
|
hole_shape: "pill";
|
|
907
940
|
hole_width: number;
|
|
908
941
|
hole_height: number;
|
|
942
|
+
pcb_component_id?: string | undefined;
|
|
909
943
|
subcircuit_id?: string | undefined;
|
|
910
944
|
pcb_group_id?: string | undefined;
|
|
911
945
|
pcb_hole_id?: string | undefined;
|
|
@@ -921,6 +955,7 @@ interface PcbHolePill {
|
|
|
921
955
|
pcb_hole_id: string;
|
|
922
956
|
pcb_group_id?: string;
|
|
923
957
|
subcircuit_id?: string;
|
|
958
|
+
pcb_component_id?: string;
|
|
924
959
|
hole_shape: "pill";
|
|
925
960
|
hole_width: number;
|
|
926
961
|
hole_height: number;
|
|
@@ -934,6 +969,7 @@ declare const pcb_hole_rotated_pill: z.ZodObject<{
|
|
|
934
969
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
935
970
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
936
971
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
972
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
937
973
|
hole_shape: z.ZodLiteral<"rotated_pill">;
|
|
938
974
|
hole_width: z.ZodNumber;
|
|
939
975
|
hole_height: z.ZodNumber;
|
|
@@ -951,6 +987,7 @@ declare const pcb_hole_rotated_pill: z.ZodObject<{
|
|
|
951
987
|
hole_width: number;
|
|
952
988
|
hole_height: number;
|
|
953
989
|
ccw_rotation: number;
|
|
990
|
+
pcb_component_id?: string | undefined;
|
|
954
991
|
subcircuit_id?: string | undefined;
|
|
955
992
|
pcb_group_id?: string | undefined;
|
|
956
993
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -963,6 +1000,7 @@ declare const pcb_hole_rotated_pill: z.ZodObject<{
|
|
|
963
1000
|
hole_width: number;
|
|
964
1001
|
hole_height: number;
|
|
965
1002
|
ccw_rotation: string | number;
|
|
1003
|
+
pcb_component_id?: string | undefined;
|
|
966
1004
|
subcircuit_id?: string | undefined;
|
|
967
1005
|
pcb_group_id?: string | undefined;
|
|
968
1006
|
pcb_hole_id?: string | undefined;
|
|
@@ -974,6 +1012,7 @@ declare const pcb_hole_rotated_pill_shape: z.ZodObject<{
|
|
|
974
1012
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
975
1013
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
976
1014
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
1015
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
977
1016
|
hole_shape: z.ZodLiteral<"rotated_pill">;
|
|
978
1017
|
hole_width: z.ZodNumber;
|
|
979
1018
|
hole_height: z.ZodNumber;
|
|
@@ -991,6 +1030,7 @@ declare const pcb_hole_rotated_pill_shape: z.ZodObject<{
|
|
|
991
1030
|
hole_width: number;
|
|
992
1031
|
hole_height: number;
|
|
993
1032
|
ccw_rotation: number;
|
|
1033
|
+
pcb_component_id?: string | undefined;
|
|
994
1034
|
subcircuit_id?: string | undefined;
|
|
995
1035
|
pcb_group_id?: string | undefined;
|
|
996
1036
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -1003,6 +1043,7 @@ declare const pcb_hole_rotated_pill_shape: z.ZodObject<{
|
|
|
1003
1043
|
hole_width: number;
|
|
1004
1044
|
hole_height: number;
|
|
1005
1045
|
ccw_rotation: string | number;
|
|
1046
|
+
pcb_component_id?: string | undefined;
|
|
1006
1047
|
subcircuit_id?: string | undefined;
|
|
1007
1048
|
pcb_group_id?: string | undefined;
|
|
1008
1049
|
pcb_hole_id?: string | undefined;
|
|
@@ -1018,6 +1059,7 @@ interface PcbHoleRotatedPill {
|
|
|
1018
1059
|
pcb_hole_id: string;
|
|
1019
1060
|
pcb_group_id?: string;
|
|
1020
1061
|
subcircuit_id?: string;
|
|
1062
|
+
pcb_component_id?: string;
|
|
1021
1063
|
hole_shape: "rotated_pill";
|
|
1022
1064
|
hole_width: number;
|
|
1023
1065
|
hole_height: number;
|
|
@@ -1032,6 +1074,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1032
1074
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1033
1075
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
1034
1076
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
1077
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
1035
1078
|
hole_shape: z.ZodEnum<["circle", "square"]>;
|
|
1036
1079
|
hole_diameter: z.ZodNumber;
|
|
1037
1080
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -1045,6 +1088,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1045
1088
|
pcb_hole_id: string;
|
|
1046
1089
|
hole_shape: "circle" | "square";
|
|
1047
1090
|
hole_diameter: number;
|
|
1091
|
+
pcb_component_id?: string | undefined;
|
|
1048
1092
|
subcircuit_id?: string | undefined;
|
|
1049
1093
|
pcb_group_id?: string | undefined;
|
|
1050
1094
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -1055,6 +1099,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1055
1099
|
type: "pcb_hole";
|
|
1056
1100
|
hole_shape: "circle" | "square";
|
|
1057
1101
|
hole_diameter: number;
|
|
1102
|
+
pcb_component_id?: string | undefined;
|
|
1058
1103
|
subcircuit_id?: string | undefined;
|
|
1059
1104
|
pcb_group_id?: string | undefined;
|
|
1060
1105
|
pcb_hole_id?: string | undefined;
|
|
@@ -1065,6 +1110,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1065
1110
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1066
1111
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
1067
1112
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
1113
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
1068
1114
|
hole_shape: z.ZodLiteral<"oval">;
|
|
1069
1115
|
hole_width: z.ZodNumber;
|
|
1070
1116
|
hole_height: z.ZodNumber;
|
|
@@ -1080,6 +1126,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1080
1126
|
hole_shape: "oval";
|
|
1081
1127
|
hole_width: number;
|
|
1082
1128
|
hole_height: number;
|
|
1129
|
+
pcb_component_id?: string | undefined;
|
|
1083
1130
|
subcircuit_id?: string | undefined;
|
|
1084
1131
|
pcb_group_id?: string | undefined;
|
|
1085
1132
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -1091,6 +1138,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1091
1138
|
hole_shape: "oval";
|
|
1092
1139
|
hole_width: number;
|
|
1093
1140
|
hole_height: number;
|
|
1141
|
+
pcb_component_id?: string | undefined;
|
|
1094
1142
|
subcircuit_id?: string | undefined;
|
|
1095
1143
|
pcb_group_id?: string | undefined;
|
|
1096
1144
|
pcb_hole_id?: string | undefined;
|
|
@@ -1101,6 +1149,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1101
1149
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1102
1150
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
1103
1151
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
1152
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
1104
1153
|
hole_shape: z.ZodLiteral<"pill">;
|
|
1105
1154
|
hole_width: z.ZodNumber;
|
|
1106
1155
|
hole_height: z.ZodNumber;
|
|
@@ -1116,6 +1165,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1116
1165
|
hole_shape: "pill";
|
|
1117
1166
|
hole_width: number;
|
|
1118
1167
|
hole_height: number;
|
|
1168
|
+
pcb_component_id?: string | undefined;
|
|
1119
1169
|
subcircuit_id?: string | undefined;
|
|
1120
1170
|
pcb_group_id?: string | undefined;
|
|
1121
1171
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -1127,6 +1177,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1127
1177
|
hole_shape: "pill";
|
|
1128
1178
|
hole_width: number;
|
|
1129
1179
|
hole_height: number;
|
|
1180
|
+
pcb_component_id?: string | undefined;
|
|
1130
1181
|
subcircuit_id?: string | undefined;
|
|
1131
1182
|
pcb_group_id?: string | undefined;
|
|
1132
1183
|
pcb_hole_id?: string | undefined;
|
|
@@ -1137,6 +1188,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1137
1188
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1138
1189
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
1139
1190
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
1191
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
1140
1192
|
hole_shape: z.ZodLiteral<"rotated_pill">;
|
|
1141
1193
|
hole_width: z.ZodNumber;
|
|
1142
1194
|
hole_height: z.ZodNumber;
|
|
@@ -1154,6 +1206,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1154
1206
|
hole_width: number;
|
|
1155
1207
|
hole_height: number;
|
|
1156
1208
|
ccw_rotation: number;
|
|
1209
|
+
pcb_component_id?: string | undefined;
|
|
1157
1210
|
subcircuit_id?: string | undefined;
|
|
1158
1211
|
pcb_group_id?: string | undefined;
|
|
1159
1212
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -1166,6 +1219,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1166
1219
|
hole_width: number;
|
|
1167
1220
|
hole_height: number;
|
|
1168
1221
|
ccw_rotation: string | number;
|
|
1222
|
+
pcb_component_id?: string | undefined;
|
|
1169
1223
|
subcircuit_id?: string | undefined;
|
|
1170
1224
|
pcb_group_id?: string | undefined;
|
|
1171
1225
|
pcb_hole_id?: string | undefined;
|
|
@@ -1176,6 +1230,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1176
1230
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1177
1231
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
1178
1232
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
1233
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
1179
1234
|
hole_shape: z.ZodLiteral<"circle">;
|
|
1180
1235
|
hole_diameter: z.ZodNumber;
|
|
1181
1236
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -1189,6 +1244,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1189
1244
|
pcb_hole_id: string;
|
|
1190
1245
|
hole_shape: "circle";
|
|
1191
1246
|
hole_diameter: number;
|
|
1247
|
+
pcb_component_id?: string | undefined;
|
|
1192
1248
|
subcircuit_id?: string | undefined;
|
|
1193
1249
|
pcb_group_id?: string | undefined;
|
|
1194
1250
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -1199,6 +1255,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1199
1255
|
type: "pcb_hole";
|
|
1200
1256
|
hole_shape: "circle";
|
|
1201
1257
|
hole_diameter: number;
|
|
1258
|
+
pcb_component_id?: string | undefined;
|
|
1202
1259
|
subcircuit_id?: string | undefined;
|
|
1203
1260
|
pcb_group_id?: string | undefined;
|
|
1204
1261
|
pcb_hole_id?: string | undefined;
|
|
@@ -1209,6 +1266,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1209
1266
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1210
1267
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
1211
1268
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
1269
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
1212
1270
|
hole_shape: z.ZodLiteral<"rect">;
|
|
1213
1271
|
hole_width: z.ZodNumber;
|
|
1214
1272
|
hole_height: z.ZodNumber;
|
|
@@ -1224,6 +1282,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1224
1282
|
hole_shape: "rect";
|
|
1225
1283
|
hole_width: number;
|
|
1226
1284
|
hole_height: number;
|
|
1285
|
+
pcb_component_id?: string | undefined;
|
|
1227
1286
|
subcircuit_id?: string | undefined;
|
|
1228
1287
|
pcb_group_id?: string | undefined;
|
|
1229
1288
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -1235,6 +1294,7 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
1235
1294
|
hole_shape: "rect";
|
|
1236
1295
|
hole_width: number;
|
|
1237
1296
|
hole_height: number;
|
|
1297
|
+
pcb_component_id?: string | undefined;
|
|
1238
1298
|
subcircuit_id?: string | undefined;
|
|
1239
1299
|
pcb_group_id?: string | undefined;
|
|
1240
1300
|
pcb_hole_id?: string | undefined;
|
|
@@ -10071,6 +10131,52 @@ interface SourceSimpleDiode extends SourceComponentBase {
|
|
|
10071
10131
|
ftype: "simple_diode";
|
|
10072
10132
|
}
|
|
10073
10133
|
|
|
10134
|
+
declare const source_simple_fiducial: z.ZodObject<{
|
|
10135
|
+
type: z.ZodLiteral<"source_component">;
|
|
10136
|
+
source_component_id: z.ZodString;
|
|
10137
|
+
name: z.ZodString;
|
|
10138
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10139
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10140
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
10141
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10142
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
10143
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
10144
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
10145
|
+
} & {
|
|
10146
|
+
ftype: z.ZodLiteral<"simple_fiducial">;
|
|
10147
|
+
}, "strip", z.ZodTypeAny, {
|
|
10148
|
+
type: "source_component";
|
|
10149
|
+
name: string;
|
|
10150
|
+
source_component_id: string;
|
|
10151
|
+
ftype: "simple_fiducial";
|
|
10152
|
+
subcircuit_id?: string | undefined;
|
|
10153
|
+
source_group_id?: string | undefined;
|
|
10154
|
+
manufacturer_part_number?: string | undefined;
|
|
10155
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10156
|
+
display_value?: string | undefined;
|
|
10157
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10158
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10159
|
+
}, {
|
|
10160
|
+
type: "source_component";
|
|
10161
|
+
name: string;
|
|
10162
|
+
source_component_id: string;
|
|
10163
|
+
ftype: "simple_fiducial";
|
|
10164
|
+
subcircuit_id?: string | undefined;
|
|
10165
|
+
source_group_id?: string | undefined;
|
|
10166
|
+
manufacturer_part_number?: string | undefined;
|
|
10167
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10168
|
+
display_value?: string | undefined;
|
|
10169
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10170
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10171
|
+
}>;
|
|
10172
|
+
type SourceSimpleFiducialInput = z.input<typeof source_simple_fiducial>;
|
|
10173
|
+
/**
|
|
10174
|
+
* Defines a simple fiducial component
|
|
10175
|
+
*/
|
|
10176
|
+
interface SourceSimpleFiducial extends SourceComponentBase {
|
|
10177
|
+
ftype: "simple_fiducial";
|
|
10178
|
+
}
|
|
10179
|
+
|
|
10074
10180
|
declare const source_simple_led: z.ZodObject<{
|
|
10075
10181
|
type: z.ZodLiteral<"source_component">;
|
|
10076
10182
|
source_component_id: z.ZodString;
|
|
@@ -11413,6 +11519,43 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
11413
11519
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11414
11520
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11415
11521
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
11522
|
+
} & {
|
|
11523
|
+
ftype: z.ZodLiteral<"simple_fiducial">;
|
|
11524
|
+
}, "strip", z.ZodTypeAny, {
|
|
11525
|
+
type: "source_component";
|
|
11526
|
+
name: string;
|
|
11527
|
+
source_component_id: string;
|
|
11528
|
+
ftype: "simple_fiducial";
|
|
11529
|
+
subcircuit_id?: string | undefined;
|
|
11530
|
+
source_group_id?: string | undefined;
|
|
11531
|
+
manufacturer_part_number?: string | undefined;
|
|
11532
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11533
|
+
display_value?: string | undefined;
|
|
11534
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
11535
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11536
|
+
}, {
|
|
11537
|
+
type: "source_component";
|
|
11538
|
+
name: string;
|
|
11539
|
+
source_component_id: string;
|
|
11540
|
+
ftype: "simple_fiducial";
|
|
11541
|
+
subcircuit_id?: string | undefined;
|
|
11542
|
+
source_group_id?: string | undefined;
|
|
11543
|
+
manufacturer_part_number?: string | undefined;
|
|
11544
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11545
|
+
display_value?: string | undefined;
|
|
11546
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
11547
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11548
|
+
}>, z.ZodObject<{
|
|
11549
|
+
type: z.ZodLiteral<"source_component">;
|
|
11550
|
+
source_component_id: z.ZodString;
|
|
11551
|
+
name: z.ZodString;
|
|
11552
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
11553
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
11554
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
11555
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11556
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11557
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11558
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
11416
11559
|
} & {
|
|
11417
11560
|
ftype: z.ZodLiteral<"simple_led">;
|
|
11418
11561
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -12365,7 +12508,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
12365
12508
|
* Deprecated: use `AnySourceElement` instead
|
|
12366
12509
|
*/
|
|
12367
12510
|
type AnySourceComponent = z.infer<typeof any_source_component>;
|
|
12368
|
-
type AnySourceElement = SourceSimpleResistor | SourceSimpleCapacitor | SourceSimpleDiode | SourceSimpleLed | SourceSimpleGround | SourceSimpleChip | SourceSimplePowerSource | SourceSimpleBattery | SourceSimpleInductor | SourceSimplePushButton | SourceSimplePotentiometer | SourceSimpleCrystal | SourceSimplePinHeader | SourceSimplePinout | SourceSimpleResonator | SourceSimpleSwitch | SourceSimpleTransistor | SourceSimpleTestPoint | SourceSimpleMosfet | SourceSimpleFuse | SourceSimpleVoltageProbe | SourceInterconnect | SourceProjectMetadata | SourceMissingPropertyError | SourceFailedToCreateComponentError | SourceTraceNotConnectedError | SourcePropertyIgnoredWarning | SourcePinMissingTraceWarning;
|
|
12511
|
+
type AnySourceElement = SourceSimpleResistor | SourceSimpleCapacitor | SourceSimpleDiode | SourceSimpleFiducial | SourceSimpleLed | SourceSimpleGround | SourceSimpleChip | SourceSimplePowerSource | SourceSimpleBattery | SourceSimpleInductor | SourceSimplePushButton | SourceSimplePotentiometer | SourceSimpleCrystal | SourceSimplePinHeader | SourceSimplePinout | SourceSimpleResonator | SourceSimpleSwitch | SourceSimpleTransistor | SourceSimpleTestPoint | SourceSimpleMosfet | SourceSimpleFuse | SourceSimpleVoltageProbe | SourceInterconnect | SourceProjectMetadata | SourceMissingPropertyError | SourceFailedToCreateComponentError | SourceTraceNotConnectedError | SourcePropertyIgnoredWarning | SourcePinMissingTraceWarning;
|
|
12369
12512
|
|
|
12370
12513
|
declare const source_port: z.ZodObject<{
|
|
12371
12514
|
type: z.ZodLiteral<"source_port">;
|
|
@@ -13138,6 +13281,43 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
13138
13281
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
13139
13282
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
13140
13283
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
13284
|
+
} & {
|
|
13285
|
+
ftype: z.ZodLiteral<"simple_fiducial">;
|
|
13286
|
+
}, "strip", z.ZodTypeAny, {
|
|
13287
|
+
type: "source_component";
|
|
13288
|
+
name: string;
|
|
13289
|
+
source_component_id: string;
|
|
13290
|
+
ftype: "simple_fiducial";
|
|
13291
|
+
subcircuit_id?: string | undefined;
|
|
13292
|
+
source_group_id?: string | undefined;
|
|
13293
|
+
manufacturer_part_number?: string | undefined;
|
|
13294
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
13295
|
+
display_value?: string | undefined;
|
|
13296
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
13297
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
13298
|
+
}, {
|
|
13299
|
+
type: "source_component";
|
|
13300
|
+
name: string;
|
|
13301
|
+
source_component_id: string;
|
|
13302
|
+
ftype: "simple_fiducial";
|
|
13303
|
+
subcircuit_id?: string | undefined;
|
|
13304
|
+
source_group_id?: string | undefined;
|
|
13305
|
+
manufacturer_part_number?: string | undefined;
|
|
13306
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
13307
|
+
display_value?: string | undefined;
|
|
13308
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
13309
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
13310
|
+
}>, z.ZodObject<{
|
|
13311
|
+
type: z.ZodLiteral<"source_component">;
|
|
13312
|
+
source_component_id: z.ZodString;
|
|
13313
|
+
name: z.ZodString;
|
|
13314
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
13315
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
13316
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
13317
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
13318
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
13319
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
13320
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
13141
13321
|
} & {
|
|
13142
13322
|
ftype: z.ZodLiteral<"simple_led">;
|
|
13143
13323
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -15119,6 +15299,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15119
15299
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15120
15300
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
15121
15301
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
15302
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
15122
15303
|
hole_shape: z.ZodEnum<["circle", "square"]>;
|
|
15123
15304
|
hole_diameter: z.ZodNumber;
|
|
15124
15305
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -15132,6 +15313,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15132
15313
|
pcb_hole_id: string;
|
|
15133
15314
|
hole_shape: "circle" | "square";
|
|
15134
15315
|
hole_diameter: number;
|
|
15316
|
+
pcb_component_id?: string | undefined;
|
|
15135
15317
|
subcircuit_id?: string | undefined;
|
|
15136
15318
|
pcb_group_id?: string | undefined;
|
|
15137
15319
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -15142,6 +15324,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15142
15324
|
type: "pcb_hole";
|
|
15143
15325
|
hole_shape: "circle" | "square";
|
|
15144
15326
|
hole_diameter: number;
|
|
15327
|
+
pcb_component_id?: string | undefined;
|
|
15145
15328
|
subcircuit_id?: string | undefined;
|
|
15146
15329
|
pcb_group_id?: string | undefined;
|
|
15147
15330
|
pcb_hole_id?: string | undefined;
|
|
@@ -15152,6 +15335,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15152
15335
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15153
15336
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
15154
15337
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
15338
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
15155
15339
|
hole_shape: z.ZodLiteral<"oval">;
|
|
15156
15340
|
hole_width: z.ZodNumber;
|
|
15157
15341
|
hole_height: z.ZodNumber;
|
|
@@ -15167,6 +15351,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15167
15351
|
hole_shape: "oval";
|
|
15168
15352
|
hole_width: number;
|
|
15169
15353
|
hole_height: number;
|
|
15354
|
+
pcb_component_id?: string | undefined;
|
|
15170
15355
|
subcircuit_id?: string | undefined;
|
|
15171
15356
|
pcb_group_id?: string | undefined;
|
|
15172
15357
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -15178,6 +15363,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15178
15363
|
hole_shape: "oval";
|
|
15179
15364
|
hole_width: number;
|
|
15180
15365
|
hole_height: number;
|
|
15366
|
+
pcb_component_id?: string | undefined;
|
|
15181
15367
|
subcircuit_id?: string | undefined;
|
|
15182
15368
|
pcb_group_id?: string | undefined;
|
|
15183
15369
|
pcb_hole_id?: string | undefined;
|
|
@@ -15188,6 +15374,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15188
15374
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15189
15375
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
15190
15376
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
15377
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
15191
15378
|
hole_shape: z.ZodLiteral<"pill">;
|
|
15192
15379
|
hole_width: z.ZodNumber;
|
|
15193
15380
|
hole_height: z.ZodNumber;
|
|
@@ -15203,6 +15390,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15203
15390
|
hole_shape: "pill";
|
|
15204
15391
|
hole_width: number;
|
|
15205
15392
|
hole_height: number;
|
|
15393
|
+
pcb_component_id?: string | undefined;
|
|
15206
15394
|
subcircuit_id?: string | undefined;
|
|
15207
15395
|
pcb_group_id?: string | undefined;
|
|
15208
15396
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -15214,6 +15402,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15214
15402
|
hole_shape: "pill";
|
|
15215
15403
|
hole_width: number;
|
|
15216
15404
|
hole_height: number;
|
|
15405
|
+
pcb_component_id?: string | undefined;
|
|
15217
15406
|
subcircuit_id?: string | undefined;
|
|
15218
15407
|
pcb_group_id?: string | undefined;
|
|
15219
15408
|
pcb_hole_id?: string | undefined;
|
|
@@ -15224,6 +15413,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15224
15413
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15225
15414
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
15226
15415
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
15416
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
15227
15417
|
hole_shape: z.ZodLiteral<"rotated_pill">;
|
|
15228
15418
|
hole_width: z.ZodNumber;
|
|
15229
15419
|
hole_height: z.ZodNumber;
|
|
@@ -15241,6 +15431,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15241
15431
|
hole_width: number;
|
|
15242
15432
|
hole_height: number;
|
|
15243
15433
|
ccw_rotation: number;
|
|
15434
|
+
pcb_component_id?: string | undefined;
|
|
15244
15435
|
subcircuit_id?: string | undefined;
|
|
15245
15436
|
pcb_group_id?: string | undefined;
|
|
15246
15437
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -15253,6 +15444,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15253
15444
|
hole_width: number;
|
|
15254
15445
|
hole_height: number;
|
|
15255
15446
|
ccw_rotation: string | number;
|
|
15447
|
+
pcb_component_id?: string | undefined;
|
|
15256
15448
|
subcircuit_id?: string | undefined;
|
|
15257
15449
|
pcb_group_id?: string | undefined;
|
|
15258
15450
|
pcb_hole_id?: string | undefined;
|
|
@@ -15263,6 +15455,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15263
15455
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15264
15456
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
15265
15457
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
15458
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
15266
15459
|
hole_shape: z.ZodLiteral<"circle">;
|
|
15267
15460
|
hole_diameter: z.ZodNumber;
|
|
15268
15461
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -15276,6 +15469,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15276
15469
|
pcb_hole_id: string;
|
|
15277
15470
|
hole_shape: "circle";
|
|
15278
15471
|
hole_diameter: number;
|
|
15472
|
+
pcb_component_id?: string | undefined;
|
|
15279
15473
|
subcircuit_id?: string | undefined;
|
|
15280
15474
|
pcb_group_id?: string | undefined;
|
|
15281
15475
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -15286,6 +15480,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15286
15480
|
type: "pcb_hole";
|
|
15287
15481
|
hole_shape: "circle";
|
|
15288
15482
|
hole_diameter: number;
|
|
15483
|
+
pcb_component_id?: string | undefined;
|
|
15289
15484
|
subcircuit_id?: string | undefined;
|
|
15290
15485
|
pcb_group_id?: string | undefined;
|
|
15291
15486
|
pcb_hole_id?: string | undefined;
|
|
@@ -15296,6 +15491,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15296
15491
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15297
15492
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
15298
15493
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
15494
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
15299
15495
|
hole_shape: z.ZodLiteral<"rect">;
|
|
15300
15496
|
hole_width: z.ZodNumber;
|
|
15301
15497
|
hole_height: z.ZodNumber;
|
|
@@ -15311,6 +15507,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15311
15507
|
hole_shape: "rect";
|
|
15312
15508
|
hole_width: number;
|
|
15313
15509
|
hole_height: number;
|
|
15510
|
+
pcb_component_id?: string | undefined;
|
|
15314
15511
|
subcircuit_id?: string | undefined;
|
|
15315
15512
|
pcb_group_id?: string | undefined;
|
|
15316
15513
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -15322,6 +15519,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15322
15519
|
hole_shape: "rect";
|
|
15323
15520
|
hole_width: number;
|
|
15324
15521
|
hole_height: number;
|
|
15522
|
+
pcb_component_id?: string | undefined;
|
|
15325
15523
|
subcircuit_id?: string | undefined;
|
|
15326
15524
|
pcb_group_id?: string | undefined;
|
|
15327
15525
|
pcb_hole_id?: string | undefined;
|
|
@@ -21173,6 +21371,43 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
21173
21371
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
21174
21372
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
21175
21373
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
21374
|
+
} & {
|
|
21375
|
+
ftype: z.ZodLiteral<"simple_fiducial">;
|
|
21376
|
+
}, "strip", z.ZodTypeAny, {
|
|
21377
|
+
type: "source_component";
|
|
21378
|
+
name: string;
|
|
21379
|
+
source_component_id: string;
|
|
21380
|
+
ftype: "simple_fiducial";
|
|
21381
|
+
subcircuit_id?: string | undefined;
|
|
21382
|
+
source_group_id?: string | undefined;
|
|
21383
|
+
manufacturer_part_number?: string | undefined;
|
|
21384
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
21385
|
+
display_value?: string | undefined;
|
|
21386
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
21387
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
21388
|
+
}, {
|
|
21389
|
+
type: "source_component";
|
|
21390
|
+
name: string;
|
|
21391
|
+
source_component_id: string;
|
|
21392
|
+
ftype: "simple_fiducial";
|
|
21393
|
+
subcircuit_id?: string | undefined;
|
|
21394
|
+
source_group_id?: string | undefined;
|
|
21395
|
+
manufacturer_part_number?: string | undefined;
|
|
21396
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
21397
|
+
display_value?: string | undefined;
|
|
21398
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
21399
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
21400
|
+
}>, z.ZodObject<{
|
|
21401
|
+
type: z.ZodLiteral<"source_component">;
|
|
21402
|
+
source_component_id: z.ZodString;
|
|
21403
|
+
name: z.ZodString;
|
|
21404
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
21405
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
21406
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
21407
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
21408
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
21409
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
21410
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
21176
21411
|
} & {
|
|
21177
21412
|
ftype: z.ZodLiteral<"simple_led">;
|
|
21178
21413
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -23154,6 +23389,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23154
23389
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
23155
23390
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
23156
23391
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
23392
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23157
23393
|
hole_shape: z.ZodEnum<["circle", "square"]>;
|
|
23158
23394
|
hole_diameter: z.ZodNumber;
|
|
23159
23395
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -23167,6 +23403,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23167
23403
|
pcb_hole_id: string;
|
|
23168
23404
|
hole_shape: "circle" | "square";
|
|
23169
23405
|
hole_diameter: number;
|
|
23406
|
+
pcb_component_id?: string | undefined;
|
|
23170
23407
|
subcircuit_id?: string | undefined;
|
|
23171
23408
|
pcb_group_id?: string | undefined;
|
|
23172
23409
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -23177,6 +23414,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23177
23414
|
type: "pcb_hole";
|
|
23178
23415
|
hole_shape: "circle" | "square";
|
|
23179
23416
|
hole_diameter: number;
|
|
23417
|
+
pcb_component_id?: string | undefined;
|
|
23180
23418
|
subcircuit_id?: string | undefined;
|
|
23181
23419
|
pcb_group_id?: string | undefined;
|
|
23182
23420
|
pcb_hole_id?: string | undefined;
|
|
@@ -23187,6 +23425,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23187
23425
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
23188
23426
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
23189
23427
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
23428
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23190
23429
|
hole_shape: z.ZodLiteral<"oval">;
|
|
23191
23430
|
hole_width: z.ZodNumber;
|
|
23192
23431
|
hole_height: z.ZodNumber;
|
|
@@ -23202,6 +23441,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23202
23441
|
hole_shape: "oval";
|
|
23203
23442
|
hole_width: number;
|
|
23204
23443
|
hole_height: number;
|
|
23444
|
+
pcb_component_id?: string | undefined;
|
|
23205
23445
|
subcircuit_id?: string | undefined;
|
|
23206
23446
|
pcb_group_id?: string | undefined;
|
|
23207
23447
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -23213,6 +23453,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23213
23453
|
hole_shape: "oval";
|
|
23214
23454
|
hole_width: number;
|
|
23215
23455
|
hole_height: number;
|
|
23456
|
+
pcb_component_id?: string | undefined;
|
|
23216
23457
|
subcircuit_id?: string | undefined;
|
|
23217
23458
|
pcb_group_id?: string | undefined;
|
|
23218
23459
|
pcb_hole_id?: string | undefined;
|
|
@@ -23223,6 +23464,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23223
23464
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
23224
23465
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
23225
23466
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
23467
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23226
23468
|
hole_shape: z.ZodLiteral<"pill">;
|
|
23227
23469
|
hole_width: z.ZodNumber;
|
|
23228
23470
|
hole_height: z.ZodNumber;
|
|
@@ -23238,6 +23480,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23238
23480
|
hole_shape: "pill";
|
|
23239
23481
|
hole_width: number;
|
|
23240
23482
|
hole_height: number;
|
|
23483
|
+
pcb_component_id?: string | undefined;
|
|
23241
23484
|
subcircuit_id?: string | undefined;
|
|
23242
23485
|
pcb_group_id?: string | undefined;
|
|
23243
23486
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -23249,6 +23492,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23249
23492
|
hole_shape: "pill";
|
|
23250
23493
|
hole_width: number;
|
|
23251
23494
|
hole_height: number;
|
|
23495
|
+
pcb_component_id?: string | undefined;
|
|
23252
23496
|
subcircuit_id?: string | undefined;
|
|
23253
23497
|
pcb_group_id?: string | undefined;
|
|
23254
23498
|
pcb_hole_id?: string | undefined;
|
|
@@ -23259,6 +23503,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23259
23503
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
23260
23504
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
23261
23505
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
23506
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23262
23507
|
hole_shape: z.ZodLiteral<"rotated_pill">;
|
|
23263
23508
|
hole_width: z.ZodNumber;
|
|
23264
23509
|
hole_height: z.ZodNumber;
|
|
@@ -23276,6 +23521,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23276
23521
|
hole_width: number;
|
|
23277
23522
|
hole_height: number;
|
|
23278
23523
|
ccw_rotation: number;
|
|
23524
|
+
pcb_component_id?: string | undefined;
|
|
23279
23525
|
subcircuit_id?: string | undefined;
|
|
23280
23526
|
pcb_group_id?: string | undefined;
|
|
23281
23527
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -23288,6 +23534,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23288
23534
|
hole_width: number;
|
|
23289
23535
|
hole_height: number;
|
|
23290
23536
|
ccw_rotation: string | number;
|
|
23537
|
+
pcb_component_id?: string | undefined;
|
|
23291
23538
|
subcircuit_id?: string | undefined;
|
|
23292
23539
|
pcb_group_id?: string | undefined;
|
|
23293
23540
|
pcb_hole_id?: string | undefined;
|
|
@@ -23298,6 +23545,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23298
23545
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
23299
23546
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
23300
23547
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
23548
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23301
23549
|
hole_shape: z.ZodLiteral<"circle">;
|
|
23302
23550
|
hole_diameter: z.ZodNumber;
|
|
23303
23551
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -23311,6 +23559,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23311
23559
|
pcb_hole_id: string;
|
|
23312
23560
|
hole_shape: "circle";
|
|
23313
23561
|
hole_diameter: number;
|
|
23562
|
+
pcb_component_id?: string | undefined;
|
|
23314
23563
|
subcircuit_id?: string | undefined;
|
|
23315
23564
|
pcb_group_id?: string | undefined;
|
|
23316
23565
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -23321,6 +23570,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23321
23570
|
type: "pcb_hole";
|
|
23322
23571
|
hole_shape: "circle";
|
|
23323
23572
|
hole_diameter: number;
|
|
23573
|
+
pcb_component_id?: string | undefined;
|
|
23324
23574
|
subcircuit_id?: string | undefined;
|
|
23325
23575
|
pcb_group_id?: string | undefined;
|
|
23326
23576
|
pcb_hole_id?: string | undefined;
|
|
@@ -23331,6 +23581,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23331
23581
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
23332
23582
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
23333
23583
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
23584
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23334
23585
|
hole_shape: z.ZodLiteral<"rect">;
|
|
23335
23586
|
hole_width: z.ZodNumber;
|
|
23336
23587
|
hole_height: z.ZodNumber;
|
|
@@ -23346,6 +23597,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23346
23597
|
hole_shape: "rect";
|
|
23347
23598
|
hole_width: number;
|
|
23348
23599
|
hole_height: number;
|
|
23600
|
+
pcb_component_id?: string | undefined;
|
|
23349
23601
|
subcircuit_id?: string | undefined;
|
|
23350
23602
|
pcb_group_id?: string | undefined;
|
|
23351
23603
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -23357,6 +23609,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23357
23609
|
hole_shape: "rect";
|
|
23358
23610
|
hole_width: number;
|
|
23359
23611
|
hole_height: number;
|
|
23612
|
+
pcb_component_id?: string | undefined;
|
|
23360
23613
|
subcircuit_id?: string | undefined;
|
|
23361
23614
|
pcb_group_id?: string | undefined;
|
|
23362
23615
|
pcb_hole_id?: string | undefined;
|
|
@@ -29000,4 +29253,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
29000
29253
|
*/
|
|
29001
29254
|
type CircuitJson = AnyCircuitElement[];
|
|
29002
29255
|
|
|
29003
|
-
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type BRepShape, type CadComponent, type CadComponentInput, type CircuitJson, type CircuitJsonError, type CircuitJsonFootprintLoadError, type CircuitJsonFootprintLoadErrorInput, type Distance, type ExperimentType, type ExternalFootprintLoadError, type ExternalFootprintLoadErrorInput, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBCopperText, type PCBCourtyardOutline, type PCBCourtyardPolygon, type PCBCourtyardRect, type PCBFabricationNoteDimension, type PCBFabricationNotePath, type PCBFabricationNoteRect, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPanel, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbComponentInvalidLayerError, type PcbComponentInvalidLayerErrorInput, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCopperText, type PcbCopperTextInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardPolygon, type PcbCourtyardPolygonInput, type PcbCourtyardRect, type PcbCourtyardRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPath, type PcbCutoutPathInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNoteDimension, type PcbFabricationNoteDimensionInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteRect, type PcbFabricationNoteRectInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircle, type PcbHoleCircleInput, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePill, type PcbHolePillInput, type PcbHolePillWithRectPad, type PcbHoleRect, type PcbHoleRectInput, type PcbHoleRotatedPill, type PcbHoleRotatedPillInput, type PcbHoleRotatedPillWithRectPad, type PcbHoleWithPolygonPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbNet, type PcbNetInput, type PcbNoteDimension, type PcbNoteDimensionInput, type PcbNoteLine, type PcbNoteLineInput, type PcbNotePath, type PcbNotePathInput, type PcbNoteRect, type PcbNoteRectInput, type PcbNoteText, type PcbNoteTextInput, type PcbPanel, type PcbPanelInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotConnectedError, type PcbPortNotConnectedErrorInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadPolygon, type PcbSmtPadRect, type PcbSmtPadRotatedPill, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbThermalSpoke, type PcbThermalSpokeInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceMissingError, type PcbTraceMissingErrorInput, type PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicArc, type SchematicArcInput, type SchematicBox, type SchematicBoxInput, type SchematicCircle, type SchematicCircleInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicRect, type SchematicRectInput, type SchematicSheet, type SchematicSheetInput, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationUnknownExperimentError, type SimulationUnknownExperimentErrorInput, type SimulationVoltageProbe, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceComponentInternalConnection, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceInterconnect, type SourceInterconnectInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePinMustBeConnectedError, type SourcePinMustBeConnectedErrorInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePinout, type SourceSimplePinoutInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceSimpleVoltageProbe, type SourceSimpleVoltageProbeInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type UnknownErrorFindingPart, type UnknownErrorFindingPartInput, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, battery_capacity, brep_shape, cad_component, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, ms, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_outside_board_error, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_copper_text, pcb_courtyard_outline, pcb_courtyard_polygon, pcb_courtyard_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_path, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_dimension, pcb_fabrication_note_path, pcb_fabrication_note_rect, pcb_fabrication_note_text, pcb_footprint_overlap_error, pcb_ground_plane, pcb_ground_plane_region, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_circle_shape, pcb_hole_oval_shape, pcb_hole_pill_shape, pcb_hole_rect_shape, pcb_hole_rotated_pill_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_net, pcb_note_dimension, pcb_note_line, pcb_note_path, pcb_note_rect, pcb_note_text, pcb_panel, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_connected_error, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_thermal_spoke, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_missing_error, pcb_trace_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_via, pcb_via_clearance_error, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, rotation, route_hint_point, schematic_arc, schematic_box, schematic_circle, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_rect, schematic_sheet, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_voltage_source, simulation_dc_voltage_source, simulation_experiment, simulation_switch, simulation_transient_voltage_graph, simulation_unknown_experiment_error, simulation_voltage_probe, simulation_voltage_source, size, source_board, source_component_base, source_component_internal_connection, source_failed_to_create_component_error, source_group, source_interconnect, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, source_pin_missing_trace_warning, source_pin_must_be_connected_error, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_pin_header, source_simple_pinout, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_simple_voltage_probe, source_trace, source_trace_not_connected_error, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|
|
29256
|
+
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type BRepShape, type CadComponent, type CadComponentInput, type CircuitJson, type CircuitJsonError, type CircuitJsonFootprintLoadError, type CircuitJsonFootprintLoadErrorInput, type Distance, type ExperimentType, type ExternalFootprintLoadError, type ExternalFootprintLoadErrorInput, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBCopperText, type PCBCourtyardOutline, type PCBCourtyardPolygon, type PCBCourtyardRect, type PCBFabricationNoteDimension, type PCBFabricationNotePath, type PCBFabricationNoteRect, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPanel, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbComponentInvalidLayerError, type PcbComponentInvalidLayerErrorInput, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCopperText, type PcbCopperTextInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardPolygon, type PcbCourtyardPolygonInput, type PcbCourtyardRect, type PcbCourtyardRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPath, type PcbCutoutPathInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNoteDimension, type PcbFabricationNoteDimensionInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteRect, type PcbFabricationNoteRectInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircle, type PcbHoleCircleInput, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePill, type PcbHolePillInput, type PcbHolePillWithRectPad, type PcbHoleRect, type PcbHoleRectInput, type PcbHoleRotatedPill, type PcbHoleRotatedPillInput, type PcbHoleRotatedPillWithRectPad, type PcbHoleWithPolygonPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbNet, type PcbNetInput, type PcbNoteDimension, type PcbNoteDimensionInput, type PcbNoteLine, type PcbNoteLineInput, type PcbNotePath, type PcbNotePathInput, type PcbNoteRect, type PcbNoteRectInput, type PcbNoteText, type PcbNoteTextInput, type PcbPanel, type PcbPanelInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotConnectedError, type PcbPortNotConnectedErrorInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadPolygon, type PcbSmtPadRect, type PcbSmtPadRotatedPill, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbThermalSpoke, type PcbThermalSpokeInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceMissingError, type PcbTraceMissingErrorInput, type PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicArc, type SchematicArcInput, type SchematicBox, type SchematicBoxInput, type SchematicCircle, type SchematicCircleInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicRect, type SchematicRectInput, type SchematicSheet, type SchematicSheetInput, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationUnknownExperimentError, type SimulationUnknownExperimentErrorInput, type SimulationVoltageProbe, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceComponentInternalConnection, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceInterconnect, type SourceInterconnectInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePinMustBeConnectedError, type SourcePinMustBeConnectedErrorInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleFiducial, type SourceSimpleFiducialInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePinout, type SourceSimplePinoutInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceSimpleVoltageProbe, type SourceSimpleVoltageProbeInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type UnknownErrorFindingPart, type UnknownErrorFindingPartInput, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, battery_capacity, brep_shape, cad_component, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, ms, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_outside_board_error, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_copper_text, pcb_courtyard_outline, pcb_courtyard_polygon, pcb_courtyard_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_path, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_dimension, pcb_fabrication_note_path, pcb_fabrication_note_rect, pcb_fabrication_note_text, pcb_footprint_overlap_error, pcb_ground_plane, pcb_ground_plane_region, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_circle_shape, pcb_hole_oval_shape, pcb_hole_pill_shape, pcb_hole_rect_shape, pcb_hole_rotated_pill_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_net, pcb_note_dimension, pcb_note_line, pcb_note_path, pcb_note_rect, pcb_note_text, pcb_panel, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_connected_error, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_thermal_spoke, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_missing_error, pcb_trace_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_via, pcb_via_clearance_error, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, rotation, route_hint_point, schematic_arc, schematic_box, schematic_circle, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_rect, schematic_sheet, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_voltage_source, simulation_dc_voltage_source, simulation_experiment, simulation_switch, simulation_transient_voltage_graph, simulation_unknown_experiment_error, simulation_voltage_probe, simulation_voltage_source, size, source_board, source_component_base, source_component_internal_connection, source_failed_to_create_component_error, source_group, source_interconnect, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, source_pin_missing_trace_warning, source_pin_must_be_connected_error, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_fiducial, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_pin_header, source_simple_pinout, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_simple_voltage_probe, source_trace, source_trace_not_connected_error, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|