tpmkms_4wp 8.0.0-beta.2 → 8.0.0-beta.20

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 (42) hide show
  1. package/common/animals.instance.json +2630 -1375
  2. package/common/colors.instance.json +6976 -3515
  3. package/common/colors.test.json +345 -780
  4. package/common/concept.js +5 -2
  5. package/common/crew.instance.json +12836 -6483
  6. package/common/crew.test.json +714 -452
  7. package/common/dialogues.js +2 -18
  8. package/common/dimension.instance.json +242 -261
  9. package/common/dimension.test.json +314 -502
  10. package/common/edible.instance.json +19375 -9971
  11. package/common/emotions.instance.json +122 -69
  12. package/common/fastfood.instance.json +219480 -110844
  13. package/common/formulas.instance.json +216 -250
  14. package/common/formulas.js +2 -2
  15. package/common/help.test.json +10 -22
  16. package/common/helpers/concept.js +10 -6
  17. package/common/kirk.instance.json +564 -290
  18. package/common/length.instance.json +5329 -4793
  19. package/common/math.instance.json +140 -1157
  20. package/common/math.js +4 -4
  21. package/common/negation.instance.json +2 -0
  22. package/common/negation.js +38 -0
  23. package/common/negation.test.json +308 -0
  24. package/common/numbers.js +2 -2
  25. package/common/ordering.instance.json +292 -230
  26. package/common/people.instance.json +1902 -1015
  27. package/common/percentages.instance.json +2 -0
  28. package/common/percentages.js +57 -0
  29. package/common/percentages.test.json +751 -0
  30. package/common/pipboy.instance.json +7756 -6298
  31. package/common/pokemon.instance.json +4006 -2089
  32. package/common/pressure.instance.json +1265 -1193
  33. package/common/properties.instance.json +106 -61
  34. package/common/properties.js +2 -0
  35. package/common/reports.instance.json +557 -559
  36. package/common/sdefaults.js +10 -0
  37. package/common/spock.instance.json +564 -290
  38. package/common/temperature.instance.json +1398 -1250
  39. package/common/ui.instance.json +238 -259
  40. package/common/weight.instance.json +4905 -4166
  41. package/main.js +51 -46
  42. package/package.json +13 -6
package/main.js CHANGED
@@ -3,9 +3,12 @@ const tpm = require('./common/runtime').theprogrammablemind
3
3
  const helpers = require('./common/helpers')
4
4
  const currency = require('./common/currency')
5
5
  const numbers = require('./common/numbers')
6
+ const percentages = require('./common/percentages')
6
7
  const colors = require('./common/colors')
7
8
  const people = require('./common/people')
8
9
  const time = require('./common/time')
10
+ const yesno = require('./common/yesno')
11
+ const negation = require('./common/negation')
9
12
  const avatar = require('./common/avatar')
10
13
  const comparable = require('./common/comparable')
11
14
  const concept = require('./common/concept')
@@ -15,7 +18,6 @@ const hierarchy = require('./common/hierarchy')
15
18
  const ordering = require('./common/ordering')
16
19
  const properties = require('./common/properties')
17
20
  const sizeable = require('./common/sizeable')
18
- const yesno = require('./common/yesno')
19
21
  const tokenize = require('./common/tokenize')
20
22
  const dialogues = require('./common/dialogues')
21
23
  const gdefaults = require('./common/gdefaults')
@@ -47,50 +49,53 @@ const kirk = require('./common/kirk')
47
49
  const spock = require('./common/spock')
48
50
 
49
51
  module.exports = {
50
- Config: tpm.Config,
52
+ Config: tpm.Config,
53
+ helpers,
51
54
  defaultContextCheck: helpers.defaultContextCheck,
52
- currency,
53
- numbers,
54
- colors,
55
- people,
56
- time,
57
- avatar,
58
- comparable,
59
- concept,
60
- countable,
61
- help,
62
- hierarchy,
63
- ordering,
64
- properties,
65
- sizeable,
66
- yesno,
67
- tokenize,
68
- dialogues,
69
- gdefaults,
70
- meta,
71
- pos,
72
- punctuation,
73
- stm,
74
- sdefaults,
75
- ui,
76
- math,
77
- formulas,
78
- dimension,
79
- length,
80
- pressure,
81
- temperature,
82
- weight,
83
- animals,
84
- edible,
85
- javascript,
86
- scorekeeper,
87
- reports,
88
- tell,
89
- pipboy,
90
- fastfood,
91
- characters,
92
- crew,
93
- stgame,
94
- kirk,
95
- spock,
55
+ currency,
56
+ numbers,
57
+ percentages,
58
+ colors,
59
+ people,
60
+ time,
61
+ yesno,
62
+ negation,
63
+ avatar,
64
+ comparable,
65
+ concept,
66
+ countable,
67
+ help,
68
+ hierarchy,
69
+ ordering,
70
+ properties,
71
+ sizeable,
72
+ tokenize,
73
+ dialogues,
74
+ gdefaults,
75
+ meta,
76
+ pos,
77
+ punctuation,
78
+ stm,
79
+ sdefaults,
80
+ ui,
81
+ math,
82
+ formulas,
83
+ dimension,
84
+ length,
85
+ pressure,
86
+ temperature,
87
+ weight,
88
+ animals,
89
+ edible,
90
+ javascript,
91
+ scorekeeper,
92
+ reports,
93
+ tell,
94
+ pipboy,
95
+ fastfood,
96
+ characters,
97
+ crew,
98
+ stgame,
99
+ kirk,
100
+ spock,
96
101
  }
package/package.json CHANGED
@@ -18,9 +18,12 @@
18
18
  "includes": [
19
19
  "currency",
20
20
  "numbers",
21
+ "percentages",
21
22
  "colors",
22
23
  "people",
23
- "time"
24
+ "time",
25
+ "yesno",
26
+ "negation"
24
27
  ]
25
28
  },
26
29
  {
@@ -35,8 +38,7 @@
35
38
  "hierarchy",
36
39
  "ordering",
37
40
  "properties",
38
- "sizeable",
39
- "yesno"
41
+ "sizeable"
40
42
  ]
41
43
  },
42
44
  {
@@ -194,6 +196,9 @@
194
196
  "common/meta.instance.json",
195
197
  "common/meta.js",
196
198
  "common/meta.test.json",
199
+ "common/negation.instance.json",
200
+ "common/negation.js",
201
+ "common/negation.test.json",
197
202
  "common/numbers.js",
198
203
  "common/numbers.test.json",
199
204
  "common/ordering.instance.json",
@@ -202,6 +207,9 @@
202
207
  "common/people.instance.json",
203
208
  "common/people.js",
204
209
  "common/people.test.json",
210
+ "common/percentages.instance.json",
211
+ "common/percentages.js",
212
+ "common/percentages.test.json",
205
213
  "common/pipboy.instance.json",
206
214
  "common/pipboy.js",
207
215
  "common/pipboy.test.json",
@@ -269,12 +277,11 @@
269
277
  "node-fetch": "^2.6.1",
270
278
  "pluralize": "^8.0.0",
271
279
  "scriptjs": "^2.5.9",
272
- "underscore": "^1.12.0",
273
280
  "table": "^6.7.1",
274
281
  "base-64": "^1.0.0",
275
282
  "argparse": "^2.0.1",
276
- "theprogrammablemind_4wp": "8.0.0-beta.2"
283
+ "theprogrammablemind_4wp": "8.0.0-beta.20"
277
284
  },
278
- "version": "8.0.0-beta.2",
285
+ "version": "8.0.0-beta.20",
279
286
  "license": "UNLICENSED"
280
287
  }