@vendasta/conversation 0.15.0 → 0.16.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.
@@ -897,6 +897,9 @@ class GetMultiMessagesRequest {
897
897
  if (typeof this.messageIds !== 'undefined') {
898
898
  toReturn['messageIds'] = this.messageIds;
899
899
  }
900
+ if (typeof this.conversationId !== 'undefined') {
901
+ toReturn['conversationId'] = this.conversationId;
902
+ }
900
903
  return toReturn;
901
904
  }
902
905
  }
@@ -940,6 +943,9 @@ class GetMultiParticipantsRequest {
940
943
  if (typeof this.participantIds !== 'undefined') {
941
944
  toReturn['participantIds'] = this.participantIds;
942
945
  }
946
+ if (typeof this.conversationId !== 'undefined') {
947
+ toReturn['conversationId'] = this.conversationId;
948
+ }
943
949
  return toReturn;
944
950
  }
945
951
  }