@vgroup/dialbox 0.7.3 → 0.7.5
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 +54 -39
- package/esm2020/lib/dialbox.component.mjs +23 -8
- package/esm2020/lib/service/twilio.service.mjs +13 -1
- package/fesm2015/vgroup-dialbox.mjs +90 -51
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +87 -45
- package/fesm2020/vgroup-dialbox.mjs.map +1 -1
- package/lib/components/call-progress/call-progress.component.d.ts +4 -3
- package/lib/dialbox.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -17,6 +17,7 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
17
17
|
newIncomingCallData?: Call;
|
|
18
18
|
newIncomingCallsList: any;
|
|
19
19
|
callerIdList: any;
|
|
20
|
+
newCallConference: any;
|
|
20
21
|
missCallInfo: any;
|
|
21
22
|
deviceId: any;
|
|
22
23
|
callAction: any;
|
|
@@ -115,13 +116,14 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
115
116
|
private acceptedCallList;
|
|
116
117
|
isHoldBtnDisable: boolean;
|
|
117
118
|
C2ConfoList: any;
|
|
119
|
+
selectedConfName: any;
|
|
118
120
|
constructor(extensionService: ExtensionService, cdr: ChangeDetectorRef, twilioService: TwilioService, ipService: IpAddressService, incomeingCallSocketService: IncomeingCallSocketService);
|
|
119
121
|
ngOnInit(): void;
|
|
120
122
|
ngOnChanges(changes: SimpleChanges): void;
|
|
121
123
|
rejoinHost(callInfo: any): Promise<void>;
|
|
122
124
|
mapUserInfo(participantInfo: any, callerInfo: any): any;
|
|
123
125
|
updatedParticipantList(participant: any): void;
|
|
124
|
-
participantListIndo(participants
|
|
126
|
+
participantListIndo(participants?: any): Promise<void>;
|
|
125
127
|
showCallingToast(number: string): void;
|
|
126
128
|
getStatus(res: any): boolean;
|
|
127
129
|
GetContactsList(): void;
|
|
@@ -129,7 +131,6 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
129
131
|
startCall(callData: any, isNewConference?: boolean): Promise<any>;
|
|
130
132
|
onMuteUser(c: any): Promise<void>;
|
|
131
133
|
onHoldCall(c: any): Promise<void>;
|
|
132
|
-
onEndIncomingCall(): Promise<void>;
|
|
133
134
|
onEndCall(c: any, isAllCallEnd?: boolean, isContect?: boolean): Promise<boolean>;
|
|
134
135
|
private initiateCall;
|
|
135
136
|
onholdOrUnholdParticipant(payload: any): Promise<[] | undefined>;
|
|
@@ -206,5 +207,5 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
206
207
|
get showEndAllButton(): boolean;
|
|
207
208
|
ngOnDestroy(): void;
|
|
208
209
|
static ɵfac: i0.ɵɵFactoryDeclaration<CallProgressComponent, never>;
|
|
209
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CallProgressComponent, "lib-call-progress", never, { "callData": "callData"; "selectedCallerId": "selectedCallerId"; "newIncomingCallData": "newIncomingCallData"; "newIncomingCallsList": "newIncomingCallsList"; "callerIdList": "callerIdList"; "missCallInfo": "missCallInfo"; "deviceId": "deviceId"; "callAction": "callAction"; "conferenceCallInfo": "conferenceCallInfo"; }, { "endCallEvent": "endCallEvent"; "incomingCallsNewInfo": "incomingCallsNewInfo"; "minimiseEvent": "minimiseEvent"; "incomingCallInitiated": "incomingCallInitiated"; "isLoadershown": "isLoadershown"; "endIncomingCallEvent": "endIncomingCallEvent"; }, never, never, false, never>;
|
|
210
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CallProgressComponent, "lib-call-progress", never, { "callData": "callData"; "selectedCallerId": "selectedCallerId"; "newIncomingCallData": "newIncomingCallData"; "newIncomingCallsList": "newIncomingCallsList"; "callerIdList": "callerIdList"; "newCallConference": "newCallConference"; "missCallInfo": "missCallInfo"; "deviceId": "deviceId"; "callAction": "callAction"; "conferenceCallInfo": "conferenceCallInfo"; }, { "endCallEvent": "endCallEvent"; "incomingCallsNewInfo": "incomingCallsNewInfo"; "minimiseEvent": "minimiseEvent"; "incomingCallInitiated": "incomingCallInitiated"; "isLoadershown": "isLoadershown"; "endIncomingCallEvent": "endIncomingCallEvent"; }, never, never, false, never>;
|
|
210
211
|
}
|
|
@@ -26,6 +26,7 @@ export declare class DialboxComponent implements OnInit, AfterViewInit, OnChange
|
|
|
26
26
|
deviceNumberList: any[];
|
|
27
27
|
missCallInfo: any;
|
|
28
28
|
connectingIncomingCallId: string;
|
|
29
|
+
newCallConference: any;
|
|
29
30
|
set isDialpadHidden(value: boolean);
|
|
30
31
|
incomingCallData: any;
|
|
31
32
|
incomingCallnotification: any;
|