circuit-json 0.0.397 → 0.0.399
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/dist/index.d.mts +113 -24
- package/dist/index.mjs +36 -21
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -6598,6 +6598,8 @@ declare const pcb_trace_route_point_wire: z.ZodObject<{
|
|
|
6598
6598
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
6599
6599
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
6600
6600
|
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
6601
|
+
copper_pour_id: z.ZodOptional<z.ZodString>;
|
|
6602
|
+
is_inside_copper_pour: z.ZodOptional<z.ZodBoolean>;
|
|
6601
6603
|
start_pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
6602
6604
|
end_pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
6603
6605
|
layer: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -6615,6 +6617,8 @@ declare const pcb_trace_route_point_wire: z.ZodObject<{
|
|
|
6615
6617
|
width: number;
|
|
6616
6618
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6617
6619
|
route_type: "wire";
|
|
6620
|
+
copper_pour_id?: string | undefined;
|
|
6621
|
+
is_inside_copper_pour?: boolean | undefined;
|
|
6618
6622
|
start_pcb_port_id?: string | undefined;
|
|
6619
6623
|
end_pcb_port_id?: string | undefined;
|
|
6620
6624
|
}, {
|
|
@@ -6625,6 +6629,8 @@ declare const pcb_trace_route_point_wire: z.ZodObject<{
|
|
|
6625
6629
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6626
6630
|
};
|
|
6627
6631
|
route_type: "wire";
|
|
6632
|
+
copper_pour_id?: string | undefined;
|
|
6633
|
+
is_inside_copper_pour?: boolean | undefined;
|
|
6628
6634
|
start_pcb_port_id?: string | undefined;
|
|
6629
6635
|
end_pcb_port_id?: string | undefined;
|
|
6630
6636
|
}>;
|
|
@@ -6632,6 +6638,8 @@ declare const pcb_trace_route_point_via: z.ZodObject<{
|
|
|
6632
6638
|
route_type: z.ZodLiteral<"via">;
|
|
6633
6639
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
6634
6640
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
6641
|
+
copper_pour_id: z.ZodOptional<z.ZodString>;
|
|
6642
|
+
is_inside_copper_pour: z.ZodOptional<z.ZodBoolean>;
|
|
6635
6643
|
hole_diameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6636
6644
|
outer_diameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6637
6645
|
from_layer: z.ZodString;
|
|
@@ -6644,6 +6652,8 @@ declare const pcb_trace_route_point_via: z.ZodObject<{
|
|
|
6644
6652
|
from_layer: string;
|
|
6645
6653
|
hole_diameter?: number | undefined;
|
|
6646
6654
|
outer_diameter?: number | undefined;
|
|
6655
|
+
copper_pour_id?: string | undefined;
|
|
6656
|
+
is_inside_copper_pour?: boolean | undefined;
|
|
6647
6657
|
}, {
|
|
6648
6658
|
x: string | number;
|
|
6649
6659
|
y: string | number;
|
|
@@ -6652,12 +6662,16 @@ declare const pcb_trace_route_point_via: z.ZodObject<{
|
|
|
6652
6662
|
from_layer: string;
|
|
6653
6663
|
hole_diameter?: string | number | undefined;
|
|
6654
6664
|
outer_diameter?: string | number | undefined;
|
|
6665
|
+
copper_pour_id?: string | undefined;
|
|
6666
|
+
is_inside_copper_pour?: boolean | undefined;
|
|
6655
6667
|
}>;
|
|
6656
6668
|
declare const pcb_trace_route_point: z.ZodUnion<[z.ZodObject<{
|
|
6657
6669
|
route_type: z.ZodLiteral<"wire">;
|
|
6658
6670
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
6659
6671
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
6660
6672
|
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
6673
|
+
copper_pour_id: z.ZodOptional<z.ZodString>;
|
|
6674
|
+
is_inside_copper_pour: z.ZodOptional<z.ZodBoolean>;
|
|
6661
6675
|
start_pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
6662
6676
|
end_pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
6663
6677
|
layer: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -6675,6 +6689,8 @@ declare const pcb_trace_route_point: z.ZodUnion<[z.ZodObject<{
|
|
|
6675
6689
|
width: number;
|
|
6676
6690
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6677
6691
|
route_type: "wire";
|
|
6692
|
+
copper_pour_id?: string | undefined;
|
|
6693
|
+
is_inside_copper_pour?: boolean | undefined;
|
|
6678
6694
|
start_pcb_port_id?: string | undefined;
|
|
6679
6695
|
end_pcb_port_id?: string | undefined;
|
|
6680
6696
|
}, {
|
|
@@ -6685,12 +6701,16 @@ declare const pcb_trace_route_point: z.ZodUnion<[z.ZodObject<{
|
|
|
6685
6701
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6686
6702
|
};
|
|
6687
6703
|
route_type: "wire";
|
|
6704
|
+
copper_pour_id?: string | undefined;
|
|
6705
|
+
is_inside_copper_pour?: boolean | undefined;
|
|
6688
6706
|
start_pcb_port_id?: string | undefined;
|
|
6689
6707
|
end_pcb_port_id?: string | undefined;
|
|
6690
6708
|
}>, z.ZodObject<{
|
|
6691
6709
|
route_type: z.ZodLiteral<"via">;
|
|
6692
6710
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
6693
6711
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
6712
|
+
copper_pour_id: z.ZodOptional<z.ZodString>;
|
|
6713
|
+
is_inside_copper_pour: z.ZodOptional<z.ZodBoolean>;
|
|
6694
6714
|
hole_diameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6695
6715
|
outer_diameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6696
6716
|
from_layer: z.ZodString;
|
|
@@ -6703,6 +6723,8 @@ declare const pcb_trace_route_point: z.ZodUnion<[z.ZodObject<{
|
|
|
6703
6723
|
from_layer: string;
|
|
6704
6724
|
hole_diameter?: number | undefined;
|
|
6705
6725
|
outer_diameter?: number | undefined;
|
|
6726
|
+
copper_pour_id?: string | undefined;
|
|
6727
|
+
is_inside_copper_pour?: boolean | undefined;
|
|
6706
6728
|
}, {
|
|
6707
6729
|
x: string | number;
|
|
6708
6730
|
y: string | number;
|
|
@@ -6711,6 +6733,8 @@ declare const pcb_trace_route_point: z.ZodUnion<[z.ZodObject<{
|
|
|
6711
6733
|
from_layer: string;
|
|
6712
6734
|
hole_diameter?: string | number | undefined;
|
|
6713
6735
|
outer_diameter?: string | number | undefined;
|
|
6736
|
+
copper_pour_id?: string | undefined;
|
|
6737
|
+
is_inside_copper_pour?: boolean | undefined;
|
|
6714
6738
|
}>]>;
|
|
6715
6739
|
declare const pcb_trace: z.ZodObject<{
|
|
6716
6740
|
type: z.ZodLiteral<"pcb_trace">;
|
|
@@ -6729,6 +6753,8 @@ declare const pcb_trace: z.ZodObject<{
|
|
|
6729
6753
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
6730
6754
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
6731
6755
|
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
6756
|
+
copper_pour_id: z.ZodOptional<z.ZodString>;
|
|
6757
|
+
is_inside_copper_pour: z.ZodOptional<z.ZodBoolean>;
|
|
6732
6758
|
start_pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
6733
6759
|
end_pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
6734
6760
|
layer: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -6746,6 +6772,8 @@ declare const pcb_trace: z.ZodObject<{
|
|
|
6746
6772
|
width: number;
|
|
6747
6773
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6748
6774
|
route_type: "wire";
|
|
6775
|
+
copper_pour_id?: string | undefined;
|
|
6776
|
+
is_inside_copper_pour?: boolean | undefined;
|
|
6749
6777
|
start_pcb_port_id?: string | undefined;
|
|
6750
6778
|
end_pcb_port_id?: string | undefined;
|
|
6751
6779
|
}, {
|
|
@@ -6756,12 +6784,16 @@ declare const pcb_trace: z.ZodObject<{
|
|
|
6756
6784
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6757
6785
|
};
|
|
6758
6786
|
route_type: "wire";
|
|
6787
|
+
copper_pour_id?: string | undefined;
|
|
6788
|
+
is_inside_copper_pour?: boolean | undefined;
|
|
6759
6789
|
start_pcb_port_id?: string | undefined;
|
|
6760
6790
|
end_pcb_port_id?: string | undefined;
|
|
6761
6791
|
}>, z.ZodObject<{
|
|
6762
6792
|
route_type: z.ZodLiteral<"via">;
|
|
6763
6793
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
6764
6794
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
6795
|
+
copper_pour_id: z.ZodOptional<z.ZodString>;
|
|
6796
|
+
is_inside_copper_pour: z.ZodOptional<z.ZodBoolean>;
|
|
6765
6797
|
hole_diameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6766
6798
|
outer_diameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6767
6799
|
from_layer: z.ZodString;
|
|
@@ -6774,6 +6806,8 @@ declare const pcb_trace: z.ZodObject<{
|
|
|
6774
6806
|
from_layer: string;
|
|
6775
6807
|
hole_diameter?: number | undefined;
|
|
6776
6808
|
outer_diameter?: number | undefined;
|
|
6809
|
+
copper_pour_id?: string | undefined;
|
|
6810
|
+
is_inside_copper_pour?: boolean | undefined;
|
|
6777
6811
|
}, {
|
|
6778
6812
|
x: string | number;
|
|
6779
6813
|
y: string | number;
|
|
@@ -6782,6 +6816,8 @@ declare const pcb_trace: z.ZodObject<{
|
|
|
6782
6816
|
from_layer: string;
|
|
6783
6817
|
hole_diameter?: string | number | undefined;
|
|
6784
6818
|
outer_diameter?: string | number | undefined;
|
|
6819
|
+
copper_pour_id?: string | undefined;
|
|
6820
|
+
is_inside_copper_pour?: boolean | undefined;
|
|
6785
6821
|
}>]>, "many">;
|
|
6786
6822
|
}, "strip", z.ZodTypeAny, {
|
|
6787
6823
|
type: "pcb_trace";
|
|
@@ -6792,6 +6828,8 @@ declare const pcb_trace: z.ZodObject<{
|
|
|
6792
6828
|
width: number;
|
|
6793
6829
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6794
6830
|
route_type: "wire";
|
|
6831
|
+
copper_pour_id?: string | undefined;
|
|
6832
|
+
is_inside_copper_pour?: boolean | undefined;
|
|
6795
6833
|
start_pcb_port_id?: string | undefined;
|
|
6796
6834
|
end_pcb_port_id?: string | undefined;
|
|
6797
6835
|
} | {
|
|
@@ -6802,6 +6840,8 @@ declare const pcb_trace: z.ZodObject<{
|
|
|
6802
6840
|
from_layer: string;
|
|
6803
6841
|
hole_diameter?: number | undefined;
|
|
6804
6842
|
outer_diameter?: number | undefined;
|
|
6843
|
+
copper_pour_id?: string | undefined;
|
|
6844
|
+
is_inside_copper_pour?: boolean | undefined;
|
|
6805
6845
|
})[];
|
|
6806
6846
|
pcb_component_id?: string | undefined;
|
|
6807
6847
|
subcircuit_id?: string | undefined;
|
|
@@ -6822,6 +6862,8 @@ declare const pcb_trace: z.ZodObject<{
|
|
|
6822
6862
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6823
6863
|
};
|
|
6824
6864
|
route_type: "wire";
|
|
6865
|
+
copper_pour_id?: string | undefined;
|
|
6866
|
+
is_inside_copper_pour?: boolean | undefined;
|
|
6825
6867
|
start_pcb_port_id?: string | undefined;
|
|
6826
6868
|
end_pcb_port_id?: string | undefined;
|
|
6827
6869
|
} | {
|
|
@@ -6832,6 +6874,8 @@ declare const pcb_trace: z.ZodObject<{
|
|
|
6832
6874
|
from_layer: string;
|
|
6833
6875
|
hole_diameter?: string | number | undefined;
|
|
6834
6876
|
outer_diameter?: string | number | undefined;
|
|
6877
|
+
copper_pour_id?: string | undefined;
|
|
6878
|
+
is_inside_copper_pour?: boolean | undefined;
|
|
6835
6879
|
})[];
|
|
6836
6880
|
pcb_component_id?: string | undefined;
|
|
6837
6881
|
subcircuit_id?: string | undefined;
|
|
@@ -6850,6 +6894,8 @@ interface PcbTraceRoutePointWire {
|
|
|
6850
6894
|
x: Distance;
|
|
6851
6895
|
y: Distance;
|
|
6852
6896
|
width: Distance;
|
|
6897
|
+
copper_pour_id?: string;
|
|
6898
|
+
is_inside_copper_pour?: boolean;
|
|
6853
6899
|
start_pcb_port_id?: string;
|
|
6854
6900
|
end_pcb_port_id?: string;
|
|
6855
6901
|
layer: LayerRef;
|
|
@@ -6858,6 +6904,8 @@ interface PcbTraceRoutePointVia {
|
|
|
6858
6904
|
route_type: "via";
|
|
6859
6905
|
x: Distance;
|
|
6860
6906
|
y: Distance;
|
|
6907
|
+
copper_pour_id?: string;
|
|
6908
|
+
is_inside_copper_pour?: boolean;
|
|
6861
6909
|
hole_diameter?: Distance;
|
|
6862
6910
|
outer_diameter?: Distance;
|
|
6863
6911
|
from_layer: string;
|
|
@@ -31865,6 +31913,20 @@ declare const kicadSymbolMetadata: z.ZodObject<{
|
|
|
31865
31913
|
onBoard?: boolean | undefined;
|
|
31866
31914
|
}>;
|
|
31867
31915
|
|
|
31916
|
+
declare const cad_model_formats: readonly ["obj", "stl", "3mf", "gltf", "glb", "step", "wrl"];
|
|
31917
|
+
declare const cad_model_axis_directions: readonly ["x+", "x-", "y+", "y-", "z+", "z-"];
|
|
31918
|
+
type CadModelFormat = (typeof cad_model_formats)[number];
|
|
31919
|
+
type CadModelAxisDirection = (typeof cad_model_axis_directions)[number];
|
|
31920
|
+
declare const cadModelDefaultDirectionMap: {
|
|
31921
|
+
readonly obj: "z+";
|
|
31922
|
+
readonly stl: "z+";
|
|
31923
|
+
readonly "3mf": "z+";
|
|
31924
|
+
readonly gltf: "y+";
|
|
31925
|
+
readonly glb: "y+";
|
|
31926
|
+
readonly step: "z+";
|
|
31927
|
+
readonly wrl: "y+";
|
|
31928
|
+
};
|
|
31929
|
+
|
|
31868
31930
|
declare const cad_component: z.ZodObject<{
|
|
31869
31931
|
type: z.ZodLiteral<"cad_component">;
|
|
31870
31932
|
cad_component_id: z.ZodString;
|
|
@@ -31941,7 +32003,7 @@ declare const cad_component: z.ZodObject<{
|
|
|
31941
32003
|
mimetype: string;
|
|
31942
32004
|
}>>;
|
|
31943
32005
|
model_unit_to_mm_scale_factor: z.ZodOptional<z.ZodNumber>;
|
|
31944
|
-
model_board_normal_direction: z.ZodOptional<z.ZodEnum<["y+", "z+"]>>;
|
|
32006
|
+
model_board_normal_direction: z.ZodOptional<z.ZodEnum<["x+", "x-", "y+", "y-", "z+", "z-"]>>;
|
|
31945
32007
|
model_origin_position: z.ZodOptional<z.ZodObject<{
|
|
31946
32008
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
31947
32009
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -31998,7 +32060,7 @@ declare const cad_component: z.ZodObject<{
|
|
|
31998
32060
|
mimetype: string;
|
|
31999
32061
|
} | undefined;
|
|
32000
32062
|
model_unit_to_mm_scale_factor?: number | undefined;
|
|
32001
|
-
model_board_normal_direction?: "y+" | "z+" | undefined;
|
|
32063
|
+
model_board_normal_direction?: "x-" | "x+" | "y+" | "y-" | "z+" | "z-" | undefined;
|
|
32002
32064
|
model_origin_position?: {
|
|
32003
32065
|
x: number;
|
|
32004
32066
|
y: number;
|
|
@@ -32046,7 +32108,7 @@ declare const cad_component: z.ZodObject<{
|
|
|
32046
32108
|
mimetype: string;
|
|
32047
32109
|
} | undefined;
|
|
32048
32110
|
model_unit_to_mm_scale_factor?: number | undefined;
|
|
32049
|
-
model_board_normal_direction?: "y+" | "z+" | undefined;
|
|
32111
|
+
model_board_normal_direction?: "x-" | "x+" | "y+" | "y-" | "z+" | "z-" | undefined;
|
|
32050
32112
|
model_origin_position?: {
|
|
32051
32113
|
x: string | number;
|
|
32052
32114
|
y: string | number;
|
|
@@ -32080,7 +32142,7 @@ interface CadComponent {
|
|
|
32080
32142
|
model_wrl_url?: string;
|
|
32081
32143
|
model_asset?: Asset;
|
|
32082
32144
|
model_unit_to_mm_scale_factor?: number;
|
|
32083
|
-
model_board_normal_direction?:
|
|
32145
|
+
model_board_normal_direction?: CadModelAxisDirection;
|
|
32084
32146
|
model_origin_position?: Point3;
|
|
32085
32147
|
model_origin_alignment?: "unknown" | "center" | "center_of_component_on_board_surface";
|
|
32086
32148
|
model_object_fit: "contain_within_bounds" | "fill_bounds";
|
|
@@ -32089,19 +32151,6 @@ interface CadComponent {
|
|
|
32089
32151
|
anchor_alignment: CadComponentAnchorAlignment;
|
|
32090
32152
|
}
|
|
32091
32153
|
|
|
32092
|
-
declare const cad_model_formats: readonly ["obj", "stl", "3mf", "gltf", "glb", "step", "wrl"];
|
|
32093
|
-
type CadModelFormat = (typeof cad_model_formats)[number];
|
|
32094
|
-
type CadModelDirection = "x+" | "x-" | "y+" | "y-" | "z+" | "z-";
|
|
32095
|
-
declare const cadModelDefaultDirectionMap: {
|
|
32096
|
-
readonly obj: "z+";
|
|
32097
|
-
readonly stl: "z+";
|
|
32098
|
-
readonly "3mf": "z+";
|
|
32099
|
-
readonly gltf: "y+";
|
|
32100
|
-
readonly glb: "y+";
|
|
32101
|
-
readonly step: "z+";
|
|
32102
|
-
readonly wrl: "y+";
|
|
32103
|
-
};
|
|
32104
|
-
|
|
32105
32154
|
declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
32106
32155
|
type: z.ZodLiteral<"source_trace">;
|
|
32107
32156
|
source_trace_id: z.ZodString;
|
|
@@ -37699,6 +37748,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
37699
37748
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
37700
37749
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
37701
37750
|
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
37751
|
+
copper_pour_id: z.ZodOptional<z.ZodString>;
|
|
37752
|
+
is_inside_copper_pour: z.ZodOptional<z.ZodBoolean>;
|
|
37702
37753
|
start_pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
37703
37754
|
end_pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
37704
37755
|
layer: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -37716,6 +37767,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
37716
37767
|
width: number;
|
|
37717
37768
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
37718
37769
|
route_type: "wire";
|
|
37770
|
+
copper_pour_id?: string | undefined;
|
|
37771
|
+
is_inside_copper_pour?: boolean | undefined;
|
|
37719
37772
|
start_pcb_port_id?: string | undefined;
|
|
37720
37773
|
end_pcb_port_id?: string | undefined;
|
|
37721
37774
|
}, {
|
|
@@ -37726,12 +37779,16 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
37726
37779
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
37727
37780
|
};
|
|
37728
37781
|
route_type: "wire";
|
|
37782
|
+
copper_pour_id?: string | undefined;
|
|
37783
|
+
is_inside_copper_pour?: boolean | undefined;
|
|
37729
37784
|
start_pcb_port_id?: string | undefined;
|
|
37730
37785
|
end_pcb_port_id?: string | undefined;
|
|
37731
37786
|
}>, z.ZodObject<{
|
|
37732
37787
|
route_type: z.ZodLiteral<"via">;
|
|
37733
37788
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
37734
37789
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
37790
|
+
copper_pour_id: z.ZodOptional<z.ZodString>;
|
|
37791
|
+
is_inside_copper_pour: z.ZodOptional<z.ZodBoolean>;
|
|
37735
37792
|
hole_diameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
37736
37793
|
outer_diameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
37737
37794
|
from_layer: z.ZodString;
|
|
@@ -37744,6 +37801,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
37744
37801
|
from_layer: string;
|
|
37745
37802
|
hole_diameter?: number | undefined;
|
|
37746
37803
|
outer_diameter?: number | undefined;
|
|
37804
|
+
copper_pour_id?: string | undefined;
|
|
37805
|
+
is_inside_copper_pour?: boolean | undefined;
|
|
37747
37806
|
}, {
|
|
37748
37807
|
x: string | number;
|
|
37749
37808
|
y: string | number;
|
|
@@ -37752,6 +37811,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
37752
37811
|
from_layer: string;
|
|
37753
37812
|
hole_diameter?: string | number | undefined;
|
|
37754
37813
|
outer_diameter?: string | number | undefined;
|
|
37814
|
+
copper_pour_id?: string | undefined;
|
|
37815
|
+
is_inside_copper_pour?: boolean | undefined;
|
|
37755
37816
|
}>]>, "many">;
|
|
37756
37817
|
}, "strip", z.ZodTypeAny, {
|
|
37757
37818
|
type: "pcb_trace";
|
|
@@ -37762,6 +37823,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
37762
37823
|
width: number;
|
|
37763
37824
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
37764
37825
|
route_type: "wire";
|
|
37826
|
+
copper_pour_id?: string | undefined;
|
|
37827
|
+
is_inside_copper_pour?: boolean | undefined;
|
|
37765
37828
|
start_pcb_port_id?: string | undefined;
|
|
37766
37829
|
end_pcb_port_id?: string | undefined;
|
|
37767
37830
|
} | {
|
|
@@ -37772,6 +37835,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
37772
37835
|
from_layer: string;
|
|
37773
37836
|
hole_diameter?: number | undefined;
|
|
37774
37837
|
outer_diameter?: number | undefined;
|
|
37838
|
+
copper_pour_id?: string | undefined;
|
|
37839
|
+
is_inside_copper_pour?: boolean | undefined;
|
|
37775
37840
|
})[];
|
|
37776
37841
|
pcb_component_id?: string | undefined;
|
|
37777
37842
|
subcircuit_id?: string | undefined;
|
|
@@ -37792,6 +37857,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
37792
37857
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
37793
37858
|
};
|
|
37794
37859
|
route_type: "wire";
|
|
37860
|
+
copper_pour_id?: string | undefined;
|
|
37861
|
+
is_inside_copper_pour?: boolean | undefined;
|
|
37795
37862
|
start_pcb_port_id?: string | undefined;
|
|
37796
37863
|
end_pcb_port_id?: string | undefined;
|
|
37797
37864
|
} | {
|
|
@@ -37802,6 +37869,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
37802
37869
|
from_layer: string;
|
|
37803
37870
|
hole_diameter?: string | number | undefined;
|
|
37804
37871
|
outer_diameter?: string | number | undefined;
|
|
37872
|
+
copper_pour_id?: string | undefined;
|
|
37873
|
+
is_inside_copper_pour?: boolean | undefined;
|
|
37805
37874
|
})[];
|
|
37806
37875
|
pcb_component_id?: string | undefined;
|
|
37807
37876
|
subcircuit_id?: string | undefined;
|
|
@@ -49359,7 +49428,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
49359
49428
|
mimetype: string;
|
|
49360
49429
|
}>>;
|
|
49361
49430
|
model_unit_to_mm_scale_factor: z.ZodOptional<z.ZodNumber>;
|
|
49362
|
-
model_board_normal_direction: z.ZodOptional<z.ZodEnum<["y+", "z+"]>>;
|
|
49431
|
+
model_board_normal_direction: z.ZodOptional<z.ZodEnum<["x+", "x-", "y+", "y-", "z+", "z-"]>>;
|
|
49363
49432
|
model_origin_position: z.ZodOptional<z.ZodObject<{
|
|
49364
49433
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
49365
49434
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -49416,7 +49485,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
49416
49485
|
mimetype: string;
|
|
49417
49486
|
} | undefined;
|
|
49418
49487
|
model_unit_to_mm_scale_factor?: number | undefined;
|
|
49419
|
-
model_board_normal_direction?: "y+" | "z+" | undefined;
|
|
49488
|
+
model_board_normal_direction?: "x-" | "x+" | "y+" | "y-" | "z+" | "z-" | undefined;
|
|
49420
49489
|
model_origin_position?: {
|
|
49421
49490
|
x: number;
|
|
49422
49491
|
y: number;
|
|
@@ -49464,7 +49533,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
49464
49533
|
mimetype: string;
|
|
49465
49534
|
} | undefined;
|
|
49466
49535
|
model_unit_to_mm_scale_factor?: number | undefined;
|
|
49467
|
-
model_board_normal_direction?: "y+" | "z+" | undefined;
|
|
49536
|
+
model_board_normal_direction?: "x-" | "x+" | "y+" | "y-" | "z+" | "z-" | undefined;
|
|
49468
49537
|
model_origin_position?: {
|
|
49469
49538
|
x: string | number;
|
|
49470
49539
|
y: string | number;
|
|
@@ -55407,6 +55476,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
55407
55476
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
55408
55477
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
55409
55478
|
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
55479
|
+
copper_pour_id: z.ZodOptional<z.ZodString>;
|
|
55480
|
+
is_inside_copper_pour: z.ZodOptional<z.ZodBoolean>;
|
|
55410
55481
|
start_pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
55411
55482
|
end_pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
55412
55483
|
layer: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -55424,6 +55495,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
55424
55495
|
width: number;
|
|
55425
55496
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
55426
55497
|
route_type: "wire";
|
|
55498
|
+
copper_pour_id?: string | undefined;
|
|
55499
|
+
is_inside_copper_pour?: boolean | undefined;
|
|
55427
55500
|
start_pcb_port_id?: string | undefined;
|
|
55428
55501
|
end_pcb_port_id?: string | undefined;
|
|
55429
55502
|
}, {
|
|
@@ -55434,12 +55507,16 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
55434
55507
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
55435
55508
|
};
|
|
55436
55509
|
route_type: "wire";
|
|
55510
|
+
copper_pour_id?: string | undefined;
|
|
55511
|
+
is_inside_copper_pour?: boolean | undefined;
|
|
55437
55512
|
start_pcb_port_id?: string | undefined;
|
|
55438
55513
|
end_pcb_port_id?: string | undefined;
|
|
55439
55514
|
}>, z.ZodObject<{
|
|
55440
55515
|
route_type: z.ZodLiteral<"via">;
|
|
55441
55516
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
55442
55517
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
55518
|
+
copper_pour_id: z.ZodOptional<z.ZodString>;
|
|
55519
|
+
is_inside_copper_pour: z.ZodOptional<z.ZodBoolean>;
|
|
55443
55520
|
hole_diameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
55444
55521
|
outer_diameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
55445
55522
|
from_layer: z.ZodString;
|
|
@@ -55452,6 +55529,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
55452
55529
|
from_layer: string;
|
|
55453
55530
|
hole_diameter?: number | undefined;
|
|
55454
55531
|
outer_diameter?: number | undefined;
|
|
55532
|
+
copper_pour_id?: string | undefined;
|
|
55533
|
+
is_inside_copper_pour?: boolean | undefined;
|
|
55455
55534
|
}, {
|
|
55456
55535
|
x: string | number;
|
|
55457
55536
|
y: string | number;
|
|
@@ -55460,6 +55539,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
55460
55539
|
from_layer: string;
|
|
55461
55540
|
hole_diameter?: string | number | undefined;
|
|
55462
55541
|
outer_diameter?: string | number | undefined;
|
|
55542
|
+
copper_pour_id?: string | undefined;
|
|
55543
|
+
is_inside_copper_pour?: boolean | undefined;
|
|
55463
55544
|
}>]>, "many">;
|
|
55464
55545
|
}, "strip", z.ZodTypeAny, {
|
|
55465
55546
|
type: "pcb_trace";
|
|
@@ -55470,6 +55551,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
55470
55551
|
width: number;
|
|
55471
55552
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
55472
55553
|
route_type: "wire";
|
|
55554
|
+
copper_pour_id?: string | undefined;
|
|
55555
|
+
is_inside_copper_pour?: boolean | undefined;
|
|
55473
55556
|
start_pcb_port_id?: string | undefined;
|
|
55474
55557
|
end_pcb_port_id?: string | undefined;
|
|
55475
55558
|
} | {
|
|
@@ -55480,6 +55563,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
55480
55563
|
from_layer: string;
|
|
55481
55564
|
hole_diameter?: number | undefined;
|
|
55482
55565
|
outer_diameter?: number | undefined;
|
|
55566
|
+
copper_pour_id?: string | undefined;
|
|
55567
|
+
is_inside_copper_pour?: boolean | undefined;
|
|
55483
55568
|
})[];
|
|
55484
55569
|
pcb_component_id?: string | undefined;
|
|
55485
55570
|
subcircuit_id?: string | undefined;
|
|
@@ -55500,6 +55585,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
55500
55585
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
55501
55586
|
};
|
|
55502
55587
|
route_type: "wire";
|
|
55588
|
+
copper_pour_id?: string | undefined;
|
|
55589
|
+
is_inside_copper_pour?: boolean | undefined;
|
|
55503
55590
|
start_pcb_port_id?: string | undefined;
|
|
55504
55591
|
end_pcb_port_id?: string | undefined;
|
|
55505
55592
|
} | {
|
|
@@ -55510,6 +55597,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
55510
55597
|
from_layer: string;
|
|
55511
55598
|
hole_diameter?: string | number | undefined;
|
|
55512
55599
|
outer_diameter?: string | number | undefined;
|
|
55600
|
+
copper_pour_id?: string | undefined;
|
|
55601
|
+
is_inside_copper_pour?: boolean | undefined;
|
|
55513
55602
|
})[];
|
|
55514
55603
|
pcb_component_id?: string | undefined;
|
|
55515
55604
|
subcircuit_id?: string | undefined;
|
|
@@ -67067,7 +67156,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
67067
67156
|
mimetype: string;
|
|
67068
67157
|
}>>;
|
|
67069
67158
|
model_unit_to_mm_scale_factor: z.ZodOptional<z.ZodNumber>;
|
|
67070
|
-
model_board_normal_direction: z.ZodOptional<z.ZodEnum<["y+", "z+"]>>;
|
|
67159
|
+
model_board_normal_direction: z.ZodOptional<z.ZodEnum<["x+", "x-", "y+", "y-", "z+", "z-"]>>;
|
|
67071
67160
|
model_origin_position: z.ZodOptional<z.ZodObject<{
|
|
67072
67161
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
67073
67162
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -67124,7 +67213,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
67124
67213
|
mimetype: string;
|
|
67125
67214
|
} | undefined;
|
|
67126
67215
|
model_unit_to_mm_scale_factor?: number | undefined;
|
|
67127
|
-
model_board_normal_direction?: "y+" | "z+" | undefined;
|
|
67216
|
+
model_board_normal_direction?: "x-" | "x+" | "y+" | "y-" | "z+" | "z-" | undefined;
|
|
67128
67217
|
model_origin_position?: {
|
|
67129
67218
|
x: number;
|
|
67130
67219
|
y: number;
|
|
@@ -67172,7 +67261,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
67172
67261
|
mimetype: string;
|
|
67173
67262
|
} | undefined;
|
|
67174
67263
|
model_unit_to_mm_scale_factor?: number | undefined;
|
|
67175
|
-
model_board_normal_direction?: "y+" | "z+" | undefined;
|
|
67264
|
+
model_board_normal_direction?: "x-" | "x+" | "y+" | "y-" | "z+" | "z-" | undefined;
|
|
67176
67265
|
model_origin_position?: {
|
|
67177
67266
|
x: string | number;
|
|
67178
67267
|
y: string | number;
|
|
@@ -67531,4 +67620,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
67531
67620
|
*/
|
|
67532
67621
|
type CircuitJson = AnyCircuitElement[];
|
|
67533
67622
|
|
|
67534
|
-
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type Asset, type AssetInput, type BRepShape, type BaseCircuitJsonError, type BaseCircuitJsonErrorInput, type CadComponent, type CadComponentAnchorAlignment, type CadComponentInput, type CadModelDirection, type CadModelFormat, 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 KicadAt, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, 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 PCBPanelizationPlacementError, 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 PcbComponentMetadata, type PcbComponentNotOnBoardEdgeError, type PcbComponentNotOnBoardEdgeErrorInput, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbConnectorNotInAccessibleOrientationWarning, type PcbConnectorNotInAccessibleOrientationWarningInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCopperText, type PcbCopperTextInput, type PcbCourtyardCircle, type PcbCourtyardCircleInput, 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 PcbPanelizationPlacementError, type PcbPanelizationPlacementErrorInput, 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 PcbRenderLayer, 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 PcbSilkscreenPill, type PcbSilkscreenPillDeprecated, type PcbSilkscreenPillInput, 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 SchematicSymbol, type SchematicSymbolInput, type SchematicSymbolMetadata, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcCurrentSource, type SimulationAcCurrentSourceInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationCurrentSource, type SimulationCurrentSourceInput, type SimulationDcCurrentSource, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationOpAmp, type SimulationOpAmpInput, 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 SourceAmbiguousPortReference, type SourceAmbiguousPortReferenceInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceComponentInternalConnection, type SourceComponentPinsUnderspecifiedWarning, type SourceComponentPinsUnderspecifiedWarningInput, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceI2cMisconfiguredError, type SourceI2cMisconfiguredErrorInput, type SourceInterconnect, type SourceInterconnectInput, type SourceInvalidComponentPropertyError, type SourceInvalidComponentPropertyErrorInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourceNoGroundPinDefinedWarning, type SourceNoGroundPinDefinedWarningInput, type SourceNoPowerPinDefinedWarning, type SourceNoPowerPinDefinedWarningInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinAttributes, 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 SourceSimpleConnector, type SourceSimpleConnectorInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleCurrentSource, type SourceSimpleCurrentSourceInput, 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 SourceSimpleOpAmp, type SourceSimpleOpAmpInput, 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 SourceSimpleVoltageSource, type SourceSimpleVoltageSourceInput, 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, asset, base_circuit_json_error, battery_capacity, brep_shape, cadModelDefaultDirectionMap, cad_component, cad_model_formats, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layer_ref, layer_string, length, ms, ninePointAnchor, pcbRenderLayer, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_not_on_board_edge_error, pcb_component_outside_board_error, pcb_connector_not_in_accessible_orientation_warning, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_copper_text, pcb_courtyard_circle, 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_panelization_placement_error, 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_pill, 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_symbol, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_current_source, simulation_ac_voltage_source, simulation_current_source, simulation_dc_current_source, simulation_dc_voltage_source, simulation_experiment, simulation_op_amp, simulation_switch, simulation_transient_voltage_graph, simulation_unknown_experiment_error, simulation_voltage_probe, simulation_voltage_source, size, source_ambiguous_port_reference, source_board, source_component_base, source_component_internal_connection, source_component_pins_underspecified_warning, source_failed_to_create_component_error, source_group, source_i2c_misconfigured_error, source_interconnect, source_invalid_component_property_error, source_manually_placed_via, source_missing_property_error, source_net, source_no_ground_pin_defined_warning, source_no_power_pin_defined_warning, source_pcb_ground_plane, source_pin_attributes, 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_connector, source_simple_crystal, source_simple_current_source, source_simple_diode, source_simple_fiducial, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_op_amp, 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_simple_voltage_source, source_trace, source_trace_not_connected_error, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|
|
67623
|
+
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type Asset, type AssetInput, type BRepShape, type BaseCircuitJsonError, type BaseCircuitJsonErrorInput, type CadComponent, type CadComponentAnchorAlignment, type CadComponentInput, type CadModelAxisDirection, type CadModelFormat, 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 KicadAt, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, 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 PCBPanelizationPlacementError, 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 PcbComponentMetadata, type PcbComponentNotOnBoardEdgeError, type PcbComponentNotOnBoardEdgeErrorInput, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbConnectorNotInAccessibleOrientationWarning, type PcbConnectorNotInAccessibleOrientationWarningInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCopperText, type PcbCopperTextInput, type PcbCourtyardCircle, type PcbCourtyardCircleInput, 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 PcbPanelizationPlacementError, type PcbPanelizationPlacementErrorInput, 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 PcbRenderLayer, 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 PcbSilkscreenPill, type PcbSilkscreenPillDeprecated, type PcbSilkscreenPillInput, 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 SchematicSymbol, type SchematicSymbolInput, type SchematicSymbolMetadata, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcCurrentSource, type SimulationAcCurrentSourceInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationCurrentSource, type SimulationCurrentSourceInput, type SimulationDcCurrentSource, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationOpAmp, type SimulationOpAmpInput, 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 SourceAmbiguousPortReference, type SourceAmbiguousPortReferenceInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceComponentInternalConnection, type SourceComponentPinsUnderspecifiedWarning, type SourceComponentPinsUnderspecifiedWarningInput, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceI2cMisconfiguredError, type SourceI2cMisconfiguredErrorInput, type SourceInterconnect, type SourceInterconnectInput, type SourceInvalidComponentPropertyError, type SourceInvalidComponentPropertyErrorInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourceNoGroundPinDefinedWarning, type SourceNoGroundPinDefinedWarningInput, type SourceNoPowerPinDefinedWarning, type SourceNoPowerPinDefinedWarningInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinAttributes, 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 SourceSimpleConnector, type SourceSimpleConnectorInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleCurrentSource, type SourceSimpleCurrentSourceInput, 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 SourceSimpleOpAmp, type SourceSimpleOpAmpInput, 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 SourceSimpleVoltageSource, type SourceSimpleVoltageSourceInput, 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, asset, base_circuit_json_error, battery_capacity, brep_shape, cadModelDefaultDirectionMap, cad_component, cad_model_axis_directions, cad_model_formats, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layer_ref, layer_string, length, ms, ninePointAnchor, pcbRenderLayer, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_not_on_board_edge_error, pcb_component_outside_board_error, pcb_connector_not_in_accessible_orientation_warning, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_copper_text, pcb_courtyard_circle, 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_panelization_placement_error, 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_pill, 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_symbol, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_current_source, simulation_ac_voltage_source, simulation_current_source, simulation_dc_current_source, simulation_dc_voltage_source, simulation_experiment, simulation_op_amp, simulation_switch, simulation_transient_voltage_graph, simulation_unknown_experiment_error, simulation_voltage_probe, simulation_voltage_source, size, source_ambiguous_port_reference, source_board, source_component_base, source_component_internal_connection, source_component_pins_underspecified_warning, source_failed_to_create_component_error, source_group, source_i2c_misconfigured_error, source_interconnect, source_invalid_component_property_error, source_manually_placed_via, source_missing_property_error, source_net, source_no_ground_pin_defined_warning, source_no_power_pin_defined_warning, source_pcb_ground_plane, source_pin_attributes, 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_connector, source_simple_crystal, source_simple_current_source, source_simple_diode, source_simple_fiducial, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_op_amp, 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_simple_voltage_source, source_trace, source_trace_not_connected_error, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|