brepjs 18.119.9 → 18.120.0

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/README.md CHANGED
@@ -163,4 +163,12 @@ brepjs.dev and the playground are hosted on [Vercel](https://vercel.com) through
163
163
 
164
164
  ## License
165
165
 
166
- [Apache-2.0](./LICENSE)
166
+ brepjs itself is [Apache-2.0](./LICENSE). The kernel you register carries its own license, and a shipped product must comply with both brepjs's license and the registered kernel's:
167
+
168
+ | Package | License | What it means for your product |
169
+ | ------------------------------ | ------------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
170
+ | `brepjs` (this package) | Apache-2.0 | Use freely, open or proprietary |
171
+ | `occt-wasm` kernel | LGPL-2.1-only (WASM output; tooling MIT OR Apache-2.0) | Proprietary use permitted under the LGPL's terms |
172
+ | `brepkit-wasm` kernel (3.0.0+) | AGPL-3.0-only or commercial | Open-source products use it freely under the AGPL; proprietary products need a [commercial license](https://github.com/andymai/brepkit/blob/main/COMMERCIAL-LICENSE.md) from Collective Context, LLC |
173
+
174
+ `brepkit-wasm` versions through 2.129.x were published under MIT OR Apache-2.0 and remain available under those terms.
@@ -2,7 +2,7 @@
2
2
  * Type-safe interface for the brepkit WASM kernel (`BrepKernel`).
3
3
  *
4
4
  * AUTO-GENERATED by `npm run sync:brepkit-types`.
5
- * Synced against `brepkit-wasm@2.129.8`.
5
+ * Synced against `brepkit-wasm@3.0.0`.
6
6
  *
7
7
  * Methods not yet referenced in the adapter layer are tagged `@unwired`.
8
8
  *
@@ -329,15 +329,15 @@ export interface BrepkitKernel {
329
329
  /** @unwired */
330
330
  toBrepJson(solid: number): string;
331
331
  transformFace(face: number, matrix: Float64Array | number[]): void;
332
- /** @future Not in brepkit-wasm 2.129.8. Referenced with feature detection in adapter. */
332
+ /** @future Not in brepkit-wasm 3.0.0. Referenced with feature detection in adapter. */
333
333
  chamferAsymmetric?(solid: number, edgeHandles: Uint32Array | number[], d1: number, d2: number): number;
334
- /** @future Not in brepkit-wasm 2.129.8. Referenced with feature detection in adapter. */
334
+ /** @future Not in brepkit-wasm 3.0.0. Referenced with feature detection in adapter. */
335
335
  compoundFuse?(solidIds: Uint32Array | number[]): number;
336
- /** @future Not in brepkit-wasm 2.129.8. Referenced with feature detection in adapter. */
336
+ /** @future Not in brepkit-wasm 3.0.0. Referenced with feature detection in adapter. */
337
337
  copyEdge?(edge: number): number;
338
- /** @future Not in brepkit-wasm 2.129.8. Referenced with feature detection in adapter. */
338
+ /** @future Not in brepkit-wasm 3.0.0. Referenced with feature detection in adapter. */
339
339
  transformEdge?(edge: number, matrix: Float64Array | number[]): void;
340
- /** @future Not in brepkit-wasm 2.129.8. Referenced with feature detection in adapter. */
340
+ /** @future Not in brepkit-wasm 3.0.0. Referenced with feature detection in adapter. */
341
341
  validateSolidDetails?(solid: number): string;
342
342
  /** Release the entire arena. */
343
343
  free(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "brepjs",
3
- "version": "18.119.9",
3
+ "version": "18.120.0",
4
4
  "description": "Web CAD library with pluggable geometry kernel",
5
5
  "keywords": [
6
6
  "cad",
@@ -265,7 +265,7 @@
265
265
  "@typescript/native-preview": "7.0.0-dev.20260707.2",
266
266
  "@vitest/coverage-v8": "4.1.10",
267
267
  "brepjs-opencascade": "*",
268
- "brepkit-wasm": "2.129.8",
268
+ "brepkit-wasm": "3.0.0",
269
269
  "eslint": "10.8.0",
270
270
  "fast-check": "4.9.0",
271
271
  "husky": "9.1.7",
@@ -288,7 +288,7 @@
288
288
  "peerDependencies": {
289
289
  "brepjs-manifold": "^0.1.0",
290
290
  "brepjs-opencascade": "^0.5.1 || ^0.6.0 || ^0.7.0 || ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^0.14.0 || ^0.15.0 || ^0.16.0",
291
- "brepkit-wasm": "^0.10.1 || ^1.0.0 || ^2.0.0",
291
+ "brepkit-wasm": "^0.10.1 || ^1.0.0 || ^2.0.0 || ^3.0.0",
292
292
  "occt-wasm": "^3.8.0"
293
293
  },
294
294
  "peerDependenciesMeta": {