harperdb 4.3.0-beta.5 → 4.3.0-beta.6
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 +20 -20
- package/bin/lite.js +16 -16
- package/launchServiceScripts/launchInstallNATSServer.js +3 -3
- package/launchServiceScripts/launchNatsIngestService.js +16 -16
- package/launchServiceScripts/launchNatsReplyService.js +16 -16
- package/launchServiceScripts/launchUpdateNodes4-0-0.js +18 -18
- package/npm-shrinkwrap.json +8 -5
- package/package.json +1 -1
- package/resources/DatabaseTransaction.d.ts +1 -1
- package/server/jobs/jobProcess.js +16 -16
- package/server/threads/threadServer.js +16 -16
- package/studio/build-local/asset-manifest.json +2 -2
- package/studio/build-local/index.html +1 -1
- package/studio/build-local/static/js/{main.1b4b013e.js → main.912a850a.js} +2 -2
- package/utility/scripts/restartHdb.js +16 -16
- /package/studio/build-local/static/js/{main.1b4b013e.js.LICENSE.txt → main.912a850a.js.LICENSE.txt} +0 -0
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "harperdb",
|
|
3
|
-
"version": "4.3.0-beta.
|
|
3
|
+
"version": "4.3.0-beta.6",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "harperdb",
|
|
9
|
-
"version": "4.3.0-beta.
|
|
9
|
+
"version": "4.3.0-beta.6",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "SEE LICENSE IN LICENSE",
|
|
12
12
|
"dependencies": {
|
|
@@ -4328,9 +4328,12 @@
|
|
|
4328
4328
|
}
|
|
4329
4329
|
},
|
|
4330
4330
|
"node_modules/has-tostringtag": {
|
|
4331
|
-
"version": "1.0.
|
|
4332
|
-
"resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.
|
|
4333
|
-
"integrity": "sha512-
|
|
4331
|
+
"version": "1.0.2",
|
|
4332
|
+
"resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
|
|
4333
|
+
"integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
|
|
4334
|
+
"dependencies": {
|
|
4335
|
+
"has-symbols": "^1.0.3"
|
|
4336
|
+
},
|
|
4334
4337
|
"engines": {
|
|
4335
4338
|
"node": ">= 0.4"
|
|
4336
4339
|
},
|
package/package.json
CHANGED
|
@@ -19,7 +19,7 @@ export declare class DatabaseTransaction implements Transaction {
|
|
|
19
19
|
useReadTxn(): LMDBTransaction;
|
|
20
20
|
doneReadTxn(): void;
|
|
21
21
|
disregardReadTxn(): void;
|
|
22
|
-
addWrite(operation: any):
|
|
22
|
+
addWrite(operation: any): Promise<CommitResolution>;
|
|
23
23
|
removeWrite(operation: any): void;
|
|
24
24
|
/**
|
|
25
25
|
* Resolves with information on the timestamp and success of the commit
|