@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.
@@ -5,5 +5,6 @@ export declare enum EventType {
5
5
  EVENT_TYPE_REVIEW_REQUEST = 4,
6
6
  EVENT_TYPE_FORM_SUBMISSION = 5,
7
7
  EVENT_TYPE_PHONE_CALL = 6,
8
- EVENT_TYPE_SMS_SUBSCRIBED = 7
8
+ EVENT_TYPE_SMS_SUBSCRIBED = 7,
9
+ EVENT_TYPE_DUPLICATE_CONVERSATION = 8
9
10
  }
@@ -2,3 +2,6 @@ export interface AccessInterface {
2
2
  scope?: string[];
3
3
  public?: boolean;
4
4
  }
5
+ export interface MCPOptionsInterface {
6
+ serverId?: string[];
7
+ }
@@ -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';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/conversation",
3
- "version": "0.105.0",
3
+ "version": "0.107.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.0",
6
6
  "@angular/core": "^17.3.0"