theprogrammablemind 9.3.0-beta.5 → 9.3.0-beta.7

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.
package/client.js CHANGED
@@ -345,8 +345,9 @@ const _process = async (config, query, { initializer, commandLineArgs, credentia
345
345
  throw json
346
346
  } else {
347
347
  let clientSideTime
348
+ let start
348
349
  if (isTest) {
349
- const start = runtime.performance.performance.now()
350
+ start = runtime.performance.performance.now()
350
351
  }
351
352
  const summary = { summaries: json.summaries, length: json.contexts.length }
352
353
  summaries.push(summary)
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.5",
72
+ "version": "9.3.0-beta.7",
73
73
  "license": "UNLICENSED"
74
74
  }
package/src/config.js CHANGED
@@ -2190,7 +2190,6 @@ class Config {
2190
2190
  this._apiConstructor = constructor
2191
2191
  if (this._apiKMs.length > 0) {
2192
2192
  for (const name of this._apiKMs) {
2193
- debugger
2194
2193
  this.km(name)._api = value[name]
2195
2194
  }
2196
2195
  } else {