@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.
- package/esm2020/lib/_internal/interfaces/api.interface.mjs +1 -1
- package/esm2020/lib/_internal/objects/api.mjs +10 -1
- package/fesm2015/vendasta-forms_microservice.mjs +9 -0
- package/fesm2015/vendasta-forms_microservice.mjs.map +1 -1
- package/fesm2020/vendasta-forms_microservice.mjs +9 -0
- package/fesm2020/vendasta-forms_microservice.mjs.map +1 -1
- package/lib/_internal/interfaces/api.interface.d.ts +3 -0
- package/lib/_internal/objects/api.d.ts +3 -0
- package/package.json +1 -1
|
@@ -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
|
}
|