theprogrammablemind 7.7.0-beta.16 → 7.7.0-beta.18
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/client.js +5 -0
- package/package.json +1 -1
package/client.js
CHANGED
@@ -30,6 +30,7 @@ const pickObjects = (testConfig, objects) => {
|
|
30
30
|
return project(objects, getConfig_getObjectsCheck(testConfig))
|
31
31
|
}
|
32
32
|
|
33
|
+
// move ask to the KM's since verbatim is called
|
33
34
|
const getAsk = (config) => (uuid) => (asks) => {
|
34
35
|
for (let ask of asks) {
|
35
36
|
let oneShot = true // default
|
@@ -67,13 +68,17 @@ const getAsk = (config) => (uuid) => (asks) => {
|
|
67
68
|
}
|
68
69
|
if (matchq(args)) {
|
69
70
|
// args.context.motivationKeep = true
|
71
|
+
args.verbatim(applyq(args))
|
72
|
+
/*
|
70
73
|
args.context.verbatim = applyq(args)
|
71
74
|
args.context.isResponse = true;
|
72
75
|
delete args.context.controlRemove;
|
76
|
+
*/
|
73
77
|
args.context.controlKeepMotivation = true;
|
74
78
|
break
|
75
79
|
}
|
76
80
|
}
|
81
|
+
args.context.cascade = true
|
77
82
|
}
|
78
83
|
})
|
79
84
|
}
|