@vendasta/conversation 0.84.0 → 0.85.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/configuration.interface.mjs +1 -1
- package/esm2022/lib/_internal/objects/configuration.mjs +9 -1
- package/fesm2022/vendasta-conversation.mjs +8 -0
- package/fesm2022/vendasta-conversation.mjs.map +1 -1
- package/lib/_internal/interfaces/configuration.interface.d.ts +2 -0
- package/lib/_internal/objects/configuration.d.ts +2 -0
- package/package.json +1 -1
|
@@ -16,6 +16,7 @@ export interface ConfigurationInterface {
|
|
|
16
16
|
multiLocationEnabled?: boolean;
|
|
17
17
|
instagramMessagingEnabled?: boolean;
|
|
18
18
|
aiConfiguration?: ConfigurationAIConfigurationInterface;
|
|
19
|
+
whatsappEnabled?: boolean;
|
|
19
20
|
}
|
|
20
21
|
export interface ProductFeatureInterface {
|
|
21
22
|
googleBusinessMessagesEnabled?: boolean;
|
|
@@ -25,4 +26,5 @@ export interface ProductFeatureInterface {
|
|
|
25
26
|
facebookMessengerEnabled?: boolean;
|
|
26
27
|
instagramMessagingEnabled?: boolean;
|
|
27
28
|
aiSmsResponderEnabled?: boolean;
|
|
29
|
+
whatsappEnabled?: boolean;
|
|
28
30
|
}
|
|
@@ -21,6 +21,7 @@ export declare class Configuration implements i.ConfigurationInterface {
|
|
|
21
21
|
multiLocationEnabled: boolean;
|
|
22
22
|
instagramMessagingEnabled: boolean;
|
|
23
23
|
aiConfiguration: ConfigurationAIConfiguration;
|
|
24
|
+
whatsappEnabled: boolean;
|
|
24
25
|
static fromProto(proto: any): Configuration;
|
|
25
26
|
constructor(kwargs?: i.ConfigurationInterface);
|
|
26
27
|
toApiJson(): object;
|
|
@@ -33,6 +34,7 @@ export declare class ProductFeature implements i.ProductFeatureInterface {
|
|
|
33
34
|
facebookMessengerEnabled: boolean;
|
|
34
35
|
instagramMessagingEnabled: boolean;
|
|
35
36
|
aiSmsResponderEnabled: boolean;
|
|
37
|
+
whatsappEnabled: boolean;
|
|
36
38
|
static fromProto(proto: any): ProductFeature;
|
|
37
39
|
constructor(kwargs?: i.ProductFeatureInterface);
|
|
38
40
|
toApiJson(): object;
|