ekms 8.0.0-beta.3 → 8.0.0-beta.31

Sign up to get free protection for your applications and to get access to all the features.
Files changed (86) hide show
  1. package/common/animals.instance.json +2542 -1375
  2. package/common/animals.js +2 -2
  3. package/common/avatar.js +2 -2
  4. package/common/characters.js +9 -11
  5. package/common/colors.instance.json +6646 -3529
  6. package/common/colors.js +2 -2
  7. package/common/colors.test.json +345 -780
  8. package/common/comparable.js +2 -15
  9. package/common/concept.js +17 -11
  10. package/common/countable.js +5 -5
  11. package/common/crew.instance.json +12534 -6597
  12. package/common/crew.js +4 -4
  13. package/common/crew.test.json +714 -452
  14. package/common/currency.js +7 -7
  15. package/common/dialogues.js +53 -138
  16. package/common/dimension.instance.json +246 -265
  17. package/common/dimension.js +12 -12
  18. package/common/dimension.test.json +446 -1640
  19. package/common/edible.instance.json +19308 -10008
  20. package/common/edible.js +2 -2
  21. package/common/emotions.instance.json +122 -129
  22. package/common/emotions.js +4 -4
  23. package/common/events.js +6 -6
  24. package/common/fastfood.instance.json +219409 -111252
  25. package/common/fastfood.js +24 -24
  26. package/common/formulas.instance.json +222 -256
  27. package/common/formulas.js +14 -14
  28. package/common/gdefaults.js +13 -13
  29. package/common/help.js +4 -4
  30. package/common/help.test.json +10 -22
  31. package/common/helpers/concept.js +9 -6
  32. package/common/helpers/dialogues.js +2 -3
  33. package/common/helpers/properties.js +48 -58
  34. package/common/hierarchy.js +12 -16
  35. package/common/javascript.js +8 -8
  36. package/common/kirk.instance.json +564 -290
  37. package/common/kirk.js +2 -2
  38. package/common/length.instance.json +5153 -4677
  39. package/common/length.js +2 -2
  40. package/common/math.instance.json +152 -1169
  41. package/common/math.js +11 -11
  42. package/common/meta.js +22 -29
  43. package/common/negation.instance.json +2 -0
  44. package/common/negation.js +38 -0
  45. package/common/negation.test.json +308 -0
  46. package/common/numbers.js +3 -3
  47. package/common/ordering.instance.json +292 -230
  48. package/common/ordering.js +5 -5
  49. package/common/people.instance.json +1902 -1015
  50. package/common/people.js +4 -5
  51. package/common/percentages.instance.json +2 -0
  52. package/common/percentages.js +57 -0
  53. package/common/percentages.test.json +751 -0
  54. package/common/pipboy.instance.json +7720 -6386
  55. package/common/pipboy.js +29 -32
  56. package/common/pokemon.instance.json +3954 -2081
  57. package/common/pokemon.js +4 -4
  58. package/common/pos.js +1 -1
  59. package/common/pressure.instance.json +1265 -1193
  60. package/common/pressure.js +2 -2
  61. package/common/properties.instance.json +106 -61
  62. package/common/properties.js +54 -125
  63. package/common/punctuation.js +2 -2
  64. package/common/reports.instance.json +557 -559
  65. package/common/reports.js +54 -74
  66. package/common/scorekeeper.js +13 -21
  67. package/common/sdefaults.js +13 -3
  68. package/common/sizeable.js +2 -2
  69. package/common/spock.instance.json +564 -290
  70. package/common/spock.js +2 -2
  71. package/common/stgame.js +13 -9
  72. package/common/stm.js +4 -4
  73. package/common/tell.js +10 -10
  74. package/common/temperature.instance.json +1297 -1209
  75. package/common/temperature.js +2 -2
  76. package/common/tester.js +2 -2
  77. package/common/testing.js +5 -5
  78. package/common/time.js +7 -7
  79. package/common/tokenize.js +1 -1
  80. package/common/ui.instance.json +238 -259
  81. package/common/ui.js +9 -9
  82. package/common/weight.instance.json +4905 -4166
  83. package/common/weight.js +2 -2
  84. package/common/yesno.js +1 -1
  85. package/main.js +51 -46
  86. package/package.json +13 -6
