@xuda.io/runtime-bundle 1.0.960 → 1.0.962

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.
@@ -3031,7 +3031,7 @@ func.datasource.del = function (SESSION_ID, dsP) {
3031
3031
  perform_delete();
3032
3032
  };
3033
3033
 
3034
- func.datasource.update = async function (SESSION_ID, datasource_changes, update_local_scope_only, avoid_xu_for_refresh) {
3034
+ func.datasource.update = async function (SESSION_ID, datasource_changes, update_local_scope_only, avoid_xu_for_refresh, trigger) {
3035
3035
  return new Promise(async (resolve, reject) => {
3036
3036
  var _session = SESSION_OBJ[SESSION_ID];
3037
3037
 
@@ -3240,7 +3240,7 @@ func.datasource.update = async function (SESSION_ID, datasource_changes, update_
3240
3240
  return Math.min(...arr.map(Number));
3241
3241
  }
3242
3242
 
3243
- await func.UI.screen.refresh_xu_attributes(SESSION_ID, _.cloneDeep(fields_changed), null, null, findMin(datasource_changed), avoid_xu_for_refresh);
3243
+ await func.UI.screen.refresh_xu_attributes(SESSION_ID, _.cloneDeep(fields_changed), null, null, findMin(datasource_changed), avoid_xu_for_refresh, trigger);
3244
3244
  // await removed from the below function cause to dead lock Mar 3 25
3245
3245
  await func.UI.screen.refresh_screen(
3246
3246
  SESSION_ID,
@@ -7027,7 +7027,7 @@ func.events.execute = async function (
7027
7027
  }
7028
7028
  }
7029
7029
 
7030
- await func.datasource.update(SESSION_ID, datasource_changes);
7030
+ await func.datasource.update(SESSION_ID, datasource_changes, null, null, triggerP);
7031
7031
 
7032
7032
  if (_ds.PARAM_OUT_INFO) {
7033
7033
  for await (const [key, val] of Object.entries(_ds.PARAM_OUT_INFO)) {
@@ -3031,7 +3031,7 @@ func.datasource.del = function (SESSION_ID, dsP) {
3031
3031
  perform_delete();
3032
3032
  };
3033
3033
 
3034
- func.datasource.update = async function (SESSION_ID, datasource_changes, update_local_scope_only, avoid_xu_for_refresh) {
3034
+ func.datasource.update = async function (SESSION_ID, datasource_changes, update_local_scope_only, avoid_xu_for_refresh, trigger) {
3035
3035
  return new Promise(async (resolve, reject) => {
3036
3036
  var _session = SESSION_OBJ[SESSION_ID];
3037
3037
 
@@ -3240,7 +3240,7 @@ func.datasource.update = async function (SESSION_ID, datasource_changes, update_
3240
3240
  return Math.min(...arr.map(Number));
3241
3241
  }
3242
3242
 
3243
- await func.UI.screen.refresh_xu_attributes(SESSION_ID, _.cloneDeep(fields_changed), null, null, findMin(datasource_changed), avoid_xu_for_refresh);
3243
+ await func.UI.screen.refresh_xu_attributes(SESSION_ID, _.cloneDeep(fields_changed), null, null, findMin(datasource_changed), avoid_xu_for_refresh, trigger);
3244
3244
  // await removed from the below function cause to dead lock Mar 3 25
3245
3245
  await func.UI.screen.refresh_screen(
3246
3246
  SESSION_ID,
@@ -7027,7 +7027,7 @@ func.events.execute = async function (
7027
7027
  }
7028
7028
  }
7029
7029
 
7030
- await func.datasource.update(SESSION_ID, datasource_changes);
7030
+ await func.datasource.update(SESSION_ID, datasource_changes, null, null, triggerP);
7031
7031
 
7032
7032
  if (_ds.PARAM_OUT_INFO) {
7033
7033
  for await (const [key, val] of Object.entries(_ds.PARAM_OUT_INFO)) {