@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.
@@ -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;
@@ -7,4 +7,5 @@ export interface ResponseEvaluationInterface {
7
7
  comment?: string;
8
8
  createdAt?: Date;
9
9
  subjectParticipants?: SubjectParticipantInterface[];
10
+ eventId?: string;
10
11
  }
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/conversation",
3
- "version": "0.96.0",
3
+ "version": "0.97.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.0",
6
6
  "@angular/core": "^17.3.0"