cometchat-visual-builder-no-code 1.0.10-test31 → 1.0.10-test32

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.
@@ -16,6 +16,7 @@ export interface VcbData {
16
16
  theme?: string;
17
17
  dockedAlignment?: string;
18
18
  isAIAgentView?: boolean;
19
+ aiAssistantTools?: any;
19
20
  }
20
21
  export declare const vcbData: VcbData;
21
22
  export declare const listeners: Record<string, Function>;
@@ -39,6 +40,7 @@ declare const CometChatApp: {
39
40
  chatType?: string;
40
41
  defaultChatID?: string;
41
42
  dockedAlignment?: string;
43
+ aiAssistantTools?: any;
42
44
  }) => Promise<void>;
43
45
  uiEvent: (eventName: string, callback: Function) => void;
44
46
  callUser: (uid: string) => Promise<void>;
@@ -1,6 +1,8 @@
1
1
  import React from "react";
2
+ import "./AiAgentView.css";
2
3
  interface AIAgentViewProps {
3
4
  user: CometChat.User;
5
+ aiAssistantTools?: any;
4
6
  }
5
7
  declare const AIAgentView: React.FC<AIAgentViewProps>;
6
8
  export default AIAgentView;
@@ -3,6 +3,7 @@ interface EmbeddedChatViewInterface {
3
3
  user?: CometChat.User;
4
4
  group?: CometChat.Group;
5
5
  type?: string;
6
+ aiAssistantTools?: any;
6
7
  }
7
- declare const EmbeddedChatView: ({ showSidebarOnDesktop, user, group, type, }: EmbeddedChatViewInterface) => import("react/jsx-runtime").JSX.Element;
8
+ declare const EmbeddedChatView: ({ showSidebarOnDesktop, user, group, type, aiAssistantTools }: EmbeddedChatViewInterface) => import("react/jsx-runtime").JSX.Element;
8
9
  export default EmbeddedChatView;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cometchat-visual-builder-no-code",
3
- "version": "1.0.10-test31",
3
+ "version": "1.0.10-test32",
4
4
  "description": "CometChat Chat Builder No-Code Integration",
5
5
  "cometChatCustomConfig": {
6
6
  "prodVersion": "1.0.2",
@@ -9,7 +9,7 @@
9
9
  "devName": "cometchat-visual-builder-no-code",
10
10
  "name": "cometchat-visual-builder-react-no-code",
11
11
  "version": "1.0.2",
12
- "production": true
12
+ "production": false
13
13
  },
14
14
  "author": "CometChat",
15
15
  "dependencies": {