@vendasta/forms_microservice 0.8.0 → 0.10.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
|
@@ -343,6 +343,9 @@ class ListFormsRequestFilters {
|
|
|
343
343
|
if (typeof this.partnerId !== 'undefined') {
|
|
344
344
|
toReturn['partnerId'] = this.partnerId;
|
|
345
345
|
}
|
|
346
|
+
if (typeof this.namespace !== 'undefined') {
|
|
347
|
+
toReturn['namespace'] = this.namespace;
|
|
348
|
+
}
|
|
346
349
|
return toReturn;
|
|
347
350
|
}
|
|
348
351
|
}
|
|
@@ -922,6 +925,9 @@ class MappedField {
|
|
|
922
925
|
if (typeof this.type !== 'undefined') {
|
|
923
926
|
toReturn['type'] = this.type;
|
|
924
927
|
}
|
|
928
|
+
if (typeof this.name !== 'undefined') {
|
|
929
|
+
toReturn['name'] = this.name;
|
|
930
|
+
}
|
|
925
931
|
if (typeof this.options !== 'undefined' && this.options !== null) {
|
|
926
932
|
toReturn['options'] = 'toApiJson' in this.options ? this.options.toApiJson() : this.options;
|
|
927
933
|
}
|
|
@@ -931,6 +937,9 @@ class MappedField {
|
|
|
931
937
|
if (typeof this.systemDefined !== 'undefined' && this.systemDefined !== null) {
|
|
932
938
|
toReturn['systemDefined'] = 'toApiJson' in this.systemDefined ? this.systemDefined.toApiJson() : this.systemDefined;
|
|
933
939
|
}
|
|
940
|
+
if (typeof this.readonly !== 'undefined') {
|
|
941
|
+
toReturn['readonly'] = this.readonly;
|
|
942
|
+
}
|
|
934
943
|
return toReturn;
|
|
935
944
|
}
|
|
936
945
|
}
|