@vendasta/conversation 0.85.0 → 0.86.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.
@@ -95,6 +95,7 @@ export interface CreateWidgetRequestInterface {
95
95
  assistantName?: string;
96
96
  assistantAvatarUrl?: string;
97
97
  position?: e.WidgetPosition;
98
+ hideMobileCta?: boolean;
98
99
  }
99
100
  export interface CreateWidgetResponseInterface {
100
101
  widget?: WidgetInterface;
@@ -257,6 +258,7 @@ export interface GetWidgetConfigResponseInterface {
257
258
  assistantName?: string;
258
259
  assistantAvatarUrl?: string;
259
260
  position?: e.WidgetPosition;
261
+ hideMobileCta?: boolean;
260
262
  }
261
263
  export interface GetWidgetConversationResponseInterface {
262
264
  conversation?: ConversationInterface;
@@ -482,6 +484,7 @@ export interface UpdateWidgetRequestInterface {
482
484
  assistantName?: string;
483
485
  assistantAvatarUrl?: string;
484
486
  position?: e.WidgetPosition;
487
+ hideMobileCta?: boolean;
485
488
  fieldMask?: FieldMaskInterface;
486
489
  }
487
490
  export interface UpdateWidgetResponseInterface {
@@ -22,4 +22,5 @@ export interface WidgetInterface {
22
22
  assistantName?: string;
23
23
  assistantAvatarUrl?: string;
24
24
  embedHistory?: string[];
25
+ hideMobileCta?: boolean;
25
26
  }
@@ -145,6 +145,7 @@ export declare class CreateWidgetRequest implements i.CreateWidgetRequestInterfa
145
145
  assistantName: string;
146
146
  assistantAvatarUrl: string;
147
147
  position: e.WidgetPosition;
148
+ hideMobileCta: boolean;
148
149
  static fromProto(proto: any): CreateWidgetRequest;
149
150
  constructor(kwargs?: i.CreateWidgetRequestInterface);
150
151
  toApiJson(): object;
@@ -436,6 +437,7 @@ export declare class GetWidgetConfigResponse implements i.GetWidgetConfigRespons
436
437
  assistantName: string;
437
438
  assistantAvatarUrl: string;
438
439
  position: e.WidgetPosition;
440
+ hideMobileCta: boolean;
439
441
  static fromProto(proto: any): GetWidgetConfigResponse;
440
442
  constructor(kwargs?: i.GetWidgetConfigResponseInterface);
441
443
  toApiJson(): object;
@@ -787,6 +789,7 @@ export declare class UpdateWidgetRequest implements i.UpdateWidgetRequestInterfa
787
789
  assistantName: string;
788
790
  assistantAvatarUrl: string;
789
791
  position: e.WidgetPosition;
792
+ hideMobileCta: boolean;
790
793
  fieldMask: FieldMask;
791
794
  static fromProto(proto: any): UpdateWidgetRequest;
792
795
  constructor(kwargs?: i.UpdateWidgetRequestInterface);
@@ -27,6 +27,7 @@ export declare class Widget implements i.WidgetInterface {
27
27
  assistantName: string;
28
28
  assistantAvatarUrl: string;
29
29
  embedHistory: string[];
30
+ hideMobileCta: boolean;
30
31
  static fromProto(proto: any): Widget;
31
32
  constructor(kwargs?: i.WidgetInterface);
32
33
  toApiJson(): object;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/conversation",
3
- "version": "0.85.0",
3
+ "version": "0.86.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.0",
6
6
  "@angular/core": "^17.3.0"