@vendasta/conversation 0.45.0 → 0.47.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.
@@ -742,6 +742,9 @@ class Configuration {
742
742
  if (typeof this.inboxProEnabled !== 'undefined') {
743
743
  toReturn['inboxProEnabled'] = this.inboxProEnabled;
744
744
  }
745
+ if (typeof this.webChatEnabled !== 'undefined') {
746
+ toReturn['webChatEnabled'] = this.webChatEnabled;
747
+ }
745
748
  return toReturn;
746
749
  }
747
750
  }
@@ -1214,6 +1217,9 @@ class CreateWidgetRequest {
1214
1217
  if (typeof this.allowedUrls !== 'undefined') {
1215
1218
  toReturn['allowedUrls'] = this.allowedUrls;
1216
1219
  }
1220
+ if (typeof this.welcomeMessage !== 'undefined') {
1221
+ toReturn['welcomeMessage'] = this.welcomeMessage;
1222
+ }
1217
1223
  return toReturn;
1218
1224
  }
1219
1225
  }