@xuda.io/runtime-bundle 1.0.250 → 1.0.251

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.
@@ -2648,7 +2648,7 @@ func.common.get_module = async function (SESSION_ID, module, paramsP = {}) {
2648
2648
  };
2649
2649
 
2650
2650
  func.api = {};
2651
- func.api.set_field_value = async function (field_id, value) {
2651
+ func.api.set_field_value = async function (field_id, value, avoid_refresh) {
2652
2652
  const SESSION_ID = Object.keys(SESSION_OBJ)[0];
2653
2653
  const api_utils = await func.common.get_module(
2654
2654
  SESSION_ID,
@@ -2663,7 +2663,7 @@ func.api.set_field_value = async function (field_id, value) {
2663
2663
  }
2664
2664
  );
2665
2665
 
2666
- return await api_utils.set_field_value(field_id, value);
2666
+ return await api_utils.set_field_value(field_id, value, avoid_refresh);
2667
2667
  };
2668
2668
  func.api.get_field_value = async function (field_id) {
2669
2669
  const SESSION_ID = Object.keys(SESSION_OBJ)[0];
@@ -2649,7 +2649,7 @@ func.common.get_module = async function (SESSION_ID, module, paramsP = {}) {
2649
2649
  };
2650
2650
 
2651
2651
  func.api = {};
2652
- func.api.set_field_value = async function (field_id, value) {
2652
+ func.api.set_field_value = async function (field_id, value, avoid_refresh) {
2653
2653
  const SESSION_ID = Object.keys(SESSION_OBJ)[0];
2654
2654
  const api_utils = await func.common.get_module(
2655
2655
  SESSION_ID,
@@ -2664,7 +2664,7 @@ func.api.set_field_value = async function (field_id, value) {
2664
2664
  }
2665
2665
  );
2666
2666
 
2667
- return await api_utils.set_field_value(field_id, value);
2667
+ return await api_utils.set_field_value(field_id, value, avoid_refresh);
2668
2668
  };
2669
2669
  func.api.get_field_value = async function (field_id) {
2670
2670
  const SESSION_ID = Object.keys(SESSION_OBJ)[0];