@vgroup/dialbox 0.6.70 → 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.
|
@@ -1980,6 +1980,7 @@ class CallProgressComponent {
|
|
|
1980
1980
|
conferenceId: holdCallInfo === null || holdCallInfo === void 0 ? void 0 : holdCallInfo.conferenceId,
|
|
1981
1981
|
hold: false,
|
|
1982
1982
|
mute: (holdCallInfo === null || holdCallInfo === void 0 ? void 0 : holdCallInfo.mute) || false,
|
|
1983
|
+
conference: (holdCallInfo === null || holdCallInfo === void 0 ? void 0 : holdCallInfo.isConference) || false
|
|
1983
1984
|
});
|
|
1984
1985
|
this.getAllParticipants(holdCallInfo === null || holdCallInfo === void 0 ? void 0 : holdCallInfo.conferenceId);
|
|
1985
1986
|
this.isUnholdConferenceCall = false;
|
|
@@ -2047,7 +2048,7 @@ class CallProgressComponent {
|
|
|
2047
2048
|
this.stopTimer();
|
|
2048
2049
|
this.cdr.detectChanges();
|
|
2049
2050
|
this.endCallEvent.emit();
|
|
2050
|
-
});
|
|
2051
|
+
}, 500);
|
|
2051
2052
|
}
|
|
2052
2053
|
;
|
|
2053
2054
|
}
|
|
@@ -2281,6 +2282,7 @@ class CallProgressComponent {
|
|
|
2281
2282
|
conferenceId: c === null || c === void 0 ? void 0 : c.conferenceId,
|
|
2282
2283
|
hold: !c.isHold,
|
|
2283
2284
|
mute: (c === null || c === void 0 ? void 0 : c.mute) || false,
|
|
2285
|
+
conference: c.isConference || false
|
|
2284
2286
|
});
|
|
2285
2287
|
c.isHold = !c.isHold;
|
|
2286
2288
|
this.cdr.detectChanges();
|
|
@@ -2588,6 +2590,7 @@ class CallProgressComponent {
|
|
|
2588
2590
|
conferenceId: ourNumberInfo === null || ourNumberInfo === void 0 ? void 0 : ourNumberInfo.conferenceId,
|
|
2589
2591
|
hold: true,
|
|
2590
2592
|
mute: (ourNumberInfo === null || ourNumberInfo === void 0 ? void 0 : ourNumberInfo.mute) || false,
|
|
2593
|
+
conference: ourNumberInfo.isConference || false
|
|
2591
2594
|
});
|
|
2592
2595
|
this.isConferenceCallHold = true;
|
|
2593
2596
|
}
|
|
@@ -2784,6 +2787,7 @@ class CallProgressComponent {
|
|
|
2784
2787
|
conferenceId: ourNumberInfo === null || ourNumberInfo === void 0 ? void 0 : ourNumberInfo.conferenceId,
|
|
2785
2788
|
hold: true,
|
|
2786
2789
|
mute: (ourNumberInfo === null || ourNumberInfo === void 0 ? void 0 : ourNumberInfo.mute) || false,
|
|
2790
|
+
conference: (ourNumberInfo === null || ourNumberInfo === void 0 ? void 0 : ourNumberInfo.isConference) || false
|
|
2787
2791
|
});
|
|
2788
2792
|
this.isConferenceCallHold = true;
|
|
2789
2793
|
this.onAddNewCall(callData, true);
|
|
@@ -2915,6 +2919,7 @@ class CallProgressComponent {
|
|
|
2915
2919
|
conferenceId: participantInfo === null || participantInfo === void 0 ? void 0 : participantInfo.conferenceId,
|
|
2916
2920
|
hold: false,
|
|
2917
2921
|
mute: (participantInfo === null || participantInfo === void 0 ? void 0 : participantInfo.mute) || false,
|
|
2922
|
+
conference: (participantInfo === null || participantInfo === void 0 ? void 0 : participantInfo.isConference) || false
|
|
2918
2923
|
});
|
|
2919
2924
|
// this.isConferenceCallHold = true;
|
|
2920
2925
|
}
|
|
@@ -2927,6 +2932,7 @@ class CallProgressComponent {
|
|
|
2927
2932
|
conferenceId: participantInfo === null || participantInfo === void 0 ? void 0 : participantInfo.conferenceId,
|
|
2928
2933
|
hold: true,
|
|
2929
2934
|
mute: (participantInfo === null || participantInfo === void 0 ? void 0 : participantInfo.mute) || false,
|
|
2935
|
+
conference: (participantInfo === null || participantInfo === void 0 ? void 0 : participantInfo.isConference) || false
|
|
2930
2936
|
});
|
|
2931
2937
|
// this.isConferenceCallHold = true;
|
|
2932
2938
|
}
|
|
@@ -2937,6 +2943,7 @@ class CallProgressComponent {
|
|
|
2937
2943
|
conferenceId: c.conferenceId,
|
|
2938
2944
|
hold: true,
|
|
2939
2945
|
mute: (c === null || c === void 0 ? void 0 : c.mute) || false,
|
|
2946
|
+
conference: (c === null || c === void 0 ? void 0 : c.isConference) || false
|
|
2940
2947
|
});
|
|
2941
2948
|
// this.isConferenceCallHold = true;
|
|
2942
2949
|
}
|