@naturalcycles/redis-lib 4.0.4 → 4.1.0

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.
@@ -208,7 +208,7 @@ export class RedisClient {
208
208
  * Like scanStream, but flattens the stream of keys.
209
209
  */
210
210
  scanStreamFlat(opt) {
211
- // biome-ignore lint/correctness/noFlatMapIdentity: ok
211
+ // biome-ignore lint/complexity/noFlatMapIdentity: ok
212
212
  return this.scanStream(opt).flatMap(keys => keys);
213
213
  }
214
214
  async scanCount(opt) {
package/package.json CHANGED
@@ -10,7 +10,7 @@
10
10
  },
11
11
  "devDependencies": {
12
12
  "@naturalcycles/dev-lib": "*",
13
- "@types/node": "^22"
13
+ "@types/node": "^24"
14
14
  },
15
15
  "files": [
16
16
  "dist",
@@ -34,7 +34,7 @@
34
34
  "engines": {
35
35
  "node": ">=22.10"
36
36
  },
37
- "version": "4.0.4",
37
+ "version": "4.1.0",
38
38
  "description": "Redis implementation of CommonKeyValueDB interface",
39
39
  "author": "Natural Cycles Team",
40
40
  "license": "MIT",
@@ -43,7 +43,8 @@
43
43
  "test": "dev-lib test",
44
44
  "lint": "dev-lib lint",
45
45
  "bt": "dev-lib bt",
46
- "lbt": "dev-lib lbt",
47
- "check": "dev-lib lbt"
46
+ "clean": "dev-lib clean",
47
+ "typecheck": "dev-lib typecheck",
48
+ "check": "dev-lib check"
48
49
  }
49
50
  }
@@ -298,7 +298,7 @@ export class RedisClient implements CommonClient {
298
298
  * Like scanStream, but flattens the stream of keys.
299
299
  */
300
300
  scanStreamFlat(opt: ScanStreamOptions): ReadableTyped<string> {
301
- // biome-ignore lint/correctness/noFlatMapIdentity: ok
301
+ // biome-ignore lint/complexity/noFlatMapIdentity: ok
302
302
  return this.scanStream(opt).flatMap(keys => keys)
303
303
  }
304
304