tpmkms 8.0.0-beta.59 → 8.0.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 +3 -39
- package/common/articles.js +1 -1
- package/common/colors.instance.json +177 -157
- package/common/comparable.instance.json +2 -0
- package/common/crew.instance.json +6 -288
- package/common/dialogues.js +2 -2
- package/common/dimension.instance.json +0 -36
- package/common/edible.instance.json +168 -110
- package/common/fastfood.instance.json +799 -364
- package/common/fastfood.js +1 -1
- package/common/fastfood.test.json +268 -90
- package/common/length.instance.json +14 -13
- package/common/numbers.js +21 -21
- package/common/ordering.instance.json +12 -56
- package/common/people.instance.json +60 -0
- package/common/pipboy.instance.json +2 -36
- package/common/pokemon.instance.json +7 -0
- package/common/pressure.instance.json +3 -2
- package/common/reports.instance.json +2 -2
- package/common/temperature.instance.json +8 -7
- package/common/weight.instance.json +11 -62
- package/package.json +2 -2
@@ -463,7 +463,7 @@
|
|
463
463
|
},
|
464
464
|
"types": [
|
465
465
|
"list",
|
466
|
-
"
|
466
|
+
"unknown"
|
467
467
|
],
|
468
468
|
"listable": true,
|
469
469
|
"isList": true,
|
@@ -472,7 +472,7 @@
|
|
472
472
|
"value": "birds",
|
473
473
|
"unknown": true,
|
474
474
|
"text": "birds",
|
475
|
-
"marker": "
|
475
|
+
"marker": "unknown",
|
476
476
|
"word": "birds",
|
477
477
|
"range": {
|
478
478
|
"start": 0,
|
@@ -485,7 +485,7 @@
|
|
485
485
|
"value": "mammals",
|
486
486
|
"unknown": true,
|
487
487
|
"text": "mammals",
|
488
|
-
"marker": "
|
488
|
+
"marker": "unknown",
|
489
489
|
"word": "mammals",
|
490
490
|
"range": {
|
491
491
|
"start": 10,
|
@@ -566,24 +566,6 @@
|
|
566
566
|
1
|
567
567
|
]
|
568
568
|
],
|
569
|
-
[
|
570
|
-
[
|
571
|
-
"is",
|
572
|
-
0
|
573
|
-
],
|
574
|
-
[
|
575
|
-
"list",
|
576
|
-
0
|
577
|
-
],
|
578
|
-
[
|
579
|
-
"unknown",
|
580
|
-
0
|
581
|
-
],
|
582
|
-
[
|
583
|
-
"unknown",
|
584
|
-
1
|
585
|
-
]
|
586
|
-
],
|
587
569
|
[
|
588
570
|
[
|
589
571
|
"is",
|
@@ -10598,24 +10580,6 @@
|
|
10598
10580
|
1
|
10599
10581
|
]
|
10600
10582
|
],
|
10601
|
-
[
|
10602
|
-
[
|
10603
|
-
"is",
|
10604
|
-
0
|
10605
|
-
],
|
10606
|
-
[
|
10607
|
-
"list",
|
10608
|
-
0
|
10609
|
-
],
|
10610
|
-
[
|
10611
|
-
"unknown",
|
10612
|
-
0
|
10613
|
-
],
|
10614
|
-
[
|
10615
|
-
"unknown",
|
10616
|
-
1
|
10617
|
-
]
|
10618
|
-
],
|
10619
10583
|
[
|
10620
10584
|
[
|
10621
10585
|
"is",
|
package/common/articles.js
CHANGED
@@ -31,7 +31,7 @@ let config = {
|
|
31
31
|
id: "a",
|
32
32
|
level: 0,
|
33
33
|
// bridge: "{ ...after[0], pullFromContext: false, instance: true, concept: true, number: 'one', wantsValue: true, determiner: operator, modifiers: append(['determiner'], after[0].modifiers) }"
|
34
|
-
bridge: "{ ...after[0], pullFromContext: false, concept: true, number: 'one', wantsValue: true, determiner: operator, modifiers: append(['determiner'], after[0].modifiers) }"
|
34
|
+
bridge: "{ ...after[0], pullFromContext: false, instance: true, concept: true, number: 'one', wantsValue: true, determiner: operator, modifiers: append(['determiner'], after[0].modifiers) }"
|
35
35
|
},
|
36
36
|
{ id: "queryable" },
|
37
37
|
{
|