@stacksjs/cache 0.58.72 → 0.59.1

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.
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ export * as redis from './redis';
2
+ export * as dynamodb from './dynamodb';
@@ -0,0 +1,8 @@
1
+ import Redis from 'ioredis';
2
+ export declare const client: Redis;
3
+ export declare function set(key: string, value: any): Promise<void>;
4
+ export declare function get(key: string): Promise<any>;
5
+ export declare function remove(key: string): Promise<void>;
6
+ export declare function del(key: string): Promise<void>;
7
+ export declare function flushAll(): Promise<void>;
8
+ export declare function flushDB(): Promise<void>;
@@ -0,0 +1 @@
1
+ export * from './drivers';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/cache",
3
3
  "type": "module",
4
- "version": "0.58.72",
4
+ "version": "0.59.1",
5
5
  "description": "Caching the Stacks way.",
6
6
  "author": "Chris Breuer",
7
7
  "license": "MIT",
@@ -57,7 +57,7 @@
57
57
  "@stacksjs/config": "latest"
58
58
  },
59
59
  "optionalDependencies": {
60
- "@aws-sdk/client-dynamodb": "^3.515.0",
60
+ "@aws-sdk/client-dynamodb": "^3.525.0",
61
61
  "ioredis": "^5.3.2"
62
62
  },
63
63
  "devDependencies": {