@vendasta/conversation 0.100.0 → 0.101.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.
@@ -2051,6 +2051,7 @@ class CreateConversationRequest {
2051
2051
  updated;
2052
2052
  originLocation;
2053
2053
  originLocationExternalId;
2054
+ instanceId;
2054
2055
  static fromProto(proto) {
2055
2056
  let m = new CreateConversationRequest();
2056
2057
  m = Object.assign(m, proto);
@@ -2100,6 +2101,9 @@ class CreateConversationRequest {
2100
2101
  if (typeof this.originLocationExternalId !== 'undefined') {
2101
2102
  toReturn['originLocationExternalId'] = this.originLocationExternalId;
2102
2103
  }
2104
+ if (typeof this.instanceId !== 'undefined') {
2105
+ toReturn['instanceId'] = this.instanceId;
2106
+ }
2103
2107
  return toReturn;
2104
2108
  }
2105
2109
  }