@vgroup/dialbox 0.3.99 → 0.4.1
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/components/call-progress/call-progress.component.mjs +2 -2
- package/esm2020/lib/service/twilio.service.mjs +2 -2
- package/fesm2015/vgroup-dialbox.mjs +2 -2
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +2 -2
- package/fesm2020/vgroup-dialbox.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1643,7 +1643,7 @@ class TwilioService {
|
|
|
1643
1643
|
const httpOptions = {
|
|
1644
1644
|
headers: new HttpHeaders({ 'Content-Type': 'application/json', 'Auth-Key': "Bearer " + localStorage.getItem('ext_token') }),
|
|
1645
1645
|
};
|
|
1646
|
-
return this.http.get(`${environment.apiUrl}/utilities/ext/add/incoming/participant/${participantId}/${conferenceId}
|
|
1646
|
+
return this.http.get(`${environment.apiUrl}/utilities/ext/add/incoming/participant/${participantId}/${conferenceId}`, httpOptions);
|
|
1647
1647
|
}
|
|
1648
1648
|
connect(data) {
|
|
1649
1649
|
return this.device.connect({
|
|
@@ -2342,7 +2342,7 @@ class CallProgressComponent {
|
|
|
2342
2342
|
}
|
|
2343
2343
|
let incomingCallData = this.currentCallList.filter((item) => item.isIncomingCall && item.isAcceptCall);
|
|
2344
2344
|
if (incomingCallData.length > 0) {
|
|
2345
|
-
this.call = await this.twilioService.connect('');
|
|
2345
|
+
// this.call = await this.twilioService.connect('');
|
|
2346
2346
|
await this.twilioService.addIncomingParticipant(data?.id, this.twilioService.conferenceCallInfo.conferenceId).subscribe((data) => {
|
|
2347
2347
|
console.log(data, 'bhhhhhhhhhhhhhhhhhhh');
|
|
2348
2348
|
});
|