@vgroup/dialbox 0.4.164 → 0.4.166
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.
|
@@ -3312,6 +3312,7 @@ class DialboxComponent {
|
|
|
3312
3312
|
// Let the library decide to auto-open on incoming call without host wiring
|
|
3313
3313
|
this.autoOpenOnIncoming = true;
|
|
3314
3314
|
this.isIncomingCallnotification = false;
|
|
3315
|
+
this.notificationCallList = [];
|
|
3315
3316
|
this.conferenceCallInfo = {
|
|
3316
3317
|
"createdAt": "Tue Dec 30 07:53:51 UTC 2025",
|
|
3317
3318
|
"conferenceName": "conf_6953850f1522800c4f3cc715",
|
|
@@ -3569,7 +3570,7 @@ class DialboxComponent {
|
|
|
3569
3570
|
});
|
|
3570
3571
|
});
|
|
3571
3572
|
if (parentCall.length > 0) {
|
|
3572
|
-
this.notificationCallList = this.notificationCallList.filter((item) => !parentCall.includes(item));
|
|
3573
|
+
this.notificationCallList = this.notificationCallList.filter((item) => !parentCall.includes(item.participantId));
|
|
3573
3574
|
this.incomingCallsList = [...this.incomingCallsList, this.notificationCallList];
|
|
3574
3575
|
}
|
|
3575
3576
|
else {
|
|
@@ -3766,7 +3767,6 @@ class DialboxComponent {
|
|
|
3766
3767
|
ngOnChanges(changes) {
|
|
3767
3768
|
var _a, _b, _c, _d, _e, _f;
|
|
3768
3769
|
if (changes['incomingCallnotification']) {
|
|
3769
|
-
console.log('incomingCallnotification', changes['incomingCallnotification'].currentValue);
|
|
3770
3770
|
this.isIncomingCallnotification = true;
|
|
3771
3771
|
// let payload = {
|
|
3772
3772
|
// recordId: this.incomingCallnotification.data.data.participantId,
|
|
@@ -3790,6 +3790,7 @@ class DialboxComponent {
|
|
|
3790
3790
|
if ((_f = this.incomingCallnotification.data.data) === null || _f === void 0 ? void 0 : _f.participantId) {
|
|
3791
3791
|
this.isCallInProgress = true;
|
|
3792
3792
|
}
|
|
3793
|
+
console.log('notificationCallList', this.notificationCallList);
|
|
3793
3794
|
// this.extensionService.setIncomingCallStatus(payload).subscribe((res: any) => {
|
|
3794
3795
|
// console.log(res)
|
|
3795
3796
|
// })
|