auto-smart-security 1.0.0 → 1.0.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.
- package/README.md +1 -1
- package/dist/index.d.ts +3 -0
- package/dist/index.js +3 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -131,7 +131,7 @@ Using ioredis
|
|
|
131
131
|
|
|
132
132
|
```ts
|
|
133
133
|
import Redis from 'ioredis';
|
|
134
|
-
import { RedisBlacklistStore } from 'smart-security
|
|
134
|
+
import { RedisBlacklistStore } from 'smart-security';
|
|
135
135
|
|
|
136
136
|
const redis = new Redis(process.env.REDIS_URL);
|
|
137
137
|
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -17,3 +17,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17
17
|
__exportStar(require("./apply-security"), exports);
|
|
18
18
|
__exportStar(require("./types"), exports);
|
|
19
19
|
__exportStar(require("./utils"), exports);
|
|
20
|
+
__exportStar(require("./blacklist/blacklist.interface"), exports);
|
|
21
|
+
__exportStar(require("./blacklist/memory.store"), exports);
|
|
22
|
+
__exportStar(require("./blacklist/redis.store"), exports);
|