@bldrs-ai/conway 1.418.1264 → 1.421.1270
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/examples/browser-bundled.cjs +34 -1
- package/compiled/examples/cli-bundled.cjs +34 -1
- package/compiled/examples/cli-step-bundled.cjs +34 -1
- package/compiled/examples/validator-bundled.cjs +34 -1
- package/compiled/src/compat/web-ifc/ifc_api.d.ts +12 -0
- package/compiled/src/compat/web-ifc/ifc_api.d.ts.map +1 -1
- package/compiled/src/compat/web-ifc/ifc_api.js +42 -1
- package/compiled/src/compat/web-ifc/ifc_api_proxy_ifc.d.ts +7 -6
- package/compiled/src/compat/web-ifc/ifc_api_proxy_ifc.d.ts.map +1 -1
- package/compiled/src/compat/web-ifc/ifc_api_proxy_ifc.js +11 -8
- package/compiled/src/compat/web-ifc/web_wasm_directory.test.d.ts +2 -0
- package/compiled/src/compat/web-ifc/web_wasm_directory.test.d.ts.map +1 -0
- package/compiled/src/compat/web-ifc/web_wasm_directory.test.js +22 -0
- package/compiled/src/demand/index.d.ts +23 -0
- package/compiled/src/demand/index.d.ts.map +1 -0
- package/compiled/src/demand/index.js +22 -0
- package/compiled/src/index.d.ts +2 -1
- package/compiled/src/index.d.ts.map +1 -1
- package/compiled/src/index.js +7 -1
- package/compiled/src/mem/index.d.ts +17 -0
- package/compiled/src/mem/index.d.ts.map +1 -0
- package/compiled/src/mem/index.js +16 -0
- package/compiled/src/namespace_surface.test.d.ts +2 -0
- package/compiled/src/namespace_surface.test.d.ts.map +1 -0
- package/compiled/src/namespace_surface.test.js +35 -0
- package/compiled/src/step/parsing/step_parser.d.ts +19 -0
- package/compiled/src/step/parsing/step_parser.d.ts.map +1 -1
- package/compiled/src/step/parsing/step_parser.js +33 -0
- package/compiled/src/step/parsing/streaming_index_builder.d.ts +36 -0
- package/compiled/src/step/parsing/streaming_index_builder.d.ts.map +1 -1
- package/compiled/src/step/parsing/streaming_index_builder.js +109 -0
- package/compiled/src/step/parsing/streaming_index_builder_async.test.d.ts +2 -0
- package/compiled/src/step/parsing/streaming_index_builder_async.test.d.ts.map +1 -0
- package/compiled/src/step/parsing/streaming_index_builder_async.test.js +97 -0
- package/compiled/src/stream/index.d.ts +26 -0
- package/compiled/src/stream/index.d.ts.map +1 -0
- package/compiled/src/stream/index.js +24 -0
- package/compiled/src/version/version.js +1 -1
- package/compiled/tsconfig.tsbuildinfo +1 -1
- package/package.json +16 -1
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "bldrs.ai datamodel",
|
|
4
4
|
"author": "bldrs.ai",
|
|
5
5
|
"license": "AGPL-3.0",
|
|
6
|
-
"version": "1.
|
|
6
|
+
"version": "1.421.1270",
|
|
7
7
|
"repository": "https://github.com/bldrs-ai/conway",
|
|
8
8
|
"files": [
|
|
9
9
|
"./compiled/**/*"
|
|
@@ -23,6 +23,21 @@
|
|
|
23
23
|
"import": "./compiled/src/index.js"
|
|
24
24
|
},
|
|
25
25
|
"./src/*": "./compiled/src/*.js",
|
|
26
|
+
"./stream": {
|
|
27
|
+
"types": "./compiled/src/stream/index.d.ts",
|
|
28
|
+
"require": "./compiled/src/stream/index.js",
|
|
29
|
+
"import": "./compiled/src/stream/index.js"
|
|
30
|
+
},
|
|
31
|
+
"./demand": {
|
|
32
|
+
"types": "./compiled/src/demand/index.d.ts",
|
|
33
|
+
"require": "./compiled/src/demand/index.js",
|
|
34
|
+
"import": "./compiled/src/demand/index.js"
|
|
35
|
+
},
|
|
36
|
+
"./mem": {
|
|
37
|
+
"types": "./compiled/src/mem/index.d.ts",
|
|
38
|
+
"require": "./compiled/src/mem/index.js",
|
|
39
|
+
"import": "./compiled/src/mem/index.js"
|
|
40
|
+
},
|
|
26
41
|
"./web-ifc": {
|
|
27
42
|
"types": "./compiled/src/compat/web-ifc/index.d.ts",
|
|
28
43
|
"require": "./compiled/src/compat/web-ifc/index.js",
|