dexie-cloud-addon 4.1.0-alpha.14 → 4.1.0-alpha.15

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.14, Fri Oct 18 2024
11
+ * Version 4.1.0-alpha.15, Fri Oct 18 2024
12
12
  *
13
13
  * https://dexie.org
14
14
  *
@@ -8096,7 +8096,7 @@
8096
8096
  const syncComplete = new rxjs.Subject();
8097
8097
  dexie.cloud = {
8098
8098
  // @ts-ignore
8099
- version: "4.1.0-alpha.14",
8099
+ version: "4.1.0-alpha.15",
8100
8100
  options: Object.assign({}, DEFAULT_OPTIONS),
8101
8101
  schema: null,
8102
8102
  get currentUserId() {
@@ -8398,7 +8398,7 @@
8398
8398
  }
8399
8399
  }
8400
8400
  // @ts-ignore
8401
- dexieCloud.version = "4.1.0-alpha.14";
8401
+ dexieCloud.version = "4.1.0-alpha.15";
8402
8402
  Dexie.Cloud = dexieCloud;
8403
8403
 
8404
8404
  const ydocTriggers = {};
@@ -8486,7 +8486,7 @@
8486
8486
  const Y = $Y(db);
8487
8487
  const yDoc = new Y.Doc();
8488
8488
  for (const update of updates) {
8489
- Y.applyUpdateV2(yDoc, update);
8489
+ Y.applyUpdateV2(yDoc, update.u);
8490
8490
  }
8491
8491
  try {
8492
8492
  yield trigger(yDoc, parentId);