@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.
- package/esm2020/lib/_internal/inbox.api.service.mjs +2 -2
- package/esm2020/lib/_internal/interfaces/api.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/configuration.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/widget.interface.mjs +1 -1
- package/esm2020/lib/_internal/objects/api.mjs +19 -1
- package/esm2020/lib/_internal/objects/configuration.mjs +1 -1
- package/esm2020/lib/_internal/objects/widget.mjs +7 -1
- package/fesm2015/vendasta-conversation.mjs +24 -0
- package/fesm2015/vendasta-conversation.mjs.map +1 -1
- package/fesm2020/vendasta-conversation.mjs +24 -0
- package/fesm2020/vendasta-conversation.mjs.map +1 -1
- package/lib/_internal/interfaces/api.interface.d.ts +6 -0
- package/lib/_internal/interfaces/widget.interface.d.ts +2 -0
- package/lib/_internal/objects/api.d.ts +6 -0
- package/lib/_internal/objects/widget.d.ts +2 -0
- package/package.json +1 -1
|
@@ -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;
|
|
@@ -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;
|