@vendasta/conversation 0.85.0 → 0.86.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
|
@@ -95,6 +95,7 @@ export interface CreateWidgetRequestInterface {
|
|
|
95
95
|
assistantName?: string;
|
|
96
96
|
assistantAvatarUrl?: string;
|
|
97
97
|
position?: e.WidgetPosition;
|
|
98
|
+
hideMobileCta?: boolean;
|
|
98
99
|
}
|
|
99
100
|
export interface CreateWidgetResponseInterface {
|
|
100
101
|
widget?: WidgetInterface;
|
|
@@ -257,6 +258,7 @@ export interface GetWidgetConfigResponseInterface {
|
|
|
257
258
|
assistantName?: string;
|
|
258
259
|
assistantAvatarUrl?: string;
|
|
259
260
|
position?: e.WidgetPosition;
|
|
261
|
+
hideMobileCta?: boolean;
|
|
260
262
|
}
|
|
261
263
|
export interface GetWidgetConversationResponseInterface {
|
|
262
264
|
conversation?: ConversationInterface;
|
|
@@ -482,6 +484,7 @@ export interface UpdateWidgetRequestInterface {
|
|
|
482
484
|
assistantName?: string;
|
|
483
485
|
assistantAvatarUrl?: string;
|
|
484
486
|
position?: e.WidgetPosition;
|
|
487
|
+
hideMobileCta?: boolean;
|
|
485
488
|
fieldMask?: FieldMaskInterface;
|
|
486
489
|
}
|
|
487
490
|
export interface UpdateWidgetResponseInterface {
|
|
@@ -145,6 +145,7 @@ export declare class CreateWidgetRequest implements i.CreateWidgetRequestInterfa
|
|
|
145
145
|
assistantName: string;
|
|
146
146
|
assistantAvatarUrl: string;
|
|
147
147
|
position: e.WidgetPosition;
|
|
148
|
+
hideMobileCta: boolean;
|
|
148
149
|
static fromProto(proto: any): CreateWidgetRequest;
|
|
149
150
|
constructor(kwargs?: i.CreateWidgetRequestInterface);
|
|
150
151
|
toApiJson(): object;
|
|
@@ -436,6 +437,7 @@ export declare class GetWidgetConfigResponse implements i.GetWidgetConfigRespons
|
|
|
436
437
|
assistantName: string;
|
|
437
438
|
assistantAvatarUrl: string;
|
|
438
439
|
position: e.WidgetPosition;
|
|
440
|
+
hideMobileCta: boolean;
|
|
439
441
|
static fromProto(proto: any): GetWidgetConfigResponse;
|
|
440
442
|
constructor(kwargs?: i.GetWidgetConfigResponseInterface);
|
|
441
443
|
toApiJson(): object;
|
|
@@ -787,6 +789,7 @@ export declare class UpdateWidgetRequest implements i.UpdateWidgetRequestInterfa
|
|
|
787
789
|
assistantName: string;
|
|
788
790
|
assistantAvatarUrl: string;
|
|
789
791
|
position: e.WidgetPosition;
|
|
792
|
+
hideMobileCta: boolean;
|
|
790
793
|
fieldMask: FieldMask;
|
|
791
794
|
static fromProto(proto: any): UpdateWidgetRequest;
|
|
792
795
|
constructor(kwargs?: i.UpdateWidgetRequestInterface);
|
|
@@ -27,6 +27,7 @@ export declare class Widget implements i.WidgetInterface {
|
|
|
27
27
|
assistantName: string;
|
|
28
28
|
assistantAvatarUrl: string;
|
|
29
29
|
embedHistory: string[];
|
|
30
|
+
hideMobileCta: boolean;
|
|
30
31
|
static fromProto(proto: any): Widget;
|
|
31
32
|
constructor(kwargs?: i.WidgetInterface);
|
|
32
33
|
toApiJson(): object;
|