theprogrammablemind_4wp 7.4.3-beta.9 → 7.5.0

Sign up to get free protection for your applications and to get access to all the features.
package/client.js CHANGED
@@ -1254,7 +1254,7 @@ const knowledgeModule = async ({
1254
1254
  parser.add_argument('-q', '--query', { help: 'Run the specified query' })
1255
1255
  parser.add_argument('-ip ', '--server', { help: 'Server to run against' })
1256
1256
  parser.add_argument('-qp ', '--queryParams', { help: 'Query params for the server call' })
1257
- parser.add_argument('-qd', '--queryDelete', { help: 'Delete the specified query from the tests file' })
1257
+ parser.add_argument('-td', '--testDelete', { help: 'Delete the specified query from the tests file.' })
1258
1258
  parser.add_argument('-c', '--clean', { help: 'Remove data from the test files. a === association' })
1259
1259
  parser.add_argument('-od', '--objectDiff', { action: 'store_true', help: 'When showing the objects use a colour diff' })
1260
1260
  parser.add_argument('-daa', '--dontAddAssociations', { action: 'store_true', help: 'Do not add associations from the tests.' })
@@ -1293,11 +1293,11 @@ const knowledgeModule = async ({
1293
1293
  return
1294
1294
  }
1295
1295
 
1296
- if (args.queryDelete) {
1296
+ if (args.testDelete) {
1297
1297
  let tests = JSON.parse(runtime.fs.readFileSync(testConfig.name))
1298
- tests = tests.filter( (test) => test.query !== args.queryDelete );
1298
+ tests = tests.filter( (test) => test.query !== args.testDelete );
1299
1299
  writeTestFile(testConfig.name, tests)
1300
- console.log(`Remove the test for "${args.queryDelete}"`)
1300
+ console.log(`Remove the test for "${args.testDelete}"`)
1301
1301
  return
1302
1302
  }
1303
1303
 
package/package.json CHANGED
@@ -61,6 +61,6 @@
61
61
  "json-stable-stringify": "^1.0.1",
62
62
  "node-fetch": "^2.6.1"
63
63
  },
64
- "version": "7.4.3-beta.9",
64
+ "version": "7.5.0",
65
65
  "license": "ISC"
66
66
  }
package/src/config.js CHANGED
@@ -412,11 +412,11 @@ class Config {
412
412
  }
413
413
 
414
414
  getSemantics (logs = []) {
415
- return new Semantics(this.config.semantics || [], logs)
415
+ return new Semantics(this.config.semantics || [], logs, { km: this.name })
416
416
  }
417
417
 
418
418
  getGenerators (logs = []) {
419
- return new Generators(this.config.generators || [], logs)
419
+ return new Generators(this.config.generators || [], logs, { km: this.name })
420
420
  }
421
421
 
422
422
  warningNotEvaluated (log, value) {
@@ -1064,7 +1064,7 @@ class Config {
1064
1064
  }
1065
1065
  for (let bridge of (this.config.bridges || [])) {
1066
1066
  const valid = [ 'before', 'bridge', 'development', 'evaluator', 'generatorp', 'generatorr', 'generators', 'hierarchy', 'id', 'inverted', 'isA',
1067
- 'level', 'optional', 'selector', 'semantic', 'words' ]
1067
+ 'level', 'optional', 'selector', 'semantic', 'uuid', 'words' ]
1068
1068
  for (let prop of Object.keys(bridge)) {
1069
1069
  if (!valid.includes(prop)) {
1070
1070
  if (!prop.endsWith("Bridge")) {
package/src/generators.js CHANGED
@@ -124,12 +124,14 @@ class Generator {
124
124
  }
125
125
 
126
126
  class Generators {
127
- constructor (generators, logs = []) {
127
+ constructor (generators, logs = [], options = {}) {
128
+ let index = -1
128
129
  generators = (generators || []).map((generator) => {
129
130
  if (generator instanceof Generator) {
130
131
  return generator
131
132
  } else {
132
- return new Generator(generator)
133
+ index += 1
134
+ return new Generator({ km: options.km, index, ...normalizeGenerator(generator) })
133
135
  }
134
136
  })
135
137
  this.defaults = []
package/src/semantics.js CHANGED
@@ -115,12 +115,14 @@ class Semantic {
115
115
  }
116
116
 
117
117
  class Semantics {
118
- constructor (semantics, logs = []) {
118
+ constructor (semantics, logs = [], options = {}) {
119
+ let index = -1
119
120
  semantics = semantics.map((semantic) => {
120
121
  if (semantic instanceof Semantic) {
121
122
  return semantic
122
123
  } else {
123
- return new Semantic(semantic)
124
+ index += 1
125
+ return new Semantic({ km: options.km, index, ...normalizeSemantic(semantic) })
124
126
  }
125
127
  })
126
128