@vgroup/dialbox 0.6.33 → 0.6.34
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 +141 -111
- package/esm2020/lib/dialbox.component.mjs +58 -4
- package/esm2020/lib/service/extension.service.mjs +15 -3
- package/esm2020/lib/service/twilio.service.mjs +11 -13
- package/fesm2015/vgroup-dialbox.mjs +191 -96
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +221 -127
- package/fesm2020/vgroup-dialbox.mjs.map +1 -1
- package/lib/components/call-progress/call-progress.component.d.ts +2 -1
- package/lib/service/extension.service.d.ts +1 -0
- package/lib/service/twilio.service.d.ts +2 -2
- package/package.json +1 -1
- package/vgroup-dialbox-0.6.34.tgz +0 -0
|
@@ -25,7 +25,7 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
25
25
|
incomingCallsNewInfo: EventEmitter<any>;
|
|
26
26
|
minimiseEvent: EventEmitter<boolean>;
|
|
27
27
|
device?: Device;
|
|
28
|
-
call: Call;
|
|
28
|
+
call: Call | any;
|
|
29
29
|
showRingAnimation: boolean;
|
|
30
30
|
timer: string;
|
|
31
31
|
intervalId: any;
|
|
@@ -105,6 +105,7 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
105
105
|
private initiateCall;
|
|
106
106
|
onholdOrUnholdParticipant(payload: any): Promise<[] | undefined>;
|
|
107
107
|
private addParticipantToCall;
|
|
108
|
+
private addClientParticipant;
|
|
108
109
|
private getCallStatusOfParticipants;
|
|
109
110
|
private onMuteParticipant;
|
|
110
111
|
private getRemoveParticipants;
|
|
@@ -85,6 +85,7 @@ export declare class ExtensionService {
|
|
|
85
85
|
initiateCall(payload: any): Observable<any>;
|
|
86
86
|
getConferenceCallToken(payload: any): Observable<[]>;
|
|
87
87
|
addParticipant(payload: any): Observable<[]>;
|
|
88
|
+
addClientParticipant(payload: any): Observable<[]>;
|
|
88
89
|
holdParticipant(payload: any): Observable<[]>;
|
|
89
90
|
onMuteParticipant(payload: any): Observable<[]>;
|
|
90
91
|
getAllParticipants(conferenceSid: any): Observable<[]>;
|
|
@@ -19,10 +19,10 @@ export declare class TwilioService {
|
|
|
19
19
|
currentCallState: BehaviorSubject<any>;
|
|
20
20
|
device: any;
|
|
21
21
|
call: Call;
|
|
22
|
-
incomingCallToken
|
|
22
|
+
incomingCallToken: string;
|
|
23
23
|
outgoingCallToken?: string;
|
|
24
24
|
callType: BehaviorSubject<string>;
|
|
25
|
-
|
|
25
|
+
incomingCallDetail: any;
|
|
26
26
|
token: any;
|
|
27
27
|
isNewContactAdded: BehaviorSubject<boolean>;
|
|
28
28
|
updateRecentCall: BehaviorSubject<boolean>;
|
package/package.json
CHANGED
|
Binary file
|