harperdb 4.5.0-beta.3 → 4.5.1
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 +73 -74
- package/bin/lite.js +74 -75
- package/config/yaml/defaultConfig.yaml +1 -0
- package/launchServiceScripts/launchInstallNATSServer.js +2 -2
- package/launchServiceScripts/launchNatsIngestService.js +74 -75
- package/launchServiceScripts/launchNatsReplyService.js +71 -72
- package/launchServiceScripts/launchUpdateNodes4-0-0.js +71 -72
- package/npm-shrinkwrap.json +5 -5
- package/package.json +1 -1
- package/resources/DatabaseTransaction.d.ts +1 -1
- package/resources/blob.d.ts +5 -0
- package/server/jobs/jobProcess.js +72 -73
- package/server/threads/threadServer.js +74 -75
- package/studio/build-local/asset-manifest.json +3 -3
- package/studio/build-local/index.html +1 -1
- package/studio/build-local/static/js/164.a6861c91.chunk.js +1 -0
- package/studio/build-local/static/js/main.20cb1d9f.js +2 -0
- package/utility/hdbTerms.d.ts +1 -0
- package/utility/scripts/restartHdb.js +72 -73
- package/studio/build-local/static/js/164.05df362d.chunk.js +0 -1
- package/studio/build-local/static/js/main.95c6282e.js +0 -2
- /package/studio/build-local/static/js/{main.95c6282e.js.LICENSE.txt → main.20cb1d9f.js.LICENSE.txt} +0 -0
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "harperdb",
|
|
3
|
-
"version": "4.5.
|
|
3
|
+
"version": "4.5.1",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "harperdb",
|
|
9
|
-
"version": "4.5.
|
|
9
|
+
"version": "4.5.1",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "SEE LICENSE IN LICENSE",
|
|
12
12
|
"dependencies": {
|
|
@@ -5805,9 +5805,9 @@
|
|
|
5805
5805
|
}
|
|
5806
5806
|
},
|
|
5807
5807
|
"node_modules/mime-db": {
|
|
5808
|
-
"version": "1.
|
|
5809
|
-
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.
|
|
5810
|
-
"integrity": "sha512-
|
|
5808
|
+
"version": "1.54.0",
|
|
5809
|
+
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz",
|
|
5810
|
+
"integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==",
|
|
5811
5811
|
"license": "MIT",
|
|
5812
5812
|
"engines": {
|
|
5813
5813
|
"node": ">= 0.6"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "harperdb",
|
|
3
|
-
"version": "4.5.
|
|
3
|
+
"version": "4.5.1",
|
|
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",
|
|
@@ -30,7 +30,7 @@ export declare class DatabaseTransaction implements Transaction {
|
|
|
30
30
|
* Resolves with information on the timestamp and success of the commit
|
|
31
31
|
*/
|
|
32
32
|
commit(options?: {
|
|
33
|
-
|
|
33
|
+
doneWriting?: boolean;
|
|
34
34
|
timestamp?: number;
|
|
35
35
|
}): Promise<CommitResolution>;
|
|
36
36
|
abort(): void;
|
package/resources/blob.d.ts
CHANGED
|
@@ -116,5 +116,10 @@ export declare function decodeFromDatabase(callback: () => void, rootStore: LMDB
|
|
|
116
116
|
* @param object
|
|
117
117
|
*/
|
|
118
118
|
export declare function deleteBlobsInObject(object: any): void;
|
|
119
|
+
/**
|
|
120
|
+
* Find all blobs in an object, recursively searching for Blob instances
|
|
121
|
+
* @param object
|
|
122
|
+
* @param callback
|
|
123
|
+
*/
|
|
119
124
|
export declare function findBlobsInObject(object: any, callback: (blob: Blob) => void): void;
|
|
120
125
|
export {};
|