@tscircuit/footprinter 0.0.287 → 0.0.289
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 +22 -53
- package/dist/index.js +1111 -994
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1290,77 +1290,46 @@ declare const any_footprinter_def: z.ZodUnion<[z.ZodObject<{
|
|
|
1290
1290
|
pw?: string | undefined;
|
|
1291
1291
|
h?: string | undefined;
|
|
1292
1292
|
pl?: string | undefined;
|
|
1293
|
-
}>, z.
|
|
1293
|
+
}>, z.ZodObject<{
|
|
1294
1294
|
norefdes: z.ZodOptional<z.ZodBoolean>;
|
|
1295
1295
|
invert: z.ZodOptional<z.ZodBoolean>;
|
|
1296
1296
|
faceup: z.ZodOptional<z.ZodBoolean>;
|
|
1297
1297
|
nosilkscreen: z.ZodOptional<z.ZodBoolean>;
|
|
1298
1298
|
} & {
|
|
1299
1299
|
fn: z.ZodString;
|
|
1300
|
-
num_pins: z.ZodDefault<z.
|
|
1301
|
-
w: z.ZodDefault<z.
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
pl: z.ZodDefault<z.
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
silkscreen_stroke_width: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
1300
|
+
num_pins: z.ZodDefault<z.ZodLiteral<6>>;
|
|
1301
|
+
w: z.ZodDefault<z.ZodString>;
|
|
1302
|
+
h: z.ZodDefault<z.ZodString>;
|
|
1303
|
+
p: z.ZodDefault<z.ZodString>;
|
|
1304
|
+
pl: z.ZodDefault<z.ZodString>;
|
|
1305
|
+
pw: z.ZodDefault<z.ZodString>;
|
|
1306
|
+
string: z.ZodOptional<z.ZodString>;
|
|
1308
1307
|
}, "strip", z.ZodTypeAny, {
|
|
1309
1308
|
fn: string;
|
|
1310
|
-
num_pins:
|
|
1311
|
-
w:
|
|
1312
|
-
p:
|
|
1313
|
-
pw:
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
silkscreen_stroke_width: number;
|
|
1309
|
+
num_pins: 6;
|
|
1310
|
+
w: string;
|
|
1311
|
+
p: string;
|
|
1312
|
+
pw: string;
|
|
1313
|
+
h: string;
|
|
1314
|
+
pl: string;
|
|
1315
|
+
string?: string | undefined;
|
|
1318
1316
|
norefdes?: boolean | undefined;
|
|
1319
1317
|
invert?: boolean | undefined;
|
|
1320
1318
|
faceup?: boolean | undefined;
|
|
1321
1319
|
nosilkscreen?: boolean | undefined;
|
|
1322
1320
|
}, {
|
|
1323
1321
|
fn: string;
|
|
1322
|
+
string?: string | undefined;
|
|
1324
1323
|
norefdes?: boolean | undefined;
|
|
1325
1324
|
invert?: boolean | undefined;
|
|
1326
1325
|
faceup?: boolean | undefined;
|
|
1327
1326
|
nosilkscreen?: boolean | undefined;
|
|
1328
|
-
num_pins?:
|
|
1329
|
-
w?: string |
|
|
1330
|
-
p?: string |
|
|
1331
|
-
pw?: string |
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
pillpads?: boolean | undefined;
|
|
1335
|
-
silkscreen_stroke_width?: number | undefined;
|
|
1336
|
-
}>, NowDefined<{
|
|
1337
|
-
fn: string;
|
|
1338
|
-
num_pins: number;
|
|
1339
|
-
w: number;
|
|
1340
|
-
p: number;
|
|
1341
|
-
pw: number;
|
|
1342
|
-
pl: number;
|
|
1343
|
-
legsoutside: boolean;
|
|
1344
|
-
pillpads: boolean;
|
|
1345
|
-
silkscreen_stroke_width: number;
|
|
1346
|
-
norefdes?: boolean | undefined;
|
|
1347
|
-
invert?: boolean | undefined;
|
|
1348
|
-
faceup?: boolean | undefined;
|
|
1349
|
-
nosilkscreen?: boolean | undefined;
|
|
1350
|
-
}, "w" | "p" | "pw" | "pl" | "pillpads" | "silkscreen_stroke_width">, {
|
|
1351
|
-
fn: string;
|
|
1352
|
-
norefdes?: boolean | undefined;
|
|
1353
|
-
invert?: boolean | undefined;
|
|
1354
|
-
faceup?: boolean | undefined;
|
|
1355
|
-
nosilkscreen?: boolean | undefined;
|
|
1356
|
-
num_pins?: number | undefined;
|
|
1357
|
-
w?: string | number | undefined;
|
|
1358
|
-
p?: string | number | undefined;
|
|
1359
|
-
pw?: string | number | undefined;
|
|
1360
|
-
pl?: string | number | undefined;
|
|
1361
|
-
legsoutside?: boolean | undefined;
|
|
1362
|
-
pillpads?: boolean | undefined;
|
|
1363
|
-
silkscreen_stroke_width?: number | undefined;
|
|
1327
|
+
num_pins?: 6 | undefined;
|
|
1328
|
+
w?: string | undefined;
|
|
1329
|
+
p?: string | undefined;
|
|
1330
|
+
pw?: string | undefined;
|
|
1331
|
+
h?: string | undefined;
|
|
1332
|
+
pl?: string | undefined;
|
|
1364
1333
|
}>, z.ZodObject<{
|
|
1365
1334
|
norefdes: z.ZodOptional<z.ZodBoolean>;
|
|
1366
1335
|
invert: z.ZodOptional<z.ZodBoolean>;
|