@chat21/chat21-ionic 3.4.5-rc.2 → 3.4.6

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,5 +1,9 @@
1
1
  # chat21-ionic ver 3.0
2
2
 
3
+ ### 3.4.6 in PROD
4
+
5
+ ### 3.4.5 in PROD
6
+
3
7
  ### 3.4.5-rc.2
4
8
  - changed: sidebar css improvement
5
9
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@chat21/chat21-ionic",
3
3
  "author": "Tiledesk SRL",
4
- "version": "3.4.5-rc.2",
4
+ "version": "3.4.6",
5
5
  "license": "MIT License",
6
6
  "homepage": "https://tiledesk.com/",
7
7
  "repository": {
@@ -268,11 +268,11 @@ export class AppComponent implements OnInit {
268
268
 
269
269
  ngOnInit(): void {
270
270
  const appconfig = this.appConfigProvider.getConfig();
271
- this.logger.log('[APP-COMP] ngOnInit appconfig', appconfig)
271
+ // this.logger.log('[APP-COMP] ngOnInit appconfig', appconfig)
272
272
 
273
273
  this.globalSettingsService.obsSettingsService.subscribe((resp) => {
274
274
  if(resp){
275
- this.logger.log('[APP-COMP] ngOnInit globalSettingsService', this.g)
275
+ // this.logger.log('[APP-COMP] ngOnInit globalSettingsService', this.g)
276
276
  // /** INIT */
277
277
  // this.getRouteParamsAndSetLoggerConfig();
278
278
 
@@ -32,7 +32,7 @@ export class Chat21Service {
32
32
  if (!this._config || this._config.appId === 'CHANGEIT') {
33
33
  throw new Error('chat21Config is not defined. Please setup your environment');
34
34
  }
35
- console.log("INIT new Chat21Client")
35
+ // console.log("INIT new Chat21Client")
36
36
  if (!this.chatClient) {
37
37
  this.chatClient = new Chat21Client(this._config);
38
38
  }