tpmkms_4wp 8.9.1-beta.5 → 8.9.1-beta.6
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 +195 -52
- package/common/articles.js +17 -1
- package/common/articles.test.json +338 -0
- package/common/colors.instance.json +210 -81
- package/common/comparable.instance.json +45 -0
- package/common/countable.js +1 -7
- package/common/countable.test.json +0 -586
- package/common/crew.instance.json +390 -104
- package/common/dimension.instance.json +11 -40
- package/common/edible.instance.json +352 -130
- package/common/emotions.instance.json +15 -60
- package/common/errors.js +2 -0
- package/common/fastfood.instance.json +1773 -1064
- package/common/formulas.instance.json +11 -1
- package/common/gdefaults.js +8 -5
- package/common/help.test.json +4 -4
- package/common/kirk.instance.json +15 -0
- package/common/length.instance.json +165 -20
- package/common/math.instance.json +11 -1
- package/common/ordering.instance.json +31 -55
- package/common/people.instance.json +120 -0
- package/common/pipboy.instance.json +187 -154
- package/common/pokemon.instance.json +195 -5
- package/common/pressure.instance.json +44 -7
- package/common/properties.instance.json +15 -44
- package/common/reports.instance.json +23 -3
- package/common/spock.instance.json +15 -0
- package/common/temperature.instance.json +44 -8
- package/common/ui.instance.json +11 -1
- package/common/weight.instance.json +132 -16
- package/common/wp.instance.json +1669 -170
- package/common/wp.js +57 -27
- package/common/wp.test.json +28343 -2847
- package/package.json +2 -2
@@ -45,11 +45,21 @@
|
|
45
45
|
"theAble",
|
46
46
|
false
|
47
47
|
],
|
48
|
+
[
|
49
|
+
"distributable",
|
50
|
+
"queryable",
|
51
|
+
false
|
52
|
+
],
|
48
53
|
[
|
49
54
|
"doubleQuote",
|
50
55
|
"queryable",
|
51
56
|
false
|
52
57
|
],
|
58
|
+
[
|
59
|
+
"each",
|
60
|
+
"articlePOS",
|
61
|
+
false
|
62
|
+
],
|
53
63
|
[
|
54
64
|
"emotion",
|
55
65
|
"unknown",
|
@@ -60,6 +70,11 @@
|
|
60
70
|
"verb",
|
61
71
|
false
|
62
72
|
],
|
73
|
+
[
|
74
|
+
"every",
|
75
|
+
"articlePOS",
|
76
|
+
false
|
77
|
+
],
|
63
78
|
[
|
64
79
|
"feel",
|
65
80
|
"canBeDoQuestion",
|
@@ -966,36 +981,6 @@
|
|
966
981
|
1
|
967
982
|
]
|
968
983
|
],
|
969
|
-
[
|
970
|
-
[
|
971
|
-
"feel",
|
972
|
-
0
|
973
|
-
],
|
974
|
-
[
|
975
|
-
"is",
|
976
|
-
0
|
977
|
-
],
|
978
|
-
[
|
979
|
-
"means",
|
980
|
-
0
|
981
|
-
],
|
982
|
-
[
|
983
|
-
"propertyOf",
|
984
|
-
0
|
985
|
-
],
|
986
|
-
[
|
987
|
-
"the",
|
988
|
-
0
|
989
|
-
],
|
990
|
-
[
|
991
|
-
"unknown",
|
992
|
-
0
|
993
|
-
],
|
994
|
-
[
|
995
|
-
"unknown",
|
996
|
-
1
|
997
|
-
]
|
998
|
-
],
|
999
984
|
[
|
1000
985
|
[
|
1001
986
|
"feel",
|
@@ -1193,36 +1178,6 @@
|
|
1193
1178
|
1
|
1194
1179
|
]
|
1195
1180
|
],
|
1196
|
-
[
|
1197
|
-
[
|
1198
|
-
"feel",
|
1199
|
-
0
|
1200
|
-
],
|
1201
|
-
[
|
1202
|
-
"is",
|
1203
|
-
0
|
1204
|
-
],
|
1205
|
-
[
|
1206
|
-
"means",
|
1207
|
-
0
|
1208
|
-
],
|
1209
|
-
[
|
1210
|
-
"propertyOf",
|
1211
|
-
0
|
1212
|
-
],
|
1213
|
-
[
|
1214
|
-
"the",
|
1215
|
-
0
|
1216
|
-
],
|
1217
|
-
[
|
1218
|
-
"unknown",
|
1219
|
-
0
|
1220
|
-
],
|
1221
|
-
[
|
1222
|
-
"unknown",
|
1223
|
-
1
|
1224
|
-
]
|
1225
|
-
],
|
1226
1181
|
[
|
1227
1182
|
[
|
1228
1183
|
"feel",
|
package/common/errors.js
CHANGED
@@ -21,6 +21,7 @@ let 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
|
24
25
|
verbatim(`Did not know how to understand "${await gp(argument)}" when applying "${await g(context)}"`)
|
25
26
|
}
|
26
27
|
},
|
@@ -28,6 +29,7 @@ let config = {
|
|
28
29
|
match: ({context}) => context.context?.interpretation_error,
|
29
30
|
apply: async ({context, g, gp, verbatim, contexts}) => {
|
30
31
|
context = context.context
|
32
|
+
debugger
|
31
33
|
const argument = contexts.find( (argument) => argument.argument_id == context.interpretation_error.argument_id )
|
32
34
|
verbatim(`Did not know how to understand "${await gp(argument)}" when applying "${await g(context)}"`)
|
33
35
|
}
|