@vendasta/conversation 0.40.0 → 0.41.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
|
@@ -1687,6 +1687,9 @@ class GetMultiMessagesRequest {
|
|
|
1687
1687
|
if (typeof this.conversationId !== 'undefined') {
|
|
1688
1688
|
toReturn['conversationId'] = this.conversationId;
|
|
1689
1689
|
}
|
|
1690
|
+
if (typeof this.languageCode !== 'undefined') {
|
|
1691
|
+
toReturn['languageCode'] = this.languageCode;
|
|
1692
|
+
}
|
|
1690
1693
|
return toReturn;
|
|
1691
1694
|
}
|
|
1692
1695
|
}
|
|
@@ -2577,6 +2580,9 @@ class SendMessageResponse {
|
|
|
2577
2580
|
if (typeof this.workflowId !== 'undefined') {
|
|
2578
2581
|
toReturn['workflowId'] = this.workflowId;
|
|
2579
2582
|
}
|
|
2583
|
+
if (typeof this.messageId !== 'undefined') {
|
|
2584
|
+
toReturn['messageId'] = this.messageId;
|
|
2585
|
+
}
|
|
2580
2586
|
return toReturn;
|
|
2581
2587
|
}
|
|
2582
2588
|
}
|