@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.
- package/esm2020/lib/_internal/interfaces/api.interface.mjs +1 -1
- package/esm2020/lib/_internal/objects/api.mjs +7 -1
- package/fesm2015/vendasta-conversation.mjs +6 -0
- package/fesm2015/vendasta-conversation.mjs.map +1 -1
- package/fesm2020/vendasta-conversation.mjs +6 -0
- package/fesm2020/vendasta-conversation.mjs.map +1 -1
- package/lib/_internal/interfaces/api.interface.d.ts +2 -0
- package/lib/_internal/objects/api.d.ts +2 -0
- package/package.json +1 -1
|
@@ -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
|
}
|