@vendasta/conversation 0.88.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.
@@ -75,10 +75,12 @@ export interface CreateMultiMessagesRequestInterface {
75
75
  export interface CreateWidgetConversationRequestInterface {
76
76
  widgetId?: string;
77
77
  chatSourceUrl?: string;
78
+ greetingMessage?: string;
78
79
  }
79
80
  export interface CreateWidgetConversationResponseInterface {
80
81
  widgetParticipantToken?: string;
81
82
  conversation?: ConversationInterface;
83
+ greetingMessageId?: string;
82
84
  }
83
85
  export interface CreateWidgetRequestInterface {
84
86
  name?: string;
@@ -97,6 +99,7 @@ export interface CreateWidgetRequestInterface {
97
99
  position?: e.WidgetPosition;
98
100
  hideMobileCta?: boolean;
99
101
  customGreetingMessage?: string;
102
+ enableGreetingMessage?: boolean;
100
103
  }
101
104
  export interface CreateWidgetResponseInterface {
102
105
  widget?: WidgetInterface;
@@ -267,6 +270,7 @@ export interface GetWidgetConfigResponseInterface {
267
270
  position?: e.WidgetPosition;
268
271
  hideMobileCta?: boolean;
269
272
  customGreetingMessage?: string;
273
+ enableGreetingMessage?: boolean;
270
274
  }
271
275
  export interface GetWidgetConversationResponseInterface {
272
276
  conversation?: ConversationInterface;
@@ -494,6 +498,7 @@ export interface UpdateWidgetRequestInterface {
494
498
  position?: e.WidgetPosition;
495
499
  hideMobileCta?: boolean;
496
500
  customGreetingMessage?: string;
501
+ enableGreetingMessage?: boolean;
497
502
  fieldMask?: FieldMaskInterface;
498
503
  }
499
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
  }
@@ -119,6 +119,7 @@ export declare class CreateMultiMessagesRequest implements i.CreateMultiMessages
119
119
  export declare class CreateWidgetConversationRequest implements i.CreateWidgetConversationRequestInterface {
120
120
  widgetId: string;
121
121
  chatSourceUrl: string;
122
+ greetingMessage: string;
122
123
  static fromProto(proto: any): CreateWidgetConversationRequest;
123
124
  constructor(kwargs?: i.CreateWidgetConversationRequestInterface);
124
125
  toApiJson(): object;
@@ -126,6 +127,7 @@ export declare class CreateWidgetConversationRequest implements i.CreateWidgetCo
126
127
  export declare class CreateWidgetConversationResponse implements i.CreateWidgetConversationResponseInterface {
127
128
  widgetParticipantToken: string;
128
129
  conversation: Conversation;
130
+ greetingMessageId: string;
129
131
  static fromProto(proto: any): CreateWidgetConversationResponse;
130
132
  constructor(kwargs?: i.CreateWidgetConversationResponseInterface);
131
133
  toApiJson(): object;
@@ -147,6 +149,7 @@ export declare class CreateWidgetRequest implements i.CreateWidgetRequestInterfa
147
149
  position: e.WidgetPosition;
148
150
  hideMobileCta: boolean;
149
151
  customGreetingMessage: string;
152
+ enableGreetingMessage: boolean;
150
153
  static fromProto(proto: any): CreateWidgetRequest;
151
154
  constructor(kwargs?: i.CreateWidgetRequestInterface);
152
155
  toApiJson(): object;
@@ -452,6 +455,7 @@ export declare class GetWidgetConfigResponse implements i.GetWidgetConfigRespons
452
455
  position: e.WidgetPosition;
453
456
  hideMobileCta: boolean;
454
457
  customGreetingMessage: string;
458
+ enableGreetingMessage: boolean;
455
459
  static fromProto(proto: any): GetWidgetConfigResponse;
456
460
  constructor(kwargs?: i.GetWidgetConfigResponseInterface);
457
461
  toApiJson(): object;
@@ -805,6 +809,7 @@ export declare class UpdateWidgetRequest implements i.UpdateWidgetRequestInterfa
805
809
  position: e.WidgetPosition;
806
810
  hideMobileCta: boolean;
807
811
  customGreetingMessage: string;
812
+ enableGreetingMessage: boolean;
808
813
  fieldMask: FieldMask;
809
814
  static fromProto(proto: any): UpdateWidgetRequest;
810
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.88.0",
3
+ "version": "0.90.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.0",
6
6
  "@angular/core": "^17.3.0"