@vendasta/forms_microservice 0.11.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.
@@ -861,6 +861,9 @@ class ListMappedFieldSchemaRequest {
861
861
  if (typeof this.pagingOptions !== 'undefined' && this.pagingOptions !== null) {
862
862
  toReturn['pagingOptions'] = 'toApiJson' in this.pagingOptions ? this.pagingOptions.toApiJson() : this.pagingOptions;
863
863
  }
864
+ if (typeof this.mappedToResource !== 'undefined') {
865
+ toReturn['mappedToResource'] = this.mappedToResource;
866
+ }
864
867
  return toReturn;
865
868
  }
866
869
  }
@@ -1207,6 +1210,12 @@ class SystemDefined {
1207
1210
  if (typeof this.required !== 'undefined') {
1208
1211
  toReturn['required'] = this.required;
1209
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
+ }
1210
1219
  return toReturn;
1211
1220
  }
1212
1221
  }