@vendasta/conversation 0.58.0 → 0.59.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.
@@ -373,7 +373,6 @@ export interface UpdateWidgetRequestInterface {
373
373
  welcomeMessage?: string;
374
374
  isEnabled?: boolean;
375
375
  fieldMask?: FieldMaskInterface;
376
- dataSources?: DataSourcesInterface;
377
376
  textColor?: string;
378
377
  accentColor?: string;
379
378
  accentTextColor?: string;
@@ -1,8 +1,6 @@
1
1
  import * as e from '../enums';
2
2
  export interface DataSourcesInterface {
3
3
  businessProfile?: boolean;
4
- website?: boolean;
5
- userInput?: boolean;
6
4
  }
7
5
  export interface WidgetInterface {
8
6
  widgetId?: string;
@@ -15,7 +13,6 @@ export interface WidgetInterface {
15
13
  updated?: Date;
16
14
  isEnabled?: boolean;
17
15
  welcomeMessage?: string;
18
- dataSources?: DataSourcesInterface;
19
16
  textColor?: string;
20
17
  accentColor?: string;
21
18
  accentTextColor?: string;
@@ -624,7 +624,6 @@ export declare class UpdateWidgetRequest implements i.UpdateWidgetRequestInterfa
624
624
  welcomeMessage: string;
625
625
  isEnabled: boolean;
626
626
  fieldMask: FieldMask;
627
- dataSources: DataSources;
628
627
  textColor: string;
629
628
  accentColor: string;
630
629
  accentTextColor: string;
@@ -3,8 +3,6 @@ import * as e from '../enums';
3
3
  export declare function enumStringToValue<E>(enumRef: any, value: string): E;
4
4
  export declare class DataSources implements i.DataSourcesInterface {
5
5
  businessProfile: boolean;
6
- website: boolean;
7
- userInput: boolean;
8
6
  static fromProto(proto: any): DataSources;
9
7
  constructor(kwargs?: i.DataSourcesInterface);
10
8
  toApiJson(): object;
@@ -20,7 +18,6 @@ export declare class Widget implements i.WidgetInterface {
20
18
  updated: Date;
21
19
  isEnabled: boolean;
22
20
  welcomeMessage: string;
23
- dataSources: DataSources;
24
21
  textColor: string;
25
22
  accentColor: string;
26
23
  accentTextColor: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/conversation",
3
- "version": "0.58.0",
3
+ "version": "0.59.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.1.0",
6
6
  "@angular/core": "^15.1.0"