@vgroup/dialbox 0.3.41 → 0.3.43
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,10 @@ class TwilioService {
|
|
|
1632
1632
|
return this.http.get(environment.apiUrl + '/utilities/softphone/check/countryCode/' + dialledNo, httpOptions);
|
|
1633
1633
|
}
|
|
1634
1634
|
addIncomingParticipant(participantId, conferenceId) {
|
|
1635
|
-
|
|
1635
|
+
const httpOptions = {
|
|
1636
|
+
headers: new HttpHeaders({ 'Content-Type': 'application/json', 'Auth-Key': "Bearer " + localStorage.getItem('ext_token') }),
|
|
1637
|
+
};
|
|
1638
|
+
return this.http.get(`${environment.apiUrl}/utilities/ext/add/incoming/participant/${participantId}/${conferenceId}`, httpOptions);
|
|
1636
1639
|
}
|
|
1637
1640
|
connect(data) {
|
|
1638
1641
|
return this.device.connect({
|