@vendasta/conversation 0.58.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.
@@ -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[];
@@ -373,7 +375,6 @@ export interface UpdateWidgetRequestInterface {
373
375
  welcomeMessage?: string;
374
376
  isEnabled?: boolean;
375
377
  fieldMask?: FieldMaskInterface;
376
- dataSources?: DataSourcesInterface;
377
378
  textColor?: string;
378
379
  accentColor?: string;
379
380
  accentTextColor?: string;
@@ -1,8 +1,6 @@
1
1
  import * as e from '../enums';
2
2
  export interface DataSourcesInterface {
3
3
  businessProfile?: boolean;
4
- website?: boolean;
5
- userInput?: boolean;
6
4
  }
7
5
  export interface WidgetInterface {
8
6
  widgetId?: string;
@@ -15,7 +13,6 @@ export interface WidgetInterface {
15
13
  updated?: Date;
16
14
  isEnabled?: boolean;
17
15
  welcomeMessage?: string;
18
- dataSources?: DataSourcesInterface;
19
16
  textColor?: string;
20
17
  accentColor?: string;
21
18
  accentTextColor?: string;
@@ -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;
@@ -624,7 +626,6 @@ export declare class UpdateWidgetRequest implements i.UpdateWidgetRequestInterfa
624
626
  welcomeMessage: string;
625
627
  isEnabled: boolean;
626
628
  fieldMask: FieldMask;
627
- dataSources: DataSources;
628
629
  textColor: string;
629
630
  accentColor: string;
630
631
  accentTextColor: string;
@@ -3,8 +3,6 @@ import * as e from '../enums';
3
3
  export declare function enumStringToValue<E>(enumRef: any, value: string): E;
4
4
  export declare class DataSources implements i.DataSourcesInterface {
5
5
  businessProfile: boolean;
6
- website: boolean;
7
- userInput: boolean;
8
6
  static fromProto(proto: any): DataSources;
9
7
  constructor(kwargs?: i.DataSourcesInterface);
10
8
  toApiJson(): object;
@@ -20,7 +18,6 @@ export declare class Widget implements i.WidgetInterface {
20
18
  updated: Date;
21
19
  isEnabled: boolean;
22
20
  welcomeMessage: string;
23
- dataSources: DataSources;
24
21
  textColor: string;
25
22
  accentColor: string;
26
23
  accentTextColor: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/conversation",
3
- "version": "0.58.0",
3
+ "version": "0.60.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.1.0",
6
6
  "@angular/core": "^15.1.0"