@vendasta/conversation 0.96.0 → 0.97.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/evaluation.interface.mjs +1 -1
- package/esm2022/lib/_internal/objects/api.mjs +13 -1
- package/esm2022/lib/_internal/objects/evaluation.mjs +5 -1
- package/fesm2022/vendasta-conversation.mjs +16 -0
- package/fesm2022/vendasta-conversation.mjs.map +1 -1
- package/lib/_internal/interfaces/api.interface.d.ts +3 -0
- package/lib/_internal/interfaces/evaluation.interface.d.ts +1 -0
- package/lib/_internal/objects/api.d.ts +3 -0
- package/lib/_internal/objects/evaluation.d.ts +1 -0
- package/package.json +1 -1
|
@@ -138,6 +138,9 @@ export interface EvaluateResponseRequestInterface {
|
|
|
138
138
|
messageId?: string;
|
|
139
139
|
sentiment?: e.EvaluationSentiment;
|
|
140
140
|
comment?: string;
|
|
141
|
+
evaluatedEventId?: string;
|
|
142
|
+
evaluatedMessageId?: string;
|
|
143
|
+
conversationId?: string;
|
|
141
144
|
}
|
|
142
145
|
export interface GetAvailableChannelsForConversationRequestInterface {
|
|
143
146
|
conversationId?: string;
|
|
@@ -215,6 +215,9 @@ export declare class EvaluateResponseRequest implements i.EvaluateResponseReques
|
|
|
215
215
|
messageId: string;
|
|
216
216
|
sentiment: e.EvaluationSentiment;
|
|
217
217
|
comment: string;
|
|
218
|
+
evaluatedEventId: string;
|
|
219
|
+
evaluatedMessageId: string;
|
|
220
|
+
conversationId: string;
|
|
218
221
|
static fromProto(proto: any): EvaluateResponseRequest;
|
|
219
222
|
constructor(kwargs?: i.EvaluateResponseRequestInterface);
|
|
220
223
|
toApiJson(): object;
|
|
@@ -9,6 +9,7 @@ export declare class ResponseEvaluation implements i.ResponseEvaluationInterface
|
|
|
9
9
|
comment: string;
|
|
10
10
|
createdAt: Date;
|
|
11
11
|
subjectParticipants: SubjectParticipant[];
|
|
12
|
+
eventId: string;
|
|
12
13
|
static fromProto(proto: any): ResponseEvaluation;
|
|
13
14
|
constructor(kwargs?: i.ResponseEvaluationInterface);
|
|
14
15
|
toApiJson(): object;
|