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