@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.
@@ -1024,7 +1024,7 @@ func.common.get_module = async function (SESSION_ID, module, paramsP = {}) {
1024
1024
  };
1025
1025
 
1026
1026
  func.api = {};
1027
- func.api.set_field_value = async function (field_id, value) {
1027
+ func.api.set_field_value = async function (field_id, value, avoid_refresh) {
1028
1028
  const SESSION_ID = Object.keys(SESSION_OBJ)[0];
1029
1029
  const api_utils = await func.common.get_module(
1030
1030
  SESSION_ID,
@@ -1039,7 +1039,7 @@ func.api.set_field_value = async function (field_id, value) {
1039
1039
  }
1040
1040
  );
1041
1041
 
1042
- return await api_utils.set_field_value(field_id, value);
1042
+ return await api_utils.set_field_value(field_id, value, avoid_refresh);
1043
1043
  };
1044
1044
  func.api.get_field_value = async function (field_id) {
1045
1045
  const SESSION_ID = Object.keys(SESSION_OBJ)[0];
@@ -1024,7 +1024,7 @@ func.common.get_module = async function (SESSION_ID, module, paramsP = {}) {
1024
1024
  };
1025
1025
 
1026
1026
  func.api = {};
1027
- func.api.set_field_value = async function (field_id, value) {
1027
+ func.api.set_field_value = async function (field_id, value, avoid_refresh) {
1028
1028
  const SESSION_ID = Object.keys(SESSION_OBJ)[0];
1029
1029
  const api_utils = await func.common.get_module(
1030
1030
  SESSION_ID,
@@ -1039,7 +1039,7 @@ func.api.set_field_value = async function (field_id, value) {
1039
1039
  }
1040
1040
  );
1041
1041
 
1042
- return await api_utils.set_field_value(field_id, value);
1042
+ return await api_utils.set_field_value(field_id, value, avoid_refresh);
1043
1043
  };
1044
1044
  func.api.get_field_value = async function (field_id) {
1045
1045
  const SESSION_ID = Object.keys(SESSION_OBJ)[0];