@goplasmatic/dataflow-wasm 2.0.7 → 2.0.14

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.
@@ -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 wasm_bindgen__closure__destroy__h6c21e3ac8818b8da: (a: number, b: number) => void;
133
- readonly wasm_bindgen__convert__closures_____invoke__h6a4d7bdc6e47fe09: (a: number, b: number, c: any, d: any) => void;
134
- readonly wasm_bindgen__convert__closures_____invoke__ha914c30c59f13cef: (a: number, b: number, c: any) => void;
132
+ readonly wasm_bindgen__closure__destroy__h986238a7f20e7074: (a: number, b: number) => void;
133
+ readonly wasm_bindgen__convert__closures_____invoke__h019b9b7d5351973d: (a: number, b: number, c: any, d: any) => void;
134
+ readonly wasm_bindgen__convert__closures_____invoke__hd0a577b47a103e40: (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
@@ -236,7 +236,7 @@ function __wbg_get_imports() {
236
236
  const a = state0.a;
237
237
  state0.a = 0;
238
238
  try {
239
- return wasm_bindgen__convert__closures_____invoke__h6a4d7bdc6e47fe09(a, state0.b, arg0, arg1);
239
+ return wasm_bindgen__convert__closures_____invoke__h019b9b7d5351973d(a, state0.b, arg0, arg1);
240
240
  } finally {
241
241
  state0.a = a;
242
242
  }
@@ -290,8 +290,8 @@ function __wbg_get_imports() {
290
290
  return ret;
291
291
  },
292
292
  __wbindgen_cast_0000000000000001: function(arg0, arg1) {
293
- // Cast intrinsic for `Closure(Closure { dtor_idx: 49, function: Function { arguments: [Externref], shim_idx: 55, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
294
- const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h6c21e3ac8818b8da, wasm_bindgen__convert__closures_____invoke__ha914c30c59f13cef);
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.wasm_bindgen__closure__destroy__h986238a7f20e7074, wasm_bindgen__convert__closures_____invoke__hd0a577b47a103e40);
295
295
  return ret;
296
296
  },
297
297
  __wbindgen_cast_0000000000000002: function(arg0, arg1) {
@@ -315,12 +315,12 @@ function __wbg_get_imports() {
315
315
  };
316
316
  }
317
317
 
318
- function wasm_bindgen__convert__closures_____invoke__ha914c30c59f13cef(arg0, arg1, arg2) {
319
- wasm.wasm_bindgen__convert__closures_____invoke__ha914c30c59f13cef(arg0, arg1, arg2);
318
+ function wasm_bindgen__convert__closures_____invoke__hd0a577b47a103e40(arg0, arg1, arg2) {
319
+ wasm.wasm_bindgen__convert__closures_____invoke__hd0a577b47a103e40(arg0, arg1, arg2);
320
320
  }
321
321
 
322
- function wasm_bindgen__convert__closures_____invoke__h6a4d7bdc6e47fe09(arg0, arg1, arg2, arg3) {
323
- wasm.wasm_bindgen__convert__closures_____invoke__h6a4d7bdc6e47fe09(arg0, arg1, arg2, arg3);
322
+ function wasm_bindgen__convert__closures_____invoke__h019b9b7d5351973d(arg0, arg1, arg2, arg3) {
323
+ wasm.wasm_bindgen__convert__closures_____invoke__h019b9b7d5351973d(arg0, arg1, arg2, arg3);
324
324
  }
325
325
 
326
326
  const WasmEngineFinalization = (typeof FinalizationRegistry === 'undefined')
Binary file
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "type": "module",
4
4
  "author": "Plasmatic Engineering <shankar@goplasmatic.io>",
5
5
  "description": "WebAssembly bindings for dataflow-rs workflow engine",
6
- "version": "2.0.7",
6
+ "version": "2.0.14",
7
7
  "license": "Apache-2.0",
8
8
  "homepage": "https://github.com/GoPlasmatic/dataflow-rs",
9
9
  "repository": {
@@ -25,12 +25,5 @@
25
25
  "sideEffects": [
26
26
  "./snippets/*"
27
27
  ],
28
- "keywords": [
29
- "workflow",
30
- "engine",
31
- "wasm",
32
- "webassembly",
33
- "dataflow",
34
- "rust"
35
- ]
28
+ "keywords": ["workflow", "engine", "wasm", "webassembly", "dataflow", "rust"]
36
29
  }