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
|
|
@@ -6314,7 +6317,7 @@ function dexieCloud(dexie) {
|
|
|
6314
6317
|
const syncComplete = new Subject();
|
|
6315
6318
|
dexie.cloud = {
|
|
6316
6319
|
// @ts-ignore
|
|
6317
|
-
version: "4.0.
|
|
6320
|
+
version: "4.0.7",
|
|
6318
6321
|
options: Object.assign({}, DEFAULT_OPTIONS),
|
|
6319
6322
|
schema: null,
|
|
6320
6323
|
get currentUserId() {
|
|
@@ -6598,7 +6601,7 @@ function dexieCloud(dexie) {
|
|
|
6598
6601
|
}
|
|
6599
6602
|
}
|
|
6600
6603
|
// @ts-ignore
|
|
6601
|
-
dexieCloud.version = "4.0.
|
|
6604
|
+
dexieCloud.version = "4.0.7";
|
|
6602
6605
|
Dexie.Cloud = dexieCloud;
|
|
6603
6606
|
|
|
6604
6607
|
export { dexieCloud as default, dexieCloud, getTiedObjectId, getTiedRealmId, resolveText };
|