@tscircuit/props 0.0.130 → 0.0.131
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.ts +1234 -1214
- package/dist/index.js +163 -103
- package/dist/index.js.map +1 -1
- package/lib/common/layout.ts +3 -0
- package/lib/components/diode.ts +6 -0
- package/lib/components/fabrication-note-path.ts +12 -0
- package/lib/components/fabrication-note-text.ts +14 -0
- package/lib/components/inductor.ts +9 -0
- package/lib/components/led.ts +8 -0
- package/lib/components/pcb-keepout.ts +16 -0
- package/lib/components/pcb-trace.ts +9 -0
- package/lib/components/port.ts +11 -0
- package/lib/components/power-source.ts +8 -0
- package/lib/components/schematic-box.ts +10 -0
- package/lib/components/schematic-line.ts +10 -0
- package/lib/components/schematic-path.ts +9 -0
- package/lib/components/schematic-text.ts +9 -0
- package/lib/components/silkscreen-circle.ts +13 -0
- package/lib/components/silkscreen-line.ts +14 -0
- package/lib/components/silkscreen-path.ts +11 -0
- package/lib/components/silkscreen-rect.ts +14 -0
- package/lib/components/silkscreen-text.ts +13 -0
- package/lib/components/switch.ts +9 -0
- package/lib/components/trace-hint.ts +27 -0
- package/lib/components/via.ts +11 -0
- package/lib/index.ts +21 -232
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -675,21 +675,21 @@ declare const commonLayoutProps: z.ZodObject<{
|
|
|
675
675
|
pcbX?: number | undefined;
|
|
676
676
|
pcbY?: number | undefined;
|
|
677
677
|
pcbRotation?: number | undefined;
|
|
678
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
678
679
|
schX?: number | undefined;
|
|
679
680
|
schY?: number | undefined;
|
|
680
681
|
schRotation?: number | undefined;
|
|
681
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
682
682
|
footprint?: Footprint | undefined;
|
|
683
683
|
}, {
|
|
684
684
|
pcbX?: string | number | undefined;
|
|
685
685
|
pcbY?: string | number | undefined;
|
|
686
686
|
pcbRotation?: string | number | undefined;
|
|
687
|
-
schX?: string | number | undefined;
|
|
688
|
-
schY?: string | number | undefined;
|
|
689
|
-
schRotation?: string | number | undefined;
|
|
690
687
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
691
688
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
692
689
|
} | undefined;
|
|
690
|
+
schX?: string | number | undefined;
|
|
691
|
+
schY?: string | number | undefined;
|
|
692
|
+
schRotation?: string | number | undefined;
|
|
693
693
|
footprint?: Footprint | undefined;
|
|
694
694
|
}>;
|
|
695
695
|
type SupplierName = "jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc";
|
|
@@ -975,10 +975,10 @@ declare const commonComponentProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
975
975
|
pcbX?: number | undefined;
|
|
976
976
|
pcbY?: number | undefined;
|
|
977
977
|
pcbRotation?: number | undefined;
|
|
978
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
978
979
|
schX?: number | undefined;
|
|
979
980
|
schY?: number | undefined;
|
|
980
981
|
schRotation?: number | undefined;
|
|
981
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
982
982
|
footprint?: Footprint | undefined;
|
|
983
983
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
984
984
|
key?: any;
|
|
@@ -1042,12 +1042,12 @@ declare const commonComponentProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
1042
1042
|
pcbX?: string | number | undefined;
|
|
1043
1043
|
pcbY?: string | number | undefined;
|
|
1044
1044
|
pcbRotation?: string | number | undefined;
|
|
1045
|
-
schX?: string | number | undefined;
|
|
1046
|
-
schY?: string | number | undefined;
|
|
1047
|
-
schRotation?: string | number | undefined;
|
|
1048
1045
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
1049
1046
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1050
1047
|
} | undefined;
|
|
1048
|
+
schX?: string | number | undefined;
|
|
1049
|
+
schY?: string | number | undefined;
|
|
1050
|
+
schRotation?: string | number | undefined;
|
|
1051
1051
|
footprint?: Footprint | undefined;
|
|
1052
1052
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
1053
1053
|
key?: any;
|
|
@@ -1107,132 +1107,527 @@ declare const commonComponentProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
1107
1107
|
children?: any;
|
|
1108
1108
|
symbolName?: string | undefined;
|
|
1109
1109
|
}>;
|
|
1110
|
-
declare const
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
y: number;
|
|
1120
|
-
z: number;
|
|
1121
|
-
}, {
|
|
1122
|
-
x: string | number;
|
|
1123
|
-
y: string | number;
|
|
1124
|
-
z: string | number;
|
|
1125
|
-
}>;
|
|
1126
|
-
|
|
1127
|
-
/**
|
|
1128
|
-
* @deprecated Use SchematicPortArrangementWithPinCounts instead.
|
|
1129
|
-
*/
|
|
1130
|
-
interface SchematicPortArrangementWithSizes {
|
|
1131
|
-
leftSize?: number;
|
|
1132
|
-
topSize?: number;
|
|
1133
|
-
rightSize?: number;
|
|
1134
|
-
bottomSize?: number;
|
|
1135
|
-
}
|
|
1136
|
-
/**
|
|
1137
|
-
* Specifies the number of pins on each side of the schematic box component.
|
|
1138
|
-
*/
|
|
1139
|
-
interface SchematicPortArrangementWithPinCounts {
|
|
1140
|
-
leftPinCount?: number;
|
|
1141
|
-
topPinCount?: number;
|
|
1142
|
-
rightPinCount?: number;
|
|
1143
|
-
bottomPinCount?: number;
|
|
1144
|
-
}
|
|
1145
|
-
interface PinSideDefinition {
|
|
1146
|
-
pins: Array<number | string>;
|
|
1147
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
1148
|
-
}
|
|
1149
|
-
interface SchematicPortArrangementWithSides {
|
|
1150
|
-
leftSide?: PinSideDefinition;
|
|
1151
|
-
topSide?: PinSideDefinition;
|
|
1152
|
-
rightSide?: PinSideDefinition;
|
|
1153
|
-
bottomSide?: PinSideDefinition;
|
|
1154
|
-
}
|
|
1155
|
-
interface SchematicPortArrangement extends SchematicPortArrangementWithSizes, SchematicPortArrangementWithSides, SchematicPortArrangementWithPinCounts {
|
|
1156
|
-
}
|
|
1157
|
-
declare const explicitPinSideDefinition: z.ZodObject<{
|
|
1158
|
-
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
1159
|
-
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
1160
|
-
}, "strip", z.ZodTypeAny, {
|
|
1161
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
1162
|
-
pins: (string | number)[];
|
|
1163
|
-
}, {
|
|
1164
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
1165
|
-
pins: (string | number)[];
|
|
1166
|
-
}>;
|
|
1167
|
-
declare const schematicPortArrangement: z.ZodObject<{
|
|
1168
|
-
leftSize: z.ZodOptional<z.ZodNumber>;
|
|
1169
|
-
topSize: z.ZodOptional<z.ZodNumber>;
|
|
1170
|
-
rightSize: z.ZodOptional<z.ZodNumber>;
|
|
1171
|
-
bottomSize: z.ZodOptional<z.ZodNumber>;
|
|
1172
|
-
leftPinCount: z.ZodOptional<z.ZodNumber>;
|
|
1173
|
-
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
1174
|
-
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
1175
|
-
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
1176
|
-
leftSide: z.ZodOptional<z.ZodObject<{
|
|
1177
|
-
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
1178
|
-
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
1110
|
+
declare const componentProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
1111
|
+
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
1112
|
+
pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
1113
|
+
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
1114
|
+
schX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
1115
|
+
schY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
1116
|
+
schRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
1117
|
+
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
1118
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
1179
1119
|
}, "strip", z.ZodTypeAny, {
|
|
1180
|
-
|
|
1181
|
-
pins: (string | number)[];
|
|
1120
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1182
1121
|
}, {
|
|
1183
|
-
|
|
1184
|
-
|
|
1122
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1123
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
1124
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1185
1125
|
}>>;
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1126
|
+
footprint: z.ZodOptional<z.ZodType<Footprint, z.ZodTypeDef, Footprint>>;
|
|
1127
|
+
}, {
|
|
1128
|
+
supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
1129
|
+
}>, {
|
|
1130
|
+
key: z.ZodOptional<z.ZodAny>;
|
|
1131
|
+
name: z.ZodString;
|
|
1132
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<z.objectUtil.extendShape<{
|
|
1133
|
+
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
1134
|
+
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
1135
|
+
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
1136
|
+
z: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
1137
|
+
}, "strip", z.ZodTypeAny, {
|
|
1138
|
+
x: string | number;
|
|
1139
|
+
y: string | number;
|
|
1140
|
+
z: string | number;
|
|
1141
|
+
}, {
|
|
1142
|
+
x: string | number;
|
|
1143
|
+
y: string | number;
|
|
1144
|
+
z: string | number;
|
|
1145
|
+
}>]>>;
|
|
1146
|
+
positionOffset: z.ZodOptional<z.ZodObject<{
|
|
1147
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1148
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1149
|
+
z: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1150
|
+
}, "strip", z.ZodTypeAny, {
|
|
1151
|
+
x: number;
|
|
1152
|
+
y: number;
|
|
1153
|
+
z: number;
|
|
1154
|
+
}, {
|
|
1155
|
+
x: string | number;
|
|
1156
|
+
y: string | number;
|
|
1157
|
+
z: string | number;
|
|
1158
|
+
}>>;
|
|
1159
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
1160
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1161
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1162
|
+
z: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1163
|
+
}, "strip", z.ZodTypeAny, {
|
|
1164
|
+
x: number;
|
|
1165
|
+
y: number;
|
|
1166
|
+
z: number;
|
|
1167
|
+
}, {
|
|
1168
|
+
x: string | number;
|
|
1169
|
+
y: string | number;
|
|
1170
|
+
z: string | number;
|
|
1171
|
+
}>>;
|
|
1192
1172
|
}, {
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1173
|
+
stlUrl: z.ZodString;
|
|
1174
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1175
|
+
stlUrl: string;
|
|
1176
|
+
rotationOffset?: number | {
|
|
1177
|
+
x: string | number;
|
|
1178
|
+
y: string | number;
|
|
1179
|
+
z: string | number;
|
|
1180
|
+
} | undefined;
|
|
1181
|
+
positionOffset?: {
|
|
1182
|
+
x: number;
|
|
1183
|
+
y: number;
|
|
1184
|
+
z: number;
|
|
1185
|
+
} | undefined;
|
|
1186
|
+
size?: {
|
|
1187
|
+
x: number;
|
|
1188
|
+
y: number;
|
|
1189
|
+
z: number;
|
|
1190
|
+
} | undefined;
|
|
1202
1191
|
}, {
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1192
|
+
stlUrl: string;
|
|
1193
|
+
rotationOffset?: number | {
|
|
1194
|
+
x: string | number;
|
|
1195
|
+
y: string | number;
|
|
1196
|
+
z: string | number;
|
|
1197
|
+
} | undefined;
|
|
1198
|
+
positionOffset?: {
|
|
1199
|
+
x: string | number;
|
|
1200
|
+
y: string | number;
|
|
1201
|
+
z: string | number;
|
|
1202
|
+
} | undefined;
|
|
1203
|
+
size?: {
|
|
1204
|
+
x: string | number;
|
|
1205
|
+
y: string | number;
|
|
1206
|
+
z: string | number;
|
|
1207
|
+
} | undefined;
|
|
1208
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1209
|
+
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
1210
|
+
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
1211
|
+
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
1212
|
+
z: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
1213
|
+
}, "strip", z.ZodTypeAny, {
|
|
1214
|
+
x: string | number;
|
|
1215
|
+
y: string | number;
|
|
1216
|
+
z: string | number;
|
|
1217
|
+
}, {
|
|
1218
|
+
x: string | number;
|
|
1219
|
+
y: string | number;
|
|
1220
|
+
z: string | number;
|
|
1221
|
+
}>]>>;
|
|
1222
|
+
positionOffset: z.ZodOptional<z.ZodObject<{
|
|
1223
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1224
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1225
|
+
z: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1226
|
+
}, "strip", z.ZodTypeAny, {
|
|
1227
|
+
x: number;
|
|
1228
|
+
y: number;
|
|
1229
|
+
z: number;
|
|
1230
|
+
}, {
|
|
1231
|
+
x: string | number;
|
|
1232
|
+
y: string | number;
|
|
1233
|
+
z: string | number;
|
|
1234
|
+
}>>;
|
|
1235
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
1236
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1237
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1238
|
+
z: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1239
|
+
}, "strip", z.ZodTypeAny, {
|
|
1240
|
+
x: number;
|
|
1241
|
+
y: number;
|
|
1242
|
+
z: number;
|
|
1243
|
+
}, {
|
|
1244
|
+
x: string | number;
|
|
1245
|
+
y: string | number;
|
|
1246
|
+
z: string | number;
|
|
1247
|
+
}>>;
|
|
1212
1248
|
}, {
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
}
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1249
|
+
objUrl: z.ZodString;
|
|
1250
|
+
mtlUrl: z.ZodOptional<z.ZodString>;
|
|
1251
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1252
|
+
objUrl: string;
|
|
1253
|
+
rotationOffset?: number | {
|
|
1254
|
+
x: string | number;
|
|
1255
|
+
y: string | number;
|
|
1256
|
+
z: string | number;
|
|
1257
|
+
} | undefined;
|
|
1258
|
+
positionOffset?: {
|
|
1259
|
+
x: number;
|
|
1260
|
+
y: number;
|
|
1261
|
+
z: number;
|
|
1262
|
+
} | undefined;
|
|
1263
|
+
size?: {
|
|
1264
|
+
x: number;
|
|
1265
|
+
y: number;
|
|
1266
|
+
z: number;
|
|
1267
|
+
} | undefined;
|
|
1268
|
+
mtlUrl?: string | undefined;
|
|
1269
|
+
}, {
|
|
1270
|
+
objUrl: string;
|
|
1271
|
+
rotationOffset?: number | {
|
|
1272
|
+
x: string | number;
|
|
1273
|
+
y: string | number;
|
|
1274
|
+
z: string | number;
|
|
1275
|
+
} | undefined;
|
|
1276
|
+
positionOffset?: {
|
|
1277
|
+
x: string | number;
|
|
1278
|
+
y: string | number;
|
|
1279
|
+
z: string | number;
|
|
1280
|
+
} | undefined;
|
|
1281
|
+
size?: {
|
|
1282
|
+
x: string | number;
|
|
1283
|
+
y: string | number;
|
|
1284
|
+
z: string | number;
|
|
1285
|
+
} | undefined;
|
|
1286
|
+
mtlUrl?: string | undefined;
|
|
1287
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1288
|
+
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
1289
|
+
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
1290
|
+
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
1291
|
+
z: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
1292
|
+
}, "strip", z.ZodTypeAny, {
|
|
1293
|
+
x: string | number;
|
|
1294
|
+
y: string | number;
|
|
1295
|
+
z: string | number;
|
|
1296
|
+
}, {
|
|
1297
|
+
x: string | number;
|
|
1298
|
+
y: string | number;
|
|
1299
|
+
z: string | number;
|
|
1300
|
+
}>]>>;
|
|
1301
|
+
positionOffset: z.ZodOptional<z.ZodObject<{
|
|
1302
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1303
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1304
|
+
z: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1305
|
+
}, "strip", z.ZodTypeAny, {
|
|
1306
|
+
x: number;
|
|
1307
|
+
y: number;
|
|
1308
|
+
z: number;
|
|
1309
|
+
}, {
|
|
1310
|
+
x: string | number;
|
|
1311
|
+
y: string | number;
|
|
1312
|
+
z: string | number;
|
|
1313
|
+
}>>;
|
|
1314
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
1315
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1316
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1317
|
+
z: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1318
|
+
}, "strip", z.ZodTypeAny, {
|
|
1319
|
+
x: number;
|
|
1320
|
+
y: number;
|
|
1321
|
+
z: number;
|
|
1322
|
+
}, {
|
|
1323
|
+
x: string | number;
|
|
1324
|
+
y: string | number;
|
|
1325
|
+
z: string | number;
|
|
1326
|
+
}>>;
|
|
1327
|
+
}, {
|
|
1328
|
+
jscad: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
1329
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1330
|
+
jscad: Record<string, any>;
|
|
1331
|
+
rotationOffset?: number | {
|
|
1332
|
+
x: string | number;
|
|
1333
|
+
y: string | number;
|
|
1334
|
+
z: string | number;
|
|
1335
|
+
} | undefined;
|
|
1336
|
+
positionOffset?: {
|
|
1337
|
+
x: number;
|
|
1338
|
+
y: number;
|
|
1339
|
+
z: number;
|
|
1340
|
+
} | undefined;
|
|
1341
|
+
size?: {
|
|
1342
|
+
x: number;
|
|
1343
|
+
y: number;
|
|
1344
|
+
z: number;
|
|
1345
|
+
} | undefined;
|
|
1346
|
+
}, {
|
|
1347
|
+
jscad: Record<string, any>;
|
|
1348
|
+
rotationOffset?: number | {
|
|
1349
|
+
x: string | number;
|
|
1350
|
+
y: string | number;
|
|
1351
|
+
z: string | number;
|
|
1352
|
+
} | undefined;
|
|
1353
|
+
positionOffset?: {
|
|
1354
|
+
x: string | number;
|
|
1355
|
+
y: string | number;
|
|
1356
|
+
z: string | number;
|
|
1357
|
+
} | undefined;
|
|
1358
|
+
size?: {
|
|
1359
|
+
x: string | number;
|
|
1360
|
+
y: string | number;
|
|
1361
|
+
z: string | number;
|
|
1362
|
+
} | undefined;
|
|
1363
|
+
}>]>>;
|
|
1364
|
+
children: z.ZodOptional<z.ZodAny>;
|
|
1365
|
+
symbolName: z.ZodOptional<z.ZodString>;
|
|
1366
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1367
|
+
name: string;
|
|
1368
|
+
pcbX?: number | undefined;
|
|
1369
|
+
pcbY?: number | undefined;
|
|
1370
|
+
pcbRotation?: number | undefined;
|
|
1371
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
1372
|
+
schX?: number | undefined;
|
|
1373
|
+
schY?: number | undefined;
|
|
1374
|
+
schRotation?: number | undefined;
|
|
1375
|
+
footprint?: Footprint | undefined;
|
|
1376
|
+
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
1377
|
+
key?: any;
|
|
1378
|
+
cadModel?: string | {
|
|
1379
|
+
stlUrl: string;
|
|
1380
|
+
rotationOffset?: number | {
|
|
1381
|
+
x: string | number;
|
|
1382
|
+
y: string | number;
|
|
1383
|
+
z: string | number;
|
|
1384
|
+
} | undefined;
|
|
1385
|
+
positionOffset?: {
|
|
1386
|
+
x: number;
|
|
1387
|
+
y: number;
|
|
1388
|
+
z: number;
|
|
1389
|
+
} | undefined;
|
|
1390
|
+
size?: {
|
|
1391
|
+
x: number;
|
|
1392
|
+
y: number;
|
|
1393
|
+
z: number;
|
|
1394
|
+
} | undefined;
|
|
1395
|
+
} | {
|
|
1396
|
+
objUrl: string;
|
|
1397
|
+
rotationOffset?: number | {
|
|
1398
|
+
x: string | number;
|
|
1399
|
+
y: string | number;
|
|
1400
|
+
z: string | number;
|
|
1401
|
+
} | undefined;
|
|
1402
|
+
positionOffset?: {
|
|
1403
|
+
x: number;
|
|
1404
|
+
y: number;
|
|
1405
|
+
z: number;
|
|
1406
|
+
} | undefined;
|
|
1407
|
+
size?: {
|
|
1408
|
+
x: number;
|
|
1409
|
+
y: number;
|
|
1410
|
+
z: number;
|
|
1411
|
+
} | undefined;
|
|
1412
|
+
mtlUrl?: string | undefined;
|
|
1413
|
+
} | {
|
|
1414
|
+
jscad: Record<string, any>;
|
|
1415
|
+
rotationOffset?: number | {
|
|
1416
|
+
x: string | number;
|
|
1417
|
+
y: string | number;
|
|
1418
|
+
z: string | number;
|
|
1419
|
+
} | undefined;
|
|
1420
|
+
positionOffset?: {
|
|
1421
|
+
x: number;
|
|
1422
|
+
y: number;
|
|
1423
|
+
z: number;
|
|
1424
|
+
} | undefined;
|
|
1425
|
+
size?: {
|
|
1426
|
+
x: number;
|
|
1427
|
+
y: number;
|
|
1428
|
+
z: number;
|
|
1429
|
+
} | undefined;
|
|
1430
|
+
} | undefined;
|
|
1431
|
+
children?: any;
|
|
1432
|
+
symbolName?: string | undefined;
|
|
1433
|
+
}, {
|
|
1434
|
+
name: string;
|
|
1435
|
+
pcbX?: string | number | undefined;
|
|
1436
|
+
pcbY?: string | number | undefined;
|
|
1437
|
+
pcbRotation?: string | number | undefined;
|
|
1438
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
1439
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1440
|
+
} | undefined;
|
|
1441
|
+
schX?: string | number | undefined;
|
|
1442
|
+
schY?: string | number | undefined;
|
|
1443
|
+
schRotation?: string | number | undefined;
|
|
1444
|
+
footprint?: Footprint | undefined;
|
|
1445
|
+
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
1446
|
+
key?: any;
|
|
1447
|
+
cadModel?: string | {
|
|
1448
|
+
stlUrl: string;
|
|
1449
|
+
rotationOffset?: number | {
|
|
1450
|
+
x: string | number;
|
|
1451
|
+
y: string | number;
|
|
1452
|
+
z: string | number;
|
|
1453
|
+
} | undefined;
|
|
1454
|
+
positionOffset?: {
|
|
1455
|
+
x: string | number;
|
|
1456
|
+
y: string | number;
|
|
1457
|
+
z: string | number;
|
|
1458
|
+
} | undefined;
|
|
1459
|
+
size?: {
|
|
1460
|
+
x: string | number;
|
|
1461
|
+
y: string | number;
|
|
1462
|
+
z: string | number;
|
|
1463
|
+
} | undefined;
|
|
1464
|
+
} | {
|
|
1465
|
+
objUrl: string;
|
|
1466
|
+
rotationOffset?: number | {
|
|
1467
|
+
x: string | number;
|
|
1468
|
+
y: string | number;
|
|
1469
|
+
z: string | number;
|
|
1470
|
+
} | undefined;
|
|
1471
|
+
positionOffset?: {
|
|
1472
|
+
x: string | number;
|
|
1473
|
+
y: string | number;
|
|
1474
|
+
z: string | number;
|
|
1475
|
+
} | undefined;
|
|
1476
|
+
size?: {
|
|
1477
|
+
x: string | number;
|
|
1478
|
+
y: string | number;
|
|
1479
|
+
z: string | number;
|
|
1480
|
+
} | undefined;
|
|
1481
|
+
mtlUrl?: string | undefined;
|
|
1482
|
+
} | {
|
|
1483
|
+
jscad: Record<string, any>;
|
|
1484
|
+
rotationOffset?: number | {
|
|
1485
|
+
x: string | number;
|
|
1486
|
+
y: string | number;
|
|
1487
|
+
z: string | number;
|
|
1488
|
+
} | undefined;
|
|
1489
|
+
positionOffset?: {
|
|
1490
|
+
x: string | number;
|
|
1491
|
+
y: string | number;
|
|
1492
|
+
z: string | number;
|
|
1493
|
+
} | undefined;
|
|
1494
|
+
size?: {
|
|
1495
|
+
x: string | number;
|
|
1496
|
+
y: string | number;
|
|
1497
|
+
z: string | number;
|
|
1498
|
+
} | undefined;
|
|
1499
|
+
} | undefined;
|
|
1500
|
+
children?: any;
|
|
1501
|
+
symbolName?: string | undefined;
|
|
1502
|
+
}>;
|
|
1503
|
+
type ComponentProps = z.input<typeof componentProps>;
|
|
1504
|
+
declare const lrPins: readonly ["pin1", "left", "pin2", "right"];
|
|
1505
|
+
declare const lrPolarPins: readonly ["pin1", "left", "anode", "pos", "pin2", "right", "cathode", "neg"];
|
|
1506
|
+
declare const distanceOrMultiplier: z.ZodUnion<[z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, z.ZodEnum<["2x", "3x", "4x"]>]>;
|
|
1507
|
+
|
|
1508
|
+
declare const point3: z.ZodObject<{
|
|
1509
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1510
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1511
|
+
z: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1512
|
+
}, "strip", z.ZodTypeAny, {
|
|
1513
|
+
x: number;
|
|
1514
|
+
y: number;
|
|
1515
|
+
z: number;
|
|
1516
|
+
}, {
|
|
1517
|
+
x: string | number;
|
|
1518
|
+
y: string | number;
|
|
1519
|
+
z: string | number;
|
|
1520
|
+
}>;
|
|
1521
|
+
|
|
1522
|
+
/**
|
|
1523
|
+
* @deprecated Use SchematicPortArrangementWithPinCounts instead.
|
|
1524
|
+
*/
|
|
1525
|
+
interface SchematicPortArrangementWithSizes {
|
|
1526
|
+
leftSize?: number;
|
|
1527
|
+
topSize?: number;
|
|
1528
|
+
rightSize?: number;
|
|
1529
|
+
bottomSize?: number;
|
|
1530
|
+
}
|
|
1531
|
+
/**
|
|
1532
|
+
* Specifies the number of pins on each side of the schematic box component.
|
|
1533
|
+
*/
|
|
1534
|
+
interface SchematicPortArrangementWithPinCounts {
|
|
1535
|
+
leftPinCount?: number;
|
|
1536
|
+
topPinCount?: number;
|
|
1537
|
+
rightPinCount?: number;
|
|
1538
|
+
bottomPinCount?: number;
|
|
1539
|
+
}
|
|
1540
|
+
interface PinSideDefinition {
|
|
1541
|
+
pins: Array<number | string>;
|
|
1542
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
1543
|
+
}
|
|
1544
|
+
interface SchematicPortArrangementWithSides {
|
|
1545
|
+
leftSide?: PinSideDefinition;
|
|
1546
|
+
topSide?: PinSideDefinition;
|
|
1547
|
+
rightSide?: PinSideDefinition;
|
|
1548
|
+
bottomSide?: PinSideDefinition;
|
|
1549
|
+
}
|
|
1550
|
+
interface SchematicPortArrangement extends SchematicPortArrangementWithSizes, SchematicPortArrangementWithSides, SchematicPortArrangementWithPinCounts {
|
|
1551
|
+
}
|
|
1552
|
+
declare const explicitPinSideDefinition: z.ZodObject<{
|
|
1553
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
1554
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
1555
|
+
}, "strip", z.ZodTypeAny, {
|
|
1556
|
+
pins: (string | number)[];
|
|
1557
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
1558
|
+
}, {
|
|
1559
|
+
pins: (string | number)[];
|
|
1560
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
1561
|
+
}>;
|
|
1562
|
+
declare const schematicPortArrangement: z.ZodObject<{
|
|
1563
|
+
leftSize: z.ZodOptional<z.ZodNumber>;
|
|
1564
|
+
topSize: z.ZodOptional<z.ZodNumber>;
|
|
1565
|
+
rightSize: z.ZodOptional<z.ZodNumber>;
|
|
1566
|
+
bottomSize: z.ZodOptional<z.ZodNumber>;
|
|
1567
|
+
leftPinCount: z.ZodOptional<z.ZodNumber>;
|
|
1568
|
+
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
1569
|
+
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
1570
|
+
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
1571
|
+
leftSide: z.ZodOptional<z.ZodObject<{
|
|
1572
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
1573
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
1574
|
+
}, "strip", z.ZodTypeAny, {
|
|
1575
|
+
pins: (string | number)[];
|
|
1576
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
1577
|
+
}, {
|
|
1578
|
+
pins: (string | number)[];
|
|
1579
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
1580
|
+
}>>;
|
|
1581
|
+
rightSide: z.ZodOptional<z.ZodObject<{
|
|
1582
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
1583
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
1584
|
+
}, "strip", z.ZodTypeAny, {
|
|
1585
|
+
pins: (string | number)[];
|
|
1586
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
1587
|
+
}, {
|
|
1588
|
+
pins: (string | number)[];
|
|
1589
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
1590
|
+
}>>;
|
|
1591
|
+
topSide: z.ZodOptional<z.ZodObject<{
|
|
1592
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
1593
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
1594
|
+
}, "strip", z.ZodTypeAny, {
|
|
1595
|
+
pins: (string | number)[];
|
|
1596
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
1597
|
+
}, {
|
|
1598
|
+
pins: (string | number)[];
|
|
1599
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
1600
|
+
}>>;
|
|
1601
|
+
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
1602
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
1603
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
1604
|
+
}, "strip", z.ZodTypeAny, {
|
|
1605
|
+
pins: (string | number)[];
|
|
1606
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
1607
|
+
}, {
|
|
1608
|
+
pins: (string | number)[];
|
|
1609
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
1610
|
+
}>>;
|
|
1611
|
+
}, "strip", z.ZodTypeAny, {
|
|
1612
|
+
leftSize?: number | undefined;
|
|
1613
|
+
topSize?: number | undefined;
|
|
1614
|
+
rightSize?: number | undefined;
|
|
1615
|
+
bottomSize?: number | undefined;
|
|
1616
|
+
leftSide?: {
|
|
1223
1617
|
pins: (string | number)[];
|
|
1618
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
1224
1619
|
} | undefined;
|
|
1225
1620
|
topSide?: {
|
|
1226
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
1227
1621
|
pins: (string | number)[];
|
|
1622
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
1228
1623
|
} | undefined;
|
|
1229
1624
|
rightSide?: {
|
|
1230
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
1231
1625
|
pins: (string | number)[];
|
|
1626
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
1232
1627
|
} | undefined;
|
|
1233
1628
|
bottomSide?: {
|
|
1234
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
1235
1629
|
pins: (string | number)[];
|
|
1630
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
1236
1631
|
} | undefined;
|
|
1237
1632
|
leftPinCount?: number | undefined;
|
|
1238
1633
|
rightPinCount?: number | undefined;
|
|
@@ -1244,20 +1639,20 @@ declare const schematicPortArrangement: z.ZodObject<{
|
|
|
1244
1639
|
rightSize?: number | undefined;
|
|
1245
1640
|
bottomSize?: number | undefined;
|
|
1246
1641
|
leftSide?: {
|
|
1247
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
1248
1642
|
pins: (string | number)[];
|
|
1643
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
1249
1644
|
} | undefined;
|
|
1250
1645
|
topSide?: {
|
|
1251
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
1252
1646
|
pins: (string | number)[];
|
|
1647
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
1253
1648
|
} | undefined;
|
|
1254
1649
|
rightSide?: {
|
|
1255
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
1256
1650
|
pins: (string | number)[];
|
|
1651
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
1257
1652
|
} | undefined;
|
|
1258
1653
|
bottomSide?: {
|
|
1259
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
1260
1654
|
pins: (string | number)[];
|
|
1655
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
1261
1656
|
} | undefined;
|
|
1262
1657
|
leftPinCount?: number | undefined;
|
|
1263
1658
|
rightPinCount?: number | undefined;
|
|
@@ -1468,28 +1863,28 @@ declare const edit_trace_hint_event: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1468
1863
|
via?: boolean | undefined;
|
|
1469
1864
|
}>, "many">;
|
|
1470
1865
|
}>, "strip", z.ZodTypeAny, {
|
|
1866
|
+
edit_event_id: string;
|
|
1867
|
+
created_at: number;
|
|
1868
|
+
pcb_edit_event_type: "edit_trace_hint";
|
|
1869
|
+
pcb_port_id: string;
|
|
1471
1870
|
route: {
|
|
1472
1871
|
x: number;
|
|
1473
1872
|
y: number;
|
|
1474
1873
|
via?: boolean | undefined;
|
|
1475
1874
|
}[];
|
|
1476
|
-
edit_event_id: string;
|
|
1477
|
-
created_at: number;
|
|
1478
|
-
pcb_edit_event_type: "edit_trace_hint";
|
|
1479
|
-
pcb_port_id: string;
|
|
1480
1875
|
in_progress?: boolean | undefined;
|
|
1481
1876
|
edit_event_type?: "edit_pcb_trace_hint" | undefined;
|
|
1482
1877
|
pcb_trace_hint_id?: string | undefined;
|
|
1483
1878
|
}, {
|
|
1879
|
+
edit_event_id: string;
|
|
1880
|
+
created_at: number;
|
|
1881
|
+
pcb_edit_event_type: "edit_trace_hint";
|
|
1882
|
+
pcb_port_id: string;
|
|
1484
1883
|
route: {
|
|
1485
1884
|
x: number;
|
|
1486
1885
|
y: number;
|
|
1487
1886
|
via?: boolean | undefined;
|
|
1488
1887
|
}[];
|
|
1489
|
-
edit_event_id: string;
|
|
1490
|
-
created_at: number;
|
|
1491
|
-
pcb_edit_event_type: "edit_trace_hint";
|
|
1492
|
-
pcb_port_id: string;
|
|
1493
1888
|
in_progress?: boolean | undefined;
|
|
1494
1889
|
edit_event_type?: "edit_pcb_trace_hint" | undefined;
|
|
1495
1890
|
pcb_trace_hint_id?: string | undefined;
|
|
@@ -1660,28 +2055,28 @@ declare const manual_edit_event: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShap
|
|
|
1660
2055
|
via?: boolean | undefined;
|
|
1661
2056
|
}>, "many">;
|
|
1662
2057
|
}>, "strip", z.ZodTypeAny, {
|
|
2058
|
+
edit_event_id: string;
|
|
2059
|
+
created_at: number;
|
|
2060
|
+
pcb_edit_event_type: "edit_trace_hint";
|
|
2061
|
+
pcb_port_id: string;
|
|
1663
2062
|
route: {
|
|
1664
2063
|
x: number;
|
|
1665
2064
|
y: number;
|
|
1666
2065
|
via?: boolean | undefined;
|
|
1667
2066
|
}[];
|
|
1668
|
-
edit_event_id: string;
|
|
1669
|
-
created_at: number;
|
|
1670
|
-
pcb_edit_event_type: "edit_trace_hint";
|
|
1671
|
-
pcb_port_id: string;
|
|
1672
2067
|
in_progress?: boolean | undefined;
|
|
1673
2068
|
edit_event_type?: "edit_pcb_trace_hint" | undefined;
|
|
1674
2069
|
pcb_trace_hint_id?: string | undefined;
|
|
1675
2070
|
}, {
|
|
2071
|
+
edit_event_id: string;
|
|
2072
|
+
created_at: number;
|
|
2073
|
+
pcb_edit_event_type: "edit_trace_hint";
|
|
2074
|
+
pcb_port_id: string;
|
|
1676
2075
|
route: {
|
|
1677
2076
|
x: number;
|
|
1678
2077
|
y: number;
|
|
1679
2078
|
via?: boolean | undefined;
|
|
1680
2079
|
}[];
|
|
1681
|
-
edit_event_id: string;
|
|
1682
|
-
created_at: number;
|
|
1683
|
-
pcb_edit_event_type: "edit_trace_hint";
|
|
1684
|
-
pcb_port_id: string;
|
|
1685
2080
|
in_progress?: boolean | undefined;
|
|
1686
2081
|
edit_event_type?: "edit_pcb_trace_hint" | undefined;
|
|
1687
2082
|
pcb_trace_hint_id?: string | undefined;
|
|
@@ -1757,18 +2152,18 @@ declare const manual_pcb_placement: z.ZodObject<{
|
|
|
1757
2152
|
y: string | number;
|
|
1758
2153
|
}>;
|
|
1759
2154
|
}, "strip", z.ZodTypeAny, {
|
|
2155
|
+
selector: string;
|
|
2156
|
+
relative_to: string;
|
|
1760
2157
|
center: {
|
|
1761
2158
|
x: number;
|
|
1762
2159
|
y: number;
|
|
1763
2160
|
};
|
|
1764
|
-
selector: string;
|
|
1765
|
-
relative_to: string;
|
|
1766
2161
|
}, {
|
|
2162
|
+
selector: string;
|
|
1767
2163
|
center: {
|
|
1768
2164
|
x: string | number;
|
|
1769
2165
|
y: string | number;
|
|
1770
2166
|
};
|
|
1771
|
-
selector: string;
|
|
1772
2167
|
relative_to?: string | undefined;
|
|
1773
2168
|
}>;
|
|
1774
2169
|
interface ManualPcbPlacement {
|
|
@@ -1810,6 +2205,7 @@ declare const manual_trace_hint: z.ZodObject<{
|
|
|
1810
2205
|
} | undefined;
|
|
1811
2206
|
}>, "many">;
|
|
1812
2207
|
}, "strip", z.ZodTypeAny, {
|
|
2208
|
+
pcb_port_selector: string;
|
|
1813
2209
|
offsets: {
|
|
1814
2210
|
x: number;
|
|
1815
2211
|
y: number;
|
|
@@ -1817,8 +2213,8 @@ declare const manual_trace_hint: z.ZodObject<{
|
|
|
1817
2213
|
via?: boolean | undefined;
|
|
1818
2214
|
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
1819
2215
|
}[];
|
|
1820
|
-
pcb_port_selector: string;
|
|
1821
2216
|
}, {
|
|
2217
|
+
pcb_port_selector: string;
|
|
1822
2218
|
offsets: {
|
|
1823
2219
|
x: string | number;
|
|
1824
2220
|
y: string | number;
|
|
@@ -1828,7 +2224,6 @@ declare const manual_trace_hint: z.ZodObject<{
|
|
|
1828
2224
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1829
2225
|
} | undefined;
|
|
1830
2226
|
}[];
|
|
1831
|
-
pcb_port_selector: string;
|
|
1832
2227
|
}>;
|
|
1833
2228
|
interface ManualTraceHint {
|
|
1834
2229
|
pcb_port_selector: string;
|
|
@@ -1850,18 +2245,18 @@ declare const manual_schematic_placement: z.ZodObject<{
|
|
|
1850
2245
|
y: string | number;
|
|
1851
2246
|
}>;
|
|
1852
2247
|
}, "strip", z.ZodTypeAny, {
|
|
2248
|
+
selector: string;
|
|
2249
|
+
relative_to: string;
|
|
1853
2250
|
center: {
|
|
1854
2251
|
x: number;
|
|
1855
2252
|
y: number;
|
|
1856
2253
|
};
|
|
1857
|
-
selector: string;
|
|
1858
|
-
relative_to: string;
|
|
1859
2254
|
}, {
|
|
2255
|
+
selector: string;
|
|
1860
2256
|
center: {
|
|
1861
2257
|
x: string | number;
|
|
1862
2258
|
y: string | number;
|
|
1863
2259
|
};
|
|
1864
|
-
selector: string;
|
|
1865
2260
|
relative_to?: string | undefined;
|
|
1866
2261
|
}>;
|
|
1867
2262
|
interface ManualSchematicPlacement {
|
|
@@ -1886,18 +2281,18 @@ declare const manual_edits_file: z.ZodObject<{
|
|
|
1886
2281
|
y: string | number;
|
|
1887
2282
|
}>;
|
|
1888
2283
|
}, "strip", z.ZodTypeAny, {
|
|
2284
|
+
selector: string;
|
|
2285
|
+
relative_to: string;
|
|
1889
2286
|
center: {
|
|
1890
2287
|
x: number;
|
|
1891
2288
|
y: number;
|
|
1892
2289
|
};
|
|
1893
|
-
selector: string;
|
|
1894
|
-
relative_to: string;
|
|
1895
2290
|
}, {
|
|
2291
|
+
selector: string;
|
|
1896
2292
|
center: {
|
|
1897
2293
|
x: string | number;
|
|
1898
2294
|
y: string | number;
|
|
1899
2295
|
};
|
|
1900
|
-
selector: string;
|
|
1901
2296
|
relative_to?: string | undefined;
|
|
1902
2297
|
}>, "many">>;
|
|
1903
2298
|
manual_trace_hints: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -1932,6 +2327,7 @@ declare const manual_edits_file: z.ZodObject<{
|
|
|
1932
2327
|
} | undefined;
|
|
1933
2328
|
}>, "many">;
|
|
1934
2329
|
}, "strip", z.ZodTypeAny, {
|
|
2330
|
+
pcb_port_selector: string;
|
|
1935
2331
|
offsets: {
|
|
1936
2332
|
x: number;
|
|
1937
2333
|
y: number;
|
|
@@ -1939,8 +2335,8 @@ declare const manual_edits_file: z.ZodObject<{
|
|
|
1939
2335
|
via?: boolean | undefined;
|
|
1940
2336
|
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
1941
2337
|
}[];
|
|
1942
|
-
pcb_port_selector: string;
|
|
1943
2338
|
}, {
|
|
2339
|
+
pcb_port_selector: string;
|
|
1944
2340
|
offsets: {
|
|
1945
2341
|
x: string | number;
|
|
1946
2342
|
y: string | number;
|
|
@@ -1950,7 +2346,6 @@ declare const manual_edits_file: z.ZodObject<{
|
|
|
1950
2346
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1951
2347
|
} | undefined;
|
|
1952
2348
|
}[];
|
|
1953
|
-
pcb_port_selector: string;
|
|
1954
2349
|
}>, "many">>;
|
|
1955
2350
|
schematic_placements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1956
2351
|
selector: z.ZodString;
|
|
@@ -1966,30 +2361,31 @@ declare const manual_edits_file: z.ZodObject<{
|
|
|
1966
2361
|
y: string | number;
|
|
1967
2362
|
}>;
|
|
1968
2363
|
}, "strip", z.ZodTypeAny, {
|
|
2364
|
+
selector: string;
|
|
2365
|
+
relative_to: string;
|
|
1969
2366
|
center: {
|
|
1970
2367
|
x: number;
|
|
1971
2368
|
y: number;
|
|
1972
2369
|
};
|
|
1973
|
-
selector: string;
|
|
1974
|
-
relative_to: string;
|
|
1975
2370
|
}, {
|
|
2371
|
+
selector: string;
|
|
1976
2372
|
center: {
|
|
1977
2373
|
x: string | number;
|
|
1978
2374
|
y: string | number;
|
|
1979
2375
|
};
|
|
1980
|
-
selector: string;
|
|
1981
2376
|
relative_to?: string | undefined;
|
|
1982
2377
|
}>, "many">>;
|
|
1983
2378
|
}, "strip", z.ZodTypeAny, {
|
|
1984
2379
|
pcb_placements?: {
|
|
2380
|
+
selector: string;
|
|
2381
|
+
relative_to: string;
|
|
1985
2382
|
center: {
|
|
1986
2383
|
x: number;
|
|
1987
2384
|
y: number;
|
|
1988
2385
|
};
|
|
1989
|
-
selector: string;
|
|
1990
|
-
relative_to: string;
|
|
1991
2386
|
}[] | undefined;
|
|
1992
2387
|
manual_trace_hints?: {
|
|
2388
|
+
pcb_port_selector: string;
|
|
1993
2389
|
offsets: {
|
|
1994
2390
|
x: number;
|
|
1995
2391
|
y: number;
|
|
@@ -1997,26 +2393,26 @@ declare const manual_edits_file: z.ZodObject<{
|
|
|
1997
2393
|
via?: boolean | undefined;
|
|
1998
2394
|
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
1999
2395
|
}[];
|
|
2000
|
-
pcb_port_selector: string;
|
|
2001
2396
|
}[] | undefined;
|
|
2002
2397
|
schematic_placements?: {
|
|
2398
|
+
selector: string;
|
|
2399
|
+
relative_to: string;
|
|
2003
2400
|
center: {
|
|
2004
2401
|
x: number;
|
|
2005
2402
|
y: number;
|
|
2006
2403
|
};
|
|
2007
|
-
selector: string;
|
|
2008
|
-
relative_to: string;
|
|
2009
2404
|
}[] | undefined;
|
|
2010
2405
|
}, {
|
|
2011
2406
|
pcb_placements?: {
|
|
2407
|
+
selector: string;
|
|
2012
2408
|
center: {
|
|
2013
2409
|
x: string | number;
|
|
2014
2410
|
y: string | number;
|
|
2015
2411
|
};
|
|
2016
|
-
selector: string;
|
|
2017
2412
|
relative_to?: string | undefined;
|
|
2018
2413
|
}[] | undefined;
|
|
2019
2414
|
manual_trace_hints?: {
|
|
2415
|
+
pcb_port_selector: string;
|
|
2020
2416
|
offsets: {
|
|
2021
2417
|
x: string | number;
|
|
2022
2418
|
y: string | number;
|
|
@@ -2026,14 +2422,13 @@ declare const manual_edits_file: z.ZodObject<{
|
|
|
2026
2422
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
2027
2423
|
} | undefined;
|
|
2028
2424
|
}[];
|
|
2029
|
-
pcb_port_selector: string;
|
|
2030
2425
|
}[] | undefined;
|
|
2031
2426
|
schematic_placements?: {
|
|
2427
|
+
selector: string;
|
|
2032
2428
|
center: {
|
|
2033
2429
|
x: string | number;
|
|
2034
2430
|
y: string | number;
|
|
2035
2431
|
};
|
|
2036
|
-
selector: string;
|
|
2037
2432
|
relative_to?: string | undefined;
|
|
2038
2433
|
}[] | undefined;
|
|
2039
2434
|
}>;
|
|
@@ -2150,10 +2545,10 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2150
2545
|
pcbX?: number | undefined;
|
|
2151
2546
|
pcbY?: number | undefined;
|
|
2152
2547
|
pcbRotation?: number | undefined;
|
|
2548
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
2153
2549
|
schX?: number | undefined;
|
|
2154
2550
|
schY?: number | undefined;
|
|
2155
2551
|
schRotation?: number | undefined;
|
|
2156
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
2157
2552
|
footprint?: Footprint | undefined;
|
|
2158
2553
|
key?: any;
|
|
2159
2554
|
name?: string | undefined;
|
|
@@ -2162,12 +2557,12 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2162
2557
|
pcbX?: string | number | undefined;
|
|
2163
2558
|
pcbY?: string | number | undefined;
|
|
2164
2559
|
pcbRotation?: string | number | undefined;
|
|
2165
|
-
schX?: string | number | undefined;
|
|
2166
|
-
schY?: string | number | undefined;
|
|
2167
|
-
schRotation?: string | number | undefined;
|
|
2168
2560
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
2169
2561
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
2170
2562
|
} | undefined;
|
|
2563
|
+
schX?: string | number | undefined;
|
|
2564
|
+
schY?: string | number | undefined;
|
|
2565
|
+
schRotation?: string | number | undefined;
|
|
2171
2566
|
footprint?: Footprint | undefined;
|
|
2172
2567
|
key?: any;
|
|
2173
2568
|
name?: string | undefined;
|
|
@@ -2211,18 +2606,18 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
2211
2606
|
y: string | number;
|
|
2212
2607
|
}>;
|
|
2213
2608
|
}, "strip", z.ZodTypeAny, {
|
|
2609
|
+
selector: string;
|
|
2610
|
+
relative_to: string;
|
|
2214
2611
|
center: {
|
|
2215
2612
|
x: number;
|
|
2216
2613
|
y: number;
|
|
2217
2614
|
};
|
|
2218
|
-
selector: string;
|
|
2219
|
-
relative_to: string;
|
|
2220
2615
|
}, {
|
|
2616
|
+
selector: string;
|
|
2221
2617
|
center: {
|
|
2222
2618
|
x: string | number;
|
|
2223
2619
|
y: string | number;
|
|
2224
2620
|
};
|
|
2225
|
-
selector: string;
|
|
2226
2621
|
relative_to?: string | undefined;
|
|
2227
2622
|
}>, "many">>;
|
|
2228
2623
|
manual_trace_hints: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -2257,6 +2652,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
2257
2652
|
} | undefined;
|
|
2258
2653
|
}>, "many">;
|
|
2259
2654
|
}, "strip", z.ZodTypeAny, {
|
|
2655
|
+
pcb_port_selector: string;
|
|
2260
2656
|
offsets: {
|
|
2261
2657
|
x: number;
|
|
2262
2658
|
y: number;
|
|
@@ -2264,8 +2660,8 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
2264
2660
|
via?: boolean | undefined;
|
|
2265
2661
|
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
2266
2662
|
}[];
|
|
2267
|
-
pcb_port_selector: string;
|
|
2268
2663
|
}, {
|
|
2664
|
+
pcb_port_selector: string;
|
|
2269
2665
|
offsets: {
|
|
2270
2666
|
x: string | number;
|
|
2271
2667
|
y: string | number;
|
|
@@ -2275,7 +2671,6 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
2275
2671
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
2276
2672
|
} | undefined;
|
|
2277
2673
|
}[];
|
|
2278
|
-
pcb_port_selector: string;
|
|
2279
2674
|
}>, "many">>;
|
|
2280
2675
|
schematic_placements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2281
2676
|
selector: z.ZodString;
|
|
@@ -2291,30 +2686,31 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
2291
2686
|
y: string | number;
|
|
2292
2687
|
}>;
|
|
2293
2688
|
}, "strip", z.ZodTypeAny, {
|
|
2689
|
+
selector: string;
|
|
2690
|
+
relative_to: string;
|
|
2294
2691
|
center: {
|
|
2295
2692
|
x: number;
|
|
2296
2693
|
y: number;
|
|
2297
2694
|
};
|
|
2298
|
-
selector: string;
|
|
2299
|
-
relative_to: string;
|
|
2300
2695
|
}, {
|
|
2696
|
+
selector: string;
|
|
2301
2697
|
center: {
|
|
2302
2698
|
x: string | number;
|
|
2303
2699
|
y: string | number;
|
|
2304
2700
|
};
|
|
2305
|
-
selector: string;
|
|
2306
2701
|
relative_to?: string | undefined;
|
|
2307
2702
|
}>, "many">>;
|
|
2308
2703
|
}, "strip", z.ZodTypeAny, {
|
|
2309
2704
|
pcb_placements?: {
|
|
2705
|
+
selector: string;
|
|
2706
|
+
relative_to: string;
|
|
2310
2707
|
center: {
|
|
2311
2708
|
x: number;
|
|
2312
2709
|
y: number;
|
|
2313
2710
|
};
|
|
2314
|
-
selector: string;
|
|
2315
|
-
relative_to: string;
|
|
2316
2711
|
}[] | undefined;
|
|
2317
2712
|
manual_trace_hints?: {
|
|
2713
|
+
pcb_port_selector: string;
|
|
2318
2714
|
offsets: {
|
|
2319
2715
|
x: number;
|
|
2320
2716
|
y: number;
|
|
@@ -2322,26 +2718,26 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
2322
2718
|
via?: boolean | undefined;
|
|
2323
2719
|
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
2324
2720
|
}[];
|
|
2325
|
-
pcb_port_selector: string;
|
|
2326
2721
|
}[] | undefined;
|
|
2327
2722
|
schematic_placements?: {
|
|
2723
|
+
selector: string;
|
|
2724
|
+
relative_to: string;
|
|
2328
2725
|
center: {
|
|
2329
2726
|
x: number;
|
|
2330
2727
|
y: number;
|
|
2331
2728
|
};
|
|
2332
|
-
selector: string;
|
|
2333
|
-
relative_to: string;
|
|
2334
2729
|
}[] | undefined;
|
|
2335
2730
|
}, {
|
|
2336
2731
|
pcb_placements?: {
|
|
2732
|
+
selector: string;
|
|
2337
2733
|
center: {
|
|
2338
2734
|
x: string | number;
|
|
2339
2735
|
y: string | number;
|
|
2340
2736
|
};
|
|
2341
|
-
selector: string;
|
|
2342
2737
|
relative_to?: string | undefined;
|
|
2343
2738
|
}[] | undefined;
|
|
2344
2739
|
manual_trace_hints?: {
|
|
2740
|
+
pcb_port_selector: string;
|
|
2345
2741
|
offsets: {
|
|
2346
2742
|
x: string | number;
|
|
2347
2743
|
y: string | number;
|
|
@@ -2351,14 +2747,13 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
2351
2747
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
2352
2748
|
} | undefined;
|
|
2353
2749
|
}[];
|
|
2354
|
-
pcb_port_selector: string;
|
|
2355
2750
|
}[] | undefined;
|
|
2356
2751
|
schematic_placements?: {
|
|
2752
|
+
selector: string;
|
|
2357
2753
|
center: {
|
|
2358
2754
|
x: string | number;
|
|
2359
2755
|
y: string | number;
|
|
2360
2756
|
};
|
|
2361
|
-
selector: string;
|
|
2362
2757
|
relative_to?: string | undefined;
|
|
2363
2758
|
}[] | undefined;
|
|
2364
2759
|
}>>;
|
|
@@ -2389,10 +2784,10 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
2389
2784
|
pcbX?: number | undefined;
|
|
2390
2785
|
pcbY?: number | undefined;
|
|
2391
2786
|
pcbRotation?: number | undefined;
|
|
2787
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
2392
2788
|
schX?: number | undefined;
|
|
2393
2789
|
schY?: number | undefined;
|
|
2394
2790
|
schRotation?: number | undefined;
|
|
2395
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
2396
2791
|
footprint?: Footprint | undefined;
|
|
2397
2792
|
key?: any;
|
|
2398
2793
|
name?: string | undefined;
|
|
@@ -2400,14 +2795,15 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
2400
2795
|
layout?: LayoutBuilder | undefined;
|
|
2401
2796
|
manualEdits?: {
|
|
2402
2797
|
pcb_placements?: {
|
|
2798
|
+
selector: string;
|
|
2799
|
+
relative_to: string;
|
|
2403
2800
|
center: {
|
|
2404
2801
|
x: number;
|
|
2405
2802
|
y: number;
|
|
2406
2803
|
};
|
|
2407
|
-
selector: string;
|
|
2408
|
-
relative_to: string;
|
|
2409
2804
|
}[] | undefined;
|
|
2410
2805
|
manual_trace_hints?: {
|
|
2806
|
+
pcb_port_selector: string;
|
|
2411
2807
|
offsets: {
|
|
2412
2808
|
x: number;
|
|
2413
2809
|
y: number;
|
|
@@ -2415,15 +2811,14 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
2415
2811
|
via?: boolean | undefined;
|
|
2416
2812
|
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
2417
2813
|
}[];
|
|
2418
|
-
pcb_port_selector: string;
|
|
2419
2814
|
}[] | undefined;
|
|
2420
2815
|
schematic_placements?: {
|
|
2816
|
+
selector: string;
|
|
2817
|
+
relative_to: string;
|
|
2421
2818
|
center: {
|
|
2422
2819
|
x: number;
|
|
2423
2820
|
y: number;
|
|
2424
2821
|
};
|
|
2425
|
-
selector: string;
|
|
2426
|
-
relative_to: string;
|
|
2427
2822
|
}[] | undefined;
|
|
2428
2823
|
} | undefined;
|
|
2429
2824
|
routingDisabled?: boolean | undefined;
|
|
@@ -2443,12 +2838,12 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
2443
2838
|
pcbX?: string | number | undefined;
|
|
2444
2839
|
pcbY?: string | number | undefined;
|
|
2445
2840
|
pcbRotation?: string | number | undefined;
|
|
2446
|
-
schX?: string | number | undefined;
|
|
2447
|
-
schY?: string | number | undefined;
|
|
2448
|
-
schRotation?: string | number | undefined;
|
|
2449
2841
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
2450
2842
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
2451
2843
|
} | undefined;
|
|
2844
|
+
schX?: string | number | undefined;
|
|
2845
|
+
schY?: string | number | undefined;
|
|
2846
|
+
schRotation?: string | number | undefined;
|
|
2452
2847
|
footprint?: Footprint | undefined;
|
|
2453
2848
|
key?: any;
|
|
2454
2849
|
name?: string | undefined;
|
|
@@ -2456,14 +2851,15 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
2456
2851
|
layout?: LayoutBuilder | undefined;
|
|
2457
2852
|
manualEdits?: {
|
|
2458
2853
|
pcb_placements?: {
|
|
2854
|
+
selector: string;
|
|
2459
2855
|
center: {
|
|
2460
2856
|
x: string | number;
|
|
2461
2857
|
y: string | number;
|
|
2462
2858
|
};
|
|
2463
|
-
selector: string;
|
|
2464
2859
|
relative_to?: string | undefined;
|
|
2465
2860
|
}[] | undefined;
|
|
2466
2861
|
manual_trace_hints?: {
|
|
2862
|
+
pcb_port_selector: string;
|
|
2467
2863
|
offsets: {
|
|
2468
2864
|
x: string | number;
|
|
2469
2865
|
y: string | number;
|
|
@@ -2473,14 +2869,13 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
2473
2869
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
2474
2870
|
} | undefined;
|
|
2475
2871
|
}[];
|
|
2476
|
-
pcb_port_selector: string;
|
|
2477
2872
|
}[] | undefined;
|
|
2478
2873
|
schematic_placements?: {
|
|
2874
|
+
selector: string;
|
|
2479
2875
|
center: {
|
|
2480
2876
|
x: string | number;
|
|
2481
2877
|
y: string | number;
|
|
2482
2878
|
};
|
|
2483
|
-
selector: string;
|
|
2484
2879
|
relative_to?: string | undefined;
|
|
2485
2880
|
}[] | undefined;
|
|
2486
2881
|
} | undefined;
|
|
@@ -2536,18 +2931,18 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
2536
2931
|
y: string | number;
|
|
2537
2932
|
}>;
|
|
2538
2933
|
}, "strip", z.ZodTypeAny, {
|
|
2934
|
+
selector: string;
|
|
2935
|
+
relative_to: string;
|
|
2539
2936
|
center: {
|
|
2540
2937
|
x: number;
|
|
2541
2938
|
y: number;
|
|
2542
2939
|
};
|
|
2543
|
-
selector: string;
|
|
2544
|
-
relative_to: string;
|
|
2545
2940
|
}, {
|
|
2941
|
+
selector: string;
|
|
2546
2942
|
center: {
|
|
2547
2943
|
x: string | number;
|
|
2548
2944
|
y: string | number;
|
|
2549
2945
|
};
|
|
2550
|
-
selector: string;
|
|
2551
2946
|
relative_to?: string | undefined;
|
|
2552
2947
|
}>, "many">>;
|
|
2553
2948
|
manual_trace_hints: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -2582,6 +2977,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
2582
2977
|
} | undefined;
|
|
2583
2978
|
}>, "many">;
|
|
2584
2979
|
}, "strip", z.ZodTypeAny, {
|
|
2980
|
+
pcb_port_selector: string;
|
|
2585
2981
|
offsets: {
|
|
2586
2982
|
x: number;
|
|
2587
2983
|
y: number;
|
|
@@ -2589,8 +2985,8 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
2589
2985
|
via?: boolean | undefined;
|
|
2590
2986
|
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
2591
2987
|
}[];
|
|
2592
|
-
pcb_port_selector: string;
|
|
2593
2988
|
}, {
|
|
2989
|
+
pcb_port_selector: string;
|
|
2594
2990
|
offsets: {
|
|
2595
2991
|
x: string | number;
|
|
2596
2992
|
y: string | number;
|
|
@@ -2600,7 +2996,6 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
2600
2996
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
2601
2997
|
} | undefined;
|
|
2602
2998
|
}[];
|
|
2603
|
-
pcb_port_selector: string;
|
|
2604
2999
|
}>, "many">>;
|
|
2605
3000
|
schematic_placements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2606
3001
|
selector: z.ZodString;
|
|
@@ -2616,30 +3011,31 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
2616
3011
|
y: string | number;
|
|
2617
3012
|
}>;
|
|
2618
3013
|
}, "strip", z.ZodTypeAny, {
|
|
3014
|
+
selector: string;
|
|
3015
|
+
relative_to: string;
|
|
2619
3016
|
center: {
|
|
2620
3017
|
x: number;
|
|
2621
3018
|
y: number;
|
|
2622
3019
|
};
|
|
2623
|
-
selector: string;
|
|
2624
|
-
relative_to: string;
|
|
2625
3020
|
}, {
|
|
3021
|
+
selector: string;
|
|
2626
3022
|
center: {
|
|
2627
3023
|
x: string | number;
|
|
2628
3024
|
y: string | number;
|
|
2629
3025
|
};
|
|
2630
|
-
selector: string;
|
|
2631
3026
|
relative_to?: string | undefined;
|
|
2632
3027
|
}>, "many">>;
|
|
2633
3028
|
}, "strip", z.ZodTypeAny, {
|
|
2634
3029
|
pcb_placements?: {
|
|
3030
|
+
selector: string;
|
|
3031
|
+
relative_to: string;
|
|
2635
3032
|
center: {
|
|
2636
3033
|
x: number;
|
|
2637
3034
|
y: number;
|
|
2638
3035
|
};
|
|
2639
|
-
selector: string;
|
|
2640
|
-
relative_to: string;
|
|
2641
3036
|
}[] | undefined;
|
|
2642
3037
|
manual_trace_hints?: {
|
|
3038
|
+
pcb_port_selector: string;
|
|
2643
3039
|
offsets: {
|
|
2644
3040
|
x: number;
|
|
2645
3041
|
y: number;
|
|
@@ -2647,26 +3043,26 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
2647
3043
|
via?: boolean | undefined;
|
|
2648
3044
|
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
2649
3045
|
}[];
|
|
2650
|
-
pcb_port_selector: string;
|
|
2651
3046
|
}[] | undefined;
|
|
2652
3047
|
schematic_placements?: {
|
|
3048
|
+
selector: string;
|
|
3049
|
+
relative_to: string;
|
|
2653
3050
|
center: {
|
|
2654
3051
|
x: number;
|
|
2655
3052
|
y: number;
|
|
2656
3053
|
};
|
|
2657
|
-
selector: string;
|
|
2658
|
-
relative_to: string;
|
|
2659
3054
|
}[] | undefined;
|
|
2660
3055
|
}, {
|
|
2661
3056
|
pcb_placements?: {
|
|
3057
|
+
selector: string;
|
|
2662
3058
|
center: {
|
|
2663
3059
|
x: string | number;
|
|
2664
3060
|
y: string | number;
|
|
2665
3061
|
};
|
|
2666
|
-
selector: string;
|
|
2667
3062
|
relative_to?: string | undefined;
|
|
2668
3063
|
}[] | undefined;
|
|
2669
3064
|
manual_trace_hints?: {
|
|
3065
|
+
pcb_port_selector: string;
|
|
2670
3066
|
offsets: {
|
|
2671
3067
|
x: string | number;
|
|
2672
3068
|
y: string | number;
|
|
@@ -2676,14 +3072,13 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
2676
3072
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
2677
3073
|
} | undefined;
|
|
2678
3074
|
}[];
|
|
2679
|
-
pcb_port_selector: string;
|
|
2680
3075
|
}[] | undefined;
|
|
2681
3076
|
schematic_placements?: {
|
|
3077
|
+
selector: string;
|
|
2682
3078
|
center: {
|
|
2683
3079
|
x: string | number;
|
|
2684
3080
|
y: string | number;
|
|
2685
3081
|
};
|
|
2686
|
-
selector: string;
|
|
2687
3082
|
relative_to?: string | undefined;
|
|
2688
3083
|
}[] | undefined;
|
|
2689
3084
|
}>>;
|
|
@@ -2717,10 +3112,10 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
2717
3112
|
pcbX?: number | undefined;
|
|
2718
3113
|
pcbY?: number | undefined;
|
|
2719
3114
|
pcbRotation?: number | undefined;
|
|
3115
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
2720
3116
|
schX?: number | undefined;
|
|
2721
3117
|
schY?: number | undefined;
|
|
2722
3118
|
schRotation?: number | undefined;
|
|
2723
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
2724
3119
|
footprint?: Footprint | undefined;
|
|
2725
3120
|
key?: any;
|
|
2726
3121
|
name?: string | undefined;
|
|
@@ -2728,14 +3123,15 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
2728
3123
|
layout?: LayoutBuilder | undefined;
|
|
2729
3124
|
manualEdits?: {
|
|
2730
3125
|
pcb_placements?: {
|
|
3126
|
+
selector: string;
|
|
3127
|
+
relative_to: string;
|
|
2731
3128
|
center: {
|
|
2732
3129
|
x: number;
|
|
2733
3130
|
y: number;
|
|
2734
3131
|
};
|
|
2735
|
-
selector: string;
|
|
2736
|
-
relative_to: string;
|
|
2737
3132
|
}[] | undefined;
|
|
2738
3133
|
manual_trace_hints?: {
|
|
3134
|
+
pcb_port_selector: string;
|
|
2739
3135
|
offsets: {
|
|
2740
3136
|
x: number;
|
|
2741
3137
|
y: number;
|
|
@@ -2743,15 +3139,14 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
2743
3139
|
via?: boolean | undefined;
|
|
2744
3140
|
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
2745
3141
|
}[];
|
|
2746
|
-
pcb_port_selector: string;
|
|
2747
3142
|
}[] | undefined;
|
|
2748
3143
|
schematic_placements?: {
|
|
3144
|
+
selector: string;
|
|
3145
|
+
relative_to: string;
|
|
2749
3146
|
center: {
|
|
2750
3147
|
x: number;
|
|
2751
3148
|
y: number;
|
|
2752
3149
|
};
|
|
2753
|
-
selector: string;
|
|
2754
|
-
relative_to: string;
|
|
2755
3150
|
}[] | undefined;
|
|
2756
3151
|
} | undefined;
|
|
2757
3152
|
routingDisabled?: boolean | undefined;
|
|
@@ -2772,12 +3167,12 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
2772
3167
|
pcbX?: string | number | undefined;
|
|
2773
3168
|
pcbY?: string | number | undefined;
|
|
2774
3169
|
pcbRotation?: string | number | undefined;
|
|
2775
|
-
schX?: string | number | undefined;
|
|
2776
|
-
schY?: string | number | undefined;
|
|
2777
|
-
schRotation?: string | number | undefined;
|
|
2778
3170
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
2779
3171
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
2780
3172
|
} | undefined;
|
|
3173
|
+
schX?: string | number | undefined;
|
|
3174
|
+
schY?: string | number | undefined;
|
|
3175
|
+
schRotation?: string | number | undefined;
|
|
2781
3176
|
footprint?: Footprint | undefined;
|
|
2782
3177
|
key?: any;
|
|
2783
3178
|
name?: string | undefined;
|
|
@@ -2785,14 +3180,15 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
2785
3180
|
layout?: LayoutBuilder | undefined;
|
|
2786
3181
|
manualEdits?: {
|
|
2787
3182
|
pcb_placements?: {
|
|
3183
|
+
selector: string;
|
|
2788
3184
|
center: {
|
|
2789
3185
|
x: string | number;
|
|
2790
3186
|
y: string | number;
|
|
2791
3187
|
};
|
|
2792
|
-
selector: string;
|
|
2793
3188
|
relative_to?: string | undefined;
|
|
2794
3189
|
}[] | undefined;
|
|
2795
3190
|
manual_trace_hints?: {
|
|
3191
|
+
pcb_port_selector: string;
|
|
2796
3192
|
offsets: {
|
|
2797
3193
|
x: string | number;
|
|
2798
3194
|
y: string | number;
|
|
@@ -2802,14 +3198,13 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
2802
3198
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
2803
3199
|
} | undefined;
|
|
2804
3200
|
}[];
|
|
2805
|
-
pcb_port_selector: string;
|
|
2806
3201
|
}[] | undefined;
|
|
2807
3202
|
schematic_placements?: {
|
|
3203
|
+
selector: string;
|
|
2808
3204
|
center: {
|
|
2809
3205
|
x: string | number;
|
|
2810
3206
|
y: string | number;
|
|
2811
3207
|
};
|
|
2812
|
-
selector: string;
|
|
2813
3208
|
relative_to?: string | undefined;
|
|
2814
3209
|
}[] | undefined;
|
|
2815
3210
|
} | undefined;
|
|
@@ -2854,10 +3249,10 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
2854
3249
|
pcbX?: number | undefined;
|
|
2855
3250
|
pcbY?: number | undefined;
|
|
2856
3251
|
pcbRotation?: number | undefined;
|
|
3252
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
2857
3253
|
schX?: number | undefined;
|
|
2858
3254
|
schY?: number | undefined;
|
|
2859
3255
|
schRotation?: number | undefined;
|
|
2860
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
2861
3256
|
footprint?: Footprint | undefined;
|
|
2862
3257
|
key?: any;
|
|
2863
3258
|
name?: string | undefined;
|
|
@@ -2867,12 +3262,12 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
2867
3262
|
pcbX?: string | number | undefined;
|
|
2868
3263
|
pcbY?: string | number | undefined;
|
|
2869
3264
|
pcbRotation?: string | number | undefined;
|
|
2870
|
-
schX?: string | number | undefined;
|
|
2871
|
-
schY?: string | number | undefined;
|
|
2872
|
-
schRotation?: string | number | undefined;
|
|
2873
3265
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
2874
3266
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
2875
3267
|
} | undefined;
|
|
3268
|
+
schX?: string | number | undefined;
|
|
3269
|
+
schY?: string | number | undefined;
|
|
3270
|
+
schRotation?: string | number | undefined;
|
|
2876
3271
|
footprint?: Footprint | undefined;
|
|
2877
3272
|
key?: any;
|
|
2878
3273
|
name?: string | undefined;
|
|
@@ -2916,18 +3311,18 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
2916
3311
|
y: string | number;
|
|
2917
3312
|
}>;
|
|
2918
3313
|
}, "strip", z.ZodTypeAny, {
|
|
3314
|
+
selector: string;
|
|
3315
|
+
relative_to: string;
|
|
2919
3316
|
center: {
|
|
2920
3317
|
x: number;
|
|
2921
3318
|
y: number;
|
|
2922
3319
|
};
|
|
2923
|
-
selector: string;
|
|
2924
|
-
relative_to: string;
|
|
2925
3320
|
}, {
|
|
3321
|
+
selector: string;
|
|
2926
3322
|
center: {
|
|
2927
3323
|
x: string | number;
|
|
2928
3324
|
y: string | number;
|
|
2929
3325
|
};
|
|
2930
|
-
selector: string;
|
|
2931
3326
|
relative_to?: string | undefined;
|
|
2932
3327
|
}>, "many">>;
|
|
2933
3328
|
manual_trace_hints: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -2962,6 +3357,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
2962
3357
|
} | undefined;
|
|
2963
3358
|
}>, "many">;
|
|
2964
3359
|
}, "strip", z.ZodTypeAny, {
|
|
3360
|
+
pcb_port_selector: string;
|
|
2965
3361
|
offsets: {
|
|
2966
3362
|
x: number;
|
|
2967
3363
|
y: number;
|
|
@@ -2969,8 +3365,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
2969
3365
|
via?: boolean | undefined;
|
|
2970
3366
|
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
2971
3367
|
}[];
|
|
2972
|
-
pcb_port_selector: string;
|
|
2973
3368
|
}, {
|
|
3369
|
+
pcb_port_selector: string;
|
|
2974
3370
|
offsets: {
|
|
2975
3371
|
x: string | number;
|
|
2976
3372
|
y: string | number;
|
|
@@ -2980,7 +3376,6 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
2980
3376
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
2981
3377
|
} | undefined;
|
|
2982
3378
|
}[];
|
|
2983
|
-
pcb_port_selector: string;
|
|
2984
3379
|
}>, "many">>;
|
|
2985
3380
|
schematic_placements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2986
3381
|
selector: z.ZodString;
|
|
@@ -2996,30 +3391,31 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
2996
3391
|
y: string | number;
|
|
2997
3392
|
}>;
|
|
2998
3393
|
}, "strip", z.ZodTypeAny, {
|
|
3394
|
+
selector: string;
|
|
3395
|
+
relative_to: string;
|
|
2999
3396
|
center: {
|
|
3000
3397
|
x: number;
|
|
3001
3398
|
y: number;
|
|
3002
3399
|
};
|
|
3003
|
-
selector: string;
|
|
3004
|
-
relative_to: string;
|
|
3005
3400
|
}, {
|
|
3401
|
+
selector: string;
|
|
3006
3402
|
center: {
|
|
3007
3403
|
x: string | number;
|
|
3008
3404
|
y: string | number;
|
|
3009
3405
|
};
|
|
3010
|
-
selector: string;
|
|
3011
3406
|
relative_to?: string | undefined;
|
|
3012
3407
|
}>, "many">>;
|
|
3013
3408
|
}, "strip", z.ZodTypeAny, {
|
|
3014
3409
|
pcb_placements?: {
|
|
3410
|
+
selector: string;
|
|
3411
|
+
relative_to: string;
|
|
3015
3412
|
center: {
|
|
3016
3413
|
x: number;
|
|
3017
3414
|
y: number;
|
|
3018
3415
|
};
|
|
3019
|
-
selector: string;
|
|
3020
|
-
relative_to: string;
|
|
3021
3416
|
}[] | undefined;
|
|
3022
3417
|
manual_trace_hints?: {
|
|
3418
|
+
pcb_port_selector: string;
|
|
3023
3419
|
offsets: {
|
|
3024
3420
|
x: number;
|
|
3025
3421
|
y: number;
|
|
@@ -3027,26 +3423,26 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
3027
3423
|
via?: boolean | undefined;
|
|
3028
3424
|
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
3029
3425
|
}[];
|
|
3030
|
-
pcb_port_selector: string;
|
|
3031
3426
|
}[] | undefined;
|
|
3032
3427
|
schematic_placements?: {
|
|
3428
|
+
selector: string;
|
|
3429
|
+
relative_to: string;
|
|
3033
3430
|
center: {
|
|
3034
3431
|
x: number;
|
|
3035
3432
|
y: number;
|
|
3036
3433
|
};
|
|
3037
|
-
selector: string;
|
|
3038
|
-
relative_to: string;
|
|
3039
3434
|
}[] | undefined;
|
|
3040
3435
|
}, {
|
|
3041
3436
|
pcb_placements?: {
|
|
3437
|
+
selector: string;
|
|
3042
3438
|
center: {
|
|
3043
3439
|
x: string | number;
|
|
3044
3440
|
y: string | number;
|
|
3045
3441
|
};
|
|
3046
|
-
selector: string;
|
|
3047
3442
|
relative_to?: string | undefined;
|
|
3048
3443
|
}[] | undefined;
|
|
3049
3444
|
manual_trace_hints?: {
|
|
3445
|
+
pcb_port_selector: string;
|
|
3050
3446
|
offsets: {
|
|
3051
3447
|
x: string | number;
|
|
3052
3448
|
y: string | number;
|
|
@@ -3056,14 +3452,13 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
3056
3452
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
3057
3453
|
} | undefined;
|
|
3058
3454
|
}[];
|
|
3059
|
-
pcb_port_selector: string;
|
|
3060
3455
|
}[] | undefined;
|
|
3061
3456
|
schematic_placements?: {
|
|
3457
|
+
selector: string;
|
|
3062
3458
|
center: {
|
|
3063
3459
|
x: string | number;
|
|
3064
3460
|
y: string | number;
|
|
3065
3461
|
};
|
|
3066
|
-
selector: string;
|
|
3067
3462
|
relative_to?: string | undefined;
|
|
3068
3463
|
}[] | undefined;
|
|
3069
3464
|
}>>;
|
|
@@ -3097,10 +3492,10 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
3097
3492
|
pcbX?: number | undefined;
|
|
3098
3493
|
pcbY?: number | undefined;
|
|
3099
3494
|
pcbRotation?: number | undefined;
|
|
3495
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
3100
3496
|
schX?: number | undefined;
|
|
3101
3497
|
schY?: number | undefined;
|
|
3102
3498
|
schRotation?: number | undefined;
|
|
3103
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
3104
3499
|
footprint?: Footprint | undefined;
|
|
3105
3500
|
key?: any;
|
|
3106
3501
|
name?: string | undefined;
|
|
@@ -3108,14 +3503,15 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
3108
3503
|
layout?: LayoutBuilder | undefined;
|
|
3109
3504
|
manualEdits?: {
|
|
3110
3505
|
pcb_placements?: {
|
|
3506
|
+
selector: string;
|
|
3507
|
+
relative_to: string;
|
|
3111
3508
|
center: {
|
|
3112
3509
|
x: number;
|
|
3113
3510
|
y: number;
|
|
3114
3511
|
};
|
|
3115
|
-
selector: string;
|
|
3116
|
-
relative_to: string;
|
|
3117
3512
|
}[] | undefined;
|
|
3118
3513
|
manual_trace_hints?: {
|
|
3514
|
+
pcb_port_selector: string;
|
|
3119
3515
|
offsets: {
|
|
3120
3516
|
x: number;
|
|
3121
3517
|
y: number;
|
|
@@ -3123,15 +3519,14 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
3123
3519
|
via?: boolean | undefined;
|
|
3124
3520
|
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
3125
3521
|
}[];
|
|
3126
|
-
pcb_port_selector: string;
|
|
3127
3522
|
}[] | undefined;
|
|
3128
3523
|
schematic_placements?: {
|
|
3524
|
+
selector: string;
|
|
3525
|
+
relative_to: string;
|
|
3129
3526
|
center: {
|
|
3130
3527
|
x: number;
|
|
3131
3528
|
y: number;
|
|
3132
3529
|
};
|
|
3133
|
-
selector: string;
|
|
3134
|
-
relative_to: string;
|
|
3135
3530
|
}[] | undefined;
|
|
3136
3531
|
} | undefined;
|
|
3137
3532
|
routingDisabled?: boolean | undefined;
|
|
@@ -3152,12 +3547,12 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
3152
3547
|
pcbX?: string | number | undefined;
|
|
3153
3548
|
pcbY?: string | number | undefined;
|
|
3154
3549
|
pcbRotation?: string | number | undefined;
|
|
3155
|
-
schX?: string | number | undefined;
|
|
3156
|
-
schY?: string | number | undefined;
|
|
3157
|
-
schRotation?: string | number | undefined;
|
|
3158
3550
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
3159
3551
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
3160
3552
|
} | undefined;
|
|
3553
|
+
schX?: string | number | undefined;
|
|
3554
|
+
schY?: string | number | undefined;
|
|
3555
|
+
schRotation?: string | number | undefined;
|
|
3161
3556
|
footprint?: Footprint | undefined;
|
|
3162
3557
|
key?: any;
|
|
3163
3558
|
name?: string | undefined;
|
|
@@ -3165,14 +3560,15 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
3165
3560
|
layout?: LayoutBuilder | undefined;
|
|
3166
3561
|
manualEdits?: {
|
|
3167
3562
|
pcb_placements?: {
|
|
3563
|
+
selector: string;
|
|
3168
3564
|
center: {
|
|
3169
3565
|
x: string | number;
|
|
3170
3566
|
y: string | number;
|
|
3171
3567
|
};
|
|
3172
|
-
selector: string;
|
|
3173
3568
|
relative_to?: string | undefined;
|
|
3174
3569
|
}[] | undefined;
|
|
3175
3570
|
manual_trace_hints?: {
|
|
3571
|
+
pcb_port_selector: string;
|
|
3176
3572
|
offsets: {
|
|
3177
3573
|
x: string | number;
|
|
3178
3574
|
y: string | number;
|
|
@@ -3182,14 +3578,13 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
3182
3578
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
3183
3579
|
} | undefined;
|
|
3184
3580
|
}[];
|
|
3185
|
-
pcb_port_selector: string;
|
|
3186
3581
|
}[] | undefined;
|
|
3187
3582
|
schematic_placements?: {
|
|
3583
|
+
selector: string;
|
|
3188
3584
|
center: {
|
|
3189
3585
|
x: string | number;
|
|
3190
3586
|
y: string | number;
|
|
3191
3587
|
};
|
|
3192
|
-
selector: string;
|
|
3193
3588
|
relative_to?: string | undefined;
|
|
3194
3589
|
}[] | undefined;
|
|
3195
3590
|
} | undefined;
|
|
@@ -3258,18 +3653,18 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
3258
3653
|
y: string | number;
|
|
3259
3654
|
}>;
|
|
3260
3655
|
}, "strip", z.ZodTypeAny, {
|
|
3656
|
+
selector: string;
|
|
3657
|
+
relative_to: string;
|
|
3261
3658
|
center: {
|
|
3262
3659
|
x: number;
|
|
3263
3660
|
y: number;
|
|
3264
3661
|
};
|
|
3265
|
-
selector: string;
|
|
3266
|
-
relative_to: string;
|
|
3267
3662
|
}, {
|
|
3663
|
+
selector: string;
|
|
3268
3664
|
center: {
|
|
3269
3665
|
x: string | number;
|
|
3270
3666
|
y: string | number;
|
|
3271
3667
|
};
|
|
3272
|
-
selector: string;
|
|
3273
3668
|
relative_to?: string | undefined;
|
|
3274
3669
|
}>, "many">>;
|
|
3275
3670
|
manual_trace_hints: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -3304,6 +3699,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
3304
3699
|
} | undefined;
|
|
3305
3700
|
}>, "many">;
|
|
3306
3701
|
}, "strip", z.ZodTypeAny, {
|
|
3702
|
+
pcb_port_selector: string;
|
|
3307
3703
|
offsets: {
|
|
3308
3704
|
x: number;
|
|
3309
3705
|
y: number;
|
|
@@ -3311,8 +3707,8 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
3311
3707
|
via?: boolean | undefined;
|
|
3312
3708
|
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
3313
3709
|
}[];
|
|
3314
|
-
pcb_port_selector: string;
|
|
3315
3710
|
}, {
|
|
3711
|
+
pcb_port_selector: string;
|
|
3316
3712
|
offsets: {
|
|
3317
3713
|
x: string | number;
|
|
3318
3714
|
y: string | number;
|
|
@@ -3322,7 +3718,6 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
3322
3718
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
3323
3719
|
} | undefined;
|
|
3324
3720
|
}[];
|
|
3325
|
-
pcb_port_selector: string;
|
|
3326
3721
|
}>, "many">>;
|
|
3327
3722
|
schematic_placements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3328
3723
|
selector: z.ZodString;
|
|
@@ -3338,30 +3733,31 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
3338
3733
|
y: string | number;
|
|
3339
3734
|
}>;
|
|
3340
3735
|
}, "strip", z.ZodTypeAny, {
|
|
3736
|
+
selector: string;
|
|
3737
|
+
relative_to: string;
|
|
3341
3738
|
center: {
|
|
3342
3739
|
x: number;
|
|
3343
3740
|
y: number;
|
|
3344
3741
|
};
|
|
3345
|
-
selector: string;
|
|
3346
|
-
relative_to: string;
|
|
3347
3742
|
}, {
|
|
3743
|
+
selector: string;
|
|
3348
3744
|
center: {
|
|
3349
3745
|
x: string | number;
|
|
3350
3746
|
y: string | number;
|
|
3351
3747
|
};
|
|
3352
|
-
selector: string;
|
|
3353
3748
|
relative_to?: string | undefined;
|
|
3354
3749
|
}>, "many">>;
|
|
3355
3750
|
}, "strip", z.ZodTypeAny, {
|
|
3356
3751
|
pcb_placements?: {
|
|
3752
|
+
selector: string;
|
|
3753
|
+
relative_to: string;
|
|
3357
3754
|
center: {
|
|
3358
3755
|
x: number;
|
|
3359
3756
|
y: number;
|
|
3360
3757
|
};
|
|
3361
|
-
selector: string;
|
|
3362
|
-
relative_to: string;
|
|
3363
3758
|
}[] | undefined;
|
|
3364
3759
|
manual_trace_hints?: {
|
|
3760
|
+
pcb_port_selector: string;
|
|
3365
3761
|
offsets: {
|
|
3366
3762
|
x: number;
|
|
3367
3763
|
y: number;
|
|
@@ -3369,26 +3765,26 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
3369
3765
|
via?: boolean | undefined;
|
|
3370
3766
|
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
3371
3767
|
}[];
|
|
3372
|
-
pcb_port_selector: string;
|
|
3373
3768
|
}[] | undefined;
|
|
3374
3769
|
schematic_placements?: {
|
|
3770
|
+
selector: string;
|
|
3771
|
+
relative_to: string;
|
|
3375
3772
|
center: {
|
|
3376
3773
|
x: number;
|
|
3377
3774
|
y: number;
|
|
3378
3775
|
};
|
|
3379
|
-
selector: string;
|
|
3380
|
-
relative_to: string;
|
|
3381
3776
|
}[] | undefined;
|
|
3382
3777
|
}, {
|
|
3383
3778
|
pcb_placements?: {
|
|
3779
|
+
selector: string;
|
|
3384
3780
|
center: {
|
|
3385
3781
|
x: string | number;
|
|
3386
3782
|
y: string | number;
|
|
3387
3783
|
};
|
|
3388
|
-
selector: string;
|
|
3389
3784
|
relative_to?: string | undefined;
|
|
3390
3785
|
}[] | undefined;
|
|
3391
3786
|
manual_trace_hints?: {
|
|
3787
|
+
pcb_port_selector: string;
|
|
3392
3788
|
offsets: {
|
|
3393
3789
|
x: string | number;
|
|
3394
3790
|
y: string | number;
|
|
@@ -3398,14 +3794,13 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
3398
3794
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
3399
3795
|
} | undefined;
|
|
3400
3796
|
}[];
|
|
3401
|
-
pcb_port_selector: string;
|
|
3402
3797
|
}[] | undefined;
|
|
3403
3798
|
schematic_placements?: {
|
|
3799
|
+
selector: string;
|
|
3404
3800
|
center: {
|
|
3405
3801
|
x: string | number;
|
|
3406
3802
|
y: string | number;
|
|
3407
3803
|
};
|
|
3408
|
-
selector: string;
|
|
3409
3804
|
relative_to?: string | undefined;
|
|
3410
3805
|
}[] | undefined;
|
|
3411
3806
|
}>>;
|
|
@@ -3451,27 +3846,26 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
3451
3846
|
pcbX?: number | undefined;
|
|
3452
3847
|
pcbY?: number | undefined;
|
|
3453
3848
|
pcbRotation?: number | undefined;
|
|
3849
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
3454
3850
|
schX?: number | undefined;
|
|
3455
3851
|
schY?: number | undefined;
|
|
3456
3852
|
schRotation?: number | undefined;
|
|
3457
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
3458
3853
|
footprint?: Footprint | undefined;
|
|
3459
3854
|
key?: any;
|
|
3460
3855
|
name?: string | undefined;
|
|
3461
3856
|
children?: any;
|
|
3462
|
-
width?: number | undefined;
|
|
3463
|
-
height?: number | undefined;
|
|
3464
3857
|
layout?: LayoutBuilder | undefined;
|
|
3465
3858
|
manualEdits?: {
|
|
3466
3859
|
pcb_placements?: {
|
|
3860
|
+
selector: string;
|
|
3861
|
+
relative_to: string;
|
|
3467
3862
|
center: {
|
|
3468
3863
|
x: number;
|
|
3469
3864
|
y: number;
|
|
3470
3865
|
};
|
|
3471
|
-
selector: string;
|
|
3472
|
-
relative_to: string;
|
|
3473
3866
|
}[] | undefined;
|
|
3474
3867
|
manual_trace_hints?: {
|
|
3868
|
+
pcb_port_selector: string;
|
|
3475
3869
|
offsets: {
|
|
3476
3870
|
x: number;
|
|
3477
3871
|
y: number;
|
|
@@ -3479,15 +3873,14 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
3479
3873
|
via?: boolean | undefined;
|
|
3480
3874
|
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
3481
3875
|
}[];
|
|
3482
|
-
pcb_port_selector: string;
|
|
3483
3876
|
}[] | undefined;
|
|
3484
3877
|
schematic_placements?: {
|
|
3878
|
+
selector: string;
|
|
3879
|
+
relative_to: string;
|
|
3485
3880
|
center: {
|
|
3486
3881
|
x: number;
|
|
3487
3882
|
y: number;
|
|
3488
3883
|
};
|
|
3489
|
-
selector: string;
|
|
3490
|
-
relative_to: string;
|
|
3491
3884
|
}[] | undefined;
|
|
3492
3885
|
} | undefined;
|
|
3493
3886
|
routingDisabled?: boolean | undefined;
|
|
@@ -3503,6 +3896,8 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
3503
3896
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
3504
3897
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
3505
3898
|
partsEngine?: PartsEngine | undefined;
|
|
3899
|
+
width?: number | undefined;
|
|
3900
|
+
height?: number | undefined;
|
|
3506
3901
|
outline?: {
|
|
3507
3902
|
x: number;
|
|
3508
3903
|
y: number;
|
|
@@ -3513,29 +3908,28 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
3513
3908
|
pcbX?: string | number | undefined;
|
|
3514
3909
|
pcbY?: string | number | undefined;
|
|
3515
3910
|
pcbRotation?: string | number | undefined;
|
|
3516
|
-
schX?: string | number | undefined;
|
|
3517
|
-
schY?: string | number | undefined;
|
|
3518
|
-
schRotation?: string | number | undefined;
|
|
3519
3911
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
3520
3912
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
3521
3913
|
} | undefined;
|
|
3914
|
+
schX?: string | number | undefined;
|
|
3915
|
+
schY?: string | number | undefined;
|
|
3916
|
+
schRotation?: string | number | undefined;
|
|
3522
3917
|
footprint?: Footprint | undefined;
|
|
3523
3918
|
key?: any;
|
|
3524
3919
|
name?: string | undefined;
|
|
3525
3920
|
children?: any;
|
|
3526
|
-
width?: string | number | undefined;
|
|
3527
|
-
height?: string | number | undefined;
|
|
3528
3921
|
layout?: LayoutBuilder | undefined;
|
|
3529
3922
|
manualEdits?: {
|
|
3530
3923
|
pcb_placements?: {
|
|
3924
|
+
selector: string;
|
|
3531
3925
|
center: {
|
|
3532
3926
|
x: string | number;
|
|
3533
3927
|
y: string | number;
|
|
3534
3928
|
};
|
|
3535
|
-
selector: string;
|
|
3536
3929
|
relative_to?: string | undefined;
|
|
3537
3930
|
}[] | undefined;
|
|
3538
3931
|
manual_trace_hints?: {
|
|
3932
|
+
pcb_port_selector: string;
|
|
3539
3933
|
offsets: {
|
|
3540
3934
|
x: string | number;
|
|
3541
3935
|
y: string | number;
|
|
@@ -3545,14 +3939,13 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
3545
3939
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
3546
3940
|
} | undefined;
|
|
3547
3941
|
}[];
|
|
3548
|
-
pcb_port_selector: string;
|
|
3549
3942
|
}[] | undefined;
|
|
3550
3943
|
schematic_placements?: {
|
|
3944
|
+
selector: string;
|
|
3551
3945
|
center: {
|
|
3552
3946
|
x: string | number;
|
|
3553
3947
|
y: string | number;
|
|
3554
3948
|
};
|
|
3555
|
-
selector: string;
|
|
3556
3949
|
relative_to?: string | undefined;
|
|
3557
3950
|
}[] | undefined;
|
|
3558
3951
|
} | undefined;
|
|
@@ -3569,6 +3962,8 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
3569
3962
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
3570
3963
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
3571
3964
|
partsEngine?: PartsEngine | undefined;
|
|
3965
|
+
width?: string | number | undefined;
|
|
3966
|
+
height?: string | number | undefined;
|
|
3572
3967
|
outline?: {
|
|
3573
3968
|
x: string | number;
|
|
3574
3969
|
y: string | number;
|
|
@@ -3861,41 +4256,41 @@ declare const chipProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exten
|
|
|
3861
4256
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
3862
4257
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
3863
4258
|
}, "strip", z.ZodTypeAny, {
|
|
3864
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3865
4259
|
pins: (string | number)[];
|
|
3866
|
-
}, {
|
|
3867
4260
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4261
|
+
}, {
|
|
3868
4262
|
pins: (string | number)[];
|
|
4263
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3869
4264
|
}>>;
|
|
3870
4265
|
rightSide: z.ZodOptional<z.ZodObject<{
|
|
3871
4266
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
3872
4267
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
3873
4268
|
}, "strip", z.ZodTypeAny, {
|
|
3874
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3875
4269
|
pins: (string | number)[];
|
|
3876
|
-
}, {
|
|
3877
4270
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4271
|
+
}, {
|
|
3878
4272
|
pins: (string | number)[];
|
|
4273
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3879
4274
|
}>>;
|
|
3880
4275
|
topSide: z.ZodOptional<z.ZodObject<{
|
|
3881
4276
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
3882
4277
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
3883
4278
|
}, "strip", z.ZodTypeAny, {
|
|
3884
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3885
4279
|
pins: (string | number)[];
|
|
3886
|
-
}, {
|
|
3887
4280
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4281
|
+
}, {
|
|
3888
4282
|
pins: (string | number)[];
|
|
4283
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3889
4284
|
}>>;
|
|
3890
4285
|
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
3891
4286
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
3892
4287
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
3893
4288
|
}, "strip", z.ZodTypeAny, {
|
|
3894
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3895
4289
|
pins: (string | number)[];
|
|
3896
|
-
}, {
|
|
3897
4290
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4291
|
+
}, {
|
|
3898
4292
|
pins: (string | number)[];
|
|
4293
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3899
4294
|
}>>;
|
|
3900
4295
|
}, "strip", z.ZodTypeAny, {
|
|
3901
4296
|
leftSize?: number | undefined;
|
|
@@ -3903,20 +4298,20 @@ declare const chipProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exten
|
|
|
3903
4298
|
rightSize?: number | undefined;
|
|
3904
4299
|
bottomSize?: number | undefined;
|
|
3905
4300
|
leftSide?: {
|
|
3906
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3907
4301
|
pins: (string | number)[];
|
|
4302
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3908
4303
|
} | undefined;
|
|
3909
4304
|
topSide?: {
|
|
3910
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3911
4305
|
pins: (string | number)[];
|
|
4306
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3912
4307
|
} | undefined;
|
|
3913
4308
|
rightSide?: {
|
|
3914
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3915
4309
|
pins: (string | number)[];
|
|
4310
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3916
4311
|
} | undefined;
|
|
3917
4312
|
bottomSide?: {
|
|
3918
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3919
4313
|
pins: (string | number)[];
|
|
4314
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3920
4315
|
} | undefined;
|
|
3921
4316
|
leftPinCount?: number | undefined;
|
|
3922
4317
|
rightPinCount?: number | undefined;
|
|
@@ -3928,20 +4323,20 @@ declare const chipProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exten
|
|
|
3928
4323
|
rightSize?: number | undefined;
|
|
3929
4324
|
bottomSize?: number | undefined;
|
|
3930
4325
|
leftSide?: {
|
|
3931
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3932
4326
|
pins: (string | number)[];
|
|
4327
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3933
4328
|
} | undefined;
|
|
3934
4329
|
topSide?: {
|
|
3935
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3936
4330
|
pins: (string | number)[];
|
|
4331
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3937
4332
|
} | undefined;
|
|
3938
4333
|
rightSide?: {
|
|
3939
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3940
4334
|
pins: (string | number)[];
|
|
4335
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3941
4336
|
} | undefined;
|
|
3942
4337
|
bottomSide?: {
|
|
3943
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3944
4338
|
pins: (string | number)[];
|
|
4339
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3945
4340
|
} | undefined;
|
|
3946
4341
|
leftPinCount?: number | undefined;
|
|
3947
4342
|
rightPinCount?: number | undefined;
|
|
@@ -3973,10 +4368,10 @@ declare const chipProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exten
|
|
|
3973
4368
|
pcbX?: number | undefined;
|
|
3974
4369
|
pcbY?: number | undefined;
|
|
3975
4370
|
pcbRotation?: number | undefined;
|
|
4371
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
3976
4372
|
schX?: number | undefined;
|
|
3977
4373
|
schY?: number | undefined;
|
|
3978
4374
|
schRotation?: number | undefined;
|
|
3979
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
3980
4375
|
footprint?: Footprint | undefined;
|
|
3981
4376
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3982
4377
|
key?: any;
|
|
@@ -4043,20 +4438,20 @@ declare const chipProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exten
|
|
|
4043
4438
|
rightSize?: number | undefined;
|
|
4044
4439
|
bottomSize?: number | undefined;
|
|
4045
4440
|
leftSide?: {
|
|
4046
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4047
4441
|
pins: (string | number)[];
|
|
4442
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4048
4443
|
} | undefined;
|
|
4049
4444
|
topSide?: {
|
|
4050
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4051
4445
|
pins: (string | number)[];
|
|
4446
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4052
4447
|
} | undefined;
|
|
4053
4448
|
rightSide?: {
|
|
4054
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4055
4449
|
pins: (string | number)[];
|
|
4450
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4056
4451
|
} | undefined;
|
|
4057
4452
|
bottomSide?: {
|
|
4058
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4059
4453
|
pins: (string | number)[];
|
|
4454
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4060
4455
|
} | undefined;
|
|
4061
4456
|
leftPinCount?: number | undefined;
|
|
4062
4457
|
rightPinCount?: number | undefined;
|
|
@@ -4078,12 +4473,12 @@ declare const chipProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exten
|
|
|
4078
4473
|
pcbX?: string | number | undefined;
|
|
4079
4474
|
pcbY?: string | number | undefined;
|
|
4080
4475
|
pcbRotation?: string | number | undefined;
|
|
4081
|
-
schX?: string | number | undefined;
|
|
4082
|
-
schY?: string | number | undefined;
|
|
4083
|
-
schRotation?: string | number | undefined;
|
|
4084
4476
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
4085
4477
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
4086
4478
|
} | undefined;
|
|
4479
|
+
schX?: string | number | undefined;
|
|
4480
|
+
schY?: string | number | undefined;
|
|
4481
|
+
schRotation?: string | number | undefined;
|
|
4087
4482
|
footprint?: Footprint | undefined;
|
|
4088
4483
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4089
4484
|
key?: any;
|
|
@@ -4150,20 +4545,20 @@ declare const chipProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exten
|
|
|
4150
4545
|
rightSize?: number | undefined;
|
|
4151
4546
|
bottomSize?: number | undefined;
|
|
4152
4547
|
leftSide?: {
|
|
4153
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4154
4548
|
pins: (string | number)[];
|
|
4549
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4155
4550
|
} | undefined;
|
|
4156
4551
|
topSide?: {
|
|
4157
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4158
4552
|
pins: (string | number)[];
|
|
4553
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4159
4554
|
} | undefined;
|
|
4160
4555
|
rightSide?: {
|
|
4161
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4162
4556
|
pins: (string | number)[];
|
|
4557
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4163
4558
|
} | undefined;
|
|
4164
4559
|
bottomSide?: {
|
|
4165
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4166
4560
|
pins: (string | number)[];
|
|
4561
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4167
4562
|
} | undefined;
|
|
4168
4563
|
leftPinCount?: number | undefined;
|
|
4169
4564
|
rightPinCount?: number | undefined;
|
|
@@ -4456,41 +4851,41 @@ declare const bugProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
4456
4851
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
4457
4852
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
4458
4853
|
}, "strip", z.ZodTypeAny, {
|
|
4459
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4460
4854
|
pins: (string | number)[];
|
|
4461
|
-
}, {
|
|
4462
4855
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4856
|
+
}, {
|
|
4463
4857
|
pins: (string | number)[];
|
|
4858
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4464
4859
|
}>>;
|
|
4465
4860
|
rightSide: z.ZodOptional<z.ZodObject<{
|
|
4466
4861
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
4467
4862
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
4468
4863
|
}, "strip", z.ZodTypeAny, {
|
|
4469
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4470
4864
|
pins: (string | number)[];
|
|
4471
|
-
}, {
|
|
4472
4865
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4866
|
+
}, {
|
|
4473
4867
|
pins: (string | number)[];
|
|
4868
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4474
4869
|
}>>;
|
|
4475
4870
|
topSide: z.ZodOptional<z.ZodObject<{
|
|
4476
4871
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
4477
4872
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
4478
4873
|
}, "strip", z.ZodTypeAny, {
|
|
4479
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4480
4874
|
pins: (string | number)[];
|
|
4481
|
-
}, {
|
|
4482
4875
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4876
|
+
}, {
|
|
4483
4877
|
pins: (string | number)[];
|
|
4878
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4484
4879
|
}>>;
|
|
4485
4880
|
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
4486
4881
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
4487
4882
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
4488
4883
|
}, "strip", z.ZodTypeAny, {
|
|
4489
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4490
4884
|
pins: (string | number)[];
|
|
4491
|
-
}, {
|
|
4492
4885
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4886
|
+
}, {
|
|
4493
4887
|
pins: (string | number)[];
|
|
4888
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4494
4889
|
}>>;
|
|
4495
4890
|
}, "strip", z.ZodTypeAny, {
|
|
4496
4891
|
leftSize?: number | undefined;
|
|
@@ -4498,20 +4893,20 @@ declare const bugProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
4498
4893
|
rightSize?: number | undefined;
|
|
4499
4894
|
bottomSize?: number | undefined;
|
|
4500
4895
|
leftSide?: {
|
|
4501
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4502
4896
|
pins: (string | number)[];
|
|
4897
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4503
4898
|
} | undefined;
|
|
4504
4899
|
topSide?: {
|
|
4505
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4506
4900
|
pins: (string | number)[];
|
|
4901
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4507
4902
|
} | undefined;
|
|
4508
4903
|
rightSide?: {
|
|
4509
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4510
4904
|
pins: (string | number)[];
|
|
4905
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4511
4906
|
} | undefined;
|
|
4512
4907
|
bottomSide?: {
|
|
4513
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4514
4908
|
pins: (string | number)[];
|
|
4909
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4515
4910
|
} | undefined;
|
|
4516
4911
|
leftPinCount?: number | undefined;
|
|
4517
4912
|
rightPinCount?: number | undefined;
|
|
@@ -4523,20 +4918,20 @@ declare const bugProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
4523
4918
|
rightSize?: number | undefined;
|
|
4524
4919
|
bottomSize?: number | undefined;
|
|
4525
4920
|
leftSide?: {
|
|
4526
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4527
4921
|
pins: (string | number)[];
|
|
4922
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4528
4923
|
} | undefined;
|
|
4529
4924
|
topSide?: {
|
|
4530
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4531
4925
|
pins: (string | number)[];
|
|
4926
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4532
4927
|
} | undefined;
|
|
4533
4928
|
rightSide?: {
|
|
4534
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4535
4929
|
pins: (string | number)[];
|
|
4930
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4536
4931
|
} | undefined;
|
|
4537
4932
|
bottomSide?: {
|
|
4538
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4539
4933
|
pins: (string | number)[];
|
|
4934
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4540
4935
|
} | undefined;
|
|
4541
4936
|
leftPinCount?: number | undefined;
|
|
4542
4937
|
rightPinCount?: number | undefined;
|
|
@@ -4568,10 +4963,10 @@ declare const bugProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
4568
4963
|
pcbX?: number | undefined;
|
|
4569
4964
|
pcbY?: number | undefined;
|
|
4570
4965
|
pcbRotation?: number | undefined;
|
|
4966
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
4571
4967
|
schX?: number | undefined;
|
|
4572
4968
|
schY?: number | undefined;
|
|
4573
4969
|
schRotation?: number | undefined;
|
|
4574
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
4575
4970
|
footprint?: Footprint | undefined;
|
|
4576
4971
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4577
4972
|
key?: any;
|
|
@@ -4638,20 +5033,20 @@ declare const bugProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
4638
5033
|
rightSize?: number | undefined;
|
|
4639
5034
|
bottomSize?: number | undefined;
|
|
4640
5035
|
leftSide?: {
|
|
4641
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4642
5036
|
pins: (string | number)[];
|
|
5037
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4643
5038
|
} | undefined;
|
|
4644
5039
|
topSide?: {
|
|
4645
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4646
5040
|
pins: (string | number)[];
|
|
5041
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4647
5042
|
} | undefined;
|
|
4648
5043
|
rightSide?: {
|
|
4649
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4650
5044
|
pins: (string | number)[];
|
|
5045
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4651
5046
|
} | undefined;
|
|
4652
5047
|
bottomSide?: {
|
|
4653
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4654
5048
|
pins: (string | number)[];
|
|
5049
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4655
5050
|
} | undefined;
|
|
4656
5051
|
leftPinCount?: number | undefined;
|
|
4657
5052
|
rightPinCount?: number | undefined;
|
|
@@ -4673,12 +5068,12 @@ declare const bugProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
4673
5068
|
pcbX?: string | number | undefined;
|
|
4674
5069
|
pcbY?: string | number | undefined;
|
|
4675
5070
|
pcbRotation?: string | number | undefined;
|
|
4676
|
-
schX?: string | number | undefined;
|
|
4677
|
-
schY?: string | number | undefined;
|
|
4678
|
-
schRotation?: string | number | undefined;
|
|
4679
5071
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
4680
5072
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
4681
5073
|
} | undefined;
|
|
5074
|
+
schX?: string | number | undefined;
|
|
5075
|
+
schY?: string | number | undefined;
|
|
5076
|
+
schRotation?: string | number | undefined;
|
|
4682
5077
|
footprint?: Footprint | undefined;
|
|
4683
5078
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4684
5079
|
key?: any;
|
|
@@ -4745,20 +5140,20 @@ declare const bugProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
4745
5140
|
rightSize?: number | undefined;
|
|
4746
5141
|
bottomSize?: number | undefined;
|
|
4747
5142
|
leftSide?: {
|
|
4748
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4749
5143
|
pins: (string | number)[];
|
|
5144
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4750
5145
|
} | undefined;
|
|
4751
5146
|
topSide?: {
|
|
4752
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4753
5147
|
pins: (string | number)[];
|
|
5148
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4754
5149
|
} | undefined;
|
|
4755
5150
|
rightSide?: {
|
|
4756
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4757
5151
|
pins: (string | number)[];
|
|
5152
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4758
5153
|
} | undefined;
|
|
4759
5154
|
bottomSide?: {
|
|
4760
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4761
5155
|
pins: (string | number)[];
|
|
5156
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4762
5157
|
} | undefined;
|
|
4763
5158
|
leftPinCount?: number | undefined;
|
|
4764
5159
|
rightPinCount?: number | undefined;
|
|
@@ -5080,41 +5475,41 @@ declare const jumperProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
|
|
|
5080
5475
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
5081
5476
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
5082
5477
|
}, "strip", z.ZodTypeAny, {
|
|
5083
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5084
5478
|
pins: (string | number)[];
|
|
5085
|
-
}, {
|
|
5086
5479
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5480
|
+
}, {
|
|
5087
5481
|
pins: (string | number)[];
|
|
5482
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5088
5483
|
}>>;
|
|
5089
5484
|
rightSide: z.ZodOptional<z.ZodObject<{
|
|
5090
5485
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
5091
5486
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
5092
5487
|
}, "strip", z.ZodTypeAny, {
|
|
5093
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5094
5488
|
pins: (string | number)[];
|
|
5095
|
-
}, {
|
|
5096
5489
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5490
|
+
}, {
|
|
5097
5491
|
pins: (string | number)[];
|
|
5492
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5098
5493
|
}>>;
|
|
5099
5494
|
topSide: z.ZodOptional<z.ZodObject<{
|
|
5100
5495
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
5101
5496
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
5102
5497
|
}, "strip", z.ZodTypeAny, {
|
|
5103
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5104
5498
|
pins: (string | number)[];
|
|
5105
|
-
}, {
|
|
5106
5499
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5500
|
+
}, {
|
|
5107
5501
|
pins: (string | number)[];
|
|
5502
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5108
5503
|
}>>;
|
|
5109
5504
|
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
5110
5505
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
5111
5506
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
5112
5507
|
}, "strip", z.ZodTypeAny, {
|
|
5113
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5114
5508
|
pins: (string | number)[];
|
|
5115
|
-
}, {
|
|
5116
5509
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5510
|
+
}, {
|
|
5117
5511
|
pins: (string | number)[];
|
|
5512
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5118
5513
|
}>>;
|
|
5119
5514
|
}, "strip", z.ZodTypeAny, {
|
|
5120
5515
|
leftSize?: number | undefined;
|
|
@@ -5122,20 +5517,20 @@ declare const jumperProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
|
|
|
5122
5517
|
rightSize?: number | undefined;
|
|
5123
5518
|
bottomSize?: number | undefined;
|
|
5124
5519
|
leftSide?: {
|
|
5125
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5126
5520
|
pins: (string | number)[];
|
|
5521
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5127
5522
|
} | undefined;
|
|
5128
5523
|
topSide?: {
|
|
5129
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5130
5524
|
pins: (string | number)[];
|
|
5525
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5131
5526
|
} | undefined;
|
|
5132
5527
|
rightSide?: {
|
|
5133
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5134
5528
|
pins: (string | number)[];
|
|
5529
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5135
5530
|
} | undefined;
|
|
5136
5531
|
bottomSide?: {
|
|
5137
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5138
5532
|
pins: (string | number)[];
|
|
5533
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5139
5534
|
} | undefined;
|
|
5140
5535
|
leftPinCount?: number | undefined;
|
|
5141
5536
|
rightPinCount?: number | undefined;
|
|
@@ -5147,20 +5542,20 @@ declare const jumperProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
|
|
|
5147
5542
|
rightSize?: number | undefined;
|
|
5148
5543
|
bottomSize?: number | undefined;
|
|
5149
5544
|
leftSide?: {
|
|
5150
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5151
5545
|
pins: (string | number)[];
|
|
5546
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5152
5547
|
} | undefined;
|
|
5153
5548
|
topSide?: {
|
|
5154
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5155
5549
|
pins: (string | number)[];
|
|
5550
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5156
5551
|
} | undefined;
|
|
5157
5552
|
rightSide?: {
|
|
5158
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5159
5553
|
pins: (string | number)[];
|
|
5554
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5160
5555
|
} | undefined;
|
|
5161
5556
|
bottomSide?: {
|
|
5162
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5163
5557
|
pins: (string | number)[];
|
|
5558
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5164
5559
|
} | undefined;
|
|
5165
5560
|
leftPinCount?: number | undefined;
|
|
5166
5561
|
rightPinCount?: number | undefined;
|
|
@@ -5172,10 +5567,10 @@ declare const jumperProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
|
|
|
5172
5567
|
pcbX?: number | undefined;
|
|
5173
5568
|
pcbY?: number | undefined;
|
|
5174
5569
|
pcbRotation?: number | undefined;
|
|
5570
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
5175
5571
|
schX?: number | undefined;
|
|
5176
5572
|
schY?: number | undefined;
|
|
5177
5573
|
schRotation?: number | undefined;
|
|
5178
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
5179
5574
|
footprint?: Footprint | undefined;
|
|
5180
5575
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5181
5576
|
key?: any;
|
|
@@ -5242,20 +5637,20 @@ declare const jumperProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
|
|
|
5242
5637
|
rightSize?: number | undefined;
|
|
5243
5638
|
bottomSize?: number | undefined;
|
|
5244
5639
|
leftSide?: {
|
|
5245
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5246
5640
|
pins: (string | number)[];
|
|
5641
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5247
5642
|
} | undefined;
|
|
5248
5643
|
topSide?: {
|
|
5249
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5250
5644
|
pins: (string | number)[];
|
|
5645
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5251
5646
|
} | undefined;
|
|
5252
5647
|
rightSide?: {
|
|
5253
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5254
5648
|
pins: (string | number)[];
|
|
5649
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5255
5650
|
} | undefined;
|
|
5256
5651
|
bottomSide?: {
|
|
5257
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5258
5652
|
pins: (string | number)[];
|
|
5653
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5259
5654
|
} | undefined;
|
|
5260
5655
|
leftPinCount?: number | undefined;
|
|
5261
5656
|
rightPinCount?: number | undefined;
|
|
@@ -5277,12 +5672,12 @@ declare const jumperProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
|
|
|
5277
5672
|
pcbX?: string | number | undefined;
|
|
5278
5673
|
pcbY?: string | number | undefined;
|
|
5279
5674
|
pcbRotation?: string | number | undefined;
|
|
5280
|
-
schX?: string | number | undefined;
|
|
5281
|
-
schY?: string | number | undefined;
|
|
5282
|
-
schRotation?: string | number | undefined;
|
|
5283
5675
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
5284
5676
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
5285
5677
|
} | undefined;
|
|
5678
|
+
schX?: string | number | undefined;
|
|
5679
|
+
schY?: string | number | undefined;
|
|
5680
|
+
schRotation?: string | number | undefined;
|
|
5286
5681
|
footprint?: Footprint | undefined;
|
|
5287
5682
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5288
5683
|
key?: any;
|
|
@@ -5349,20 +5744,20 @@ declare const jumperProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
|
|
|
5349
5744
|
rightSize?: number | undefined;
|
|
5350
5745
|
bottomSize?: number | undefined;
|
|
5351
5746
|
leftSide?: {
|
|
5352
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5353
5747
|
pins: (string | number)[];
|
|
5748
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5354
5749
|
} | undefined;
|
|
5355
5750
|
topSide?: {
|
|
5356
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5357
5751
|
pins: (string | number)[];
|
|
5752
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5358
5753
|
} | undefined;
|
|
5359
5754
|
rightSide?: {
|
|
5360
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5361
5755
|
pins: (string | number)[];
|
|
5756
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5362
5757
|
} | undefined;
|
|
5363
5758
|
bottomSide?: {
|
|
5364
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5365
5759
|
pins: (string | number)[];
|
|
5760
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5366
5761
|
} | undefined;
|
|
5367
5762
|
leftPinCount?: number | undefined;
|
|
5368
5763
|
rightPinCount?: number | undefined;
|
|
@@ -5801,10 +6196,10 @@ declare const resistorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.e
|
|
|
5801
6196
|
pcbX?: number | undefined;
|
|
5802
6197
|
pcbY?: number | undefined;
|
|
5803
6198
|
pcbRotation?: number | undefined;
|
|
6199
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
5804
6200
|
schX?: number | undefined;
|
|
5805
6201
|
schY?: number | undefined;
|
|
5806
6202
|
schRotation?: number | undefined;
|
|
5807
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
5808
6203
|
footprint?: Footprint | undefined;
|
|
5809
6204
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5810
6205
|
key?: any;
|
|
@@ -5873,12 +6268,12 @@ declare const resistorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.e
|
|
|
5873
6268
|
pcbX?: string | number | undefined;
|
|
5874
6269
|
pcbY?: string | number | undefined;
|
|
5875
6270
|
pcbRotation?: string | number | undefined;
|
|
5876
|
-
schX?: string | number | undefined;
|
|
5877
|
-
schY?: string | number | undefined;
|
|
5878
|
-
schRotation?: string | number | undefined;
|
|
5879
6271
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
5880
6272
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
5881
6273
|
} | undefined;
|
|
6274
|
+
schX?: string | number | undefined;
|
|
6275
|
+
schY?: string | number | undefined;
|
|
6276
|
+
schRotation?: string | number | undefined;
|
|
5882
6277
|
footprint?: Footprint | undefined;
|
|
5883
6278
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5884
6279
|
key?: any;
|
|
@@ -6211,10 +6606,10 @@ declare const potentiometerProps: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
6211
6606
|
pcbX?: number | undefined;
|
|
6212
6607
|
pcbY?: number | undefined;
|
|
6213
6608
|
pcbRotation?: number | undefined;
|
|
6609
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
6214
6610
|
schX?: number | undefined;
|
|
6215
6611
|
schY?: number | undefined;
|
|
6216
6612
|
schRotation?: number | undefined;
|
|
6217
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
6218
6613
|
footprint?: Footprint | undefined;
|
|
6219
6614
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6220
6615
|
key?: any;
|
|
@@ -6279,12 +6674,12 @@ declare const potentiometerProps: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
6279
6674
|
pcbX?: string | number | undefined;
|
|
6280
6675
|
pcbY?: string | number | undefined;
|
|
6281
6676
|
pcbRotation?: string | number | undefined;
|
|
6282
|
-
schX?: string | number | undefined;
|
|
6283
|
-
schY?: string | number | undefined;
|
|
6284
|
-
schRotation?: string | number | undefined;
|
|
6285
6677
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
6286
6678
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6287
6679
|
} | undefined;
|
|
6680
|
+
schX?: string | number | undefined;
|
|
6681
|
+
schY?: string | number | undefined;
|
|
6682
|
+
schRotation?: string | number | undefined;
|
|
6288
6683
|
footprint?: Footprint | undefined;
|
|
6289
6684
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6290
6685
|
key?: any;
|
|
@@ -6619,10 +7014,10 @@ declare const crystalProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
6619
7014
|
pcbX?: number | undefined;
|
|
6620
7015
|
pcbY?: number | undefined;
|
|
6621
7016
|
pcbRotation?: number | undefined;
|
|
7017
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
6622
7018
|
schX?: number | undefined;
|
|
6623
7019
|
schY?: number | undefined;
|
|
6624
7020
|
schRotation?: number | undefined;
|
|
6625
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
6626
7021
|
footprint?: Footprint | undefined;
|
|
6627
7022
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6628
7023
|
key?: any;
|
|
@@ -6689,12 +7084,12 @@ declare const crystalProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
6689
7084
|
pcbX?: string | number | undefined;
|
|
6690
7085
|
pcbY?: string | number | undefined;
|
|
6691
7086
|
pcbRotation?: string | number | undefined;
|
|
6692
|
-
schX?: string | number | undefined;
|
|
6693
|
-
schY?: string | number | undefined;
|
|
6694
|
-
schRotation?: string | number | undefined;
|
|
6695
7087
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
6696
7088
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6697
7089
|
} | undefined;
|
|
7090
|
+
schX?: string | number | undefined;
|
|
7091
|
+
schY?: string | number | undefined;
|
|
7092
|
+
schRotation?: string | number | undefined;
|
|
6698
7093
|
footprint?: Footprint | undefined;
|
|
6699
7094
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6700
7095
|
key?: any;
|
|
@@ -7030,10 +7425,10 @@ declare const resonatorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
7030
7425
|
pcbX?: number | undefined;
|
|
7031
7426
|
pcbY?: number | undefined;
|
|
7032
7427
|
pcbRotation?: number | undefined;
|
|
7428
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
7033
7429
|
schX?: number | undefined;
|
|
7034
7430
|
schY?: number | undefined;
|
|
7035
7431
|
schRotation?: number | undefined;
|
|
7036
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
7037
7432
|
footprint?: Footprint | undefined;
|
|
7038
7433
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7039
7434
|
key?: any;
|
|
@@ -7100,12 +7495,12 @@ declare const resonatorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
7100
7495
|
pcbX?: string | number | undefined;
|
|
7101
7496
|
pcbY?: string | number | undefined;
|
|
7102
7497
|
pcbRotation?: string | number | undefined;
|
|
7103
|
-
schX?: string | number | undefined;
|
|
7104
|
-
schY?: string | number | undefined;
|
|
7105
|
-
schRotation?: string | number | undefined;
|
|
7106
7498
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
7107
7499
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
7108
7500
|
} | undefined;
|
|
7501
|
+
schX?: string | number | undefined;
|
|
7502
|
+
schY?: string | number | undefined;
|
|
7503
|
+
schRotation?: string | number | undefined;
|
|
7109
7504
|
footprint?: Footprint | undefined;
|
|
7110
7505
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7111
7506
|
key?: any;
|
|
@@ -7447,10 +7842,10 @@ declare const capacitorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
7447
7842
|
pcbX?: number | undefined;
|
|
7448
7843
|
pcbY?: number | undefined;
|
|
7449
7844
|
pcbRotation?: number | undefined;
|
|
7845
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
7450
7846
|
schX?: number | undefined;
|
|
7451
7847
|
schY?: number | undefined;
|
|
7452
7848
|
schRotation?: number | undefined;
|
|
7453
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
7454
7849
|
footprint?: Footprint | undefined;
|
|
7455
7850
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7456
7851
|
key?: any;
|
|
@@ -7520,12 +7915,12 @@ declare const capacitorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
7520
7915
|
pcbX?: string | number | undefined;
|
|
7521
7916
|
pcbY?: string | number | undefined;
|
|
7522
7917
|
pcbRotation?: string | number | undefined;
|
|
7523
|
-
schX?: string | number | undefined;
|
|
7524
|
-
schY?: string | number | undefined;
|
|
7525
|
-
schRotation?: string | number | undefined;
|
|
7526
7918
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
7527
7919
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
7528
7920
|
} | undefined;
|
|
7921
|
+
schX?: string | number | undefined;
|
|
7922
|
+
schY?: string | number | undefined;
|
|
7923
|
+
schRotation?: string | number | undefined;
|
|
7529
7924
|
footprint?: Footprint | undefined;
|
|
7530
7925
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7531
7926
|
key?: any;
|
|
@@ -8757,10 +9152,10 @@ declare const batteryProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
8757
9152
|
pcbX?: number | undefined;
|
|
8758
9153
|
pcbY?: number | undefined;
|
|
8759
9154
|
pcbRotation?: number | undefined;
|
|
9155
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
8760
9156
|
schX?: number | undefined;
|
|
8761
9157
|
schY?: number | undefined;
|
|
8762
9158
|
schRotation?: number | undefined;
|
|
8763
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
8764
9159
|
footprint?: Footprint | undefined;
|
|
8765
9160
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8766
9161
|
key?: any;
|
|
@@ -8825,12 +9220,12 @@ declare const batteryProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
8825
9220
|
pcbX?: string | number | undefined;
|
|
8826
9221
|
pcbY?: string | number | undefined;
|
|
8827
9222
|
pcbRotation?: string | number | undefined;
|
|
8828
|
-
schX?: string | number | undefined;
|
|
8829
|
-
schY?: string | number | undefined;
|
|
8830
|
-
schRotation?: string | number | undefined;
|
|
8831
9223
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
8832
9224
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
8833
9225
|
} | undefined;
|
|
9226
|
+
schX?: string | number | undefined;
|
|
9227
|
+
schY?: string | number | undefined;
|
|
9228
|
+
schRotation?: string | number | undefined;
|
|
8834
9229
|
footprint?: Footprint | undefined;
|
|
8835
9230
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8836
9231
|
key?: any;
|
|
@@ -9204,10 +9599,10 @@ declare const pinHeaderProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
9204
9599
|
pcbX?: number | undefined;
|
|
9205
9600
|
pcbY?: number | undefined;
|
|
9206
9601
|
pcbRotation?: number | undefined;
|
|
9602
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
9207
9603
|
schX?: number | undefined;
|
|
9208
9604
|
schY?: number | undefined;
|
|
9209
9605
|
schRotation?: number | undefined;
|
|
9210
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
9211
9606
|
footprint?: Footprint | undefined;
|
|
9212
9607
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
9213
9608
|
key?: any;
|
|
@@ -9266,8 +9661,8 @@ declare const pinHeaderProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
9266
9661
|
} | undefined;
|
|
9267
9662
|
children?: any;
|
|
9268
9663
|
symbolName?: string | undefined;
|
|
9269
|
-
holeDiameter?: number | undefined;
|
|
9270
9664
|
pinLabels?: string[] | undefined;
|
|
9665
|
+
holeDiameter?: number | undefined;
|
|
9271
9666
|
pitch?: number | undefined;
|
|
9272
9667
|
showSilkscreenPinLabels?: boolean | undefined;
|
|
9273
9668
|
doubleRow?: boolean | undefined;
|
|
@@ -9279,12 +9674,12 @@ declare const pinHeaderProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
9279
9674
|
pcbX?: string | number | undefined;
|
|
9280
9675
|
pcbY?: string | number | undefined;
|
|
9281
9676
|
pcbRotation?: string | number | undefined;
|
|
9282
|
-
schX?: string | number | undefined;
|
|
9283
|
-
schY?: string | number | undefined;
|
|
9284
|
-
schRotation?: string | number | undefined;
|
|
9285
9677
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
9286
9678
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
9287
9679
|
} | undefined;
|
|
9680
|
+
schX?: string | number | undefined;
|
|
9681
|
+
schY?: string | number | undefined;
|
|
9682
|
+
schRotation?: string | number | undefined;
|
|
9288
9683
|
footprint?: Footprint | undefined;
|
|
9289
9684
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
9290
9685
|
key?: any;
|
|
@@ -9343,8 +9738,8 @@ declare const pinHeaderProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
9343
9738
|
} | undefined;
|
|
9344
9739
|
children?: any;
|
|
9345
9740
|
symbolName?: string | undefined;
|
|
9346
|
-
holeDiameter?: string | number | undefined;
|
|
9347
9741
|
pinLabels?: string[] | undefined;
|
|
9742
|
+
holeDiameter?: string | number | undefined;
|
|
9348
9743
|
pitch?: string | number | undefined;
|
|
9349
9744
|
gender?: "male" | "female" | undefined;
|
|
9350
9745
|
showSilkscreenPinLabels?: boolean | undefined;
|
|
@@ -9371,13 +9766,13 @@ declare const netAliasProps: z.ZodObject<{
|
|
|
9371
9766
|
schY?: number | undefined;
|
|
9372
9767
|
schRotation?: number | undefined;
|
|
9373
9768
|
net?: string | undefined;
|
|
9374
|
-
anchorSide?: "
|
|
9769
|
+
anchorSide?: "up" | "down" | "left" | "right" | undefined;
|
|
9375
9770
|
}, {
|
|
9376
9771
|
schX?: string | number | undefined;
|
|
9377
9772
|
schY?: string | number | undefined;
|
|
9378
9773
|
schRotation?: string | number | undefined;
|
|
9379
9774
|
net?: string | undefined;
|
|
9380
|
-
anchorSide?: "
|
|
9775
|
+
anchorSide?: "up" | "down" | "left" | "right" | undefined;
|
|
9381
9776
|
}>;
|
|
9382
9777
|
|
|
9383
9778
|
declare const pushButtonProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
@@ -9641,10 +10036,10 @@ declare const pushButtonProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
9641
10036
|
pcbX?: number | undefined;
|
|
9642
10037
|
pcbY?: number | undefined;
|
|
9643
10038
|
pcbRotation?: number | undefined;
|
|
10039
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
9644
10040
|
schX?: number | undefined;
|
|
9645
10041
|
schY?: number | undefined;
|
|
9646
10042
|
schRotation?: number | undefined;
|
|
9647
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
9648
10043
|
footprint?: Footprint | undefined;
|
|
9649
10044
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
9650
10045
|
key?: any;
|
|
@@ -9708,12 +10103,12 @@ declare const pushButtonProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
9708
10103
|
pcbX?: string | number | undefined;
|
|
9709
10104
|
pcbY?: string | number | undefined;
|
|
9710
10105
|
pcbRotation?: string | number | undefined;
|
|
9711
|
-
schX?: string | number | undefined;
|
|
9712
|
-
schY?: string | number | undefined;
|
|
9713
|
-
schRotation?: string | number | undefined;
|
|
9714
10106
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
9715
10107
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
9716
10108
|
} | undefined;
|
|
10109
|
+
schX?: string | number | undefined;
|
|
10110
|
+
schY?: string | number | undefined;
|
|
10111
|
+
schRotation?: string | number | undefined;
|
|
9717
10112
|
footprint?: Footprint | undefined;
|
|
9718
10113
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
9719
10114
|
key?: any;
|
|
@@ -9814,18 +10209,18 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
9814
10209
|
y: string | number;
|
|
9815
10210
|
}>;
|
|
9816
10211
|
}, "strip", z.ZodTypeAny, {
|
|
10212
|
+
selector: string;
|
|
10213
|
+
relative_to: string;
|
|
9817
10214
|
center: {
|
|
9818
10215
|
x: number;
|
|
9819
10216
|
y: number;
|
|
9820
10217
|
};
|
|
9821
|
-
selector: string;
|
|
9822
|
-
relative_to: string;
|
|
9823
10218
|
}, {
|
|
10219
|
+
selector: string;
|
|
9824
10220
|
center: {
|
|
9825
10221
|
x: string | number;
|
|
9826
10222
|
y: string | number;
|
|
9827
10223
|
};
|
|
9828
|
-
selector: string;
|
|
9829
10224
|
relative_to?: string | undefined;
|
|
9830
10225
|
}>, "many">>;
|
|
9831
10226
|
manual_trace_hints: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -9860,6 +10255,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
9860
10255
|
} | undefined;
|
|
9861
10256
|
}>, "many">;
|
|
9862
10257
|
}, "strip", z.ZodTypeAny, {
|
|
10258
|
+
pcb_port_selector: string;
|
|
9863
10259
|
offsets: {
|
|
9864
10260
|
x: number;
|
|
9865
10261
|
y: number;
|
|
@@ -9867,8 +10263,8 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
9867
10263
|
via?: boolean | undefined;
|
|
9868
10264
|
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
9869
10265
|
}[];
|
|
9870
|
-
pcb_port_selector: string;
|
|
9871
10266
|
}, {
|
|
10267
|
+
pcb_port_selector: string;
|
|
9872
10268
|
offsets: {
|
|
9873
10269
|
x: string | number;
|
|
9874
10270
|
y: string | number;
|
|
@@ -9878,7 +10274,6 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
9878
10274
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
9879
10275
|
} | undefined;
|
|
9880
10276
|
}[];
|
|
9881
|
-
pcb_port_selector: string;
|
|
9882
10277
|
}>, "many">>;
|
|
9883
10278
|
schematic_placements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9884
10279
|
selector: z.ZodString;
|
|
@@ -9894,30 +10289,31 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
9894
10289
|
y: string | number;
|
|
9895
10290
|
}>;
|
|
9896
10291
|
}, "strip", z.ZodTypeAny, {
|
|
10292
|
+
selector: string;
|
|
10293
|
+
relative_to: string;
|
|
9897
10294
|
center: {
|
|
9898
10295
|
x: number;
|
|
9899
10296
|
y: number;
|
|
9900
10297
|
};
|
|
9901
|
-
selector: string;
|
|
9902
|
-
relative_to: string;
|
|
9903
10298
|
}, {
|
|
10299
|
+
selector: string;
|
|
9904
10300
|
center: {
|
|
9905
10301
|
x: string | number;
|
|
9906
10302
|
y: string | number;
|
|
9907
10303
|
};
|
|
9908
|
-
selector: string;
|
|
9909
10304
|
relative_to?: string | undefined;
|
|
9910
10305
|
}>, "many">>;
|
|
9911
10306
|
}, "strip", z.ZodTypeAny, {
|
|
9912
10307
|
pcb_placements?: {
|
|
10308
|
+
selector: string;
|
|
10309
|
+
relative_to: string;
|
|
9913
10310
|
center: {
|
|
9914
10311
|
x: number;
|
|
9915
10312
|
y: number;
|
|
9916
10313
|
};
|
|
9917
|
-
selector: string;
|
|
9918
|
-
relative_to: string;
|
|
9919
10314
|
}[] | undefined;
|
|
9920
10315
|
manual_trace_hints?: {
|
|
10316
|
+
pcb_port_selector: string;
|
|
9921
10317
|
offsets: {
|
|
9922
10318
|
x: number;
|
|
9923
10319
|
y: number;
|
|
@@ -9925,26 +10321,26 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
9925
10321
|
via?: boolean | undefined;
|
|
9926
10322
|
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
9927
10323
|
}[];
|
|
9928
|
-
pcb_port_selector: string;
|
|
9929
10324
|
}[] | undefined;
|
|
9930
10325
|
schematic_placements?: {
|
|
10326
|
+
selector: string;
|
|
10327
|
+
relative_to: string;
|
|
9931
10328
|
center: {
|
|
9932
10329
|
x: number;
|
|
9933
10330
|
y: number;
|
|
9934
10331
|
};
|
|
9935
|
-
selector: string;
|
|
9936
|
-
relative_to: string;
|
|
9937
10332
|
}[] | undefined;
|
|
9938
10333
|
}, {
|
|
9939
10334
|
pcb_placements?: {
|
|
10335
|
+
selector: string;
|
|
9940
10336
|
center: {
|
|
9941
10337
|
x: string | number;
|
|
9942
10338
|
y: string | number;
|
|
9943
10339
|
};
|
|
9944
|
-
selector: string;
|
|
9945
10340
|
relative_to?: string | undefined;
|
|
9946
10341
|
}[] | undefined;
|
|
9947
10342
|
manual_trace_hints?: {
|
|
10343
|
+
pcb_port_selector: string;
|
|
9948
10344
|
offsets: {
|
|
9949
10345
|
x: string | number;
|
|
9950
10346
|
y: string | number;
|
|
@@ -9954,14 +10350,13 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
9954
10350
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
9955
10351
|
} | undefined;
|
|
9956
10352
|
}[];
|
|
9957
|
-
pcb_port_selector: string;
|
|
9958
10353
|
}[] | undefined;
|
|
9959
10354
|
schematic_placements?: {
|
|
10355
|
+
selector: string;
|
|
9960
10356
|
center: {
|
|
9961
10357
|
x: string | number;
|
|
9962
10358
|
y: string | number;
|
|
9963
10359
|
};
|
|
9964
|
-
selector: string;
|
|
9965
10360
|
relative_to?: string | undefined;
|
|
9966
10361
|
}[] | undefined;
|
|
9967
10362
|
}>>;
|
|
@@ -9992,10 +10387,10 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
9992
10387
|
pcbX?: number | undefined;
|
|
9993
10388
|
pcbY?: number | undefined;
|
|
9994
10389
|
pcbRotation?: number | undefined;
|
|
10390
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
9995
10391
|
schX?: number | undefined;
|
|
9996
10392
|
schY?: number | undefined;
|
|
9997
10393
|
schRotation?: number | undefined;
|
|
9998
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
9999
10394
|
footprint?: Footprint | undefined;
|
|
10000
10395
|
key?: any;
|
|
10001
10396
|
name?: string | undefined;
|
|
@@ -10003,14 +10398,15 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
10003
10398
|
layout?: _tscircuit_layout.LayoutBuilder | undefined;
|
|
10004
10399
|
manualEdits?: {
|
|
10005
10400
|
pcb_placements?: {
|
|
10401
|
+
selector: string;
|
|
10402
|
+
relative_to: string;
|
|
10006
10403
|
center: {
|
|
10007
10404
|
x: number;
|
|
10008
10405
|
y: number;
|
|
10009
10406
|
};
|
|
10010
|
-
selector: string;
|
|
10011
|
-
relative_to: string;
|
|
10012
10407
|
}[] | undefined;
|
|
10013
10408
|
manual_trace_hints?: {
|
|
10409
|
+
pcb_port_selector: string;
|
|
10014
10410
|
offsets: {
|
|
10015
10411
|
x: number;
|
|
10016
10412
|
y: number;
|
|
@@ -10018,15 +10414,14 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
10018
10414
|
via?: boolean | undefined;
|
|
10019
10415
|
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
10020
10416
|
}[];
|
|
10021
|
-
pcb_port_selector: string;
|
|
10022
10417
|
}[] | undefined;
|
|
10023
10418
|
schematic_placements?: {
|
|
10419
|
+
selector: string;
|
|
10420
|
+
relative_to: string;
|
|
10024
10421
|
center: {
|
|
10025
10422
|
x: number;
|
|
10026
10423
|
y: number;
|
|
10027
10424
|
};
|
|
10028
|
-
selector: string;
|
|
10029
|
-
relative_to: string;
|
|
10030
10425
|
}[] | undefined;
|
|
10031
10426
|
} | undefined;
|
|
10032
10427
|
routingDisabled?: boolean | undefined;
|
|
@@ -10046,12 +10441,12 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
10046
10441
|
pcbX?: string | number | undefined;
|
|
10047
10442
|
pcbY?: string | number | undefined;
|
|
10048
10443
|
pcbRotation?: string | number | undefined;
|
|
10049
|
-
schX?: string | number | undefined;
|
|
10050
|
-
schY?: string | number | undefined;
|
|
10051
|
-
schRotation?: string | number | undefined;
|
|
10052
10444
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
10053
10445
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
10054
10446
|
} | undefined;
|
|
10447
|
+
schX?: string | number | undefined;
|
|
10448
|
+
schY?: string | number | undefined;
|
|
10449
|
+
schRotation?: string | number | undefined;
|
|
10055
10450
|
footprint?: Footprint | undefined;
|
|
10056
10451
|
key?: any;
|
|
10057
10452
|
name?: string | undefined;
|
|
@@ -10059,14 +10454,15 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
10059
10454
|
layout?: _tscircuit_layout.LayoutBuilder | undefined;
|
|
10060
10455
|
manualEdits?: {
|
|
10061
10456
|
pcb_placements?: {
|
|
10457
|
+
selector: string;
|
|
10062
10458
|
center: {
|
|
10063
10459
|
x: string | number;
|
|
10064
10460
|
y: string | number;
|
|
10065
10461
|
};
|
|
10066
|
-
selector: string;
|
|
10067
10462
|
relative_to?: string | undefined;
|
|
10068
10463
|
}[] | undefined;
|
|
10069
10464
|
manual_trace_hints?: {
|
|
10465
|
+
pcb_port_selector: string;
|
|
10070
10466
|
offsets: {
|
|
10071
10467
|
x: string | number;
|
|
10072
10468
|
y: string | number;
|
|
@@ -10076,14 +10472,13 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
10076
10472
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
10077
10473
|
} | undefined;
|
|
10078
10474
|
}[];
|
|
10079
|
-
pcb_port_selector: string;
|
|
10080
10475
|
}[] | undefined;
|
|
10081
10476
|
schematic_placements?: {
|
|
10477
|
+
selector: string;
|
|
10082
10478
|
center: {
|
|
10083
10479
|
x: string | number;
|
|
10084
10480
|
y: string | number;
|
|
10085
10481
|
};
|
|
10086
|
-
selector: string;
|
|
10087
10482
|
relative_to?: string | undefined;
|
|
10088
10483
|
}[] | undefined;
|
|
10089
10484
|
} | undefined;
|
|
@@ -10369,10 +10764,10 @@ declare const transistorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
10369
10764
|
pcbX?: number | undefined;
|
|
10370
10765
|
pcbY?: number | undefined;
|
|
10371
10766
|
pcbRotation?: number | undefined;
|
|
10767
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
10372
10768
|
schX?: number | undefined;
|
|
10373
10769
|
schY?: number | undefined;
|
|
10374
10770
|
schRotation?: number | undefined;
|
|
10375
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
10376
10771
|
footprint?: Footprint | undefined;
|
|
10377
10772
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10378
10773
|
key?: any;
|
|
@@ -10437,12 +10832,12 @@ declare const transistorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
10437
10832
|
pcbX?: string | number | undefined;
|
|
10438
10833
|
pcbY?: string | number | undefined;
|
|
10439
10834
|
pcbRotation?: string | number | undefined;
|
|
10440
|
-
schX?: string | number | undefined;
|
|
10441
|
-
schY?: string | number | undefined;
|
|
10442
|
-
schRotation?: string | number | undefined;
|
|
10443
10835
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
10444
10836
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
10445
10837
|
} | undefined;
|
|
10838
|
+
schX?: string | number | undefined;
|
|
10839
|
+
schY?: string | number | undefined;
|
|
10840
|
+
schRotation?: string | number | undefined;
|
|
10446
10841
|
footprint?: Footprint | undefined;
|
|
10447
10842
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10448
10843
|
key?: any;
|
|
@@ -10774,10 +11169,10 @@ declare const mosfetProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
|
|
|
10774
11169
|
pcbX?: number | undefined;
|
|
10775
11170
|
pcbY?: number | undefined;
|
|
10776
11171
|
pcbRotation?: number | undefined;
|
|
11172
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
10777
11173
|
schX?: number | undefined;
|
|
10778
11174
|
schY?: number | undefined;
|
|
10779
11175
|
schRotation?: number | undefined;
|
|
10780
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
10781
11176
|
footprint?: Footprint | undefined;
|
|
10782
11177
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10783
11178
|
key?: any;
|
|
@@ -10843,12 +11238,12 @@ declare const mosfetProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
|
|
|
10843
11238
|
pcbX?: string | number | undefined;
|
|
10844
11239
|
pcbY?: string | number | undefined;
|
|
10845
11240
|
pcbRotation?: string | number | undefined;
|
|
10846
|
-
schX?: string | number | undefined;
|
|
10847
|
-
schY?: string | number | undefined;
|
|
10848
|
-
schRotation?: string | number | undefined;
|
|
10849
11241
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
10850
11242
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
10851
11243
|
} | undefined;
|
|
11244
|
+
schX?: string | number | undefined;
|
|
11245
|
+
schY?: string | number | undefined;
|
|
11246
|
+
schRotation?: string | number | undefined;
|
|
10852
11247
|
footprint?: Footprint | undefined;
|
|
10853
11248
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10854
11249
|
key?: any;
|
|
@@ -11174,10 +11569,10 @@ declare const inductorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.e
|
|
|
11174
11569
|
pcbX?: number | undefined;
|
|
11175
11570
|
pcbY?: number | undefined;
|
|
11176
11571
|
pcbRotation?: number | undefined;
|
|
11572
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
11177
11573
|
schX?: number | undefined;
|
|
11178
11574
|
schY?: number | undefined;
|
|
11179
11575
|
schRotation?: number | undefined;
|
|
11180
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
11181
11576
|
footprint?: Footprint | undefined;
|
|
11182
11577
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11183
11578
|
key?: any;
|
|
@@ -11242,12 +11637,12 @@ declare const inductorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.e
|
|
|
11242
11637
|
pcbX?: string | number | undefined;
|
|
11243
11638
|
pcbY?: string | number | undefined;
|
|
11244
11639
|
pcbRotation?: string | number | undefined;
|
|
11245
|
-
schX?: string | number | undefined;
|
|
11246
|
-
schY?: string | number | undefined;
|
|
11247
|
-
schRotation?: string | number | undefined;
|
|
11248
11640
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
11249
11641
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
11250
11642
|
} | undefined;
|
|
11643
|
+
schX?: string | number | undefined;
|
|
11644
|
+
schY?: string | number | undefined;
|
|
11645
|
+
schRotation?: string | number | undefined;
|
|
11251
11646
|
footprint?: Footprint | undefined;
|
|
11252
11647
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11253
11648
|
key?: any;
|
|
@@ -11309,6 +11704,7 @@ declare const inductorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.e
|
|
|
11309
11704
|
}>;
|
|
11310
11705
|
declare const inductorPins: readonly ["pin1", "left", "pin2", "right"];
|
|
11311
11706
|
type InductorProps = z.input<typeof inductorProps>;
|
|
11707
|
+
|
|
11312
11708
|
declare const diodeProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
11313
11709
|
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
11314
11710
|
pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -11570,10 +11966,10 @@ declare const diodeProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
11570
11966
|
pcbX?: number | undefined;
|
|
11571
11967
|
pcbY?: number | undefined;
|
|
11572
11968
|
pcbRotation?: number | undefined;
|
|
11969
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
11573
11970
|
schX?: number | undefined;
|
|
11574
11971
|
schY?: number | undefined;
|
|
11575
11972
|
schRotation?: number | undefined;
|
|
11576
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
11577
11973
|
footprint?: Footprint | undefined;
|
|
11578
11974
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11579
11975
|
key?: any;
|
|
@@ -11637,12 +12033,12 @@ declare const diodeProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
11637
12033
|
pcbX?: string | number | undefined;
|
|
11638
12034
|
pcbY?: string | number | undefined;
|
|
11639
12035
|
pcbRotation?: string | number | undefined;
|
|
11640
|
-
schX?: string | number | undefined;
|
|
11641
|
-
schY?: string | number | undefined;
|
|
11642
|
-
schRotation?: string | number | undefined;
|
|
11643
12036
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
11644
12037
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
11645
12038
|
} | undefined;
|
|
12039
|
+
schX?: string | number | undefined;
|
|
12040
|
+
schY?: string | number | undefined;
|
|
12041
|
+
schRotation?: string | number | undefined;
|
|
11646
12042
|
footprint?: Footprint | undefined;
|
|
11647
12043
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11648
12044
|
key?: any;
|
|
@@ -11704,6 +12100,7 @@ declare const diodeProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
11704
12100
|
}>;
|
|
11705
12101
|
declare const diodePins: readonly ["pin1", "left", "anode", "pos", "pin2", "right", "cathode", "neg"];
|
|
11706
12102
|
type DiodeProps = z.input<typeof diodeProps>;
|
|
12103
|
+
|
|
11707
12104
|
declare const ledProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
11708
12105
|
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
11709
12106
|
pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -11967,10 +12364,10 @@ declare const ledProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
11967
12364
|
pcbX?: number | undefined;
|
|
11968
12365
|
pcbY?: number | undefined;
|
|
11969
12366
|
pcbRotation?: number | undefined;
|
|
12367
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
11970
12368
|
schX?: number | undefined;
|
|
11971
12369
|
schY?: number | undefined;
|
|
11972
12370
|
schRotation?: number | undefined;
|
|
11973
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
11974
12371
|
footprint?: Footprint | undefined;
|
|
11975
12372
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11976
12373
|
key?: any;
|
|
@@ -12035,12 +12432,12 @@ declare const ledProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
12035
12432
|
pcbX?: string | number | undefined;
|
|
12036
12433
|
pcbY?: string | number | undefined;
|
|
12037
12434
|
pcbRotation?: string | number | undefined;
|
|
12038
|
-
schX?: string | number | undefined;
|
|
12039
|
-
schY?: string | number | undefined;
|
|
12040
|
-
schRotation?: string | number | undefined;
|
|
12041
12435
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
12042
12436
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
12043
12437
|
} | undefined;
|
|
12438
|
+
schX?: string | number | undefined;
|
|
12439
|
+
schY?: string | number | undefined;
|
|
12440
|
+
schRotation?: string | number | undefined;
|
|
12044
12441
|
footprint?: Footprint | undefined;
|
|
12045
12442
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12046
12443
|
key?: any;
|
|
@@ -12103,6 +12500,7 @@ declare const ledProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
12103
12500
|
}>;
|
|
12104
12501
|
declare const ledPins: readonly ["pin1", "left", "anode", "pos", "pin2", "right", "cathode", "neg"];
|
|
12105
12502
|
type LedProps = z.input<typeof ledProps>;
|
|
12503
|
+
|
|
12106
12504
|
declare const switchProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
12107
12505
|
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
12108
12506
|
pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -12371,10 +12769,10 @@ declare const switchProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
|
|
|
12371
12769
|
pcbX?: number | undefined;
|
|
12372
12770
|
pcbY?: number | undefined;
|
|
12373
12771
|
pcbRotation?: number | undefined;
|
|
12772
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
12374
12773
|
schX?: number | undefined;
|
|
12375
12774
|
schY?: number | undefined;
|
|
12376
12775
|
schRotation?: number | undefined;
|
|
12377
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
12378
12776
|
footprint?: Footprint | undefined;
|
|
12379
12777
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12380
12778
|
key?: any;
|
|
@@ -12439,12 +12837,12 @@ declare const switchProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
|
|
|
12439
12837
|
pcbX?: string | number | undefined;
|
|
12440
12838
|
pcbY?: string | number | undefined;
|
|
12441
12839
|
pcbRotation?: string | number | undefined;
|
|
12442
|
-
schX?: string | number | undefined;
|
|
12443
|
-
schY?: string | number | undefined;
|
|
12444
|
-
schRotation?: string | number | undefined;
|
|
12445
12840
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
12446
12841
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
12447
12842
|
} | undefined;
|
|
12843
|
+
schX?: string | number | undefined;
|
|
12844
|
+
schY?: string | number | undefined;
|
|
12845
|
+
schRotation?: string | number | undefined;
|
|
12448
12846
|
footprint?: Footprint | undefined;
|
|
12449
12847
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12450
12848
|
key?: any;
|
|
@@ -12482,32 +12880,207 @@ declare const switchProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
|
|
|
12482
12880
|
y: string | number;
|
|
12483
12881
|
z: string | number;
|
|
12484
12882
|
} | undefined;
|
|
12485
|
-
mtlUrl?: string | undefined;
|
|
12486
|
-
} | {
|
|
12487
|
-
jscad: Record<string, any>;
|
|
12488
|
-
rotationOffset?: number | {
|
|
12489
|
-
x: string | number;
|
|
12490
|
-
y: string | number;
|
|
12491
|
-
z: string | number;
|
|
12883
|
+
mtlUrl?: string | undefined;
|
|
12884
|
+
} | {
|
|
12885
|
+
jscad: Record<string, any>;
|
|
12886
|
+
rotationOffset?: number | {
|
|
12887
|
+
x: string | number;
|
|
12888
|
+
y: string | number;
|
|
12889
|
+
z: string | number;
|
|
12890
|
+
} | undefined;
|
|
12891
|
+
positionOffset?: {
|
|
12892
|
+
x: string | number;
|
|
12893
|
+
y: string | number;
|
|
12894
|
+
z: string | number;
|
|
12895
|
+
} | undefined;
|
|
12896
|
+
size?: {
|
|
12897
|
+
x: string | number;
|
|
12898
|
+
y: string | number;
|
|
12899
|
+
z: string | number;
|
|
12900
|
+
} | undefined;
|
|
12901
|
+
} | undefined;
|
|
12902
|
+
children?: any;
|
|
12903
|
+
symbolName?: string | undefined;
|
|
12904
|
+
switchType?: "spst" | undefined;
|
|
12905
|
+
isNormallyClosed?: boolean | undefined;
|
|
12906
|
+
}>;
|
|
12907
|
+
type SwitchProps = z.input<typeof switchProps>;
|
|
12908
|
+
|
|
12909
|
+
declare const fabricationNoteTextProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
12910
|
+
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
12911
|
+
pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
12912
|
+
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
12913
|
+
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
12914
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
12915
|
+
}, "strip", z.ZodTypeAny, {
|
|
12916
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
12917
|
+
}, {
|
|
12918
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
12919
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
12920
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
12921
|
+
}>>;
|
|
12922
|
+
}, {
|
|
12923
|
+
text: z.ZodString;
|
|
12924
|
+
anchorAlignment: z.ZodDefault<z.ZodEnum<["center", "top_left", "top_right", "bottom_left", "bottom_right"]>>;
|
|
12925
|
+
font: z.ZodOptional<z.ZodEnum<["tscircuit2024"]>>;
|
|
12926
|
+
fontSize: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
12927
|
+
color: z.ZodOptional<z.ZodString>;
|
|
12928
|
+
}>, "strip", z.ZodTypeAny, {
|
|
12929
|
+
text: string;
|
|
12930
|
+
anchorAlignment: "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right";
|
|
12931
|
+
pcbX?: number | undefined;
|
|
12932
|
+
pcbY?: number | undefined;
|
|
12933
|
+
pcbRotation?: number | undefined;
|
|
12934
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
12935
|
+
color?: string | undefined;
|
|
12936
|
+
font?: "tscircuit2024" | undefined;
|
|
12937
|
+
fontSize?: number | undefined;
|
|
12938
|
+
}, {
|
|
12939
|
+
text: string;
|
|
12940
|
+
pcbX?: string | number | undefined;
|
|
12941
|
+
pcbY?: string | number | undefined;
|
|
12942
|
+
pcbRotation?: string | number | undefined;
|
|
12943
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
12944
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
12945
|
+
} | undefined;
|
|
12946
|
+
color?: string | undefined;
|
|
12947
|
+
anchorAlignment?: "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right" | undefined;
|
|
12948
|
+
font?: "tscircuit2024" | undefined;
|
|
12949
|
+
fontSize?: string | number | undefined;
|
|
12950
|
+
}>;
|
|
12951
|
+
type FabricationNoteTextProps = z.input<typeof fabricationNoteTextProps>;
|
|
12952
|
+
|
|
12953
|
+
declare const fabricationNotePathProps: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
12954
|
+
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
12955
|
+
pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
12956
|
+
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
12957
|
+
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
12958
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
12959
|
+
}, "strip", z.ZodTypeAny, {
|
|
12960
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
12961
|
+
}, {
|
|
12962
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
12963
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
12964
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
12965
|
+
}>>;
|
|
12966
|
+
}, "pcbX" | "pcbY" | "pcbRotation">, {
|
|
12967
|
+
route: z.ZodArray<z.ZodObject<{
|
|
12968
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12969
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12970
|
+
via: z.ZodOptional<z.ZodBoolean>;
|
|
12971
|
+
to_layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
12972
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
12973
|
+
}, "strip", z.ZodTypeAny, {
|
|
12974
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
12975
|
+
}, {
|
|
12976
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
12977
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
12978
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
12979
|
+
}>>;
|
|
12980
|
+
trace_width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
12981
|
+
}, "strip", z.ZodTypeAny, {
|
|
12982
|
+
x: number;
|
|
12983
|
+
y: number;
|
|
12984
|
+
trace_width?: number | undefined;
|
|
12985
|
+
via?: boolean | undefined;
|
|
12986
|
+
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
12987
|
+
}, {
|
|
12988
|
+
x: string | number;
|
|
12989
|
+
y: string | number;
|
|
12990
|
+
trace_width?: string | number | undefined;
|
|
12991
|
+
via?: boolean | undefined;
|
|
12992
|
+
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
12993
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
12994
|
+
} | undefined;
|
|
12995
|
+
}>, "many">;
|
|
12996
|
+
strokeWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
12997
|
+
color: z.ZodOptional<z.ZodString>;
|
|
12998
|
+
}>, "strip", z.ZodTypeAny, {
|
|
12999
|
+
route: {
|
|
13000
|
+
x: number;
|
|
13001
|
+
y: number;
|
|
13002
|
+
trace_width?: number | undefined;
|
|
13003
|
+
via?: boolean | undefined;
|
|
13004
|
+
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
13005
|
+
}[];
|
|
13006
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
13007
|
+
color?: string | undefined;
|
|
13008
|
+
strokeWidth?: number | undefined;
|
|
13009
|
+
}, {
|
|
13010
|
+
route: {
|
|
13011
|
+
x: string | number;
|
|
13012
|
+
y: string | number;
|
|
13013
|
+
trace_width?: string | number | undefined;
|
|
13014
|
+
via?: boolean | undefined;
|
|
13015
|
+
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
13016
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
12492
13017
|
} | undefined;
|
|
12493
|
-
|
|
12494
|
-
|
|
12495
|
-
|
|
12496
|
-
|
|
13018
|
+
}[];
|
|
13019
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
13020
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
13021
|
+
} | undefined;
|
|
13022
|
+
color?: string | undefined;
|
|
13023
|
+
strokeWidth?: string | number | undefined;
|
|
13024
|
+
}>;
|
|
13025
|
+
type FabricationNotePathProps = z.input<typeof fabricationNotePathProps>;
|
|
13026
|
+
|
|
13027
|
+
declare const pcbTraceProps: z.ZodObject<{
|
|
13028
|
+
layer: z.ZodOptional<z.ZodString>;
|
|
13029
|
+
thickness: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
13030
|
+
route: z.ZodArray<z.ZodObject<{
|
|
13031
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
13032
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
13033
|
+
via: z.ZodOptional<z.ZodBoolean>;
|
|
13034
|
+
to_layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
13035
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
13036
|
+
}, "strip", z.ZodTypeAny, {
|
|
13037
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
13038
|
+
}, {
|
|
13039
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
13040
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
13041
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
13042
|
+
}>>;
|
|
13043
|
+
trace_width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
13044
|
+
}, "strip", z.ZodTypeAny, {
|
|
13045
|
+
x: number;
|
|
13046
|
+
y: number;
|
|
13047
|
+
trace_width?: number | undefined;
|
|
13048
|
+
via?: boolean | undefined;
|
|
13049
|
+
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
13050
|
+
}, {
|
|
13051
|
+
x: string | number;
|
|
13052
|
+
y: string | number;
|
|
13053
|
+
trace_width?: string | number | undefined;
|
|
13054
|
+
via?: boolean | undefined;
|
|
13055
|
+
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
13056
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
12497
13057
|
} | undefined;
|
|
12498
|
-
|
|
12499
|
-
|
|
12500
|
-
|
|
12501
|
-
|
|
13058
|
+
}>, "many">;
|
|
13059
|
+
}, "strip", z.ZodTypeAny, {
|
|
13060
|
+
route: {
|
|
13061
|
+
x: number;
|
|
13062
|
+
y: number;
|
|
13063
|
+
trace_width?: number | undefined;
|
|
13064
|
+
via?: boolean | undefined;
|
|
13065
|
+
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
13066
|
+
}[];
|
|
13067
|
+
layer?: string | undefined;
|
|
13068
|
+
thickness?: number | undefined;
|
|
13069
|
+
}, {
|
|
13070
|
+
route: {
|
|
13071
|
+
x: string | number;
|
|
13072
|
+
y: string | number;
|
|
13073
|
+
trace_width?: string | number | undefined;
|
|
13074
|
+
via?: boolean | undefined;
|
|
13075
|
+
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
13076
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
12502
13077
|
} | undefined;
|
|
12503
|
-
}
|
|
12504
|
-
|
|
12505
|
-
|
|
12506
|
-
switchType?: "spst" | undefined;
|
|
12507
|
-
isNormallyClosed?: boolean | undefined;
|
|
13078
|
+
}[];
|
|
13079
|
+
layer?: string | undefined;
|
|
13080
|
+
thickness?: string | number | undefined;
|
|
12508
13081
|
}>;
|
|
12509
|
-
type
|
|
12510
|
-
|
|
13082
|
+
type PcbTraceProps = z.input<typeof pcbTraceProps>;
|
|
13083
|
+
|
|
12511
13084
|
declare const viaProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
12512
13085
|
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
12513
13086
|
pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -12547,39 +13120,40 @@ declare const viaProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
12547
13120
|
holeDiameter: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12548
13121
|
outerDiameter: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12549
13122
|
}>, "strip", z.ZodTypeAny, {
|
|
12550
|
-
fromLayer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
12551
|
-
toLayer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
12552
13123
|
holeDiameter: number;
|
|
12553
13124
|
outerDiameter: number;
|
|
13125
|
+
fromLayer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
13126
|
+
toLayer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
12554
13127
|
pcbX?: number | undefined;
|
|
12555
13128
|
pcbY?: number | undefined;
|
|
12556
13129
|
pcbRotation?: number | undefined;
|
|
13130
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
12557
13131
|
schX?: number | undefined;
|
|
12558
13132
|
schY?: number | undefined;
|
|
12559
13133
|
schRotation?: number | undefined;
|
|
12560
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
12561
13134
|
footprint?: Footprint | undefined;
|
|
12562
13135
|
}, {
|
|
13136
|
+
holeDiameter: string | number;
|
|
13137
|
+
outerDiameter: string | number;
|
|
12563
13138
|
fromLayer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
12564
13139
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
12565
13140
|
};
|
|
12566
13141
|
toLayer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
12567
13142
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
12568
13143
|
};
|
|
12569
|
-
holeDiameter: string | number;
|
|
12570
|
-
outerDiameter: string | number;
|
|
12571
13144
|
pcbX?: string | number | undefined;
|
|
12572
13145
|
pcbY?: string | number | undefined;
|
|
12573
13146
|
pcbRotation?: string | number | undefined;
|
|
12574
|
-
schX?: string | number | undefined;
|
|
12575
|
-
schY?: string | number | undefined;
|
|
12576
|
-
schRotation?: string | number | undefined;
|
|
12577
13147
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
12578
13148
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
12579
13149
|
} | undefined;
|
|
13150
|
+
schX?: string | number | undefined;
|
|
13151
|
+
schY?: string | number | undefined;
|
|
13152
|
+
schRotation?: string | number | undefined;
|
|
12580
13153
|
footprint?: Footprint | undefined;
|
|
12581
13154
|
}>;
|
|
12582
13155
|
type ViaProps = z.input<typeof viaProps>;
|
|
13156
|
+
|
|
12583
13157
|
declare const pcbKeepoutProps: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
12584
13158
|
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
12585
13159
|
pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -12599,138 +13173,21 @@ declare const pcbKeepoutProps: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<
|
|
|
12599
13173
|
}>, "strip", z.ZodTypeAny, {
|
|
12600
13174
|
shape: "circle";
|
|
12601
13175
|
radius: number;
|
|
12602
|
-
pcbX?: number | undefined;
|
|
12603
|
-
pcbY?: number | undefined;
|
|
12604
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
12605
|
-
}, {
|
|
12606
|
-
shape: "circle";
|
|
12607
|
-
radius: string | number;
|
|
12608
|
-
pcbX?: string | number | undefined;
|
|
12609
|
-
pcbY?: string | number | undefined;
|
|
12610
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
12611
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
12612
|
-
} | undefined;
|
|
12613
|
-
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
12614
|
-
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
12615
|
-
pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
12616
|
-
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
12617
|
-
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
12618
|
-
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
12619
|
-
}, "strip", z.ZodTypeAny, {
|
|
12620
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
12621
|
-
}, {
|
|
12622
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
12623
|
-
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
12624
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
12625
|
-
}>>;
|
|
12626
|
-
}, {
|
|
12627
|
-
shape: z.ZodLiteral<"rect">;
|
|
12628
|
-
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12629
|
-
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12630
|
-
}>, "strip", z.ZodTypeAny, {
|
|
12631
|
-
shape: "rect";
|
|
12632
|
-
width: number;
|
|
12633
|
-
height: number;
|
|
12634
|
-
pcbX?: number | undefined;
|
|
12635
|
-
pcbY?: number | undefined;
|
|
12636
|
-
pcbRotation?: number | undefined;
|
|
12637
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
12638
|
-
}, {
|
|
12639
|
-
shape: "rect";
|
|
12640
|
-
width: string | number;
|
|
12641
|
-
height: string | number;
|
|
12642
|
-
pcbX?: string | number | undefined;
|
|
12643
|
-
pcbY?: string | number | undefined;
|
|
12644
|
-
pcbRotation?: string | number | undefined;
|
|
12645
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
12646
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
12647
|
-
} | undefined;
|
|
12648
|
-
}>]>;
|
|
12649
|
-
type PcbKeepoutProps = z.input<typeof pcbKeepoutProps>;
|
|
12650
|
-
declare const schematicBoxProps: z.ZodObject<{
|
|
12651
|
-
schX: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12652
|
-
schY: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12653
|
-
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12654
|
-
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12655
|
-
}, "strip", z.ZodTypeAny, {
|
|
12656
|
-
schX: number;
|
|
12657
|
-
schY: number;
|
|
12658
|
-
width: number;
|
|
12659
|
-
height: number;
|
|
12660
|
-
}, {
|
|
12661
|
-
schX: string | number;
|
|
12662
|
-
schY: string | number;
|
|
12663
|
-
width: string | number;
|
|
12664
|
-
height: string | number;
|
|
12665
|
-
}>;
|
|
12666
|
-
type SchematicBoxProps = z.input<typeof schematicBoxProps>;
|
|
12667
|
-
declare const schematicTextProps: z.ZodObject<{
|
|
12668
|
-
schX: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12669
|
-
schY: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12670
|
-
text: z.ZodString;
|
|
12671
|
-
}, "strip", z.ZodTypeAny, {
|
|
12672
|
-
schX: number;
|
|
12673
|
-
schY: number;
|
|
12674
|
-
text: string;
|
|
12675
|
-
}, {
|
|
12676
|
-
schX: string | number;
|
|
12677
|
-
schY: string | number;
|
|
12678
|
-
text: string;
|
|
12679
|
-
}>;
|
|
12680
|
-
type SchematicTextProps = z.input<typeof schematicTextProps>;
|
|
12681
|
-
declare const schematicLineProps: z.ZodObject<{
|
|
12682
|
-
x1: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12683
|
-
y1: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12684
|
-
x2: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12685
|
-
y2: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12686
|
-
}, "strip", z.ZodTypeAny, {
|
|
12687
|
-
x1: number;
|
|
12688
|
-
y1: number;
|
|
12689
|
-
x2: number;
|
|
12690
|
-
y2: number;
|
|
12691
|
-
}, {
|
|
12692
|
-
x1: string | number;
|
|
12693
|
-
y1: string | number;
|
|
12694
|
-
x2: string | number;
|
|
12695
|
-
y2: string | number;
|
|
12696
|
-
}>;
|
|
12697
|
-
type SchematicLineProps = z.input<typeof schematicLineProps>;
|
|
12698
|
-
declare const schematicPathProps: z.ZodObject<{
|
|
12699
|
-
points: z.ZodArray<z.ZodObject<{
|
|
12700
|
-
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12701
|
-
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12702
|
-
}, "strip", z.ZodTypeAny, {
|
|
12703
|
-
x: number;
|
|
12704
|
-
y: number;
|
|
12705
|
-
}, {
|
|
12706
|
-
x: string | number;
|
|
12707
|
-
y: string | number;
|
|
12708
|
-
}>, "many">;
|
|
12709
|
-
isFilled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
12710
|
-
fillColor: z.ZodOptional<z.ZodEnum<["red", "blue"]>>;
|
|
12711
|
-
}, "strip", z.ZodTypeAny, {
|
|
12712
|
-
points: {
|
|
12713
|
-
x: number;
|
|
12714
|
-
y: number;
|
|
12715
|
-
}[];
|
|
12716
|
-
isFilled: boolean;
|
|
12717
|
-
fillColor?: "red" | "blue" | undefined;
|
|
12718
|
-
}, {
|
|
12719
|
-
points: {
|
|
12720
|
-
x: string | number;
|
|
12721
|
-
y: string | number;
|
|
12722
|
-
}[];
|
|
12723
|
-
isFilled?: boolean | undefined;
|
|
12724
|
-
fillColor?: "red" | "blue" | undefined;
|
|
12725
|
-
}>;
|
|
12726
|
-
type SchematicPathProps = z.input<typeof schematicPathProps>;
|
|
12727
|
-
declare const componentProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
13176
|
+
pcbX?: number | undefined;
|
|
13177
|
+
pcbY?: number | undefined;
|
|
13178
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
13179
|
+
}, {
|
|
13180
|
+
shape: "circle";
|
|
13181
|
+
radius: string | number;
|
|
13182
|
+
pcbX?: string | number | undefined;
|
|
13183
|
+
pcbY?: string | number | undefined;
|
|
13184
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
13185
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
13186
|
+
} | undefined;
|
|
13187
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
12728
13188
|
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
12729
13189
|
pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
12730
13190
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
12731
|
-
schX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
12732
|
-
schY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
12733
|
-
schRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
12734
13191
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
12735
13192
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
12736
13193
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -12739,385 +13196,32 @@ declare const componentProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
12739
13196
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
12740
13197
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
12741
13198
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
12742
|
-
}>>;
|
|
12743
|
-
|
|
12744
|
-
|
|
12745
|
-
|
|
12746
|
-
|
|
12747
|
-
key: z.ZodOptional<z.ZodAny>;
|
|
12748
|
-
name: z.ZodString;
|
|
12749
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<z.objectUtil.extendShape<{
|
|
12750
|
-
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
12751
|
-
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
12752
|
-
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
12753
|
-
z: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
12754
|
-
}, "strip", z.ZodTypeAny, {
|
|
12755
|
-
x: string | number;
|
|
12756
|
-
y: string | number;
|
|
12757
|
-
z: string | number;
|
|
12758
|
-
}, {
|
|
12759
|
-
x: string | number;
|
|
12760
|
-
y: string | number;
|
|
12761
|
-
z: string | number;
|
|
12762
|
-
}>]>>;
|
|
12763
|
-
positionOffset: z.ZodOptional<z.ZodObject<{
|
|
12764
|
-
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12765
|
-
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12766
|
-
z: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12767
|
-
}, "strip", z.ZodTypeAny, {
|
|
12768
|
-
x: number;
|
|
12769
|
-
y: number;
|
|
12770
|
-
z: number;
|
|
12771
|
-
}, {
|
|
12772
|
-
x: string | number;
|
|
12773
|
-
y: string | number;
|
|
12774
|
-
z: string | number;
|
|
12775
|
-
}>>;
|
|
12776
|
-
size: z.ZodOptional<z.ZodObject<{
|
|
12777
|
-
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12778
|
-
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12779
|
-
z: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12780
|
-
}, "strip", z.ZodTypeAny, {
|
|
12781
|
-
x: number;
|
|
12782
|
-
y: number;
|
|
12783
|
-
z: number;
|
|
12784
|
-
}, {
|
|
12785
|
-
x: string | number;
|
|
12786
|
-
y: string | number;
|
|
12787
|
-
z: string | number;
|
|
12788
|
-
}>>;
|
|
12789
|
-
}, {
|
|
12790
|
-
stlUrl: z.ZodString;
|
|
12791
|
-
}>, "strip", z.ZodTypeAny, {
|
|
12792
|
-
stlUrl: string;
|
|
12793
|
-
rotationOffset?: number | {
|
|
12794
|
-
x: string | number;
|
|
12795
|
-
y: string | number;
|
|
12796
|
-
z: string | number;
|
|
12797
|
-
} | undefined;
|
|
12798
|
-
positionOffset?: {
|
|
12799
|
-
x: number;
|
|
12800
|
-
y: number;
|
|
12801
|
-
z: number;
|
|
12802
|
-
} | undefined;
|
|
12803
|
-
size?: {
|
|
12804
|
-
x: number;
|
|
12805
|
-
y: number;
|
|
12806
|
-
z: number;
|
|
12807
|
-
} | undefined;
|
|
12808
|
-
}, {
|
|
12809
|
-
stlUrl: string;
|
|
12810
|
-
rotationOffset?: number | {
|
|
12811
|
-
x: string | number;
|
|
12812
|
-
y: string | number;
|
|
12813
|
-
z: string | number;
|
|
12814
|
-
} | undefined;
|
|
12815
|
-
positionOffset?: {
|
|
12816
|
-
x: string | number;
|
|
12817
|
-
y: string | number;
|
|
12818
|
-
z: string | number;
|
|
12819
|
-
} | undefined;
|
|
12820
|
-
size?: {
|
|
12821
|
-
x: string | number;
|
|
12822
|
-
y: string | number;
|
|
12823
|
-
z: string | number;
|
|
12824
|
-
} | undefined;
|
|
12825
|
-
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
12826
|
-
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
12827
|
-
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
12828
|
-
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
12829
|
-
z: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
12830
|
-
}, "strip", z.ZodTypeAny, {
|
|
12831
|
-
x: string | number;
|
|
12832
|
-
y: string | number;
|
|
12833
|
-
z: string | number;
|
|
12834
|
-
}, {
|
|
12835
|
-
x: string | number;
|
|
12836
|
-
y: string | number;
|
|
12837
|
-
z: string | number;
|
|
12838
|
-
}>]>>;
|
|
12839
|
-
positionOffset: z.ZodOptional<z.ZodObject<{
|
|
12840
|
-
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12841
|
-
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12842
|
-
z: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12843
|
-
}, "strip", z.ZodTypeAny, {
|
|
12844
|
-
x: number;
|
|
12845
|
-
y: number;
|
|
12846
|
-
z: number;
|
|
12847
|
-
}, {
|
|
12848
|
-
x: string | number;
|
|
12849
|
-
y: string | number;
|
|
12850
|
-
z: string | number;
|
|
12851
|
-
}>>;
|
|
12852
|
-
size: z.ZodOptional<z.ZodObject<{
|
|
12853
|
-
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12854
|
-
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12855
|
-
z: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12856
|
-
}, "strip", z.ZodTypeAny, {
|
|
12857
|
-
x: number;
|
|
12858
|
-
y: number;
|
|
12859
|
-
z: number;
|
|
12860
|
-
}, {
|
|
12861
|
-
x: string | number;
|
|
12862
|
-
y: string | number;
|
|
12863
|
-
z: string | number;
|
|
12864
|
-
}>>;
|
|
12865
|
-
}, {
|
|
12866
|
-
objUrl: z.ZodString;
|
|
12867
|
-
mtlUrl: z.ZodOptional<z.ZodString>;
|
|
12868
|
-
}>, "strip", z.ZodTypeAny, {
|
|
12869
|
-
objUrl: string;
|
|
12870
|
-
rotationOffset?: number | {
|
|
12871
|
-
x: string | number;
|
|
12872
|
-
y: string | number;
|
|
12873
|
-
z: string | number;
|
|
12874
|
-
} | undefined;
|
|
12875
|
-
positionOffset?: {
|
|
12876
|
-
x: number;
|
|
12877
|
-
y: number;
|
|
12878
|
-
z: number;
|
|
12879
|
-
} | undefined;
|
|
12880
|
-
size?: {
|
|
12881
|
-
x: number;
|
|
12882
|
-
y: number;
|
|
12883
|
-
z: number;
|
|
12884
|
-
} | undefined;
|
|
12885
|
-
mtlUrl?: string | undefined;
|
|
12886
|
-
}, {
|
|
12887
|
-
objUrl: string;
|
|
12888
|
-
rotationOffset?: number | {
|
|
12889
|
-
x: string | number;
|
|
12890
|
-
y: string | number;
|
|
12891
|
-
z: string | number;
|
|
12892
|
-
} | undefined;
|
|
12893
|
-
positionOffset?: {
|
|
12894
|
-
x: string | number;
|
|
12895
|
-
y: string | number;
|
|
12896
|
-
z: string | number;
|
|
12897
|
-
} | undefined;
|
|
12898
|
-
size?: {
|
|
12899
|
-
x: string | number;
|
|
12900
|
-
y: string | number;
|
|
12901
|
-
z: string | number;
|
|
12902
|
-
} | undefined;
|
|
12903
|
-
mtlUrl?: string | undefined;
|
|
12904
|
-
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
12905
|
-
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
12906
|
-
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
12907
|
-
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
12908
|
-
z: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
12909
|
-
}, "strip", z.ZodTypeAny, {
|
|
12910
|
-
x: string | number;
|
|
12911
|
-
y: string | number;
|
|
12912
|
-
z: string | number;
|
|
12913
|
-
}, {
|
|
12914
|
-
x: string | number;
|
|
12915
|
-
y: string | number;
|
|
12916
|
-
z: string | number;
|
|
12917
|
-
}>]>>;
|
|
12918
|
-
positionOffset: z.ZodOptional<z.ZodObject<{
|
|
12919
|
-
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12920
|
-
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12921
|
-
z: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12922
|
-
}, "strip", z.ZodTypeAny, {
|
|
12923
|
-
x: number;
|
|
12924
|
-
y: number;
|
|
12925
|
-
z: number;
|
|
12926
|
-
}, {
|
|
12927
|
-
x: string | number;
|
|
12928
|
-
y: string | number;
|
|
12929
|
-
z: string | number;
|
|
12930
|
-
}>>;
|
|
12931
|
-
size: z.ZodOptional<z.ZodObject<{
|
|
12932
|
-
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12933
|
-
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12934
|
-
z: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12935
|
-
}, "strip", z.ZodTypeAny, {
|
|
12936
|
-
x: number;
|
|
12937
|
-
y: number;
|
|
12938
|
-
z: number;
|
|
12939
|
-
}, {
|
|
12940
|
-
x: string | number;
|
|
12941
|
-
y: string | number;
|
|
12942
|
-
z: string | number;
|
|
12943
|
-
}>>;
|
|
12944
|
-
}, {
|
|
12945
|
-
jscad: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
12946
|
-
}>, "strip", z.ZodTypeAny, {
|
|
12947
|
-
jscad: Record<string, any>;
|
|
12948
|
-
rotationOffset?: number | {
|
|
12949
|
-
x: string | number;
|
|
12950
|
-
y: string | number;
|
|
12951
|
-
z: string | number;
|
|
12952
|
-
} | undefined;
|
|
12953
|
-
positionOffset?: {
|
|
12954
|
-
x: number;
|
|
12955
|
-
y: number;
|
|
12956
|
-
z: number;
|
|
12957
|
-
} | undefined;
|
|
12958
|
-
size?: {
|
|
12959
|
-
x: number;
|
|
12960
|
-
y: number;
|
|
12961
|
-
z: number;
|
|
12962
|
-
} | undefined;
|
|
12963
|
-
}, {
|
|
12964
|
-
jscad: Record<string, any>;
|
|
12965
|
-
rotationOffset?: number | {
|
|
12966
|
-
x: string | number;
|
|
12967
|
-
y: string | number;
|
|
12968
|
-
z: string | number;
|
|
12969
|
-
} | undefined;
|
|
12970
|
-
positionOffset?: {
|
|
12971
|
-
x: string | number;
|
|
12972
|
-
y: string | number;
|
|
12973
|
-
z: string | number;
|
|
12974
|
-
} | undefined;
|
|
12975
|
-
size?: {
|
|
12976
|
-
x: string | number;
|
|
12977
|
-
y: string | number;
|
|
12978
|
-
z: string | number;
|
|
12979
|
-
} | undefined;
|
|
12980
|
-
}>]>>;
|
|
12981
|
-
children: z.ZodOptional<z.ZodAny>;
|
|
12982
|
-
symbolName: z.ZodOptional<z.ZodString>;
|
|
13199
|
+
}>>;
|
|
13200
|
+
}, {
|
|
13201
|
+
shape: z.ZodLiteral<"rect">;
|
|
13202
|
+
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
13203
|
+
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12983
13204
|
}>, "strip", z.ZodTypeAny, {
|
|
12984
|
-
|
|
13205
|
+
shape: "rect";
|
|
13206
|
+
width: number;
|
|
13207
|
+
height: number;
|
|
12985
13208
|
pcbX?: number | undefined;
|
|
12986
13209
|
pcbY?: number | undefined;
|
|
12987
13210
|
pcbRotation?: number | undefined;
|
|
12988
|
-
schX?: number | undefined;
|
|
12989
|
-
schY?: number | undefined;
|
|
12990
|
-
schRotation?: number | undefined;
|
|
12991
13211
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
12992
|
-
footprint?: Footprint | undefined;
|
|
12993
|
-
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12994
|
-
key?: any;
|
|
12995
|
-
cadModel?: string | {
|
|
12996
|
-
stlUrl: string;
|
|
12997
|
-
rotationOffset?: number | {
|
|
12998
|
-
x: string | number;
|
|
12999
|
-
y: string | number;
|
|
13000
|
-
z: string | number;
|
|
13001
|
-
} | undefined;
|
|
13002
|
-
positionOffset?: {
|
|
13003
|
-
x: number;
|
|
13004
|
-
y: number;
|
|
13005
|
-
z: number;
|
|
13006
|
-
} | undefined;
|
|
13007
|
-
size?: {
|
|
13008
|
-
x: number;
|
|
13009
|
-
y: number;
|
|
13010
|
-
z: number;
|
|
13011
|
-
} | undefined;
|
|
13012
|
-
} | {
|
|
13013
|
-
objUrl: string;
|
|
13014
|
-
rotationOffset?: number | {
|
|
13015
|
-
x: string | number;
|
|
13016
|
-
y: string | number;
|
|
13017
|
-
z: string | number;
|
|
13018
|
-
} | undefined;
|
|
13019
|
-
positionOffset?: {
|
|
13020
|
-
x: number;
|
|
13021
|
-
y: number;
|
|
13022
|
-
z: number;
|
|
13023
|
-
} | undefined;
|
|
13024
|
-
size?: {
|
|
13025
|
-
x: number;
|
|
13026
|
-
y: number;
|
|
13027
|
-
z: number;
|
|
13028
|
-
} | undefined;
|
|
13029
|
-
mtlUrl?: string | undefined;
|
|
13030
|
-
} | {
|
|
13031
|
-
jscad: Record<string, any>;
|
|
13032
|
-
rotationOffset?: number | {
|
|
13033
|
-
x: string | number;
|
|
13034
|
-
y: string | number;
|
|
13035
|
-
z: string | number;
|
|
13036
|
-
} | undefined;
|
|
13037
|
-
positionOffset?: {
|
|
13038
|
-
x: number;
|
|
13039
|
-
y: number;
|
|
13040
|
-
z: number;
|
|
13041
|
-
} | undefined;
|
|
13042
|
-
size?: {
|
|
13043
|
-
x: number;
|
|
13044
|
-
y: number;
|
|
13045
|
-
z: number;
|
|
13046
|
-
} | undefined;
|
|
13047
|
-
} | undefined;
|
|
13048
|
-
children?: any;
|
|
13049
|
-
symbolName?: string | undefined;
|
|
13050
13212
|
}, {
|
|
13051
|
-
|
|
13213
|
+
shape: "rect";
|
|
13214
|
+
width: string | number;
|
|
13215
|
+
height: string | number;
|
|
13052
13216
|
pcbX?: string | number | undefined;
|
|
13053
13217
|
pcbY?: string | number | undefined;
|
|
13054
13218
|
pcbRotation?: string | number | undefined;
|
|
13055
|
-
schX?: string | number | undefined;
|
|
13056
|
-
schY?: string | number | undefined;
|
|
13057
|
-
schRotation?: string | number | undefined;
|
|
13058
13219
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
13059
13220
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
13060
13221
|
} | undefined;
|
|
13061
|
-
|
|
13062
|
-
|
|
13063
|
-
|
|
13064
|
-
cadModel?: string | {
|
|
13065
|
-
stlUrl: string;
|
|
13066
|
-
rotationOffset?: number | {
|
|
13067
|
-
x: string | number;
|
|
13068
|
-
y: string | number;
|
|
13069
|
-
z: string | number;
|
|
13070
|
-
} | undefined;
|
|
13071
|
-
positionOffset?: {
|
|
13072
|
-
x: string | number;
|
|
13073
|
-
y: string | number;
|
|
13074
|
-
z: string | number;
|
|
13075
|
-
} | undefined;
|
|
13076
|
-
size?: {
|
|
13077
|
-
x: string | number;
|
|
13078
|
-
y: string | number;
|
|
13079
|
-
z: string | number;
|
|
13080
|
-
} | undefined;
|
|
13081
|
-
} | {
|
|
13082
|
-
objUrl: string;
|
|
13083
|
-
rotationOffset?: number | {
|
|
13084
|
-
x: string | number;
|
|
13085
|
-
y: string | number;
|
|
13086
|
-
z: string | number;
|
|
13087
|
-
} | undefined;
|
|
13088
|
-
positionOffset?: {
|
|
13089
|
-
x: string | number;
|
|
13090
|
-
y: string | number;
|
|
13091
|
-
z: string | number;
|
|
13092
|
-
} | undefined;
|
|
13093
|
-
size?: {
|
|
13094
|
-
x: string | number;
|
|
13095
|
-
y: string | number;
|
|
13096
|
-
z: string | number;
|
|
13097
|
-
} | undefined;
|
|
13098
|
-
mtlUrl?: string | undefined;
|
|
13099
|
-
} | {
|
|
13100
|
-
jscad: Record<string, any>;
|
|
13101
|
-
rotationOffset?: number | {
|
|
13102
|
-
x: string | number;
|
|
13103
|
-
y: string | number;
|
|
13104
|
-
z: string | number;
|
|
13105
|
-
} | undefined;
|
|
13106
|
-
positionOffset?: {
|
|
13107
|
-
x: string | number;
|
|
13108
|
-
y: string | number;
|
|
13109
|
-
z: string | number;
|
|
13110
|
-
} | undefined;
|
|
13111
|
-
size?: {
|
|
13112
|
-
x: string | number;
|
|
13113
|
-
y: string | number;
|
|
13114
|
-
z: string | number;
|
|
13115
|
-
} | undefined;
|
|
13116
|
-
} | undefined;
|
|
13117
|
-
children?: any;
|
|
13118
|
-
symbolName?: string | undefined;
|
|
13119
|
-
}>;
|
|
13120
|
-
type ComponentProps = z.input<typeof componentProps>;
|
|
13222
|
+
}>]>;
|
|
13223
|
+
type PcbKeepoutProps = z.input<typeof pcbKeepoutProps>;
|
|
13224
|
+
|
|
13121
13225
|
declare const powerSourceProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
13122
13226
|
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
13123
13227
|
pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -13382,10 +13486,10 @@ declare const powerSourceProps: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
13382
13486
|
pcbX?: number | undefined;
|
|
13383
13487
|
pcbY?: number | undefined;
|
|
13384
13488
|
pcbRotation?: number | undefined;
|
|
13489
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
13385
13490
|
schX?: number | undefined;
|
|
13386
13491
|
schY?: number | undefined;
|
|
13387
13492
|
schRotation?: number | undefined;
|
|
13388
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
13389
13493
|
footprint?: Footprint | undefined;
|
|
13390
13494
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
13391
13495
|
key?: any;
|
|
@@ -13450,12 +13554,12 @@ declare const powerSourceProps: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
13450
13554
|
pcbX?: string | number | undefined;
|
|
13451
13555
|
pcbY?: string | number | undefined;
|
|
13452
13556
|
pcbRotation?: string | number | undefined;
|
|
13453
|
-
schX?: string | number | undefined;
|
|
13454
|
-
schY?: string | number | undefined;
|
|
13455
|
-
schRotation?: string | number | undefined;
|
|
13456
13557
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
13457
13558
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
13458
13559
|
} | undefined;
|
|
13560
|
+
schX?: string | number | undefined;
|
|
13561
|
+
schY?: string | number | undefined;
|
|
13562
|
+
schRotation?: string | number | undefined;
|
|
13459
13563
|
footprint?: Footprint | undefined;
|
|
13460
13564
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
13461
13565
|
key?: any;
|
|
@@ -13516,58 +13620,88 @@ declare const powerSourceProps: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
13516
13620
|
symbolName?: string | undefined;
|
|
13517
13621
|
}>;
|
|
13518
13622
|
type PowerSourceProps = z.input<typeof powerSourceProps>;
|
|
13519
|
-
|
|
13520
|
-
|
|
13521
|
-
|
|
13522
|
-
|
|
13523
|
-
|
|
13524
|
-
|
|
13525
|
-
|
|
13526
|
-
|
|
13527
|
-
|
|
13528
|
-
|
|
13529
|
-
|
|
13530
|
-
}, {
|
|
13531
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
13532
|
-
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
13533
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
13534
|
-
}>>;
|
|
13535
|
-
footprint: z.ZodOptional<z.ZodType<Footprint, z.ZodTypeDef, Footprint>>;
|
|
13623
|
+
|
|
13624
|
+
declare const schematicBoxProps: z.ZodObject<{
|
|
13625
|
+
schX: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
13626
|
+
schY: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
13627
|
+
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
13628
|
+
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
13629
|
+
}, "strip", z.ZodTypeAny, {
|
|
13630
|
+
schX: number;
|
|
13631
|
+
schY: number;
|
|
13632
|
+
width: number;
|
|
13633
|
+
height: number;
|
|
13536
13634
|
}, {
|
|
13537
|
-
|
|
13538
|
-
|
|
13539
|
-
|
|
13540
|
-
|
|
13541
|
-
}
|
|
13542
|
-
|
|
13543
|
-
|
|
13544
|
-
|
|
13545
|
-
|
|
13546
|
-
|
|
13547
|
-
|
|
13548
|
-
|
|
13549
|
-
|
|
13550
|
-
|
|
13551
|
-
|
|
13552
|
-
|
|
13553
|
-
|
|
13635
|
+
schX: string | number;
|
|
13636
|
+
schY: string | number;
|
|
13637
|
+
width: string | number;
|
|
13638
|
+
height: string | number;
|
|
13639
|
+
}>;
|
|
13640
|
+
type SchematicBoxProps = z.input<typeof schematicBoxProps>;
|
|
13641
|
+
|
|
13642
|
+
declare const schematicLineProps: z.ZodObject<{
|
|
13643
|
+
x1: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
13644
|
+
y1: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
13645
|
+
x2: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
13646
|
+
y2: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
13647
|
+
}, "strip", z.ZodTypeAny, {
|
|
13648
|
+
x1: number;
|
|
13649
|
+
y1: number;
|
|
13650
|
+
x2: number;
|
|
13651
|
+
y2: number;
|
|
13554
13652
|
}, {
|
|
13555
|
-
|
|
13556
|
-
|
|
13557
|
-
|
|
13558
|
-
|
|
13559
|
-
|
|
13560
|
-
|
|
13561
|
-
|
|
13562
|
-
|
|
13563
|
-
|
|
13564
|
-
|
|
13565
|
-
|
|
13566
|
-
|
|
13567
|
-
|
|
13568
|
-
|
|
13653
|
+
x1: string | number;
|
|
13654
|
+
y1: string | number;
|
|
13655
|
+
x2: string | number;
|
|
13656
|
+
y2: string | number;
|
|
13657
|
+
}>;
|
|
13658
|
+
type SchematicLineProps = z.input<typeof schematicLineProps>;
|
|
13659
|
+
|
|
13660
|
+
declare const schematicTextProps: z.ZodObject<{
|
|
13661
|
+
schX: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
13662
|
+
schY: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
13663
|
+
text: z.ZodString;
|
|
13664
|
+
}, "strip", z.ZodTypeAny, {
|
|
13665
|
+
schX: number;
|
|
13666
|
+
schY: number;
|
|
13667
|
+
text: string;
|
|
13668
|
+
}, {
|
|
13669
|
+
schX: string | number;
|
|
13670
|
+
schY: string | number;
|
|
13671
|
+
text: string;
|
|
13672
|
+
}>;
|
|
13673
|
+
type SchematicTextProps = z.input<typeof schematicTextProps>;
|
|
13674
|
+
|
|
13675
|
+
declare const schematicPathProps: z.ZodObject<{
|
|
13676
|
+
points: z.ZodArray<z.ZodObject<{
|
|
13677
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
13678
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
13679
|
+
}, "strip", z.ZodTypeAny, {
|
|
13680
|
+
x: number;
|
|
13681
|
+
y: number;
|
|
13682
|
+
}, {
|
|
13683
|
+
x: string | number;
|
|
13684
|
+
y: string | number;
|
|
13685
|
+
}>, "many">;
|
|
13686
|
+
isFilled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
13687
|
+
fillColor: z.ZodOptional<z.ZodEnum<["red", "blue"]>>;
|
|
13688
|
+
}, "strip", z.ZodTypeAny, {
|
|
13689
|
+
points: {
|
|
13690
|
+
x: number;
|
|
13691
|
+
y: number;
|
|
13692
|
+
}[];
|
|
13693
|
+
isFilled: boolean;
|
|
13694
|
+
fillColor?: "red" | "blue" | undefined;
|
|
13695
|
+
}, {
|
|
13696
|
+
points: {
|
|
13697
|
+
x: string | number;
|
|
13698
|
+
y: string | number;
|
|
13699
|
+
}[];
|
|
13700
|
+
isFilled?: boolean | undefined;
|
|
13701
|
+
fillColor?: "red" | "blue" | undefined;
|
|
13569
13702
|
}>;
|
|
13570
|
-
type
|
|
13703
|
+
type SchematicPathProps = z.input<typeof schematicPathProps>;
|
|
13704
|
+
|
|
13571
13705
|
declare const silkscreenTextProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
13572
13706
|
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
13573
13707
|
pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -13608,6 +13742,7 @@ declare const silkscreenTextProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
13608
13742
|
fontSize?: string | number | undefined;
|
|
13609
13743
|
}>;
|
|
13610
13744
|
type SilkscreenTextProps = z.input<typeof silkscreenTextProps>;
|
|
13745
|
+
|
|
13611
13746
|
declare const silkscreenPathProps: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
13612
13747
|
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
13613
13748
|
pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -13678,6 +13813,7 @@ declare const silkscreenPathProps: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
|
13678
13813
|
strokeWidth?: string | number | undefined;
|
|
13679
13814
|
}>;
|
|
13680
13815
|
type SilkscreenPathProps = z.input<typeof silkscreenPathProps>;
|
|
13816
|
+
|
|
13681
13817
|
declare const silkscreenLineProps: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
13682
13818
|
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
13683
13819
|
pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -13698,23 +13834,24 @@ declare const silkscreenLineProps: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
|
13698
13834
|
x2: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
13699
13835
|
y2: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
13700
13836
|
}>, "strip", z.ZodTypeAny, {
|
|
13837
|
+
strokeWidth: number;
|
|
13701
13838
|
x1: number;
|
|
13702
13839
|
y1: number;
|
|
13703
13840
|
x2: number;
|
|
13704
13841
|
y2: number;
|
|
13705
|
-
strokeWidth: number;
|
|
13706
13842
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
13707
13843
|
}, {
|
|
13844
|
+
strokeWidth: string | number;
|
|
13708
13845
|
x1: string | number;
|
|
13709
13846
|
y1: string | number;
|
|
13710
13847
|
x2: string | number;
|
|
13711
13848
|
y2: string | number;
|
|
13712
|
-
strokeWidth: string | number;
|
|
13713
13849
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
13714
13850
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
13715
13851
|
} | undefined;
|
|
13716
13852
|
}>;
|
|
13717
13853
|
type SilkscreenLineProps = z.input<typeof silkscreenLineProps>;
|
|
13854
|
+
|
|
13718
13855
|
declare const silkscreenRectProps: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
13719
13856
|
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
13720
13857
|
pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -13740,8 +13877,8 @@ declare const silkscreenRectProps: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
|
13740
13877
|
pcbX?: number | undefined;
|
|
13741
13878
|
pcbY?: number | undefined;
|
|
13742
13879
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
13743
|
-
isFilled?: boolean | undefined;
|
|
13744
13880
|
strokeWidth?: number | undefined;
|
|
13881
|
+
isFilled?: boolean | undefined;
|
|
13745
13882
|
isOutline?: boolean | undefined;
|
|
13746
13883
|
}, {
|
|
13747
13884
|
width: string | number;
|
|
@@ -13751,11 +13888,12 @@ declare const silkscreenRectProps: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
|
13751
13888
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
13752
13889
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
13753
13890
|
} | undefined;
|
|
13754
|
-
isFilled?: boolean | undefined;
|
|
13755
13891
|
strokeWidth?: string | number | undefined;
|
|
13892
|
+
isFilled?: boolean | undefined;
|
|
13756
13893
|
isOutline?: boolean | undefined;
|
|
13757
13894
|
}>;
|
|
13758
13895
|
type SilkscreenRectProps = z.input<typeof silkscreenRectProps>;
|
|
13896
|
+
|
|
13759
13897
|
declare const silkscreenCircleProps: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
13760
13898
|
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
13761
13899
|
pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -13779,8 +13917,8 @@ declare const silkscreenCircleProps: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
|
13779
13917
|
pcbX?: number | undefined;
|
|
13780
13918
|
pcbY?: number | undefined;
|
|
13781
13919
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
13782
|
-
isFilled?: boolean | undefined;
|
|
13783
13920
|
strokeWidth?: number | undefined;
|
|
13921
|
+
isFilled?: boolean | undefined;
|
|
13784
13922
|
isOutline?: boolean | undefined;
|
|
13785
13923
|
}, {
|
|
13786
13924
|
radius: string | number;
|
|
@@ -13789,11 +13927,12 @@ declare const silkscreenCircleProps: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
|
13789
13927
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
13790
13928
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
13791
13929
|
} | undefined;
|
|
13792
|
-
isFilled?: boolean | undefined;
|
|
13793
13930
|
strokeWidth?: string | number | undefined;
|
|
13931
|
+
isFilled?: boolean | undefined;
|
|
13794
13932
|
isOutline?: boolean | undefined;
|
|
13795
13933
|
}>;
|
|
13796
13934
|
type SilkscreenCircleProps = z.input<typeof silkscreenCircleProps>;
|
|
13935
|
+
|
|
13797
13936
|
declare const routeHintPointProps: z.ZodObject<{
|
|
13798
13937
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
13799
13938
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -13810,15 +13949,15 @@ declare const routeHintPointProps: z.ZodObject<{
|
|
|
13810
13949
|
}, "strip", z.ZodTypeAny, {
|
|
13811
13950
|
x: number;
|
|
13812
13951
|
y: number;
|
|
13813
|
-
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
13814
13952
|
via?: boolean | undefined;
|
|
13953
|
+
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
13815
13954
|
}, {
|
|
13816
13955
|
x: string | number;
|
|
13817
13956
|
y: string | number;
|
|
13957
|
+
via?: boolean | undefined;
|
|
13818
13958
|
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
13819
13959
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
13820
13960
|
} | undefined;
|
|
13821
|
-
via?: boolean | undefined;
|
|
13822
13961
|
}>;
|
|
13823
13962
|
declare const traceHintProps: z.ZodObject<{
|
|
13824
13963
|
for: z.ZodOptional<z.ZodString>;
|
|
@@ -13867,15 +14006,15 @@ declare const traceHintProps: z.ZodObject<{
|
|
|
13867
14006
|
}, "strip", z.ZodTypeAny, {
|
|
13868
14007
|
x: number;
|
|
13869
14008
|
y: number;
|
|
13870
|
-
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
13871
14009
|
via?: boolean | undefined;
|
|
14010
|
+
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
13872
14011
|
}, {
|
|
13873
14012
|
x: string | number;
|
|
13874
14013
|
y: string | number;
|
|
14014
|
+
via?: boolean | undefined;
|
|
13875
14015
|
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
13876
14016
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
13877
14017
|
} | undefined;
|
|
13878
|
-
via?: boolean | undefined;
|
|
13879
14018
|
}>]>>;
|
|
13880
14019
|
offsets: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
|
|
13881
14020
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -13921,32 +14060,18 @@ declare const traceHintProps: z.ZodObject<{
|
|
|
13921
14060
|
}, "strip", z.ZodTypeAny, {
|
|
13922
14061
|
x: number;
|
|
13923
14062
|
y: number;
|
|
13924
|
-
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
13925
14063
|
via?: boolean | undefined;
|
|
14064
|
+
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
13926
14065
|
}, {
|
|
13927
14066
|
x: string | number;
|
|
13928
14067
|
y: string | number;
|
|
14068
|
+
via?: boolean | undefined;
|
|
13929
14069
|
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
13930
14070
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
13931
14071
|
} | undefined;
|
|
13932
|
-
via?: boolean | undefined;
|
|
13933
14072
|
}>, "many">]>>;
|
|
13934
14073
|
traceWidth: z.ZodOptional<z.ZodNumber>;
|
|
13935
14074
|
}, "strip", z.ZodTypeAny, {
|
|
13936
|
-
for?: string | undefined;
|
|
13937
|
-
order?: number | undefined;
|
|
13938
|
-
offset?: {
|
|
13939
|
-
x: number;
|
|
13940
|
-
y: number;
|
|
13941
|
-
trace_width?: number | undefined;
|
|
13942
|
-
via?: boolean | undefined;
|
|
13943
|
-
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
13944
|
-
} | {
|
|
13945
|
-
x: number;
|
|
13946
|
-
y: number;
|
|
13947
|
-
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
13948
|
-
via?: boolean | undefined;
|
|
13949
|
-
} | undefined;
|
|
13950
14075
|
offsets?: {
|
|
13951
14076
|
x: number;
|
|
13952
14077
|
y: number;
|
|
@@ -13956,29 +14081,25 @@ declare const traceHintProps: z.ZodObject<{
|
|
|
13956
14081
|
}[] | {
|
|
13957
14082
|
x: number;
|
|
13958
14083
|
y: number;
|
|
13959
|
-
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
13960
14084
|
via?: boolean | undefined;
|
|
14085
|
+
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
13961
14086
|
}[] | undefined;
|
|
13962
|
-
traceWidth?: number | undefined;
|
|
13963
|
-
}, {
|
|
13964
14087
|
for?: string | undefined;
|
|
13965
14088
|
order?: number | undefined;
|
|
13966
14089
|
offset?: {
|
|
13967
|
-
x:
|
|
13968
|
-
y:
|
|
13969
|
-
trace_width?:
|
|
14090
|
+
x: number;
|
|
14091
|
+
y: number;
|
|
14092
|
+
trace_width?: number | undefined;
|
|
13970
14093
|
via?: boolean | undefined;
|
|
13971
|
-
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" |
|
|
13972
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
13973
|
-
} | undefined;
|
|
14094
|
+
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
13974
14095
|
} | {
|
|
13975
|
-
x:
|
|
13976
|
-
y:
|
|
13977
|
-
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
13978
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
13979
|
-
} | undefined;
|
|
14096
|
+
x: number;
|
|
14097
|
+
y: number;
|
|
13980
14098
|
via?: boolean | undefined;
|
|
14099
|
+
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
13981
14100
|
} | undefined;
|
|
14101
|
+
traceWidth?: number | undefined;
|
|
14102
|
+
}, {
|
|
13982
14103
|
offsets?: {
|
|
13983
14104
|
x: string | number;
|
|
13984
14105
|
y: string | number;
|
|
@@ -13990,38 +14111,14 @@ declare const traceHintProps: z.ZodObject<{
|
|
|
13990
14111
|
}[] | {
|
|
13991
14112
|
x: string | number;
|
|
13992
14113
|
y: string | number;
|
|
14114
|
+
via?: boolean | undefined;
|
|
13993
14115
|
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
13994
14116
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
13995
14117
|
} | undefined;
|
|
13996
|
-
via?: boolean | undefined;
|
|
13997
14118
|
}[] | undefined;
|
|
13998
|
-
|
|
13999
|
-
|
|
14000
|
-
|
|
14001
|
-
declare const pcbTraceProps: z.ZodObject<{
|
|
14002
|
-
layer: z.ZodOptional<z.ZodString>;
|
|
14003
|
-
thickness: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
14004
|
-
route: z.ZodArray<z.ZodObject<{
|
|
14005
|
-
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14006
|
-
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14007
|
-
via: z.ZodOptional<z.ZodBoolean>;
|
|
14008
|
-
to_layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
14009
|
-
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
14010
|
-
}, "strip", z.ZodTypeAny, {
|
|
14011
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
14012
|
-
}, {
|
|
14013
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
14014
|
-
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
14015
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
14016
|
-
}>>;
|
|
14017
|
-
trace_width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
14018
|
-
}, "strip", z.ZodTypeAny, {
|
|
14019
|
-
x: number;
|
|
14020
|
-
y: number;
|
|
14021
|
-
trace_width?: number | undefined;
|
|
14022
|
-
via?: boolean | undefined;
|
|
14023
|
-
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
14024
|
-
}, {
|
|
14119
|
+
for?: string | undefined;
|
|
14120
|
+
order?: number | undefined;
|
|
14121
|
+
offset?: {
|
|
14025
14122
|
x: string | number;
|
|
14026
14123
|
y: string | number;
|
|
14027
14124
|
trace_width?: string | number | undefined;
|
|
@@ -14029,35 +14126,25 @@ declare const pcbTraceProps: z.ZodObject<{
|
|
|
14029
14126
|
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
14030
14127
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
14031
14128
|
} | undefined;
|
|
14032
|
-
}
|
|
14033
|
-
}, "strip", z.ZodTypeAny, {
|
|
14034
|
-
route: {
|
|
14035
|
-
x: number;
|
|
14036
|
-
y: number;
|
|
14037
|
-
trace_width?: number | undefined;
|
|
14038
|
-
via?: boolean | undefined;
|
|
14039
|
-
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
14040
|
-
}[];
|
|
14041
|
-
layer?: string | undefined;
|
|
14042
|
-
thickness?: number | undefined;
|
|
14043
|
-
}, {
|
|
14044
|
-
route: {
|
|
14129
|
+
} | {
|
|
14045
14130
|
x: string | number;
|
|
14046
14131
|
y: string | number;
|
|
14047
|
-
trace_width?: string | number | undefined;
|
|
14048
14132
|
via?: boolean | undefined;
|
|
14049
|
-
|
|
14133
|
+
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
14050
14134
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
14051
14135
|
} | undefined;
|
|
14052
|
-
}
|
|
14053
|
-
|
|
14054
|
-
thickness?: string | number | undefined;
|
|
14136
|
+
} | undefined;
|
|
14137
|
+
traceWidth?: number | undefined;
|
|
14055
14138
|
}>;
|
|
14056
|
-
type
|
|
14057
|
-
|
|
14139
|
+
type TraceHintProps = z.input<typeof traceHintProps>;
|
|
14140
|
+
|
|
14141
|
+
declare const portProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
14058
14142
|
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
14059
14143
|
pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
14060
14144
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
14145
|
+
schX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
14146
|
+
schY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
14147
|
+
schRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
14061
14148
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
14062
14149
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
14063
14150
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -14067,108 +14154,41 @@ declare const fabricationNoteTextProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
14067
14154
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
14068
14155
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
14069
14156
|
}>>;
|
|
14157
|
+
footprint: z.ZodOptional<z.ZodType<Footprint, z.ZodTypeDef, Footprint>>;
|
|
14070
14158
|
}, {
|
|
14071
|
-
|
|
14072
|
-
|
|
14073
|
-
|
|
14074
|
-
|
|
14075
|
-
color: z.ZodOptional<z.ZodString>;
|
|
14159
|
+
name: z.ZodString;
|
|
14160
|
+
pinNumber: z.ZodOptional<z.ZodNumber>;
|
|
14161
|
+
aliases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
14162
|
+
direction: z.ZodEnum<["up", "down", "left", "right"]>;
|
|
14076
14163
|
}>, "strip", z.ZodTypeAny, {
|
|
14077
|
-
|
|
14078
|
-
|
|
14164
|
+
name: string;
|
|
14165
|
+
direction: "up" | "down" | "left" | "right";
|
|
14079
14166
|
pcbX?: number | undefined;
|
|
14080
14167
|
pcbY?: number | undefined;
|
|
14081
14168
|
pcbRotation?: number | undefined;
|
|
14082
14169
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
14083
|
-
|
|
14084
|
-
|
|
14085
|
-
|
|
14170
|
+
schX?: number | undefined;
|
|
14171
|
+
schY?: number | undefined;
|
|
14172
|
+
schRotation?: number | undefined;
|
|
14173
|
+
footprint?: Footprint | undefined;
|
|
14174
|
+
pinNumber?: number | undefined;
|
|
14175
|
+
aliases?: string[] | undefined;
|
|
14086
14176
|
}, {
|
|
14087
|
-
|
|
14177
|
+
name: string;
|
|
14178
|
+
direction: "up" | "down" | "left" | "right";
|
|
14088
14179
|
pcbX?: string | number | undefined;
|
|
14089
14180
|
pcbY?: string | number | undefined;
|
|
14090
14181
|
pcbRotation?: string | number | undefined;
|
|
14091
14182
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
14092
14183
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
14093
14184
|
} | undefined;
|
|
14094
|
-
|
|
14095
|
-
|
|
14096
|
-
|
|
14097
|
-
|
|
14098
|
-
|
|
14099
|
-
|
|
14100
|
-
declare const fabricationNotePathProps: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
14101
|
-
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
14102
|
-
pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
14103
|
-
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
14104
|
-
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
14105
|
-
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
14106
|
-
}, "strip", z.ZodTypeAny, {
|
|
14107
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
14108
|
-
}, {
|
|
14109
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
14110
|
-
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
14111
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
14112
|
-
}>>;
|
|
14113
|
-
}, "pcbX" | "pcbY" | "pcbRotation">, {
|
|
14114
|
-
route: z.ZodArray<z.ZodObject<{
|
|
14115
|
-
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14116
|
-
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14117
|
-
via: z.ZodOptional<z.ZodBoolean>;
|
|
14118
|
-
to_layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
14119
|
-
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
14120
|
-
}, "strip", z.ZodTypeAny, {
|
|
14121
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
14122
|
-
}, {
|
|
14123
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
14124
|
-
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
14125
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
14126
|
-
}>>;
|
|
14127
|
-
trace_width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
14128
|
-
}, "strip", z.ZodTypeAny, {
|
|
14129
|
-
x: number;
|
|
14130
|
-
y: number;
|
|
14131
|
-
trace_width?: number | undefined;
|
|
14132
|
-
via?: boolean | undefined;
|
|
14133
|
-
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
14134
|
-
}, {
|
|
14135
|
-
x: string | number;
|
|
14136
|
-
y: string | number;
|
|
14137
|
-
trace_width?: string | number | undefined;
|
|
14138
|
-
via?: boolean | undefined;
|
|
14139
|
-
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
14140
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
14141
|
-
} | undefined;
|
|
14142
|
-
}>, "many">;
|
|
14143
|
-
strokeWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
14144
|
-
color: z.ZodOptional<z.ZodString>;
|
|
14145
|
-
}>, "strip", z.ZodTypeAny, {
|
|
14146
|
-
route: {
|
|
14147
|
-
x: number;
|
|
14148
|
-
y: number;
|
|
14149
|
-
trace_width?: number | undefined;
|
|
14150
|
-
via?: boolean | undefined;
|
|
14151
|
-
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
14152
|
-
}[];
|
|
14153
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
14154
|
-
color?: string | undefined;
|
|
14155
|
-
strokeWidth?: number | undefined;
|
|
14156
|
-
}, {
|
|
14157
|
-
route: {
|
|
14158
|
-
x: string | number;
|
|
14159
|
-
y: string | number;
|
|
14160
|
-
trace_width?: string | number | undefined;
|
|
14161
|
-
via?: boolean | undefined;
|
|
14162
|
-
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
14163
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
14164
|
-
} | undefined;
|
|
14165
|
-
}[];
|
|
14166
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
14167
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
14168
|
-
} | undefined;
|
|
14169
|
-
color?: string | undefined;
|
|
14170
|
-
strokeWidth?: string | number | undefined;
|
|
14185
|
+
schX?: string | number | undefined;
|
|
14186
|
+
schY?: string | number | undefined;
|
|
14187
|
+
schRotation?: string | number | undefined;
|
|
14188
|
+
footprint?: Footprint | undefined;
|
|
14189
|
+
pinNumber?: number | undefined;
|
|
14190
|
+
aliases?: string[] | undefined;
|
|
14171
14191
|
}>;
|
|
14172
|
-
type
|
|
14192
|
+
type PortProps = z.input<typeof portProps>;
|
|
14173
14193
|
|
|
14174
14194
|
export { type AutorouterConfig, type AutorouterProp, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BatteryProps, type BoardProps, type CadModelBase, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelStl, type CapacitorProps, type ChipProps, type CirclePlatedHoleProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CommonComponentProps, type CommonLayoutProps, type ComponentProps, type ConstrainedLayoutProps, type ConstraintProps, type CrystalProps, type DiodeProps, type Direction, type DirectionAlongEdge, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type FabricationNotePathProps, type FabricationNoteTextProps, type Footprint, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type GroupProps, type HoleProps, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredHoleProps, type InferredSmtPadProps, type InferredSolderPasteProps, type JumperProps, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetProps, type NetAliasProps, type NetProps, type NonSubcircuitGroupProps, type OvalPlatedHoleProps, type PartsEngine, type PcbKeepoutProps, type PcbLayoutProps, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillPlatedHoleProps, type PinHeaderProps, type PinLabels, type PinSideDefinition, type PinVariant, type PlatedHoleProps, type PortHints, type PortProps, type PotentiometerProps, type PowerSourceProps, type PushButtonProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type SchematicBoxProps, type SchematicLineProps, type SchematicPathProps, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicTextProps, type SilkscreenCircleProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SmtPadProps, type SolderPasteProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type TraceHintProps, type TraceProps, type TransistorProps, type ViaProps, autorouterConfig, autorouterProp, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, bugProps, cadModelBase, cadModelJscad, cadModelObj, cadModelProp, cadModelStl, capacitorPins, capacitorProps, chipProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, componentProps, constrainedLayoutProps, constraintProps, crystalPins, crystalProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, edit_component_location_event, edit_pcb_component_location_event, edit_schematic_component_location_event, edit_trace_hint_event, explicitPinSideDefinition, fabricationNotePathProps, fabricationNoteTextProps, footprintProp, footprintProps, groupProps, holeProps, inductorPins, inductorProps, jumperProps, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, netAliasProps, netProps, pcbKeepoutProps, pcbLayoutProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pinHeaderProps, pinLabelsProp, platedHoleProps, point3, portHints, portProps, portRef, potentiometerPins, potentiometerProps, powerSourceProps, pushButtonProps, rectSmtPadProps, rectSolderPasteProps, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, schematicBoxProps, schematicLineProps, schematicPathProps, schematicPinStyle, schematicPortArrangement, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, supplierProps, switchProps, traceHintProps, traceProps, transistorPins, transistorProps, viaProps };
|