@zintrust/cache-redis 0.1.20 → 0.1.27

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.
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @zintrust/cache-redis
2
2
 
3
- Redis cache driver package for Zintrust.
3
+ Redis cache driver package for ZinTrust.
4
4
 
5
5
  ## Install
6
6
 
@@ -0,0 +1,43 @@
1
+ {
2
+ "name": "@zintrust/cache-redis",
3
+ "version": "0.1.15",
4
+ "buildDate": "2026-01-28T12:16:44.297Z",
5
+ "buildEnvironment": {
6
+ "node": "v20.20.0",
7
+ "platform": "linux",
8
+ "arch": "x64"
9
+ },
10
+ "git": {
11
+ "commit": "a274786",
12
+ "branch": "master"
13
+ },
14
+ "package": {
15
+ "engines": {
16
+ "node": ">=20.0.0"
17
+ },
18
+ "dependencies": [
19
+ "redis"
20
+ ],
21
+ "peerDependencies": [
22
+ "@zintrust/core"
23
+ ]
24
+ },
25
+ "files": {
26
+ "index.d.ts": {
27
+ "size": 736,
28
+ "sha256": "0c9eae934ad4888d5ed29d62250010ee904692daace4f47f6461f81ebcf5f3ff"
29
+ },
30
+ "index.js": {
31
+ "size": 2661,
32
+ "sha256": "4392bb314da8b87f0f294a4e2b856300e46a4de1fc2af54f380b3dde6378c925"
33
+ },
34
+ "register.d.ts": {
35
+ "size": 184,
36
+ "sha256": "005e0163b4f5833a0096cfcba7d5851b6f21c0fea7d8faf01a913dc2808730ad"
37
+ },
38
+ "register.js": {
39
+ "size": 330,
40
+ "sha256": "9fcab6dfb78323d351970dc89dc713910339fc7b1b392225213a93fbeee7c511"
41
+ }
42
+ }
43
+ }
package/dist/index.d.ts CHANGED
@@ -15,3 +15,9 @@ export declare const RedisCacheDriver: Readonly<{
15
15
  create(config: RedisCacheConfig): CacheDriver;
16
16
  }>;
17
17
  export default RedisCacheDriver;
18
+ /**
19
+ * Package version and build metadata
20
+ * Available at runtime for debugging and health checks
21
+ */
22
+ export declare const _ZINTRUST_CACHE_REDIS_VERSION = "0.1.15";
23
+ export declare const _ZINTRUST_CACHE_REDIS_BUILD_DATE = "__BUILD_DATE__";
package/dist/index.js CHANGED
@@ -67,3 +67,9 @@ export const RedisCacheDriver = Object.freeze({
67
67
  },
68
68
  });
69
69
  export default RedisCacheDriver;
70
+ /**
71
+ * Package version and build metadata
72
+ * Available at runtime for debugging and health checks
73
+ */
74
+ export const _ZINTRUST_CACHE_REDIS_VERSION = '0.1.15';
75
+ export const _ZINTRUST_CACHE_REDIS_BUILD_DATE = '__BUILD_DATE__';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zintrust/cache-redis",
3
- "version": "0.1.20",
3
+ "version": "0.1.27",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -22,7 +22,7 @@
22
22
  "node": ">=20.0.0"
23
23
  },
24
24
  "peerDependencies": {
25
- "@zintrust/core": "^0.1.20"
25
+ "@zintrust/core": "^0.1.27"
26
26
  },
27
27
  "publishConfig": {
28
28
  "access": "public"