harperdb 4.3.30 → 4.3.31

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.3.30",
3
+ "version": "4.3.31",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "harperdb",
9
- "version": "4.3.30",
9
+ "version": "4.3.31",
10
10
  "hasInstallScript": true,
11
11
  "license": "SEE LICENSE IN LICENSE",
12
12
  "dependencies": {
@@ -1102,11 +1102,11 @@
1102
1102
  }
1103
1103
  },
1104
1104
  "node_modules/@babel/parser": {
1105
- "version": "7.25.7",
1106
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.25.7.tgz",
1107
- "integrity": "sha512-aZn7ETtQsjjGG5HruveUK06cU3Hljuhd9Iojm4M8WWv3wLE6OkE5PWbDUkItmMgegmccaITudyuW5RPYrYlgWw==",
1105
+ "version": "7.25.8",
1106
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.25.8.tgz",
1107
+ "integrity": "sha512-HcttkxzdPucv3nNFmfOOMfFf64KgdJVqm1KaCm25dPGMLElo9nsLvXeJECQg8UzPuBGLyTSA0ZzqCtDSzKTEoQ==",
1108
1108
  "dependencies": {
1109
- "@babel/types": "^7.25.7"
1109
+ "@babel/types": "^7.25.8"
1110
1110
  },
1111
1111
  "bin": {
1112
1112
  "parser": "bin/babel-parser.js"
@@ -1157,9 +1157,9 @@
1157
1157
  }
1158
1158
  },
1159
1159
  "node_modules/@babel/types": {
1160
- "version": "7.25.7",
1161
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.25.7.tgz",
1162
- "integrity": "sha512-vwIVdXG+j+FOpkwqHRcBgHLYNL7XMkufrlaFvL9o6Ai9sJn9+PdyIL5qa0XzTZw084c+u9LOls53eoZWP/W5WQ==",
1160
+ "version": "7.25.8",
1161
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.25.8.tgz",
1162
+ "integrity": "sha512-JWtuCu8VQsMladxVz/P4HzHUGCAwpuqacmowgXFs5XjxIgKuNjnLokQzuVjlTvIzODaDmpjT3oxcC48vyk9EWg==",
1163
1163
  "dependencies": {
1164
1164
  "@babel/helper-string-parser": "^7.25.7",
1165
1165
  "@babel/helper-validator-identifier": "^7.25.7",
@@ -3248,9 +3248,9 @@
3248
3248
  }
3249
3249
  },
3250
3250
  "node_modules/complex.js": {
3251
- "version": "2.2.4",
3252
- "resolved": "https://registry.npmjs.org/complex.js/-/complex.js-2.2.4.tgz",
3253
- "integrity": "sha512-pXNwUld1KC6YJmeNhOWtwCSRQF4384CHeZc6m/YmpRl8vwRaiwFHOxt7RTqbWZtwCu9z48JW5BtUmovZEuovkw==",
3251
+ "version": "2.2.5",
3252
+ "resolved": "https://registry.npmjs.org/complex.js/-/complex.js-2.2.5.tgz",
3253
+ "integrity": "sha512-U3pSYTZz5Af/xvHgKQkJYHBMGmae7Ms51qqJougCR05YWF1Fihef4LRfOpBFONH2gvPFHMZq2rhx0I44DG23xw==",
3254
3254
  "engines": {
3255
3255
  "node": "*"
3256
3256
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "harperdb",
3
- "version": "4.3.30",
3
+ "version": "4.3.31",
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",
@@ -187,6 +187,7 @@ export declare function makeTable(options: any): {
187
187
  * @returns
188
188
  */
189
189
  sourcedFrom(source: any, options: any): any;
190
+ readonly isCaching: any;
190
191
  /**
191
192
  * Gets a resource instance, as defined by the Resource class, adding the table-specific handling
192
193
  * of also loading the stored record into the resource instance.
@@ -168,6 +168,7 @@ export declare function table({ table: table_name, database: database_name, expi
168
168
  dbisDB: any;
169
169
  schemaDefined: any;
170
170
  sourcedFrom(source: any, options: any): any;
171
+ readonly isCaching: any;
171
172
  getResource(id: import("./ResourceInterface").Id, request: any, resource_options?: any): Promise<{
172
173
  ensureLoaded(): any;
173
174
  get(query?: import("./ResourceInterface").Query | string): Promise<object | void> | object | void;