@vendasta/conversation 0.104.0 → 0.105.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;
@@ -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;
@@ -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.105.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.0",
6
6
  "@angular/core": "^17.3.0"