@vendasta/conversation 0.87.0 → 0.88.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.
@@ -96,6 +96,7 @@ export interface CreateWidgetRequestInterface {
96
96
  assistantAvatarUrl?: string;
97
97
  position?: e.WidgetPosition;
98
98
  hideMobileCta?: boolean;
99
+ customGreetingMessage?: string;
99
100
  }
100
101
  export interface CreateWidgetResponseInterface {
101
102
  widget?: WidgetInterface;
@@ -265,6 +266,7 @@ export interface GetWidgetConfigResponseInterface {
265
266
  assistantAvatarUrl?: string;
266
267
  position?: e.WidgetPosition;
267
268
  hideMobileCta?: boolean;
269
+ customGreetingMessage?: string;
268
270
  }
269
271
  export interface GetWidgetConversationResponseInterface {
270
272
  conversation?: ConversationInterface;
@@ -491,6 +493,7 @@ export interface UpdateWidgetRequestInterface {
491
493
  assistantAvatarUrl?: string;
492
494
  position?: e.WidgetPosition;
493
495
  hideMobileCta?: boolean;
496
+ customGreetingMessage?: string;
494
497
  fieldMask?: FieldMaskInterface;
495
498
  }
496
499
  export interface UpdateWidgetResponseInterface {
@@ -23,4 +23,5 @@ export interface WidgetInterface {
23
23
  assistantAvatarUrl?: string;
24
24
  embedHistory?: string[];
25
25
  hideMobileCta?: boolean;
26
+ customGreetingMessage?: string;
26
27
  }
@@ -146,6 +146,7 @@ export declare class CreateWidgetRequest implements i.CreateWidgetRequestInterfa
146
146
  assistantAvatarUrl: string;
147
147
  position: e.WidgetPosition;
148
148
  hideMobileCta: boolean;
149
+ customGreetingMessage: string;
149
150
  static fromProto(proto: any): CreateWidgetRequest;
150
151
  constructor(kwargs?: i.CreateWidgetRequestInterface);
151
152
  toApiJson(): object;
@@ -450,6 +451,7 @@ export declare class GetWidgetConfigResponse implements i.GetWidgetConfigRespons
450
451
  assistantAvatarUrl: string;
451
452
  position: e.WidgetPosition;
452
453
  hideMobileCta: boolean;
454
+ customGreetingMessage: string;
453
455
  static fromProto(proto: any): GetWidgetConfigResponse;
454
456
  constructor(kwargs?: i.GetWidgetConfigResponseInterface);
455
457
  toApiJson(): object;
@@ -802,6 +804,7 @@ export declare class UpdateWidgetRequest implements i.UpdateWidgetRequestInterfa
802
804
  assistantAvatarUrl: string;
803
805
  position: e.WidgetPosition;
804
806
  hideMobileCta: boolean;
807
+ customGreetingMessage: string;
805
808
  fieldMask: FieldMask;
806
809
  static fromProto(proto: any): UpdateWidgetRequest;
807
810
  constructor(kwargs?: i.UpdateWidgetRequestInterface);
@@ -28,6 +28,7 @@ export declare class Widget implements i.WidgetInterface {
28
28
  assistantAvatarUrl: string;
29
29
  embedHistory: string[];
30
30
  hideMobileCta: boolean;
31
+ customGreetingMessage: string;
31
32
  static fromProto(proto: any): Widget;
32
33
  constructor(kwargs?: i.WidgetInterface);
33
34
  toApiJson(): object;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/conversation",
3
- "version": "0.87.0",
3
+ "version": "0.88.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.0",
6
6
  "@angular/core": "^17.3.0"