@vendasta/conversation 0.51.0 → 0.52.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.
@@ -70,6 +70,7 @@ export interface CreateWidgetRequestInterface {
70
70
  allowedUrls?: string[];
71
71
  welcomeMessage?: string;
72
72
  dataSources?: DataSourcesInterface;
73
+ textColor?: string;
73
74
  }
74
75
  export interface CreateWidgetResponseInterface {
75
76
  widget?: WidgetInterface;
@@ -190,6 +191,7 @@ export interface GetWidgetConfigResponseInterface {
190
191
  color?: string;
191
192
  isEnabled?: boolean;
192
193
  welcomeMessage?: string;
194
+ textColor?: string;
193
195
  }
194
196
  export interface GetWidgetConversationResponseInterface {
195
197
  conversation?: ConversationInterface;
@@ -354,6 +356,7 @@ export interface UpdateWidgetRequestInterface {
354
356
  isEnabled?: boolean;
355
357
  fieldMask?: FieldMaskInterface;
356
358
  dataSources?: DataSourcesInterface;
359
+ textColor?: string;
357
360
  }
358
361
  export interface UpdateWidgetResponseInterface {
359
362
  widget?: WidgetInterface;
@@ -16,4 +16,5 @@ export interface WidgetInterface {
16
16
  isEnabled?: boolean;
17
17
  welcomeMessage?: string;
18
18
  dataSources?: DataSourcesInterface;
19
+ textColor?: string;
19
20
  }
@@ -111,6 +111,7 @@ export declare class CreateWidgetRequest implements i.CreateWidgetRequestInterfa
111
111
  allowedUrls: string[];
112
112
  welcomeMessage: string;
113
113
  dataSources: DataSources;
114
+ textColor: string;
114
115
  static fromProto(proto: any): CreateWidgetRequest;
115
116
  constructor(kwargs?: i.CreateWidgetRequestInterface);
116
117
  toApiJson(): object;
@@ -336,6 +337,7 @@ export declare class GetWidgetConfigResponse implements i.GetWidgetConfigRespons
336
337
  color: string;
337
338
  isEnabled: boolean;
338
339
  welcomeMessage: string;
340
+ textColor: string;
339
341
  static fromProto(proto: any): GetWidgetConfigResponse;
340
342
  constructor(kwargs?: i.GetWidgetConfigResponseInterface);
341
343
  toApiJson(): object;
@@ -596,6 +598,7 @@ export declare class UpdateWidgetRequest implements i.UpdateWidgetRequestInterfa
596
598
  isEnabled: boolean;
597
599
  fieldMask: FieldMask;
598
600
  dataSources: DataSources;
601
+ textColor: string;
599
602
  static fromProto(proto: any): UpdateWidgetRequest;
600
603
  constructor(kwargs?: i.UpdateWidgetRequestInterface);
601
604
  toApiJson(): object;
@@ -21,6 +21,7 @@ export declare class Widget implements i.WidgetInterface {
21
21
  isEnabled: boolean;
22
22
  welcomeMessage: string;
23
23
  dataSources: DataSources;
24
+ textColor: string;
24
25
  static fromProto(proto: any): Widget;
25
26
  constructor(kwargs?: i.WidgetInterface);
26
27
  toApiJson(): object;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/conversation",
3
- "version": "0.51.0",
3
+ "version": "0.52.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.1.0",
6
6
  "@angular/core": "^15.1.0"