@vendasta/conversation 0.57.0 → 0.58.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.
@@ -72,6 +72,8 @@ export interface CreateWidgetRequestInterface {
72
72
  welcomeMessage?: string;
73
73
  dataSources?: DataSourcesInterface;
74
74
  textColor?: string;
75
+ accentColor?: string;
76
+ accentTextColor?: string;
75
77
  }
76
78
  export interface CreateWidgetResponseInterface {
77
79
  widget?: WidgetInterface;
@@ -199,6 +201,8 @@ export interface GetWidgetConfigResponseInterface {
199
201
  isEnabled?: boolean;
200
202
  welcomeMessage?: string;
201
203
  textColor?: string;
204
+ accentColor?: string;
205
+ accentTextColor?: string;
202
206
  }
203
207
  export interface GetWidgetConversationResponseInterface {
204
208
  conversation?: ConversationInterface;
@@ -371,6 +375,8 @@ export interface UpdateWidgetRequestInterface {
371
375
  fieldMask?: FieldMaskInterface;
372
376
  dataSources?: DataSourcesInterface;
373
377
  textColor?: string;
378
+ accentColor?: string;
379
+ accentTextColor?: string;
374
380
  }
375
381
  export interface UpdateWidgetResponseInterface {
376
382
  widget?: WidgetInterface;
@@ -17,4 +17,6 @@ export interface WidgetInterface {
17
17
  welcomeMessage?: string;
18
18
  dataSources?: DataSourcesInterface;
19
19
  textColor?: string;
20
+ accentColor?: string;
21
+ accentTextColor?: string;
20
22
  }
@@ -113,6 +113,8 @@ export declare class CreateWidgetRequest implements i.CreateWidgetRequestInterfa
113
113
  welcomeMessage: string;
114
114
  dataSources: DataSources;
115
115
  textColor: string;
116
+ accentColor: string;
117
+ accentTextColor: string;
116
118
  static fromProto(proto: any): CreateWidgetRequest;
117
119
  constructor(kwargs?: i.CreateWidgetRequestInterface);
118
120
  toApiJson(): object;
@@ -348,6 +350,8 @@ export declare class GetWidgetConfigResponse implements i.GetWidgetConfigRespons
348
350
  isEnabled: boolean;
349
351
  welcomeMessage: string;
350
352
  textColor: string;
353
+ accentColor: string;
354
+ accentTextColor: string;
351
355
  static fromProto(proto: any): GetWidgetConfigResponse;
352
356
  constructor(kwargs?: i.GetWidgetConfigResponseInterface);
353
357
  toApiJson(): object;
@@ -622,6 +626,8 @@ export declare class UpdateWidgetRequest implements i.UpdateWidgetRequestInterfa
622
626
  fieldMask: FieldMask;
623
627
  dataSources: DataSources;
624
628
  textColor: string;
629
+ accentColor: string;
630
+ accentTextColor: string;
625
631
  static fromProto(proto: any): UpdateWidgetRequest;
626
632
  constructor(kwargs?: i.UpdateWidgetRequestInterface);
627
633
  toApiJson(): object;
@@ -22,6 +22,8 @@ export declare class Widget implements i.WidgetInterface {
22
22
  welcomeMessage: string;
23
23
  dataSources: DataSources;
24
24
  textColor: string;
25
+ accentColor: string;
26
+ accentTextColor: string;
25
27
  static fromProto(proto: any): Widget;
26
28
  constructor(kwargs?: i.WidgetInterface);
27
29
  toApiJson(): object;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/conversation",
3
- "version": "0.57.0",
3
+ "version": "0.58.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.1.0",
6
6
  "@angular/core": "^15.1.0"