secure-store-redis
Advanced tools
Comparing version 2.0.0 to 2.0.1
@@ -8,3 +8,3 @@ import { RedisConnectionPoolConfig } from "redis-connection-pool"; | ||
private pool; | ||
constructor(uid: string, secret: string, redisConfig: any, rcpConfig: RedisConnectionPoolConfig); | ||
constructor(uid: string, secret: string, redisConfig?: any, rcpConfig?: RedisConnectionPoolConfig); | ||
init(): Promise<void>; | ||
@@ -11,0 +11,0 @@ save(key: string, data: any, postfix?: string): Promise<any>; |
{ | ||
"name": "secure-store-redis", | ||
"version": "2.0.0", | ||
"version": "2.0.1", | ||
"description": "A simple wrapper to encrypt and decrypt data stored in Redis", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -14,3 +14,3 @@ import redisConnectionPoolFactory, {RedisConnectionPool, RedisConnectionPoolConfig} from "redis-connection-pool"; | ||
constructor(uid: string, secret: string, redisConfig: any, rcpConfig: RedisConnectionPoolConfig) { | ||
constructor(uid: string, secret: string, redisConfig?: any, rcpConfig?: RedisConnectionPoolConfig) { | ||
if (typeof uid !== 'string') { | ||
@@ -17,0 +17,0 @@ throw new Error('A uid must be specified'); |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
16080
0