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