@vendasta/conversation 0.59.0 → 0.60.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 +10 -1
- package/fesm2015/vendasta-conversation.mjs +9 -0
- package/fesm2015/vendasta-conversation.mjs.map +1 -1
- package/fesm2020/vendasta-conversation.mjs +9 -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
|
@@ -1648,6 +1648,9 @@ class GetMultiConversationDetailsResponseDetailedConversation {
|
|
|
1648
1648
|
if (typeof this.participants !== 'undefined' && this.participants !== null) {
|
|
1649
1649
|
toReturn['participants'] = 'toApiJson' in this.participants ? this.participants.toApiJson() : this.participants;
|
|
1650
1650
|
}
|
|
1651
|
+
if (typeof this.summary !== 'undefined') {
|
|
1652
|
+
toReturn['summary'] = this.summary;
|
|
1653
|
+
}
|
|
1651
1654
|
return toReturn;
|
|
1652
1655
|
}
|
|
1653
1656
|
}
|
|
@@ -1977,6 +1980,9 @@ class GetMultiConversationDetailsRequest {
|
|
|
1977
1980
|
static fromProto(proto) {
|
|
1978
1981
|
let m = new GetMultiConversationDetailsRequest();
|
|
1979
1982
|
m = Object.assign(m, proto);
|
|
1983
|
+
if (proto.options) {
|
|
1984
|
+
m.options = FieldMask.fromProto(proto.options);
|
|
1985
|
+
}
|
|
1980
1986
|
return m;
|
|
1981
1987
|
}
|
|
1982
1988
|
constructor(kwargs) {
|
|
@@ -1990,6 +1996,9 @@ class GetMultiConversationDetailsRequest {
|
|
|
1990
1996
|
if (typeof this.conversationIds !== 'undefined') {
|
|
1991
1997
|
toReturn['conversationIds'] = this.conversationIds;
|
|
1992
1998
|
}
|
|
1999
|
+
if (typeof this.options !== 'undefined' && this.options !== null) {
|
|
2000
|
+
toReturn['options'] = 'toApiJson' in this.options ? this.options.toApiJson() : this.options;
|
|
2001
|
+
}
|
|
1993
2002
|
return toReturn;
|
|
1994
2003
|
}
|
|
1995
2004
|
}
|