dexie-cloud-addon 4.1.0-alpha.8 → 4.1.0-alpha.9
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 +7 -5
- 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 +7 -5
- 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 -4
- 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 -4
- 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.1.0-alpha.
|
|
11
|
+
* Version 4.1.0-alpha.9, Tue Oct 15 2024
|
|
12
12
|
*
|
|
13
13
|
* https://dexie.org
|
|
14
14
|
*
|
|
@@ -6670,7 +6670,9 @@
|
|
|
6670
6670
|
// If messageProducer emits empty array, nothing is emitted
|
|
6671
6671
|
// but if messageProducer emits array of messages, they are
|
|
6672
6672
|
// emitted one by one.
|
|
6673
|
-
rxjs.mergeMap((messages) => messages)
|
|
6673
|
+
rxjs.mergeMap((messages) => messages), rxjs.tap(message => {
|
|
6674
|
+
console.debug('dexie-cloud emitting y-c', message);
|
|
6675
|
+
}));
|
|
6674
6676
|
}
|
|
6675
6677
|
|
|
6676
6678
|
function getAwarenessLibrary(db) {
|
|
@@ -7967,7 +7969,7 @@
|
|
|
7967
7969
|
const syncComplete = new rxjs.Subject();
|
|
7968
7970
|
dexie.cloud = {
|
|
7969
7971
|
// @ts-ignore
|
|
7970
|
-
version: "4.1.0-alpha.
|
|
7972
|
+
version: "4.1.0-alpha.9",
|
|
7971
7973
|
options: Object.assign({}, DEFAULT_OPTIONS),
|
|
7972
7974
|
schema: null,
|
|
7973
7975
|
get currentUserId() {
|
|
@@ -8269,7 +8271,7 @@
|
|
|
8269
8271
|
}
|
|
8270
8272
|
}
|
|
8271
8273
|
// @ts-ignore
|
|
8272
|
-
dexieCloud.version = "4.1.0-alpha.
|
|
8274
|
+
dexieCloud.version = "4.1.0-alpha.9";
|
|
8273
8275
|
Dexie.Cloud = dexieCloud;
|
|
8274
8276
|
|
|
8275
8277
|
exports.default = dexieCloud;
|