@vendasta/conversation 0.19.0 → 0.20.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/participant.interface.mjs +1 -1
- package/esm2020/lib/_internal/objects/participant.mjs +4 -1
- package/fesm2015/vendasta-conversation.mjs +3 -0
- package/fesm2015/vendasta-conversation.mjs.map +1 -1
- package/fesm2020/vendasta-conversation.mjs +3 -0
- package/fesm2020/vendasta-conversation.mjs.map +1 -1
- package/lib/_internal/interfaces/participant.interface.d.ts +1 -0
- package/lib/_internal/objects/participant.d.ts +1 -0
- package/package.json +1 -1
|
@@ -398,6 +398,9 @@ class Participant {
|
|
|
398
398
|
if (typeof this.isParticipantInternalInfoDeleted !== 'undefined') {
|
|
399
399
|
toReturn['isParticipantInternalInfoDeleted'] = this.isParticipantInternalInfoDeleted;
|
|
400
400
|
}
|
|
401
|
+
if (typeof this.profileImageUrl !== 'undefined') {
|
|
402
|
+
toReturn['profileImageUrl'] = this.profileImageUrl;
|
|
403
|
+
}
|
|
401
404
|
return toReturn;
|
|
402
405
|
}
|
|
403
406
|
}
|