x-block-lib 0.5.20 → 0.5.21
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/dist/index.js +6 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -278,6 +278,10 @@ const wl = I.xml, Vl = [
|
|
|
278
278
|
type: "call_node_method_v1",
|
|
279
279
|
prefixInputs: ["OUTPUT"]
|
|
280
280
|
},
|
|
281
|
+
{
|
|
282
|
+
type: "comp_method_impl_v1",
|
|
283
|
+
prefixInputs: ["INPUT"]
|
|
284
|
+
},
|
|
281
285
|
{
|
|
282
286
|
type: "delete_data_v1",
|
|
283
287
|
inputs: ["SUCCESS", "MESSAGE"]
|
|
@@ -5828,7 +5832,7 @@ const Kd = {
|
|
|
5828
5832
|
const e = [];
|
|
5829
5833
|
for (let t = 0; t < this.method.outputs.length; t++) {
|
|
5830
5834
|
const { key: n, name: o } = this.method.outputs[t];
|
|
5831
|
-
e.push(["OUTPUT" + t,
|
|
5835
|
+
e.push(["OUTPUT" + t, n, o, !0]);
|
|
5832
5836
|
}
|
|
5833
5837
|
e.length > 0 && Pe(this, e);
|
|
5834
5838
|
},
|
|
@@ -6012,7 +6016,7 @@ const Hd = {
|
|
|
6012
6016
|
const e = [];
|
|
6013
6017
|
for (let t = 0; t < this.method.outputs.length; t++) {
|
|
6014
6018
|
const { key: n, name: o } = this.method.outputs[t];
|
|
6015
|
-
e.push(["OUTPUT" + t,
|
|
6019
|
+
e.push(["OUTPUT" + t, n, o, !0]);
|
|
6016
6020
|
}
|
|
6017
6021
|
e.length > 0 && Pe(this, e);
|
|
6018
6022
|
},
|