@vendasta/conversation 0.70.0 → 0.71.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 +13 -5
- package/esm2022/lib/_internal/objects/widget.mjs +5 -1
- package/fesm2022/vendasta-conversation.mjs +16 -4
- package/fesm2022/vendasta-conversation.mjs.map +1 -1
- package/lib/_internal/interfaces/api.interface.d.ts +3 -1
- package/lib/_internal/interfaces/widget.interface.d.ts +1 -0
- package/lib/_internal/objects/api.d.ts +3 -1
- package/lib/_internal/objects/widget.d.ts +1 -0
- package/package.json +1 -1
|
@@ -90,6 +90,7 @@ export interface CreateWidgetRequestInterface {
|
|
|
90
90
|
accentColor?: string;
|
|
91
91
|
accentTextColor?: string;
|
|
92
92
|
skipContactCapture?: boolean;
|
|
93
|
+
additionalPromptInstructions?: string;
|
|
93
94
|
}
|
|
94
95
|
export interface CreateWidgetResponseInterface {
|
|
95
96
|
widget?: WidgetInterface;
|
|
@@ -433,11 +434,12 @@ export interface UpdateWidgetRequestInterface {
|
|
|
433
434
|
allowedUrls?: string[];
|
|
434
435
|
welcomeMessage?: string;
|
|
435
436
|
isEnabled?: boolean;
|
|
436
|
-
fieldMask?: FieldMaskInterface;
|
|
437
437
|
textColor?: string;
|
|
438
438
|
accentColor?: string;
|
|
439
439
|
accentTextColor?: string;
|
|
440
440
|
skipContactCapture?: boolean;
|
|
441
|
+
additionalPromptInstructions?: string;
|
|
442
|
+
fieldMask?: FieldMaskInterface;
|
|
441
443
|
}
|
|
442
444
|
export interface UpdateWidgetResponseInterface {
|
|
443
445
|
widget?: WidgetInterface;
|
|
@@ -140,6 +140,7 @@ export declare class CreateWidgetRequest implements i.CreateWidgetRequestInterfa
|
|
|
140
140
|
accentColor: string;
|
|
141
141
|
accentTextColor: string;
|
|
142
142
|
skipContactCapture: boolean;
|
|
143
|
+
additionalPromptInstructions: string;
|
|
143
144
|
static fromProto(proto: any): CreateWidgetRequest;
|
|
144
145
|
constructor(kwargs?: i.CreateWidgetRequestInterface);
|
|
145
146
|
toApiJson(): object;
|
|
@@ -723,11 +724,12 @@ export declare class UpdateWidgetRequest implements i.UpdateWidgetRequestInterfa
|
|
|
723
724
|
allowedUrls: string[];
|
|
724
725
|
welcomeMessage: string;
|
|
725
726
|
isEnabled: boolean;
|
|
726
|
-
fieldMask: FieldMask;
|
|
727
727
|
textColor: string;
|
|
728
728
|
accentColor: string;
|
|
729
729
|
accentTextColor: string;
|
|
730
730
|
skipContactCapture: boolean;
|
|
731
|
+
additionalPromptInstructions: string;
|
|
732
|
+
fieldMask: FieldMask;
|
|
731
733
|
static fromProto(proto: any): UpdateWidgetRequest;
|
|
732
734
|
constructor(kwargs?: i.UpdateWidgetRequestInterface);
|
|
733
735
|
toApiJson(): object;
|
|
@@ -23,6 +23,7 @@ export declare class Widget implements i.WidgetInterface {
|
|
|
23
23
|
accentColor: string;
|
|
24
24
|
accentTextColor: string;
|
|
25
25
|
skipContactCapture: boolean;
|
|
26
|
+
additionalPromptInstructions: string;
|
|
26
27
|
static fromProto(proto: any): Widget;
|
|
27
28
|
constructor(kwargs?: i.WidgetInterface);
|
|
28
29
|
toApiJson(): object;
|