@indra.ai/deva 1.2.10 → 1.2.11
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/config.json +0 -3
- package/index.js +1 -1
- package/package.json +1 -1
package/config.json
CHANGED
|
@@ -166,12 +166,9 @@
|
|
|
166
166
|
},
|
|
167
167
|
"feature": false,
|
|
168
168
|
"features": {
|
|
169
|
-
"client": "Client",
|
|
170
|
-
"agent": "Agent",
|
|
171
169
|
"security": "Security",
|
|
172
170
|
"support": "Support",
|
|
173
171
|
"services": "Services",
|
|
174
|
-
"solutions": "Solutions",
|
|
175
172
|
"systems": "Systems"
|
|
176
173
|
},
|
|
177
174
|
"message": "offline",
|
package/index.js
CHANGED
|
@@ -336,7 +336,7 @@ class Deva {
|
|
|
336
336
|
this.zone('systems');
|
|
337
337
|
const _cl = this.client();
|
|
338
338
|
try {
|
|
339
|
-
if (!_cl.features.systems) return this.Done(); // move to
|
|
339
|
+
if (!_cl.features.systems) return this.Done(); // move to Done if no systems feature
|
|
340
340
|
else {
|
|
341
341
|
this.state('data');
|
|
342
342
|
const {id, features, profile} = _cl; // set the local consts from client copy
|