theprogrammablemind_4wp 7.5.8-beta.47 → 7.5.8-beta.49
Sign up to get free protection for your applications and to get access to all the features.
- package/client.js +2 -1
- package/package.json +1 -1
- package/src/config.js +24 -6
package/client.js
CHANGED
@@ -1492,7 +1492,8 @@ const knowledgeModule = async ({
|
|
1492
1492
|
if (!isProcess) {
|
1493
1493
|
if (template) {
|
1494
1494
|
if (config.needsRebuild(template.template, template.instance)) {
|
1495
|
-
|
1495
|
+
const error = `This module "${config.name}" cannot be used because the instance file needs rebuilding. Run on the command line with no arguments or the -rt argument to rebuild.`
|
1496
|
+
throw new Error(error)
|
1496
1497
|
}
|
1497
1498
|
try {
|
1498
1499
|
config.load(template.template, template.instance)
|
package/package.json
CHANGED
package/src/config.js
CHANGED
@@ -933,17 +933,35 @@ class Config {
|
|
933
933
|
const instanceFragments = (instance.fragments || []).map((fragment) => fragment.key || fragment.query).map( toCanonical )
|
934
934
|
const templateFragments = (template.fragments || []).concat(this.dynamicFragments).map( toCanonical )
|
935
935
|
const sameFragments = helpers.safeEquals(templateFragments, instanceFragments)
|
936
|
-
const
|
937
|
-
if (typeof
|
936
|
+
const toCanonicalQuery = (queryOrConfig) => {
|
937
|
+
if (typeof queryOrConfig == 'string') {
|
938
|
+
const query = queryOrConfig
|
938
939
|
return query
|
939
940
|
} else {
|
940
|
-
|
941
|
+
const config = { ...queryOrConfig }
|
942
|
+
delete config.where
|
943
|
+
config.generators = (config.generators || []).map((generator) => {
|
944
|
+
generator = {...generator}
|
945
|
+
delete generator.where
|
946
|
+
generator.match = generator.match.toString()
|
947
|
+
generator.apply = generator.apply.toString()
|
948
|
+
return generator
|
949
|
+
})
|
950
|
+
config.semantics = (config.semantics || []).map((semantic) => {
|
951
|
+
semantic = {...semantic}
|
952
|
+
delete semantic.where
|
953
|
+
semantic.match = semantic.match.toString()
|
954
|
+
semantic.apply = semantic.apply.toString()
|
955
|
+
return semantic
|
956
|
+
})
|
957
|
+
return config
|
941
958
|
}
|
942
959
|
}
|
943
|
-
const
|
944
|
-
return elements.map(
|
960
|
+
const toCanonicalQueries = (elements) => {
|
961
|
+
return elements.map( toCanonicalQuery )
|
945
962
|
}
|
946
|
-
|
963
|
+
|
964
|
+
const sameQueries = helpers.safeEquals(toCanonicalQueries(template.queries || []).map(helpers.updateQueries), toCanonicalQueries(instance.queries || []))
|
947
965
|
return !(instance && sameQueries && sameFragments)
|
948
966
|
}
|
949
967
|
|