@ifc-lite/clash 1.1.2 → 1.1.3
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.
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
import type { ClashElement, ClashResult, ClashRule, ClashSettings } from '../types.js';
|
|
2
|
-
export type { ClashKernel, NarrowRecord, RuleDetection } from './kernel.js';
|
|
3
|
-
export { runClash } from './orchestrator.js';
|
|
4
|
-
export { TsKernel } from './ts-kernel.js';
|
|
5
2
|
/** A clash engine: a pure async function of (elements, rules, settings). */
|
|
6
3
|
export interface ClashEngine {
|
|
7
4
|
run(elements: ClashElement[], rules: ClashRule[], settings?: ClashSettings): Promise<ClashResult>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/engine-ts/index.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,YAAY,EAAE,WAAW,EAAE,SAAS,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAIvF,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/engine-ts/index.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,YAAY,EAAE,WAAW,EAAE,SAAS,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAIvF,4EAA4E;AAC5E,MAAM,WAAW,WAAW;IAC1B,GAAG,CAAC,QAAQ,EAAE,YAAY,EAAE,EAAE,KAAK,EAAE,SAAS,EAAE,EAAE,QAAQ,CAAC,EAAE,aAAa,GAAG,OAAO,CAAC,WAAW,CAAC,CAAC;CACnG;AAED;;;GAGG;AACH,qBAAa,aAAc,YAAW,WAAW;IAC/C,GAAG,CACD,QAAQ,EAAE,YAAY,EAAE,EACxB,KAAK,EAAE,SAAS,EAAE,EAClB,QAAQ,GAAE,aAAkB,GAC3B,OAAO,CAAC,WAAW,CAAC;CAGxB"}
|
package/dist/engine-ts/index.js
CHANGED
|
@@ -3,8 +3,6 @@
|
|
|
3
3
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
4
4
|
import { runClash } from './orchestrator.js';
|
|
5
5
|
import { TsKernel } from './ts-kernel.js';
|
|
6
|
-
export { runClash } from './orchestrator.js';
|
|
7
|
-
export { TsKernel } from './ts-kernel.js';
|
|
8
6
|
/**
|
|
9
7
|
* Reference engine: the shared orchestrator driving the pure-TypeScript geometry
|
|
10
8
|
* kernel (spatial BVH broad phase + exact triangle narrow phase).
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/engine-ts/index.ts"],"names":[],"mappings":"AAAA;;+DAE+D;AAG/D,OAAO,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAC7C,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/engine-ts/index.ts"],"names":[],"mappings":"AAAA;;+DAE+D;AAG/D,OAAO,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAC7C,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAO1C;;;GAGG;AACH,MAAM,OAAO,aAAa;IACxB,GAAG,CACD,QAAwB,EACxB,KAAkB,EAClB,WAA0B,EAAE;QAE5B,OAAO,QAAQ,CAAC,QAAQ,EAAE,KAAK,EAAE,QAAQ,EAAE,IAAI,QAAQ,EAAE,CAAC,CAAC;IAC7D,CAAC;CACF"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ifc-lite/clash",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.3",
|
|
4
4
|
"description": "Clash detection for IFC-Lite — representation-agnostic core engine + source adapters",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -30,12 +30,12 @@
|
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@ifc-lite/spatial": "^1.14.8",
|
|
33
|
-
"@ifc-lite/geometry": "^2.
|
|
34
|
-
"@ifc-lite/parser": "^3.
|
|
33
|
+
"@ifc-lite/geometry": "^2.6.1",
|
|
34
|
+
"@ifc-lite/parser": "^3.2.0",
|
|
35
35
|
"@ifc-lite/query": "^1.14.10",
|
|
36
36
|
"@ifc-lite/bcf": "^1.15.6",
|
|
37
|
-
"@ifc-lite/ifcx": "^2.1.
|
|
38
|
-
"@ifc-lite/wasm": "^2.
|
|
37
|
+
"@ifc-lite/ifcx": "^2.1.5",
|
|
38
|
+
"@ifc-lite/wasm": "^2.7.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"typescript": "^6.0.3",
|