@chat21/chat21-web-widget 5.0.48-rc.1 → 5.0.48-rc.2
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/CHANGELOG.md +4 -0
- package/angular.json +2 -1
- package/dist/environments/real_data/widget-config-native-prod.json +27 -0
- package/dist/main.js +1 -1
- package/package.json +1 -1
- package/src/app/utils/utils.ts +1 -0
- package/src/chat21-core/models/message.ts +0 -1
- package/src/chat21-core/providers/firebase/firebase-conversation-handler.ts +3 -3
- package/src/chat21-core/providers/mqtt/mqtt-conversation-handler.ts +128 -54
- package/src/chat21-core/utils/constants.ts +0 -1
- package/src/chat21-core/utils/utils-message.ts +1 -7
- package/src/chat21-core/utils/utils.ts +3 -0
- package/src/environments/real_data/widget-config-native-prod.json +27 -0
- package/src/models/message.ts +0 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# chat21-web-widget ver 5.0
|
|
2
2
|
|
|
3
|
+
### 5.0.48-rc.2
|
|
4
|
+
- added: splitMessage in MQTTConversationHandler service
|
|
5
|
+
- removed: MESSAGE_TYPE_DATE
|
|
6
|
+
|
|
3
7
|
### 5.0.48-rc.1
|
|
4
8
|
- bug-fixed: chatbot-panel page not render background-image
|
|
5
9
|
- bug-fixed: if departmentID is the default department, widget do not setup its as departmentID to start convs with
|
package/angular.json
CHANGED
|
@@ -40,7 +40,8 @@
|
|
|
40
40
|
"src/environments/real_data/widget-config-firebase.json",
|
|
41
41
|
"src/environments/real_data/widget-config-mqtt.json",
|
|
42
42
|
"src/environments/real_data/widget-config-docker.json",
|
|
43
|
-
"src/environments/real_data/widget-config-native-mqtt.json"
|
|
43
|
+
"src/environments/real_data/widget-config-native-mqtt.json",
|
|
44
|
+
"src/environments/real_data/widget-config-native-prod.json"
|
|
44
45
|
],
|
|
45
46
|
"styles": [
|
|
46
47
|
"src/app/sass/styles.scss",
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"chatEngine": "mqtt",
|
|
3
|
+
"uploadEngine": "native",
|
|
4
|
+
"pushEngine":"mqtt",
|
|
5
|
+
"fileUploadAccept":"*/*",
|
|
6
|
+
"logLevel": "debug",
|
|
7
|
+
"remoteTranslationsUrl": "https://api.tiledesk.com/v3/",
|
|
8
|
+
"firebaseConfig": {
|
|
9
|
+
"apiKey": "AIzaSyDKfdKrlD7AYcbQ-U-xxgV-b3FUQ4xt7NM",
|
|
10
|
+
"authDomain": "tiledesk-prod-v2.firebaseapp.com",
|
|
11
|
+
"databaseURL": "https://tiledesk-prod-v2.firebaseio.com",
|
|
12
|
+
"projectId": "tiledesk-prod-v2",
|
|
13
|
+
"storageBucket": "tiledesk-prod-v2.appspot.com",
|
|
14
|
+
"messagingSenderId": "92907897826",
|
|
15
|
+
"appId": "1:92907897826:web:f255664014a7cc14ee2fbb",
|
|
16
|
+
"tenant": "tilechat"
|
|
17
|
+
},
|
|
18
|
+
"chat21Config": {
|
|
19
|
+
"appId": "tilechat",
|
|
20
|
+
"MQTTendpoint": "wss://eu.rtmv3.tiledesk.com/mqws/ws",
|
|
21
|
+
"APIendpoint": "https://eu.rtmv3.tiledesk.com/chatapi/api",
|
|
22
|
+
"_log": true
|
|
23
|
+
},
|
|
24
|
+
"apiUrl": "https://api.tiledesk.com/v3/",
|
|
25
|
+
"baseImageUrl": "https://eu.rtmv3.tiledesk.com/api/",
|
|
26
|
+
"authPersistence": "LOCAL"
|
|
27
|
+
}
|