@diaryx/wasm-node 1.1.0-dev.cc48ab8 → 1.1.0-dev.f174888
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/diaryx_wasm.d.ts +4 -4
- package/diaryx_wasm.js +1 -1
- package/diaryx_wasm_bg.wasm +0 -0
- package/diaryx_wasm_bg.wasm.d.ts +4 -4
- package/package.json +1 -1
package/diaryx_wasm.d.ts
CHANGED
|
@@ -466,6 +466,10 @@ export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembl
|
|
|
466
466
|
|
|
467
467
|
export interface InitOutput {
|
|
468
468
|
readonly memory: WebAssembly.Memory;
|
|
469
|
+
readonly __wbg_jsasyncfilesystem_free: (a: number, b: number) => void;
|
|
470
|
+
readonly jsasyncfilesystem_has_callback: (a: number, b: number, c: number) => number;
|
|
471
|
+
readonly jsasyncfilesystem_new: (a: any) => number;
|
|
472
|
+
readonly init: () => void;
|
|
469
473
|
readonly __wbg_diaryxbackend_free: (a: number, b: number) => void;
|
|
470
474
|
readonly __wbg_wasmsyncclient_free: (a: number, b: number) => void;
|
|
471
475
|
readonly diaryxbackend_create: (a: number, b: number) => any;
|
|
@@ -502,10 +506,6 @@ export interface InitOutput {
|
|
|
502
506
|
readonly wasmsyncclient_setSessionCode: (a: number, b: number, c: number) => void;
|
|
503
507
|
readonly wasmsyncclient_syncBodyFiles: (a: number, b: number, c: number) => any;
|
|
504
508
|
readonly wasmsyncclient_unfocusFiles: (a: number, b: number, c: number) => void;
|
|
505
|
-
readonly init: () => void;
|
|
506
|
-
readonly __wbg_jsasyncfilesystem_free: (a: number, b: number) => void;
|
|
507
|
-
readonly jsasyncfilesystem_has_callback: (a: number, b: number, c: number) => number;
|
|
508
|
-
readonly jsasyncfilesystem_new: (a: any) => number;
|
|
509
509
|
readonly now_timestamp: () => [number, number];
|
|
510
510
|
readonly today_formatted: (a: number, b: number) => [number, number];
|
|
511
511
|
readonly wasm_bindgen__closure__destroy__h358403ff5b31de35: (a: number, b: number) => void;
|
package/diaryx_wasm.js
CHANGED
|
@@ -1017,7 +1017,7 @@ function __wbg_get_imports() {
|
|
|
1017
1017
|
console.warn(arg0, arg1, arg2, arg3);
|
|
1018
1018
|
},
|
|
1019
1019
|
__wbindgen_cast_0000000000000001: function(arg0, arg1) {
|
|
1020
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
1020
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 627, function: Function { arguments: [Externref], shim_idx: 628, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
1021
1021
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h358403ff5b31de35, wasm_bindgen__convert__closures_____invoke__h4b881ac518a5291a);
|
|
1022
1022
|
return ret;
|
|
1023
1023
|
},
|
package/diaryx_wasm_bg.wasm
CHANGED
|
Binary file
|
package/diaryx_wasm_bg.wasm.d.ts
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
export const memory: WebAssembly.Memory;
|
|
4
|
+
export const __wbg_jsasyncfilesystem_free: (a: number, b: number) => void;
|
|
5
|
+
export const jsasyncfilesystem_has_callback: (a: number, b: number, c: number) => number;
|
|
6
|
+
export const jsasyncfilesystem_new: (a: any) => number;
|
|
7
|
+
export const init: () => void;
|
|
4
8
|
export const __wbg_diaryxbackend_free: (a: number, b: number) => void;
|
|
5
9
|
export const __wbg_wasmsyncclient_free: (a: number, b: number) => void;
|
|
6
10
|
export const diaryxbackend_create: (a: number, b: number) => any;
|
|
@@ -37,10 +41,6 @@ export const wasmsyncclient_queueLocalUpdate: (a: number, b: number, c: number,
|
|
|
37
41
|
export const wasmsyncclient_setSessionCode: (a: number, b: number, c: number) => void;
|
|
38
42
|
export const wasmsyncclient_syncBodyFiles: (a: number, b: number, c: number) => any;
|
|
39
43
|
export const wasmsyncclient_unfocusFiles: (a: number, b: number, c: number) => void;
|
|
40
|
-
export const init: () => void;
|
|
41
|
-
export const __wbg_jsasyncfilesystem_free: (a: number, b: number) => void;
|
|
42
|
-
export const jsasyncfilesystem_has_callback: (a: number, b: number, c: number) => number;
|
|
43
|
-
export const jsasyncfilesystem_new: (a: any) => number;
|
|
44
44
|
export const now_timestamp: () => [number, number];
|
|
45
45
|
export const today_formatted: (a: number, b: number) => [number, number];
|
|
46
46
|
export const wasm_bindgen__closure__destroy__h358403ff5b31de35: (a: number, b: number) => void;
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@diaryx/wasm-node",
|
|
3
3
|
"type": "module",
|
|
4
4
|
"description": "WebAssembly bindings for Diaryx core functionality",
|
|
5
|
-
"version": "1.1.0-dev.
|
|
5
|
+
"version": "1.1.0-dev.f174888",
|
|
6
6
|
"license": "SEE LICENSE IN ../../LICENSE.md",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|