@meetelise/chat 1.22.68 → 1.22.70
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 +6 -4
- package/public/dist/index.js +301 -256
- package/src/MyPubnub.ts +16 -16
- package/src/WebComponent/Scheduler/date-picker.ts +8 -4
- package/src/WebComponent/Scheduler/time-picker.ts +2 -2
- package/src/WebComponent/Scheduler/tour-scheduler.ts +6 -1
- package/src/WebComponent/launcher/Launcher.ts +2 -1
- package/src/WebComponent/launcher/mobile-launcher.ts +7 -5
- package/src/WebComponent/me-chat.ts +86 -69
- package/src/WebComponent/me-select.ts +31 -5
- package/src/WebComponent/pubnub-chat.ts +17 -4
- package/src/fetchBuildingInfo.ts +2 -1
- package/src/fetchBuildingWebchatView.ts +148 -0
- package/src/fetchWebchatPreferences.ts +16 -15
- package/src/themes.ts +1 -1
package/package.json
CHANGED
package/public/demo/index.html
CHANGED
|
@@ -151,6 +151,8 @@
|
|
|
151
151
|
></noscript>
|
|
152
152
|
<!-- End Google Tag Manager (noscript) -->
|
|
153
153
|
<!-- Webpack dev server will serve the bundle, index.js, at the path '/' -->
|
|
154
|
+
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/axe-core/4.3.5/axe.min.js"></script> -->
|
|
155
|
+
|
|
154
156
|
<script type="module" async>
|
|
155
157
|
import MEChat from "/index.js";
|
|
156
158
|
// MEChat.healthcareStart({
|
|
@@ -171,14 +173,16 @@
|
|
|
171
173
|
};
|
|
172
174
|
|
|
173
175
|
MEChat.start({
|
|
176
|
+
organization: "lindy",
|
|
177
|
+
building: "c4cfc3ec-c4da-11ec-bda4-43aed00ca1b2",
|
|
174
178
|
// organization: "Pacific Urban Residential",
|
|
175
179
|
// building: "c06117dc-7a80-11ed-bc9a-c3e28c7281ff",
|
|
176
180
|
|
|
177
181
|
// organization: "conam",
|
|
178
182
|
// building: "b912c9ee-61f8-11ed-bbed-07208d4c2146",
|
|
179
183
|
|
|
180
|
-
organization: "e357e665-8152-494b-8059-5243cf7c4d7b",
|
|
181
|
-
building: "c4d23fee-17c3-11ef-a8f9-2793b21baae2",
|
|
184
|
+
// organization: "e357e665-8152-494b-8059-5243cf7c4d7b",
|
|
185
|
+
// building: "c4d23fee-17c3-11ef-a8f9-2793b21baae2",
|
|
182
186
|
|
|
183
187
|
// organization: "lincoln",
|
|
184
188
|
// building: "8c47ac2a-0485-11ed-ad73-e74957fe3493",
|
|
@@ -229,7 +233,6 @@
|
|
|
229
233
|
This is an example page for serving the chat widget locally. Source of
|
|
230
234
|
truth
|
|
231
235
|
</p>
|
|
232
|
-
|
|
233
236
|
<button id="reset" type="button">Restart conversation</button>
|
|
234
237
|
<button id="navigate" type="button">navigate</button>
|
|
235
238
|
<button id="unnavigate" type="button">unnavigate</button>
|
|
@@ -267,7 +270,6 @@
|
|
|
267
270
|
<a
|
|
268
271
|
href="javascript:void(0);"
|
|
269
272
|
onclick="window.eliseAi.onOpenSST(() => {
|
|
270
|
-
|
|
271
273
|
const meetEliseChats = document.getElementsByTagName('me-chat');
|
|
272
274
|
if (!meetEliseChats || meetEliseChats.length === 0) {
|
|
273
275
|
return;
|