@vgroup/dialbox 0.7.20 → 0.7.22
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 -21
- package/esm2020/lib/dialbox.component.mjs +7 -4
- package/esm2020/lib/service/twilio.service.mjs +30 -1
- package/fesm2015/vgroup-dialbox.mjs +112 -46
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +88 -23
- package/fesm2020/vgroup-dialbox.mjs.map +1 -1
- package/lib/components/call-progress/call-progress.component.d.ts +4 -1
- package/lib/dialbox.component.d.ts +1 -0
- package/lib/service/twilio.service.d.ts +3 -0
- package/package.json +1 -1
|
@@ -23,6 +23,7 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
23
23
|
deviceId: any;
|
|
24
24
|
callAction: any;
|
|
25
25
|
conferenceCallInfo: any;
|
|
26
|
+
incomingFromImage: string;
|
|
26
27
|
userId: any;
|
|
27
28
|
endCallEvent: EventEmitter<void>;
|
|
28
29
|
incomingCallsNewInfo: EventEmitter<any>;
|
|
@@ -167,7 +168,9 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
167
168
|
toggleMute(isConference?: boolean): Promise<void>;
|
|
168
169
|
getCurrentCallInfo(): any;
|
|
169
170
|
toggleKeypad(): void;
|
|
171
|
+
toggleMuteIncomingCall(): void;
|
|
170
172
|
toggleContactsPanel(callInfo?: any, isClose?: boolean): any;
|
|
173
|
+
toggleC2CInfoPanel(userInfo: any, isClose?: boolean): any;
|
|
171
174
|
addRemoveParticipant(): Promise<void>;
|
|
172
175
|
waitingCallAccept(incomingCallInfo: any): Promise<void>;
|
|
173
176
|
add(data?: any, ourNumberInfo?: any, capturedCall?: Call): Promise<void>;
|
|
@@ -228,5 +231,5 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
228
231
|
get activeParticipantsCount(): number;
|
|
229
232
|
ngOnDestroy(): void;
|
|
230
233
|
static ɵfac: i0.ɵɵFactoryDeclaration<CallProgressComponent, never>;
|
|
231
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CallProgressComponent, "lib-call-progress", never, { "callData": "callData"; "selectedCallerId": "selectedCallerId"; "newIncomingCallData": "newIncomingCallData"; "newIncomingCallsList": "newIncomingCallsList"; "callerIdList": "callerIdList"; "newCallConference": "newCallConference"; "missCallInfo": "missCallInfo"; "userSettingInfo": "userSettingInfo"; "deviceId": "deviceId"; "callAction": "callAction"; "conferenceCallInfo": "conferenceCallInfo"; "outgoingContactName": "outgoingContactName"; }, { "endCallEvent": "endCallEvent"; "incomingCallsNewInfo": "incomingCallsNewInfo"; "minimiseEvent": "minimiseEvent"; "incomingCallInitiated": "incomingCallInitiated"; "isLoadershown": "isLoadershown"; "endIncomingCallEvent": "endIncomingCallEvent"; }, never, never, false, never>;
|
|
234
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CallProgressComponent, "lib-call-progress", never, { "callData": "callData"; "selectedCallerId": "selectedCallerId"; "newIncomingCallData": "newIncomingCallData"; "newIncomingCallsList": "newIncomingCallsList"; "callerIdList": "callerIdList"; "newCallConference": "newCallConference"; "missCallInfo": "missCallInfo"; "userSettingInfo": "userSettingInfo"; "deviceId": "deviceId"; "callAction": "callAction"; "conferenceCallInfo": "conferenceCallInfo"; "incomingFromImage": "incomingFromImage"; "outgoingContactName": "outgoingContactName"; }, { "endCallEvent": "endCallEvent"; "incomingCallsNewInfo": "incomingCallsNewInfo"; "minimiseEvent": "minimiseEvent"; "incomingCallInitiated": "incomingCallInitiated"; "isLoadershown": "isLoadershown"; "endIncomingCallEvent": "endIncomingCallEvent"; }, never, never, false, never>;
|
|
232
235
|
}
|
|
@@ -87,6 +87,7 @@ export declare class DialboxComponent implements OnInit, AfterViewInit, OnChange
|
|
|
87
87
|
private isReloadConfirmed;
|
|
88
88
|
contactNameForLoader: string;
|
|
89
89
|
contactImgForLoader: string;
|
|
90
|
+
incomingFromImage: string;
|
|
90
91
|
handleRefreshShortcut(event: KeyboardEvent): void;
|
|
91
92
|
private confirmReloadDuringCall;
|
|
92
93
|
beforeUnloadHandler(event: BeforeUnloadEvent): true | undefined;
|
|
@@ -69,6 +69,9 @@ export declare class TwilioService {
|
|
|
69
69
|
releaseConcurrentCallDevice(callSid: string): void;
|
|
70
70
|
teardownSpareDevicesIfIdle(): void;
|
|
71
71
|
destroyDevice2(): void;
|
|
72
|
+
isIncomingMuted: boolean;
|
|
73
|
+
applyIncomingMute(): void;
|
|
74
|
+
setIncomingMuted(muted: boolean): void;
|
|
72
75
|
addIncomingParticipant(participantId: string, conferenceId: string): Observable<[]>;
|
|
73
76
|
connect(data?: any): any;
|
|
74
77
|
static ɵfac: i0.ɵɵFactoryDeclaration<TwilioService, never>;
|