@cometchat/chat-uikit-react 6.2.1 → 6.2.2

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/index.d.ts CHANGED
@@ -6792,6 +6792,10 @@ interface CometChatAIAssistantChatHistoryProps {
6792
6792
  * Callback function triggered when clicked on a message
6793
6793
  */
6794
6794
  onMessageClicked?: ((message: CometChat.BaseMessage) => void) | undefined;
6795
+ /**
6796
+ * Callback function triggered when clicked on new chat button
6797
+ */
6798
+ onNewChatClicked?: ((id?: number) => void) | undefined;
6795
6799
  }
6796
6800
  declare const CometChatAIAssistantChatHistory: (props: CometChatAIAssistantChatHistoryProps) => react_jsx_runtime.JSX.Element;
6797
6801