@tscircuit/footprinter 0.0.259 → 0.0.260
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 +29 -1
- package/dist/index.js +892 -810
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -981,6 +981,33 @@ declare const any_footprinter_def: z.ZodUnion<[z.ZodObject<{
|
|
|
981
981
|
pl?: string | number | undefined;
|
|
982
982
|
legsoutside?: boolean | undefined;
|
|
983
983
|
pillpads?: boolean | undefined;
|
|
984
|
+
}>, z.ZodObject<{
|
|
985
|
+
fn: z.ZodString;
|
|
986
|
+
num_pins: z.ZodDefault<z.ZodLiteral<6>>;
|
|
987
|
+
w: z.ZodDefault<z.ZodString>;
|
|
988
|
+
h: z.ZodDefault<z.ZodString>;
|
|
989
|
+
p: z.ZodDefault<z.ZodString>;
|
|
990
|
+
pl: z.ZodDefault<z.ZodString>;
|
|
991
|
+
pw: z.ZodDefault<z.ZodString>;
|
|
992
|
+
string: z.ZodOptional<z.ZodString>;
|
|
993
|
+
}, "strip", z.ZodTypeAny, {
|
|
994
|
+
fn: string;
|
|
995
|
+
num_pins: 6;
|
|
996
|
+
w: string;
|
|
997
|
+
p: string;
|
|
998
|
+
pw: string;
|
|
999
|
+
h: string;
|
|
1000
|
+
pl: string;
|
|
1001
|
+
string?: string | undefined;
|
|
1002
|
+
}, {
|
|
1003
|
+
fn: string;
|
|
1004
|
+
string?: string | undefined;
|
|
1005
|
+
num_pins?: 6 | undefined;
|
|
1006
|
+
w?: string | undefined;
|
|
1007
|
+
p?: string | undefined;
|
|
1008
|
+
pw?: string | undefined;
|
|
1009
|
+
h?: string | undefined;
|
|
1010
|
+
pl?: string | undefined;
|
|
984
1011
|
}>, z.ZodEffects<z.ZodObject<{
|
|
985
1012
|
fn: z.ZodString;
|
|
986
1013
|
num_pins: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -1308,7 +1335,8 @@ type Footprinter = {
|
|
|
1308
1335
|
axial: () => FootprinterParamsBuilder<"p" | "id" | "od">;
|
|
1309
1336
|
hc49: () => FootprinterParamsBuilder<"p" | "id" | "od" | "w" | "h">;
|
|
1310
1337
|
to220: () => FootprinterParamsBuilder<"w" | "h" | "p" | "id" | "od">;
|
|
1311
|
-
sot363: () => FootprinterParamsBuilder<"w" | "p" | "pl" | "pw">;
|
|
1338
|
+
sot363: () => FootprinterParamsBuilder<"w" | "h" | "p" | "pl" | "pw">;
|
|
1339
|
+
sot886: () => FootprinterParamsBuilder<"w" | "h" | "p" | "pl" | "pw">;
|
|
1312
1340
|
sot457: () => FootprinterParamsBuilder<"w" | "p" | "h" | "pl" | "pw" | "wave" | "reflow" | "pillr" | "pillh" | "pillw">;
|
|
1313
1341
|
sot563: () => FootprinterParamsBuilder<"w" | "p" | "pl" | "pw">;
|
|
1314
1342
|
sot723: () => FootprinterParamsBuilder<"w" | "h" | "pl" | "pw" | "p">;
|