tpmkms_4wp 8.9.1-beta.28 → 8.9.1-beta.29
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/common/dialogues.js +2 -2
- package/common/errors.js +0 -2
- package/common/gdefaults.js +0 -1
- package/common/helpers/properties.js +0 -4
- package/common/percentages.js +0 -1
- package/common/stgame.js +0 -1
- package/package.json +2 -2
package/common/dialogues.js
CHANGED
@@ -627,8 +627,8 @@ const config = {
|
|
627
627
|
todo: 'debug23',
|
628
628
|
match: ({context}) => context.marker == 'debug23',
|
629
629
|
apply: ({context, hierarchy}) => {
|
630
|
-
debugger
|
631
|
-
debugger
|
630
|
+
debugger // eslint-disable-line no-debugger
|
631
|
+
debugger // eslint-disable-line no-debugger
|
632
632
|
},
|
633
633
|
},
|
634
634
|
{
|
package/common/errors.js
CHANGED
@@ -21,7 +21,6 @@ const config = {
|
|
21
21
|
match: ({context}) => context.interpretation_error,
|
22
22
|
apply: async ({context, g, gp, verbatim, contexts}) => {
|
23
23
|
const argument = contexts.find( (argument) => argument.argument_id == context.interpretation_error.argument_id )
|
24
|
-
debugger
|
25
24
|
verbatim(`Did not know how to understand "${await gp(argument)}" when applying "${await g(context)}"`)
|
26
25
|
}
|
27
26
|
},
|
@@ -29,7 +28,6 @@ const config = {
|
|
29
28
|
match: ({context}) => context.context?.interpretation_error,
|
30
29
|
apply: async ({context, g, gp, verbatim, contexts}) => {
|
31
30
|
context = context.context
|
32
|
-
debugger
|
33
31
|
const argument = contexts.find( (argument) => argument.argument_id == context.interpretation_error.argument_id )
|
34
32
|
verbatim(`Did not know how to understand "${await gp(argument)}" when applying "${await g(context)}"`)
|
35
33
|
}
|
package/common/gdefaults.js
CHANGED
package/common/percentages.js
CHANGED
@@ -21,7 +21,6 @@ const config = {
|
|
21
21
|
words: ['percent', '%'],
|
22
22
|
bridge: "{ ...next(operator), percentage: before[0], isResponse: true, semanticIsEvaluate: true, value: after[0] }",
|
23
23
|
evaluator: async ({context, e}) => {
|
24
|
-
debugger
|
25
24
|
const scale = context.percentage.scale
|
26
25
|
const number = await e(context.value)
|
27
26
|
const percentage = number.value * scale.value / 100
|
package/common/stgame.js
CHANGED
@@ -53,7 +53,6 @@ class SpockAPI {
|
|
53
53
|
}
|
54
54
|
|
55
55
|
process(config, utterance) {
|
56
|
-
debugger
|
57
56
|
this.spock.server(config.getServer(), config.getAPIKey())
|
58
57
|
// return this.spock.process(utterance, { credentials: this.credentials })
|
59
58
|
return clientProcess(this.spock, utterance, { credentials: this.credentials })
|
package/package.json
CHANGED
@@ -320,8 +320,8 @@
|
|
320
320
|
"scriptjs": "^2.5.9",
|
321
321
|
"table": "^6.7.1",
|
322
322
|
"uuid": "^9.0.0",
|
323
|
-
"theprogrammablemind_4wp": "8.9.1-beta.
|
323
|
+
"theprogrammablemind_4wp": "8.9.1-beta.29"
|
324
324
|
},
|
325
|
-
"version": "8.9.1-beta.
|
325
|
+
"version": "8.9.1-beta.29",
|
326
326
|
"license": "UNLICENSED"
|
327
327
|
}
|