@bldrs-ai/conway 0.15.839 → 0.16.839
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/compiled/dependencies/conway-geom/Dist/ConwayGeomWasmNode.js +1 -1
- package/compiled/dependencies/conway-geom/Dist/ConwayGeomWasmNodeMT.js +1 -1
- package/compiled/dependencies/conway-geom/Dist/ConwayGeomWasmWeb.js +1 -1
- package/compiled/dependencies/conway-geom/Dist/ConwayGeomWasmWebMT.js +1 -1
- package/compiled/dependencies/conway-geom/Dist/ConwayGeomWasmWebMT.wasm +0 -0
- package/compiled/dependencies/conway-geom/index.d.ts +2 -0
- package/compiled/dependencies/conway-geom/index.d.ts.map +1 -1
- package/compiled/dependencies/conway-geom/index.js +2 -0
- package/compiled/dependencies/conway-geom/interface/conway_geometry.d.ts +13 -1
- package/compiled/dependencies/conway-geom/interface/conway_geometry.d.ts.map +1 -1
- package/compiled/dependencies/conway-geom/interface/conway_geometry.js +16 -0
- package/compiled/dependencies/conway-geom/interface/parameters/flattened_points.d.ts +6 -0
- package/compiled/dependencies/conway-geom/interface/parameters/flattened_points.d.ts.map +1 -0
- package/compiled/dependencies/conway-geom/interface/parameters/flattened_points.js +1 -0
- package/compiled/dependencies/conway-geom/interface/parameters/params_add_face_to_geometry_simple.d.ts +10 -0
- package/compiled/dependencies/conway-geom/interface/parameters/params_add_face_to_geometry_simple.d.ts.map +1 -0
- package/compiled/dependencies/conway-geom/interface/parameters/params_add_face_to_geometry_simple.js +1 -0
- package/compiled/dependencies/conway-geom/interface/parameters/params_get_ifc_indexed_poly_curve.d.ts +6 -0
- package/compiled/dependencies/conway-geom/interface/parameters/params_get_ifc_indexed_poly_curve.d.ts.map +1 -1
- package/compiled/src/ifc/ifc_command_line_main.js +9 -1
- package/compiled/src/ifc/ifc_geometry_extraction.d.ts +22 -1
- package/compiled/src/ifc/ifc_geometry_extraction.d.ts.map +1 -1
- package/compiled/src/ifc/ifc_geometry_extraction.js +138 -58
- package/compiled/src/ifc/ifc_step_model.d.ts +0 -1
- package/compiled/src/ifc/ifc_step_model.d.ts.map +1 -1
- package/compiled/src/ifc/ifc_step_model.js +0 -1
- package/compiled/src/ifc/ifc_step_parser.d.ts +0 -1
- package/compiled/src/ifc/ifc_step_parser.d.ts.map +1 -1
- package/compiled/src/ifc/ifc_step_parser.js +0 -1
- package/compiled/src/version/version.js +1 -1
- package/compiled/tsconfig.tsbuildinfo +1 -1
- package/package.json +44 -49
- package/compiled/examples/browser-bundled.js +0 -69044
- package/compiled/examples/browser.d.ts +0 -3
- package/compiled/examples/browser.d.ts.map +0 -1
- package/compiled/examples/browser.js +0 -393
- package/compiled/examples/validator-bundled.js +0 -69057
- package/compiled/examples/validator.d.ts +0 -3
- package/compiled/examples/validator.d.ts.map +0 -1
- package/compiled/examples/validator.js +0 -378
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ifc_step_parser.d.ts","sourceRoot":"","sources":["../../../src/ifc/ifc_step_parser.ts"],"names":[],"mappings":"AAAA,OAAO,aAAa,MAAM,2BAA2B,CAAA;AACrD,OAAO,UAAU,EAAE,EAAC,WAAW,EAAC,MAAM,6BAA6B,CAAA;AACnE,OAAO,cAAc,MAAM,iCAAiC,CAAA;AAE5D,OAAO,YAAY,MAAM,kBAAkB,CAAA;AAE3C;;GAEG;AACH,MAAM,CAAC,OAAO,OAAO,aAAc,SAAQ,UAAU,CAAE,cAAc,CAAE;IACrE;;OAEG;;IAKH;;;;;OAKG;IACH,gBAAuB,QAAQ,gBAAsB;IAErD
|
|
1
|
+
{"version":3,"file":"ifc_step_parser.d.ts","sourceRoot":"","sources":["../../../src/ifc/ifc_step_parser.ts"],"names":[],"mappings":"AAAA,OAAO,aAAa,MAAM,2BAA2B,CAAA;AACrD,OAAO,UAAU,EAAE,EAAC,WAAW,EAAC,MAAM,6BAA6B,CAAA;AACnE,OAAO,cAAc,MAAM,iCAAiC,CAAA;AAE5D,OAAO,YAAY,MAAM,kBAAkB,CAAA;AAE3C;;GAEG;AACH,MAAM,CAAC,OAAO,OAAO,aAAc,SAAQ,UAAU,CAAE,cAAc,CAAE;IACrE;;OAEG;;IAKH;;;;;OAKG;IACH,gBAAuB,QAAQ,gBAAsB;IAErD;;;;;;OAMG;IACI,gBAAgB,CACnB,KAAK,EAAE,aAAa,GAAI,CAAC,WAAW,EAAE,YAAY,GAAG,SAAS,CAAC;CAKpE"}
|
|
@@ -14,7 +14,6 @@ export default class IfcStepParser extends StepParser {
|
|
|
14
14
|
/**
|
|
15
15
|
* Parse data to the model
|
|
16
16
|
*
|
|
17
|
-
* @param wasmModule A conway-geom wasm module environnment for this.
|
|
18
17
|
* @param input The parsing buffer, set to user data, to read.
|
|
19
18
|
* @return {[ParseResult, IfcStepModel | undefined]} The parse result as well as the model,
|
|
20
19
|
* if it can be extracted.
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const versionString = 'Conway Web-Ifc Shim v0.
|
|
1
|
+
const versionString = 'Conway Web-Ifc Shim v0.16.839';
|
|
2
2
|
export { versionString };
|