@vgroup/dialbox 0.7.3 → 0.7.4
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 +11 -22
- package/esm2020/lib/service/twilio.service.mjs +13 -1
- package/fesm2015/vgroup-dialbox.mjs +25 -26
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +22 -21
- package/fesm2020/vgroup-dialbox.mjs.map +1 -1
- package/lib/components/call-progress/call-progress.component.d.ts +2 -2
- package/package.json +1 -1
|
@@ -115,13 +115,14 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
115
115
|
private acceptedCallList;
|
|
116
116
|
isHoldBtnDisable: boolean;
|
|
117
117
|
C2ConfoList: any;
|
|
118
|
+
selectedConfName: any;
|
|
118
119
|
constructor(extensionService: ExtensionService, cdr: ChangeDetectorRef, twilioService: TwilioService, ipService: IpAddressService, incomeingCallSocketService: IncomeingCallSocketService);
|
|
119
120
|
ngOnInit(): void;
|
|
120
121
|
ngOnChanges(changes: SimpleChanges): void;
|
|
121
122
|
rejoinHost(callInfo: any): Promise<void>;
|
|
122
123
|
mapUserInfo(participantInfo: any, callerInfo: any): any;
|
|
123
124
|
updatedParticipantList(participant: any): void;
|
|
124
|
-
participantListIndo(participants
|
|
125
|
+
participantListIndo(participants?: any): Promise<void>;
|
|
125
126
|
showCallingToast(number: string): void;
|
|
126
127
|
getStatus(res: any): boolean;
|
|
127
128
|
GetContactsList(): void;
|
|
@@ -129,7 +130,6 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
129
130
|
startCall(callData: any, isNewConference?: boolean): Promise<any>;
|
|
130
131
|
onMuteUser(c: any): Promise<void>;
|
|
131
132
|
onHoldCall(c: any): Promise<void>;
|
|
132
|
-
onEndIncomingCall(): Promise<void>;
|
|
133
133
|
onEndCall(c: any, isAllCallEnd?: boolean, isContect?: boolean): Promise<boolean>;
|
|
134
134
|
private initiateCall;
|
|
135
135
|
onholdOrUnholdParticipant(payload: any): Promise<[] | undefined>;
|