cometchat-visual-builder-no-code 1.0.10-test33 → 1.0.10-test34

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.
@@ -11,6 +11,7 @@ export interface CometChatSettingsInterface {
11
11
  deleteMessage: boolean;
12
12
  messageDeliveryAndReadReceipts: boolean;
13
13
  userAndFriendsPresence: boolean;
14
+ conversationAndAdvancedSearch?: boolean;
14
15
  };
15
16
  deeperUserEngagement: {
16
17
  mentions: boolean;
@@ -32,6 +32,7 @@ export interface CometChatSettingsInterface {
32
32
  deleteMessage: boolean;
33
33
  messageDeliveryAndReadReceipts: boolean;
34
34
  userAndFriendsPresence: boolean;
35
+ conversationAndAdvancedSearch?: boolean;
35
36
  };
36
37
  deeperUserEngagement: {
37
38
  mentions: boolean;
@@ -1,8 +1,9 @@
1
1
  import React from "react";
2
+ import { CometChatAIAssistantTools } from "@cometchat/chat-uikit-react";
2
3
  import "./AiAgentView.css";
3
4
  interface AIAgentViewProps {
4
5
  user: CometChat.User;
5
- aiAssistantTools?: any;
6
+ aiAssistantTools?: CometChatAIAssistantTools;
6
7
  }
7
8
  declare const AIAgentView: React.FC<AIAgentViewProps>;
8
9
  export default AIAgentView;
@@ -1,9 +1,10 @@
1
+ import { CometChatAIAssistantTools } from "@cometchat/chat-uikit-react";
1
2
  interface EmbeddedChatViewInterface {
2
3
  showSidebarOnDesktop?: boolean;
3
4
  user?: CometChat.User;
4
5
  group?: CometChat.Group;
5
6
  type?: string;
6
- aiAssistantTools?: any;
7
+ aiAssistantTools?: CometChatAIAssistantTools;
7
8
  }
8
9
  declare const EmbeddedChatView: ({ showSidebarOnDesktop, user, group, type, aiAssistantTools }: EmbeddedChatViewInterface) => import("react/jsx-runtime").JSX.Element;
9
10
  export default EmbeddedChatView;
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "cometchat-visual-builder-no-code",
3
- "version": "1.0.10-test33",
3
+ "version": "1.0.10-test34",
4
4
  "description": "CometChat Chat Builder No-Code Integration",
5
5
  "cometChatCustomConfig": {
6
- "prodVersion": "1.0.2",
7
- "devStagingVersion": "1.0.10-test29",
6
+ "prodVersion": "1.0.3",
7
+ "devStagingVersion": "1.0.10-test34",
8
8
  "prodName": "@cometchat/chat-embed",
9
9
  "devName": "cometchat-visual-builder-no-code",
10
10
  "name": "cometchat-visual-builder-react-no-code",
11
- "version": "1.0.2",
11
+ "version": "1.0.3",
12
12
  "production": true
13
13
  },
14
14
  "author": "CometChat",