dexie-cloud-addon 4.0.1-beta.49 → 4.0.1-beta.51

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.1-beta.49, Sat Oct 28 2023
11
+ * Version 4.0.1-beta.51, Sat Oct 28 2023
12
12
  *
13
13
  * https://dexie.org
14
14
  *
@@ -6216,7 +6216,8 @@ function dexieCloud(dexie) {
6216
6216
  });
6217
6217
  const syncComplete = new Subject();
6218
6218
  dexie.cloud = {
6219
- version: '{version}',
6219
+ // @ts-ignore
6220
+ version: "4.0.1-beta.51",
6220
6221
  options: Object.assign({}, DEFAULT_OPTIONS),
6221
6222
  schema: null,
6222
6223
  get currentUserId() {
@@ -6492,7 +6493,8 @@ function dexieCloud(dexie) {
6492
6493
  });
6493
6494
  }
6494
6495
  }
6495
- dexieCloud.version = '{version}';
6496
+ // @ts-ignore
6497
+ dexieCloud.version = "4.0.1-beta.51";
6496
6498
  Dexie.Cloud = dexieCloud;
6497
6499
 
6498
6500
  export { dexieCloud as default, dexieCloud, getTiedObjectId, getTiedRealmId, resolveText };