@pristine-ts/redis 0.0.166 → 0.0.170

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.
@@ -6,7 +6,7 @@ export declare class RedisClient implements RedisClientInterface {
6
6
  private readonly port;
7
7
  private readonly namespace;
8
8
  private readonly logHandler;
9
- private client;
9
+ private client?;
10
10
  constructor(host: string, port: number, namespace: string, logHandler: LogHandlerInterface);
11
11
  /**
12
12
  * Returns the client from ClientV3 library
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pristine-ts/redis",
3
- "version": "0.0.166",
3
+ "version": "0.0.170",
4
4
  "description": "",
5
5
  "module": "dist/lib/esm/redis.module.js",
6
6
  "main": "dist/lib/cjs/redis.module.js",
@@ -20,8 +20,8 @@
20
20
  },
21
21
  "dependencies": {
22
22
  "@camaro/redis": "^2.2.5",
23
- "@pristine-ts/common": "^0.0.166",
24
- "@pristine-ts/logging": "^0.0.166"
23
+ "@pristine-ts/common": "^0.0.170",
24
+ "@pristine-ts/logging": "^0.0.170"
25
25
  },
26
26
  "jest": {
27
27
  "transform": {
@@ -57,5 +57,5 @@
57
57
  "src/*.{js,ts}"
58
58
  ]
59
59
  },
60
- "gitHead": "c452544a69d17814c83d6a99a4fd788fdaa0daff"
60
+ "gitHead": "03decbb25315a120f2ead0b4f663e4148d8548a8"
61
61
  }