ekms 9.5.0-beta.0 → 9.5.1-beta.0

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.
Files changed (43) hide show
  1. package/common/asking.js +4 -4
  2. package/common/characters.js +2 -2
  3. package/common/crew.instance.json +47 -61
  4. package/common/crew.test.json +4148 -3324
  5. package/common/dialogues.js +1 -1
  6. package/common/dimension.instance.json +8 -8
  7. package/common/dimension.js +4 -4
  8. package/common/edible.instance.json +72 -0
  9. package/common/emotions.instance.json +26 -0
  10. package/common/emotions.test.json +242 -174
  11. package/common/english_helpers.js +126 -0
  12. package/common/errors.js +3 -3
  13. package/common/evaluate.js +2 -2
  14. package/common/events.js +8 -8
  15. package/common/fastfood.instance.json +242 -18
  16. package/common/formulas.js +1 -1
  17. package/common/gdefaults.js +19 -2
  18. package/common/help.js +1 -1
  19. package/common/helpers/meta.js +1 -1
  20. package/common/helpers/properties.js +91 -49
  21. package/common/helpers.js +53 -0
  22. package/common/latin.instance.json +2 -2
  23. package/common/latin.js +4 -4
  24. package/common/listener.js +1 -1
  25. package/common/math.instance.json +8 -8
  26. package/common/math.js +4 -4
  27. package/common/meta.js +27 -27
  28. package/common/nameable.js +7 -7
  29. package/common/ordering.instance.json +78 -0
  30. package/common/ordering.test.json +663 -233
  31. package/common/people.instance.json +26 -12
  32. package/common/people.js +5 -3
  33. package/common/people.test.json +4071 -3813
  34. package/common/pipboy.js +2 -3
  35. package/common/properties.js +6 -1
  36. package/common/reminders.instance.json +4 -4
  37. package/common/reminders.js +2 -2
  38. package/common/reports.instance.json +2 -2
  39. package/common/scorekeeper.js +2 -2
  40. package/common/stm.js +2 -2
  41. package/common/tokenize.js +4 -1
  42. package/common/wp.instance.json +74 -2
  43. package/package.json +4 -2
package/common/stm.js CHANGED
@@ -189,8 +189,8 @@ const config = {
189
189
  ],
190
190
  words: {
191
191
  literals: {
192
- "m1": [{"id": "memorable", development: true, "initial": "{ value: 'm1' }" }],
193
- "m2": [{"id": "memorable", development: true, "initial": "{ value: 'm2' }" }],
192
+ "m1": [{"id": "memorable", scope: "testing", "initial": "{ value: 'm1' }" }],
193
+ "m2": [{"id": "memorable", scope: "testing", "initial": "{ value: 'm2' }" }],
194
194
  },
195
195
  },
196
196
  bridges: [
@@ -69,7 +69,10 @@ knowledgeModule( {
69
69
  name: './tokenize.test.json',
70
70
  contents: tokenize_tests,
71
71
  checks: {
72
- context: [defaultContextCheck()],
72
+ context: [
73
+ defaultContextCheck({ marker: 'unknown', exported: true, extra: ['marker', 'text', 'value'] }),
74
+ defaultContextCheck(),
75
+ ],
73
76
  },
74
77
  },
75
78
  })
@@ -27,6 +27,42 @@
27
27
  ],
28
28
  "associations": {
29
29
  "positive": [
30
+ {
31
+ "context": [
32
+ [
33
+ "style_wp",
34
+ 0
35
+ ],
36
+ [
37
+ "the",
38
+ 0
39
+ ],
40
+ [
41
+ "letter_wp",
42
+ 0
43
+ ],
44
+ [
45
+ "statefulElementInContext_wp",
46
+ 0
47
+ ],
48
+ [
49
+ "the",
50
+ 0
51
+ ],
52
+ [
53
+ "ordinal",
54
+ 1
55
+ ],
56
+ [
57
+ "paragraph_wp",
58
+ 0
59
+ ]
60
+ ],
61
+ "choose": {
62
+ "index": 0,
63
+ "increment": true
64
+ }
65
+ },
30
66
  {
31
67
  "context": [
32
68
  [
@@ -53465,6 +53501,42 @@
53465
53501
  ],
53466
53502
  "associations": {
53467
53503
  "positive": [
53504
+ {
53505
+ "context": [
53506
+ [
53507
+ "style_wp",
53508
+ 0
53509
+ ],
53510
+ [
53511
+ "the",
53512
+ 0
53513
+ ],
53514
+ [
53515
+ "letter_wp",
53516
+ 0
53517
+ ],
53518
+ [
53519
+ "statefulElementInContext_wp",
53520
+ 0
53521
+ ],
53522
+ [
53523
+ "the",
53524
+ 0
53525
+ ],
53526
+ [
53527
+ "ordinal",
53528
+ 1
53529
+ ],
53530
+ [
53531
+ "paragraph_wp",
53532
+ 0
53533
+ ]
53534
+ ],
53535
+ "choose": {
53536
+ "index": 0,
53537
+ "increment": true
53538
+ }
53539
+ },
53468
53540
  {
53469
53541
  "context": [
53470
53542
  [
@@ -54155,10 +54227,10 @@
54155
54227
  ],
54156
54228
  "semantics": [
54157
54229
  {
54158
- "where": "/home/dev/code/theprogrammablemind/kms/common/wp.js:393"
54230
+ "where": "/home/dev/code/theprogrammablemind/kms/common/wp.js:395"
54159
54231
  },
54160
54232
  {
54161
- "where": "/home/dev/code/theprogrammablemind/kms/common/wp.js:402"
54233
+ "where": "/home/dev/code/theprogrammablemind/kms/common/wp.js:404"
54162
54234
  }
54163
54235
  ],
54164
54236
  "priorities": [
package/package.json CHANGED
@@ -200,6 +200,7 @@
200
200
  "common/emotions.instance.json",
201
201
  "common/emotions.js",
202
202
  "common/emotions.test.json",
203
+ "common/english_helpers.js",
203
204
  "common/errors.js",
204
205
  "common/errors.test.json",
205
206
  "common/evaluate.instance.json",
@@ -344,6 +345,7 @@
344
345
  "dependencies": {
345
346
  "argparse": "^2.0.1",
346
347
  "base-64": "^1.0.0",
348
+ "bluebird": "^3.7.2",
347
349
  "deep-equal": "^2.0.5",
348
350
  "lodash": "^4.17.21",
349
351
  "node-fetch": "^2.6.1",
@@ -352,8 +354,8 @@
352
354
  "scriptjs": "^2.5.9",
353
355
  "table": "^6.7.1",
354
356
  "uuid": "^9.0.0",
355
- "theprogrammablemind": "9.5.0-beta.0"
357
+ "theprogrammablemind": "9.5.1-beta.0"
356
358
  },
357
- "version": "9.5.0-beta.0",
359
+ "version": "9.5.1-beta.0",
358
360
  "license": "UNLICENSED"
359
361
  }