@vgroup/dialbox 0.6.58 → 0.6.59
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 -57
- package/esm2020/lib/dialbox.component.mjs +5 -2
- package/esm2020/lib/service/extension.service.mjs +3 -3
- package/fesm2015/vgroup-dialbox.mjs +60 -60
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +59 -59
- package/fesm2020/vgroup-dialbox.mjs.map +1 -1
- package/lib/components/call-progress/call-progress.component.d.ts +1 -2
- package/lib/service/extension.service.d.ts +1 -1
- package/package.json +1 -1
|
@@ -113,7 +113,6 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
113
113
|
private getCallAuthId;
|
|
114
114
|
private getOutgoingCallToken;
|
|
115
115
|
private connectToDevice;
|
|
116
|
-
setUpParticipent(callData: any, response: any): void;
|
|
117
116
|
private setupEventListeners;
|
|
118
117
|
private startTimer;
|
|
119
118
|
private stopTimer;
|
|
@@ -134,7 +133,7 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
134
133
|
getToNumber(dialedNumber: string): Promise<any>;
|
|
135
134
|
isInvalidNumber(number: string): Promise<boolean>;
|
|
136
135
|
showDialAlert(message: string): void;
|
|
137
|
-
getAllParticipants(
|
|
136
|
+
getAllParticipants(conferenceId: string): Promise<void>;
|
|
138
137
|
swapCalls(callInfo: any, isConferenceCall?: boolean): Promise<void>;
|
|
139
138
|
isMergeCallAllowed(): boolean;
|
|
140
139
|
mergeCalls(): Promise<void>;
|
|
@@ -90,7 +90,7 @@ export declare class ExtensionService {
|
|
|
90
90
|
addClientParticipant(payload: any): Observable<[]>;
|
|
91
91
|
holdParticipant(payload: any): Observable<[]>;
|
|
92
92
|
onMuteParticipant(payload: any): Observable<[]>;
|
|
93
|
-
getAllParticipants(
|
|
93
|
+
getAllParticipants(conferenceId: any): Observable<[]>;
|
|
94
94
|
updateHoldUnhold(payload: any): Observable<[]>;
|
|
95
95
|
getCallStatusOfParticipants(participantId: any): Observable<[]>;
|
|
96
96
|
getRemoveParticipants(participantId: any, conferenceId: any): Observable<[]>;
|