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.
@@ -8,7 +8,7 @@
8
8
  *
9
9
  * ==========================================================================
10
10
  *
11
- * Version 4.1.0-alpha.8, Tue Oct 15 2024
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) {
@@ -7960,7 +7962,7 @@
7960
7962
  const syncComplete = new rxjs.Subject();
7961
7963
  dexie.cloud = {
7962
7964
  // @ts-ignore
7963
- version: "4.1.0-alpha.8",
7965
+ version: "4.1.0-alpha.9",
7964
7966
  options: Object.assign({}, DEFAULT_OPTIONS),
7965
7967
  schema: null,
7966
7968
  get currentUserId() {
@@ -8262,7 +8264,7 @@
8262
8264
  }
8263
8265
  }
8264
8266
  // @ts-ignore
8265
- dexieCloud.version = "4.1.0-alpha.8";
8267
+ dexieCloud.version = "4.1.0-alpha.9";
8266
8268
  Dexie.Cloud = dexieCloud;
8267
8269
 
8268
8270
  // In case the SW lives for a while, let it reuse already opened connections: