@meetelise/chat 1.20.85 → 1.20.87
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 +8 -4
- package/public/dist/index.js +67 -45
- 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 +18 -8
package/package.json
CHANGED
package/public/demo/index.html
CHANGED
|
@@ -119,12 +119,16 @@
|
|
|
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
|
+
|
|
129
|
+
// Cambridge House
|
|
130
|
+
// organization: "elise-ai",
|
|
131
|
+
// building: "the-cambridge-house-3",
|
|
128
132
|
|
|
129
133
|
// brandColor: "#a44ef5",
|
|
130
134
|
});
|