@thi.ng/wasm-api 1.4.59 → 1.4.60

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/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2024-03-07T20:40:47Z
3
+ - **Last updated**: 2024-03-13T14:04:31Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
package/bridge.d.ts CHANGED
@@ -4,6 +4,7 @@ import type { ILogger } from "@thi.ng/logger";
4
4
  import { type BigIntArray, type BridgeEventType, type CoreAPI, type IWasmAPI, type IWasmMemoryAccess, type MemorySlice, type WasmExports } from "./api.js";
5
5
  export declare const Panic: {
6
6
  new (msg?: string | undefined): {
7
+ origMessage: string;
7
8
  name: string;
8
9
  message: string;
9
10
  stack?: string | undefined;
@@ -15,6 +16,7 @@ export declare const Panic: {
15
16
  };
16
17
  export declare const OutOfMemoryError: {
17
18
  new (msg?: string | undefined): {
19
+ origMessage: string;
18
20
  name: string;
19
21
  message: string;
20
22
  stack?: string | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/wasm-api",
3
- "version": "1.4.59",
3
+ "version": "1.4.60",
4
4
  "description": "Generic, modular, extensible API bridge and infrastructure for hybrid JS & WebAssembly projects",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -37,20 +37,20 @@
37
37
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
38
38
  },
39
39
  "dependencies": {
40
- "@thi.ng/api": "^8.9.29",
41
- "@thi.ng/arrays": "^2.8.7",
42
- "@thi.ng/checks": "^3.5.2",
43
- "@thi.ng/errors": "^2.4.20",
44
- "@thi.ng/hex": "^2.3.39",
45
- "@thi.ng/idgen": "^2.2.33",
46
- "@thi.ng/logger": "^3.0.5"
40
+ "@thi.ng/api": "^8.9.30",
41
+ "@thi.ng/arrays": "^2.8.8",
42
+ "@thi.ng/checks": "^3.5.3",
43
+ "@thi.ng/errors": "^2.5.0",
44
+ "@thi.ng/hex": "^2.3.40",
45
+ "@thi.ng/idgen": "^2.2.34",
46
+ "@thi.ng/logger": "^3.0.6"
47
47
  },
48
48
  "devDependencies": {
49
- "@microsoft/api-extractor": "^7.40.1",
50
- "esbuild": "^0.20.0",
49
+ "@microsoft/api-extractor": "^7.42.3",
50
+ "esbuild": "^0.20.1",
51
51
  "rimraf": "^5.0.5",
52
- "typedoc": "^0.25.7",
53
- "typescript": "^5.3.3"
52
+ "typedoc": "^0.25.12",
53
+ "typescript": "^5.4.2"
54
54
  },
55
55
  "keywords": [
56
56
  "allocator",
@@ -116,5 +116,5 @@
116
116
  "status": "alpha",
117
117
  "year": 2022
118
118
  },
119
- "gitHead": "69100942474942f7446ac645d59d91e7dfc352f9\n"
119
+ "gitHead": "7f3fcbd6c0462b0ce45afa141fe163d1f297fd51\n"
120
120
  }