tpmkms_4wp 9.3.0-beta.6 → 9.3.0-beta.60
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 +0 -65
- package/common/animals.js +2 -3
- package/common/animals.test.json +1607 -1
- package/common/articles.js +2 -4
- package/common/asking.js +21 -5
- package/common/avatar.js +2 -2
- package/common/characters.js +2 -2
- package/common/colors.instance.json +28 -70
- package/common/colors.js +2 -2
- package/common/comparable.instance.json +0 -15
- package/common/comparable.js +2 -2
- package/common/concept.js +1 -2
- package/common/concept.test.json +279 -193
- package/common/conjunction.js +3 -5
- package/common/countable.js +2 -14
- package/common/crew.instance.json +72 -130
- package/common/crew.js +2 -2
- package/common/currency.js +2 -3
- package/common/dateTimeSelectors.instance.json +175 -0
- package/common/dateTimeSelectors.js +168 -0
- package/common/dateTimeSelectors.test.json +85622 -0
- package/common/dates.instance.json +538 -506
- package/common/dates.js +112 -15
- package/common/dates.test.json +11021 -514
- package/common/dialogues.js +13 -49
- package/common/dimension.instance.json +0 -5
- package/common/dimension.js +4 -4
- package/common/edible.instance.json +56 -160
- package/common/edible.js +2 -2
- package/common/emotions.instance.json +0 -5
- package/common/emotions.js +2 -2
- package/common/errors.js +3 -0
- package/common/evaluate.js +2 -2
- package/common/events.js +1 -2
- package/common/fastfood.instance.json +172 -435
- package/common/fastfood.js +2 -4
- package/common/fastfood.test.json +16291 -6597
- package/common/formulas.instance.json +0 -5
- package/common/formulas.js +3 -1
- package/common/gdefaults.js +2 -3
- package/common/help.js +2 -2
- package/common/helpers/dateTimeSelectors.js +198 -0
- package/common/helpers/dialogues.js +11 -8
- package/common/helpers/properties.js +2 -2
- package/common/helpers.js +23 -47
- package/common/hierarchy.js +12 -13
- package/common/javascript.js +2 -3
- package/common/kirk.instance.json +0 -5
- package/common/kirk.js +2 -3
- package/common/length.instance.json +0 -75
- package/common/length.js +2 -3
- package/common/listener.js +3 -1
- package/common/math.instance.json +0 -5
- package/common/math.js +2 -3
- package/common/menus.instance.json +0 -35
- package/common/menus.js +3 -1
- package/common/meta.js +4 -5
- package/common/nameable.js +3 -1
- package/common/negation.js +2 -2
- package/common/numbers.js +7 -4
- package/common/numbers.test.json +89 -23
- package/common/ordering.instance.json +0 -10
- package/common/ordering.js +2 -3
- package/common/ordinals.js +2 -3
- package/common/people.instance.json +0 -40
- package/common/people.js +2 -3
- package/common/percentages.js +3 -4
- package/common/percentages.test.json +57 -11
- package/common/pipboy.instance.json +84 -85
- package/common/pipboy.js +1 -1
- package/common/pipboy.test.json +4377 -3386
- package/common/pokemon.instance.json +0 -65
- package/common/pokemon.js +1 -2
- package/common/pos.js +2 -2
- package/common/pressure.instance.json +0 -20
- package/common/pressure.js +2 -2
- package/common/properties.instance.json +0 -5
- package/common/properties.js +11 -13
- package/common/punctuation.js +2 -2
- package/common/reminders.instance.json +153 -23
- package/common/reminders.js +275 -82
- package/common/reminders.test.json +75654 -37
- package/common/reports.instance.json +1 -11
- package/common/reports.js +1 -1
- package/common/scorekeeper.js +2 -2
- package/common/scorekeeper.test.json +3565 -7550
- package/common/sdefaults.js +1 -1
- package/common/self.js +1 -1
- package/common/sizeable.js +2 -2
- package/common/spock.instance.json +0 -5
- package/common/spock.js +1 -1
- package/common/stgame.js +1 -1
- package/common/stm.js +1 -1
- package/common/tell.js +2 -2
- package/common/temperature.instance.json +84 -20
- package/common/temperature.js +2 -2
- package/common/tester.js +0 -1
- package/common/testing.js +0 -1
- package/common/time.js +57 -30
- package/common/time.test.json +4159 -205
- package/common/tokenize.js +1 -1
- package/common/ui.instance.json +0 -5
- package/common/ui.js +4 -2
- package/common/weight.instance.json +0 -112
- package/common/weight.js +2 -2
- package/common/wp.instance.json +56 -70
- package/common/wp.js +1 -3
- package/common/wp.test.json +8057 -3867
- package/common/yesno.js +2 -2
- package/main.js +2 -0
- package/package.json +8 -4
package/common/sdefaults.js
CHANGED
package/common/self.js
CHANGED
package/common/sizeable.js
CHANGED
package/common/spock.js
CHANGED
package/common/stgame.js
CHANGED
package/common/stm.js
CHANGED
@@ -270,7 +270,7 @@ knowledgeModule( {
|
|
270
270
|
name: './stm.test.json',
|
271
271
|
contents: stm_tests,
|
272
272
|
checks: {
|
273
|
-
|
273
|
+
context: [defaultContextCheck({ extra: ['pullFromContext', 'stm_id'] })],
|
274
274
|
objects: [{ property: 'mentioned', filter: helpers.defaultContextCheckProperties }],
|
275
275
|
},
|
276
276
|
},
|
package/common/tell.js
CHANGED
@@ -243,11 +243,6 @@
|
|
243
243
|
"article",
|
244
244
|
false
|
245
245
|
],
|
246
|
-
[
|
247
|
-
"evaluate",
|
248
|
-
"verb",
|
249
|
-
false
|
250
|
-
],
|
251
246
|
[
|
252
247
|
"every",
|
253
248
|
"article",
|
@@ -1675,11 +1670,6 @@
|
|
1675
1670
|
"article",
|
1676
1671
|
false
|
1677
1672
|
],
|
1678
|
-
[
|
1679
|
-
"evaluate",
|
1680
|
-
"verb",
|
1681
|
-
false
|
1682
|
-
],
|
1683
1673
|
[
|
1684
1674
|
"every",
|
1685
1675
|
"article",
|
@@ -3919,11 +3909,6 @@
|
|
3919
3909
|
"article",
|
3920
3910
|
false
|
3921
3911
|
],
|
3922
|
-
[
|
3923
|
-
"evaluate",
|
3924
|
-
"verb",
|
3925
|
-
false
|
3926
|
-
],
|
3927
3912
|
[
|
3928
3913
|
"every",
|
3929
3914
|
"article",
|
@@ -6397,11 +6382,6 @@
|
|
6397
6382
|
"article",
|
6398
6383
|
false
|
6399
6384
|
],
|
6400
|
-
[
|
6401
|
-
"evaluate",
|
6402
|
-
"verb",
|
6403
|
-
false
|
6404
|
-
],
|
6405
6385
|
[
|
6406
6386
|
"every",
|
6407
6387
|
"article",
|
@@ -7827,6 +7807,48 @@
|
|
7827
7807
|
0
|
7828
7808
|
]
|
7829
7809
|
],
|
7810
|
+
[
|
7811
|
+
[
|
7812
|
+
"celcius",
|
7813
|
+
0
|
7814
|
+
],
|
7815
|
+
[
|
7816
|
+
"divideByOperator",
|
7817
|
+
0
|
7818
|
+
],
|
7819
|
+
[
|
7820
|
+
"equals",
|
7821
|
+
0
|
7822
|
+
],
|
7823
|
+
[
|
7824
|
+
"fahrenheit",
|
7825
|
+
0
|
7826
|
+
],
|
7827
|
+
[
|
7828
|
+
"integer",
|
7829
|
+
0
|
7830
|
+
],
|
7831
|
+
[
|
7832
|
+
"leftParenthesis",
|
7833
|
+
0
|
7834
|
+
],
|
7835
|
+
[
|
7836
|
+
"minusOperator",
|
7837
|
+
0
|
7838
|
+
],
|
7839
|
+
[
|
7840
|
+
"plusOperator",
|
7841
|
+
0
|
7842
|
+
],
|
7843
|
+
[
|
7844
|
+
"rightParenthesis",
|
7845
|
+
0
|
7846
|
+
],
|
7847
|
+
[
|
7848
|
+
"timesOperator",
|
7849
|
+
0
|
7850
|
+
]
|
7851
|
+
],
|
7830
7852
|
[
|
7831
7853
|
[
|
7832
7854
|
"celcius",
|
@@ -9402,6 +9424,48 @@
|
|
9402
9424
|
0
|
9403
9425
|
]
|
9404
9426
|
],
|
9427
|
+
[
|
9428
|
+
[
|
9429
|
+
"celcius",
|
9430
|
+
0
|
9431
|
+
],
|
9432
|
+
[
|
9433
|
+
"divideByOperator",
|
9434
|
+
0
|
9435
|
+
],
|
9436
|
+
[
|
9437
|
+
"equals",
|
9438
|
+
0
|
9439
|
+
],
|
9440
|
+
[
|
9441
|
+
"fahrenheit",
|
9442
|
+
0
|
9443
|
+
],
|
9444
|
+
[
|
9445
|
+
"integer",
|
9446
|
+
0
|
9447
|
+
],
|
9448
|
+
[
|
9449
|
+
"leftParenthesis",
|
9450
|
+
0
|
9451
|
+
],
|
9452
|
+
[
|
9453
|
+
"minusOperator",
|
9454
|
+
0
|
9455
|
+
],
|
9456
|
+
[
|
9457
|
+
"plusOperator",
|
9458
|
+
0
|
9459
|
+
],
|
9460
|
+
[
|
9461
|
+
"rightParenthesis",
|
9462
|
+
0
|
9463
|
+
],
|
9464
|
+
[
|
9465
|
+
"timesOperator",
|
9466
|
+
0
|
9467
|
+
]
|
9468
|
+
],
|
9405
9469
|
[
|
9406
9470
|
[
|
9407
9471
|
"celcius",
|
package/common/temperature.js
CHANGED
package/common/tester.js
CHANGED
package/common/testing.js
CHANGED
package/common/time.js
CHANGED
@@ -29,6 +29,14 @@ class API {
|
|
29
29
|
context.event = promise
|
30
30
|
}
|
31
31
|
|
32
|
+
now() {
|
33
|
+
if (this.args.isProcess || this.args.isTest) {
|
34
|
+
return new Date(2025, 5, 29, 14, 52, 0)
|
35
|
+
} else {
|
36
|
+
return new Date()
|
37
|
+
}
|
38
|
+
}
|
39
|
+
|
32
40
|
newDate() {
|
33
41
|
return new Date()
|
34
42
|
}
|
@@ -41,8 +49,11 @@ const config = {
|
|
41
49
|
name: 'time',
|
42
50
|
operators: [
|
43
51
|
"([time])",
|
52
|
+
"([atTime|at] (time))",
|
44
53
|
"([use] (([timeUnit]) [timeFormat|format]))",
|
45
|
-
"(([number|]) [ampm|])"
|
54
|
+
// "(([number|]) [ampm|])",
|
55
|
+
"((time) [ampm|])",
|
56
|
+
"([hourMinutes|] (integer) (colon) (integer))",
|
46
57
|
//"(([anyConcept]) [equals|is] ([anyConcept]))",
|
47
58
|
//"(([what0|what]) [equals] (<the> ([timeConcept])))",
|
48
59
|
//"(<whatP|what> ([anyConcept]))",
|
@@ -53,26 +64,47 @@ const config = {
|
|
53
64
|
// how many hours are in a day
|
54
65
|
],
|
55
66
|
bridges: [
|
56
|
-
{
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
67
|
+
{
|
68
|
+
id: 'hourMinutes',
|
69
|
+
isA: ['time'],
|
70
|
+
convolution: true,
|
71
|
+
bridge: "{ ...next(operator), hour: after[0], colon: after[1], minute: after[2], interpolate: '${hour}${colon}${minute}' }",
|
72
|
+
},
|
73
|
+
{
|
74
|
+
id: "atTime",
|
75
|
+
words: ['@'],
|
76
|
+
isA: ['preposition'],
|
77
|
+
bridge: "{ ...next(operator), time: after[0], operator: operator, interpolate: '${operator} ${time}' }"
|
78
|
+
},
|
79
|
+
{
|
80
|
+
id: "time",
|
81
|
+
bridge: "{ ...next(operator) }"
|
82
|
+
},
|
63
83
|
{
|
64
|
-
|
65
|
-
|
84
|
+
id: "ampm",
|
85
|
+
isA: ['adjective'],
|
86
|
+
localHierarchy: [
|
87
|
+
['integer', 'time'],
|
88
|
+
],
|
89
|
+
bridge: "{ ...next(before[0]), marker: if(isA(before[0].marker, 'integer'), operator('time'), before[0].marker), ampm: operator, time: before[0], interpolate: concat(default(before[0].interpolate, '${time}'), ' ${ampm}') }",
|
90
|
+
},
|
91
|
+
{
|
92
|
+
id: "timeFormat",
|
93
|
+
bridge: "{ ...before[0], ...next(operator) }"
|
94
|
+
},
|
95
|
+
{
|
96
|
+
id: "timeUnit",
|
66
97
|
words: [
|
67
98
|
...helpers.words('hour', { initial: "{ units: 'hour' }" }),
|
68
99
|
...helpers.words('minute', { initial: "{ units: 'minute' }" }),
|
69
100
|
...helpers.words('second', { initial: "{ units: 'second' }" }),
|
70
101
|
],
|
71
|
-
|
102
|
+
bridge: "{ ...next(operator) }"
|
72
103
|
},
|
73
|
-
{
|
74
|
-
|
75
|
-
|
104
|
+
{
|
105
|
+
id: "use",
|
106
|
+
bridge: "{ ...next(operator), format: after[0] }",
|
107
|
+
generatorp: ({g, context}) => `use ${context.format.quantity.value} hour time`
|
76
108
|
},
|
77
109
|
],
|
78
110
|
hierarchy: [
|
@@ -84,26 +116,21 @@ const config = {
|
|
84
116
|
|
85
117
|
"words": {
|
86
118
|
"literals": {
|
87
|
-
// " ([0-9]+)": [{
|
88
|
-
// " (1[0-2]|[1-9])": [{
|
89
|
-
"am": [{
|
90
|
-
"pm": [{
|
91
|
-
//" (1[0-2]|[1-9]) ?pm": [{
|
92
|
-
//" (1[0-2]|[1-9]) ?am": [{
|
119
|
+
// " ([0-9]+)": [{id: "count", "initial": "{ value: int(group[0]) }" }],
|
120
|
+
// " (1[0-2]|[1-9])": [{id: "hourUnits", "initial": "{ hour: int(group[0]) }" }],
|
121
|
+
"am": [{id: "ampm", "initial": "{ ampm: 'am', determined: true }" }],
|
122
|
+
"pm": [{id: "ampm", "initial": "{ ampm: 'pm', determined: true }" }],
|
123
|
+
//" (1[0-2]|[1-9]) ?pm": [{id: "count", "initial": "{ hour: int(group[0]), part: 'pm' }" }],
|
124
|
+
//" (1[0-2]|[1-9]) ?am": [{id: "count", "initial": "{ hour: int(group[0]), part: 'am' }" }],
|
93
125
|
/*
|
94
|
-
" hours?": [{
|
95
|
-
" minutes?": [{
|
96
|
-
" seconds?": [{
|
126
|
+
" hours?": [{id: "timeUnit", "initial": "{ units: 'hour' }" }],
|
127
|
+
" minutes?": [{id: "timeUnit", "initial": "{ units: 'hour' }" }],
|
128
|
+
" seconds?": [{id: "timeUnit", "initial": "{ units: 'seconds' }" }],
|
97
129
|
*/
|
98
130
|
}
|
99
131
|
},
|
100
132
|
|
101
133
|
generators: [
|
102
|
-
{
|
103
|
-
where: where(),
|
104
|
-
match: ({context}) => context.marker == 'ampm' && context.paraphrase,
|
105
|
-
apply: async ({g, context, gp}) => `${await gp(context.hour)} ${context.ampm}`
|
106
|
-
},
|
107
134
|
{
|
108
135
|
where: where(),
|
109
136
|
match: ({context}) => context.marker == 'time' && context.evalue && context.format == 12,
|
@@ -194,7 +221,7 @@ knowledgeModule({
|
|
194
221
|
name: './time.test.json',
|
195
222
|
contents: time_tests,
|
196
223
|
checks: {
|
197
|
-
|
198
|
-
|
224
|
+
context: [defaultContextCheck({ extra: ['one', 'two', 'events', 'time', 'ampm'] })],
|
225
|
+
}
|
199
226
|
},
|
200
227
|
})
|