@vgroup/dialbox 0.6.69 → 0.6.71
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.
|
@@ -2036,6 +2036,7 @@ class CallProgressComponent {
|
|
|
2036
2036
|
conferenceId: holdCallInfo?.conferenceId,
|
|
2037
2037
|
hold: false,
|
|
2038
2038
|
mute: holdCallInfo?.mute || false,
|
|
2039
|
+
conference: holdCallInfo?.isConference || false
|
|
2039
2040
|
});
|
|
2040
2041
|
this.getAllParticipants(holdCallInfo?.conferenceId);
|
|
2041
2042
|
this.isUnholdConferenceCall = false;
|
|
@@ -2106,7 +2107,7 @@ class CallProgressComponent {
|
|
|
2106
2107
|
this.stopTimer();
|
|
2107
2108
|
this.cdr.detectChanges();
|
|
2108
2109
|
this.endCallEvent.emit();
|
|
2109
|
-
});
|
|
2110
|
+
}, 500);
|
|
2110
2111
|
}
|
|
2111
2112
|
;
|
|
2112
2113
|
}
|
|
@@ -2330,6 +2331,7 @@ class CallProgressComponent {
|
|
|
2330
2331
|
conferenceId: c?.conferenceId,
|
|
2331
2332
|
hold: !c.isHold,
|
|
2332
2333
|
mute: c?.mute || false,
|
|
2334
|
+
conference: c.isConference || false
|
|
2333
2335
|
});
|
|
2334
2336
|
c.isHold = !c.isHold;
|
|
2335
2337
|
this.cdr.detectChanges();
|
|
@@ -2599,6 +2601,7 @@ class CallProgressComponent {
|
|
|
2599
2601
|
conferenceId: ourNumberInfo?.conferenceId,
|
|
2600
2602
|
hold: true,
|
|
2601
2603
|
mute: ourNumberInfo?.mute || false,
|
|
2604
|
+
conference: ourNumberInfo.isConference || false
|
|
2602
2605
|
});
|
|
2603
2606
|
this.isConferenceCallHold = true;
|
|
2604
2607
|
}
|
|
@@ -2787,6 +2790,7 @@ class CallProgressComponent {
|
|
|
2787
2790
|
conferenceId: ourNumberInfo?.conferenceId,
|
|
2788
2791
|
hold: true,
|
|
2789
2792
|
mute: ourNumberInfo?.mute || false,
|
|
2793
|
+
conference: ourNumberInfo?.isConference || false
|
|
2790
2794
|
});
|
|
2791
2795
|
this.isConferenceCallHold = true;
|
|
2792
2796
|
this.onAddNewCall(callData, true);
|
|
@@ -2913,6 +2917,7 @@ class CallProgressComponent {
|
|
|
2913
2917
|
conferenceId: participantInfo?.conferenceId,
|
|
2914
2918
|
hold: false,
|
|
2915
2919
|
mute: participantInfo?.mute || false,
|
|
2920
|
+
conference: participantInfo?.isConference || false
|
|
2916
2921
|
});
|
|
2917
2922
|
// this.isConferenceCallHold = true;
|
|
2918
2923
|
}
|
|
@@ -2925,6 +2930,7 @@ class CallProgressComponent {
|
|
|
2925
2930
|
conferenceId: participantInfo?.conferenceId,
|
|
2926
2931
|
hold: true,
|
|
2927
2932
|
mute: participantInfo?.mute || false,
|
|
2933
|
+
conference: participantInfo?.isConference || false
|
|
2928
2934
|
});
|
|
2929
2935
|
// this.isConferenceCallHold = true;
|
|
2930
2936
|
}
|
|
@@ -2935,6 +2941,7 @@ class CallProgressComponent {
|
|
|
2935
2941
|
conferenceId: c.conferenceId,
|
|
2936
2942
|
hold: true,
|
|
2937
2943
|
mute: c?.mute || false,
|
|
2944
|
+
conference: c?.isConference || false
|
|
2938
2945
|
});
|
|
2939
2946
|
// this.isConferenceCallHold = true;
|
|
2940
2947
|
}
|