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.
@@ -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.51, Sat Oct 28 2023
12
12
  *
13
13
  * https://dexie.org
14
14
  *
@@ -6212,7 +6212,8 @@
6212
6212
  });
6213
6213
  const syncComplete = new rxjs.Subject();
6214
6214
  dexie.cloud = {
6215
- version: '{version}',
6215
+ // @ts-ignore
6216
+ version: "4.0.1-beta.51",
6216
6217
  options: Object.assign({}, DEFAULT_OPTIONS),
6217
6218
  schema: null,
6218
6219
  get currentUserId() {
@@ -6488,7 +6489,8 @@
6488
6489
  });
6489
6490
  }
6490
6491
  }
6491
- dexieCloud.version = '{version}';
6492
+ // @ts-ignore
6493
+ dexieCloud.version = "4.0.1-beta.51";
6492
6494
  Dexie.Cloud = dexieCloud;
6493
6495
 
6494
6496
  // In case the SW lives for a while, let it reuse already opened connections: