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

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.
@@ -17,6 +17,6 @@ export * from './types/DXCInputField';
17
17
  export * from './types/DXCUserInteraction';
18
18
  export declare function dexieCloud(dexie: Dexie): void;
19
19
  export declare namespace dexieCloud {
20
- var version: string;
20
+ var version: any;
21
21
  }
22
22
  export default dexieCloud;
@@ -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.50, Sat Oct 28 2023
12
12
  *
13
13
  * https://dexie.org
14
14
  *
@@ -6209,7 +6209,8 @@ function dexieCloud(dexie) {
6209
6209
  });
6210
6210
  const syncComplete = new Subject();
6211
6211
  dexie.cloud = {
6212
- version: '{version}',
6212
+ // @ts-ignore
6213
+ version: "4.0.1-beta.50",
6213
6214
  options: Object.assign({}, DEFAULT_OPTIONS),
6214
6215
  schema: null,
6215
6216
  get currentUserId() {
@@ -6485,7 +6486,8 @@ function dexieCloud(dexie) {
6485
6486
  });
6486
6487
  }
6487
6488
  }
6488
- dexieCloud.version = '{version}';
6489
+ // @ts-ignore
6490
+ dexieCloud.version = "4.0.1-beta.50";
6489
6491
  Dexie.Cloud = dexieCloud;
6490
6492
 
6491
6493
  // In case the SW lives for a while, let it reuse already opened connections: