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.
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "harperdb",
3
- "version": "4.5.0-beta.3",
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.0-beta.3",
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.53.0",
5809
- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.53.0.tgz",
5810
- "integrity": "sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==",
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.0-beta.3",
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
- letItLinger?: boolean;
33
+ doneWriting?: boolean;
34
34
  timestamp?: number;
35
35
  }): Promise<CommitResolution>;
36
36
  abort(): void;
@@ -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 {};