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
  *
@@ -8093,7 +8093,7 @@ function dexieCloud(dexie) {
8093
8093
  const syncComplete = new Subject();
8094
8094
  dexie.cloud = {
8095
8095
  // @ts-ignore
8096
- version: "4.1.0-alpha.14",
8096
+ version: "4.1.0-alpha.15",
8097
8097
  options: Object.assign({}, DEFAULT_OPTIONS),
8098
8098
  schema: null,
8099
8099
  get currentUserId() {
@@ -8395,7 +8395,7 @@ function dexieCloud(dexie) {
8395
8395
  }
8396
8396
  }
8397
8397
  // @ts-ignore
8398
- dexieCloud.version = "4.1.0-alpha.14";
8398
+ dexieCloud.version = "4.1.0-alpha.15";
8399
8399
  Dexie.Cloud = dexieCloud;
8400
8400
 
8401
8401
  const ydocTriggers = {};
@@ -8483,7 +8483,7 @@ function executeTriggers(triggersToRun) {
8483
8483
  const Y = $Y(db);
8484
8484
  const yDoc = new Y.Doc();
8485
8485
  for (const update of updates) {
8486
- Y.applyUpdateV2(yDoc, update);
8486
+ Y.applyUpdateV2(yDoc, update.u);
8487
8487
  }
8488
8488
  try {
8489
8489
  yield trigger(yDoc, parentId);