@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.
- package/esm2020/lib/_internal/interfaces/connection.interface.mjs +1 -1
- package/esm2020/lib/_internal/objects/connection.mjs +4 -1
- package/fesm2015/vendasta-ai-assistants.mjs +3 -0
- package/fesm2015/vendasta-ai-assistants.mjs.map +1 -1
- package/fesm2020/vendasta-ai-assistants.mjs +3 -0
- package/fesm2020/vendasta-ai-assistants.mjs.map +1 -1
- package/lib/_internal/interfaces/connection.interface.d.ts +1 -0
- package/lib/_internal/objects/connection.d.ts +1 -0
- package/package.json +1 -1
|
@@ -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
|
}
|