@vendasta/forms_microservice 0.10.0 → 0.12.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.
@@ -340,9 +340,6 @@ class ListFormsRequestFilters {
340
340
  }
341
341
  toApiJson() {
342
342
  const toReturn = {};
343
- if (typeof this.partnerId !== 'undefined') {
344
- toReturn['partnerId'] = this.partnerId;
345
- }
346
343
  if (typeof this.namespace !== 'undefined') {
347
344
  toReturn['namespace'] = this.namespace;
348
345
  }
@@ -864,6 +861,9 @@ class ListMappedFieldSchemaRequest {
864
861
  if (typeof this.pagingOptions !== 'undefined' && this.pagingOptions !== null) {
865
862
  toReturn['pagingOptions'] = 'toApiJson' in this.pagingOptions ? this.pagingOptions.toApiJson() : this.pagingOptions;
866
863
  }
864
+ if (typeof this.mappedToResource !== 'undefined') {
865
+ toReturn['mappedToResource'] = this.mappedToResource;
866
+ }
867
867
  return toReturn;
868
868
  }
869
869
  }
@@ -1210,6 +1210,12 @@ class SystemDefined {
1210
1210
  if (typeof this.required !== 'undefined') {
1211
1211
  toReturn['required'] = this.required;
1212
1212
  }
1213
+ if (typeof this.includedByDefault !== 'undefined') {
1214
+ toReturn['includedByDefault'] = this.includedByDefault;
1215
+ }
1216
+ if (typeof this.hidden !== 'undefined') {
1217
+ toReturn['hidden'] = this.hidden;
1218
+ }
1213
1219
  return toReturn;
1214
1220
  }
1215
1221
  }