@vendasta/forms_microservice 0.11.0 → 0.13.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 +13 -1
- package/fesm2015/vendasta-forms_microservice.mjs +12 -0
- package/fesm2015/vendasta-forms_microservice.mjs.map +1 -1
- package/fesm2020/vendasta-forms_microservice.mjs +12 -0
- package/fesm2020/vendasta-forms_microservice.mjs.map +1 -1
- package/lib/_internal/interfaces/api.interface.d.ts +4 -0
- package/lib/_internal/objects/api.d.ts +4 -0
- package/package.json +1 -1
|
@@ -414,6 +414,9 @@ class FormConfig {
|
|
|
414
414
|
if (typeof this.submitButtonLabel !== 'undefined') {
|
|
415
415
|
toReturn['submitButtonLabel'] = this.submitButtonLabel;
|
|
416
416
|
}
|
|
417
|
+
if (typeof this.createInboxConversation !== 'undefined') {
|
|
418
|
+
toReturn['createInboxConversation'] = this.createInboxConversation;
|
|
419
|
+
}
|
|
417
420
|
return toReturn;
|
|
418
421
|
}
|
|
419
422
|
}
|
|
@@ -861,6 +864,9 @@ class ListMappedFieldSchemaRequest {
|
|
|
861
864
|
if (typeof this.pagingOptions !== 'undefined' && this.pagingOptions !== null) {
|
|
862
865
|
toReturn['pagingOptions'] = 'toApiJson' in this.pagingOptions ? this.pagingOptions.toApiJson() : this.pagingOptions;
|
|
863
866
|
}
|
|
867
|
+
if (typeof this.mappedToResource !== 'undefined') {
|
|
868
|
+
toReturn['mappedToResource'] = this.mappedToResource;
|
|
869
|
+
}
|
|
864
870
|
return toReturn;
|
|
865
871
|
}
|
|
866
872
|
}
|
|
@@ -1207,6 +1213,12 @@ class SystemDefined {
|
|
|
1207
1213
|
if (typeof this.required !== 'undefined') {
|
|
1208
1214
|
toReturn['required'] = this.required;
|
|
1209
1215
|
}
|
|
1216
|
+
if (typeof this.includedByDefault !== 'undefined') {
|
|
1217
|
+
toReturn['includedByDefault'] = this.includedByDefault;
|
|
1218
|
+
}
|
|
1219
|
+
if (typeof this.hidden !== 'undefined') {
|
|
1220
|
+
toReturn['hidden'] = this.hidden;
|
|
1221
|
+
}
|
|
1210
1222
|
return toReturn;
|
|
1211
1223
|
}
|
|
1212
1224
|
}
|