@chat21/chat21-ionic 3.0.103-rc.2 → 3.0.103
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
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
# chat21-ionic ver 3.0
|
|
2
2
|
|
|
3
|
+
### 3.0.103 in PROD
|
|
4
|
+
|
|
3
5
|
### 3.0.103-rc.2
|
|
4
6
|
- added: google signIn for mobile platform
|
|
5
7
|
- added: FMC and inAppBrowser plugins
|
|
6
8
|
- minor improvements on canned responses component
|
|
9
|
+
- changed: /email/send with new API
|
|
7
10
|
|
|
8
11
|
### 3.0.103-rc.1
|
|
9
12
|
- added: ANGULAR 12
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chat21/chat21-ionic",
|
|
3
3
|
"author": "Tiledesk SRL",
|
|
4
|
-
"version": "3.0.103
|
|
4
|
+
"version": "3.0.103",
|
|
5
5
|
"license": "MIT License",
|
|
6
6
|
"homepage": "https://tiledesk.com/",
|
|
7
7
|
"repository": {
|
|
@@ -109,9 +109,14 @@
|
|
|
109
109
|
"cordova-plugin-whitelist": {},
|
|
110
110
|
"cordova-plugin-statusbar": {},
|
|
111
111
|
"cordova-plugin-splashscreen": {},
|
|
112
|
-
"cordova-plugin-ionic-webview": {
|
|
112
|
+
"cordova-plugin-ionic-webview": {
|
|
113
|
+
"ANDROID_SUPPORT_ANNOTATIONS_VERSION": "27.+"
|
|
114
|
+
},
|
|
113
115
|
"cordova-plugin-ionic-keyboard": {},
|
|
114
116
|
"cordova-plugin-chooser": {},
|
|
117
|
+
"cordova-android-support-gradle-release": {
|
|
118
|
+
"ANDROID_SUPPORT_VERSION": "27.+"
|
|
119
|
+
},
|
|
115
120
|
"cordova-plugin-network-information": {},
|
|
116
121
|
"cordova-plugin-inappbrowser": {},
|
|
117
122
|
"cordova-plugin-fcm-with-dependecy-updated": {
|
|
@@ -139,9 +144,6 @@
|
|
|
139
144
|
"DEEPLINK_4_HOST": " ",
|
|
140
145
|
"DEEPLINK_5_SCHEME": " ",
|
|
141
146
|
"DEEPLINK_5_HOST": " "
|
|
142
|
-
},
|
|
143
|
-
"cordova-android-support-gradle-release": {
|
|
144
|
-
"ANDROID_SUPPORT_VERSION": "27.+"
|
|
145
147
|
}
|
|
146
148
|
},
|
|
147
149
|
"platforms": [
|
package/src/app/app.component.ts
CHANGED
|
@@ -129,7 +129,7 @@ export class AppComponent implements OnInit {
|
|
|
129
129
|
public webSocketJs: WebSocketJs,
|
|
130
130
|
public scriptService: ScriptService,
|
|
131
131
|
public location: Location,
|
|
132
|
-
|
|
132
|
+
public fcm: FCM
|
|
133
133
|
) {
|
|
134
134
|
|
|
135
135
|
this.saveInStorageNumberOfOpenedChatTab();
|
|
@@ -1342,7 +1342,7 @@ export class AppComponent implements OnInit {
|
|
|
1342
1342
|
}
|
|
1343
1343
|
|
|
1344
1344
|
private handleNotifications(){
|
|
1345
|
-
if(this.platform.is('
|
|
1345
|
+
if(!this.platform.is('desktop')){
|
|
1346
1346
|
this.fcm.onNotification().subscribe(data => {
|
|
1347
1347
|
let pageUrl = 'conversation-detail/'
|
|
1348
1348
|
if (data.wasTapped) {
|
|
@@ -18,7 +18,6 @@ export class SendEmailModal implements OnInit {
|
|
|
18
18
|
@Input() enableBackdropDismiss: any
|
|
19
19
|
@Input() conversationWith: string;
|
|
20
20
|
@Input() msg: string;
|
|
21
|
-
// @Input() email: string;
|
|
22
21
|
@Input() projectId: string;
|
|
23
22
|
@Input() translationMap: Map<string, string>;
|
|
24
23
|
@Output() onSubmitForm = new EventEmitter<{}>();
|
|
@@ -72,8 +71,6 @@ export class SendEmailModal implements OnInit {
|
|
|
72
71
|
return this.formBuilder.group({
|
|
73
72
|
subject: ['', [Validators.required]],
|
|
74
73
|
text: ['', Validators.required],
|
|
75
|
-
// to: this.email,
|
|
76
|
-
// request_id: this.conversationWith
|
|
77
74
|
})
|
|
78
75
|
}
|
|
79
76
|
async onClose() {
|