@vendasta/conversation 0.33.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.
@@ -65,6 +65,7 @@ var ConversationChannel;
65
65
  ConversationChannel[ConversationChannel["CONVERSATION_CHANNEL_GOOGLE_MESSAGES"] = 4] = "CONVERSATION_CHANNEL_GOOGLE_MESSAGES";
66
66
  ConversationChannel[ConversationChannel["CONVERSATION_CHANNEL_OPENAI"] = 5] = "CONVERSATION_CHANNEL_OPENAI";
67
67
  ConversationChannel[ConversationChannel["CONVERSATION_CHANNEL_EMAIL"] = 6] = "CONVERSATION_CHANNEL_EMAIL";
68
+ ConversationChannel[ConversationChannel["CONVERSATION_CHANNEL_GOOGLE_BUSINESS_COMMUNICATIONS"] = 7] = "CONVERSATION_CHANNEL_GOOGLE_BUSINESS_COMMUNICATIONS";
68
69
  })(ConversationChannel || (ConversationChannel = {}));
69
70
  var PlatformLocation;
70
71
  (function (PlatformLocation) {
@@ -345,6 +346,9 @@ class Conversation {
345
346
  if (typeof this.lastSeenByParticipant !== 'undefined' && this.lastSeenByParticipant !== null) {
346
347
  toReturn['lastSeenByParticipant'] = 'toApiJson' in this.lastSeenByParticipant ? this.lastSeenByParticipant.toApiJson() : this.lastSeenByParticipant;
347
348
  }
349
+ if (typeof this.conversationViewIds !== 'undefined') {
350
+ toReturn['conversationViewIds'] = this.conversationViewIds;
351
+ }
348
352
  return toReturn;
349
353
  }
350
354
  }