@meetelise/chat 1.20.201 → 1.20.202
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 +52 -3
- package/public/dist/index.js +143 -143
- package/src/WebComponent/Scheduler/tour-scheduler.ts +1 -0
- package/src/WebComponent/actions/email-us-window.ts +1 -0
- package/src/WebComponent/me-chat.ts +5 -1
- package/src/analytics.ts +8 -0
- package/src/postLeadSources.ts +9 -1
- package/src/utils.ts +16 -0
package/package.json
CHANGED
package/public/demo/index.html
CHANGED
|
@@ -117,9 +117,58 @@
|
|
|
117
117
|
<!-- Webpack dev server will serve the bundle, index.js, at the path '/' -->
|
|
118
118
|
<script type="module" async>
|
|
119
119
|
import MEChat from "/index.js";
|
|
120
|
+
// MEChat.healthcareStart({
|
|
121
|
+
// id: "6a9e65e5-9699-4c96-af75-1741d0df79aa",
|
|
120
122
|
MEChat.start({
|
|
121
|
-
organization: "
|
|
122
|
-
building: "
|
|
123
|
+
organization: "test-company",
|
|
124
|
+
building: "3fc93384-91f5-11ed-98a3-43f5a2f42588",
|
|
125
|
+
// organization: "00f18938-9632-40b9-8d7f-f30e219c94fc",
|
|
126
|
+
// building: "19e21cda-d05b-11ee-b3bd-cf9cc1ace7e5",
|
|
127
|
+
// 123 Main Street
|
|
128
|
+
// organization: "test-company",
|
|
129
|
+
// building: "e2e-test-yardi-building",
|
|
130
|
+
// organization: "edward-rose",
|
|
131
|
+
// building: "rivers-edge-apartments",
|
|
132
|
+
// // mobileStyles: {
|
|
133
|
+
// // bottom: "100px",
|
|
134
|
+
// // },
|
|
135
|
+
// // organization: "mill-creek",
|
|
136
|
+
// // building: "5ec32c42-2548-11ec-b813-e361780537f5",
|
|
137
|
+
// // organization: "d1a1060d-3844-48d4-a454-1ba26292bc69",
|
|
138
|
+
// // building: "25feb690-c76f-11ed-83b9-a7aa9698a486",
|
|
139
|
+
// // organization: "TT",
|
|
140
|
+
// // building: "ffc97070-5c73-11ed-8507-77860136d3bf",
|
|
141
|
+
// // AMLI
|
|
142
|
+
// organization: "amli",
|
|
143
|
+
// building: "6e43581c-c4a4-11ec-a62b-9311f60f23f8",
|
|
144
|
+
// organization: "d1a1060d-3844-48d4-a454-1ba26292bc69",
|
|
145
|
+
// building: "25fead9e-c76f-11ed-83b2-7b1e7b442e9f",
|
|
146
|
+
// // Taylor Street Apartments
|
|
147
|
+
// organization: "test-company",
|
|
148
|
+
// building: "e2e-test-yardi-building",
|
|
149
|
+
// position: {
|
|
150
|
+
// bottom: 100,
|
|
151
|
+
// left: 0,
|
|
152
|
+
// },
|
|
153
|
+
// // The Qual People
|
|
154
|
+
// // organization: "Pacific Urban Residential",
|
|
155
|
+
// // building: "1ac49f90-6150-11ed-b327-1b3f05e7b9db",
|
|
156
|
+
// // organization: "Pacific Urban Residential",
|
|
157
|
+
// // building: "1ac49f90-6150-11ed-b327-1b3f05e7b9db",
|
|
158
|
+
// // Cambridge House
|
|
159
|
+
// organization: "elise-ai",
|
|
160
|
+
// building: "the-cambridge-house-3",
|
|
161
|
+
// // Artistry on 10th
|
|
162
|
+
// // organization: "lindy",
|
|
163
|
+
// // building: "c4cfc3ec-c4da-11ec-bda4-43aed00ca1b2",
|
|
164
|
+
// // brandColor: "#a44ef5",
|
|
165
|
+
// // organization: "Pacific Urban Residential",
|
|
166
|
+
// // building: "1ac49f90-6150-11ed-b327-1b3f05e7b9db",
|
|
167
|
+
// // organization: "sparrow",
|
|
168
|
+
// // building: "8e87ae6e-eae8-11ed-aae8-fb82f4692a79",
|
|
169
|
+
// });
|
|
170
|
+
// MEChat.healthcareStart({
|
|
171
|
+
// id: "6a9e65e5-9699-4c96-af75-1741d0df79aa",
|
|
123
172
|
});
|
|
124
173
|
</script>
|
|
125
174
|
<main>
|
|
@@ -128,7 +177,7 @@
|
|
|
128
177
|
This is an example page for serving the chat widget locally. Source of
|
|
129
178
|
truth
|
|
130
179
|
</p>
|
|
131
|
-
|
|
180
|
+
|
|
132
181
|
<button id="reset" type="button">Restart conversation</button>
|
|
133
182
|
<button id="navigate" type="button">navigate</button>
|
|
134
183
|
<button id="unnavigate" type="button">unnavigate</button>
|