@vgroup/dialbox 0.7.2 → 0.7.4
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.
- package/esm2020/lib/components/call-progress/call-progress.component.mjs +24 -23
- package/esm2020/lib/service/twilio.service.mjs +13 -1
- package/fesm2015/vgroup-dialbox.mjs +38 -27
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +35 -22
- package/fesm2020/vgroup-dialbox.mjs.map +1 -1
- package/lib/components/call-progress/call-progress.component.d.ts +4 -2
- package/package.json +1 -1
|
@@ -34,6 +34,8 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
34
34
|
keypadVal: any[];
|
|
35
35
|
callInput: string;
|
|
36
36
|
isMute: boolean;
|
|
37
|
+
pendingMuteUpdate: boolean;
|
|
38
|
+
intendedMuteState: boolean | null;
|
|
37
39
|
disbaleEndCallBtn: boolean;
|
|
38
40
|
showClearBtn: boolean;
|
|
39
41
|
isCollops: boolean;
|
|
@@ -113,13 +115,14 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
113
115
|
private acceptedCallList;
|
|
114
116
|
isHoldBtnDisable: boolean;
|
|
115
117
|
C2ConfoList: any;
|
|
118
|
+
selectedConfName: any;
|
|
116
119
|
constructor(extensionService: ExtensionService, cdr: ChangeDetectorRef, twilioService: TwilioService, ipService: IpAddressService, incomeingCallSocketService: IncomeingCallSocketService);
|
|
117
120
|
ngOnInit(): void;
|
|
118
121
|
ngOnChanges(changes: SimpleChanges): void;
|
|
119
122
|
rejoinHost(callInfo: any): Promise<void>;
|
|
120
123
|
mapUserInfo(participantInfo: any, callerInfo: any): any;
|
|
121
124
|
updatedParticipantList(participant: any): void;
|
|
122
|
-
participantListIndo(participants
|
|
125
|
+
participantListIndo(participants?: any): Promise<void>;
|
|
123
126
|
showCallingToast(number: string): void;
|
|
124
127
|
getStatus(res: any): boolean;
|
|
125
128
|
GetContactsList(): void;
|
|
@@ -127,7 +130,6 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
127
130
|
startCall(callData: any, isNewConference?: boolean): Promise<any>;
|
|
128
131
|
onMuteUser(c: any): Promise<void>;
|
|
129
132
|
onHoldCall(c: any): Promise<void>;
|
|
130
|
-
onEndIncomingCall(): Promise<void>;
|
|
131
133
|
onEndCall(c: any, isAllCallEnd?: boolean, isContect?: boolean): Promise<boolean>;
|
|
132
134
|
private initiateCall;
|
|
133
135
|
onholdOrUnholdParticipant(payload: any): Promise<[] | undefined>;
|