@band-ai/band-sdk-core 0.0.0-dev.0 → 0.4.0-dev.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.
|
@@ -637,7 +637,7 @@ function __wbg_get_imports() {
|
|
|
637
637
|
};
|
|
638
638
|
return {
|
|
639
639
|
__proto__: null,
|
|
640
|
-
"./
|
|
640
|
+
"./band_sdk_core_bg.js": import0,
|
|
641
641
|
};
|
|
642
642
|
}
|
|
643
643
|
|
|
@@ -835,7 +835,7 @@ if (!('encodeInto' in cachedTextEncoder)) {
|
|
|
835
835
|
|
|
836
836
|
let WASM_VECTOR_LEN = 0;
|
|
837
837
|
|
|
838
|
-
const wasmPath = `${__dirname}/
|
|
838
|
+
const wasmPath = `${__dirname}/band_sdk_core_bg.wasm`;
|
|
839
839
|
const wasmBytes = require('fs').readFileSync(wasmPath);
|
|
840
840
|
const wasmModule = new WebAssembly.Module(wasmBytes);
|
|
841
841
|
let wasmInstance = new WebAssembly.Instance(wasmModule, __wbg_get_imports());
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@band-ai/band-sdk-core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0-dev.1",
|
|
4
4
|
"description": "Shared Band event-payload validation",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -8,16 +8,16 @@
|
|
|
8
8
|
"url": "https://github.com/band-ai/band-sdk-core"
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
11
|
-
"
|
|
12
|
-
"
|
|
11
|
+
"band_sdk_core.js",
|
|
12
|
+
"band_sdk_core_bg.wasm",
|
|
13
13
|
"index.d.ts"
|
|
14
14
|
],
|
|
15
|
-
"main": "./
|
|
15
|
+
"main": "./band_sdk_core.js",
|
|
16
16
|
"types": "./index.d.ts",
|
|
17
17
|
"exports": {
|
|
18
18
|
".": {
|
|
19
19
|
"types": "./index.d.ts",
|
|
20
|
-
"default": "./
|
|
20
|
+
"default": "./band_sdk_core.js"
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
23
|
}
|
package/bandcore_bg.wasm
DELETED
|
Binary file
|