@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.
- package/esm2020/lib/_internal/interfaces/api.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/widget.interface.mjs +1 -1
- package/esm2020/lib/_internal/objects/api.mjs +1 -7
- package/esm2020/lib/_internal/objects/widget.mjs +1 -13
- package/fesm2015/vendasta-conversation.mjs +0 -18
- package/fesm2015/vendasta-conversation.mjs.map +1 -1
- package/fesm2020/vendasta-conversation.mjs +0 -18
- package/fesm2020/vendasta-conversation.mjs.map +1 -1
- package/lib/_internal/interfaces/api.interface.d.ts +0 -1
- package/lib/_internal/interfaces/widget.interface.d.ts +0 -3
- package/lib/_internal/objects/api.d.ts +0 -1
- package/lib/_internal/objects/widget.d.ts +0 -3
- package/package.json +1 -1
|
@@ -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;
|