@cometchat/chat-sdk-javascript 4.0.4 → 4.0.5
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/CometChat.d.ts +46 -0
- package/CometChat.js +1 -1
- package/README.md +6 -60
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,52 +1,12 @@
|
|
|
1
|
-
<
|
|
2
|
-
<
|
|
3
|
-
|
|
4
|
-
<p align="center">
|
|
5
|
-
<img style="text-align:center" width="180" height="180" alt="" src="https://avatars2.githubusercontent.com/u/45484907?s=200&v=4">
|
|
6
|
-
</p>
|
|
7
|
-
</div>
|
|
8
|
-
</div>
|
|
9
|
-
</br>
|
|
10
|
-
</br>
|
|
11
|
-
</div>
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img alt="CometChat" src="https://assets.cometchat.io/website/images/logos/banner.png">
|
|
3
|
+
</p>
|
|
12
4
|
|
|
13
5
|
# CometChat Javascript SDK
|
|
14
6
|
|
|
15
7
|
CometChat enables you to add voice, video & text chat for your website & app.
|
|
16
8
|
This guide demonstrates how to add chat to a WebSite using CometChat.
|
|
17
9
|
|
|
18
|
-
## Features
|
|
19
|
-
|
|
20
|
-
<ul>
|
|
21
|
-
<li> 1-1 & Group Conversations </li>
|
|
22
|
-
<li> Voice & video calling & conferencing </li>
|
|
23
|
-
<li> Rich Media Attachments </li>
|
|
24
|
-
<li> Typing Indicators </li>
|
|
25
|
-
<li> Custom Messages </li>
|
|
26
|
-
<li> Read receipts </li>
|
|
27
|
-
<li> Online Presence Indicators </li>
|
|
28
|
-
<li> Message History </li>
|
|
29
|
-
<li> Single Sign-on </li>
|
|
30
|
-
<li> Webhooks </li>
|
|
31
|
-
<li> Bots </li>
|
|
32
|
-
<li> Users & Friends List </li>
|
|
33
|
-
<li> Groups List </li>
|
|
34
|
-
<li> Conversations List </li>
|
|
35
|
-
<li> Threaded Conversations </li>
|
|
36
|
-
</ul>
|
|
37
|
-
|
|
38
|
-
## Extensions
|
|
39
|
-
|
|
40
|
-
[Push Notification](https://prodocs.cometchat.com/docs/extensions-enhanced-push-notification) | [Email Notification](https://prodocs.cometchat.com/docs/extensions-email-notification) | [SMS Notification](https://prodocs.cometchat.com/docs/extensions-sms-notification) | [Thumbnail Generation](https://prodocs.cometchat.com/docs/extensions-thumbnail-generation) | [Link Preview](https://prodocs.cometchat.com/docs/extensions-link-preview) | [Rich Media Preview](https://prodocs.cometchat.com/docs/extensions-rich-media-preview) | [Voice Transcription](https://prodocs.cometchat.com/docs/extensions-voice-transcription) | [Smart Reply](https://prodocs.cometchat.com/docs/extensions-smart-reply) | [Message Translation](https://prodocs.cometchat.com/docs/extensions-message-translation) | [Emojis](https://prodocs.cometchat.com/docs/extensions-emojis) | [Polls](https://prodocs.cometchat.com/docs/extensions-polls) | [Reactions](https://prodocs.cometchat.com/docs/extensions-reactions) | [Stickers](https://prodocs.cometchat.com/docs/extensions-stickers) | [Video Broadcasting](https://prodocs.cometchat.com/docs/extensions-broadcast) | [Collaborative Documents](https://prodocs.cometchat.com/docs/extensions-collaborative-document) | [Collaborative Whiteboards](https://prodocs.cometchat.com/docs/extensions-collaborative-whiteboard) | [Data Masking Filter](https://prodocs.cometchat.com/docs/extensions-data-masking-filter) | [Profanity Filter](https://prodocs.cometchat.com/docs/extensions-profanity-filter) | [Image Moderation](https://prodocs.cometchat.com/docs/extensions-image-moderation)| [Sentiment Analysis](https://prodocs.cometchat.com/docs/extensions-sentiment-analysis) | [In-flight Message Moderation](https://prodocs.cometchat.com/docs/extensions-in-flight-message-moderation) | [Virus & Malware Scanner](https://prodocs.cometchat.com/docs/extensions-virus-malware-scanner) | [XSS Filter](https://prodocs.cometchat.com/docs/extensions-xss-filter)
|
|
41
|
-
|
|
42
|
-
[](#)
|
|
43
|
-
<a href=" "> <img src="https://img.shields.io/badge/Version-3.0.11-important" /></a>
|
|
44
|
-

|
|
45
|
-

|
|
46
|
-

|
|
47
|
-

|
|
48
|
-
<hr/>
|
|
49
|
-
|
|
50
10
|
|
|
51
11
|
## Prerequisites :star:
|
|
52
12
|
Before you begin, ensure you have met the following requirements:<br/>
|
|
@@ -166,24 +126,10 @@ CometChat.getLoggedinUser().then(
|
|
|
166
126
|
);
|
|
167
127
|
```
|
|
168
128
|
|
|
169
|
-
| :information_source: <b>Note - The login() method needs to be called only once. Also replace AUTH_KEY with
|
|
129
|
+
| :information_source: <b>Note - The login() method needs to be called only once. Also replace `AUTH_KEY` with Auth Key from your app.</b> |
|
|
170
130
|
|------------------------------------------------------------------------------------------------------------|
|
|
171
131
|
|
|
172
|
-
<hr/>
|
|
173
|
-
|
|
174
|
-
📝 Please refer to our [Developer Documentation](https://prodocs.cometchat.com/docs/js-quick-start) for more information on how to configure the CometChat SDK and implement various features using the same.
|
|
175
132
|
|
|
176
|
-
<hr/>
|
|
177
|
-
|
|
178
|
-
## Learn more about UI-Kit
|
|
179
|
-
[Angular UI Kit](https://github.com/cometchat-pro/javascript-angular-chat-ui-kit) | [React UI Kit](https://github.com/cometchat-pro/javascript-react-chat-ui-kit) | [Vue UI Kit](https://github.com/cometchat-pro/javascript-vue-chat-ui-kit)
|
|
180
|
-
|
|
181
|
-
## Contributors :clap:
|
|
182
|
-
Thanks to the following people who have contributed to this project:
|
|
183
|
-
[👨💻 @ajaygajra](https://github.com/ajaygajra)
|
|
184
|
-
[👨💻 @mayur-bhandari](https://github.com/mayur-bhandari)
|
|
185
|
-
<hr/>
|
|
186
133
|
|
|
187
|
-
##
|
|
188
|
-
|
|
189
|
-
<hr/>
|
|
134
|
+
## Help and Support
|
|
135
|
+
For issues running the project or integrating with our UI Kits, consult our [documentation](https://www.cometchat.com/docs/javascript-chat-sdk/overview) or create a [support ticket](https://help.cometchat.com/hc/en-us) or seek real-time support via the [CometChat Dashboard](https://app.cometchat.com/).
|