@hocuspocus/extension-sqlite 1.0.0-alpha.1 → 1.0.0-alpha.2

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.
@@ -23,7 +23,7 @@ export declare class Hocuspocus {
23
23
  * Configure the server
24
24
  */
25
25
  configure(configuration: Partial<Configuration>): Hocuspocus;
26
- get authenticationRequired(): boolean;
26
+ get requiresAuthentication(): boolean;
27
27
  /**
28
28
  * Start the server
29
29
  */
@@ -27,6 +27,7 @@ export interface AwarenessUpdate {
27
27
  }
28
28
  export interface ConnectionConfig {
29
29
  readOnly: boolean;
30
+ requiresAuthentication: boolean;
30
31
  isAuthenticated: boolean;
31
32
  }
32
33
  export interface Extension {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@hocuspocus/extension-sqlite",
3
3
  "description": "a generic Hocuspocus persistence driver for the sqlite",
4
- "version": "1.0.0-alpha.1",
4
+ "version": "1.0.0-alpha.2",
5
5
  "homepage": "https://hocuspocus.dev",
6
6
  "keywords": [
7
7
  "hocuspocus",
@@ -26,7 +26,7 @@
26
26
  "dist"
27
27
  ],
28
28
  "dependencies": {
29
- "@hocuspocus/extension-database": "^1.0.0-alpha.1",
29
+ "@hocuspocus/extension-database": "^1.0.0-alpha.2",
30
30
  "chalk": "^5.0.0",
31
31
  "sqlite3": "^5.0.2"
32
32
  },
@@ -36,5 +36,5 @@
36
36
  "devDependencies": {
37
37
  "@types/sqlite3": "^3.1.7"
38
38
  },
39
- "gitHead": "8ffe8d8f4d10ba33f4f203806bd1d4415bef5dc3"
39
+ "gitHead": "09919438a0a220ffb7479afc562872c8726cc4b4"
40
40
  }