@vendasta/ai-assistants 0.4.0 → 0.5.0

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.
@@ -349,6 +349,9 @@ class Connection {
349
349
  if (typeof this.iconUrl !== 'undefined') {
350
350
  toReturn['iconUrl'] = this.iconUrl;
351
351
  }
352
+ if (typeof this.isConnectionLocked !== 'undefined') {
353
+ toReturn['isConnectionLocked'] = this.isConnectionLocked;
354
+ }
352
355
  return toReturn;
353
356
  }
354
357
  }