@vgroup/dialbox 0.4.171 → 0.4.173

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.
@@ -1865,6 +1865,7 @@ class CallProgressComponent {
1865
1865
  participantId: [this.currentCall?.participantId],
1866
1866
  conferenceId: this.currentCall?.conferenceId,
1867
1867
  hold: false,
1868
+ mute: this.currentCall?.mute || false,
1868
1869
  conference: this.currentCall?.isConference
1869
1870
  });
1870
1871
  // this.currentCallList[0].isHold = false;
@@ -1876,7 +1877,8 @@ class CallProgressComponent {
1876
1877
  participantId: conferenceCalllist.map((item) => item.participantId),
1877
1878
  conferenceId: conferenceCalllist[0]?.conferenceId,
1878
1879
  hold: false,
1879
- conference: this.currentCall?.isConference
1880
+ mute: this.currentCall?.mute || false,
1881
+ conference: this.currentCall?.isConference || false
1880
1882
  });
1881
1883
  this.isConferenceCallHold = false;
1882
1884
  }
@@ -2167,7 +2169,8 @@ class CallProgressComponent {
2167
2169
  participantId: [c.participantId],
2168
2170
  conferenceId: c?.conferenceId,
2169
2171
  hold: !c.hold,
2170
- conference: c.isConference
2172
+ mute: c?.mute || false,
2173
+ conference: c.isConference || false
2171
2174
  });
2172
2175
  c.hold = !c.hold;
2173
2176
  this.cdr.detectChanges();
@@ -2375,7 +2378,8 @@ class CallProgressComponent {
2375
2378
  participantId: [this.currentCall?.participantId],
2376
2379
  conferenceId: this.currentCall?.conferenceId,
2377
2380
  hold: false,
2378
- isConference: this.currentCall?.isConference
2381
+ mute: this.currentCall?.mute || false,
2382
+ isConference: this.currentCall?.isConference || false
2379
2383
  });
2380
2384
  }
2381
2385
  else {
@@ -2495,7 +2499,8 @@ class CallProgressComponent {
2495
2499
  participantId: [res.participantId],
2496
2500
  conferenceId: res?.conferenceId,
2497
2501
  hold: true,
2498
- conference: res.isConference
2502
+ mute: res?.mute || false,
2503
+ conference: res.isConference || false
2499
2504
  });
2500
2505
  }
2501
2506
  });
@@ -2508,9 +2513,10 @@ class CallProgressComponent {
2508
2513
  // }
2509
2514
  await this.onholdOrUnholdParticipant({
2510
2515
  participantId: this.currentCall?.isIncomingCall ? [this.currentCall?.id] : [this.currentCall?.participantId],
2511
- conferenceId: data?.conferenceId,
2516
+ conferenceId: this.currentCall?.conferenceId,
2512
2517
  hold: true,
2513
- conference: this.currentCall?.isConference
2518
+ mute: this.currentCall?.mute || false,
2519
+ conference: this.currentCall?.isConference || false
2514
2520
  });
2515
2521
  // data.isHold = false;
2516
2522
  }
@@ -2569,6 +2575,7 @@ class CallProgressComponent {
2569
2575
  participantId: [data?.participantId],
2570
2576
  conferenceId: this.currentCall?.conferenceId,
2571
2577
  hold: false,
2578
+ mute: this.currentCall?.mute || false,
2572
2579
  conference: true
2573
2580
  });
2574
2581
  this.callData = {
@@ -2601,7 +2608,8 @@ class CallProgressComponent {
2601
2608
  participantId: [c?.participantId],
2602
2609
  conferenceId: c.conferenceId,
2603
2610
  hold: true,
2604
- conference: c?.isConference
2611
+ mute: c?.mute || false,
2612
+ conference: c?.isConference || false
2605
2613
  });
2606
2614
  }
2607
2615
  });
@@ -2756,7 +2764,8 @@ class CallProgressComponent {
2756
2764
  participantId: [c?.participantId],
2757
2765
  conferenceId: c.conferenceId,
2758
2766
  hold: true,
2759
- conference: c?.isConference
2767
+ mute: c?.mute || false,
2768
+ conference: c?.isConference || false
2760
2769
  });
2761
2770
  }
2762
2771
  else if (callInfo?.isHold && c?.participantId === callInfo?.participantId) {
@@ -2765,7 +2774,8 @@ class CallProgressComponent {
2765
2774
  participantId: [c?.participantId],
2766
2775
  conferenceId: c.conferenceId,
2767
2776
  hold: false,
2768
- conference: c?.isConference
2777
+ mute: c?.mute || false,
2778
+ conference: c?.isConference || false
2769
2779
  });
2770
2780
  // this.currentCall = c;
2771
2781
  }
@@ -2781,7 +2791,8 @@ class CallProgressComponent {
2781
2791
  participantId: [c?.participantId],
2782
2792
  conferenceId: c.conferenceId,
2783
2793
  hold: false,
2784
- conference: c?.isConference
2794
+ mute: c?.mute || false,
2795
+ conference: c?.isConference || false
2785
2796
  });
2786
2797
  }
2787
2798
  else {
@@ -2790,7 +2801,8 @@ class CallProgressComponent {
2790
2801
  participantId: [c?.participantId],
2791
2802
  conferenceId: c.conferenceId,
2792
2803
  hold: true,
2793
- conference: c?.isConference
2804
+ mute: c?.mute || false,
2805
+ conference: c?.isConference || false
2794
2806
  });
2795
2807
  }
2796
2808
  });
@@ -2804,7 +2816,8 @@ class CallProgressComponent {
2804
2816
  participantId: [c?.participantId],
2805
2817
  conferenceId: c.conferenceId,
2806
2818
  hold: true,
2807
- conference: c?.isConference
2819
+ mute: c?.mute || false,
2820
+ conference: c?.isConference || false
2808
2821
  });
2809
2822
  }
2810
2823
  else if (callInfo?.isHold && c?.participantId === callInfo?.participantId) {
@@ -2813,7 +2826,8 @@ class CallProgressComponent {
2813
2826
  participantId: [c?.participantId],
2814
2827
  conferenceId: c.conferenceId,
2815
2828
  hold: false,
2816
- conference: c?.isConference
2829
+ mute: c?.mute || false,
2830
+ conference: c?.isConference || false
2817
2831
  });
2818
2832
  // this.currentCall = c;
2819
2833
  }
@@ -2867,6 +2881,7 @@ class CallProgressComponent {
2867
2881
  participantId: [c?.participantId],
2868
2882
  conferenceId: c.conferenceId,
2869
2883
  hold: false,
2884
+ mute: c?.mute || false,
2870
2885
  conference: true
2871
2886
  });
2872
2887
  c.isConference = true;