@commandkit/redis 0.1.1-dev.20250406115904 → 0.1.1-dev.20250407135244

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/index.d.ts +1 -1
  2. package/package.json +3 -3
package/dist/index.d.ts CHANGED
@@ -12,7 +12,7 @@ export type DeserializeFunction = (value: string) => Awaitable<any>;
12
12
  * });
13
13
  */
14
14
  export declare class RedisCache extends CacheProvider {
15
- protected redis: Redis;
15
+ redis: Redis;
16
16
  /**
17
17
  * Serialize function used to serialize values before storing them in the cache.
18
18
  * By default, it uses `JSON.stringify`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@commandkit/redis",
3
- "version": "0.1.1-dev.20250406115904",
3
+ "version": "0.1.1-dev.20250407135244",
4
4
  "description": "Redis cache provider for CommandKit",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -27,8 +27,8 @@
27
27
  },
28
28
  "devDependencies": {
29
29
  "typescript": "^5.7.3",
30
- "commandkit": "0.1.11",
31
- "tsconfig": "0.0.0"
30
+ "tsconfig": "0.0.0",
31
+ "commandkit": "0.1.11"
32
32
  },
33
33
  "scripts": {
34
34
  "lint": "tsc --noEmit",