tpmkms_4wp 8.9.1-beta.3 → 8.9.1-beta.4

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.
@@ -1,6 +1,7 @@
1
1
  const { knowledgeModule, where } = require('./runtime').theprogrammablemind
2
2
  const { defaultContextCheck } = require('./helpers')
3
3
  const ordinals_tests = require('./ordinals.test.json')
4
+ const articles = require('./articles')
4
5
  const numbers = require('./numbers')
5
6
  const pos = require('./pos')
6
7
 
@@ -18,7 +19,8 @@ let config = {
18
19
  },
19
20
  {
20
21
  id: "orderable",
21
- bridge: "{ ...next(operator) }"
22
+ bridge: "{ ...next(operator) }",
23
+ isA: ['queryable'],
22
24
  },
23
25
  {
24
26
  id: "ordinalOnOrdered",
@@ -45,7 +47,7 @@ let config = {
45
47
 
46
48
  knowledgeModule( {
47
49
  config,
48
- includes: [pos, numbers],
50
+ includes: [pos, numbers, articles],
49
51
 
50
52
  module,
51
53
  description: 'talking about ordinals',
@@ -214,6 +214,11 @@
214
214
  "ifAble",
215
215
  false
216
216
  ],
217
+ [
218
+ "orderable",
219
+ "queryable",
220
+ false
221
+ ],
217
222
  [
218
223
  "ordinalOnOrdered",
219
224
  "adjective",