@vgroup/dialbox 0.0.72 → 0.0.74
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/dialbox.component.mjs +6 -5
- package/esm2020/lib/service/extension.service.mjs +2 -13
- package/esm2020/lib/service/twilio.service.mjs +4 -41
- package/fesm2015/vgroup-dialbox.mjs +9 -56
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +9 -56
- package/fesm2020/vgroup-dialbox.mjs.map +1 -1
- package/lib/service/extension.service.d.ts +1 -5
- package/lib/service/twilio.service.d.ts +2 -3
- package/package.json +1 -1
|
@@ -25,12 +25,8 @@ export declare class ExtensionService {
|
|
|
25
25
|
draftSmsSource: BehaviorSubject<any>;
|
|
26
26
|
draftMessage: Observable<any>;
|
|
27
27
|
isInputFocus$: BehaviorSubject<boolean>;
|
|
28
|
-
|
|
29
|
-
private tokenChangeSubject;
|
|
30
|
-
tokenChange$: Observable<string>;
|
|
28
|
+
token: string;
|
|
31
29
|
isNewContactAdded: BehaviorSubject<boolean>;
|
|
32
|
-
get token(): string;
|
|
33
|
-
set token(value: string);
|
|
34
30
|
isProfileUpdated: BehaviorSubject<boolean>;
|
|
35
31
|
private callerIdSubject;
|
|
36
32
|
callerId$: Observable<any>;
|
|
@@ -15,7 +15,7 @@ export interface DialPayload {
|
|
|
15
15
|
export declare class TwilioService {
|
|
16
16
|
private http;
|
|
17
17
|
private extensionService;
|
|
18
|
-
private
|
|
18
|
+
private notificationSerivce;
|
|
19
19
|
openInProgressDialpad: BehaviorSubject<boolean>;
|
|
20
20
|
currentCall: BehaviorSubject<Call | null>;
|
|
21
21
|
currentCallState: BehaviorSubject<any>;
|
|
@@ -36,8 +36,7 @@ export declare class TwilioService {
|
|
|
36
36
|
isAvailableNumber: BehaviorSubject<boolean>;
|
|
37
37
|
callerIdList: BehaviorSubject<any[]>;
|
|
38
38
|
triggerSMSReload: BehaviorSubject<boolean>;
|
|
39
|
-
|
|
40
|
-
constructor(http: HttpClient, extensionService: ExtensionService, notificationService: NotificationService);
|
|
39
|
+
constructor(http: HttpClient, extensionService: ExtensionService, notificationSerivce: NotificationService);
|
|
41
40
|
initializeTwilioDevice(): void;
|
|
42
41
|
saveContact(payload: any): Observable<[]>;
|
|
43
42
|
updateContact(payload: any): Observable<[]>;
|