tpmkms_4wp 8.0.0-beta.0 → 8.0.0-beta.10
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/animals.instance.json +2634 -1477
- package/common/characters.js +0 -1
- package/common/colors.instance.json +25327 -0
- package/common/colors.js +71 -0
- package/common/colors.test.json +4860 -0
- package/common/concept.js +2 -2
- package/common/crew.instance.json +15918 -9384
- package/common/crew.js +4 -2
- package/common/crew.test.json +714 -452
- package/common/dialogues.js +36 -25
- package/common/dialogues.test.json +1053 -33
- package/common/dimension.instance.json +261 -290
- package/common/dimension.test.json +476 -687
- package/common/edible.instance.json +19462 -10130
- package/common/emotions.instance.json +125 -68
- package/common/fastfood.instance.json +219732 -110803
- package/common/fastfood.js +1 -1
- package/common/fastfood.test.json +7941 -3647
- package/common/formulas.instance.json +219 -249
- package/common/formulas.js +2 -2
- package/common/formulas.test.json +1027 -955
- package/common/help.test.json +20 -28
- package/common/helpers/concept.js +31 -10
- package/common/helpers/dialogues.js +17 -1
- package/common/helpers/formulas.js +0 -14
- package/common/helpers/meta.js +0 -1
- package/common/helpers/properties.js +6 -13
- package/common/kirk.instance.json +567 -289
- package/common/length.instance.json +5232 -4726
- package/common/math.instance.json +143 -1181
- package/common/math.js +4 -4
- package/common/meta.js +0 -2
- package/common/negation.instance.json +2 -0
- package/common/negation.js +38 -0
- package/common/negation.test.json +308 -0
- package/common/ordering.instance.json +298 -160
- package/common/people.instance.json +1930 -1068
- package/common/pipboy.instance.json +7868 -6548
- package/common/pokemon.instance.json +4074 -2152
- package/common/pressure.instance.json +1299 -1237
- package/common/properties.instance.json +109 -60
- package/common/properties.js +9 -7
- package/common/properties.test.json +17605 -4030
- package/common/punctuation.js +8 -0
- package/common/punctuation.test.json +233 -5
- package/common/reports.instance.json +566 -560
- package/common/reports.js +0 -2
- package/common/sizeable.js +7 -2
- package/common/spock.instance.json +567 -289
- package/common/stm.js +16 -5
- package/common/temperature.instance.json +1337 -1263
- package/common/testing.js +0 -1
- package/common/tokenize.js +2 -1
- package/common/tokenize.test.json +86 -1
- package/common/ui.instance.json +241 -258
- package/common/ui.js +0 -1
- package/common/weight.instance.json +4996 -4206
- package/common/weight.test.json +242 -238
- package/main.js +50 -45
- package/package.json +13 -6
package/main.js
CHANGED
@@ -3,8 +3,11 @@ 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 colors = require('./common/colors')
|
6
7
|
const people = require('./common/people')
|
7
8
|
const time = require('./common/time')
|
9
|
+
const yesno = require('./common/yesno')
|
10
|
+
const negation = require('./common/negation')
|
8
11
|
const avatar = require('./common/avatar')
|
9
12
|
const comparable = require('./common/comparable')
|
10
13
|
const concept = require('./common/concept')
|
@@ -14,7 +17,6 @@ const hierarchy = require('./common/hierarchy')
|
|
14
17
|
const ordering = require('./common/ordering')
|
15
18
|
const properties = require('./common/properties')
|
16
19
|
const sizeable = require('./common/sizeable')
|
17
|
-
const yesno = require('./common/yesno')
|
18
20
|
const tokenize = require('./common/tokenize')
|
19
21
|
const dialogues = require('./common/dialogues')
|
20
22
|
const gdefaults = require('./common/gdefaults')
|
@@ -46,49 +48,52 @@ const kirk = require('./common/kirk')
|
|
46
48
|
const spock = require('./common/spock')
|
47
49
|
|
48
50
|
module.exports = {
|
49
|
-
Config: tpm.Config,
|
51
|
+
Config: tpm.Config,
|
52
|
+
helpers,
|
50
53
|
defaultContextCheck: helpers.defaultContextCheck,
|
51
|
-
currency,
|
52
|
-
numbers,
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
54
|
+
currency,
|
55
|
+
numbers,
|
56
|
+
colors,
|
57
|
+
people,
|
58
|
+
time,
|
59
|
+
yesno,
|
60
|
+
negation,
|
61
|
+
avatar,
|
62
|
+
comparable,
|
63
|
+
concept,
|
64
|
+
countable,
|
65
|
+
help,
|
66
|
+
hierarchy,
|
67
|
+
ordering,
|
68
|
+
properties,
|
69
|
+
sizeable,
|
70
|
+
tokenize,
|
71
|
+
dialogues,
|
72
|
+
gdefaults,
|
73
|
+
meta,
|
74
|
+
pos,
|
75
|
+
punctuation,
|
76
|
+
stm,
|
77
|
+
sdefaults,
|
78
|
+
ui,
|
79
|
+
math,
|
80
|
+
formulas,
|
81
|
+
dimension,
|
82
|
+
length,
|
83
|
+
pressure,
|
84
|
+
temperature,
|
85
|
+
weight,
|
86
|
+
animals,
|
87
|
+
edible,
|
88
|
+
javascript,
|
89
|
+
scorekeeper,
|
90
|
+
reports,
|
91
|
+
tell,
|
92
|
+
pipboy,
|
93
|
+
fastfood,
|
94
|
+
characters,
|
95
|
+
crew,
|
96
|
+
stgame,
|
97
|
+
kirk,
|
98
|
+
spock,
|
94
99
|
}
|
package/package.json
CHANGED
@@ -18,8 +18,11 @@
|
|
18
18
|
"includes": [
|
19
19
|
"currency",
|
20
20
|
"numbers",
|
21
|
+
"colors",
|
21
22
|
"people",
|
22
|
-
"time"
|
23
|
+
"time",
|
24
|
+
"yesno",
|
25
|
+
"negation"
|
23
26
|
]
|
24
27
|
},
|
25
28
|
{
|
@@ -34,8 +37,7 @@
|
|
34
37
|
"hierarchy",
|
35
38
|
"ordering",
|
36
39
|
"properties",
|
37
|
-
"sizeable"
|
38
|
-
"yesno"
|
40
|
+
"sizeable"
|
39
41
|
]
|
40
42
|
},
|
41
43
|
{
|
@@ -130,6 +132,9 @@
|
|
130
132
|
"common/avatar.test.json",
|
131
133
|
"common/characters.js",
|
132
134
|
"common/characters.test.json",
|
135
|
+
"common/colors.instance.json",
|
136
|
+
"common/colors.js",
|
137
|
+
"common/colors.test.json",
|
133
138
|
"common/comparable.js",
|
134
139
|
"common/comparable.test.json",
|
135
140
|
"common/concept.instance.json",
|
@@ -190,6 +195,9 @@
|
|
190
195
|
"common/meta.instance.json",
|
191
196
|
"common/meta.js",
|
192
197
|
"common/meta.test.json",
|
198
|
+
"common/negation.instance.json",
|
199
|
+
"common/negation.js",
|
200
|
+
"common/negation.test.json",
|
193
201
|
"common/numbers.js",
|
194
202
|
"common/numbers.test.json",
|
195
203
|
"common/ordering.instance.json",
|
@@ -265,12 +273,11 @@
|
|
265
273
|
"node-fetch": "^2.6.1",
|
266
274
|
"pluralize": "^8.0.0",
|
267
275
|
"scriptjs": "^2.5.9",
|
268
|
-
"underscore": "^1.12.0",
|
269
276
|
"table": "^6.7.1",
|
270
277
|
"base-64": "^1.0.0",
|
271
278
|
"argparse": "^2.0.1",
|
272
|
-
"theprogrammablemind_4wp": "8.0.0-beta.
|
279
|
+
"theprogrammablemind_4wp": "8.0.0-beta.10"
|
273
280
|
},
|
274
|
-
"version": "8.0.0-beta.
|
281
|
+
"version": "8.0.0-beta.10",
|
275
282
|
"license": "UNLICENSED"
|
276
283
|
}
|