theprogrammablemind_4wp 9.3.0-beta.36 → 9.3.0-beta.37

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 (2) hide show
  1. package/client.js +2 -2
  2. package/package.json +1 -1
package/client.js CHANGED
@@ -1942,8 +1942,8 @@ const knowledgeModuleImpl = async ({
1942
1942
 
1943
1943
  // no cache 21 minutes + rebuild fails "node tester_rebuild -m colors"
1944
1944
  // cache okay
1945
- const createConfigExport = async () => {
1946
- if (createConfig.cached) {
1945
+ const createConfigExport = async (useCache = true) => {
1946
+ if (useCache && createConfig.cached) {
1947
1947
  return createConfig.cached
1948
1948
  }
1949
1949
  const config = await createConfig()
package/package.json CHANGED
@@ -69,6 +69,6 @@
69
69
  "sort-json": "^2.0.0",
70
70
  "uuid": "^8.3.2"
71
71
  },
72
- "version": "9.3.0-beta.36",
72
+ "version": "9.3.0-beta.37",
73
73
  "license": "UNLICENSED"
74
74
  }