@vendasta/conversation 0.40.0 → 0.41.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 +7 -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 +2 -0
- package/lib/_internal/objects/api.d.ts +2 -0
- package/package.json +1 -1
|
@@ -132,6 +132,7 @@ export interface GetMultiConversationMessageCountResponseInterface {
|
|
|
132
132
|
export interface GetMultiMessagesRequestInterface {
|
|
133
133
|
messageIds?: string[];
|
|
134
134
|
conversationId?: string;
|
|
135
|
+
languageCode?: string;
|
|
135
136
|
}
|
|
136
137
|
export interface GetMultiMessagesResponseInterface {
|
|
137
138
|
messages?: MessageInterface[];
|
|
@@ -279,6 +280,7 @@ export interface SendMessageRequestInterface {
|
|
|
279
280
|
}
|
|
280
281
|
export interface SendMessageResponseInterface {
|
|
281
282
|
workflowId?: string;
|
|
283
|
+
messageId?: string;
|
|
282
284
|
}
|
|
283
285
|
export interface SendWidgetMessageRequestInterface {
|
|
284
286
|
type?: e.MessageType;
|
|
@@ -230,6 +230,7 @@ export declare class GetMultiConversationMessageCountResponse implements i.GetMu
|
|
|
230
230
|
export declare class GetMultiMessagesRequest implements i.GetMultiMessagesRequestInterface {
|
|
231
231
|
messageIds: string[];
|
|
232
232
|
conversationId: string;
|
|
233
|
+
languageCode: string;
|
|
233
234
|
static fromProto(proto: any): GetMultiMessagesRequest;
|
|
234
235
|
constructor(kwargs?: i.GetMultiMessagesRequestInterface);
|
|
235
236
|
toApiJson(): object;
|
|
@@ -470,6 +471,7 @@ export declare class SendMessageRequest implements i.SendMessageRequestInterface
|
|
|
470
471
|
}
|
|
471
472
|
export declare class SendMessageResponse implements i.SendMessageResponseInterface {
|
|
472
473
|
workflowId: string;
|
|
474
|
+
messageId: string;
|
|
473
475
|
static fromProto(proto: any): SendMessageResponse;
|
|
474
476
|
constructor(kwargs?: i.SendMessageResponseInterface);
|
|
475
477
|
toApiJson(): object;
|