tpmkms 8.0.0-beta.64 → 8.0.0-beta.66
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/crew.instance.json +0 -128
- package/common/edible.instance.json +58 -2
- package/common/emotions.instance.json +0 -60
- package/common/fastfood.instance.json +659 -239
- package/common/help.test.json +63 -8
- package/common/nameable.js +13 -4
- package/common/nameable.test.json +1070 -0
- package/common/ordering.instance.json +68 -0
- package/common/people.instance.json +28 -0
- package/common/pos.js +3 -0
- package/common/punctuation.js +9 -1
- package/common/reports.instance.json +1 -1
- package/common/reports.js +5 -4
- package/common/reports.test.json +15623 -10458
- package/common/temperature.instance.json +0 -84
- package/common/tokenize.js +1 -1
- package/common/weight.instance.json +0 -52
- package/package.json +2 -2
@@ -6200,48 +6200,6 @@
|
|
6200
6200
|
0
|
6201
6201
|
]
|
6202
6202
|
],
|
6203
|
-
[
|
6204
|
-
[
|
6205
|
-
"celcius",
|
6206
|
-
0
|
6207
|
-
],
|
6208
|
-
[
|
6209
|
-
"divideByOperator",
|
6210
|
-
0
|
6211
|
-
],
|
6212
|
-
[
|
6213
|
-
"equals",
|
6214
|
-
0
|
6215
|
-
],
|
6216
|
-
[
|
6217
|
-
"fahrenheit",
|
6218
|
-
0
|
6219
|
-
],
|
6220
|
-
[
|
6221
|
-
"leftParenthesis",
|
6222
|
-
0
|
6223
|
-
],
|
6224
|
-
[
|
6225
|
-
"minusOperator",
|
6226
|
-
0
|
6227
|
-
],
|
6228
|
-
[
|
6229
|
-
"number",
|
6230
|
-
0
|
6231
|
-
],
|
6232
|
-
[
|
6233
|
-
"plusOperator",
|
6234
|
-
0
|
6235
|
-
],
|
6236
|
-
[
|
6237
|
-
"rightParenthesis",
|
6238
|
-
0
|
6239
|
-
],
|
6240
|
-
[
|
6241
|
-
"timesOperator",
|
6242
|
-
0
|
6243
|
-
]
|
6244
|
-
],
|
6245
6203
|
[
|
6246
6204
|
[
|
6247
6205
|
"celcius",
|
@@ -6537,48 +6495,6 @@
|
|
6537
6495
|
0
|
6538
6496
|
]
|
6539
6497
|
],
|
6540
|
-
[
|
6541
|
-
[
|
6542
|
-
"celcius",
|
6543
|
-
0
|
6544
|
-
],
|
6545
|
-
[
|
6546
|
-
"divideByOperator",
|
6547
|
-
0
|
6548
|
-
],
|
6549
|
-
[
|
6550
|
-
"equals",
|
6551
|
-
0
|
6552
|
-
],
|
6553
|
-
[
|
6554
|
-
"fahrenheit",
|
6555
|
-
0
|
6556
|
-
],
|
6557
|
-
[
|
6558
|
-
"leftParenthesis",
|
6559
|
-
0
|
6560
|
-
],
|
6561
|
-
[
|
6562
|
-
"minusOperator",
|
6563
|
-
0
|
6564
|
-
],
|
6565
|
-
[
|
6566
|
-
"number",
|
6567
|
-
0
|
6568
|
-
],
|
6569
|
-
[
|
6570
|
-
"plusOperator",
|
6571
|
-
0
|
6572
|
-
],
|
6573
|
-
[
|
6574
|
-
"rightParenthesis",
|
6575
|
-
0
|
6576
|
-
],
|
6577
|
-
[
|
6578
|
-
"timesOperator",
|
6579
|
-
0
|
6580
|
-
]
|
6581
|
-
],
|
6582
6498
|
[
|
6583
6499
|
[
|
6584
6500
|
"celcius",
|
package/common/tokenize.js
CHANGED
@@ -14,7 +14,7 @@ const config = {
|
|
14
14
|
words: {
|
15
15
|
patterns: [
|
16
16
|
{ pattern: [{ type: 'space' }, { repeat: true }], defs: [ { remove: true } ] },
|
17
|
-
{ pattern: [{ type: 'alphanumeric' }, { repeat: true }], scale: 0.8, defs: [ { id: 'unknown', initial: "{ value: text, unknown: true }" } ] },
|
17
|
+
{ pattern: [{ type: 'alphanumeric' }, { repeat: true }], scale: 0.8, check_spelling: true, is_unknown: true, defs: [ { id: 'unknown', initial: "{ value: text, unknown: true }" } ] },
|
18
18
|
],
|
19
19
|
hierarchy: [
|
20
20
|
{ child: ' ', parent: 'space' },
|
@@ -4626,32 +4626,6 @@
|
|
4626
4626
|
0
|
4627
4627
|
]
|
4628
4628
|
],
|
4629
|
-
[
|
4630
|
-
[
|
4631
|
-
"is",
|
4632
|
-
0
|
4633
|
-
],
|
4634
|
-
[
|
4635
|
-
"list",
|
4636
|
-
1
|
4637
|
-
],
|
4638
|
-
[
|
4639
|
-
"propertyOf",
|
4640
|
-
0
|
4641
|
-
],
|
4642
|
-
[
|
4643
|
-
"unit",
|
4644
|
-
0
|
4645
|
-
],
|
4646
|
-
[
|
4647
|
-
"unknown",
|
4648
|
-
1
|
4649
|
-
],
|
4650
|
-
[
|
4651
|
-
"weight",
|
4652
|
-
0
|
4653
|
-
]
|
4654
|
-
],
|
4655
4629
|
[
|
4656
4630
|
[
|
4657
4631
|
"is",
|
@@ -20007,32 +19981,6 @@
|
|
20007
19981
|
0
|
20008
19982
|
]
|
20009
19983
|
],
|
20010
|
-
[
|
20011
|
-
[
|
20012
|
-
"is",
|
20013
|
-
0
|
20014
|
-
],
|
20015
|
-
[
|
20016
|
-
"list",
|
20017
|
-
1
|
20018
|
-
],
|
20019
|
-
[
|
20020
|
-
"propertyOf",
|
20021
|
-
0
|
20022
|
-
],
|
20023
|
-
[
|
20024
|
-
"unit",
|
20025
|
-
0
|
20026
|
-
],
|
20027
|
-
[
|
20028
|
-
"unknown",
|
20029
|
-
1
|
20030
|
-
],
|
20031
|
-
[
|
20032
|
-
"weight",
|
20033
|
-
0
|
20034
|
-
]
|
20035
|
-
],
|
20036
19984
|
[
|
20037
19985
|
[
|
20038
19986
|
"is",
|
package/package.json
CHANGED
@@ -295,8 +295,8 @@
|
|
295
295
|
"table": "^6.7.1",
|
296
296
|
"base-64": "^1.0.0",
|
297
297
|
"argparse": "^2.0.1",
|
298
|
-
"theprogrammablemind": "8.0.0-beta.
|
298
|
+
"theprogrammablemind": "8.0.0-beta.66"
|
299
299
|
},
|
300
|
-
"version": "8.0.0-beta.
|
300
|
+
"version": "8.0.0-beta.66",
|
301
301
|
"license": "UNLICENSED"
|
302
302
|
}
|