@meetelise/chat 1.20.200 → 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 +8 -17
- 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/WebComponent/pubnub-message.ts +1 -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,35 +117,32 @@
|
|
|
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
|
-
|
|
122
|
-
|
|
120
|
+
// MEChat.healthcareStart({
|
|
121
|
+
// id: "6a9e65e5-9699-4c96-af75-1741d0df79aa",
|
|
122
|
+
MEChat.start({
|
|
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",
|
|
123
127
|
// 123 Main Street
|
|
124
128
|
// organization: "test-company",
|
|
125
129
|
// building: "e2e-test-yardi-building",
|
|
126
|
-
|
|
127
130
|
// organization: "edward-rose",
|
|
128
131
|
// building: "rivers-edge-apartments",
|
|
129
132
|
// // mobileStyles: {
|
|
130
133
|
// // bottom: "100px",
|
|
131
134
|
// // },
|
|
132
|
-
|
|
133
135
|
// // organization: "mill-creek",
|
|
134
136
|
// // building: "5ec32c42-2548-11ec-b813-e361780537f5",
|
|
135
|
-
|
|
136
137
|
// // organization: "d1a1060d-3844-48d4-a454-1ba26292bc69",
|
|
137
138
|
// // building: "25feb690-c76f-11ed-83b9-a7aa9698a486",
|
|
138
|
-
|
|
139
139
|
// // organization: "TT",
|
|
140
140
|
// // building: "ffc97070-5c73-11ed-8507-77860136d3bf",
|
|
141
|
-
|
|
142
141
|
// // AMLI
|
|
143
142
|
// organization: "amli",
|
|
144
143
|
// building: "6e43581c-c4a4-11ec-a62b-9311f60f23f8",
|
|
145
|
-
|
|
146
144
|
// organization: "d1a1060d-3844-48d4-a454-1ba26292bc69",
|
|
147
145
|
// building: "25fead9e-c76f-11ed-83b2-7b1e7b442e9f",
|
|
148
|
-
|
|
149
146
|
// // Taylor Street Apartments
|
|
150
147
|
// organization: "test-company",
|
|
151
148
|
// building: "e2e-test-yardi-building",
|
|
@@ -153,27 +150,20 @@
|
|
|
153
150
|
// bottom: 100,
|
|
154
151
|
// left: 0,
|
|
155
152
|
// },
|
|
156
|
-
|
|
157
153
|
// // The Qual People
|
|
158
154
|
// // organization: "Pacific Urban Residential",
|
|
159
155
|
// // building: "1ac49f90-6150-11ed-b327-1b3f05e7b9db",
|
|
160
|
-
|
|
161
156
|
// // organization: "Pacific Urban Residential",
|
|
162
157
|
// // building: "1ac49f90-6150-11ed-b327-1b3f05e7b9db",
|
|
163
|
-
|
|
164
158
|
// // Cambridge House
|
|
165
159
|
// organization: "elise-ai",
|
|
166
160
|
// building: "the-cambridge-house-3",
|
|
167
|
-
|
|
168
161
|
// // Artistry on 10th
|
|
169
162
|
// // organization: "lindy",
|
|
170
163
|
// // building: "c4cfc3ec-c4da-11ec-bda4-43aed00ca1b2",
|
|
171
|
-
|
|
172
164
|
// // brandColor: "#a44ef5",
|
|
173
|
-
|
|
174
165
|
// // organization: "Pacific Urban Residential",
|
|
175
166
|
// // building: "1ac49f90-6150-11ed-b327-1b3f05e7b9db",
|
|
176
|
-
|
|
177
167
|
// // organization: "sparrow",
|
|
178
168
|
// // building: "8e87ae6e-eae8-11ed-aae8-fb82f4692a79",
|
|
179
169
|
// });
|
|
@@ -187,6 +177,7 @@
|
|
|
187
177
|
This is an example page for serving the chat widget locally. Source of
|
|
188
178
|
truth
|
|
189
179
|
</p>
|
|
180
|
+
|
|
190
181
|
<button id="reset" type="button">Restart conversation</button>
|
|
191
182
|
<button id="navigate" type="button">navigate</button>
|
|
192
183
|
<button id="unnavigate" type="button">unnavigate</button>
|