geo-polygonize 0.13.0 → 0.14.1

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.
@@ -430,10 +430,17 @@ class WasmPolygonResult {
430
430
  /**
431
431
  * @returns {any}
432
432
  */
433
- provenance() {
433
+ get provenance() {
434
434
  const ret = wasm.wasmpolygonresult_provenance(this.__wbg_ptr);
435
435
  return ret;
436
436
  }
437
+ /**
438
+ * @returns {any}
439
+ */
440
+ get diagnostics() {
441
+ const ret = wasm.wasmpolygonresult_diagnostics(this.__wbg_ptr);
442
+ return ret;
443
+ }
437
444
  /**
438
445
  * @returns {number}
439
446
  */
@@ -910,6 +917,11 @@ function __wbg_get_imports() {
910
917
  const ret = getStringFromWasm0(arg0, arg1);
911
918
  return ret;
912
919
  };
920
+ imports.wbg.__wbindgen_cast_4625c577ab2ec9ee = function(arg0) {
921
+ // Cast intrinsic for `U64 -> Externref`.
922
+ const ret = BigInt.asUintN(64, arg0);
923
+ return ret;
924
+ };
913
925
  imports.wbg.__wbindgen_cast_d6cd19b81560fd6e = function(arg0) {
914
926
  // Cast intrinsic for `F64 -> Externref`.
915
927
  const ret = arg0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "geo-polygonize",
3
- "version": "0.13.0",
3
+ "version": "0.14.1",
4
4
  "description": "A native Rust port of the JTS/GEOS polygonization algorithm (Wasm)",
5
5
  "type": "module",
6
6
  "scripts": {