@goplasmatic/dataflow-wasm 2.0.14 → 2.1.0
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/dataflow_wasm.d.ts +2 -2
- package/dataflow_wasm.js +3 -3
- package/dataflow_wasm_bg.wasm +0 -0
- package/package.json +3 -3
package/dataflow_wasm.d.ts
CHANGED
|
@@ -129,9 +129,9 @@ export interface InitOutput {
|
|
|
129
129
|
readonly wasmengine_process_with_trace: (a: number, b: number, c: number) => any;
|
|
130
130
|
readonly wasmengine_workflow_count: (a: number) => number;
|
|
131
131
|
readonly wasmengine_workflow_ids: (a: number) => [number, number];
|
|
132
|
-
readonly
|
|
132
|
+
readonly wasm_bindgen__closure__destroy__h5e9c2074686ddf0b: (a: number, b: number) => void;
|
|
133
133
|
readonly wasm_bindgen__convert__closures_____invoke__h019b9b7d5351973d: (a: number, b: number, c: any, d: any) => void;
|
|
134
|
-
readonly
|
|
134
|
+
readonly wasm_bindgen__convert__closures_____invoke__ha76f69beeaee1c00: (a: number, b: number, c: any) => void;
|
|
135
135
|
readonly __wbindgen_exn_store: (a: number) => void;
|
|
136
136
|
readonly __externref_table_alloc: () => number;
|
|
137
137
|
readonly __wbindgen_externrefs: WebAssembly.Table;
|
package/dataflow_wasm.js
CHANGED
|
@@ -291,7 +291,7 @@ function __wbg_get_imports() {
|
|
|
291
291
|
},
|
|
292
292
|
__wbindgen_cast_0000000000000001: function(arg0, arg1) {
|
|
293
293
|
// Cast intrinsic for `Closure(Closure { dtor_idx: 49, function: Function { arguments: [Externref], shim_idx: 50, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
294
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
294
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h5e9c2074686ddf0b, wasm_bindgen__convert__closures_____invoke__ha76f69beeaee1c00);
|
|
295
295
|
return ret;
|
|
296
296
|
},
|
|
297
297
|
__wbindgen_cast_0000000000000002: function(arg0, arg1) {
|
|
@@ -315,8 +315,8 @@ function __wbg_get_imports() {
|
|
|
315
315
|
};
|
|
316
316
|
}
|
|
317
317
|
|
|
318
|
-
function
|
|
319
|
-
wasm.
|
|
318
|
+
function wasm_bindgen__convert__closures_____invoke__ha76f69beeaee1c00(arg0, arg1, arg2) {
|
|
319
|
+
wasm.wasm_bindgen__convert__closures_____invoke__ha76f69beeaee1c00(arg0, arg1, arg2);
|
|
320
320
|
}
|
|
321
321
|
|
|
322
322
|
function wasm_bindgen__convert__closures_____invoke__h019b9b7d5351973d(arg0, arg1, arg2, arg3) {
|
package/dataflow_wasm_bg.wasm
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
"name": "@goplasmatic/dataflow-wasm",
|
|
3
3
|
"type": "module",
|
|
4
4
|
"author": "Plasmatic Engineering <shankar@goplasmatic.io>",
|
|
5
|
-
"description": "WebAssembly bindings for dataflow-rs
|
|
6
|
-
"version": "2.0
|
|
5
|
+
"description": "WebAssembly bindings for the dataflow-rs rules engine",
|
|
6
|
+
"version": "2.1.0",
|
|
7
7
|
"license": "Apache-2.0",
|
|
8
8
|
"homepage": "https://github.com/GoPlasmatic/dataflow-rs",
|
|
9
9
|
"repository": {
|
|
@@ -25,5 +25,5 @@
|
|
|
25
25
|
"sideEffects": [
|
|
26
26
|
"./snippets/*"
|
|
27
27
|
],
|
|
28
|
-
"keywords": ["
|
|
28
|
+
"keywords": ["rules-engine", "ifttt", "wasm", "webassembly", "dataflow", "rust"]
|
|
29
29
|
}
|