@vendasta/conversation 0.104.0 → 0.106.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 CreateWidgetRequestInterface {
103
103
  hideMobileCta?: boolean;
104
104
  customGreetingMessage?: string;
105
105
  enableGreetingMessage?: boolean;
106
+ widgetType?: string;
106
107
  }
107
108
  export interface CreateWidgetResponseInterface {
108
109
  widget?: WidgetInterface;
@@ -481,6 +482,7 @@ export interface SearchConversationsResponseInterface {
481
482
  }
482
483
  export interface SendMessageOptionsInterface {
483
484
  runSync?: boolean;
485
+ skipMessageDelivery?: boolean;
484
486
  }
485
487
  export interface SendMessageRequestInterface {
486
488
  sender?: ParticipantInterface;
@@ -3,4 +3,5 @@ export interface UIButtonInterface {
3
3
  id?: string;
4
4
  action?: string;
5
5
  payload?: string;
6
+ clickedAt?: Date;
6
7
  }
@@ -25,4 +25,5 @@ export interface WidgetInterface {
25
25
  hideMobileCta?: boolean;
26
26
  customGreetingMessage?: string;
27
27
  enableGreetingMessage?: boolean;
28
+ widgetType?: string;
28
29
  }
@@ -153,6 +153,7 @@ export declare class CreateWidgetRequest implements i.CreateWidgetRequestInterfa
153
153
  hideMobileCta: boolean;
154
154
  customGreetingMessage: string;
155
155
  enableGreetingMessage: boolean;
156
+ widgetType: string;
156
157
  static fromProto(proto: any): CreateWidgetRequest;
157
158
  constructor(kwargs?: i.CreateWidgetRequestInterface);
158
159
  toApiJson(): object;
@@ -783,6 +784,7 @@ export declare class SearchConversationsResponse implements i.SearchConversation
783
784
  }
784
785
  export declare class SendMessageOptions implements i.SendMessageOptionsInterface {
785
786
  runSync: boolean;
787
+ skipMessageDelivery: boolean;
786
788
  static fromProto(proto: any): SendMessageOptions;
787
789
  constructor(kwargs?: i.SendMessageOptionsInterface);
788
790
  toApiJson(): object;
@@ -5,6 +5,7 @@ export declare class UIButton implements i.UIButtonInterface {
5
5
  id: string;
6
6
  action: string;
7
7
  payload: string;
8
+ clickedAt: Date;
8
9
  static fromProto(proto: any): UIButton;
9
10
  constructor(kwargs?: i.UIButtonInterface);
10
11
  toApiJson(): object;
@@ -30,6 +30,7 @@ export declare class Widget implements i.WidgetInterface {
30
30
  hideMobileCta: boolean;
31
31
  customGreetingMessage: string;
32
32
  enableGreetingMessage: boolean;
33
+ widgetType: string;
33
34
  static fromProto(proto: any): Widget;
34
35
  constructor(kwargs?: i.WidgetInterface);
35
36
  toApiJson(): object;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/conversation",
3
- "version": "0.104.0",
3
+ "version": "0.106.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.0",
6
6
  "@angular/core": "^17.3.0"