harperdb 4.3.16 → 4.3.17
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 +34 -34
- package/bin/lite.js +21 -21
- package/launchServiceScripts/launchInstallNATSServer.js +2 -2
- package/launchServiceScripts/launchNatsIngestService.js +21 -21
- package/launchServiceScripts/launchNatsReplyService.js +21 -21
- package/launchServiceScripts/launchUpdateNodes4-0-0.js +21 -21
- package/npm-shrinkwrap.json +191 -147
- package/package.json +2 -2
- package/resources/Table.d.ts +3 -0
- package/resources/databases.d.ts +3 -0
- package/server/jobs/jobProcess.js +21 -21
- package/server/threads/threadServer.js +21 -21
- package/studio/build-local/asset-manifest.json +2 -2
- package/studio/build-local/index.html +1 -1
- package/studio/build-local/static/js/{main.e3245a8f.js → main.9da3b364.js} +2 -2
- package/utility/scripts/restartHdb.js +21 -21
- /package/studio/build-local/static/js/{main.e3245a8f.js.LICENSE.txt → main.9da3b364.js.LICENSE.txt} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "harperdb",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.17",
|
|
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",
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"json2csv": "5.0.7",
|
|
70
70
|
"jsonata": "1.8.7",
|
|
71
71
|
"jsonwebtoken": "9.0.2",
|
|
72
|
-
"lmdb": "3.0.
|
|
72
|
+
"lmdb": "3.0.12",
|
|
73
73
|
"lodash": "4.17.21",
|
|
74
74
|
"mathjs": "11.12.0",
|
|
75
75
|
"minimist": "1.2.8",
|
package/resources/Table.d.ts
CHANGED
|
@@ -74,6 +74,7 @@ export declare function makeTable(options: any): {
|
|
|
74
74
|
update(updates?: any, full_update?: boolean): any;
|
|
75
75
|
addTo(property: any, value: any): void;
|
|
76
76
|
subtractFrom(property: any, value: any): void;
|
|
77
|
+
getMetadata(): any;
|
|
77
78
|
invalidate(options: any): void;
|
|
78
79
|
/**
|
|
79
80
|
* This is intended to acquire a lock on a record from the whole cluster.
|
|
@@ -236,6 +237,7 @@ export declare function makeTable(options: any): {
|
|
|
236
237
|
update(updates?: any, full_update?: boolean): any;
|
|
237
238
|
addTo(property: any, value: any): void;
|
|
238
239
|
subtractFrom(property: any, value: any): void;
|
|
240
|
+
getMetadata(): any;
|
|
239
241
|
invalidate(options: any): void;
|
|
240
242
|
/**
|
|
241
243
|
* This is intended to acquire a lock on a record from the whole cluster.
|
|
@@ -362,6 +364,7 @@ export declare function makeTable(options: any): {
|
|
|
362
364
|
update(updates?: any, full_update?: boolean): any;
|
|
363
365
|
addTo(property: any, value: any): void;
|
|
364
366
|
subtractFrom(property: any, value: any): void;
|
|
367
|
+
getMetadata(): any;
|
|
365
368
|
invalidate(options: any): void;
|
|
366
369
|
/**
|
|
367
370
|
* This is intended to acquire a lock on a record from the whole cluster.
|
package/resources/databases.d.ts
CHANGED
|
@@ -82,6 +82,7 @@ export declare function table({ table: table_name, database: database_name, expi
|
|
|
82
82
|
update(updates?: any, full_update?: boolean): any;
|
|
83
83
|
addTo(property: any, value: any): void;
|
|
84
84
|
subtractFrom(property: any, value: any): void;
|
|
85
|
+
getMetadata(): any;
|
|
85
86
|
invalidate(options: any): void;
|
|
86
87
|
lock(): void;
|
|
87
88
|
put(record: any): void;
|
|
@@ -175,6 +176,7 @@ export declare function table({ table: table_name, database: database_name, expi
|
|
|
175
176
|
update(updates?: any, full_update?: boolean): any;
|
|
176
177
|
addTo(property: any, value: any): void;
|
|
177
178
|
subtractFrom(property: any, value: any): void;
|
|
179
|
+
getMetadata(): any;
|
|
178
180
|
invalidate(options: any): void;
|
|
179
181
|
lock(): void;
|
|
180
182
|
put(record: any): void;
|
|
@@ -248,6 +250,7 @@ export declare function table({ table: table_name, database: database_name, expi
|
|
|
248
250
|
update(updates?: any, full_update?: boolean): any;
|
|
249
251
|
addTo(property: any, value: any): void;
|
|
250
252
|
subtractFrom(property: any, value: any): void;
|
|
253
|
+
getMetadata(): any;
|
|
251
254
|
invalidate(options: any): void;
|
|
252
255
|
lock(): void;
|
|
253
256
|
put(record: any): void;
|