@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.
@@ -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
  }