@knowlearning/agents 0.9.104 → 0.9.105

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.
@@ -120,19 +120,18 @@ export default function Agent({ Connection, domain, token, uuid, fetch, applyPat
120
120
  // if we are watching this scope, we want to keep track of last interaction we fired
121
121
  const qualifiedScope = isUUID(scope) ? scope : `//${scope}`
122
122
  if (manageLocalState && states[qualifiedScope] !== undefined) {
123
- let resolve
124
- lastInteractionResponse[qualifiedScope] = new Promise(r => resolve = r)
125
-
126
- const resolveAndUnwatch = async (update) => {
127
- const { ii } = await response
128
- if (update.ii === ii) {
129
- resolve(ii)
130
- removeWatcher(qualifiedScope, resolveAndUnwatch)
123
+ lastInteractionResponse[qualifiedScope] = new Promise(resolve => {
124
+ const resolveAndUnwatch = async update => {
125
+ log('AWAITING INTERACTION RESPONSE', qualifiedScope, update)
126
+ const { ii } = await response
127
+ log('GOT INTERACTION RESPONSE', qualifiedScope, await response)
128
+ if (update.ii === ii) {
129
+ resolve(ii)
130
+ removeWatcher(qualifiedScope, resolveAndUnwatch)
131
+ }
131
132
  }
132
- }
133
-
134
- watchers[qualifiedScope].push(resolveAndUnwatch)
135
-
133
+ watchers[qualifiedScope].push(resolveAndUnwatch)
134
+ })
136
135
  return response
137
136
  }
138
137
  else {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@knowlearning/agents",
3
- "version": "0.9.104",
3
+ "version": "0.9.105",
4
4
  "description": "API for embedding applications in KnowLearning systems.",
5
5
  "main": "node.js",
6
6
  "browser": "browser.js",