@vendasta/conversation 0.34.0 → 0.35.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/conversation.interface.mjs +1 -1
- package/esm2020/lib/_internal/objects/conversation.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/conversation.interface.d.ts +1 -0
- package/lib/_internal/objects/conversation.d.ts +1 -0
- package/package.json +1 -1
|
@@ -346,6 +346,9 @@ class Conversation {
|
|
|
346
346
|
if (typeof this.lastSeenByParticipant !== 'undefined' && this.lastSeenByParticipant !== null) {
|
|
347
347
|
toReturn['lastSeenByParticipant'] = 'toApiJson' in this.lastSeenByParticipant ? this.lastSeenByParticipant.toApiJson() : this.lastSeenByParticipant;
|
|
348
348
|
}
|
|
349
|
+
if (typeof this.conversationViewIds !== 'undefined') {
|
|
350
|
+
toReturn['conversationViewIds'] = this.conversationViewIds;
|
|
351
|
+
}
|
|
349
352
|
return toReturn;
|
|
350
353
|
}
|
|
351
354
|
}
|