@meetelise/chat 1.20.87 → 1.20.88
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
CHANGED
package/public/demo/index.html
CHANGED
|
@@ -119,12 +119,12 @@
|
|
|
119
119
|
import MEChat from "/index.js";
|
|
120
120
|
MEChat.start({
|
|
121
121
|
// 123 Main Street
|
|
122
|
-
organization: "test-company",
|
|
123
|
-
building: "3fc93384-91f5-11ed-98a3-43f5a2f42588",
|
|
122
|
+
// organization: "test-company",
|
|
123
|
+
// building: "3fc93384-91f5-11ed-98a3-43f5a2f42588",
|
|
124
124
|
|
|
125
125
|
// Taylor Street Apartments
|
|
126
|
-
|
|
127
|
-
|
|
126
|
+
organization: "test-company",
|
|
127
|
+
building: "e2e-test-yardi-building",
|
|
128
128
|
|
|
129
129
|
// Cambridge House
|
|
130
130
|
// organization: "elise-ai",
|
package/public/dist/index.js
CHANGED
|
@@ -2967,6 +2967,12 @@ var e={8005:function(e,t,n){var i,r=this&&this.__extends||(i=function(e,t){retur
|
|
|
2967
2967
|
.disclaimer-message {
|
|
2968
2968
|
font-size: 12px;
|
|
2969
2969
|
}
|
|
2970
|
+
.disclaimer-inner {
|
|
2971
|
+
margin: 0;
|
|
2972
|
+
}
|
|
2973
|
+
.disclaimer-inner > a {
|
|
2974
|
+
color: black;
|
|
2975
|
+
}
|
|
2970
2976
|
|
|
2971
2977
|
.message-container {
|
|
2972
2978
|
display: flex;
|
|
@@ -3084,9 +3090,17 @@ var e={8005:function(e,t,n){var i,r=this&&this.__extends||(i=function(e,t){retur
|
|
|
3084
3090
|
<div id="conversation-body">
|
|
3085
3091
|
<ul id="message-thread-list">
|
|
3086
3092
|
<li class="message-container disclaimer-message">
|
|
3087
|
-
|
|
3088
|
-
|
|
3089
|
-
|
|
3093
|
+
<p class="disclaimer-inner">
|
|
3094
|
+
By interacting with this system, you consent to
|
|
3095
|
+
<a
|
|
3096
|
+
href="http://bit.ly/me_privacy_policy"
|
|
3097
|
+
target="_blank"
|
|
3098
|
+
rel="noopener noreferrer"
|
|
3099
|
+
>
|
|
3100
|
+
this privacy policy</a
|
|
3101
|
+
>, including being contacted by AI or a human & having your
|
|
3102
|
+
conversation recorded by a third party.
|
|
3103
|
+
</p>
|
|
3090
3104
|
</li>
|
|
3091
3105
|
${this.building.welcomeMessage?B` <li class="message-container ai-message">
|
|
3092
3106
|
<p class="message-text">${this.building.welcomeMessage}</p>
|
|
@@ -103,9 +103,17 @@ export class PubnubChat extends LitElement {
|
|
|
103
103
|
<div id="conversation-body">
|
|
104
104
|
<ul id="message-thread-list">
|
|
105
105
|
<li class="message-container disclaimer-message">
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
106
|
+
<p class="disclaimer-inner">
|
|
107
|
+
By interacting with this system, you consent to
|
|
108
|
+
<a
|
|
109
|
+
href="http://bit.ly/me_privacy_policy"
|
|
110
|
+
target="_blank"
|
|
111
|
+
rel="noopener noreferrer"
|
|
112
|
+
>
|
|
113
|
+
this privacy policy</a
|
|
114
|
+
>, including being contacted by AI or a human & having your
|
|
115
|
+
conversation recorded by a third party.
|
|
116
|
+
</p>
|
|
109
117
|
</li>
|
|
110
118
|
${this.building.welcomeMessage
|
|
111
119
|
? html` <li class="message-container ai-message">
|