circuit-json 0.0.423 → 0.0.425
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 -1
- package/dist/index.d.mts +510 -2
- package/dist/index.mjs +14 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -6740,6 +6740,84 @@ declare const pcb_trace_route_point_via: z.ZodObject<{
|
|
|
6740
6740
|
copper_pour_id?: string | undefined;
|
|
6741
6741
|
is_inside_copper_pour?: boolean | undefined;
|
|
6742
6742
|
}>;
|
|
6743
|
+
declare const pcb_trace_route_point_through_pad: z.ZodObject<{
|
|
6744
|
+
route_type: z.ZodLiteral<"through_pad">;
|
|
6745
|
+
start: z.ZodObject<{
|
|
6746
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
6747
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
6748
|
+
}, "strip", z.ZodTypeAny, {
|
|
6749
|
+
x: number;
|
|
6750
|
+
y: number;
|
|
6751
|
+
}, {
|
|
6752
|
+
x: string | number;
|
|
6753
|
+
y: string | number;
|
|
6754
|
+
}>;
|
|
6755
|
+
end: z.ZodObject<{
|
|
6756
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
6757
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
6758
|
+
}, "strip", z.ZodTypeAny, {
|
|
6759
|
+
x: number;
|
|
6760
|
+
y: number;
|
|
6761
|
+
}, {
|
|
6762
|
+
x: string | number;
|
|
6763
|
+
y: string | number;
|
|
6764
|
+
}>;
|
|
6765
|
+
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
6766
|
+
start_layer: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
6767
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
6768
|
+
}, "strip", z.ZodTypeAny, {
|
|
6769
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6770
|
+
}, {
|
|
6771
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6772
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
6773
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6774
|
+
}>;
|
|
6775
|
+
end_layer: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
6776
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
6777
|
+
}, "strip", z.ZodTypeAny, {
|
|
6778
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6779
|
+
}, {
|
|
6780
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6781
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
6782
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6783
|
+
}>;
|
|
6784
|
+
pcb_smtpad_id: z.ZodOptional<z.ZodString>;
|
|
6785
|
+
pcb_plated_hole_id: z.ZodOptional<z.ZodString>;
|
|
6786
|
+
}, "strip", z.ZodTypeAny, {
|
|
6787
|
+
width: number;
|
|
6788
|
+
route_type: "through_pad";
|
|
6789
|
+
start: {
|
|
6790
|
+
x: number;
|
|
6791
|
+
y: number;
|
|
6792
|
+
};
|
|
6793
|
+
end: {
|
|
6794
|
+
x: number;
|
|
6795
|
+
y: number;
|
|
6796
|
+
};
|
|
6797
|
+
start_layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6798
|
+
end_layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6799
|
+
pcb_plated_hole_id?: string | undefined;
|
|
6800
|
+
pcb_smtpad_id?: string | undefined;
|
|
6801
|
+
}, {
|
|
6802
|
+
width: string | number;
|
|
6803
|
+
route_type: "through_pad";
|
|
6804
|
+
start: {
|
|
6805
|
+
x: string | number;
|
|
6806
|
+
y: string | number;
|
|
6807
|
+
};
|
|
6808
|
+
end: {
|
|
6809
|
+
x: string | number;
|
|
6810
|
+
y: string | number;
|
|
6811
|
+
};
|
|
6812
|
+
start_layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
6813
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6814
|
+
};
|
|
6815
|
+
end_layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
6816
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6817
|
+
};
|
|
6818
|
+
pcb_plated_hole_id?: string | undefined;
|
|
6819
|
+
pcb_smtpad_id?: string | undefined;
|
|
6820
|
+
}>;
|
|
6743
6821
|
declare const pcb_trace_route_point: z.ZodUnion<[z.ZodObject<{
|
|
6744
6822
|
route_type: z.ZodLiteral<"wire">;
|
|
6745
6823
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -6830,6 +6908,83 @@ declare const pcb_trace_route_point: z.ZodUnion<[z.ZodObject<{
|
|
|
6830
6908
|
outer_diameter?: string | number | undefined;
|
|
6831
6909
|
copper_pour_id?: string | undefined;
|
|
6832
6910
|
is_inside_copper_pour?: boolean | undefined;
|
|
6911
|
+
}>, z.ZodObject<{
|
|
6912
|
+
route_type: z.ZodLiteral<"through_pad">;
|
|
6913
|
+
start: z.ZodObject<{
|
|
6914
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
6915
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
6916
|
+
}, "strip", z.ZodTypeAny, {
|
|
6917
|
+
x: number;
|
|
6918
|
+
y: number;
|
|
6919
|
+
}, {
|
|
6920
|
+
x: string | number;
|
|
6921
|
+
y: string | number;
|
|
6922
|
+
}>;
|
|
6923
|
+
end: z.ZodObject<{
|
|
6924
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
6925
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
6926
|
+
}, "strip", z.ZodTypeAny, {
|
|
6927
|
+
x: number;
|
|
6928
|
+
y: number;
|
|
6929
|
+
}, {
|
|
6930
|
+
x: string | number;
|
|
6931
|
+
y: string | number;
|
|
6932
|
+
}>;
|
|
6933
|
+
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
6934
|
+
start_layer: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
6935
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
6936
|
+
}, "strip", z.ZodTypeAny, {
|
|
6937
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6938
|
+
}, {
|
|
6939
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6940
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
6941
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6942
|
+
}>;
|
|
6943
|
+
end_layer: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
6944
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
6945
|
+
}, "strip", z.ZodTypeAny, {
|
|
6946
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6947
|
+
}, {
|
|
6948
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6949
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
6950
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6951
|
+
}>;
|
|
6952
|
+
pcb_smtpad_id: z.ZodOptional<z.ZodString>;
|
|
6953
|
+
pcb_plated_hole_id: z.ZodOptional<z.ZodString>;
|
|
6954
|
+
}, "strip", z.ZodTypeAny, {
|
|
6955
|
+
width: number;
|
|
6956
|
+
route_type: "through_pad";
|
|
6957
|
+
start: {
|
|
6958
|
+
x: number;
|
|
6959
|
+
y: number;
|
|
6960
|
+
};
|
|
6961
|
+
end: {
|
|
6962
|
+
x: number;
|
|
6963
|
+
y: number;
|
|
6964
|
+
};
|
|
6965
|
+
start_layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6966
|
+
end_layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6967
|
+
pcb_plated_hole_id?: string | undefined;
|
|
6968
|
+
pcb_smtpad_id?: string | undefined;
|
|
6969
|
+
}, {
|
|
6970
|
+
width: string | number;
|
|
6971
|
+
route_type: "through_pad";
|
|
6972
|
+
start: {
|
|
6973
|
+
x: string | number;
|
|
6974
|
+
y: string | number;
|
|
6975
|
+
};
|
|
6976
|
+
end: {
|
|
6977
|
+
x: string | number;
|
|
6978
|
+
y: string | number;
|
|
6979
|
+
};
|
|
6980
|
+
start_layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
6981
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6982
|
+
};
|
|
6983
|
+
end_layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
6984
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6985
|
+
};
|
|
6986
|
+
pcb_plated_hole_id?: string | undefined;
|
|
6987
|
+
pcb_smtpad_id?: string | undefined;
|
|
6833
6988
|
}>]>;
|
|
6834
6989
|
declare const pcb_trace: z.ZodObject<{
|
|
6835
6990
|
type: z.ZodLiteral<"pcb_trace">;
|
|
@@ -6933,6 +7088,83 @@ declare const pcb_trace: z.ZodObject<{
|
|
|
6933
7088
|
outer_diameter?: string | number | undefined;
|
|
6934
7089
|
copper_pour_id?: string | undefined;
|
|
6935
7090
|
is_inside_copper_pour?: boolean | undefined;
|
|
7091
|
+
}>, z.ZodObject<{
|
|
7092
|
+
route_type: z.ZodLiteral<"through_pad">;
|
|
7093
|
+
start: z.ZodObject<{
|
|
7094
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
7095
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
7096
|
+
}, "strip", z.ZodTypeAny, {
|
|
7097
|
+
x: number;
|
|
7098
|
+
y: number;
|
|
7099
|
+
}, {
|
|
7100
|
+
x: string | number;
|
|
7101
|
+
y: string | number;
|
|
7102
|
+
}>;
|
|
7103
|
+
end: z.ZodObject<{
|
|
7104
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
7105
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
7106
|
+
}, "strip", z.ZodTypeAny, {
|
|
7107
|
+
x: number;
|
|
7108
|
+
y: number;
|
|
7109
|
+
}, {
|
|
7110
|
+
x: string | number;
|
|
7111
|
+
y: string | number;
|
|
7112
|
+
}>;
|
|
7113
|
+
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
7114
|
+
start_layer: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
7115
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
7116
|
+
}, "strip", z.ZodTypeAny, {
|
|
7117
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
7118
|
+
}, {
|
|
7119
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
7120
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
7121
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
7122
|
+
}>;
|
|
7123
|
+
end_layer: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
7124
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
7125
|
+
}, "strip", z.ZodTypeAny, {
|
|
7126
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
7127
|
+
}, {
|
|
7128
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
7129
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
7130
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
7131
|
+
}>;
|
|
7132
|
+
pcb_smtpad_id: z.ZodOptional<z.ZodString>;
|
|
7133
|
+
pcb_plated_hole_id: z.ZodOptional<z.ZodString>;
|
|
7134
|
+
}, "strip", z.ZodTypeAny, {
|
|
7135
|
+
width: number;
|
|
7136
|
+
route_type: "through_pad";
|
|
7137
|
+
start: {
|
|
7138
|
+
x: number;
|
|
7139
|
+
y: number;
|
|
7140
|
+
};
|
|
7141
|
+
end: {
|
|
7142
|
+
x: number;
|
|
7143
|
+
y: number;
|
|
7144
|
+
};
|
|
7145
|
+
start_layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
7146
|
+
end_layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
7147
|
+
pcb_plated_hole_id?: string | undefined;
|
|
7148
|
+
pcb_smtpad_id?: string | undefined;
|
|
7149
|
+
}, {
|
|
7150
|
+
width: string | number;
|
|
7151
|
+
route_type: "through_pad";
|
|
7152
|
+
start: {
|
|
7153
|
+
x: string | number;
|
|
7154
|
+
y: string | number;
|
|
7155
|
+
};
|
|
7156
|
+
end: {
|
|
7157
|
+
x: string | number;
|
|
7158
|
+
y: string | number;
|
|
7159
|
+
};
|
|
7160
|
+
start_layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
7161
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
7162
|
+
};
|
|
7163
|
+
end_layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
7164
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
7165
|
+
};
|
|
7166
|
+
pcb_plated_hole_id?: string | undefined;
|
|
7167
|
+
pcb_smtpad_id?: string | undefined;
|
|
6936
7168
|
}>]>, "many">;
|
|
6937
7169
|
}, "strip", z.ZodTypeAny, {
|
|
6938
7170
|
type: "pcb_trace";
|
|
@@ -6957,6 +7189,21 @@ declare const pcb_trace: z.ZodObject<{
|
|
|
6957
7189
|
outer_diameter?: number | undefined;
|
|
6958
7190
|
copper_pour_id?: string | undefined;
|
|
6959
7191
|
is_inside_copper_pour?: boolean | undefined;
|
|
7192
|
+
} | {
|
|
7193
|
+
width: number;
|
|
7194
|
+
route_type: "through_pad";
|
|
7195
|
+
start: {
|
|
7196
|
+
x: number;
|
|
7197
|
+
y: number;
|
|
7198
|
+
};
|
|
7199
|
+
end: {
|
|
7200
|
+
x: number;
|
|
7201
|
+
y: number;
|
|
7202
|
+
};
|
|
7203
|
+
start_layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
7204
|
+
end_layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
7205
|
+
pcb_plated_hole_id?: string | undefined;
|
|
7206
|
+
pcb_smtpad_id?: string | undefined;
|
|
6960
7207
|
})[];
|
|
6961
7208
|
pcb_component_id?: string | undefined;
|
|
6962
7209
|
subcircuit_id?: string | undefined;
|
|
@@ -6995,6 +7242,25 @@ declare const pcb_trace: z.ZodObject<{
|
|
|
6995
7242
|
outer_diameter?: string | number | undefined;
|
|
6996
7243
|
copper_pour_id?: string | undefined;
|
|
6997
7244
|
is_inside_copper_pour?: boolean | undefined;
|
|
7245
|
+
} | {
|
|
7246
|
+
width: string | number;
|
|
7247
|
+
route_type: "through_pad";
|
|
7248
|
+
start: {
|
|
7249
|
+
x: string | number;
|
|
7250
|
+
y: string | number;
|
|
7251
|
+
};
|
|
7252
|
+
end: {
|
|
7253
|
+
x: string | number;
|
|
7254
|
+
y: string | number;
|
|
7255
|
+
};
|
|
7256
|
+
start_layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
7257
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
7258
|
+
};
|
|
7259
|
+
end_layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
7260
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
7261
|
+
};
|
|
7262
|
+
pcb_plated_hole_id?: string | undefined;
|
|
7263
|
+
pcb_smtpad_id?: string | undefined;
|
|
6998
7264
|
})[];
|
|
6999
7265
|
pcb_component_id?: string | undefined;
|
|
7000
7266
|
subcircuit_id?: string | undefined;
|
|
@@ -7030,7 +7296,17 @@ interface PcbTraceRoutePointVia {
|
|
|
7030
7296
|
from_layer: LayerRef;
|
|
7031
7297
|
to_layer: LayerRef;
|
|
7032
7298
|
}
|
|
7033
|
-
|
|
7299
|
+
interface PcbTraceRoutePointThroughPad {
|
|
7300
|
+
route_type: "through_pad";
|
|
7301
|
+
start: Point;
|
|
7302
|
+
end: Point;
|
|
7303
|
+
width: Distance;
|
|
7304
|
+
start_layer: LayerRef;
|
|
7305
|
+
end_layer: LayerRef;
|
|
7306
|
+
pcb_smtpad_id?: string;
|
|
7307
|
+
pcb_plated_hole_id?: string;
|
|
7308
|
+
}
|
|
7309
|
+
type PcbTraceRoutePoint = PcbTraceRoutePointWire | PcbTraceRoutePointVia | PcbTraceRoutePointThroughPad;
|
|
7034
7310
|
/**
|
|
7035
7311
|
* Defines a trace on the PCB
|
|
7036
7312
|
*/
|
|
@@ -32643,6 +32919,7 @@ declare const cad_component: z.ZodObject<{
|
|
|
32643
32919
|
model_object_fit: z.ZodDefault<z.ZodOptional<z.ZodEnum<["contain_within_bounds", "fill_bounds"]>>>;
|
|
32644
32920
|
model_jscad: z.ZodOptional<z.ZodAny>;
|
|
32645
32921
|
show_as_translucent_model: z.ZodOptional<z.ZodBoolean>;
|
|
32922
|
+
show_as_bounding_box: z.ZodOptional<z.ZodBoolean>;
|
|
32646
32923
|
anchor_alignment: z.ZodDefault<z.ZodOptional<z.ZodEnum<["center", "center_of_component_on_board_surface"]>>>;
|
|
32647
32924
|
}, "strip", z.ZodTypeAny, {
|
|
32648
32925
|
type: "cad_component";
|
|
@@ -32691,6 +32968,7 @@ declare const cad_component: z.ZodObject<{
|
|
|
32691
32968
|
model_origin_alignment?: "unknown" | "center" | "center_of_component_on_board_surface" | "bottom_center_of_component" | undefined;
|
|
32692
32969
|
model_jscad?: any;
|
|
32693
32970
|
show_as_translucent_model?: boolean | undefined;
|
|
32971
|
+
show_as_bounding_box?: boolean | undefined;
|
|
32694
32972
|
}, {
|
|
32695
32973
|
type: "cad_component";
|
|
32696
32974
|
pcb_component_id: string;
|
|
@@ -32740,6 +33018,7 @@ declare const cad_component: z.ZodObject<{
|
|
|
32740
33018
|
model_object_fit?: "contain_within_bounds" | "fill_bounds" | undefined;
|
|
32741
33019
|
model_jscad?: any;
|
|
32742
33020
|
show_as_translucent_model?: boolean | undefined;
|
|
33021
|
+
show_as_bounding_box?: boolean | undefined;
|
|
32743
33022
|
}>;
|
|
32744
33023
|
type CadComponentInput = z.input<typeof cad_component>;
|
|
32745
33024
|
type InferredCadComponent = z.infer<typeof cad_component>;
|
|
@@ -32770,6 +33049,7 @@ interface CadComponent {
|
|
|
32770
33049
|
model_object_fit: "contain_within_bounds" | "fill_bounds";
|
|
32771
33050
|
model_jscad?: any;
|
|
32772
33051
|
show_as_translucent_model?: boolean;
|
|
33052
|
+
show_as_bounding_box?: boolean;
|
|
32773
33053
|
anchor_alignment: CadComponentAnchorAlignment;
|
|
32774
33054
|
}
|
|
32775
33055
|
|
|
@@ -38551,6 +38831,83 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38551
38831
|
outer_diameter?: string | number | undefined;
|
|
38552
38832
|
copper_pour_id?: string | undefined;
|
|
38553
38833
|
is_inside_copper_pour?: boolean | undefined;
|
|
38834
|
+
}>, z.ZodObject<{
|
|
38835
|
+
route_type: z.ZodLiteral<"through_pad">;
|
|
38836
|
+
start: z.ZodObject<{
|
|
38837
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
38838
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
38839
|
+
}, "strip", z.ZodTypeAny, {
|
|
38840
|
+
x: number;
|
|
38841
|
+
y: number;
|
|
38842
|
+
}, {
|
|
38843
|
+
x: string | number;
|
|
38844
|
+
y: string | number;
|
|
38845
|
+
}>;
|
|
38846
|
+
end: z.ZodObject<{
|
|
38847
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
38848
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
38849
|
+
}, "strip", z.ZodTypeAny, {
|
|
38850
|
+
x: number;
|
|
38851
|
+
y: number;
|
|
38852
|
+
}, {
|
|
38853
|
+
x: string | number;
|
|
38854
|
+
y: string | number;
|
|
38855
|
+
}>;
|
|
38856
|
+
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
38857
|
+
start_layer: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
38858
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
38859
|
+
}, "strip", z.ZodTypeAny, {
|
|
38860
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
38861
|
+
}, {
|
|
38862
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
38863
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
38864
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
38865
|
+
}>;
|
|
38866
|
+
end_layer: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
38867
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
38868
|
+
}, "strip", z.ZodTypeAny, {
|
|
38869
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
38870
|
+
}, {
|
|
38871
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
38872
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
38873
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
38874
|
+
}>;
|
|
38875
|
+
pcb_smtpad_id: z.ZodOptional<z.ZodString>;
|
|
38876
|
+
pcb_plated_hole_id: z.ZodOptional<z.ZodString>;
|
|
38877
|
+
}, "strip", z.ZodTypeAny, {
|
|
38878
|
+
width: number;
|
|
38879
|
+
route_type: "through_pad";
|
|
38880
|
+
start: {
|
|
38881
|
+
x: number;
|
|
38882
|
+
y: number;
|
|
38883
|
+
};
|
|
38884
|
+
end: {
|
|
38885
|
+
x: number;
|
|
38886
|
+
y: number;
|
|
38887
|
+
};
|
|
38888
|
+
start_layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
38889
|
+
end_layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
38890
|
+
pcb_plated_hole_id?: string | undefined;
|
|
38891
|
+
pcb_smtpad_id?: string | undefined;
|
|
38892
|
+
}, {
|
|
38893
|
+
width: string | number;
|
|
38894
|
+
route_type: "through_pad";
|
|
38895
|
+
start: {
|
|
38896
|
+
x: string | number;
|
|
38897
|
+
y: string | number;
|
|
38898
|
+
};
|
|
38899
|
+
end: {
|
|
38900
|
+
x: string | number;
|
|
38901
|
+
y: string | number;
|
|
38902
|
+
};
|
|
38903
|
+
start_layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
38904
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
38905
|
+
};
|
|
38906
|
+
end_layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
38907
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
38908
|
+
};
|
|
38909
|
+
pcb_plated_hole_id?: string | undefined;
|
|
38910
|
+
pcb_smtpad_id?: string | undefined;
|
|
38554
38911
|
}>]>, "many">;
|
|
38555
38912
|
}, "strip", z.ZodTypeAny, {
|
|
38556
38913
|
type: "pcb_trace";
|
|
@@ -38575,6 +38932,21 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38575
38932
|
outer_diameter?: number | undefined;
|
|
38576
38933
|
copper_pour_id?: string | undefined;
|
|
38577
38934
|
is_inside_copper_pour?: boolean | undefined;
|
|
38935
|
+
} | {
|
|
38936
|
+
width: number;
|
|
38937
|
+
route_type: "through_pad";
|
|
38938
|
+
start: {
|
|
38939
|
+
x: number;
|
|
38940
|
+
y: number;
|
|
38941
|
+
};
|
|
38942
|
+
end: {
|
|
38943
|
+
x: number;
|
|
38944
|
+
y: number;
|
|
38945
|
+
};
|
|
38946
|
+
start_layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
38947
|
+
end_layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
38948
|
+
pcb_plated_hole_id?: string | undefined;
|
|
38949
|
+
pcb_smtpad_id?: string | undefined;
|
|
38578
38950
|
})[];
|
|
38579
38951
|
pcb_component_id?: string | undefined;
|
|
38580
38952
|
subcircuit_id?: string | undefined;
|
|
@@ -38613,6 +38985,25 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38613
38985
|
outer_diameter?: string | number | undefined;
|
|
38614
38986
|
copper_pour_id?: string | undefined;
|
|
38615
38987
|
is_inside_copper_pour?: boolean | undefined;
|
|
38988
|
+
} | {
|
|
38989
|
+
width: string | number;
|
|
38990
|
+
route_type: "through_pad";
|
|
38991
|
+
start: {
|
|
38992
|
+
x: string | number;
|
|
38993
|
+
y: string | number;
|
|
38994
|
+
};
|
|
38995
|
+
end: {
|
|
38996
|
+
x: string | number;
|
|
38997
|
+
y: string | number;
|
|
38998
|
+
};
|
|
38999
|
+
start_layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
39000
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
39001
|
+
};
|
|
39002
|
+
end_layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
39003
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
39004
|
+
};
|
|
39005
|
+
pcb_plated_hole_id?: string | undefined;
|
|
39006
|
+
pcb_smtpad_id?: string | undefined;
|
|
38616
39007
|
})[];
|
|
38617
39008
|
pcb_component_id?: string | undefined;
|
|
38618
39009
|
subcircuit_id?: string | undefined;
|
|
@@ -50472,6 +50863,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
50472
50863
|
model_object_fit: z.ZodDefault<z.ZodOptional<z.ZodEnum<["contain_within_bounds", "fill_bounds"]>>>;
|
|
50473
50864
|
model_jscad: z.ZodOptional<z.ZodAny>;
|
|
50474
50865
|
show_as_translucent_model: z.ZodOptional<z.ZodBoolean>;
|
|
50866
|
+
show_as_bounding_box: z.ZodOptional<z.ZodBoolean>;
|
|
50475
50867
|
anchor_alignment: z.ZodDefault<z.ZodOptional<z.ZodEnum<["center", "center_of_component_on_board_surface"]>>>;
|
|
50476
50868
|
}, "strip", z.ZodTypeAny, {
|
|
50477
50869
|
type: "cad_component";
|
|
@@ -50520,6 +50912,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
50520
50912
|
model_origin_alignment?: "unknown" | "center" | "center_of_component_on_board_surface" | "bottom_center_of_component" | undefined;
|
|
50521
50913
|
model_jscad?: any;
|
|
50522
50914
|
show_as_translucent_model?: boolean | undefined;
|
|
50915
|
+
show_as_bounding_box?: boolean | undefined;
|
|
50523
50916
|
}, {
|
|
50524
50917
|
type: "cad_component";
|
|
50525
50918
|
pcb_component_id: string;
|
|
@@ -50569,6 +50962,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
50569
50962
|
model_object_fit?: "contain_within_bounds" | "fill_bounds" | undefined;
|
|
50570
50963
|
model_jscad?: any;
|
|
50571
50964
|
show_as_translucent_model?: boolean | undefined;
|
|
50965
|
+
show_as_bounding_box?: boolean | undefined;
|
|
50572
50966
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
50573
50967
|
type: z.ZodLiteral<"simulation_voltage_source">;
|
|
50574
50968
|
simulation_voltage_source_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -56683,6 +57077,83 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
56683
57077
|
outer_diameter?: string | number | undefined;
|
|
56684
57078
|
copper_pour_id?: string | undefined;
|
|
56685
57079
|
is_inside_copper_pour?: boolean | undefined;
|
|
57080
|
+
}>, z.ZodObject<{
|
|
57081
|
+
route_type: z.ZodLiteral<"through_pad">;
|
|
57082
|
+
start: z.ZodObject<{
|
|
57083
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
57084
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
57085
|
+
}, "strip", z.ZodTypeAny, {
|
|
57086
|
+
x: number;
|
|
57087
|
+
y: number;
|
|
57088
|
+
}, {
|
|
57089
|
+
x: string | number;
|
|
57090
|
+
y: string | number;
|
|
57091
|
+
}>;
|
|
57092
|
+
end: z.ZodObject<{
|
|
57093
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
57094
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
57095
|
+
}, "strip", z.ZodTypeAny, {
|
|
57096
|
+
x: number;
|
|
57097
|
+
y: number;
|
|
57098
|
+
}, {
|
|
57099
|
+
x: string | number;
|
|
57100
|
+
y: string | number;
|
|
57101
|
+
}>;
|
|
57102
|
+
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
57103
|
+
start_layer: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
57104
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
57105
|
+
}, "strip", z.ZodTypeAny, {
|
|
57106
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
57107
|
+
}, {
|
|
57108
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
57109
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
57110
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
57111
|
+
}>;
|
|
57112
|
+
end_layer: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
57113
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
57114
|
+
}, "strip", z.ZodTypeAny, {
|
|
57115
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
57116
|
+
}, {
|
|
57117
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
57118
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
57119
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
57120
|
+
}>;
|
|
57121
|
+
pcb_smtpad_id: z.ZodOptional<z.ZodString>;
|
|
57122
|
+
pcb_plated_hole_id: z.ZodOptional<z.ZodString>;
|
|
57123
|
+
}, "strip", z.ZodTypeAny, {
|
|
57124
|
+
width: number;
|
|
57125
|
+
route_type: "through_pad";
|
|
57126
|
+
start: {
|
|
57127
|
+
x: number;
|
|
57128
|
+
y: number;
|
|
57129
|
+
};
|
|
57130
|
+
end: {
|
|
57131
|
+
x: number;
|
|
57132
|
+
y: number;
|
|
57133
|
+
};
|
|
57134
|
+
start_layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
57135
|
+
end_layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
57136
|
+
pcb_plated_hole_id?: string | undefined;
|
|
57137
|
+
pcb_smtpad_id?: string | undefined;
|
|
57138
|
+
}, {
|
|
57139
|
+
width: string | number;
|
|
57140
|
+
route_type: "through_pad";
|
|
57141
|
+
start: {
|
|
57142
|
+
x: string | number;
|
|
57143
|
+
y: string | number;
|
|
57144
|
+
};
|
|
57145
|
+
end: {
|
|
57146
|
+
x: string | number;
|
|
57147
|
+
y: string | number;
|
|
57148
|
+
};
|
|
57149
|
+
start_layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
57150
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
57151
|
+
};
|
|
57152
|
+
end_layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
57153
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
57154
|
+
};
|
|
57155
|
+
pcb_plated_hole_id?: string | undefined;
|
|
57156
|
+
pcb_smtpad_id?: string | undefined;
|
|
56686
57157
|
}>]>, "many">;
|
|
56687
57158
|
}, "strip", z.ZodTypeAny, {
|
|
56688
57159
|
type: "pcb_trace";
|
|
@@ -56707,6 +57178,21 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
56707
57178
|
outer_diameter?: number | undefined;
|
|
56708
57179
|
copper_pour_id?: string | undefined;
|
|
56709
57180
|
is_inside_copper_pour?: boolean | undefined;
|
|
57181
|
+
} | {
|
|
57182
|
+
width: number;
|
|
57183
|
+
route_type: "through_pad";
|
|
57184
|
+
start: {
|
|
57185
|
+
x: number;
|
|
57186
|
+
y: number;
|
|
57187
|
+
};
|
|
57188
|
+
end: {
|
|
57189
|
+
x: number;
|
|
57190
|
+
y: number;
|
|
57191
|
+
};
|
|
57192
|
+
start_layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
57193
|
+
end_layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
57194
|
+
pcb_plated_hole_id?: string | undefined;
|
|
57195
|
+
pcb_smtpad_id?: string | undefined;
|
|
56710
57196
|
})[];
|
|
56711
57197
|
pcb_component_id?: string | undefined;
|
|
56712
57198
|
subcircuit_id?: string | undefined;
|
|
@@ -56745,6 +57231,25 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
56745
57231
|
outer_diameter?: string | number | undefined;
|
|
56746
57232
|
copper_pour_id?: string | undefined;
|
|
56747
57233
|
is_inside_copper_pour?: boolean | undefined;
|
|
57234
|
+
} | {
|
|
57235
|
+
width: string | number;
|
|
57236
|
+
route_type: "through_pad";
|
|
57237
|
+
start: {
|
|
57238
|
+
x: string | number;
|
|
57239
|
+
y: string | number;
|
|
57240
|
+
};
|
|
57241
|
+
end: {
|
|
57242
|
+
x: string | number;
|
|
57243
|
+
y: string | number;
|
|
57244
|
+
};
|
|
57245
|
+
start_layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
57246
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
57247
|
+
};
|
|
57248
|
+
end_layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
57249
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
57250
|
+
};
|
|
57251
|
+
pcb_plated_hole_id?: string | undefined;
|
|
57252
|
+
pcb_smtpad_id?: string | undefined;
|
|
56748
57253
|
})[];
|
|
56749
57254
|
pcb_component_id?: string | undefined;
|
|
56750
57255
|
subcircuit_id?: string | undefined;
|
|
@@ -68604,6 +69109,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
68604
69109
|
model_object_fit: z.ZodDefault<z.ZodOptional<z.ZodEnum<["contain_within_bounds", "fill_bounds"]>>>;
|
|
68605
69110
|
model_jscad: z.ZodOptional<z.ZodAny>;
|
|
68606
69111
|
show_as_translucent_model: z.ZodOptional<z.ZodBoolean>;
|
|
69112
|
+
show_as_bounding_box: z.ZodOptional<z.ZodBoolean>;
|
|
68607
69113
|
anchor_alignment: z.ZodDefault<z.ZodOptional<z.ZodEnum<["center", "center_of_component_on_board_surface"]>>>;
|
|
68608
69114
|
}, "strip", z.ZodTypeAny, {
|
|
68609
69115
|
type: "cad_component";
|
|
@@ -68652,6 +69158,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
68652
69158
|
model_origin_alignment?: "unknown" | "center" | "center_of_component_on_board_surface" | "bottom_center_of_component" | undefined;
|
|
68653
69159
|
model_jscad?: any;
|
|
68654
69160
|
show_as_translucent_model?: boolean | undefined;
|
|
69161
|
+
show_as_bounding_box?: boolean | undefined;
|
|
68655
69162
|
}, {
|
|
68656
69163
|
type: "cad_component";
|
|
68657
69164
|
pcb_component_id: string;
|
|
@@ -68701,6 +69208,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
68701
69208
|
model_object_fit?: "contain_within_bounds" | "fill_bounds" | undefined;
|
|
68702
69209
|
model_jscad?: any;
|
|
68703
69210
|
show_as_translucent_model?: boolean | undefined;
|
|
69211
|
+
show_as_bounding_box?: boolean | undefined;
|
|
68704
69212
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
68705
69213
|
type: z.ZodLiteral<"simulation_voltage_source">;
|
|
68706
69214
|
simulation_voltage_source_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -69050,4 +69558,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
69050
69558
|
*/
|
|
69051
69559
|
type CircuitJson = AnyCircuitElement[];
|
|
69052
69560
|
|
|
69053
|
-
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 ManufacturingDrcProperties, 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 PcbCourtyardOverlapError, type PcbCourtyardOverlapErrorInput, 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 PcbPadPadClearanceError, type PcbPadPadClearanceErrorInput, type PcbPadTraceClearanceError, type PcbPadTraceClearanceErrorInput, 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 PcbTraceWarning, type PcbTraceWarningInput, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type PcbViaTraceClearanceError, type PcbViaTraceClearanceErrorInput, 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 SourceMissingManufacturerPartNumberWarning, type SourceMissingManufacturerPartNumberWarningInput, 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 SupplierFootprintMismatchWarning, type SupplierFootprintMismatchWarningInput, 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, manufacturing_drc_properties, 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_overlap_error, 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_pad_pad_clearance_error, pcb_pad_trace_clearance_error, 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_trace_warning, pcb_via, pcb_via_clearance_error, pcb_via_trace_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_manufacturer_part_number_warning, 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_footprint_mismatch_warning, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|
|
69561
|
+
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 ManufacturingDrcProperties, 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 PcbCourtyardOverlapError, type PcbCourtyardOverlapErrorInput, 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 PcbPadPadClearanceError, type PcbPadPadClearanceErrorInput, type PcbPadTraceClearanceError, type PcbPadTraceClearanceErrorInput, 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 PcbTraceRoutePointThroughPad, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbTraceWarning, type PcbTraceWarningInput, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type PcbViaTraceClearanceError, type PcbViaTraceClearanceErrorInput, 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 SourceMissingManufacturerPartNumberWarning, type SourceMissingManufacturerPartNumberWarningInput, 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 SupplierFootprintMismatchWarning, type SupplierFootprintMismatchWarningInput, 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, manufacturing_drc_properties, 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_overlap_error, 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_pad_pad_clearance_error, pcb_pad_trace_clearance_error, 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_through_pad, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_trace_warning, pcb_via, pcb_via_clearance_error, pcb_via_trace_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_manufacturer_part_number_warning, 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_footprint_mismatch_warning, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|