@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.
Files changed (40) hide show
  1. package/compiled/examples/browser-bundled.cjs +34 -1
  2. package/compiled/examples/cli-bundled.cjs +34 -1
  3. package/compiled/examples/cli-step-bundled.cjs +34 -1
  4. package/compiled/examples/validator-bundled.cjs +34 -1
  5. package/compiled/src/compat/web-ifc/ifc_api.d.ts +12 -0
  6. package/compiled/src/compat/web-ifc/ifc_api.d.ts.map +1 -1
  7. package/compiled/src/compat/web-ifc/ifc_api.js +42 -1
  8. package/compiled/src/compat/web-ifc/ifc_api_proxy_ifc.d.ts +7 -6
  9. package/compiled/src/compat/web-ifc/ifc_api_proxy_ifc.d.ts.map +1 -1
  10. package/compiled/src/compat/web-ifc/ifc_api_proxy_ifc.js +11 -8
  11. package/compiled/src/compat/web-ifc/web_wasm_directory.test.d.ts +2 -0
  12. package/compiled/src/compat/web-ifc/web_wasm_directory.test.d.ts.map +1 -0
  13. package/compiled/src/compat/web-ifc/web_wasm_directory.test.js +22 -0
  14. package/compiled/src/demand/index.d.ts +23 -0
  15. package/compiled/src/demand/index.d.ts.map +1 -0
  16. package/compiled/src/demand/index.js +22 -0
  17. package/compiled/src/index.d.ts +2 -1
  18. package/compiled/src/index.d.ts.map +1 -1
  19. package/compiled/src/index.js +7 -1
  20. package/compiled/src/mem/index.d.ts +17 -0
  21. package/compiled/src/mem/index.d.ts.map +1 -0
  22. package/compiled/src/mem/index.js +16 -0
  23. package/compiled/src/namespace_surface.test.d.ts +2 -0
  24. package/compiled/src/namespace_surface.test.d.ts.map +1 -0
  25. package/compiled/src/namespace_surface.test.js +35 -0
  26. package/compiled/src/step/parsing/step_parser.d.ts +19 -0
  27. package/compiled/src/step/parsing/step_parser.d.ts.map +1 -1
  28. package/compiled/src/step/parsing/step_parser.js +33 -0
  29. package/compiled/src/step/parsing/streaming_index_builder.d.ts +36 -0
  30. package/compiled/src/step/parsing/streaming_index_builder.d.ts.map +1 -1
  31. package/compiled/src/step/parsing/streaming_index_builder.js +109 -0
  32. package/compiled/src/step/parsing/streaming_index_builder_async.test.d.ts +2 -0
  33. package/compiled/src/step/parsing/streaming_index_builder_async.test.d.ts.map +1 -0
  34. package/compiled/src/step/parsing/streaming_index_builder_async.test.js +97 -0
  35. package/compiled/src/stream/index.d.ts +26 -0
  36. package/compiled/src/stream/index.d.ts.map +1 -0
  37. package/compiled/src/stream/index.js +24 -0
  38. package/compiled/src/version/version.js +1 -1
  39. package/compiled/tsconfig.tsbuildinfo +1 -1
  40. 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.418.1264",
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",