@vgroup/dialbox 0.7.78 → 0.7.80

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",
66
- production: false,
65
+ abb: "p",
66
+ production: true,
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://app-phone.contexttocall.com/',
69
+ apiUrl: 'https://phone-api.contexttocall.com/softphone/',
70
+ websocketUrl: 'wss://phone-api.contexttocall.com/softphone/',
71
71
  captchaKey: "6LfpOmEaAAAAAGsI6JXlMzOl3b7rW4YmYXFDjldD",
72
- stripePublishableKey: "pk_test_51NbMVaA3guus6fhlTuCV5ycFTIJmwgN38dDUf9pNPfM319x5CkLbV6EbTQaZiNOrRsfR16RWLE8hQmR0eZFTBqTy00Wlsug4qS",
72
+ stripePublishableKey: "pk_live_51OV9NYDjRTFWP7oMLrrgaWxCUp4nzeuwdDCCPjvwH7z6oDYUTierhavGMxBa411U0O27Yn24te7Hb43WFDwg2U7N00qbQUzTi6",
73
73
  sessionTimeout: 15,
74
74
  deviceType: "web",
75
- appVersion: "2.3",
76
- channelId: '61481b12e138eb7dc3007579',
75
+ appVersion: "3.2",
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: '67783949be93ab03faf8eea6',
79
+ c2c_point_url: 'https://bit.ly/3blWnPv',
80
+ c2c_call_label_id: 'Bn78kjz6sSottXSHgqMt',
81
+ c2c_email_label_id: 'UkNer4LgzXCfFlh8u909',
82
82
  radarAPIKey: 'prj_live_sk_569b6f639edde6120a26f703511c61aaecd3f7ef',
83
83
  firebase: {
84
84
  apiKey: "AIzaSyCA8LSPrqlDq_thk26LhBQexAQeY6pkU5Y",
@@ -90,10 +90,7 @@ const environment = {
90
90
  measurementId: "G-NGXTSV9SH3",
91
91
  vapidKey: "BD6EgcQgbZTjOQfleG3YlEc0_SajB03prqTdDy-qGJkxTxezbq-A_qtuXE1l3yT47o8hnTAbTKBcH15D2AJB2To"
92
92
  },
93
- perspectiveApiKey: 'AIzaSyClf32lvLH4QOy-vOnzLzwSNntKIgapH8s',
94
- keycloakURL: 'https://test-keycloak.vgroupinc.com/',
95
- keycloakRealm: 'vgroup-test',
96
- keycloakClientId: 'c2c-softphone-app'
93
+ perspectiveApiKey: 'AIzaSyClf32lvLH4QOy-vOnzLzwSNntKIgapH8s'
97
94
  };
98
95
 
99
96
  class IpAddressService {
@@ -3586,7 +3583,7 @@ class CallProgressComponent {
3586
3583
  else if (this.missCallInfo?.data?.data?.recordId == data?.id && !callToAccept.parameters?.CallSid) {
3587
3584
  clearInterval(intervalId);
3588
3585
  const sid = callToAccept.parameters?.CallSid;
3589
- this.isConnectingIncomingCallId = '';
3586
+ this.twilioService.isConnectingIncomingCallId.next('');
3590
3587
  this.isConnectingIncomingCallId = '';
3591
3588
  this.acceptedCallList = this.acceptedCallList.filter(c => c.callSid !== sid);
3592
3589
  this.twilioService.acceptedCallList = this.twilioService.acceptedCallList.filter((c) => c.parameters?.CallSid !== sid);
@@ -5171,7 +5168,7 @@ class DialboxComponent {
5171
5168
  if (this.twilioService.incomingCallToken != this.updatedTwilioToken) {
5172
5169
  this.twilioService.incomingCallToken = this.updatedTwilioToken;
5173
5170
  this.twilioService.tokenInitialized = true;
5174
- this.twilioService.initializeTwilioDevice(this.deviceId || localStorage.getItem('deviceId'));
5171
+ this.twilioService.initializeTwilioDevice(localStorage.getItem('deviceId'));
5175
5172
  }
5176
5173
  }
5177
5174
  if (changes['userId']?.currentValue && this.userId) {
@@ -5878,6 +5875,7 @@ class DialboxComponent {
5878
5875
  this.incomingCallsList = [];
5879
5876
  // Clean up Twilio device when component is destroyed
5880
5877
  if (this.twilioService['device']) {
5878
+ console.log('Destroying Twilio device...');
5881
5879
  this.twilioService['device'].disconnectAll();
5882
5880
  this.twilioService['device'].destroy();
5883
5881
  }