@vgroup/dialbox 0.2.93 → 0.2.95

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.
@@ -1632,7 +1632,7 @@ class TwilioService {
1632
1632
  return this.http.get(environment.apiUrl + '/utilities/softphone/check/countryCode/' + dialledNo, httpOptions);
1633
1633
  }
1634
1634
  connect(data) {
1635
- this.device.connect({ conferenceName: 'my-conference-room' });
1635
+ this.device.connect({ conferenceName: this.conferenceName });
1636
1636
  }
1637
1637
  }
1638
1638
  TwilioService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TwilioService, deps: [{ token: i1.HttpClient }, { token: ExtensionService }, { token: NotificationService }], target: i0.ɵɵFactoryTarget.Injectable });
@@ -2470,6 +2470,7 @@ class CallProgressComponent {
2470
2470
  this.heldCall = this.call;
2471
2471
  this.isCallOnHold = true;
2472
2472
  this.heldCall.mute(true);
2473
+ this.heldCall['parameters']['caller_name'] = { ...this.callData };
2473
2474
  // Close contacts panel and show ring animation
2474
2475
  this.showContactsPanel = false;
2475
2476
  this.showRingAnimation = true;
@@ -3094,6 +3095,7 @@ class DialboxComponent {
3094
3095
  // const data = JSON.parse(incomingCallData.data);
3095
3096
  console.log("WS Event Received:", incomingCallData);
3096
3097
  console.log("WS Event Received:", incomingCallData.data);
3098
+ this.twilioService.conferenceName = incomingCallData.conferenceName;
3097
3099
  if (incomingCallData.participants[0]) {
3098
3100
  // this.showIncomingCallPopup(incoming, data/
3099
3101
  this.isCallInProgress = true;