@tscircuit/footprinter 0.0.267 → 0.0.268
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 +105 -0
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -105,7 +105,8 @@ var silkscreenRef = (x, y, font_size) => {
|
|
|
105
105
|
import { z } from "zod";
|
|
106
106
|
var base_def = z.object({
|
|
107
107
|
norefdes: z.boolean().optional().describe("disable reference designator label"),
|
|
108
|
-
invert: z.boolean().optional().describe("hint to invert the orientation of the 3D model")
|
|
108
|
+
invert: z.boolean().optional().describe("hint to invert the orientation of the 3D model"),
|
|
109
|
+
faceup: z.boolean().optional().describe("The male pin header should face upwards, out of the top layer")
|
|
109
110
|
});
|
|
110
111
|
|
|
111
112
|
// src/fn/dip.ts
|