@naturalcycles/datastore-lib 3.30.1 → 3.30.2

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.
@@ -116,12 +116,12 @@ export interface DatastoreStats {
116
116
  export declare enum DatastoreType {
117
117
  Blob = "Blob",
118
118
  Text = "Text",
119
- String = "String",
119
+ String = "String",// eslint-disable-line id-blacklist
120
120
  EmbeddedEntity = "EmbeddedEntity",
121
121
  Float = "Float",
122
122
  Integer = "Integer",
123
123
  DATE_TIME = "Date/Time",
124
- Boolean = "Boolean",
124
+ Boolean = "Boolean",// eslint-disable-line id-blacklist
125
125
  NULL = "NULL"
126
126
  }
127
127
  export interface DatastorePropertyStats {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@naturalcycles/datastore-lib",
3
- "version": "3.30.1",
3
+ "version": "3.30.2",
4
4
  "description": "Opinionated library to work with Google Datastore",
5
5
  "scripts": {
6
6
  "prepare": "husky install"
@@ -53,7 +53,7 @@ export class DatastoreKeyValueDB implements CommonKeyValueDB {
53
53
  .streamQuery<KVObject>(q)
54
54
  .on('error', err => stream.emit('error', err))
55
55
  .pipe(
56
- transformMapSimple<ObjectWithId<string>, string>(objectWithId => objectWithId.id, {
56
+ transformMapSimple<ObjectWithId, string>(objectWithId => objectWithId.id, {
57
57
  errorMode: ErrorMode.SUPPRESS, // cause .pipe() cannot propagate errors
58
58
  }),
59
59
  )