@meetelise/chat 1.22.3 → 1.22.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/index.ts +1 -1
- package/package.json +1 -1
- package/public/demo/index.html +10 -6
- package/public/dist/index.js +216 -19
- package/src/MyPubnub.ts +35 -34
- package/src/WebComponent/health-chat.ts +8 -5
- package/src/WebComponent/me-chat.ts +5 -14
- package/src/WebComponent/pubnub-chat.ts +160 -1
- package/src/WebComponent/{healthcare/healthcare-launcher-styles.ts → simple-launcher/simple-launcher-styles.ts} +1 -1
- package/src/WebComponent/{healthcare/healthcare-launcher.ts → simple-launcher/simple-launcher.ts} +4 -4
- package/src/WebComponent/utilities-chat.ts +274 -0
- package/src/{MEChat.test.ts → main/MEChat.test.ts} +1 -1
- package/src/{MEChat.ts → main/MEChat.ts} +124 -82
- package/src/main/utils.ts +70 -0
- package/tsconfig.json +1 -1
- package/webpack.config.cjs +1 -1
- package/src/MEChat.d.ts +0 -63
package/index.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from "./src/MEChat";
|
|
1
|
+
export { default } from "./src/main/MEChat";
|
package/package.json
CHANGED
package/public/demo/index.html
CHANGED
|
@@ -152,21 +152,25 @@
|
|
|
152
152
|
};
|
|
153
153
|
|
|
154
154
|
MEChat.start({
|
|
155
|
-
//
|
|
156
|
-
// building: "
|
|
155
|
+
// organization: "test-company",
|
|
156
|
+
// building: "3fc93384-91f5-11ed-98a3-43f5a2f42588",
|
|
157
157
|
|
|
158
|
-
organization: "
|
|
159
|
-
|
|
158
|
+
organization: "4c78cac8-017a-4497-8b71-3df15779a83c",
|
|
159
|
+
|
|
160
|
+
building: "43e3b1bc-d1b2-11ee-acb9-d77ba815aaac",
|
|
161
|
+
|
|
162
|
+
// organization: "cardinal-group",
|
|
160
163
|
// widgetType: "utilities",
|
|
161
164
|
|
|
162
|
-
// organization: "
|
|
163
|
-
// building: "
|
|
165
|
+
// organization: "test-company",
|
|
166
|
+
// building: "e2e-test-yardi-building",
|
|
164
167
|
// overrideRentgrata: true,
|
|
165
168
|
// onWidgetLoaded: onWidgetLoaded,
|
|
166
169
|
|
|
167
170
|
// MEChat.healthcareStart({
|
|
168
171
|
// id: "6a9e65e5-9699-4c96-af75-1741d0df79aa",
|
|
169
172
|
});
|
|
173
|
+
// MEChat.healthcareStart({ id: "6a9e65e5-9699-4c96-af75-1741d0df79aa", });
|
|
170
174
|
</script>
|
|
171
175
|
<main>
|
|
172
176
|
<h1>Example Page</h1>
|