@vendasta/conversation 0.89.0 → 0.91.1

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.
@@ -99,6 +99,7 @@ export interface CreateWidgetRequestInterface {
99
99
  position?: e.WidgetPosition;
100
100
  hideMobileCta?: boolean;
101
101
  customGreetingMessage?: string;
102
+ enableGreetingMessage?: boolean;
102
103
  }
103
104
  export interface CreateWidgetResponseInterface {
104
105
  widget?: WidgetInterface;
@@ -124,6 +125,8 @@ export interface GetMultiConversationDetailsResponseDetailedConversationInterfac
124
125
  latestMessage?: MessageInterface;
125
126
  participants?: ParticipantInterface[];
126
127
  summary?: string;
128
+ event?: EventInterface;
129
+ message?: MessageInterface;
127
130
  }
128
131
  export interface SearchConversationsResponseDetailedConversationInterface {
129
132
  conversation?: ConversationInterface;
@@ -269,6 +272,7 @@ export interface GetWidgetConfigResponseInterface {
269
272
  position?: e.WidgetPosition;
270
273
  hideMobileCta?: boolean;
271
274
  customGreetingMessage?: string;
275
+ enableGreetingMessage?: boolean;
272
276
  }
273
277
  export interface GetWidgetConversationResponseInterface {
274
278
  conversation?: ConversationInterface;
@@ -496,6 +500,7 @@ export interface UpdateWidgetRequestInterface {
496
500
  position?: e.WidgetPosition;
497
501
  hideMobileCta?: boolean;
498
502
  customGreetingMessage?: string;
503
+ enableGreetingMessage?: boolean;
499
504
  fieldMask?: FieldMaskInterface;
500
505
  }
501
506
  export interface UpdateWidgetResponseInterface {
@@ -24,4 +24,5 @@ export interface WidgetInterface {
24
24
  embedHistory?: string[];
25
25
  hideMobileCta?: boolean;
26
26
  customGreetingMessage?: string;
27
+ enableGreetingMessage?: boolean;
27
28
  }
@@ -149,6 +149,7 @@ export declare class CreateWidgetRequest implements i.CreateWidgetRequestInterfa
149
149
  position: e.WidgetPosition;
150
150
  hideMobileCta: boolean;
151
151
  customGreetingMessage: string;
152
+ enableGreetingMessage: boolean;
152
153
  static fromProto(proto: any): CreateWidgetRequest;
153
154
  constructor(kwargs?: i.CreateWidgetRequestInterface);
154
155
  toApiJson(): object;
@@ -195,6 +196,8 @@ export declare class GetMultiConversationDetailsResponseDetailedConversation imp
195
196
  latestMessage: Message;
196
197
  participants: Participant[];
197
198
  summary: string;
199
+ event: Event;
200
+ message: Message;
198
201
  static fromProto(proto: any): GetMultiConversationDetailsResponseDetailedConversation;
199
202
  constructor(kwargs?: i.GetMultiConversationDetailsResponseDetailedConversationInterface);
200
203
  toApiJson(): object;
@@ -454,6 +457,7 @@ export declare class GetWidgetConfigResponse implements i.GetWidgetConfigRespons
454
457
  position: e.WidgetPosition;
455
458
  hideMobileCta: boolean;
456
459
  customGreetingMessage: string;
460
+ enableGreetingMessage: boolean;
457
461
  static fromProto(proto: any): GetWidgetConfigResponse;
458
462
  constructor(kwargs?: i.GetWidgetConfigResponseInterface);
459
463
  toApiJson(): object;
@@ -807,6 +811,7 @@ export declare class UpdateWidgetRequest implements i.UpdateWidgetRequestInterfa
807
811
  position: e.WidgetPosition;
808
812
  hideMobileCta: boolean;
809
813
  customGreetingMessage: string;
814
+ enableGreetingMessage: boolean;
810
815
  fieldMask: FieldMask;
811
816
  static fromProto(proto: any): UpdateWidgetRequest;
812
817
  constructor(kwargs?: i.UpdateWidgetRequestInterface);
@@ -29,6 +29,7 @@ export declare class Widget implements i.WidgetInterface {
29
29
  embedHistory: string[];
30
30
  hideMobileCta: boolean;
31
31
  customGreetingMessage: string;
32
+ enableGreetingMessage: boolean;
32
33
  static fromProto(proto: any): Widget;
33
34
  constructor(kwargs?: i.WidgetInterface);
34
35
  toApiJson(): object;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/conversation",
3
- "version": "0.89.0",
3
+ "version": "0.91.1",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.0",
6
6
  "@angular/core": "^17.3.0"