@indra.ai/deva 1.1.120 → 1.1.122
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 +10 -10
- package/index.js +2 -1
- package/package.json +1 -1
package/config.json
CHANGED
|
@@ -179,25 +179,25 @@
|
|
|
179
179
|
"ask": "asking a question",
|
|
180
180
|
"ask_answer": "answering a question",
|
|
181
181
|
|
|
182
|
-
"security": "
|
|
182
|
+
"security": "security feature action",
|
|
183
183
|
"Security": "loading the Security Feature",
|
|
184
|
-
"support": "
|
|
184
|
+
"support": "support feature action",
|
|
185
185
|
"Support": "loading the Support Feature",
|
|
186
|
-
"services": "
|
|
186
|
+
"services": "services feature action",
|
|
187
187
|
"Services": "loading the Services Feature",
|
|
188
|
-
"solutions": "
|
|
188
|
+
"solutions": "solutions feature action",
|
|
189
189
|
"Solutions": "loading the Services Feature",
|
|
190
|
-
"systems": "
|
|
190
|
+
"systems": "systems feature action",
|
|
191
191
|
"Systems": "loading the Systems Feature",
|
|
192
|
-
"research": "
|
|
192
|
+
"research": "research feature action",
|
|
193
193
|
"Research": "loading the Research Feature",
|
|
194
|
-
"development": "
|
|
194
|
+
"development": "development feature action",
|
|
195
195
|
"Development": "loading the Development Feature",
|
|
196
|
-
"business": "
|
|
196
|
+
"business": "business feature action",
|
|
197
197
|
"Business": "loading the Business Feature",
|
|
198
|
-
"legal": "
|
|
198
|
+
"legal": "legal feature action",
|
|
199
199
|
"Legal": "loading the Legal Feature",
|
|
200
|
-
"assistant": "
|
|
200
|
+
"assistant": "assistant feature action",
|
|
201
201
|
"Assistant": "loading the Assistant Feature",
|
|
202
202
|
"client_data": "configure client data",
|
|
203
203
|
"invalid": "invalid action",
|
package/index.js
CHANGED
|
@@ -1210,8 +1210,9 @@ class Deva {
|
|
|
1210
1210
|
- st: The context flag to set for the Deva that matches to this._contexts
|
|
1211
1211
|
describe
|
|
1212
1212
|
***************/
|
|
1213
|
-
context(value) {
|
|
1213
|
+
context(value=false) {
|
|
1214
1214
|
try {
|
|
1215
|
+
if (!value) return this._context;
|
|
1215
1216
|
this._context = value;
|
|
1216
1217
|
const data = {
|
|
1217
1218
|
id: this.uid(true),
|