@vendasta/conversation 0.105.0 → 0.107.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/enums/event.enum.mjs +2 -1
- package/esm2022/lib/_internal/interfaces/annotations.interface.mjs +1 -1
- package/esm2022/lib/_internal/interfaces/api.interface.mjs +1 -1
- package/esm2022/lib/_internal/interfaces/configuration.interface.mjs +1 -1
- package/esm2022/lib/_internal/interfaces/index.mjs +1 -1
- package/esm2022/lib/_internal/objects/annotations.mjs +22 -1
- package/esm2022/lib/_internal/objects/api.mjs +5 -1
- package/esm2022/lib/_internal/objects/configuration.mjs +9 -1
- package/esm2022/lib/_internal/objects/index.mjs +2 -2
- package/fesm2022/vendasta-conversation.mjs +35 -1
- package/fesm2022/vendasta-conversation.mjs.map +1 -1
- package/lib/_internal/enums/event.enum.d.ts +2 -1
- package/lib/_internal/interfaces/annotations.interface.d.ts +3 -0
- package/lib/_internal/interfaces/api.interface.d.ts +1 -0
- package/lib/_internal/interfaces/configuration.interface.d.ts +2 -0
- package/lib/_internal/interfaces/index.d.ts +1 -1
- package/lib/_internal/objects/annotations.d.ts +6 -0
- package/lib/_internal/objects/api.d.ts +1 -0
- package/lib/_internal/objects/configuration.d.ts +2 -0
- package/lib/_internal/objects/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -482,6 +482,7 @@ export interface SearchConversationsResponseInterface {
|
|
|
482
482
|
}
|
|
483
483
|
export interface SendMessageOptionsInterface {
|
|
484
484
|
runSync?: boolean;
|
|
485
|
+
skipMessageDelivery?: boolean;
|
|
485
486
|
}
|
|
486
487
|
export interface SendMessageRequestInterface {
|
|
487
488
|
sender?: ParticipantInterface;
|
|
@@ -17,6 +17,7 @@ export interface ConfigurationInterface {
|
|
|
17
17
|
instagramMessagingEnabled?: boolean;
|
|
18
18
|
aiConfiguration?: ConfigurationAIConfigurationInterface;
|
|
19
19
|
whatsappEnabled?: boolean;
|
|
20
|
+
aiVoiceEnabled?: boolean;
|
|
20
21
|
}
|
|
21
22
|
export interface ProductFeatureInterface {
|
|
22
23
|
googleBusinessMessagesEnabled?: boolean;
|
|
@@ -27,4 +28,5 @@ export interface ProductFeatureInterface {
|
|
|
27
28
|
instagramMessagingEnabled?: boolean;
|
|
28
29
|
aiSmsResponderEnabled?: boolean;
|
|
29
30
|
whatsappEnabled?: boolean;
|
|
31
|
+
aiVoiceEnabled?: boolean;
|
|
30
32
|
}
|
|
@@ -3,7 +3,7 @@ export { AIConfigurationInterface, ConversationInterface, ConversationKeyInterfa
|
|
|
3
3
|
export { UIButtonInterface, } from './ui-components.interface';
|
|
4
4
|
export { MessageInterface, ParticipantMessageStatusInterface, SendStatusInterface, UIComponentInterface, } from './message.interface';
|
|
5
5
|
export { AddressInterface, ParticipantInterface, ParticipantKeyInterface, } from './participant.interface';
|
|
6
|
-
export { AccessInterface, } from './annotations.interface';
|
|
6
|
+
export { AccessInterface, MCPOptionsInterface, } from './annotations.interface';
|
|
7
7
|
export { ConfigurationAIConfigurationInterface, ConfigurationInterface, ProductFeatureInterface, } from './configuration.interface';
|
|
8
8
|
export { ViewInterface, } from './conversation-view.interface';
|
|
9
9
|
export { DataSourcesInterface, WidgetInterface, } from './widget.interface';
|
|
@@ -7,3 +7,9 @@ export declare class Access implements i.AccessInterface {
|
|
|
7
7
|
constructor(kwargs?: i.AccessInterface);
|
|
8
8
|
toApiJson(): object;
|
|
9
9
|
}
|
|
10
|
+
export declare class MCPOptions implements i.MCPOptionsInterface {
|
|
11
|
+
serverId: string[];
|
|
12
|
+
static fromProto(proto: any): MCPOptions;
|
|
13
|
+
constructor(kwargs?: i.MCPOptionsInterface);
|
|
14
|
+
toApiJson(): object;
|
|
15
|
+
}
|
|
@@ -784,6 +784,7 @@ export declare class SearchConversationsResponse implements i.SearchConversation
|
|
|
784
784
|
}
|
|
785
785
|
export declare class SendMessageOptions implements i.SendMessageOptionsInterface {
|
|
786
786
|
runSync: boolean;
|
|
787
|
+
skipMessageDelivery: boolean;
|
|
787
788
|
static fromProto(proto: any): SendMessageOptions;
|
|
788
789
|
constructor(kwargs?: i.SendMessageOptionsInterface);
|
|
789
790
|
toApiJson(): object;
|
|
@@ -22,6 +22,7 @@ export declare class Configuration implements i.ConfigurationInterface {
|
|
|
22
22
|
instagramMessagingEnabled: boolean;
|
|
23
23
|
aiConfiguration: ConfigurationAIConfiguration;
|
|
24
24
|
whatsappEnabled: boolean;
|
|
25
|
+
aiVoiceEnabled: boolean;
|
|
25
26
|
static fromProto(proto: any): Configuration;
|
|
26
27
|
constructor(kwargs?: i.ConfigurationInterface);
|
|
27
28
|
toApiJson(): object;
|
|
@@ -35,6 +36,7 @@ export declare class ProductFeature implements i.ProductFeatureInterface {
|
|
|
35
36
|
instagramMessagingEnabled: boolean;
|
|
36
37
|
aiSmsResponderEnabled: boolean;
|
|
37
38
|
whatsappEnabled: boolean;
|
|
39
|
+
aiVoiceEnabled: boolean;
|
|
38
40
|
static fromProto(proto: any): ProductFeature;
|
|
39
41
|
constructor(kwargs?: i.ProductFeatureInterface);
|
|
40
42
|
toApiJson(): object;
|
|
@@ -3,7 +3,7 @@ export { AIConfiguration, Conversation, ConversationKey, LastSeenByParticipant,
|
|
|
3
3
|
export { UIButton, } from './ui-components';
|
|
4
4
|
export { Message, ParticipantMessageStatus, SendStatus, UIComponent, } from './message';
|
|
5
5
|
export { Address, Participant, ParticipantKey, } from './participant';
|
|
6
|
-
export { Access, } from './annotations';
|
|
6
|
+
export { Access, MCPOptions, } from './annotations';
|
|
7
7
|
export { ConfigurationAIConfiguration, Configuration, ProductFeature, } from './configuration';
|
|
8
8
|
export { View, } from './conversation-view';
|
|
9
9
|
export { DataSources, Widget, } from './widget';
|