@meetelise/chat 1.20.85 → 1.20.86
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 +1 -1
- package/public/demo/index.html +4 -4
- package/public/dist/index.js +66 -44
- package/src/MyPubnub.ts +96 -13
- package/src/WebComponent/me-chat.ts +29 -31
- package/src/WebComponent/pubnub-chat-styles.ts +23 -10
- package/src/WebComponent/pubnub-chat.ts +17 -7
package/package.json
CHANGED
package/public/demo/index.html
CHANGED
|
@@ -119,12 +119,12 @@
|
|
|
119
119
|
import MEChat from "/index.js";
|
|
120
120
|
MEChat.start({
|
|
121
121
|
// 123 Main Street
|
|
122
|
-
|
|
123
|
-
|
|
122
|
+
organization: "test-company",
|
|
123
|
+
building: "3fc93384-91f5-11ed-98a3-43f5a2f42588",
|
|
124
124
|
|
|
125
125
|
// Taylor Street Apartments
|
|
126
|
-
organization: "test-company",
|
|
127
|
-
building: "e2e-test-yardi-building",
|
|
126
|
+
// organization: "test-company",
|
|
127
|
+
// building: "e2e-test-yardi-building",
|
|
128
128
|
|
|
129
129
|
// brandColor: "#a44ef5",
|
|
130
130
|
});
|