@xuda.io/runtime-bundle 1.0.297 → 1.0.298
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 +1 -2
- package/js/xuda-runtime-bundle.min.js +1 -1
- package/js/xuda-runtime-slim.js +1 -2
- package/js/xuda-runtime-slim.min.es.js +1 -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 -2
- package/js/xuda-worker-bundle.js +1 -2
- package/js/xuda-worker-bundle.min.js +1 -1
- package/package.json +1 -1
package/js/xuda-runtime-slim.js
CHANGED
|
@@ -5041,7 +5041,6 @@ func.datasource.del = function (SESSION_ID, dsP) {
|
|
|
5041
5041
|
};
|
|
5042
5042
|
func.datasource.update = async function (SESSION_ID, datasource_changes, update_local_scope_only, avoid_refresh) {
|
|
5043
5043
|
return new Promise(async (resolve, reject) => {
|
|
5044
|
-
debugger;
|
|
5045
5044
|
var _session = SESSION_OBJ[SESSION_ID];
|
|
5046
5045
|
|
|
5047
5046
|
if (_session.IS_API || typeof IS_MASTER_WEBSOCKET !== 'undefined' || typeof IS_PROCESS_SERVER !== 'undefined') {
|
|
@@ -5192,7 +5191,7 @@ func.datasource.update = async function (SESSION_ID, datasource_changes, update_
|
|
|
5192
5191
|
}
|
|
5193
5192
|
}
|
|
5194
5193
|
}
|
|
5195
|
-
|
|
5194
|
+
debugger;
|
|
5196
5195
|
if (glb.IS_WORKER) {
|
|
5197
5196
|
if (!update_local_scope_only && !_.isEmpty(client_datasource_changes)) {
|
|
5198
5197
|
func.utils.post_back_to_client(SESSION_ID, 'update_client_eventChangesResults_from_worker', _session.worker_id, client_datasource_changes);
|
|
@@ -5042,7 +5042,6 @@ func.datasource.del = function (SESSION_ID, dsP) {
|
|
|
5042
5042
|
};
|
|
5043
5043
|
func.datasource.update = async function (SESSION_ID, datasource_changes, update_local_scope_only, avoid_refresh) {
|
|
5044
5044
|
return new Promise(async (resolve, reject) => {
|
|
5045
|
-
debugger;
|
|
5046
5045
|
var _session = SESSION_OBJ[SESSION_ID];
|
|
5047
5046
|
|
|
5048
5047
|
if (_session.IS_API || typeof IS_MASTER_WEBSOCKET !== 'undefined' || typeof IS_PROCESS_SERVER !== 'undefined') {
|
|
@@ -5193,7 +5192,7 @@ func.datasource.update = async function (SESSION_ID, datasource_changes, update_
|
|
|
5193
5192
|
}
|
|
5194
5193
|
}
|
|
5195
5194
|
}
|
|
5196
|
-
|
|
5195
|
+
debugger;
|
|
5197
5196
|
if (glb.IS_WORKER) {
|
|
5198
5197
|
if (!update_local_scope_only && !_.isEmpty(client_datasource_changes)) {
|
|
5199
5198
|
func.utils.post_back_to_client(SESSION_ID, 'update_client_eventChangesResults_from_worker', _session.worker_id, client_datasource_changes);
|