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
|
*
|
|
@@ -5028,6 +5028,9 @@
|
|
|
5028
5028
|
txid,
|
|
5029
5029
|
userId,
|
|
5030
5030
|
};
|
|
5031
|
+
if ('isAdditionalChunk' in req && req.isAdditionalChunk) {
|
|
5032
|
+
mut.isAdditionalChunk = true;
|
|
5033
|
+
}
|
|
5031
5034
|
return keys.length > 0 || ('criteria' in req && req.criteria)
|
|
5032
5035
|
? mutsTable
|
|
5033
5036
|
.mutate({ type: 'add', trans, values: [mut] }) // Log entry
|
|
@@ -6317,7 +6320,7 @@
|
|
|
6317
6320
|
const syncComplete = new rxjs.Subject();
|
|
6318
6321
|
dexie.cloud = {
|
|
6319
6322
|
// @ts-ignore
|
|
6320
|
-
version: "4.0.
|
|
6323
|
+
version: "4.0.7",
|
|
6321
6324
|
options: Object.assign({}, DEFAULT_OPTIONS),
|
|
6322
6325
|
schema: null,
|
|
6323
6326
|
get currentUserId() {
|
|
@@ -6601,7 +6604,7 @@
|
|
|
6601
6604
|
}
|
|
6602
6605
|
}
|
|
6603
6606
|
// @ts-ignore
|
|
6604
|
-
dexieCloud.version = "4.0.
|
|
6607
|
+
dexieCloud.version = "4.0.7";
|
|
6605
6608
|
Dexie.Cloud = dexieCloud;
|
|
6606
6609
|
|
|
6607
6610
|
exports.default = dexieCloud;
|