@naturalcycles/datastore-lib 3.25.3 → 3.25.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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@naturalcycles/datastore-lib",
3
- "version": "3.25.3",
3
+ "version": "3.25.4",
4
4
  "description": "Opinionated library to work with Google Datastore",
5
5
  "scripts": {
6
6
  "prepare": "husky install"
@@ -118,7 +118,7 @@ export class DatastoreDB extends BaseCommonDB implements CommonDB {
118
118
  await this.getAllStats()
119
119
  }
120
120
 
121
- async getByIds<ROW extends ObjectWithId>(
121
+ override async getByIds<ROW extends ObjectWithId>(
122
122
  table: string,
123
123
  ids: ROW['id'][],
124
124
  _opt?: DatastoreDBOptions,