@xuda.io/runtime-bundle 1.0.708 → 1.0.709
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 +2 -2
- package/js/xuda-runtime-bundle.min.js +1 -1
- package/js/xuda-runtime-slim.js +2 -2
- package/js/xuda-runtime-slim.min.es.js +2 -2
- package/js/xuda-runtime-slim.min.js +1 -1
- 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
package/js/xuda-runtime-slim.js
CHANGED
|
@@ -4948,7 +4948,7 @@ func.datasource.update = async function (SESSION_ID, datasource_changes, update_
|
|
|
4948
4948
|
for (const [key, val] of Object.entries(_ds.args.parameters_raw_obj)) {
|
|
4949
4949
|
if (fields_changed.includes(val)) {
|
|
4950
4950
|
let ret = await func.expression.get(SESSION_ID, '@' + val, _dsSession, 'parameters');
|
|
4951
|
-
_ds.
|
|
4951
|
+
_ds.in_parameters[val].value = ret.result;
|
|
4952
4952
|
}
|
|
4953
4953
|
}
|
|
4954
4954
|
}
|
|
@@ -12189,7 +12189,7 @@ const get_params_obj_new = async function (SESSION_ID, prog_id, nodeP, dsSession
|
|
|
12189
12189
|
// in parameter
|
|
12190
12190
|
let ret = await func.expression.get(SESSION_ID, nodeP.attributes[`xu-exp:${val.data.parameter}`], dsSession, 'parameters');
|
|
12191
12191
|
params_res[val.data.parameter] = ret.result;
|
|
12192
|
-
params_raw[val.data.parameter] = val.data.parameter;
|
|
12192
|
+
params_raw[val.data.parameter] = nodeP.attributes[`xu-exp:${val.data.parameter}`];
|
|
12193
12193
|
}
|
|
12194
12194
|
}
|
|
12195
12195
|
continue;
|
|
@@ -4949,7 +4949,7 @@ func.datasource.update = async function (SESSION_ID, datasource_changes, update_
|
|
|
4949
4949
|
for (const [key, val] of Object.entries(_ds.args.parameters_raw_obj)) {
|
|
4950
4950
|
if (fields_changed.includes(val)) {
|
|
4951
4951
|
let ret = await func.expression.get(SESSION_ID, '@' + val, _dsSession, 'parameters');
|
|
4952
|
-
_ds.
|
|
4952
|
+
_ds.in_parameters[val].value = ret.result;
|
|
4953
4953
|
}
|
|
4954
4954
|
}
|
|
4955
4955
|
}
|
|
@@ -9911,7 +9911,7 @@ const get_params_obj_new = async function (SESSION_ID, prog_id, nodeP, dsSession
|
|
|
9911
9911
|
// in parameter
|
|
9912
9912
|
let ret = await func.expression.get(SESSION_ID, nodeP.attributes[`xu-exp:${val.data.parameter}`], dsSession, 'parameters');
|
|
9913
9913
|
params_res[val.data.parameter] = ret.result;
|
|
9914
|
-
params_raw[val.data.parameter] = val.data.parameter;
|
|
9914
|
+
params_raw[val.data.parameter] = nodeP.attributes[`xu-exp:${val.data.parameter}`];
|
|
9915
9915
|
}
|
|
9916
9916
|
}
|
|
9917
9917
|
continue;
|