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/common/reports.js
CHANGED
@@ -460,7 +460,6 @@ let configStruct = {
|
|
460
460
|
const products = context.listing
|
461
461
|
const columns = objects.listings[context.id].columns
|
462
462
|
if (false) {
|
463
|
-
debugger;
|
464
463
|
kms.stm.api.setVariable('price', { marker: 'price', value: 23 })
|
465
464
|
kms.stm.api.setVariable('quantity', { marker: 'quantity', value: 3 })
|
466
465
|
const c1 = { marker: 'worth', value: 'worth' }
|
@@ -506,7 +505,6 @@ let configStruct = {
|
|
506
505
|
const responses = []
|
507
506
|
for (let value of values) {
|
508
507
|
if (!value.value || value.pullFromContext) {
|
509
|
-
debugger
|
510
508
|
value = e(value)
|
511
509
|
}
|
512
510
|
let id = value.value
|
package/common/sizeable.js
CHANGED
@@ -22,7 +22,12 @@ let configStruct = {
|
|
22
22
|
{
|
23
23
|
id: "size",
|
24
24
|
parents: ['adjective'],
|
25
|
-
words: [
|
25
|
+
words: [
|
26
|
+
{ word: 'small', value: 'small' },
|
27
|
+
{ word: 'medium', value: 'medium' },
|
28
|
+
{ word: 'large', value: 'large' },
|
29
|
+
{ word: 'half', value: 'half' },
|
30
|
+
{ word: 'full', value: 'full' }],
|
26
31
|
level: 0,
|
27
32
|
bridge: "{ ...next(operator) }"
|
28
33
|
},
|
@@ -61,7 +66,7 @@ knowledgeModule({
|
|
61
66
|
name: './sizeable.test.json',
|
62
67
|
contents: sizeable_tests,
|
63
68
|
checks: {
|
64
|
-
context: defaultContextCheck,
|
69
|
+
context: [ ...defaultContextCheck, { property: 'size', filter: ['value'] } ],
|
65
70
|
},
|
66
71
|
},
|
67
72
|
})
|