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 CHANGED
@@ -131,7 +131,7 @@ Using ioredis
131
131
 
132
132
  ```ts
133
133
  import Redis from 'ioredis';
134
- import { RedisBlacklistStore } from 'smart-security/dist/blacklist/redis.store';
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
@@ -1,3 +1,6 @@
1
1
  export * from './apply-security';
2
2
  export * from './types';
3
3
  export * from './utils';
4
+ export * from './blacklist/blacklist.interface';
5
+ export * from './blacklist/memory.store';
6
+ export * from './blacklist/redis.store';
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);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "auto-smart-security",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Production-ready security middleware for Express / NestJS",
5
5
  "author": "Hai Vinh <haivinhinspirit@gmail.com>",
6
6
  "main": "dist/index.js",