@vendasta/conversation 0.15.0 → 0.16.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.
@@ -78,12 +78,14 @@ export interface GetMultiConversationMessageCountResponseInterface {
78
78
  }
79
79
  export interface GetMultiMessagesRequestInterface {
80
80
  messageIds?: string[];
81
+ conversationId?: string;
81
82
  }
82
83
  export interface GetMultiMessagesResponseInterface {
83
84
  messages?: MessageInterface[];
84
85
  }
85
86
  export interface GetMultiParticipantsRequestInterface {
86
87
  participantIds?: string[];
88
+ conversationId?: string;
87
89
  }
88
90
  export interface GetMultiParticipantsResponseInterface {
89
91
  participants?: ParticipantInterface[];
@@ -134,6 +134,7 @@ export declare class GetMultiConversationMessageCountResponse implements i.GetMu
134
134
  }
135
135
  export declare class GetMultiMessagesRequest implements i.GetMultiMessagesRequestInterface {
136
136
  messageIds: string[];
137
+ conversationId: string;
137
138
  static fromProto(proto: any): GetMultiMessagesRequest;
138
139
  constructor(kwargs?: i.GetMultiMessagesRequestInterface);
139
140
  toApiJson(): object;
@@ -146,6 +147,7 @@ export declare class GetMultiMessagesResponse implements i.GetMultiMessagesRespo
146
147
  }
147
148
  export declare class GetMultiParticipantsRequest implements i.GetMultiParticipantsRequestInterface {
148
149
  participantIds: string[];
150
+ conversationId: string;
149
151
  static fromProto(proto: any): GetMultiParticipantsRequest;
150
152
  constructor(kwargs?: i.GetMultiParticipantsRequestInterface);
151
153
  toApiJson(): object;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/conversation",
3
- "version": "0.15.0",
3
+ "version": "0.16.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^13.0.0",
6
6
  "@angular/core": "^13.0.0"