x-block-lib 0.4.32 → 0.4.34

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.
Files changed (2) hide show
  1. package/dist/index.js +5 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -266,6 +266,10 @@ const ma = v.xml, va = [
266
266
  type: "data_update_v1",
267
267
  inputs: ["SUCCESS", "MESSAGE", "DATA"]
268
268
  },
269
+ {
270
+ type: "func_entry_v1",
271
+ prefixInputs: ["INPUT"]
272
+ },
269
273
  {
270
274
  type: "procedure_def_v1",
271
275
  prefixInputs: ["ARG"]
@@ -1243,7 +1247,7 @@ const Bu = {
1243
1247
  const e = [];
1244
1248
  for (let t = 0; t < this.func.inputs.length; t++) {
1245
1249
  const n = this.func.inputs[t];
1246
- e.push(["INPUT" + t, "", n.name]);
1250
+ e.push(["INPUT" + t, n.name, ""]);
1247
1251
  }
1248
1252
  ga(this, e);
1249
1253
  },
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "x-block-lib",
3
3
  "private": false,
4
- "version": "0.4.32",
4
+ "version": "0.4.34",
5
5
  "type": "module",
6
6
  "module": "dist/index.js",
7
7
  "types": "dist/index.d.ts",