@vendasta/conversation 0.74.0 → 0.75.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/esm2022/lib/_internal/interfaces/api.interface.mjs +1 -1
- package/esm2022/lib/_internal/interfaces/widget.interface.mjs +1 -1
- package/esm2022/lib/_internal/objects/api.mjs +25 -1
- package/esm2022/lib/_internal/objects/widget.mjs +9 -1
- package/fesm2022/vendasta-conversation.mjs +32 -0
- package/fesm2022/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
|
@@ -92,6 +92,8 @@ export interface CreateWidgetRequestInterface {
|
|
|
92
92
|
accentTextColor?: string;
|
|
93
93
|
skipContactCapture?: boolean;
|
|
94
94
|
additionalPromptInstructions?: string;
|
|
95
|
+
assistantName?: string;
|
|
96
|
+
assistantAvatarUrl?: string;
|
|
95
97
|
}
|
|
96
98
|
export interface CreateWidgetResponseInterface {
|
|
97
99
|
widget?: WidgetInterface;
|
|
@@ -251,6 +253,8 @@ export interface GetWidgetConfigResponseInterface {
|
|
|
251
253
|
accentTextColor?: string;
|
|
252
254
|
skipContactCapture?: boolean;
|
|
253
255
|
widgetTopSpace?: number;
|
|
256
|
+
assistantName?: string;
|
|
257
|
+
assistantAvatarUrl?: string;
|
|
254
258
|
}
|
|
255
259
|
export interface GetWidgetConversationResponseInterface {
|
|
256
260
|
conversation?: ConversationInterface;
|
|
@@ -448,6 +452,8 @@ export interface UpdateWidgetRequestInterface {
|
|
|
448
452
|
accentTextColor?: string;
|
|
449
453
|
skipContactCapture?: boolean;
|
|
450
454
|
additionalPromptInstructions?: string;
|
|
455
|
+
assistantName?: string;
|
|
456
|
+
assistantAvatarUrl?: string;
|
|
451
457
|
fieldMask?: FieldMaskInterface;
|
|
452
458
|
}
|
|
453
459
|
export interface UpdateWidgetResponseInterface {
|
|
@@ -142,6 +142,8 @@ export declare class CreateWidgetRequest implements i.CreateWidgetRequestInterfa
|
|
|
142
142
|
accentTextColor: string;
|
|
143
143
|
skipContactCapture: boolean;
|
|
144
144
|
additionalPromptInstructions: string;
|
|
145
|
+
assistantName: string;
|
|
146
|
+
assistantAvatarUrl: string;
|
|
145
147
|
static fromProto(proto: any): CreateWidgetRequest;
|
|
146
148
|
constructor(kwargs?: i.CreateWidgetRequestInterface);
|
|
147
149
|
toApiJson(): object;
|
|
@@ -430,6 +432,8 @@ export declare class GetWidgetConfigResponse implements i.GetWidgetConfigRespons
|
|
|
430
432
|
accentTextColor: string;
|
|
431
433
|
skipContactCapture: boolean;
|
|
432
434
|
widgetTopSpace: number;
|
|
435
|
+
assistantName: string;
|
|
436
|
+
assistantAvatarUrl: string;
|
|
433
437
|
static fromProto(proto: any): GetWidgetConfigResponse;
|
|
434
438
|
constructor(kwargs?: i.GetWidgetConfigResponseInterface);
|
|
435
439
|
toApiJson(): object;
|
|
@@ -744,6 +748,8 @@ export declare class UpdateWidgetRequest implements i.UpdateWidgetRequestInterfa
|
|
|
744
748
|
accentTextColor: string;
|
|
745
749
|
skipContactCapture: boolean;
|
|
746
750
|
additionalPromptInstructions: string;
|
|
751
|
+
assistantName: string;
|
|
752
|
+
assistantAvatarUrl: string;
|
|
747
753
|
fieldMask: FieldMask;
|
|
748
754
|
static fromProto(proto: any): UpdateWidgetRequest;
|
|
749
755
|
constructor(kwargs?: i.UpdateWidgetRequestInterface);
|
|
@@ -24,6 +24,8 @@ export declare class Widget implements i.WidgetInterface {
|
|
|
24
24
|
accentTextColor: string;
|
|
25
25
|
skipContactCapture: boolean;
|
|
26
26
|
additionalPromptInstructions: string;
|
|
27
|
+
assistantName: string;
|
|
28
|
+
assistantAvatarUrl: string;
|
|
27
29
|
static fromProto(proto: any): Widget;
|
|
28
30
|
constructor(kwargs?: i.WidgetInterface);
|
|
29
31
|
toApiJson(): object;
|