@vgroup/dialbox 0.4.0 → 0.4.2
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 +120 -36
- package/fesm2015/vgroup-dialbox.mjs +121 -36
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +119 -35
- package/fesm2020/vgroup-dialbox.mjs.map +1 -1
- package/lib/components/call-progress/call-progress.component.d.ts +3 -1
- package/package.json +1 -1
|
@@ -55,6 +55,7 @@ export declare class CallProgressComponent implements OnInit, OnChanges, AfterVi
|
|
|
55
55
|
isClickExpand: boolean;
|
|
56
56
|
isCallInProgress: boolean;
|
|
57
57
|
isCurrentIncomingCallList: any;
|
|
58
|
+
isConferenceCallHold: boolean;
|
|
58
59
|
constructor(extensionService: ExtensionService, cdr: ChangeDetectorRef, twilioService: TwilioService);
|
|
59
60
|
ngOnInit(): void;
|
|
60
61
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -90,7 +91,7 @@ export declare class CallProgressComponent implements OnInit, OnChanges, AfterVi
|
|
|
90
91
|
callContact(contact: any): Promise<void>;
|
|
91
92
|
getAllParticipants(conferenceSid: string): void;
|
|
92
93
|
acceptConcurrentCall(incomingCall: any): void;
|
|
93
|
-
swapCalls(callInfo: any): Promise<void>;
|
|
94
|
+
swapCalls(callInfo: any, isConferenceCall?: boolean): Promise<void>;
|
|
94
95
|
mergeCalls(): Promise<void>;
|
|
95
96
|
endHeldCall(): void;
|
|
96
97
|
hasDetailedInfo(callData: any): boolean;
|
|
@@ -115,6 +116,7 @@ export declare class CallProgressComponent implements OnInit, OnChanges, AfterVi
|
|
|
115
116
|
getUserInformation(id: any): void;
|
|
116
117
|
incomingCallsNewList(data: any): void;
|
|
117
118
|
selectedIncomingCallInfo(data: any): void;
|
|
119
|
+
getHoldCallList(): any[];
|
|
118
120
|
ngOnDestroy(): void;
|
|
119
121
|
static ɵfac: i0.ɵɵFactoryDeclaration<CallProgressComponent, never>;
|
|
120
122
|
static ɵcmp: i0.ɵɵComponentDeclaration<CallProgressComponent, "lib-call-progress", never, { "callData": "callData"; "selectedCallerId": "selectedCallerId"; "newIncomingCallData": "newIncomingCallData"; "newIncomingCallsList": "newIncomingCallsList"; "deviceId": "deviceId"; }, { "endCallEvent": "endCallEvent"; "incomingCallsNewInfo": "incomingCallsNewInfo"; "minimiseEvent": "minimiseEvent"; "incomingCallInitiated": "incomingCallInitiated"; }, never, never, false, never>;
|