@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.
@@ -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
  }