@vendasta/conversation 0.104.0 → 0.105.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/ui-components.interface.mjs +1 -1
- package/esm2022/lib/_internal/interfaces/widget.interface.mjs +1 -1
- package/esm2022/lib/_internal/objects/api.mjs +5 -1
- package/esm2022/lib/_internal/objects/ui-components.mjs +8 -1
- package/esm2022/lib/_internal/objects/widget.mjs +5 -1
- package/fesm2022/vendasta-conversation.mjs +15 -0
- package/fesm2022/vendasta-conversation.mjs.map +1 -1
- package/lib/_internal/interfaces/api.interface.d.ts +1 -0
- package/lib/_internal/interfaces/ui-components.interface.d.ts +1 -0
- package/lib/_internal/interfaces/widget.interface.d.ts +1 -0
- package/lib/_internal/objects/api.d.ts +1 -0
- package/lib/_internal/objects/ui-components.d.ts +1 -0
- package/lib/_internal/objects/widget.d.ts +1 -0
- package/package.json +1 -1
|
@@ -103,6 +103,7 @@ export interface CreateWidgetRequestInterface {
|
|
|
103
103
|
hideMobileCta?: boolean;
|
|
104
104
|
customGreetingMessage?: string;
|
|
105
105
|
enableGreetingMessage?: boolean;
|
|
106
|
+
widgetType?: string;
|
|
106
107
|
}
|
|
107
108
|
export interface CreateWidgetResponseInterface {
|
|
108
109
|
widget?: WidgetInterface;
|
|
@@ -153,6 +153,7 @@ export declare class CreateWidgetRequest implements i.CreateWidgetRequestInterfa
|
|
|
153
153
|
hideMobileCta: boolean;
|
|
154
154
|
customGreetingMessage: string;
|
|
155
155
|
enableGreetingMessage: boolean;
|
|
156
|
+
widgetType: string;
|
|
156
157
|
static fromProto(proto: any): CreateWidgetRequest;
|
|
157
158
|
constructor(kwargs?: i.CreateWidgetRequestInterface);
|
|
158
159
|
toApiJson(): object;
|
|
@@ -30,6 +30,7 @@ export declare class Widget implements i.WidgetInterface {
|
|
|
30
30
|
hideMobileCta: boolean;
|
|
31
31
|
customGreetingMessage: string;
|
|
32
32
|
enableGreetingMessage: boolean;
|
|
33
|
+
widgetType: string;
|
|
33
34
|
static fromProto(proto: any): Widget;
|
|
34
35
|
constructor(kwargs?: i.WidgetInterface);
|
|
35
36
|
toApiJson(): object;
|