tpmkms_4wp 9.2.0-beta.0 → 9.2.0-beta.2

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.
Files changed (39) hide show
  1. package/common/animals.instance.json +8 -8
  2. package/common/colors.instance.json +18 -46
  3. package/common/comparable.js +2 -2
  4. package/common/crew.instance.json +4643 -969
  5. package/common/crew.test.json +1904 -0
  6. package/common/dates.instance.json +28562 -0
  7. package/common/dates.js +152 -0
  8. package/common/dates.test.json +10239 -0
  9. package/common/dialogues.js +28 -9
  10. package/common/dimension.instance.json +2 -2
  11. package/common/edible.instance.json +1442 -759
  12. package/common/emotions.instance.json +6 -14
  13. package/common/emotions.js +4 -5
  14. package/common/fastfood.instance.json +3976 -1175
  15. package/common/gdefaults.js +14 -0
  16. package/common/helpers/concept.js +1 -0
  17. package/common/helpers/dialogues.js +3 -0
  18. package/common/helpers/properties.js +2 -27
  19. package/common/helpers.js +41 -0
  20. package/common/hierarchy.js +4 -3
  21. package/common/kirk.instance.json +155 -10
  22. package/common/length.instance.json +2 -2
  23. package/common/menus.js +1 -0
  24. package/common/menus.test.json +2418 -1355
  25. package/common/meta.js +3 -3
  26. package/common/ordering.instance.json +2 -2
  27. package/common/pipboy.instance.json +12 -68
  28. package/common/pokemon.instance.json +10 -2
  29. package/common/pressure.instance.json +2 -2
  30. package/common/properties.js +19 -5
  31. package/common/punctuation.js +3 -0
  32. package/common/reports.instance.json +22 -14
  33. package/common/reports.js +2 -2
  34. package/common/spock.instance.json +155 -10
  35. package/common/temperature.instance.json +146 -2
  36. package/common/wp.instance.json +379 -151
  37. package/common/wp.js +10 -0
  38. package/main.js +2 -0
  39. package/package.json +6 -2
@@ -60,11 +60,6 @@
60
60
  "article",
61
61
  false
62
62
  ],
63
- [
64
- "emotion",
65
- "unknown",
66
- false
67
- ],
68
63
  [
69
64
  "evaluate",
70
65
  "verb",
@@ -255,11 +250,6 @@
255
250
  "verb",
256
251
  false
257
252
  ],
258
- [
259
- "sentientBeing",
260
- "unknown",
261
- false
262
- ],
263
253
  [
264
254
  "stm_before",
265
255
  "adjective",
@@ -756,7 +746,7 @@
756
746
  "value": "sentientbeing1",
757
747
  "unknown": true,
758
748
  "text": "sentientbeing1",
759
- "marker": "sentientBeing",
749
+ "marker": "unknown",
760
750
  "word": "sentientbeing1",
761
751
  "raw_text": "sentientBeing1",
762
752
  "range": {
@@ -765,7 +755,8 @@
765
755
  },
766
756
  "dead": true,
767
757
  "types": [
768
- "sentientBeing"
758
+ "sentientBeing",
759
+ "unknown"
769
760
  ],
770
761
  "level": 0
771
762
  },
@@ -773,7 +764,7 @@
773
764
  "value": "emotion1",
774
765
  "unknown": true,
775
766
  "text": "emotion1",
776
- "marker": "emotion",
767
+ "marker": "unknown",
777
768
  "word": "emotion1",
778
769
  "range": {
779
770
  "start": 21,
@@ -781,7 +772,8 @@
781
772
  },
782
773
  "dead": true,
783
774
  "types": [
784
- "emotion"
775
+ "emotion",
776
+ "unknown"
785
777
  ],
786
778
  "level": 0
787
779
  },
@@ -38,11 +38,6 @@ const config = {
38
38
  priorities: [
39
39
  { "context": [['feel', 0], ['means', 0], ], "choose": [0] },
40
40
  ],
41
-
42
- hierarchy: [
43
- ['emotion', 'unknown'],
44
- ['sentientBeing', 'unknown'],
45
- ]
46
41
  }
47
42
 
48
43
  const initializer = ({config, apis}) => {
@@ -52,6 +47,10 @@ const initializer = ({config, apis}) => {
52
47
  create: ['feel'/*, 'emotion'*/],
53
48
  before: [{tag: 'sentientBeing', id: 'sentientBeing'}],
54
49
  after: [{tag: 'emotion', id: 'emotion'}],
50
+ localHierarchy: [
51
+ ['unknown', 'emotion'],
52
+ ['unknown', 'sentientBeing'],
53
+ ],
55
54
  doAble: true,
56
55
  config })
57
56
  }