@knaus94/prisma-extension-cache-manager 1.5.52 → 1.5.53

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.js +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -222,7 +222,7 @@ exports.default = ({ cache, defaultTTL, debug }) => {
222
222
  const cached = await cache.store.client.getBuffer(cacheKey);
223
223
  if (cached) {
224
224
  if (debug) {
225
- console.log("Cache hit for key:", cacheKey, "data", cached, "decoded", deserialize(cached));
225
+ console.log("Cache hit for key:", cacheKey, "data", cached, "decoded", mp.decode(cached));
226
226
  }
227
227
  // Десериализуем через msgpack5
228
228
  return deserialize(cached);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@knaus94/prisma-extension-cache-manager",
3
- "version": "1.5.52",
3
+ "version": "1.5.53",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/knaus94/prisma-extension-cache-manager.git"