ioredis-toolkit 0.0.7 → 0.0.8

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.
Files changed (2) hide show
  1. package/dist/client.js +1 -0
  2. package/package.json +1 -1
package/dist/client.js CHANGED
@@ -295,6 +295,7 @@ export class RedisClientWrapper {
295
295
  revocationStore: options.revocationStore ?? this.revocationStore,
296
296
  };
297
297
  this._session = createSessionManager(params);
298
+ void this._session.init();
298
299
  this.config.sessionOptions = params;
299
300
  }
300
301
  return this._session;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ioredis-toolkit",
3
- "version": "0.0.7",
3
+ "version": "0.0.8",
4
4
  "description": "Production-grade, type-safe Redis infrastructure for standalone, Sentinel, and Cluster deployments",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",