@powersync/common 1.13.1 → 1.14.0

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,6 +8,16 @@ export interface SQLOpenOptions {
8
8
  * Directory where the database file is located.
9
9
  */
10
10
  dbLocation?: string;
11
+ /**
12
+ * Enable debugMode to log queries to the performance timeline.
13
+ *
14
+ * Defaults to false.
15
+ *
16
+ * To enable in development builds, use:
17
+ *
18
+ * debugMode: process.env.NODE_ENV !== 'production'
19
+ */
20
+ debugMode?: boolean;
11
21
  }
12
22
  export interface SQLOpenFactory {
13
23
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powersync/common",
3
- "version": "1.13.1",
3
+ "version": "1.14.0",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"