harperdb 4.6.12 → 4.6.13
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 +27 -27
- package/bin/lite.js +32 -32
- package/launchServiceScripts/launchNatsIngestService.js +32 -32
- package/launchServiceScripts/launchNatsReplyService.js +32 -32
- package/launchServiceScripts/launchUpdateNodes4-0-0.js +32 -32
- package/npm-shrinkwrap.json +8 -8
- package/package.json +1 -1
- package/resources/Table.d.ts +1 -1
- package/resources/blob.d.ts +4 -2
- package/server/jobs/jobProcess.js +32 -32
- package/server/threads/threadServer.js +31 -31
- 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.0c9bc211.js} +2 -2
- package/utility/scripts/restartHdb.js +32 -32
- /package/studio/build-local/static/js/{main.c79db2d6.js.LICENSE.txt → main.0c9bc211.js.LICENSE.txt} +0 -0
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "harperdb",
|
|
3
|
-
"version": "4.6.
|
|
3
|
+
"version": "4.6.13",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "harperdb",
|
|
9
|
-
"version": "4.6.
|
|
9
|
+
"version": "4.6.13",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "SEE LICENSE IN LICENSE",
|
|
12
12
|
"dependencies": {
|
|
@@ -3018,9 +3018,9 @@
|
|
|
3018
3018
|
"license": "MIT"
|
|
3019
3019
|
},
|
|
3020
3020
|
"node_modules/@types/node": {
|
|
3021
|
-
"version": "24.6.
|
|
3022
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-24.6.
|
|
3023
|
-
"integrity": "sha512-
|
|
3021
|
+
"version": "24.6.2",
|
|
3022
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-24.6.2.tgz",
|
|
3023
|
+
"integrity": "sha512-d2L25Y4j+W3ZlNAeMKcy7yDsK425ibcAOO2t7aPTz6gNMH0z2GThtwENCDc0d/Pw9wgyRqE5Px1wkV7naz8ang==",
|
|
3024
3024
|
"license": "MIT",
|
|
3025
3025
|
"dependencies": {
|
|
3026
3026
|
"undici-types": "~7.13.0"
|
|
@@ -4568,9 +4568,9 @@
|
|
|
4568
4568
|
"license": "MIT"
|
|
4569
4569
|
},
|
|
4570
4570
|
"node_modules/fastify/node_modules/pino": {
|
|
4571
|
-
"version": "9.
|
|
4572
|
-
"resolved": "https://registry.npmjs.org/pino/-/pino-9.
|
|
4573
|
-
"integrity": "sha512-
|
|
4571
|
+
"version": "9.13.0",
|
|
4572
|
+
"resolved": "https://registry.npmjs.org/pino/-/pino-9.13.0.tgz",
|
|
4573
|
+
"integrity": "sha512-SpTXQhkQXekIKEe7c887S3lk3v90Q+/HVRZVyNAhe98PQc++6I5ec/R0pciH8/CciXjCoVZIZfRNicbC6KZgnw==",
|
|
4574
4574
|
"license": "MIT",
|
|
4575
4575
|
"dependencies": {
|
|
4576
4576
|
"atomic-sleep": "^1.0.0",
|
package/package.json
CHANGED
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
|