@vgroup/dialbox 0.2.94 → 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.
- package/esm2020/lib/dialbox.component.mjs +2 -1
- package/esm2020/lib/service/twilio.service.mjs +2 -2
- package/fesm2015/vgroup-dialbox.mjs +2 -1
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +2 -1
- package/fesm2020/vgroup-dialbox.mjs.map +1 -1
- package/lib/service/twilio.service.d.ts +2 -1
- package/package.json +1 -1
|
@@ -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:
|
|
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 });
|
|
@@ -3095,6 +3095,7 @@ class DialboxComponent {
|
|
|
3095
3095
|
// const data = JSON.parse(incomingCallData.data);
|
|
3096
3096
|
console.log("WS Event Received:", incomingCallData);
|
|
3097
3097
|
console.log("WS Event Received:", incomingCallData.data);
|
|
3098
|
+
this.twilioService.conferenceName = incomingCallData.conferenceName;
|
|
3098
3099
|
if (incomingCallData.participants[0]) {
|
|
3099
3100
|
// this.showIncomingCallPopup(incoming, data/
|
|
3100
3101
|
this.isCallInProgress = true;
|