harperdb 4.3.0-beta.7 → 4.3.0-beta.9

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "harperdb",
3
- "version": "4.3.0-beta.7",
3
+ "version": "4.3.0-beta.9",
4
4
  "description": "HarperDB is a distributed SQL & NoSQL data platform focused on speed, flexibility, and ease of use.",
5
5
  "keywords": [
6
6
  "database",
@@ -19,8 +19,8 @@
19
19
  },
20
20
  "engines": {
21
21
  "minimum-node": "16.0.0",
22
- "go-lang": "1.21.1",
23
- "nats-server": "2.10.1"
22
+ "go-lang": "1.21.7",
23
+ "nats-server": "2.10.11"
24
24
  },
25
25
  "exports": {
26
26
  ".": "./index.js"
@@ -68,7 +68,7 @@
68
68
  "json2csv": "5.0.7",
69
69
  "jsonata": "1.8.6",
70
70
  "jsonwebtoken": "9.0.2",
71
- "lmdb": "2.10.0-beta.3",
71
+ "lmdb": "2.10.0-beta.5",
72
72
  "lodash": "4.17.21",
73
73
  "mathjs": "11.11.2",
74
74
  "minimist": "1.2.8",
@@ -76,7 +76,7 @@
76
76
  "moment": "2.29.4",
77
77
  "mqtt-packet": "~8.2.1",
78
78
  "msgpackr": "1.10.1",
79
- "nats": "2.17.0",
79
+ "nats": "2.19.0",
80
80
  "needle": "3.2.0",
81
81
  "node-stream-zip": "1.15.0",
82
82
  "node-unix-socket": "0.2.5",
@@ -110,9 +110,6 @@
110
110
  "eslint-plugin-radar": {
111
111
  "eslint": "8.22.0"
112
112
  },
113
- "newman-reporter-html": {
114
- "newman": "5.3.2"
115
- },
116
113
  "alasql": {
117
114
  "xlsx": "0.18.5"
118
115
  }
@@ -19,6 +19,7 @@ export declare class DatabaseTransaction implements Transaction {
19
19
  useReadTxn(): LMDBTransaction;
20
20
  doneReadTxn(): void;
21
21
  disregardReadTxn(): void;
22
+ checkOverloaded(): void;
22
23
  addWrite(operation: any): Promise<CommitResolution>;
23
24
  removeWrite(operation: any): void;
24
25
  /**
@@ -39,6 +39,7 @@ interface TableDefinition {
39
39
  eviction?: number;
40
40
  scanInterval?: number;
41
41
  audit?: boolean;
42
+ sealed?: boolean;
42
43
  trackDeletes?: boolean;
43
44
  attributes: any[];
44
45
  schemaDefined?: boolean;
@@ -68,8 +69,9 @@ export declare function dropDatabase(database_name: any): Promise<void>;
68
69
  * @param scanInterval
69
70
  * @param attributes
70
71
  * @param audit
72
+ * @param sealed
71
73
  */
72
- export declare function table({ table: table_name, database: database_name, expiration, eviction, scanInterval: scan_interval, attributes, audit, trackDeletes: track_deletes, schemaDefined: schema_defined, origin, }: TableDefinition): {
74
+ export declare function table({ table: table_name, database: database_name, expiration, eviction, scanInterval: scan_interval, attributes, audit, sealed, trackDeletes: track_deletes, schemaDefined: schema_defined, origin, }: TableDefinition): {
73
75
  new (identifier: import("./ResourceInterface").Id, source: any): {
74
76
  ensureLoaded(): any;
75
77
  get(query?: string | import("./ResourceInterface").Query): void | object | Promise<void | object>;