@vendasta/conversation 0.94.0 → 0.95.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.
@@ -1,3 +1,4 @@
1
+ import { SubjectParticipantInterface } from './common.interface';
1
2
  import * as e from '../enums';
2
3
  export interface ResponseEvaluationInterface {
3
4
  messageId?: string;
@@ -5,4 +6,5 @@ export interface ResponseEvaluationInterface {
5
6
  sentiment?: e.EvaluationSentiment;
6
7
  comment?: string;
7
8
  createdAt?: Date;
9
+ subjectParticipants?: SubjectParticipantInterface[];
8
10
  }
@@ -1,4 +1,5 @@
1
1
  import * as i from '../interfaces';
2
+ import { SubjectParticipant } from './common';
2
3
  import * as e from '../enums';
3
4
  export declare function enumStringToValue<E>(enumRef: any, value: string): E;
4
5
  export declare class ResponseEvaluation implements i.ResponseEvaluationInterface {
@@ -7,6 +8,7 @@ export declare class ResponseEvaluation implements i.ResponseEvaluationInterface
7
8
  sentiment: e.EvaluationSentiment;
8
9
  comment: string;
9
10
  createdAt: Date;
11
+ subjectParticipants: SubjectParticipant[];
10
12
  static fromProto(proto: any): ResponseEvaluation;
11
13
  constructor(kwargs?: i.ResponseEvaluationInterface);
12
14
  toApiJson(): object;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/conversation",
3
- "version": "0.94.0",
3
+ "version": "0.95.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.0",
6
6
  "@angular/core": "^17.3.0"