@naturalcycles/firestore-lib 1.4.2 → 1.4.4

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
@@ -35,9 +35,9 @@
35
35
  "url": "https://github.com/NaturalCycles/firestore-lib"
36
36
  },
37
37
  "engines": {
38
- "node": ">=14.15.0"
38
+ "node": ">=18.12.0"
39
39
  },
40
- "version": "1.4.2",
40
+ "version": "1.4.4",
41
41
  "description": "Firestore implementation of CommonDB interface",
42
42
  "author": "Natural Cycles Team",
43
43
  "license": "MIT"
@@ -45,7 +45,7 @@ export class FirestoreDB extends BaseCommonDB implements CommonDB {
45
45
  }
46
46
 
47
47
  // GET
48
- async getByIds<ROW extends ObjectWithId>(
48
+ override async getByIds<ROW extends ObjectWithId>(
49
49
  table: string,
50
50
  ids: ROW['id'][],
51
51
  _opt?: FirestoreDBOptions,