@vendasta/conversation 0.90.0 → 0.92.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/esm2022/lib/_internal/interfaces/api.interface.mjs +1 -1
- package/esm2022/lib/_internal/interfaces/conversation.interface.mjs +1 -1
- package/esm2022/lib/_internal/objects/api.mjs +15 -1
- package/esm2022/lib/_internal/objects/conversation.mjs +8 -1
- package/fesm2022/vendasta-conversation.mjs +21 -0
- package/fesm2022/vendasta-conversation.mjs.map +1 -1
- package/lib/_internal/interfaces/api.interface.d.ts +2 -0
- package/lib/_internal/interfaces/conversation.interface.d.ts +1 -0
- package/lib/_internal/objects/api.d.ts +2 -0
- package/lib/_internal/objects/conversation.d.ts +1 -0
- package/package.json +1 -1
|
@@ -125,6 +125,8 @@ export interface GetMultiConversationDetailsResponseDetailedConversationInterfac
|
|
|
125
125
|
latestMessage?: MessageInterface;
|
|
126
126
|
participants?: ParticipantInterface[];
|
|
127
127
|
summary?: string;
|
|
128
|
+
event?: EventInterface;
|
|
129
|
+
message?: MessageInterface;
|
|
128
130
|
}
|
|
129
131
|
export interface SearchConversationsResponseDetailedConversationInterface {
|
|
130
132
|
conversation?: ConversationInterface;
|
|
@@ -22,6 +22,7 @@ export interface ConversationInterface {
|
|
|
22
22
|
aiConfiguration?: AIConfigurationInterface;
|
|
23
23
|
latestMsgSentTimeBySubjectParticipant?: LatestMessageSentTimeBySubjectParticipantInterface[];
|
|
24
24
|
subjectParticipantKey?: SubjectParticipantKeyInterface;
|
|
25
|
+
latestRelevantActivityTime?: Date;
|
|
25
26
|
}
|
|
26
27
|
export interface ConversationKeyInterface {
|
|
27
28
|
subjectParticipants?: SubjectParticipantInterface[];
|
|
@@ -196,6 +196,8 @@ export declare class GetMultiConversationDetailsResponseDetailedConversation imp
|
|
|
196
196
|
latestMessage: Message;
|
|
197
197
|
participants: Participant[];
|
|
198
198
|
summary: string;
|
|
199
|
+
event: Event;
|
|
200
|
+
message: Message;
|
|
199
201
|
static fromProto(proto: any): GetMultiConversationDetailsResponseDetailedConversation;
|
|
200
202
|
constructor(kwargs?: i.GetMultiConversationDetailsResponseDetailedConversationInterface);
|
|
201
203
|
toApiJson(): object;
|
|
@@ -27,6 +27,7 @@ export declare class Conversation implements i.ConversationInterface {
|
|
|
27
27
|
aiConfiguration: AIConfiguration;
|
|
28
28
|
latestMsgSentTimeBySubjectParticipant: LatestMessageSentTimeBySubjectParticipant[];
|
|
29
29
|
subjectParticipantKey: SubjectParticipantKey;
|
|
30
|
+
latestRelevantActivityTime: Date;
|
|
30
31
|
static fromProto(proto: any): Conversation;
|
|
31
32
|
constructor(kwargs?: i.ConversationInterface);
|
|
32
33
|
toApiJson(): object;
|