@bldrs-ai/conway 0.22.921 → 0.23.940

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 (37) hide show
  1. package/README.md +3 -0
  2. package/compiled/Dist/ConwayGeomWasmNode.js +1 -1
  3. package/compiled/Dist/ConwayGeomWasmNodeMT.js +1 -1
  4. package/compiled/Dist/ConwayGeomWasmWeb.js +1 -1
  5. package/compiled/Dist/ConwayGeomWasmWebMT.js +1 -1
  6. package/compiled/Dist/ConwayGeomWasmWebMT.wasm +0 -0
  7. package/compiled/dependencies/conway-geom/Dist/ConwayGeomWasmNode.js +1 -1
  8. package/compiled/dependencies/conway-geom/Dist/ConwayGeomWasmNodeMT.js +1 -1
  9. package/compiled/dependencies/conway-geom/Dist/ConwayGeomWasmWeb.js +1 -1
  10. package/compiled/dependencies/conway-geom/Dist/ConwayGeomWasmWebMT.js +1 -1
  11. package/compiled/dependencies/conway-geom/Dist/ConwayGeomWasmWebMT.wasm +0 -0
  12. package/compiled/dependencies/conway-geom/index.d.ts +1 -0
  13. package/compiled/dependencies/conway-geom/index.d.ts.map +1 -1
  14. package/compiled/dependencies/conway-geom/index.js +1 -0
  15. package/compiled/dependencies/conway-geom/interface/conway_geometry.d.ts +14 -0
  16. package/compiled/dependencies/conway-geom/interface/conway_geometry.d.ts.map +1 -1
  17. package/compiled/dependencies/conway-geom/interface/conway_geometry.js +18 -0
  18. package/compiled/dependencies/conway-geom/interface/parameters/params_get_block.d.ts +8 -0
  19. package/compiled/dependencies/conway-geom/interface/parameters/params_get_block.d.ts.map +1 -0
  20. package/compiled/dependencies/conway-geom/interface/parameters/params_get_block.js +1 -0
  21. package/compiled/dependencies/conway-geom/interface/parameters/params_get_rectangle_profile_curve.d.ts +3 -0
  22. package/compiled/dependencies/conway-geom/interface/parameters/params_get_rectangle_profile_curve.d.ts.map +1 -1
  23. package/compiled/dependencies/conway-geom/interface/parameters/params_get_revolved_area_solid.d.ts +14 -0
  24. package/compiled/dependencies/conway-geom/interface/parameters/params_get_revolved_area_solid.d.ts.map +1 -0
  25. package/compiled/dependencies/conway-geom/interface/parameters/params_get_revolved_area_solid.js +1 -0
  26. package/compiled/examples/browser-bundled.cjs +1 -1
  27. package/compiled/examples/cli-bundled.cjs +303 -99
  28. package/compiled/examples/validator-bundled.cjs +1 -1
  29. package/compiled/src/ifc/ifc_block_extraction.test.d.ts +2 -0
  30. package/compiled/src/ifc/ifc_block_extraction.test.d.ts.map +1 -0
  31. package/compiled/src/ifc/ifc_block_extraction.test.js +66 -0
  32. package/compiled/src/ifc/ifc_geometry_extraction.d.ts +19 -3
  33. package/compiled/src/ifc/ifc_geometry_extraction.d.ts.map +1 -1
  34. package/compiled/src/ifc/ifc_geometry_extraction.js +155 -13
  35. package/compiled/src/version/version.js +1 -1
  36. package/compiled/tsconfig.tsbuildinfo +1 -1
  37. package/package.json +10 -1
package/README.md CHANGED
@@ -8,6 +8,9 @@ Conway includes two major subcomponents:
8
8
 
9
9
  ## Getting Started
10
10
 
11
+ ### Codex Setup
12
+ 1. Ignore the below and refer to AGENTS.md.
13
+
11
14
  ### Windows Setup
12
15
  1. [Install MinGW-64](https://github.com/msys2/msys2-installer/releases/download/2022-06-03/msys2-x86_64-20220603.exe) and add ```g++.exe``` location to your PATH variable.
13
16