@xuda.io/runtime-bundle 1.0.720 → 1.0.721
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/js/xuda-runtime-bundle.js +47 -119
- package/js/xuda-runtime-bundle.min.js +2 -2
- package/js/xuda-runtime-slim.js +47 -119
- package/js/xuda-runtime-slim.min.es.js +47 -119
- package/js/xuda-runtime-slim.min.js +2 -2
- package/js/xuda-server-bundle.min.mjs +1 -1
- package/js/xuda-server-bundle.mjs +1 -1
- package/js/xuda-worker-bundle.js +1 -1
- package/js/xuda-worker-bundle.min.js +1 -1
- package/package.json +1 -1
|
@@ -6659,7 +6659,7 @@ func.events.execute = async function (
|
|
|
6659
6659
|
var params_obj = {};
|
|
6660
6660
|
if (_prog?.properties?.progParams) {
|
|
6661
6661
|
for await (const [key, val] of Object.entries(_prog.properties.progParams)) {
|
|
6662
|
-
if (val.data.dir
|
|
6662
|
+
if (!val.data.dir === 'in') continue;
|
|
6663
6663
|
if (typeof args.parameters_obj_inP?.[val.data.parameter] !== 'undefined') {
|
|
6664
6664
|
if (args.parameters_obj_inP?.[val.data.parameter].fx) {
|
|
6665
6665
|
let ret = await func.expression.get(SESSION_ID, args.parameters_obj_inP?.[val.data.parameter].fx, dsSession, 'parameters');
|
package/js/xuda-worker-bundle.js
CHANGED
|
@@ -6659,7 +6659,7 @@ func.events.execute = async function (
|
|
|
6659
6659
|
var params_obj = {};
|
|
6660
6660
|
if (_prog?.properties?.progParams) {
|
|
6661
6661
|
for await (const [key, val] of Object.entries(_prog.properties.progParams)) {
|
|
6662
|
-
if (val.data.dir
|
|
6662
|
+
if (!val.data.dir === 'in') continue;
|
|
6663
6663
|
if (typeof args.parameters_obj_inP?.[val.data.parameter] !== 'undefined') {
|
|
6664
6664
|
if (args.parameters_obj_inP?.[val.data.parameter].fx) {
|
|
6665
6665
|
let ret = await func.expression.get(SESSION_ID, args.parameters_obj_inP?.[val.data.parameter].fx, dsSession, 'parameters');
|