@vendasta/conversation 0.87.0 → 0.88.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 -1
- package/esm2022/lib/_internal/objects/widget.mjs +5 -1
- package/fesm2022/vendasta-conversation.mjs +16 -0
- package/fesm2022/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
|
@@ -96,6 +96,7 @@ export interface CreateWidgetRequestInterface {
|
|
|
96
96
|
assistantAvatarUrl?: string;
|
|
97
97
|
position?: e.WidgetPosition;
|
|
98
98
|
hideMobileCta?: boolean;
|
|
99
|
+
customGreetingMessage?: string;
|
|
99
100
|
}
|
|
100
101
|
export interface CreateWidgetResponseInterface {
|
|
101
102
|
widget?: WidgetInterface;
|
|
@@ -265,6 +266,7 @@ export interface GetWidgetConfigResponseInterface {
|
|
|
265
266
|
assistantAvatarUrl?: string;
|
|
266
267
|
position?: e.WidgetPosition;
|
|
267
268
|
hideMobileCta?: boolean;
|
|
269
|
+
customGreetingMessage?: string;
|
|
268
270
|
}
|
|
269
271
|
export interface GetWidgetConversationResponseInterface {
|
|
270
272
|
conversation?: ConversationInterface;
|
|
@@ -491,6 +493,7 @@ export interface UpdateWidgetRequestInterface {
|
|
|
491
493
|
assistantAvatarUrl?: string;
|
|
492
494
|
position?: e.WidgetPosition;
|
|
493
495
|
hideMobileCta?: boolean;
|
|
496
|
+
customGreetingMessage?: string;
|
|
494
497
|
fieldMask?: FieldMaskInterface;
|
|
495
498
|
}
|
|
496
499
|
export interface UpdateWidgetResponseInterface {
|
|
@@ -146,6 +146,7 @@ export declare class CreateWidgetRequest implements i.CreateWidgetRequestInterfa
|
|
|
146
146
|
assistantAvatarUrl: string;
|
|
147
147
|
position: e.WidgetPosition;
|
|
148
148
|
hideMobileCta: boolean;
|
|
149
|
+
customGreetingMessage: string;
|
|
149
150
|
static fromProto(proto: any): CreateWidgetRequest;
|
|
150
151
|
constructor(kwargs?: i.CreateWidgetRequestInterface);
|
|
151
152
|
toApiJson(): object;
|
|
@@ -450,6 +451,7 @@ export declare class GetWidgetConfigResponse implements i.GetWidgetConfigRespons
|
|
|
450
451
|
assistantAvatarUrl: string;
|
|
451
452
|
position: e.WidgetPosition;
|
|
452
453
|
hideMobileCta: boolean;
|
|
454
|
+
customGreetingMessage: string;
|
|
453
455
|
static fromProto(proto: any): GetWidgetConfigResponse;
|
|
454
456
|
constructor(kwargs?: i.GetWidgetConfigResponseInterface);
|
|
455
457
|
toApiJson(): object;
|
|
@@ -802,6 +804,7 @@ export declare class UpdateWidgetRequest implements i.UpdateWidgetRequestInterfa
|
|
|
802
804
|
assistantAvatarUrl: string;
|
|
803
805
|
position: e.WidgetPosition;
|
|
804
806
|
hideMobileCta: boolean;
|
|
807
|
+
customGreetingMessage: string;
|
|
805
808
|
fieldMask: FieldMask;
|
|
806
809
|
static fromProto(proto: any): UpdateWidgetRequest;
|
|
807
810
|
constructor(kwargs?: i.UpdateWidgetRequestInterface);
|
|
@@ -28,6 +28,7 @@ export declare class Widget implements i.WidgetInterface {
|
|
|
28
28
|
assistantAvatarUrl: string;
|
|
29
29
|
embedHistory: string[];
|
|
30
30
|
hideMobileCta: boolean;
|
|
31
|
+
customGreetingMessage: string;
|
|
31
32
|
static fromProto(proto: any): Widget;
|
|
32
33
|
constructor(kwargs?: i.WidgetInterface);
|
|
33
34
|
toApiJson(): object;
|