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.
@@ -8,7 +8,7 @@
8
8
  *
9
9
  * ==========================================================================
10
10
  *
11
- * Version 4.0.5, Sat May 25 2024
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
@@ -6310,7 +6313,7 @@
6310
6313
  const syncComplete = new rxjs.Subject();
6311
6314
  dexie.cloud = {
6312
6315
  // @ts-ignore
6313
- version: "4.0.5",
6316
+ version: "4.0.7",
6314
6317
  options: Object.assign({}, DEFAULT_OPTIONS),
6315
6318
  schema: null,
6316
6319
  get currentUserId() {
@@ -6594,7 +6597,7 @@
6594
6597
  }
6595
6598
  }
6596
6599
  // @ts-ignore
6597
- dexieCloud.version = "4.0.5";
6600
+ dexieCloud.version = "4.0.7";
6598
6601
  Dexie.Cloud = dexieCloud;
6599
6602
 
6600
6603
  // In case the SW lives for a while, let it reuse already opened connections: