@vendasta/conversation 0.45.0 → 0.47.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/interfaces/configuration.interface.mjs +1 -1
- package/esm2020/lib/_internal/objects/api.mjs +4 -1
- package/esm2020/lib/_internal/objects/configuration.mjs +4 -1
- package/fesm2015/vendasta-conversation.mjs +6 -0
- package/fesm2015/vendasta-conversation.mjs.map +1 -1
- package/fesm2020/vendasta-conversation.mjs +6 -0
- package/fesm2020/vendasta-conversation.mjs.map +1 -1
- package/lib/_internal/interfaces/api.interface.d.ts +1 -0
- package/lib/_internal/interfaces/configuration.interface.d.ts +1 -0
- package/lib/_internal/objects/api.d.ts +1 -0
- package/lib/_internal/objects/configuration.d.ts +1 -0
- package/package.json +1 -1
|
@@ -742,6 +742,9 @@ class Configuration {
|
|
|
742
742
|
if (typeof this.inboxProEnabled !== 'undefined') {
|
|
743
743
|
toReturn['inboxProEnabled'] = this.inboxProEnabled;
|
|
744
744
|
}
|
|
745
|
+
if (typeof this.webChatEnabled !== 'undefined') {
|
|
746
|
+
toReturn['webChatEnabled'] = this.webChatEnabled;
|
|
747
|
+
}
|
|
745
748
|
return toReturn;
|
|
746
749
|
}
|
|
747
750
|
}
|
|
@@ -1214,6 +1217,9 @@ class CreateWidgetRequest {
|
|
|
1214
1217
|
if (typeof this.allowedUrls !== 'undefined') {
|
|
1215
1218
|
toReturn['allowedUrls'] = this.allowedUrls;
|
|
1216
1219
|
}
|
|
1220
|
+
if (typeof this.welcomeMessage !== 'undefined') {
|
|
1221
|
+
toReturn['welcomeMessage'] = this.welcomeMessage;
|
|
1222
|
+
}
|
|
1217
1223
|
return toReturn;
|
|
1218
1224
|
}
|
|
1219
1225
|
}
|