@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
|
@@ -482,6 +482,7 @@ export interface SearchConversationsResponseInterface {
|
|
|
482
482
|
}
|
|
483
483
|
export interface SendMessageOptionsInterface {
|
|
484
484
|
runSync?: boolean;
|
|
485
|
+
skipMessageDelivery?: boolean;
|
|
485
486
|
}
|
|
486
487
|
export interface SendMessageRequestInterface {
|
|
487
488
|
sender?: ParticipantInterface;
|
|
@@ -784,6 +784,7 @@ export declare class SearchConversationsResponse implements i.SearchConversation
|
|
|
784
784
|
}
|
|
785
785
|
export declare class SendMessageOptions implements i.SendMessageOptionsInterface {
|
|
786
786
|
runSync: boolean;
|
|
787
|
+
skipMessageDelivery: boolean;
|
|
787
788
|
static fromProto(proto: any): SendMessageOptions;
|
|
788
789
|
constructor(kwargs?: i.SendMessageOptionsInterface);
|
|
789
790
|
toApiJson(): object;
|