@vendasta/conversation 0.89.0 → 0.90.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.
@@ -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;
@@ -269,6 +270,7 @@ export interface GetWidgetConfigResponseInterface {
269
270
  position?: e.WidgetPosition;
270
271
  hideMobileCta?: boolean;
271
272
  customGreetingMessage?: string;
273
+ enableGreetingMessage?: boolean;
272
274
  }
273
275
  export interface GetWidgetConversationResponseInterface {
274
276
  conversation?: ConversationInterface;
@@ -496,6 +498,7 @@ export interface UpdateWidgetRequestInterface {
496
498
  position?: e.WidgetPosition;
497
499
  hideMobileCta?: boolean;
498
500
  customGreetingMessage?: string;
501
+ enableGreetingMessage?: boolean;
499
502
  fieldMask?: FieldMaskInterface;
500
503
  }
501
504
  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;
@@ -454,6 +455,7 @@ export declare class GetWidgetConfigResponse implements i.GetWidgetConfigRespons
454
455
  position: e.WidgetPosition;
455
456
  hideMobileCta: boolean;
456
457
  customGreetingMessage: string;
458
+ enableGreetingMessage: boolean;
457
459
  static fromProto(proto: any): GetWidgetConfigResponse;
458
460
  constructor(kwargs?: i.GetWidgetConfigResponseInterface);
459
461
  toApiJson(): object;
@@ -807,6 +809,7 @@ export declare class UpdateWidgetRequest implements i.UpdateWidgetRequestInterfa
807
809
  position: e.WidgetPosition;
808
810
  hideMobileCta: boolean;
809
811
  customGreetingMessage: string;
812
+ enableGreetingMessage: boolean;
810
813
  fieldMask: FieldMask;
811
814
  static fromProto(proto: any): UpdateWidgetRequest;
812
815
  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.90.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.0",
6
6
  "@angular/core": "^17.3.0"