@zintrust/cache-redis 0.1.19 → 0.1.23
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 +5 -1
- package/dist/build-manifest.json +43 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +6 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @zintrust/cache-redis
|
|
2
2
|
|
|
3
|
-
Redis cache driver package for
|
|
3
|
+
Redis cache driver package for ZinTrust.
|
|
4
4
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
@@ -34,3 +34,7 @@ CACHE_DRIVER=redis
|
|
|
34
34
|
|
|
35
35
|
- https://zintrust.com/cache
|
|
36
36
|
- https://zintrust.com/adapters
|
|
37
|
+
|
|
38
|
+
## License
|
|
39
|
+
|
|
40
|
+
This package and its dependencies are MIT licensed, permitting free commercial use.
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@zintrust/cache-redis",
|
|
3
|
+
"version": "0.1.15",
|
|
4
|
+
"buildDate": "2026-01-21T12:26:02.757Z",
|
|
5
|
+
"buildEnvironment": {
|
|
6
|
+
"node": "v20.19.6",
|
|
7
|
+
"platform": "linux",
|
|
8
|
+
"arch": "x64"
|
|
9
|
+
},
|
|
10
|
+
"git": {
|
|
11
|
+
"commit": "ae2c0a6",
|
|
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": "fadbb4d6f5766f0726790e8d307437531517e848fc113b7dd8a095e80f064e0e"
|
|
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.
|
|
3
|
+
"version": "0.1.23",
|
|
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.
|
|
25
|
+
"@zintrust/core": "^0.1.23"
|
|
26
26
|
},
|
|
27
27
|
"publishConfig": {
|
|
28
28
|
"access": "public"
|