@vendasta/forms_microservice 0.20.0 → 0.21.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.
@@ -1175,6 +1175,9 @@ class ListFormsRequest {
1175
1175
  if (typeof this.filtersV2 !== 'undefined' && this.filtersV2 !== null) {
1176
1176
  toReturn['filtersV2'] = 'toApiJson' in this.filtersV2 ? this.filtersV2.toApiJson() : this.filtersV2;
1177
1177
  }
1178
+ if (typeof this.searchTerm !== 'undefined') {
1179
+ toReturn['searchTerm'] = this.searchTerm;
1180
+ }
1178
1181
  return toReturn;
1179
1182
  }
1180
1183
  }