od-support-chat 1.0.21 → 1.0.22
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/README.md +97 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
# OD Support Chat
|
|
2
|
+
|
|
3
|
+
od-support-chat is a lightweight, embeddable customer support chat tool built for the Origin Detector (OD) platform. It allows companies to enable real-time communication between customers and support teams, helping improve trust, product verification, and issue resolution.
|
|
4
|
+
|
|
5
|
+
## Key Points
|
|
6
|
+
### Purpose:
|
|
7
|
+
Enables live chat between customers and support teams directly within a website or platform.
|
|
8
|
+
|
|
9
|
+
### Core Value:
|
|
10
|
+
* Improves customer trust
|
|
11
|
+
* Helps with product authenticity verification
|
|
12
|
+
* Speeds up issue resolution
|
|
13
|
+
|
|
14
|
+
### Target Users:
|
|
15
|
+
Manufacturing companies and businesses using the Origin Detector (OD) platform
|
|
16
|
+
|
|
17
|
+
### Pricing Model:
|
|
18
|
+
* Free (no separate license fee)
|
|
19
|
+
* Only available to users with a paid OD platform subscription
|
|
20
|
+
* Considered a complimentary add-on, not a standalone product
|
|
21
|
+
|
|
22
|
+
### Positioning:
|
|
23
|
+
* Not sold independently
|
|
24
|
+
* Acts as an extra support feature within the OD ecosystem
|
|
25
|
+
|
|
26
|
+
### Alternative Mentioned:
|
|
27
|
+
|
|
28
|
+
The od-support-chat is a simple, embeddable customer support chat designed for the Origin Detector (OD) platform. It
|
|
29
|
+
facilitates real-time communication between customers and support teams, helping to build trust, verify products, and resolve issues.
|
|
30
|
+
|
|
31
|
+
This chat tool is free for companies that already have a paid subscription to the Origin Detector platform. Essentially,
|
|
32
|
+
it serves as an added benefit for manufacturing companies using the platform. There are no additional licensing fees for
|
|
33
|
+
the od-support-chat itself, but you'll need to pay for a license for the Origin Detector platform to access this free tool.
|
|
34
|
+
|
|
35
|
+
Alternatively, you can use the OptimizeTalk.com meeting tool independently and at no cost, regardless of whether you use the od-support-chat.
|
|
36
|
+
|
|
37
|
+
## Development
|
|
38
|
+
|
|
39
|
+
- Install:
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
npm i od-support-chat
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
## How to create chat widget for your website
|
|
46
|
+
|
|
47
|
+
Login to https://origindetector.com
|
|
48
|
+
|
|
49
|
+
<img src="./src/asset/origindetector_com.png" width="500">
|
|
50
|
+
|
|
51
|
+
Please get the **meetingLinkKey** and **customerSupportKey** form the Origin Detector website by opening the user profile.
|
|
52
|
+
To obtain the meetingLinkKey and customerSupportKey from the Origin Detector website, follow these steps:
|
|
53
|
+
|
|
54
|
+
1. Open your user profile on the Origin Detector (OD) website. You can access this if you have created a company in OD.
|
|
55
|
+
2. Click on the "OptimizeTalk Support" menu item. This will direct you to your meeting room.
|
|
56
|
+
3. If this is your first time accessing this menu, you will be prompted to create a meeting room. During this process, you will need to set a password for the customer support team.
|
|
57
|
+
|
|
58
|
+
Once you've completed these steps, you will have access to the keys you need.
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+

|
|
62
|
+
|
|
63
|
+
If you already created meeting room it will forward you to that meeting room in OptimizeTalk. You have to login using your meeting room
|
|
64
|
+
password.
|
|
65
|
+
|
|
66
|
+
<img src="./src/asset/LoginToYourMeeting.png" width="500">
|
|
67
|
+
|
|
68
|
+
After you login there is top control bar where you can create shared link and support key.
|
|
69
|
+
|
|
70
|
+

|
|
71
|
+
|
|
72
|
+
You will need __meetingLinkKey__ and __customerSupportKey__ to use in your website to add chat option. To set up the __meetingLinkKey__
|
|
73
|
+
and __customerSupportKey__, you can choose to allow a maximum of one guest for customer support
|
|
74
|
+
purposes. This will prevent multiple guests from entering the room, which may not be ideal for support scenarios.
|
|
75
|
+
|
|
76
|
+
However, if you have a situation where you need to assist a group of guests at the same time and they should all see the
|
|
77
|
+
same message, you can increase the maximum number of guests allowed.
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+

|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
Finally you can use the Chat client for Origin Detector (OD) customer support tools for your website. Just import and use it with keys
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
```typescript
|
|
88
|
+
import { Chat, ChatMobile } from "od-support-chat";
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
```typescript
|
|
93
|
+
<Chat meetingLinkKey={meetingLinkKey} customerSupportKey={customerSupportKey}/>
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
<img src="./src/asset/customer-support.png" height="500">
|
|
97
|
+
|