@vendasta/conversation 0.16.0 → 0.17.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/_generated/host.service.mjs +1 -1
- package/esm2020/lib/_internal/conversation.api.service.mjs +2 -2
- package/esm2020/lib/_internal/interfaces/api.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/participant.interface.mjs +1 -1
- package/esm2020/lib/_internal/objects/api.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
|
@@ -384,6 +384,9 @@ class Participant {
|
|
|
384
384
|
if (typeof this.isSubjectParticipant !== 'undefined') {
|
|
385
385
|
toReturn['isSubjectParticipant'] = this.isSubjectParticipant;
|
|
386
386
|
}
|
|
387
|
+
if (typeof this.isParticipantInternalInfoDeleted !== 'undefined') {
|
|
388
|
+
toReturn['isParticipantInternalInfoDeleted'] = this.isParticipantInternalInfoDeleted;
|
|
389
|
+
}
|
|
387
390
|
return toReturn;
|
|
388
391
|
}
|
|
389
392
|
}
|