harperdb 4.5.37 → 4.5.39

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "harperdb",
3
- "version": "4.5.37",
3
+ "version": "4.5.39",
4
4
  "description": "HarperDB is a distributed database, caching service, streaming broker, and application development platform focused on performance and ease of use.",
5
5
  "keywords": [
6
6
  "database",
@@ -80,8 +80,8 @@
80
80
  "json-bigint-fixes": "1.1.0",
81
81
  "json2csv": "5.0.7",
82
82
  "jsonata": "1.8.7",
83
- "jsonwebtoken": "9.0.2",
84
- "lmdb": "3.5.0",
83
+ "jsonwebtoken": "9.0.3",
84
+ "lmdb": "3.5.2",
85
85
  "lodash": "4.17.21",
86
86
  "mathjs": "11.12.0",
87
87
  "minimist": "1.2.8",
@@ -149,7 +149,7 @@ export declare function findBlobsInObject(object: any, callback: (blob: Blob) =>
149
149
  * @param record
150
150
  * @param store
151
151
  */
152
- export declare function startPreCommitBlobsForRecord(record: any, store: LMDBStore): any;
152
+ export declare function startPreCommitBlobsForRecord(record: any, store: LMDBStore): (() => Promise<void[]>) | void;
153
153
  /**
154
154
  * Scans for blobs on the file system and then checks to verify they are referenced
155
155
  * from the database, and if not, deletes them
@@ -27,6 +27,8 @@ interface Node {
27
27
  interface ServerOptions {
28
28
  port?: number;
29
29
  securePort?: number;
30
+ mtls?: boolean;
31
+ usageType?: string;
30
32
  }
31
33
  interface WebSocketOptions extends ServerOptions {
32
34
  subProtocol: string;