@vgroup/dialbox 0.6.3-0.44 → 0.6.3-0.46
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 -6
- package/esm2020/lib/service/extension.service.mjs +14 -3
- package/fesm2015/vgroup-dialbox.mjs +27 -11
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +23 -7
- package/fesm2020/vgroup-dialbox.mjs.map +1 -1
- package/lib/components/call-progress/call-progress.component.d.ts +1 -0
- package/lib/service/extension.service.d.ts +1 -0
- package/package.json +1 -1
|
@@ -165,6 +165,7 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
165
165
|
onCallDisconnected(): void;
|
|
166
166
|
endConference(): void;
|
|
167
167
|
leaveConference(): void;
|
|
168
|
+
convertHHMMToMinutes(time: string): number;
|
|
168
169
|
ngOnDestroy(): void;
|
|
169
170
|
static ɵfac: i0.ɵɵFactoryDeclaration<CallProgressComponent, never>;
|
|
170
171
|
static ɵcmp: i0.ɵɵComponentDeclaration<CallProgressComponent, "lib-call-progress", never, { "callData": "callData"; "selectedCallerId": "selectedCallerId"; "newIncomingCallData": "newIncomingCallData"; "newIncomingCallsList": "newIncomingCallsList"; "callerIdList": "callerIdList"; "deviceId": "deviceId"; "callAction": "callAction"; "conferenceCallInfo": "conferenceCallInfo"; }, { "endCallEvent": "endCallEvent"; "incomingCallsNewInfo": "incomingCallsNewInfo"; "minimiseEvent": "minimiseEvent"; "incomingCallInitiated": "incomingCallInitiated"; "isLoadershow": "isLoadershow"; "endIncomingCallEvent": "endIncomingCallEvent"; }, never, never, false, never>;
|
|
@@ -178,6 +178,7 @@ export declare class ExtensionService {
|
|
|
178
178
|
updateActions(token: string, dtModel: any): Observable<[]>;
|
|
179
179
|
updateValueAddedServices(token: string, dtModel: any): Observable<[]>;
|
|
180
180
|
deleteAdminUsers(token: string, userIds: string): Observable<[]>;
|
|
181
|
+
setTimerForEndConferenceCall(payload: any): Observable<[]>;
|
|
181
182
|
getUserInformation(twilioAuthId: string): Observable<[]>;
|
|
182
183
|
static ɵfac: i0.ɵɵFactoryDeclaration<ExtensionService, never>;
|
|
183
184
|
static ɵprov: i0.ɵɵInjectableDeclaration<ExtensionService>;
|