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