@vgroup/dialbox 0.4.37 → 0.4.39
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 +40 -16
- package/esm2020/lib/service/extension.service.mjs +9 -1
- package/fesm2015/vgroup-dialbox.mjs +47 -15
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +47 -15
- 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/package.json +1 -1
|
@@ -63,7 +63,7 @@ export declare class CallProgressComponent implements OnInit, OnChanges, AfterVi
|
|
|
63
63
|
constructor(extensionService: ExtensionService, cdr: ChangeDetectorRef, twilioService: TwilioService);
|
|
64
64
|
ngOnInit(): void;
|
|
65
65
|
ngOnChanges(changes: SimpleChanges): void;
|
|
66
|
-
getStatus(res: any):
|
|
66
|
+
getStatus(res: any): boolean;
|
|
67
67
|
ngAfterViewInit(): void;
|
|
68
68
|
GetContactsList(): void;
|
|
69
69
|
addRes: any;
|
|
@@ -122,6 +122,7 @@ export declare class CallProgressComponent implements OnInit, OnChanges, AfterVi
|
|
|
122
122
|
selectedIncomingCallInfo(data: any): void;
|
|
123
123
|
getHoldCallList(): any[];
|
|
124
124
|
onClickExpand(data: any): void;
|
|
125
|
+
setIncomingCallStatus(data: any): void;
|
|
125
126
|
toggleSearch(): void;
|
|
126
127
|
filterContacts(): void;
|
|
127
128
|
applyFilter(): void;
|
|
@@ -98,6 +98,7 @@ export declare class ExtensionService {
|
|
|
98
98
|
}): Observable<Object>;
|
|
99
99
|
pauseOrResumeRecording(callSid: string, status: any): Observable<Object>;
|
|
100
100
|
getCallStatus(callAuthId: string): Observable<Object>;
|
|
101
|
+
setIncomingCallStatus(payload: any): Observable<Object>;
|
|
101
102
|
sendSms(c2c_latlong: string, c2c_request: string, dtModel: any): Observable<any>;
|
|
102
103
|
readContacts(token: string): Observable<[]>;
|
|
103
104
|
sentSMS(token: string, pageSize?: string, pageIndex?: string): Observable<[]>;
|