@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.
- 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
|
@@ -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;
|