dexie-cloud-addon 4.1.0-beta.37 → 4.1.0-beta.38

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.
package/README.md CHANGED
@@ -3,10 +3,12 @@ The web client for [Dexie Cloud](https://dexie.org/cloud/).
3
3
  ## Getting started
4
4
 
5
5
  ```
6
- npm install dexie-cloud-addon
6
+ npm install dexie@latest
7
+ npm install dexie-cloud-addon@latest
7
8
  ```
8
9
 
9
10
  ```ts
11
+ import Dexie from 'dexie';
10
12
  import dexieCloud from 'dexie-cloud-addon';
11
13
 
12
14
  const db = new Dexie('dbname', { addons: [dexieCloud]});
@@ -20,6 +22,10 @@ db.cloud.configure({
20
22
  })
21
23
  ```
22
24
 
25
+ ## See also
26
+
27
+ https://dexie.org/cloud/docs/dexie-cloud-addon#api
28
+
23
29
  ## Obtaining a database URL
24
30
 
25
31
  Run the following command in a console / terminal:
@@ -8,7 +8,7 @@
8
8
  *
9
9
  * ==========================================================================
10
10
  *
11
- * Version 4.1.0-beta.37, Fri Dec 06 2024
11
+ * Version 4.1.0-beta.38, Fri Dec 06 2024
12
12
  *
13
13
  * https://dexie.org
14
14
  *
@@ -8157,7 +8157,7 @@ function dexieCloud(dexie) {
8157
8157
  const syncComplete = new Subject();
8158
8158
  dexie.cloud = {
8159
8159
  // @ts-ignore
8160
- version: "4.1.0-beta.37",
8160
+ version: "4.1.0-beta.38",
8161
8161
  options: Object.assign({}, DEFAULT_OPTIONS),
8162
8162
  schema: null,
8163
8163
  get currentUserId() {
@@ -8475,7 +8475,7 @@ function dexieCloud(dexie) {
8475
8475
  }
8476
8476
  }
8477
8477
  // @ts-ignore
8478
- dexieCloud.version = "4.1.0-beta.37";
8478
+ dexieCloud.version = "4.1.0-beta.38";
8479
8479
  Dexie.Cloud = dexieCloud;
8480
8480
 
8481
8481
  const ydocTriggers = {};