dexie-cloud-addon 4.0.6 → 4.0.7
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/modern/dexie-cloud-addon.js +6 -3
- package/dist/modern/dexie-cloud-addon.js.map +1 -1
- package/dist/modern/dexie-cloud-addon.min.js +1 -1
- package/dist/modern/dexie-cloud-addon.min.js.map +1 -1
- package/dist/modern/service-worker.js +6 -3
- package/dist/modern/service-worker.js.map +1 -1
- package/dist/modern/service-worker.min.js +1 -1
- package/dist/modern/service-worker.min.js.map +1 -1
- package/dist/umd/dexie-cloud-addon.js +6 -3
- package/dist/umd/dexie-cloud-addon.js.map +1 -1
- package/dist/umd/dexie-cloud-addon.min.js +1 -1
- package/dist/umd/dexie-cloud-addon.min.js.map +1 -1
- package/dist/umd/service-worker.js +6 -3
- package/dist/umd/service-worker.js.map +1 -1
- package/dist/umd/service-worker.min.js +1 -1
- package/dist/umd/service-worker.min.js.map +1 -1
- package/package.json +1 -1
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
*
|
|
9
9
|
* ==========================================================================
|
|
10
10
|
*
|
|
11
|
-
* Version 4.0.
|
|
11
|
+
* Version 4.0.7, Sun May 26 2024
|
|
12
12
|
*
|
|
13
13
|
* https://dexie.org
|
|
14
14
|
*
|
|
@@ -5025,6 +5025,9 @@ function createMutationTrackingMiddleware({ currentUserObservable, db, }) {
|
|
|
5025
5025
|
txid,
|
|
5026
5026
|
userId,
|
|
5027
5027
|
};
|
|
5028
|
+
if ('isAdditionalChunk' in req && req.isAdditionalChunk) {
|
|
5029
|
+
mut.isAdditionalChunk = true;
|
|
5030
|
+
}
|
|
5028
5031
|
return keys.length > 0 || ('criteria' in req && req.criteria)
|
|
5029
5032
|
? mutsTable
|
|
5030
5033
|
.mutate({ type: 'add', trans, values: [mut] }) // Log entry
|
|
@@ -6307,7 +6310,7 @@ function dexieCloud(dexie) {
|
|
|
6307
6310
|
const syncComplete = new Subject();
|
|
6308
6311
|
dexie.cloud = {
|
|
6309
6312
|
// @ts-ignore
|
|
6310
|
-
version: "4.0.
|
|
6313
|
+
version: "4.0.7",
|
|
6311
6314
|
options: Object.assign({}, DEFAULT_OPTIONS),
|
|
6312
6315
|
schema: null,
|
|
6313
6316
|
get currentUserId() {
|
|
@@ -6591,7 +6594,7 @@ function dexieCloud(dexie) {
|
|
|
6591
6594
|
}
|
|
6592
6595
|
}
|
|
6593
6596
|
// @ts-ignore
|
|
6594
|
-
dexieCloud.version = "4.0.
|
|
6597
|
+
dexieCloud.version = "4.0.7";
|
|
6595
6598
|
Dexie.Cloud = dexieCloud;
|
|
6596
6599
|
|
|
6597
6600
|
// In case the SW lives for a while, let it reuse already opened connections:
|