@vgroup/dialbox 0.6.2-9.3 → 0.6.2-9.4
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 +4 -4
- package/fesm2015/vgroup-dialbox.mjs +3 -3
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +3 -3
- package/fesm2020/vgroup-dialbox.mjs.map +1 -1
- package/lib/components/call-progress/call-progress.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -2054,7 +2054,7 @@ class CallProgressComponent {
|
|
|
2054
2054
|
this.filteredList = [];
|
|
2055
2055
|
});
|
|
2056
2056
|
}
|
|
2057
|
-
async startCall(callData) {
|
|
2057
|
+
async startCall(callData, isNewConference) {
|
|
2058
2058
|
console.log(callData, 'callData');
|
|
2059
2059
|
try {
|
|
2060
2060
|
this.showRingAnimation = true;
|
|
@@ -2109,7 +2109,7 @@ class CallProgressComponent {
|
|
|
2109
2109
|
from: callData?.from,
|
|
2110
2110
|
route: "OUTGOING",
|
|
2111
2111
|
participantNumber: callData?.phone,
|
|
2112
|
-
conferenceId:
|
|
2112
|
+
conferenceId: response?.callauth?.id,
|
|
2113
2113
|
userId: this.userId || localStorage.getItem('userId'),
|
|
2114
2114
|
proxy: '',
|
|
2115
2115
|
countrycode: '',
|
|
@@ -2776,7 +2776,7 @@ class CallProgressComponent {
|
|
|
2776
2776
|
});
|
|
2777
2777
|
}
|
|
2778
2778
|
// }
|
|
2779
|
-
this.startCall(callData);
|
|
2779
|
+
this.startCall(callData, isNewConference);
|
|
2780
2780
|
}
|
|
2781
2781
|
else {
|
|
2782
2782
|
this.callContact(number, true);
|