@vendasta/conversation 0.100.0 → 0.101.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/esm2022/lib/_internal/interfaces/api.interface.mjs +1 -1
- package/esm2022/lib/_internal/objects/api.mjs +5 -1
- package/fesm2022/vendasta-conversation.mjs +4 -0
- package/fesm2022/vendasta-conversation.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
|
@@ -2051,6 +2051,7 @@ class CreateConversationRequest {
|
|
|
2051
2051
|
updated;
|
|
2052
2052
|
originLocation;
|
|
2053
2053
|
originLocationExternalId;
|
|
2054
|
+
instanceId;
|
|
2054
2055
|
static fromProto(proto) {
|
|
2055
2056
|
let m = new CreateConversationRequest();
|
|
2056
2057
|
m = Object.assign(m, proto);
|
|
@@ -2100,6 +2101,9 @@ class CreateConversationRequest {
|
|
|
2100
2101
|
if (typeof this.originLocationExternalId !== 'undefined') {
|
|
2101
2102
|
toReturn['originLocationExternalId'] = this.originLocationExternalId;
|
|
2102
2103
|
}
|
|
2104
|
+
if (typeof this.instanceId !== 'undefined') {
|
|
2105
|
+
toReturn['instanceId'] = this.instanceId;
|
|
2106
|
+
}
|
|
2103
2107
|
return toReturn;
|
|
2104
2108
|
}
|
|
2105
2109
|
}
|