cometchat-visual-builder-no-code 1.0.10-test33 → 1.0.10-test35
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/dist/main.js +1 -1
- package/dist/src/CometChat/CometChatSettings.d.ts +1 -0
- package/dist/src/CometChat/context/CometChatContext.d.ts +1 -0
- package/dist/src/CometChatNoCode/components/AIAgentView/AIAgentView.d.ts +2 -1
- package/dist/src/CometChatNoCode/components/embedded/EmbeddedChatView.d.ts +2 -1
- package/package.json +4 -4
- package/dist/src/CometChatNoCode/components/AgentView/AgentView.d.ts +0 -0
- package/dist/src/CometChatNoCode/components/AgentView/index.d.ts +0 -0
|
@@ -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?:
|
|
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?:
|
|
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,20 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cometchat-visual-builder-no-code",
|
|
3
|
-
"version": "1.0.10-
|
|
3
|
+
"version": "1.0.10-test35",
|
|
4
4
|
"description": "CometChat Chat Builder No-Code Integration",
|
|
5
5
|
"cometChatCustomConfig": {
|
|
6
|
-
"prodVersion": "1.0.
|
|
6
|
+
"prodVersion": "1.0.5",
|
|
7
7
|
"devStagingVersion": "1.0.10-test29",
|
|
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.
|
|
11
|
+
"version": "1.0.5",
|
|
12
12
|
"production": true
|
|
13
13
|
},
|
|
14
14
|
"author": "CometChat",
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"@cometchat/calls-sdk-javascript": "4.0.12",
|
|
17
|
-
"@cometchat/chat-uikit-react": "6.2.0",
|
|
17
|
+
"@cometchat/chat-uikit-react": "^6.2.0",
|
|
18
18
|
"react": "18.2.0",
|
|
19
19
|
"react-dom": "18.2.0",
|
|
20
20
|
"react-frame-component": "^5.2.7",
|
|
File without changes
|
|
File without changes
|