@vendasta/conversation 0.59.0 → 0.60.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 +10 -1
- package/fesm2015/vendasta-conversation.mjs +9 -0
- package/fesm2015/vendasta-conversation.mjs.map +1 -1
- package/fesm2020/vendasta-conversation.mjs +9 -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
|
@@ -103,6 +103,7 @@ export interface GetMultiConversationDetailsResponseDetailedConversationInterfac
|
|
|
103
103
|
conversation?: ConversationInterface;
|
|
104
104
|
latestMessage?: MessageInterface;
|
|
105
105
|
participants?: ParticipantInterface[];
|
|
106
|
+
summary?: string;
|
|
106
107
|
}
|
|
107
108
|
export interface EvaluateResponseRequestInterface {
|
|
108
109
|
messageId?: string;
|
|
@@ -151,6 +152,7 @@ export interface GetMultiConfigurationResponseInterface {
|
|
|
151
152
|
}
|
|
152
153
|
export interface GetMultiConversationDetailsRequestInterface {
|
|
153
154
|
conversationIds?: string[];
|
|
155
|
+
options?: FieldMaskInterface;
|
|
154
156
|
}
|
|
155
157
|
export interface GetMultiConversationDetailsResponseInterface {
|
|
156
158
|
conversations?: GetMultiConversationDetailsResponseDetailedConversationInterface[];
|
|
@@ -168,6 +168,7 @@ export declare class GetMultiConversationDetailsResponseDetailedConversation imp
|
|
|
168
168
|
conversation: Conversation;
|
|
169
169
|
latestMessage: Message;
|
|
170
170
|
participants: Participant[];
|
|
171
|
+
summary: string;
|
|
171
172
|
static fromProto(proto: any): GetMultiConversationDetailsResponseDetailedConversation;
|
|
172
173
|
constructor(kwargs?: i.GetMultiConversationDetailsResponseDetailedConversationInterface);
|
|
173
174
|
toApiJson(): object;
|
|
@@ -261,6 +262,7 @@ export declare class GetMultiConfigurationResponse implements i.GetMultiConfigur
|
|
|
261
262
|
}
|
|
262
263
|
export declare class GetMultiConversationDetailsRequest implements i.GetMultiConversationDetailsRequestInterface {
|
|
263
264
|
conversationIds: string[];
|
|
265
|
+
options: FieldMask;
|
|
264
266
|
static fromProto(proto: any): GetMultiConversationDetailsRequest;
|
|
265
267
|
constructor(kwargs?: i.GetMultiConversationDetailsRequestInterface);
|
|
266
268
|
toApiJson(): object;
|