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