@@ -14,9 +14,9 @@ const template = {
14
14
  ],
15
15
  }
16
16
 
17
- const createConfig = () => {
17
+ const createConfig = async () => {
18
18
  const config = new Config({ name: 'temperature' }, module)
19
- config.add(dimension())
19
+ await config.add(dimension)
20
20
  return config
21
21
  }
22
22
 
package/common/tester.js CHANGED
@@ -12,7 +12,7 @@ const [args, unknown] = parser.parse_known_args()
12
12
 
13
13
  process.argv = [process.argv[0], process.argv[1], ...unknown]
14
14
 
15
- const createConfig = () => {
15
+ const createConfig = async () => {
16
16
  const config = new Config({ name: 'tester' })
17
17
  global.theprogrammablemind = {
18
18
  loadForTesting: {}
@@ -21,7 +21,7 @@ const createConfig = () => {
21
21
  global.theprogrammablemind.loadForTesting[module] = true
22
22
  const km = require(`./${module}`)
23
23
  // km.rebuild({ isModule: false }) // load the usually defaults
24
- config.add(km())
24
+ await config.add(km)
25
25
  }
26
26
  return config
27
27
  }
package/common/testing.js CHANGED
@@ -13,9 +13,9 @@ let configStruct = {
13
13
  {
14
14
  where: where(),
15
15
  id: 'testingEvaluate',
16
- generatorp: ({context, g}) => `${context.word} ${g(context.value)}`,
17
- semantic: ({context, e}) => {
18
- context.evalue = e(context.value)
16
+ generatorp: async ({context, g}) => `${context.word} ${await g(context.value)}`,
17
+ semantic: async ({context, e}) => {
18
+ context.evalue = await e(context.value)
19
19
  context.isResponse = true
20
20
  },
21
21
  bridge: "{ ...next(operator), value: after[0] }",
@@ -30,9 +30,9 @@ let configStruct = {
30
30
  ],
31
31
  };
32
32
 
33
- const createConfig = () => {
33
+ const createConfig = async () => {
34
34
  const config = new Config(configStruct, module)
35
- config.add(gdefaults())
35
+ await config.add(gdefaults)
36
36
  return config
37
37
  }
38
38
 
package/common/time.js CHANGED
@@ -103,12 +103,12 @@ const configStruct = {
103
103
  {
104
104
  where: where(),
105
105
  match: ({context}) => context.marker == 'ampm' && context.paraphrase,
106
- apply: ({g, context, gp}) => `${gp(context.hour)} ${context.ampm}`
106
+ apply: async ({g, context, gp}) => `${await gp(context.hour)} ${context.ampm}`
107
107
  },
108
108
  {
109
109
  where: where(),
110
110
  match: ({context}) => context.marker == 'time' && context.evalue && context.format == 12,
111
- apply: ({g, context}) => {
111
+ apply: ({context}) => {
112
112
  let hh = context.evalue.getHours();
113
113
  let ampm = 'am'
114
114
  if (hh > 12) {
@@ -170,12 +170,12 @@ const configStruct = {
170
170
  ],
171
171
  };
172
172
 
173
- const createConfig = () => {
173
+ const createConfig = async () => {
174
174
  const config = new Config(configStruct, module)
175
175
  config.stop_auto_rebuild()
176
- config.add(tell()).add(numbers()).add(countable())
177
- config.api = api
178
- config.initializer( ({config, objects, kms, isModule}) => {
176
+ await config.add(tell, numbers, countable)
177
+ await config.setApi(api)
178
+ await config.initializer( ({config, objects, kms, isModule}) => {
179
179
  if (!isModule) {
180
180
  kms.time.api.newDate = () => new Date("December 25, 1995 1:59:58 pm" )
181
181
  }
@@ -187,7 +187,7 @@ const createConfig = () => {
187
187
  apply: api.semantics
188
188
  })
189
189
  })
190
- config.restart_auto_rebuild()
190
+ await config.restart_auto_rebuild()
191
191
  return config
192
192
  }
193
193
 
@@ -31,7 +31,7 @@ let configStruct = {
31
31
  },
32
32
  };
33
33
 
34
- createConfig = () => new Config(configStruct, module)
34
+ createConfig = async () => new Config(configStruct, module)
35
35
 
36
36
  knowledgeModule( {
37
37
  module,