partforge 0.85.0 → 0.85.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "partforge",
3
- "version": "0.85.0",
3
+ "version": "0.85.1",
4
4
  "description": "Turn a declarative part definition into a parametric-CAD web app (three.js + Manifold/Replicad). Requires a Vite-based consumer.",
5
5
  "type": "module",
6
6
  "license": "MIT",
package/types/kernel.d.ts CHANGED
@@ -323,7 +323,8 @@ export interface ExtrudeOptions {
323
323
  }
324
324
 
325
325
  export interface LoftRing {
326
- polygon?: PointsContour;
326
+ /** Points, a curve contour, or a single-region hole-free `Shape2D` outline. */
327
+ polygon?: Contour | Shape2D;
327
328
  sides?: number;
328
329
  radius?: number;
329
330
  z: number;