@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.
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/conversation",
3
- "version": "0.40.0",
3
+ "version": "0.41.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.1.0",
6
6
  "@angular/core": "^15.1.0"