@meetelise/chat 1.20.83 → 1.20.85
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/package.json +3 -1
- package/public/demo/index.html +8 -2
- package/public/dist/index.js +514 -229
- package/public/dist/index.js.LICENSE.txt +17 -0
- package/src/MyPubnub.ts +236 -0
- package/src/WebComponent/Scheduler/tour-scheduler.ts +29 -2
- package/src/WebComponent/actions/email-us-window.ts +9 -0
- package/src/WebComponent/launcher/Launcher.ts +4 -0
- package/src/WebComponent/me-chat.ts +194 -67
- package/src/WebComponent/pubnub-chat-styles.ts +172 -0
- package/src/WebComponent/pubnub-chat.ts +155 -0
- package/src/disclaimers.ts +56 -0
- package/src/fetchFeatureFlag.ts +21 -0
- package/src/svgIcons.ts +9 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meetelise/chat",
|
|
3
|
-
"version": "1.20.
|
|
3
|
+
"version": "1.20.85",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "public/dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -57,12 +57,14 @@
|
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
59
|
"@meetelise/rest-sdk": "^0.0.161",
|
|
60
|
+
"@types/pubnub": "^7.2.1",
|
|
60
61
|
"axios": "^0.27.2",
|
|
61
62
|
"classnames": "^2.3.1",
|
|
62
63
|
"date-fns": "^2.28.0",
|
|
63
64
|
"dotenv": "^16.0.1",
|
|
64
65
|
"lit": "^2.2.4",
|
|
65
66
|
"lodash": "^4.17.21",
|
|
67
|
+
"pubnub": "^7.2.2",
|
|
66
68
|
"react": "^17.0.2",
|
|
67
69
|
"talkjs": "^0.14.5",
|
|
68
70
|
"uuid": "^8.3.2"
|
package/public/demo/index.html
CHANGED
|
@@ -118,9 +118,15 @@
|
|
|
118
118
|
<script type="module" async>
|
|
119
119
|
import MEChat from "/index.js";
|
|
120
120
|
MEChat.start({
|
|
121
|
+
// 123 Main Street
|
|
122
|
+
// organization: "test-company",
|
|
123
|
+
// building: "3fc93384-91f5-11ed-98a3-43f5a2f42588",
|
|
124
|
+
|
|
125
|
+
// Taylor Street Apartments
|
|
121
126
|
organization: "test-company",
|
|
122
|
-
|
|
123
|
-
|
|
127
|
+
building: "e2e-test-yardi-building",
|
|
128
|
+
|
|
129
|
+
// brandColor: "#a44ef5",
|
|
124
130
|
});
|
|
125
131
|
</script>
|
|
126
132
|
<main>
|