@vgroup/dialbox 0.7.78 → 0.7.79

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.
@@ -62,23 +62,23 @@ const keypad = [
62
62
  ];
63
63
 
64
64
  const environment = {
65
- abb: "t",
65
+ abb: "u",
66
66
  production: false,
67
67
  secureCookies: true,
68
- feUrl: 'https://test.vgroupinc.com:91/',
69
- apiUrl: 'https://apis.vgroupinc.com/test_softphone',
70
- websocketUrl: 'wss://apis.vgroupinc.com/test_softphone/',
68
+ feUrl: 'https://c2c-uat.contexttocall.com:85/',
69
+ apiUrl: 'https://c2c-uatapi-t10.contexttocall.com/uat_softphone',
70
+ websocketUrl: 'wss://c2c-uatapi-t10.contexttocall.com/uat_softphone/',
71
71
  captchaKey: "6LfpOmEaAAAAAGsI6JXlMzOl3b7rW4YmYXFDjldD",
72
- stripePublishableKey: "pk_test_51NbMVaA3guus6fhlTuCV5ycFTIJmwgN38dDUf9pNPfM319x5CkLbV6EbTQaZiNOrRsfR16RWLE8hQmR0eZFTBqTy00Wlsug4qS",
72
+ stripePublishableKey: "pk_live_51NbMVaA3guus6fhl85gdcvAWHzfHba5LdGlsnV7DxBT9spHghn4IHT9rDCjSRgFh2ijTiZn9qeazdciY1PbreOuB00t1GdQAZJ",
73
73
  sessionTimeout: 15,
74
74
  deviceType: "web",
75
- appVersion: "2.3",
76
- channelId: '61481b12e138eb7dc3007579',
75
+ appVersion: "2.9",
76
+ channelId: '6511738039ee10367cbde2e9',
77
77
  c2c_support_point_id: '60424735f74ac306c1bfa900',
78
- c2c_support_channel_id: '677f6726be93ab507fbbfdf0',
79
- c2c_point_url: 'https://app.contexttocall.com/assets/cdn/c2c.js',
80
- c2c_call_label_id: '6NU5fKE2mGTyXDC3yhmK',
81
- c2c_email_label_id: 'YPMamj8RvsGORVvqXWyc',
78
+ c2c_support_channel_id: '677f68fcbe93ab507fbbfe0b',
79
+ c2c_point_url: 'https://bit.ly/3blWnPv',
80
+ c2c_call_label_id: '5M4taT8xzAg9pPIUADOW',
81
+ c2c_email_label_id: 'MUUC4NV5bLqHixXyhmok',
82
82
  radarAPIKey: 'prj_live_sk_569b6f639edde6120a26f703511c61aaecd3f7ef',
83
83
  firebase: {
84
84
  apiKey: "AIzaSyCA8LSPrqlDq_thk26LhBQexAQeY6pkU5Y",
@@ -3586,7 +3586,7 @@ class CallProgressComponent {
3586
3586
  else if (this.missCallInfo?.data?.data?.recordId == data?.id && !callToAccept.parameters?.CallSid) {
3587
3587
  clearInterval(intervalId);
3588
3588
  const sid = callToAccept.parameters?.CallSid;
3589
- this.isConnectingIncomingCallId = '';
3589
+ this.twilioService.isConnectingIncomingCallId.next('');
3590
3590
  this.isConnectingIncomingCallId = '';
3591
3591
  this.acceptedCallList = this.acceptedCallList.filter(c => c.callSid !== sid);
3592
3592
  this.twilioService.acceptedCallList = this.twilioService.acceptedCallList.filter((c) => c.parameters?.CallSid !== sid);
@@ -5171,7 +5171,7 @@ class DialboxComponent {
5171
5171
  if (this.twilioService.incomingCallToken != this.updatedTwilioToken) {
5172
5172
  this.twilioService.incomingCallToken = this.updatedTwilioToken;
5173
5173
  this.twilioService.tokenInitialized = true;
5174
- this.twilioService.initializeTwilioDevice(this.deviceId || localStorage.getItem('deviceId'));
5174
+ this.twilioService.initializeTwilioDevice(localStorage.getItem('deviceId'));
5175
5175
  }
5176
5176
  }
5177
5177
  if (changes['userId']?.currentValue && this.userId) {
@@ -5878,6 +5878,7 @@ class DialboxComponent {
5878
5878
  this.incomingCallsList = [];
5879
5879
  // Clean up Twilio device when component is destroyed
5880
5880
  if (this.twilioService['device']) {
5881
+ console.log('Destroying Twilio device...');
5881
5882
  this.twilioService['device'].disconnectAll();
5882
5883
  this.twilioService['device'].destroy();
5883
5884
  }