mftsccs-browser 1.1.60-beta → 1.1.61-beta
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/dist/main.bundle.js
CHANGED
|
@@ -121,7 +121,7 @@ class AccessTracker {
|
|
|
121
121
|
static setNextSyncTime() {
|
|
122
122
|
// Calculate next sync time (current time + TimeToSync interval)
|
|
123
123
|
this.nextSyncTime = Date.now() + this.TimeToSync;
|
|
124
|
-
|
|
124
|
+
console.log(`Next sync scheduled at: ${new Date(this.nextSyncTime).toISOString()}`); // Log next sync time
|
|
125
125
|
}
|
|
126
126
|
/**
|
|
127
127
|
* Starts auto-syncing to the server every specified time interval.
|
|
@@ -143,7 +143,7 @@ class AccessTracker {
|
|
|
143
143
|
else {
|
|
144
144
|
// console.log(`[WAIT] Not time to sync yet. Next Sync Time: ${new Date(this.nextSyncTime).toISOString()}`);
|
|
145
145
|
}
|
|
146
|
-
},
|
|
146
|
+
}, 300000); // Check every 5 minutes
|
|
147
147
|
}
|
|
148
148
|
/**
|
|
149
149
|
* Sync immediately (called by setInterval when time to sync has arrived).
|
|
@@ -18278,7 +18278,6 @@ function formatConnectionsJustId(linkers, conceptIds, mainCompositionIds, revers
|
|
|
18278
18278
|
let newCompositionData = [];
|
|
18279
18279
|
compositionData = yield (0,_FormatData__WEBPACK_IMPORTED_MODULE_2__.formatFunction)(prefetchConnections, compositionData, reverse);
|
|
18280
18280
|
compositionData = yield (0,_FormatData__WEBPACK_IMPORTED_MODULE_2__.FormatFunctionDataForDataJustId)(prefetchConnections, compositionData, reverse);
|
|
18281
|
-
console.log("this is the composition data", compositionData);
|
|
18282
18281
|
let output = yield (0,_FormatData__WEBPACK_IMPORTED_MODULE_2__.FormatFromConnectionsAlteredArrayExternalJustId)(prefetchConnections, compositionData, mainCompositionIds, reverse);
|
|
18283
18282
|
return output;
|
|
18284
18283
|
});
|
|
@@ -18300,7 +18299,6 @@ function formatConnectionsDataId(linkers, conceptIds, mainCompositionIds, revers
|
|
|
18300
18299
|
let newCompositionData = [];
|
|
18301
18300
|
compositionData = yield (0,_FormatData__WEBPACK_IMPORTED_MODULE_2__.FormatFunctionData)(prefetchConnections, compositionData, reverse);
|
|
18302
18301
|
compositionData = yield (0,_FormatData__WEBPACK_IMPORTED_MODULE_2__.FormatFunctionDataForData)(prefetchConnections, compositionData, reverse);
|
|
18303
|
-
console.log("this is the composition data", compositionData);
|
|
18304
18302
|
let output = yield (0,_FormatData__WEBPACK_IMPORTED_MODULE_2__.FormatFromConnectionsAlteredArrayExternal)(prefetchConnections, compositionData, newCompositionData, mainCompositionIds, reverse);
|
|
18305
18303
|
return output;
|
|
18306
18304
|
});
|