@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.
@@ -3352,6 +3352,7 @@ class DialboxComponent {
3352
3352
  // Let the library decide to auto-open on incoming call without host wiring
3353
3353
  this.autoOpenOnIncoming = true;
3354
3354
  this.isIncomingCallnotification = false;
3355
+ this.notificationCallList = [];
3355
3356
  this.conferenceCallInfo = {
3356
3357
  "createdAt": "Tue Dec 30 07:53:51 UTC 2025",
3357
3358
  "conferenceName": "conf_6953850f1522800c4f3cc715",
@@ -3609,7 +3610,7 @@ class DialboxComponent {
3609
3610
  });
3610
3611
  });
3611
3612
  if (parentCall.length > 0) {
3612
- this.notificationCallList = this.notificationCallList.filter((item) => !parentCall.includes(item));
3613
+ this.notificationCallList = this.notificationCallList.filter((item) => !parentCall.includes(item.participantId));
3613
3614
  this.incomingCallsList = [...this.incomingCallsList, this.notificationCallList];
3614
3615
  }
3615
3616
  else {
@@ -3805,7 +3806,6 @@ class DialboxComponent {
3805
3806
  }
3806
3807
  ngOnChanges(changes) {
3807
3808
  if (changes['incomingCallnotification']) {
3808
- console.log('incomingCallnotification', changes['incomingCallnotification'].currentValue);
3809
3809
  this.isIncomingCallnotification = true;
3810
3810
  // let payload = {
3811
3811
  // recordId: this.incomingCallnotification.data.data.participantId,
@@ -3829,6 +3829,7 @@ class DialboxComponent {
3829
3829
  if (this.incomingCallnotification.data.data?.participantId) {
3830
3830
  this.isCallInProgress = true;
3831
3831
  }
3832
+ console.log('notificationCallList', this.notificationCallList);
3832
3833
  // this.extensionService.setIncomingCallStatus(payload).subscribe((res: any) => {
3833
3834
  // console.log(res)
3834
3835
  // })