@vendasta/conversation 0.105.0 → 0.106.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
|
@@ -4998,6 +4998,7 @@ class SearchConversationsResponse {
|
|
|
4998
4998
|
}
|
|
4999
4999
|
class SendMessageOptions {
|
|
5000
5000
|
runSync;
|
|
5001
|
+
skipMessageDelivery;
|
|
5001
5002
|
static fromProto(proto) {
|
|
5002
5003
|
let m = new SendMessageOptions();
|
|
5003
5004
|
m = Object.assign(m, proto);
|
|
@@ -5014,6 +5015,9 @@ class SendMessageOptions {
|
|
|
5014
5015
|
if (typeof this.runSync !== 'undefined') {
|
|
5015
5016
|
toReturn['runSync'] = this.runSync;
|
|
5016
5017
|
}
|
|
5018
|
+
if (typeof this.skipMessageDelivery !== 'undefined') {
|
|
5019
|
+
toReturn['skipMessageDelivery'] = this.skipMessageDelivery;
|
|
5020
|
+
}
|
|
5017
5021
|
return toReturn;
|
|
5018
5022
|
}
|
|
5019
5023
|
}
|