@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.
- package/js/modules/xuda-api-library.min.mjs +1 -1
- package/js/modules/xuda-api-library.mjs +4 -2
- 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 +2 -2
- package/js/xuda-worker-bundle.js +2 -2
- package/js/xuda-worker-bundle.min.js +1 -1
- package/js/xuda_common-bundle.js +2 -2
- package/js/xuda_common-bundle.min.js +1 -1
- package/package.json +1 -1
|
@@ -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];
|
package/js/xuda-worker-bundle.js
CHANGED
|
@@ -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];
|