@chat21/chat21-ionic 3.0.82-rc.1 → 3.0.82-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/package.json +1 -1
- package/src/app/app.component.ts +0 -1
- package/src/app/components/sidebar-user-details/sidebar-user-details.component.scss +1 -1
- package/src/app/pages/contacts-directory/contacts-directory.page.scss +6 -0
- package/src/app/pages/conversations-list/conversations-list.page.scss +7 -0
- package/src/app/services/tiledesk/tiledesk.service.ts +4 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# chat21-ionic ver 3.0
|
|
2
2
|
|
|
3
|
+
### 3.0.82-rc.2
|
|
4
|
+
- changed: 'force' parameter to /close post as body content
|
|
5
|
+
- changed: enabled MTT
|
|
6
|
+
- changed: position of 'LogOut' button in sidebar-user-detail component
|
|
3
7
|
### 3.0.82-rc.1
|
|
4
8
|
- changed: forceArchive to force while calling /close API URL
|
|
5
9
|
- changed: chat21Client.js from 1.12.1 to 1.12.2
|
package/package.json
CHANGED
package/src/app/app.component.ts
CHANGED
|
@@ -15,6 +15,13 @@ ion-content {
|
|
|
15
15
|
--offset-bottom: auto!important;
|
|
16
16
|
--overflow: hidden;
|
|
17
17
|
overflow: scroll;
|
|
18
|
+
|
|
19
|
+
/* For Firefox */
|
|
20
|
+
@-moz-document url-prefix() {
|
|
21
|
+
scrollbar-width: none;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
|
|
18
25
|
&:not(.mobile){
|
|
19
26
|
background: var(--list-bkg-color);
|
|
20
27
|
}
|
|
@@ -36,11 +36,13 @@ export class TiledeskService {
|
|
|
36
36
|
})
|
|
37
37
|
};
|
|
38
38
|
|
|
39
|
-
const body = {
|
|
39
|
+
const body = {
|
|
40
|
+
force: true
|
|
41
|
+
};
|
|
40
42
|
// console.log('CLOUD FUNCT CLOSE SUPPORT GROUP REQUEST BODY ', body);
|
|
41
43
|
// https://tiledesk-server-pre.herokuapp.com/
|
|
42
44
|
// const url = 'https://tiledesk-server-pre.herokuapp.com/' + this.project_id + '/requests/' + group_id + '/close';
|
|
43
|
-
const url = this.apiUrl + projectid + '/requests/' + supportgroupid + '/close'
|
|
45
|
+
const url = this.apiUrl + projectid + '/requests/' + supportgroupid + '/close';
|
|
44
46
|
|
|
45
47
|
this.logger.log('[TILEDESK-SERVICE] - closeSupportGroup URL ', url);
|
|
46
48
|
return this.http.put(url, body, httpOptions).pipe(map((res: any) => {
|