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/README.md +1 -1
- package/bin/harperdb.js +29 -29
- package/bin/lite.js +27 -27
- package/launchServiceScripts/launchNatsIngestService.js +27 -27
- package/launchServiceScripts/launchNatsReplyService.js +27 -27
- package/launchServiceScripts/launchUpdateNodes4-0-0.js +27 -27
- package/npm-shrinkwrap.json +548 -451
- package/package.json +3 -3
- package/resources/blob.d.ts +1 -1
- package/server/Server.d.ts +2 -0
- package/server/jobs/jobProcess.js +27 -27
- package/server/threads/threadServer.js +27 -27
- package/studio/build-local/asset-manifest.json +2 -2
- package/studio/build-local/index.html +1 -1
- package/studio/build-local/static/js/{main.0a9a346e.js → main.0a0bf640.js} +2 -2
- package/utility/scripts/restartHdb.js +27 -27
- /package/studio/build-local/static/js/{main.0a9a346e.js.LICENSE.txt → main.0a0bf640.js.LICENSE.txt} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "harperdb",
|
|
3
|
-
"version": "4.5.
|
|
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.
|
|
84
|
-
"lmdb": "3.5.
|
|
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",
|
package/resources/blob.d.ts
CHANGED
|
@@ -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):
|
|
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
|