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.
@@ -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
  }
@@ -52,7 +52,6 @@ const config = {
52
52
  contexts.push({...context, generate: null})
53
53
  } else {
54
54
  if (Array.isArray(value)) {
55
- debugger
56
55
  contexts.push(...value)
57
56
  } else {
58
57
  contexts.push(value)
@@ -45,10 +45,6 @@ class API {
45
45
  }
46
46
 
47
47
  if (km('concept')) {
48
- if (!km('concept').api) {
49
- debugger
50
- debugger
51
- }
52
48
  km('concept').api.addDefaultTypesForObjectHierarchy([
53
49
  'theAble',
54
50
  'queryable',
@@ -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.28"
323
+ "theprogrammablemind_4wp": "8.9.1-beta.29"
324
324
  },
325
- "version": "8.9.1-beta.28",
325
+ "version": "8.9.1-beta.29",
326
326
  "license": "UNLICENSED"
327
327
  }