dsd-client-conn-lib
Advanced tools
Comparing version 1.1.20 to 1.1.21
@@ -32,3 +32,3 @@ /** | ||
getCoreClient() { | ||
if(this.config.core.restMode) | ||
if(this.config.core.restMode || this.config.restMode) | ||
return this._getCoreRestClient(); | ||
@@ -43,3 +43,3 @@ else | ||
getDaseClient() { | ||
if(this.config.dase.restMode) | ||
if(this.config.dase.restMode || this.config.restMode) | ||
return this._getDaseRestClient(); | ||
@@ -54,3 +54,3 @@ else | ||
getPdsClient() { | ||
if(this.config.pds.restMode) | ||
if(this.config.pds.restMode || this.config.restMode) | ||
return this._getPdsRestClient(); | ||
@@ -66,3 +66,3 @@ else | ||
getKeychainClient() { | ||
if(this.config.keychain.restMode) | ||
if(this.config.keychain.restMode || this.config.restMode) | ||
return this._getKeychainRestClient(); | ||
@@ -69,0 +69,0 @@ else |
{ | ||
"name": "dsd-client-conn-lib", | ||
"version": "1.1.20", | ||
"version": "1.1.21", | ||
"dependencies": { | ||
@@ -5,0 +5,0 @@ "dsd-constants-lib": "^1.1.5", |
398638