@vgroup/dialbox 0.7.65 → 0.7.67

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",
@@ -1524,7 +1524,7 @@ class TwilioService {
1524
1524
  if (this.tokenInitialization$) {
1525
1525
  return this.tokenInitialization$;
1526
1526
  }
1527
- this.tokenInitialization$ = this.extensionService.getIncomingCallToken(this.deviceId).pipe(tap((data) => {
1527
+ this.tokenInitialization$ = this.extensionService.getIncomingCallToken(this.deviceId || localStorage.getItem('deviceId')).pipe(tap((data) => {
1528
1528
  this.incomingCallToken = data.token;
1529
1529
  localStorage.setItem('in-token', data.token);
1530
1530
  this.tokenInitialized = true;
@@ -1667,7 +1667,7 @@ class TwilioService {
1667
1667
  return;
1668
1668
  }
1669
1669
  this.tokenRefreshInProgress = true;
1670
- this.extensionService.getIncomingCallToken(this.deviceId).subscribe({
1670
+ this.extensionService.getIncomingCallToken(this.deviceId || localStorage.getItem('deviceId')).subscribe({
1671
1671
  next: (data) => {
1672
1672
  this.tokenRefreshInProgress = false;
1673
1673
  this.incomingCallToken = data.token;
@@ -4681,7 +4681,7 @@ class DialboxComponent {
4681
4681
  }
4682
4682
  this.isInitialized = true;
4683
4683
  // Initialize Twilio service
4684
- this.twilioService.initializeTwilioDevice(this.deviceId || localStorage.getItem('deviceId'));
4684
+ this.twilioService.initializeTwilioDevice(localStorage.getItem('deviceId'));
4685
4685
  }
4686
4686
  }
4687
4687
  ngOnInit() {
@@ -5051,7 +5051,7 @@ class DialboxComponent {
5051
5051
  if (this.twilioService.incomingCallToken != this.updatedTwilioToken) {
5052
5052
  this.twilioService.incomingCallToken = this.updatedTwilioToken;
5053
5053
  this.twilioService.tokenInitialized = true;
5054
- this.twilioService.initializeTwilioDevice(this.deviceId || localStorage.getItem('deviceId'));
5054
+ this.twilioService.initializeTwilioDevice(localStorage.getItem('deviceId'));
5055
5055
  }
5056
5056
  }
5057
5057
  if (changes['userId']?.currentValue && this.userId) {