@vgroup/dialbox 0.4.71 → 0.4.72
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 +13 -13
- package/esm2020/lib/dialbox.component.mjs +1 -2
- package/fesm2015/vgroup-dialbox.mjs +12 -13
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +12 -13
- package/fesm2020/vgroup-dialbox.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1926,18 +1926,18 @@ class CallProgressComponent {
|
|
|
1926
1926
|
time: this.getTimeDifference(res.joinedAt || new Date().toUTCString()),
|
|
1927
1927
|
};
|
|
1928
1928
|
}
|
|
1929
|
-
if
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
|
|
1933
|
-
|
|
1934
|
-
|
|
1935
|
-
|
|
1936
|
-
|
|
1937
|
-
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
}
|
|
1929
|
+
// if(this.currentCallList.length == 1 && this.currentCallList[0].isHold){
|
|
1930
|
+
// setTimeout(() => {
|
|
1931
|
+
// if(this.currentCallList.length == 1 && this.currentCallList[0].isHold) {
|
|
1932
|
+
// this.onholdOrUnholdParticipant({
|
|
1933
|
+
// participantId: [this.currentCallList[0].participantId],
|
|
1934
|
+
// conferenceId: this.conferenceId,
|
|
1935
|
+
// hold: false,
|
|
1936
|
+
// conference: this.currentCallList[0].isConference
|
|
1937
|
+
// });
|
|
1938
|
+
// }
|
|
1939
|
+
// }, 1000);
|
|
1940
|
+
// }
|
|
1941
1941
|
}
|
|
1942
1942
|
else {
|
|
1943
1943
|
this.currentCallList.push({
|
|
@@ -4382,7 +4382,6 @@ class DialboxComponent {
|
|
|
4382
4382
|
const res = await this.twilioService.getToNumber(dialedNumber, ipAddress.address.countryCode).toPromise();
|
|
4383
4383
|
if (res.status == 200) {
|
|
4384
4384
|
console.log(res, 'getToNumber');
|
|
4385
|
-
this.toastTimeout = res.timeInterval * 1000;
|
|
4386
4385
|
await this.showNumberToast(res);
|
|
4387
4386
|
}
|
|
4388
4387
|
}
|