harperdb 4.6.12 → 4.6.14
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 +32 -32
- package/bin/lite.js +36 -36
- package/launchServiceScripts/launchNatsIngestService.js +38 -38
- package/launchServiceScripts/launchNatsReplyService.js +38 -38
- package/launchServiceScripts/launchUpdateNodes4-0-0.js +38 -38
- package/npm-shrinkwrap.json +301 -294
- package/package.json +2 -2
- package/resources/Table.d.ts +1 -1
- package/resources/blob.d.ts +4 -2
- package/server/jobs/jobProcess.js +38 -38
- package/server/threads/threadServer.js +35 -35
- package/studio/build-local/asset-manifest.json +2 -2
- package/studio/build-local/index.html +1 -1
- package/studio/build-local/static/js/{main.c79db2d6.js → main.a7e02bb8.js} +2 -2
- package/utility/scripts/restartHdb.js +38 -38
- /package/studio/build-local/static/js/{main.c79db2d6.js.LICENSE.txt → main.a7e02bb8.js.LICENSE.txt} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "harperdb",
|
|
3
|
-
"version": "4.6.
|
|
3
|
+
"version": "4.6.14",
|
|
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",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"json2csv": "5.0.7",
|
|
83
83
|
"jsonata": "1.8.7",
|
|
84
84
|
"jsonwebtoken": "9.0.2",
|
|
85
|
-
"lmdb": "3.4.
|
|
85
|
+
"lmdb": "3.4.3",
|
|
86
86
|
"lodash": "4.17.21",
|
|
87
87
|
"mathjs": "11.12.0",
|
|
88
88
|
"micromatch": "^4.0.8",
|
package/resources/Table.d.ts
CHANGED
|
@@ -613,7 +613,7 @@ export declare function makeTable(options: any): {
|
|
|
613
613
|
/**
|
|
614
614
|
* Evicting a record will remove it from a caching table. This is not considered a canonical data change, and it is assumed that retrieving this record from the source will still yield the same record, this is only removing the local copy of the record.
|
|
615
615
|
*/
|
|
616
|
-
evict(id: any, existingRecord: any, existingVersion: any):
|
|
616
|
+
evict(id: any, existingRecord: any, existingVersion: any): any;
|
|
617
617
|
operation(operation: any, context: any): any;
|
|
618
618
|
/**
|
|
619
619
|
* This is responsible for ordering and select()ing the attributes/properties from returned entries
|
package/resources/blob.d.ts
CHANGED
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
* - Note that for compressed data, the size is the uncompressed size, and the compressed size in the file
|
|
12
12
|
*/
|
|
13
13
|
import type { LMDBStore } from 'lmdb';
|
|
14
|
+
import * as buffer from 'node:buffer';
|
|
14
15
|
type StorageInfo = {
|
|
15
16
|
storageIndex: number;
|
|
16
17
|
fileId: string;
|
|
@@ -39,7 +40,7 @@ export declare const Blob: {
|
|
|
39
40
|
arrayBuffer(): Promise<ArrayBufferLike>;
|
|
40
41
|
get size(): number;
|
|
41
42
|
slice(): /*elided*/ any;
|
|
42
|
-
bytes(): Promise<Buffer>;
|
|
43
|
+
bytes(): Promise<buffer.Buffer>;
|
|
43
44
|
get type(): string;
|
|
44
45
|
};
|
|
45
46
|
};
|
|
@@ -53,7 +54,7 @@ declare namespace InstanceOfBlobWithNoConstructor {
|
|
|
53
54
|
arrayBuffer(): Promise<ArrayBufferLike>;
|
|
54
55
|
get size(): number;
|
|
55
56
|
slice(): /*elided*/ any;
|
|
56
|
-
bytes(): Promise<Buffer>;
|
|
57
|
+
bytes(): Promise<buffer.Buffer>;
|
|
57
58
|
get type(): string;
|
|
58
59
|
};
|
|
59
60
|
}
|
|
@@ -82,6 +83,7 @@ declare class FileBackedBlob extends InstanceOfBlobWithNoConstructor {
|
|
|
82
83
|
stream(): ReadableStream;
|
|
83
84
|
slice(start: number, end: number, type?: string): Blob;
|
|
84
85
|
save(): Promise<void>;
|
|
86
|
+
get written(): Promise<void>;
|
|
85
87
|
}
|
|
86
88
|
/**
|
|
87
89
|
* Delete the file for the blob
|